Commit d3c0c1f2 authored by cehoyos's avatar cehoyos

Correctly decode some Avid AV1x samples, fixes issue 1684.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21241 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5d82dbc0
......@@ -137,6 +137,9 @@ static int raw_decode(AVCodecContext *avctx,
buf= dst;
}
if(avctx->codec_tag == MKTAG('A', 'V', '1', 'x'))
buf += buf_size - context->length;
if(buf_size < context->length - (avctx->pix_fmt==PIX_FMT_PAL8 ? 256*4 : 0))
return -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment