[FFmpeg-cvslog] h264_sei: log unknown sei messages

Vittorio Giovara git at videolan.org
Tue Sep 24 15:08:48 CEST 2013


ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Thu Sep 19 17:28:41 2013 +0200| [26179964ff3fa1173e6f512c5735ba8223e2395d] | committer: Anton Khirnov

h264_sei: log unknown sei messages

Signed-off-by: Anton Khirnov <anton at khirnov.net>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=26179964ff3fa1173e6f512c5735ba8223e2395d
---

 libavcodec/h264_sei.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c
index f72d72b..47f9c14 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);
         }
 



More information about the ffmpeg-cvslog mailing list