diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2013-09-19 17:28:41 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-09-24 13:24:28 +0200 |
commit | 26179964ff3fa1173e6f512c5735ba8223e2395d (patch) | |
tree | 4d8c7ab19d6fc877cda83a9e7870f9a442fa1847 | |
parent | 5f24fe82e5fcf227abb5ebf62aa9bc246fda8c0d (diff) | |
download | ffmpeg-26179964ff3fa1173e6f512c5735ba8223e2395d.tar.gz |
h264_sei: log unknown sei messages
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r-- | libavcodec/h264_sei.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c index f72d72b6e1..47f9c14d7d 100644 --- a/libavcodec/h264_sei.c +++ b/libavcodec/h264_sei.c @@ -212,6 +212,7 @@ int ff_h264_decode_sei(H264Context *h) return ret; break; default: + av_log(h->avctx, AV_LOG_DEBUG, "unknown SEI type %d\n", type); skip_bits(&h->gb, 8 * size); } |