[FFmpeg-cvslog] r14253 - trunk/libavcodec/svq3.c
michael
subversion
Wed Jul 16 03:57:35 CEST 2008
Author: michael
Date: Wed Jul 16 03:57:28 2008
New Revision: 14253
Log:
Print slice num as well.
Modified:
trunk/libavcodec/svq3.c
Modified: trunk/libavcodec/svq3.c
==============================================================================
--- trunk/libavcodec/svq3.c (original)
+++ trunk/libavcodec/svq3.c Wed Jul 16 03:57:28 2008
@@ -852,9 +852,9 @@ static int svq3_decode_frame (AVCodecCon
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
);
}
More information about the ffmpeg-cvslog
mailing list