mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-12-03 17:10:53 +00:00
Print unexpected length of flicvideo extradata.
This commit is contained in:
parent
cbda76c7c6
commit
b4043ef504
@ -87,7 +87,7 @@ static av_cold int flic_decode_init(AVCodecContext *avctx)
|
||||
avctx->extradata_size != 12 &&
|
||||
avctx->extradata_size != 128 &&
|
||||
avctx->extradata_size != 1024) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Expected extradata of 12, 128 or 1024 bytes\n");
|
||||
av_log(avctx, AV_LOG_ERROR, "Expected extradata of 12, 128 or 1024 bytes, got %d\n", avctx->extradata_size);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user