Message ID | 20191215220029.28817-2-michael@niedermayer.cc |
---|---|
State | New |
Headers | show |
diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c index 74f12f8979..410e767cd9 100644 --- a/libavcodec/h264_ps.c +++ b/libavcodec/h264_ps.c @@ -186,7 +186,7 @@ static inline int decode_vui_parameters(GetBitContext *gb, AVCodecContext *avctx } if (show_bits1(gb) && get_bits_left(gb) < 10) { - av_log(avctx, AV_LOG_WARNING, "Truncated VUI\n"); + av_log(avctx, AV_LOG_WARNING, "Truncated VUI (%d)\n", get_bits_left(gb)); return 0; }
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> --- libavcodec/h264_ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)