[FFmpeg-cvslog] h264: Print user data SEI under normal debug verbosity

Vittorio Giovara git at videolan.org
Mon Nov 2 11:55:05 CET 2015


ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Thu Oct 22 14:13:28 2015 +0200| [8487987b87a252963b27b6adfd82887ea5933918] | committer: Vittorio Giovara

h264: Print user data SEI under normal debug verbosity

Drop the need of setting -debug bugs since it's not a bug, and the
message is already under a AV_LOG_DEBUG log level. Instead only print
it when there is an actual string in it.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8487987b87a252963b27b6adfd82887ea5933918
---

 libavcodec/h264_sei.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c
index ddf1b6f..2b25840 100644
--- a/libavcodec/h264_sei.c
+++ b/libavcodec/h264_sei.c
@@ -229,7 +229,7 @@ static int decode_unregistered_user_data(H264Context *h, int size)
     if (e == 1 && build > 0)
         h->x264_build = build;
 
-    if (h->avctx->debug & FF_DEBUG_BUGS)
+    if (strlen(user_data + 16) > 0)
         av_log(h->avctx, AV_LOG_DEBUG, "user data:\"%s\"\n", user_data + 16);
 
     for (; i < size; i++)



More information about the ffmpeg-cvslog mailing list