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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libwma/wmadec.h b/apps/codecs/libwma/wmadec.h
index 395b29f6e8..56f935bbb4 100644
--- a/apps/codecs/libwma/wmadec.h
+++ b/apps/codecs/libwma/wmadec.h
@@ -25,7 +25,7 @@
25#define M_PI 3.14159265358979323846 25#define M_PI 3.14159265358979323846
26 26
27#define M_PI_F 0x3243f // in fixed 32 format 27#define M_PI_F 0x3243f // in fixed 32 format
28#define TWO_M_PI_F 0x6487f //in fixed 32 28#define TWO_M_PI_F 0x6487f //in fixed 32
29 29
30#define MAX_CHANNELS 2 30#define MAX_CHANNELS 2
31 31
@@ -128,7 +128,7 @@ typedef struct WMADecodeContext
128 fixed32 exponents[MAX_CHANNELS][BLOCK_MAX_SIZE]; 128 fixed32 exponents[MAX_CHANNELS][BLOCK_MAX_SIZE];
129 fixed32 max_exponent[MAX_CHANNELS]; 129 fixed32 max_exponent[MAX_CHANNELS];
130 int16_t coefs1[MAX_CHANNELS][BLOCK_MAX_SIZE]; 130 int16_t coefs1[MAX_CHANNELS][BLOCK_MAX_SIZE];
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; /* temporary storage for imdct */ 134 FFTComplex *mdct_tmp; /* temporary storage for imdct */