1
0
Fork 0
forked from len0rd/rockbox

Modify the mdct library to enable using it outside rockbox - No functional changes.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22295 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Mohamed Tarek 2009-08-13 20:02:31 +00:00
parent e98c198fd8
commit 272954954c
3 changed files with 9 additions and 0 deletions

View file

@ -34,6 +34,10 @@
#ifndef _V_WIDE_MATH
#define _V_WIDE_MATH
#ifndef ROCKBOX
#include <inttypes.h>
#endif /* ROCKBOX */
#ifndef _LOW_ACCURACY_
/* 64 bit multiply */
/* #include <sys/types.h> */

View file

@ -37,7 +37,9 @@
#include "mdct2.h"
#include "mdct_lookup.h"
#ifdef ROCKBOX
#include <codecs/lib/codeclib.h>
#endif /* ROCKBOX */
#if defined(CPU_ARM) && CONFIG_CPU != S3C2440
/* C code is faster on S3C2440 */

View file

@ -28,7 +28,10 @@
# //define LOOKUP_T const ogg_int32_t
#endif
#ifdef ROCKBOX
#include <codecs.h>
#endif /* ROCKBOX */
#include "asm_arm.h"
#include "asm_mcf5249.h"
#include "codeclib_misc.h"