diff options
author | Michael Giacomelli <giac2000@hotmail.com> | 2008-09-04 18:02:10 +0000 |
---|---|---|
committer | Michael Giacomelli <giac2000@hotmail.com> | 2008-09-04 18:02:10 +0000 |
commit | 46f85c4c547188d08fd90bad7734d38c654f13ea (patch) | |
tree | f868536dccac3a8d4047d11f29310e99b896b03b /apps/codecs/lib/SOURCES | |
parent | 6c608263d7e19ea9189e6812eed8fc29996b4ef2 (diff) |
Combine the Vorbis, WMA and AAC IMDCT functions and put them into the codeclib. Combined IMDCT is now based on existing Tremor transform. Reduces CPU for 192k AAC by 21MHz on Coldfire, and 5MHz on PP5024. WMA and Vorbis should have no functional changes since they already used this code. Further optimization is possible and would benefit all 3 codecs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18412 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/lib/SOURCES')
-rw-r--r-- | apps/codecs/lib/SOURCES | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/codecs/lib/SOURCES b/apps/codecs/lib/SOURCES index 65a656526a..9c6d4e7ff6 100644 --- a/apps/codecs/lib/SOURCES +++ b/apps/codecs/lib/SOURCES @@ -1,5 +1,12 @@ #if CONFIG_CODEC == SWCODEC /* software codec platforms */ codeclib.c + + +mdct2.c +#ifdef CPU_ARM +mdct_arm.S +#endif + #elif defined(SIMULATOR) && defined(__APPLE__) osx.dummy.c #endif |