summaryrefslogtreecommitdiffstats
path: root/libavcodec/mjpegdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-11-30 04:00:05 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-11-30 04:17:03 +0100
commitbc16031a410e0a77927f0604560aa9c803df26b2 (patch)
treeca28e66e6805dea1674c6a7e803157194970d230 /libavcodec/mjpegdec.c
parenta2f680c7bc7642c687aeb4e14d00ac74833c7a09 (diff)
downloadffmpeg-streaming-bc16031a410e0a77927f0604560aa9c803df26b2.zip
ffmpeg-streaming-bc16031a410e0a77927f0604560aa9c803df26b2.tar.gz
mjpegdec: print error message when quant_index is invalid
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mjpegdec.c')
-rw-r--r--libavcodec/mjpegdec.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c
index 04debbf..c47093b 100644
--- a/libavcodec/mjpegdec.c
+++ b/libavcodec/mjpegdec.c
@@ -283,8 +283,10 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
return -1;
}
s->quant_index[i] = get_bits(&s->gb, 8);
- if (s->quant_index[i] >= 4)
+ if (s->quant_index[i] >= 4) {
+ av_log(s->avctx, AV_LOG_ERROR, "quant_index is invalid\n");
return AVERROR_INVALIDDATA;
+ }
av_log(s->avctx, AV_LOG_DEBUG, "component %d %d:%d id: %d quant:%d\n",
i, h_count[i], v_count[i],
s->component_id[i], s->quant_index[i]);
OpenPOWER on IntegriCloud