summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-05-10 10:20:55 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-05-10 10:20:55 +0000
commitb24fac4ca60c05c24ad117ff8a4d8df1d9e8ede6 (patch)
tree6455a67ec687c6da7f6846958329ec08d2b8d842
parent4970f98619e7981a2b032e34bc0849cf139a1142 (diff)
downloadrockbox-b24fac4ca60c05c24ad117ff8a4d8df1d9e8ede6.tar.gz
rockbox-b24fac4ca60c05c24ad117ff8a4d8df1d9e8ede6.zip
wmafixed.h: remove double declaration
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25925 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/libwma/wmafixed.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/codecs/libwma/wmafixed.h b/apps/codecs/libwma/wmafixed.h
index d07acb3c6c..7f04a955ef 100644
--- a/apps/codecs/libwma/wmafixed.h
+++ b/apps/codecs/libwma/wmafixed.h
@@ -50,6 +50,7 @@ fixed64 Fixed32To64(fixed32 x);
50fixed32 fixdiv32(fixed32 x, fixed32 y); 50fixed32 fixdiv32(fixed32 x, fixed32 y);
51fixed64 fixdiv64(fixed64 x, fixed64 y); 51fixed64 fixdiv64(fixed64 x, fixed64 y);
52fixed32 fixsqrt32(fixed32 x); 52fixed32 fixsqrt32(fixed32 x);
53/* Inverse gain of circular cordic rotation in s0.31 format. */
53long fsincos(unsigned long phase, fixed32 *cos); 54long fsincos(unsigned long phase, fixed32 *cos);
54 55
55 56
@@ -105,7 +106,3 @@ static inline fixed32 fixmul32(fixed32 x, fixed32 y)
105} 106}
106 107
107#endif 108#endif
108
109
110/* Inverse gain of circular cordic rotation in s0.31 format. */
111long fsincos(unsigned long phase, fixed32 *cos);