[FFmpeg-cvslog] Print unexpected length of flicvideo extradata.
Carl Eugen Hoyos
git at videolan.org
Thu Apr 19 16:08:38 CEST 2012
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Thu Apr 19 16:07:31 2012 +0200| [b4043ef504b77c357d33ffa2be28ed1c4eeecf7f] | committer: Carl Eugen Hoyos
Print unexpected length of flicvideo extradata.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b4043ef504b77c357d33ffa2be28ed1c4eeecf7f
---
libavcodec/flicvideo.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/flicvideo.c b/libavcodec/flicvideo.c
index 51bf590..1754eef 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;
}
More information about the ffmpeg-cvslog
mailing list