Commit 511abaeb authored by michael's avatar michael

Print slice num as well.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14253 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d189063d
......@@ -852,9 +852,9 @@ static int svq3_decode_frame (AVCodecContext *avctx,
s->picture_number = h->slice_num;
if(avctx->debug&FF_DEBUG_PICT_INFO){
av_log(h->s.avctx, AV_LOG_DEBUG, "%c hpel:%d, tpel:%d aqp:%d qp:%d\n",
av_log(h->s.avctx, AV_LOG_DEBUG, "%c hpel:%d, tpel:%d aqp:%d qp:%d, slice_num:%02X\n",
av_get_pict_type_char(s->pict_type), h->halfpel_flag, h->thirdpel_flag,
s->adaptive_quant, s->qscale
s->adaptive_quant, s->qscale, h->slice_num
);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment