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 | 7bbc254d646ed9cf6deffc3fda75ae6729f95979 (patch) | |
tree | e0dd13404bf3af7d6ca13abef367a1aa093c7a64 /libavcodec/h264.h | |
parent | d4d9068cdf8f4b2b87ae87a2ef880d243f77b977 (diff) | |
download | ffmpeg-7bbc254d646ed9cf6deffc3fda75ae6729f95979.tar.gz |
h264: move resync_mb_{x,y} into the per-slice context
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 1e0b2327b1..282de69e6a 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -358,6 +358,8 @@ typedef struct H264SliceContext { int mb_x, mb_y; int mb_xy; + int resync_mb_x; + int resync_mb_y; int mb_skip_run; int is_complex; @@ -528,8 +530,6 @@ typedef struct H264Context { int x264_build; int mb_y; - int resync_mb_x; - int resync_mb_y; int mb_height, mb_width; int mb_stride; int mb_num; |