summaryrefslogtreecommitdiff
path: root/apps/codecs/libwma/mdct.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libwma/mdct.h')
-rw-r--r--apps/codecs/libwma/mdct.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/codecs/libwma/mdct.h b/apps/codecs/libwma/mdct.h
index 67f510164b..57d65ae9a7 100644
--- a/apps/codecs/libwma/mdct.h
+++ b/apps/codecs/libwma/mdct.h
@@ -25,6 +25,8 @@ typedef struct MDCTContext
25 int n; /* size of MDCT (i.e. number of input data * 2) */ 25 int n; /* size of MDCT (i.e. number of input data * 2) */
26 int nbits; /* n = 2^nbits */ 26 int nbits; /* n = 2^nbits */
27 /* pre/post rotation tables */ 27 /* pre/post rotation tables */
28 fixed32 *tcos;
29 fixed32 *tsin;
28 FFTContext fft; 30 FFTContext fft;
29} 31}
30MDCTContext; 32MDCTContext;