summaryrefslogtreecommitdiff
path: root/libavcodec/wmadec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-09-23 12:29:56 +0000
committerDiego Biurrun <diego@biurrun.de>2009-09-23 12:29:56 +0000
commit75bbed517f5365e04197aad11c3a5e43b0c46c71 (patch)
treeb4d53fcc299f42b0b4c8473393e87baad12f7383 /libavcodec/wmadec.c
parentfa6f27517beb0807138b37213f28a997bfa6db3c (diff)
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
Diffstat (limited to 'libavcodec/wmadec.c')
-rw-r--r--libavcodec/wmadec.c3
1 files changed, 0 insertions, 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 */