diff svq3.c @ 1250:fa181d095027 libavcodec

optimizations
author michaelni
date Tue, 13 May 2003 00:46:42 +0000
parents 8bb75c3c2f21
children 67ee8bab0f28
line wrap: on
line diff
--- a/svq3.c	Mon May 12 23:03:00 2003 +0000
+++ b/svq3.c	Tue May 13 00:46:42 2003 +0000
@@ -729,6 +729,13 @@
   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*/)