diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-25 12:04:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-25 12:04:25 +0000 |
commit | 49573a87c93988807d8610cf5ff57e35ca07e8d0 (patch) | |
tree | 04259d4cac97264a7a48a0a03137b9bcffa65f41 /libavcodec/h264.c | |
parent | cf8bb33428b89f7f58457ad4c2d6954836552ebe (diff) | |
download | ffmpeg-49573a87c93988807d8610cf5ff57e35ca07e8d0.tar.gz |
Print which slices are IDR not just the slice type.
Originally committed as revision 15411 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 4a6c86e8ac..d6751925a9 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -4036,11 +4036,11 @@ static int decode_slice_header(H264Context *h, H264Context *h0){ h->emu_edge_height= (FRAME_MBAFF || FIELD_PICTURE) ? 0 : h->emu_edge_width; if(s->avctx->debug&FF_DEBUG_PICT_INFO){ - av_log(h->s.avctx, AV_LOG_DEBUG, "slice:%d %s mb:%d %c pps:%u frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d:%d:%d weight:%d%s %s\n", + av_log(h->s.avctx, AV_LOG_DEBUG, "slice:%d %s mb:%d %c%s%s pps:%u frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d:%d:%d weight:%d%s %s\n", h->slice_num, (s->picture_structure==PICT_FRAME ? "F" : s->picture_structure==PICT_TOP_FIELD ? "T" : "B"), first_mb_in_slice, - av_get_pict_type_char(h->slice_type), + av_get_pict_type_char(h->slice_type), h->slice_type_fixed ? " fix" : "", h->nal_unit_type == NAL_IDR_SLICE ? " IDR" : "", pps_id, h->frame_num, s->current_picture_ptr->field_poc[0], s->current_picture_ptr->field_poc[1], h->ref_count[0], h->ref_count[1], |