Commit ed6d451d authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit '8487987b'

* commit '8487987b':
  h264: Print user data SEI under normal debug verbosity
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents 1fc13a62 8487987b
......@@ -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++)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment