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 | 47a0d393504d6726c4a235951153bee0abb3f7d6 (patch) | |
tree | cd95f60982a26521bbdc356d84161d05b674af6f /libavcodec/h264.h | |
parent | 9951907f6fc37a8d41566dbee09f7c15ff587de6 (diff) | |
download | ffmpeg-47a0d393504d6726c4a235951153bee0abb3f7d6.tar.gz |
h264: move mb_skip_run into the per-slice context
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 0696000294..04ed625c37 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -356,6 +356,8 @@ typedef struct H264SliceContext { ptrdiff_t mb_linesize; ///< may be equal to s->linesize or s->linesize * 2, for mbaff ptrdiff_t mb_uvlinesize; + int mb_skip_run; + int redundant_pic_count; /** @@ -525,7 +527,6 @@ typedef struct H264Context { int mb_x, mb_y; int resync_mb_x; int resync_mb_y; - int mb_skip_run; int mb_height, mb_width; int mb_stride; int mb_num; |