diff flacdec.c @ 8651:7b19ec801069 libavcodec

flacdec: remove another unneeded debugging statement
author jbr
date Sat, 24 Jan 2009 16:02:30 +0000
parents 035c970a12ac
children 1a88ffbd3233
line wrap: on
line diff
--- a/flacdec.c	Sat Jan 24 16:01:20 2009 +0000
+++ b/flacdec.c	Sat Jan 24 16:02:30 2009 +0000
@@ -244,7 +244,6 @@
         tmp = get_bits(&s->gb, method_type == 0 ? 4 : 5);
         if (tmp == (method_type == 0 ? 15 : 31))
         {
-            av_log(s->avctx, AV_LOG_DEBUG, "fixed len partition\n");
             tmp = get_bits(&s->gb, 5);
             for (; i < samples; i++, sample++)
                 s->decoded[channel][sample] = get_sbits(&s->gb, tmp);