comparison 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
comparison
equal deleted inserted replaced
8650:035c970a12ac 8651:7b19ec801069
242 for (partition = 0; partition < (1 << rice_order); partition++) 242 for (partition = 0; partition < (1 << rice_order); partition++)
243 { 243 {
244 tmp = get_bits(&s->gb, method_type == 0 ? 4 : 5); 244 tmp = get_bits(&s->gb, method_type == 0 ? 4 : 5);
245 if (tmp == (method_type == 0 ? 15 : 31)) 245 if (tmp == (method_type == 0 ? 15 : 31))
246 { 246 {
247 av_log(s->avctx, AV_LOG_DEBUG, "fixed len partition\n");
248 tmp = get_bits(&s->gb, 5); 247 tmp = get_bits(&s->gb, 5);
249 for (; i < samples; i++, sample++) 248 for (; i < samples; i++, sample++)
250 s->decoded[channel][sample] = get_sbits(&s->gb, tmp); 249 s->decoded[channel][sample] = get_sbits(&s->gb, tmp);
251 } 250 }
252 else 251 else