mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/asvdec: dont fail without extradata
extradata is not mandatory to decode asv Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1e9a850df9
commit
13b353a7cb
@ -272,8 +272,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
|
||||
int i;
|
||||
|
||||
if (avctx->extradata_size < 1) {
|
||||
av_log(avctx, AV_LOG_ERROR, "No extradata provided\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
av_log(avctx, AV_LOG_WARNING, "No extradata provided\n");
|
||||
}
|
||||
|
||||
ff_asv_common_init(avctx);
|
||||
|
Loading…
Reference in New Issue
Block a user