diff options
author | Marcoen Hirschberg <marcoen@gmail.com> | 2007-09-20 12:32:39 +0000 |
---|---|---|
committer | Marcoen Hirschberg <marcoen@gmail.com> | 2007-09-20 12:32:39 +0000 |
commit | b2abd6767102a3dfcb8ca47986fae2ad55f8c9bd (patch) | |
tree | 933235b3307b1a8ce3dde3a09225794f4bc8a266 | |
parent | 1ddef375df58c96327ec05f386f544d2c98007cf (diff) |
remove unused struct member and variable
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14777 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/codecs/libwma/wmadec.h | 1 | ||||
-rw-r--r-- | apps/codecs/libwma/wmadeci.c | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/apps/codecs/libwma/wmadec.h b/apps/codecs/libwma/wmadec.h index 95eb31956a..1d5a67d8a9 100644 --- a/apps/codecs/libwma/wmadec.h +++ b/apps/codecs/libwma/wmadec.h @@ -140,7 +140,6 @@ typedef struct WMADecodeContext fixed32 (*coefs)[MAX_CHANNELS][BLOCK_MAX_SIZE]; MDCTContext mdct_ctx[BLOCK_NB_SIZES]; fixed32 *windows[BLOCK_NB_SIZES]; - FFTComplex *mdct_tmp; /* temporary storage for imdct */ /* output buffer for one frame and the last for IMDCT windowing */ fixed32 frame_out[MAX_CHANNELS][BLOCK_MAX_SIZE * 2]; /* last frame info */ diff --git a/apps/codecs/libwma/wmadeci.c b/apps/codecs/libwma/wmadeci.c index bc3c11f9f2..8523beafbf 100644 --- a/apps/codecs/libwma/wmadeci.c +++ b/apps/codecs/libwma/wmadeci.c @@ -61,9 +61,6 @@ uint16_t *runtabarray[2], *levtabarray[2]; uint16_t runtab0[1336], runtab1[1336], levtab0[1336], levtab1[1336]; //these could be made smaller since only one can be 1336 -FFTComplex mdct_tmp[1] ; /* dummy var */ - - /*putting these in IRAM actually makes PP slower*/ VLC_TYPE vlcbuf1[2550][2]; VLC_TYPE vlcbuf2[2550][2]; @@ -512,7 +509,6 @@ int wma_decode_init(WMADecodeContext* s, asf_waveformatex_t *wfx) mdct_init_global(); - s->mdct_tmp = mdct_tmp; /* temporary storage for imdct */ for(i = 0; i < s->nb_block_sizes; ++i) { ff_mdct_init(&s->mdct_ctx[i], s->frame_len_bits - i + 1, 1); |