mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
mpegaudio_parser: don't return AVERROR_PATCHWELCOME
The API does not allow returning AVERROR codes. It triggers an assert in av_parser_parse2. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
This commit is contained in:
parent
73ce1d864c
commit
5249706e9d
@ -98,7 +98,7 @@ static int mpegaudio_parse(AVCodecParserContext *s1,
|
|||||||
} else if (codec_id == AV_CODEC_ID_MP3ADU) {
|
} else if (codec_id == AV_CODEC_ID_MP3ADU) {
|
||||||
avpriv_report_missing_feature(avctx,
|
avpriv_report_missing_feature(avctx,
|
||||||
"MP3ADU full parser");
|
"MP3ADU full parser");
|
||||||
return AVERROR_PATCHWELCOME;
|
return 0; /* parsers must not return error codes */
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user