diff options
Diffstat (limited to 'libavcodec/gsm_parser.c')
-rw-r--r-- | libavcodec/gsm_parser.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/gsm_parser.c b/libavcodec/gsm_parser.c index 1d381fc109..dd26f7df11 100644 --- a/libavcodec/gsm_parser.c +++ b/libavcodec/gsm_parser.c @@ -54,7 +54,10 @@ static int gsm_parse(AVCodecParserContext *s1, AVCodecContext *avctx, s->duration = GSM_FRAME_SIZE * 2; break; default: - return AVERROR(EINVAL); + *poutbuf = buf; + *poutbuf_size = buf_size; + av_log(avctx, AV_LOG_ERROR, "Invalid codec_id\n"); + return buf_size; } } |