diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-10-19 14:33:20 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-21 03:05:49 +0200 |
commit | 832b4c0a86bc1c48ed4c49792032778ccf7580c1 (patch) | |
tree | 1a56a7e63136dae4d5023fa4bd4e86b6aa9e90e6 /libavcodec/libutvideodec.cpp | |
parent | cec4e1c7c712dbb20170a94ae4903f8a321433b7 (diff) | |
download | ffmpeg-832b4c0a86bc1c48ed4c49792032778ccf7580c1.tar.gz |
avcodec/libutvideodec: print extradata size if unsupported
Reviewed-by: Benoit Fouet <benoit.fouet@free.fr>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libutvideodec.cpp')
-rw-r--r-- | libavcodec/libutvideodec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libutvideodec.cpp b/libavcodec/libutvideodec.cpp index 60dbd15fa8..36dc9524fc 100644 --- a/libavcodec/libutvideodec.cpp +++ b/libavcodec/libutvideodec.cpp @@ -40,7 +40,7 @@ static av_cold int utvideo_decode_init(AVCodecContext *avctx) int begin_ret; if (avctx->extradata_size != 4*4) { - av_log(avctx, AV_LOG_ERROR, "Extradata size mismatch.\n"); + av_log(avctx, AV_LOG_ERROR, "Extradata size (%d) mismatch.\n", avctx->extradata_size); return -1; } |