aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-11-24 22:12:37 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2015-12-20 10:59:26 +0100
commitdd4c2fe74afe76868a279fd96fbc56e1111effa5 (patch)
treef82c5bb042fdb6bc725fff15a1b829342f6e0986 /libavcodec
parent292842a0ed80afc0ad80626397100fed5e9595f4 (diff)
downloadffmpeg-dd4c2fe74afe76868a279fd96fbc56e1111effa5.tar.gz
avcodec/h264_slice: Limit max_contexts when slice_context_count is initialized
Fixes out of array access Fixes: 1430e9c43fae47a24c179c7c54f94918/signal_sigsegv_421427_2049_f2192b6829ab6e0eefcb035329c03c60.264 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 4ea4d2f438c9a7eba37980c9a87be4b34943e4d5) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/h264_slice.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264_slice.c b/libavcodec/h264_slice.c
index 15700a8e67..3501be3d4b 100644
--- a/libavcodec/h264_slice.c
+++ b/libavcodec/h264_slice.c
@@ -1194,6 +1194,7 @@ static int h264_slice_header_init(H264Context *h, int reinit)
nb_slices = max_slices;
}
h->slice_context_count = nb_slices;
+ h->max_contexts = FFMIN(h->max_contexts, nb_slices);
if (!HAVE_THREADS || !(h->avctx->active_thread_type & FF_THREAD_SLICE)) {
ret = ff_h264_context_init(h);