summaryrefslogtreecommitdiff
path: root/libavcodec/h264_sei.c
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-11-02 11:53:55 +0100
committerHendrik Leppkes <h.leppkes@gmail.com>2015-11-02 11:53:55 +0100
commited6d451d934cc5a285033e0d3d782df1841c0b34 (patch)
tree2dd70046f51f260b7e03b4eac97ae357fc601b20 /libavcodec/h264_sei.c
parent1fc13a6269516541917b646231b5bc19a42c1384 (diff)
parent8487987b87a252963b27b6adfd82887ea5933918 (diff)
downloadffmpeg-ed6d451d934cc5a285033e0d3d782df1841c0b34.tar.gz
Merge commit '8487987b87a252963b27b6adfd82887ea5933918'
* commit '8487987b87a252963b27b6adfd82887ea5933918': h264: Print user data SEI under normal debug verbosity Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavcodec/h264_sei.c')
-rw-r--r--libavcodec/h264_sei.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c
index 818caa8dfd..194a98c81c 100644
--- a/libavcodec/h264_sei.c
+++ b/libavcodec/h264_sei.c
@@ -240,7 +240,7 @@ static int decode_unregistered_user_data(H264Context *h, int size)
if (e == 1 && build == 1 && !strncmp(user_data+16, "x264 - core 0000", 16))
h->x264_build = 67;
- 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++)