mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/libutvideodec: print extradata size if unsupported
Reviewed-by: Benoit Fouet <benoit.fouet@free.fr> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
cec4e1c7c7
commit
832b4c0a86
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue