mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
avcodec/mjpegdec: Only allow 0x11110000 pix_fmt_id for bayer mode
Fixes: NULL pointer dereference Fixes: assertion failure Fixes: 17003/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MJPEG_fuzzer-5696929253556224 Fixes: 17039/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MJPEG_fuzzer-5651008134316032 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
de125a0942
commit
2006e5ccb6
@ -501,6 +501,8 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
|
||||
|
||||
switch (pix_fmt_id) {
|
||||
case 0x11110000: /* for bayer-encoded huffman lossless JPEGs embedded in DNGs */
|
||||
if (!s->bayer)
|
||||
goto unk_pixfmt;
|
||||
s->avctx->pix_fmt = AV_PIX_FMT_GRAY16LE;
|
||||
break;
|
||||
case 0x11111100:
|
||||
|
Loading…
Reference in New Issue
Block a user