mirror of https://git.ffmpeg.org/ffmpeg.git
gsm_parser: fix infinite loop
Fixes Ticket1894 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
08101e62cb
commit
4d2f83f8ac
|
@ -54,7 +54,10 @@ static int gsm_parse(AVCodecParserContext *s1, AVCodecContext *avctx,
|
||||||
s->duration = GSM_FRAME_SIZE * 2;
|
s->duration = GSM_FRAME_SIZE * 2;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return AVERROR(EINVAL);
|
*poutbuf = buf;
|
||||||
|
*poutbuf_size = buf_size;
|
||||||
|
av_log(avctx, AV_LOG_ERROR, "Invalid codec_id\n");
|
||||||
|
return buf_size;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue