From 75bbed517f5365e04197aad11c3a5e43b0c46c71 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 23 Sep 2009 12:29:56 +0000 Subject: [PATCH] Remove unused variables, fixes the warnings: libavcodec/wmadec.c:629: warning: unused variable `i' libavcodec/wmadec.c:628: warning: unused variable `b' libavcodec/wmadec.c:628: warning: unused variable `a' Originally committed as revision 19994 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/wmadec.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index decdbe94ae..bed058682b 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -625,9 +625,6 @@ static int wma_decode_block(WMACodecContext *s) #endif if (s->ms_stereo && s->channel_coded[1]) { - float a, b; - int i; - /* nominal case for ms stereo: we do it before mdct */ /* no need to optimize this case because it should almost never happen */ -- 2.20.1