comparison wmadec.c @ 10248:575faff0a524 libavcodec

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'
author diego
date Wed, 23 Sep 2009 12:29:56 +0000
parents 0e9a50fbed9f
children ae08043eb532
comparison
equal deleted inserted replaced
10247:d405b8e7461a 10248:575faff0a524
623 } 623 }
624 } 624 }
625 #endif 625 #endif
626 626
627 if (s->ms_stereo && s->channel_coded[1]) { 627 if (s->ms_stereo && s->channel_coded[1]) {
628 float a, b;
629 int i;
630
631 /* nominal case for ms stereo: we do it before mdct */ 628 /* nominal case for ms stereo: we do it before mdct */
632 /* no need to optimize this case because it should almost 629 /* no need to optimize this case because it should almost
633 never happen */ 630 never happen */
634 if (!s->channel_coded[0]) { 631 if (!s->channel_coded[0]) {
635 tprintf(s->avctx, "rare ms-stereo case happened\n"); 632 tprintf(s->avctx, "rare ms-stereo case happened\n");