git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
cbda76c
)
Print unexpected length of flicvideo extradata.
author
Carl Eugen Hoyos
<cehoyos@ag.or.at>
Thu, 19 Apr 2012 14:07:31 +0000
(16:07 +0200)
committer
Carl Eugen Hoyos
<cehoyos@ag.or.at>
Thu, 19 Apr 2012 14:08:12 +0000
(16:08 +0200)
libavcodec/flicvideo.c
patch
|
blob
|
history
diff --git
a/libavcodec/flicvideo.c
b/libavcodec/flicvideo.c
index
51bf590
..
1754eef
100644
(file)
--- 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;
}