summaryrefslogtreecommitdiff
path: root/libavcodec/h264_sei.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2013-09-19 17:28:41 +0200
committerAnton Khirnov <anton@khirnov.net>2013-09-24 13:24:28 +0200
commit26179964ff3fa1173e6f512c5735ba8223e2395d (patch)
tree4d8c7ab19d6fc877cda83a9e7870f9a442fa1847 /libavcodec/h264_sei.c
parent5f24fe82e5fcf227abb5ebf62aa9bc246fda8c0d (diff)
h264_sei: log unknown sei messages
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/h264_sei.c')
-rw-r--r--libavcodec/h264_sei.c1
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);
}