summaryrefslogtreecommitdiff
path: root/libavcodec/svq3.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-07-16 01:57:28 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-07-16 01:57:28 +0000
commitfb0fbd7c6c444352ae009159c9d31a53ff83198c (patch)
tree35f5b884c232c5f0e3f0213662dacf246092ae4f /libavcodec/svq3.c
parent5eb0f2a425b6e1e0f821b52972b7af75de3480e2 (diff)
Print slice num as well.
Originally committed as revision 14253 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r--libavcodec/svq3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index c007f49bdc..67fa3172b4 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -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
);
}