diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-05-13 00:46:42 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-05-13 00:46:42 +0000 |
commit | 4704097a2b557fa9e58def0956dbdef7842a3fd3 (patch) | |
tree | c1ad308caf530a66679e417e5bf834ce7c23ca75 /libavcodec/svq3.c | |
parent | f138f88364f88cdc1ecd99f55b38c73cd5c7919e (diff) | |
download | ffmpeg-4704097a2b557fa9e58def0956dbdef7842a3fd3.tar.gz |
optimizations
Originally committed as revision 1867 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r-- | libavcodec/svq3.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index 0cd927956c..969e45d81f 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -729,6 +729,13 @@ static int svq3_decode_frame (AVCodecContext *avctx, while (get_bits (&s->gb, 1)) { get_bits (&s->gb, 8); } + + if(avctx->debug&FF_DEBUG_PICT_INFO){ + printf("%c hpel:%d, tpel:%d aqp:%d qp:%d\n", + ff_get_pict_type_char(s->pict_type), h->halfpel_flag, h->thirdpel_flag, + s->adaptive_quant, s->qscale + ); + } /* B-frames are not supported */ if (s->pict_type == B_TYPE/* && avctx->hurry_up*/) |