summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-06-03 19:23:34 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-06-03 19:23:34 +0000
commit4d95ae18824399caf6224a1328268fa799a6db18 (patch)
treeeba8d16107e282d18183ba06e1c71871833af60e
parentad5caf3ab74dcc2a8761c597ab8bee985026340f (diff)
Print ct_type and pic_struct.
Originally committed as revision 19081 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/h264.c3
1 files changed, 3 insertions, 0 deletions
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;
}