[FFmpeg-soc] [soc]: r3642 - nellyenc/nellymoserenc.c

bwolowiec subversion at mplayerhq.hu
Wed Aug 27 12:03:41 CEST 2008


Author: bwolowiec
Date: Wed Aug 27 12:03:41 2008
New Revision: 3642

Log:
remove unused debug code


Modified:
   nellyenc/nellymoserenc.c

Modified: nellyenc/nellymoserenc.c
==============================================================================
--- nellyenc/nellymoserenc.c	(original)
+++ nellyenc/nellymoserenc.c	Wed Aug 27 12:03:41 2008
@@ -221,17 +221,8 @@ static void encode_block(NellyMoserEncod
                 put_bits(&pb, s->bits[i], best_idx);
             }
         }
-        av_log(s->avctx, AV_LOG_DEBUG, "count=%i (%i)\n",
-                put_bits_count(&pb),
-                NELLY_HEADER_BITS + NELLY_DETAIL_BITS
-                );
         if(!block)
             put_bits(&pb, NELLY_HEADER_BITS + NELLY_DETAIL_BITS - put_bits_count(&pb) , 0);
-
-        av_log(s->avctx, AV_LOG_DEBUG, "count=%i (%i)\n",
-                put_bits_count(&pb),
-                NELLY_HEADER_BITS + NELLY_DETAIL_BITS
-                );
     }
 
 }



More information about the FFmpeg-soc mailing list