Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-04-19 18:07:31 +0400
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-04-19 18:08:12 +0400
commitb4043ef504b77c357d33ffa2be28ed1c4eeecf7f (patch)
tree71d50d1ee8e8ebf963d340f451900dac5d07007f /libavcodec/flicvideo.c
parentcbda76c7c65c5c0a4d5de03baad96c4a940c7336 (diff)
Print unexpected length of flicvideo extradata.
Diffstat (limited to 'libavcodec/flicvideo.c')
-rw-r--r--libavcodec/flicvideo.c2
1 files changed, 1 insertions, 1 deletions
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;
}