You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-06 06:27:36 +02:00
loco: check the last plane too
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -240,10 +240,14 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (decoded < 0 || decoded > buf_size)
|
||||||
|
goto buf_too_small;
|
||||||
|
buf_size -= decoded;
|
||||||
|
|
||||||
*got_frame = 1;
|
*got_frame = 1;
|
||||||
*(AVFrame*)data = l->pic;
|
*(AVFrame*)data = l->pic;
|
||||||
|
|
||||||
return buf_size < 0 ? -1 : avpkt->size - buf_size;
|
return avpkt->size - buf_size;
|
||||||
buf_too_small:
|
buf_too_small:
|
||||||
av_log(avctx, AV_LOG_ERROR, "Input data too small.\n");
|
av_log(avctx, AV_LOG_ERROR, "Input data too small.\n");
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
|
Reference in New Issue
Block a user