summaryrefslogtreecommitdiff
path: root/libavcodec/h264.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2015-01-17 22:28:46 +0100
committerAnton Khirnov <anton@khirnov.net>2015-03-21 11:27:15 +0100
commitbc98e8c0e0a8babfea35c98855e366b29cbe1191 (patch)
tree0dbf428535cd1236545a6c31b3d3f57c7d65b911 /libavcodec/h264.h
parent6490a0c0fbe0e55f765ea2aa2e8495181ea1f719 (diff)
h264: move mb_field_decoding_flag into the per-slice context
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r--libavcodec/h264.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 57d21328f4..d9408f3912 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -364,6 +364,8 @@ typedef struct H264SliceContext {
int mb_skip_run;
int is_complex;
+ int mb_field_decoding_flag;
+
int redundant_pic_count;
/**
@@ -494,7 +496,6 @@ typedef struct H264Context {
// interlacing specific flags
int mb_aff_frame;
- int mb_field_decoding_flag;
int mb_mbaff; ///< mb_aff_frame && mb_field_decoding_flag
int picture_structure;
int first_field;