[FFmpeg-devel] [PATCH 2/2] avcodec/h264_ps: Provide more details with "Truncated VUI" Message
Michael Niedermayer
michael at niedermayer.cc
Mon Dec 16 00:00:29 EET 2019
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
libavcodec/h264_ps.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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;
}
--
2.24.0
More information about the ffmpeg-devel
mailing list