Commit 9c2e31c3 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '26179964'

* commit '26179964':
  h264_sei: log unknown sei messages

Conflicts:
	libavcodec/h264_sei.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 0ebc3728 26179964
......@@ -318,6 +318,9 @@ int ff_h264_decode_sei(H264Context *h)
case SEI_TYPE_FRAME_PACKING:
if (decode_frame_packing(h, size) < 0)
return -1;
break;
default:
av_log(h->avctx, AV_LOG_DEBUG, "unknown SEI type %d\n", type);
}
skip_bits_long(&h->gb, next - get_bits_count(&h->gb));
......
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