summaryrefslogtreecommitdiff
path: root/apps/codecs/libwma/wmadec.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libwma/wmadec.h')
-rw-r--r--apps/codecs/libwma/wmadec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libwma/wmadec.h b/apps/codecs/libwma/wmadec.h
index 0de50795c4..e3e5d389ae 100644
--- a/apps/codecs/libwma/wmadec.h
+++ b/apps/codecs/libwma/wmadec.h
@@ -131,7 +131,7 @@ typedef struct WMADecodeContext
131 fixed32 coefs[MAX_CHANNELS][BLOCK_MAX_SIZE]; 131 fixed32 coefs[MAX_CHANNELS][BLOCK_MAX_SIZE];
132 MDCTContext mdct_ctx[BLOCK_NB_SIZES]; 132 MDCTContext mdct_ctx[BLOCK_NB_SIZES];
133 fixed32 *windows[BLOCK_NB_SIZES]; 133 fixed32 *windows[BLOCK_NB_SIZES];
134 FFTComplex mdct_tmp[BLOCK_MAX_SIZE]; /* temporary storage for imdct */ 134 FFTComplex *mdct_tmp; /* temporary storage for imdct */
135 /* output buffer for one frame and the last for IMDCT windowing */ 135 /* output buffer for one frame and the last for IMDCT windowing */
136 fixed32 frame_out[MAX_CHANNELS][BLOCK_MAX_SIZE * 2]; 136 fixed32 frame_out[MAX_CHANNELS][BLOCK_MAX_SIZE * 2];
137 /* last frame info */ 137 /* last frame info */