[FFmpeg-cvslog] h264: print num_reorder_frames in debug output
Michael Niedermayer
git at videolan.org
Sat Aug 4 15:50:43 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Aug 4 15:34:27 2012 +0200| [ae0312ab2e7545195078c734b081c4f1c8933490] | committer: Michael Niedermayer
h264: print num_reorder_frames in debug output
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ae0312ab2e7545195078c734b081c4f1c8933490
---
libavcodec/h264_ps.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c
index 2945948..cdc6b07 100644
--- a/libavcodec/h264_ps.c
+++ b/libavcodec/h264_ps.c
@@ -492,7 +492,7 @@ int ff_h264_decode_seq_parameter_set(H264Context *h){
if(s->avctx->debug&FF_DEBUG_PICT_INFO){
static const char csp[4][5] = { "Gray", "420", "422", "444" };
- av_log(h->s.avctx, AV_LOG_DEBUG, "sps:%u profile:%d/%d poc:%d ref:%d %dx%d %s %s crop:%d/%d/%d/%d %s %s %d/%d b%d\n",
+ av_log(h->s.avctx, AV_LOG_DEBUG, "sps:%u profile:%d/%d poc:%d ref:%d %dx%d %s %s crop:%d/%d/%d/%d %s %s %d/%d b%d reo:%d\n",
sps_id, sps->profile_idc, sps->level_idc,
sps->poc_type,
sps->ref_frame_count,
@@ -505,7 +505,8 @@ int ff_h264_decode_seq_parameter_set(H264Context *h){
csp[sps->chroma_format_idc],
sps->timing_info_present_flag ? sps->num_units_in_tick : 0,
sps->timing_info_present_flag ? sps->time_scale : 0,
- sps->bit_depth_luma
+ sps->bit_depth_luma,
+ h->sps.bitstream_restriction_flag ? sps->num_reorder_frames : -1
);
}
More information about the ffmpeg-cvslog
mailing list