fix infinite loop
Originally committed as revision 5102 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
61452d5637
commit
d00bff20b2
@ -2008,8 +2008,10 @@ static int qdm2_decode_frame(AVCodecContext *avctx,
|
|||||||
{
|
{
|
||||||
QDM2Context *s = avctx->priv_data;
|
QDM2Context *s = avctx->priv_data;
|
||||||
|
|
||||||
if((buf == NULL) || (buf_size < s->checksum_size))
|
if(!buf)
|
||||||
return 0;
|
return 0;
|
||||||
|
if(buf_size < s->checksum_size)
|
||||||
|
return -1;
|
||||||
|
|
||||||
*data_size = s->channels * s->frame_size * sizeof(int16_t);
|
*data_size = s->channels * s->frame_size * sizeof(int16_t);
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user