diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-01-17 22:28:46 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-03-21 11:27:14 +0100 |
commit | 07c5ca551b7327d3c4e33738cc0cd2d5ac2779fa (patch) | |
tree | dba091d3cb6911a25d6179f19fd8e99da7efe038 /libavcodec/h264.h | |
parent | 47a0d393504d6726c4a235951153bee0abb3f7d6 (diff) | |
download | ffmpeg-07c5ca551b7327d3c4e33738cc0cd2d5ac2779fa.tar.gz |
h264: move is_complex into the per-slice context
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 04ed625c37..0b29777f47 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -357,6 +357,7 @@ typedef struct H264SliceContext { ptrdiff_t mb_uvlinesize; int mb_skip_run; + int is_complex; int redundant_pic_count; @@ -532,8 +533,6 @@ typedef struct H264Context { int mb_num; int mb_xy; - int is_complex; - // ============================================================= // Things below are not used in the MB or more inner code |