# HG changeset patch # User michael # Date 1211763975 0 # Node ID 5ddf098691d31d83a2ab09ada061e672d6eb258b # Parent ff5fd5a1abf5d1e0306657cd8d5f9851534cadb1 print direct_spatial_mv_pred diff -r ff5fd5a1abf5 -r 5ddf098691d3 h264.c --- a/h264.c Sun May 25 20:02:24 2008 +0000 +++ b/h264.c Mon May 26 01:06:15 2008 +0000 @@ -4233,7 +4233,7 @@ 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\n", + 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", h->slice_num, (s->picture_structure==PICT_FRAME ? "F" : s->picture_structure==PICT_TOP_FIELD ? "T" : "B"), first_mb_in_slice, @@ -4244,7 +4244,8 @@ s->qscale, h->deblocking_filter, h->slice_alpha_c0_offset/2, h->slice_beta_offset/2, h->use_weight, - h->use_weight==1 && h->use_weight_chroma ? "c" : "" + h->use_weight==1 && h->use_weight_chroma ? "c" : "", + h->slice_type == FF_B_TYPE ? (h->direct_spatial_mv_pred ? "SPAT" : "TEMP") : "" ); }