[FFmpeg-devel] [PATCH 3/4] jvdec: remove redundant check
Paul B Mahol
onemda at gmail.com
Tue Jul 3 14:00:33 CEST 2012
Signed-off-by: Paul B Mahol <onemda at gmail.com>
---
libavcodec/jvdec.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/jvdec.c b/libavcodec/jvdec.c
index 756220b..098fe19 100644
--- a/libavcodec/jvdec.c
+++ b/libavcodec/jvdec.c
@@ -142,7 +142,7 @@ static int decode_frame(AVCodecContext *avctx,
buf += 5;
if (video_size) {
- if (video_size < 0 || video_size > avpkt->size) {
+ if (video_size < 0 || video_size > avpkt->size - 5) {
av_log(avctx, AV_LOG_ERROR, "video size %d invalid\n", video_size);
return AVERROR_INVALIDDATA;
}
@@ -153,7 +153,7 @@ static int decode_frame(AVCodecContext *avctx,
if (video_type == 0 || video_type == 1) {
GetBitContext gb;
- init_get_bits(&gb, buf, 8 * FFMIN(video_size, buf_end - buf));
+ init_get_bits(&gb, buf, 8 * video_size);
for (j = 0; j < avctx->height; j += 8)
for (i = 0; i < avctx->width; i += 8)
--
1.7.7
More information about the ffmpeg-devel
mailing list