summaryrefslogtreecommitdiff
path: root/apps/codecs/libfaad/sbr_dct.h
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-07-09 18:32:37 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-07-09 18:32:37 +0000
commit811af5968ae3015af04804aa774728f90a897c05 (patch)
tree18aadf8c4a535fef2de069e968fcb23824fdd20a /apps/codecs/libfaad/sbr_dct.h
parentf3e0207384af483d31e43e3d1f326a138007faf8 (diff)
downloadrockbox-811af5968ae3015af04804aa774728f90a897c05.tar.gz
rockbox-811af5968ae3015af04804aa774728f90a897c05.zip
Submit FS#11461. Major speedup for aac he profile (PP5002 +20%, PP5020 +15%, PP5022 +19%, MCF5249 +35%, MCF5250 +80%), still not realtime on most targets though. This change does a lot of refactoring in the sbr filters and the dct, switching to our optimized codeclib fft and tweaking IRAM usage.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27358 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libfaad/sbr_dct.h')
-rw-r--r--apps/codecs/libfaad/sbr_dct.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libfaad/sbr_dct.h b/apps/codecs/libfaad/sbr_dct.h
index 124f159d5b..95394df307 100644
--- a/apps/codecs/libfaad/sbr_dct.h
+++ b/apps/codecs/libfaad/sbr_dct.h
@@ -32,7 +32,7 @@
32extern "C" { 32extern "C" {
33#endif 33#endif
34 34
35void dct4_kernel(real_t * in_real, real_t * in_imag, real_t * out_real, real_t * out_imag); 35void dct4_kernel(real_t *real, real_t *imag);
36 36
37void DCT3_32_unscaled(real_t *y, real_t *x); 37void DCT3_32_unscaled(real_t *y, real_t *x);
38void DCT4_32(real_t *y, real_t *x); 38void DCT4_32(real_t *y, real_t *x);