Skip to content
Snippets Groups Projects
Commit ed6d451d authored by Hendrik Leppkes's avatar Hendrik Leppkes
Browse files

Merge commit '8487987b'


* commit '8487987b':
  h264: Print user data SEI under normal debug verbosity

Merged-by: default avatarHendrik Leppkes <h.leppkes@gmail.com>
parents 1fc13a62 8487987b
No related branches found
No related tags found
No related merge requests found
...@@ -240,7 +240,7 @@ static int decode_unregistered_user_data(H264Context *h, int size) ...@@ -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)) if (e == 1 && build == 1 && !strncmp(user_data+16, "x264 - core 0000", 16))
h->x264_build = 67; 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); av_log(h->avctx, AV_LOG_DEBUG, "user data:\"%s\"\n", user_data + 16);
for (; i < size; i++) for (; i < size; i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment