From: Diego Biurrun Date: Wed, 23 Sep 2009 12:29:56 +0000 (+0000) Subject: Remove unused variables, fixes the warnings: X-Git-Tag: v0.6~3194 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=75bbed517f5365e04197aad11c3a5e43b0c46c71;p=platform%2Fupstream%2Flibav.git 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 --- diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index decdbe9..bed0586 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 */