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
commite9b2383bf86b38ad18a001801aee20c8182e29bd (patch)
tree50bad1112c3c41b413a8433a81947d33dd79fd8b /libavcodec/h264.h
parentbc98e8c0e0a8babfea35c98855e366b29cbe1191 (diff)
h264: move mb_mbaff into the per-slice context
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r--libavcodec/h264.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index d9408f3912..a226261d37 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -365,6 +365,7 @@ typedef struct H264SliceContext {
int is_complex;
int mb_field_decoding_flag;
+ int mb_mbaff; ///< mb_aff_frame && mb_field_decoding_flag
int redundant_pic_count;
@@ -496,7 +497,6 @@ typedef struct H264Context {
// interlacing specific flags
int mb_aff_frame;
- int mb_mbaff; ///< mb_aff_frame && mb_field_decoding_flag
int picture_structure;
int first_field;