diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2009-06-15 22:36:57 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2009-06-15 22:36:57 +0000 |
| commit | 3866755d28f35bdaf29147799009b1d0ac89d1d7 (patch) | |
| tree | 619f82f320705700ffb098cdf1829a4ebf3ba62c /apps/codecs | |
| parent | c18495842a1be1267eb816e4fe8630923f95d824 (diff) | |
| download | rockbox-3866755d28f35bdaf29147799009b1d0ac89d1d7.zip rockbox-3866755d28f35bdaf29147799009b1d0ac89d1d7.tar.gz rockbox-3866755d28f35bdaf29147799009b1d0ac89d1d7.tar.bz2 rockbox-3866755d28f35bdaf29147799009b1d0ac89d1d7.tar.xz | |
Remove unused variable and assignment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21304 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/libwma/wmadeci.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/codecs/libwma/wmadeci.c b/apps/codecs/libwma/wmadeci.c index 9fac72f..aa81b5b 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) { if (s->channel_coded[ch]) { - int n4, index, n; + int n4, index; - n = s->block_len; n4 = s->block_len >>1; /*faster IMDCT from Vorbis*/ |