diff options
| author | Pedro Vasconcelos <pbv@rockbox.org> | 2005-05-27 09:14:00 +0000 |
|---|---|---|
| committer | Pedro Vasconcelos <pbv@rockbox.org> | 2005-05-27 09:14:00 +0000 |
| commit | 024db0a766f9590baea73babfefff278c28a5b2c (patch) | |
| tree | 27e5e27e056cd0b988c2e6af7e575fe974f88035 /apps/codecs/Tremor/os.h | |
| parent | 38413489305efad4f682534f92c5daa031f5440a (diff) | |
| download | rockbox-024db0a766f9590baea73babfefff278c28a5b2c.zip rockbox-024db0a766f9590baea73babfefff278c28a5b2c.tar.gz rockbox-024db0a766f9590baea73babfefff278c28a5b2c.tar.bz2 rockbox-024db0a766f9590baea73babfefff278c28a5b2c.tar.xz | |
Basic optimizations of the Vorbis decoder for the ihp-1x0.
Capable of real-time decoding with cpu freq at 120mhz.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6527 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/Tremor/os.h')
| -rw-r--r-- | apps/codecs/Tremor/os.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/Tremor/os.h b/apps/codecs/Tremor/os.h index 65a4992..bb4b867 100644 --- a/apps/codecs/Tremor/os.h +++ b/apps/codecs/Tremor/os.h @@ -24,12 +24,12 @@ # define _V_IFDEFJAIL_H_ # ifdef __GNUC__ -# define STIN static __inline__ +# define STIN static inline # elif _WIN32 -# define STIN static __inline +# define STIN static __inline__ # endif #else -# define STIN static +# define STIN static inline #endif #ifndef M_PI |