From 9f2db54594be5b2e63f1f5b3d12edd0d2896e843 Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Sat, 24 Jan 2009 16:02:30 +0000 Subject: [PATCH] flacdec: remove another unneeded debugging statement Originally committed as revision 16751 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/flacdec.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c index 5c05344c17..85164b204d 100644 --- a/libavcodec/flacdec.c +++ b/libavcodec/flacdec.c @@ -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); -- GitLab