mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
v410dec: Check for sufficient input data. Fixes crash
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
parent
733b23c2e4
commit
8f5216905f
@ -55,6 +55,11 @@ static int v410_decode_frame(AVCodecContext *avctx, void *data,
|
||||
if (pic->data[0])
|
||||
avctx->release_buffer(avctx, pic);
|
||||
|
||||
if (avpkt->size < 4 * avctx->height * avctx->width) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Insufficient input data.\n");
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
pic->reference = 0;
|
||||
|
||||
if (avctx->get_buffer(avctx, pic) < 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user