[FFmpeg-cvslog] avcodec/v210dec: Fix alignment check for AVX2

Michael Niedermayer git at videolan.org
Sun May 19 12:08:49 EEST 2019


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sat May 18 09:32:58 2019 +0200| [fbdb3aa179939616bc7fb26e3fe386b85b58e467] | committer: Michael Niedermayer

avcodec/v210dec: Fix alignment check for AVX2

Fixes: "null pointer dereference" (actually misaligned access but the tools seem not to support this)
Fixes: 14551/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_V210_fuzzer-5088609952071680

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fbdb3aa179939616bc7fb26e3fe386b85b58e467
---

 libavcodec/v210dec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/v210dec.c b/libavcodec/v210dec.c
index bc1e1d34ff..5a33d8c089 100644
--- a/libavcodec/v210dec.c
+++ b/libavcodec/v210dec.c
@@ -104,7 +104,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
         && avpkt->size - 64 >= stride * avctx->height)
         psrc += 64;
 
-    aligned_input = !((uintptr_t)psrc & 0xf) && !(stride & 0xf);
+    aligned_input = !((uintptr_t)psrc & 0x1f) && !(stride & 0x1f);
     if (aligned_input != s->aligned_input) {
         s->aligned_input = aligned_input;
         ff_v210dec_init(s);



More information about the ffmpeg-cvslog mailing list