Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-12-18 23:11:47 +0300
committerAnton Khirnov <anton@khirnov.net>2017-01-12 18:29:12 +0300
commitc3e84820d67cb1d8cfb4196f9b43971308a81571 (patch)
tree8d167e1b8815e21b4f8de76a95b9c19daf66b2f5 /libavcodec/h264dec.h
parent4fded0480f20f4d7ca5e776a85574de34dfead14 (diff)
h264dec: export cropping information instead of handling it internally
Diffstat (limited to 'libavcodec/h264dec.h')
-rw-r--r--libavcodec/h264dec.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/h264dec.h b/libavcodec/h264dec.h
index 0a9896ac8a..fc7beeb994 100644
--- a/libavcodec/h264dec.h
+++ b/libavcodec/h264dec.h
@@ -372,6 +372,11 @@ typedef struct H264Context {
*/
int picture_idr;
+ int crop_left;
+ int crop_right;
+ int crop_top;
+ int crop_bottom;
+
int8_t(*intra4x4_pred_mode);
H264PredContext hpc;