Commit 499a2fbf authored by diego's avatar diego

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'


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19994 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 351a67a9
...@@ -625,9 +625,6 @@ static int wma_decode_block(WMACodecContext *s) ...@@ -625,9 +625,6 @@ static int wma_decode_block(WMACodecContext *s)
#endif #endif
if (s->ms_stereo && s->channel_coded[1]) { if (s->ms_stereo && s->channel_coded[1]) {
float a, b;
int i;
/* nominal case for ms stereo: we do it before mdct */ /* nominal case for ms stereo: we do it before mdct */
/* no need to optimize this case because it should almost /* no need to optimize this case because it should almost
never happen */ never happen */
......
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