From b4043ef504b77c357d33ffa2be28ed1c4eeecf7f Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Thu, 19 Apr 2012 16:07:31 +0200 Subject: [PATCH] Print unexpected length of flicvideo extradata. --- libavcodec/flicvideo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/flicvideo.c b/libavcodec/flicvideo.c index 51bf59073c..1754eef28b 100644 --- a/libavcodec/flicvideo.c +++ b/libavcodec/flicvideo.c @@ -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; }