Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-06-27 19:38:17 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-06-27 19:46:11 +0300
commitf620315fa5b1710e3a47b80ca2cd4597510804ba (patch)
tree4fae7d7757418580e20bd8bd675a229798abdd7c /libavcodec/h264.h
parentcf9051deac498eed70ab68c562b761c55251d270 (diff)
parente49e0f58e273237f83b4486f3536931ed1943d18 (diff)
Merge commit 'e49e0f58e273237f83b4486f3536931ed1943d18'
* commit 'e49e0f58e273237f83b4486f3536931ed1943d18': h264: make sure the slices do not overlap during slice threading Conflicts: libavcodec/h264.h libavcodec/h264_slice.c See: 43b434210e597d484aef57c4139c3126d22b7e2b Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 7565e031d5..b1921ef6f6 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -409,7 +409,8 @@ typedef struct H264SliceContext {
int mb_xy;
int resync_mb_x;
int resync_mb_y;
- int mb_index_end;
+ // index of the first MB of the next slice
+ int next_slice_idx;
int mb_skip_run;
int is_complex;