You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user