]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/h264_mc_template: Only prefetch motion if the list is used.
authorMichael Niedermayer <michael@niedermayer.cc>
Fri, 8 Jun 2018 16:25:14 +0000 (18:25 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Sun, 10 Jun 2018 22:51:20 +0000 (00:51 +0200)
Fixes: index 59 out of bounds for type 'H264Ref [48]'
Fixes: 8232/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_H264_fuzzer-5703295145345024
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/h264_mc_template.c

index 58c05044c135f4b4778418159e37e61480a96ecf..d02e2bf580a409aec4a9a88c05c37c2a6cc9e1a3 100644 (file)
@@ -78,7 +78,8 @@ static void MCFUNC(hl_motion)(const H264Context *h, H264SliceContext *sl,
 
     if (HAVE_THREADS && (h->avctx->active_thread_type & FF_THREAD_FRAME))
         await_references(h, sl);
-    prefetch_motion(h, sl, 0, PIXEL_SHIFT, CHROMA_IDC);
+    if (USES_LIST(mb_type, 0))
+        prefetch_motion(h, sl, 0, PIXEL_SHIFT, CHROMA_IDC);
 
     if (IS_16X16(mb_type)) {
         mc_part(h, sl, 0, 1, 16, 0, dest_y, dest_cb, dest_cr, 0, 0,