summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/libwmapro/wmapro_mdct.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/codecs/libwmapro/wmapro_mdct.c b/apps/codecs/libwmapro/wmapro_mdct.c
index fc4e99279c..3f5439e5f3 100644
--- a/apps/codecs/libwmapro/wmapro_mdct.c
+++ b/apps/codecs/libwmapro/wmapro_mdct.c
@@ -5,7 +5,11 @@
5#include "../lib/fft.h" /* for FFT data structures */ 5#include "../lib/fft.h" /* for FFT data structures */
6#include "codeclib.h" 6#include "codeclib.h"
7 7
8#include "../lib/codeclib_misc.h" /* for XNPROD31 */ 8 /* for XNPROD31 */
9#include "asm_arm.h"
10#include "asm_mcf5249.h"
11#include "codeclib_misc.h"
12
9#include "wmapro_math.h" 13#include "wmapro_math.h"
10 14
11void imdct_half(unsigned int nbits, int32_t *output, const int32_t *input){ 15void imdct_half(unsigned int nbits, int32_t *output, const int32_t *input){