Commit b4f4f5f5 authored by jbr's avatar jbr

flacdec: remove another unneeded debugging statement

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16751 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ba5febf9
......@@ -244,7 +244,6 @@ static int decode_residuals(FLACContext *s, int channel, int pred_order)
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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment