summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2008-07-19 20:52:43 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2008-07-19 20:52:43 +0000
commit6da45d4c56c2771aa364e88ac8e2bcf124a73359 (patch)
treed57dab0c84e4abb8e4016e42de4a53f878040845
parent0099015a5cb5326ff5ebc72c9f4b324abdc24601 (diff)
downloadrockbox-6da45d4c56c2771aa364e88ac8e2bcf124a73359.tar.gz
rockbox-6da45d4c56c2771aa364e88ac8e2bcf124a73359.zip
Remove unused variable.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18095 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/libwma/wmadec.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/codecs/libwma/wmadec.h b/apps/codecs/libwma/wmadec.h
index c65dd75acf..cb49f611c9 100644
--- a/apps/codecs/libwma/wmadec.h
+++ b/apps/codecs/libwma/wmadec.h
@@ -23,7 +23,6 @@
23#include "asf.h" 23#include "asf.h"
24#include "bitstream.h" /* For GetBitContext */ 24#include "bitstream.h" /* For GetBitContext */
25#include "types.h" 25#include "types.h"
26#include "mdct.h"
27//#include "dsputil.h" /* For MDCTContext */ 26//#include "dsputil.h" /* For MDCTContext */
28 27
29 28
@@ -118,7 +117,6 @@ typedef struct WMADecodeContext
118 fixed32 max_exponent[MAX_CHANNELS]; 117 fixed32 max_exponent[MAX_CHANNELS];
119 int16_t coefs1[MAX_CHANNELS][BLOCK_MAX_SIZE]; 118 int16_t coefs1[MAX_CHANNELS][BLOCK_MAX_SIZE];
120 fixed32 (*coefs)[MAX_CHANNELS][BLOCK_MAX_SIZE]; 119 fixed32 (*coefs)[MAX_CHANNELS][BLOCK_MAX_SIZE];
121 MDCTContext mdct_ctx[BLOCK_NB_SIZES];
122 fixed32 *windows[BLOCK_NB_SIZES]; 120 fixed32 *windows[BLOCK_NB_SIZES];
123 /* output buffer for one frame and the last for IMDCT windowing */ 121 /* output buffer for one frame and the last for IMDCT windowing */
124 fixed32 (*frame_out)[MAX_CHANNELS][BLOCK_MAX_SIZE*2]; 122 fixed32 (*frame_out)[MAX_CHANNELS][BLOCK_MAX_SIZE*2];