From 4d95ae18824399caf6224a1328268fa799a6db18 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 3 Jun 2009 19:23:34 +0000 Subject: [PATCH] Print ct_type and pic_struct. Originally committed as revision 19081 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 056e1cce77..a4d7920840 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -6891,6 +6891,9 @@ static int decode_picture_timing(H264Context *h){ skip_bits(&s->gb, h->sps.time_offset_length); /* time_offset */ } } + + if(s->avctx->debug & FF_DEBUG_PICT_INFO) + av_log(s->avctx, AV_LOG_DEBUG, "ct_type:%X pic_struct:%d\n", h->sei_ct_type, h->sei_pic_struct); } return 0; }