summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2009-06-15 22:36:57 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2009-06-15 22:36:57 +0000
commit3866755d28f35bdaf29147799009b1d0ac89d1d7 (patch)
tree619f82f320705700ffb098cdf1829a4ebf3ba62c
parentc18495842a1be1267eb816e4fe8630923f95d824 (diff)
downloadrockbox-3866755d28f35bdaf29147799009b1d0ac89d1d7.tar.gz
rockbox-3866755d28f35bdaf29147799009b1d0ac89d1d7.zip
Remove unused variable and assignment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21304 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/libwma/wmadeci.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/codecs/libwma/wmadeci.c b/apps/codecs/libwma/wmadeci.c
index 9fac72f287..aa81b5b81f 100644
--- a/apps/codecs/libwma/wmadeci.c
+++ b/apps/codecs/libwma/wmadeci.c
@@ -1391,9 +1391,8 @@ static int wma_decode_block(WMADecodeContext *s, int32_t *scratch_buffer)
1391 { 1391 {
1392 if (s->channel_coded[ch]) 1392 if (s->channel_coded[ch])
1393 { 1393 {
1394 int n4, index, n; 1394 int n4, index;
1395 1395
1396 n = s->block_len;
1397 n4 = s->block_len >>1; 1396 n4 = s->block_len >>1;
1398 1397
1399 /*faster IMDCT from Vorbis*/ 1398 /*faster IMDCT from Vorbis*/