Commit b4043ef5 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Print unexpected length of flicvideo extradata.

parent cbda76c7
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment