diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2012-02-27 12:14:40 -0800 |
---|---|---|
committer | android code review <noreply-gerritcodereview@google.com> | 2012-02-27 12:14:41 -0800 |
commit | 9e3d957599c76ba19e23fd25b75ccc02d54efe3e (patch) | |
tree | ad6584e09211921b98499cce1e5218724cb692f7 /media | |
parent | 354ac772eca0afea25dd12d233e5cdee9677888b (diff) | |
parent | e3c3499468551f6b19da44db199448563992ad45 (diff) | |
download | frameworks_base-9e3d957599c76ba19e23fd25b75ccc02d54efe3e.zip frameworks_base-9e3d957599c76ba19e23fd25b75ccc02d54efe3e.tar.gz frameworks_base-9e3d957599c76ba19e23fd25b75ccc02d54efe3e.tar.bz2 |
Merge "stagefright aacenc: Add prototypes for arm specific implementations of functions"
Diffstat (limited to 'media')
-rw-r--r-- | media/libstagefright/codecs/aacenc/src/transform.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/media/libstagefright/codecs/aacenc/src/transform.c b/media/libstagefright/codecs/aacenc/src/transform.c index a154a2f..a02336f 100644 --- a/media/libstagefright/codecs/aacenc/src/transform.c +++ b/media/libstagefright/codecs/aacenc/src/transform.c @@ -339,6 +339,12 @@ static void PostMDCT(int *buf0, int num, const int *csptr) *buf1-- = MULHIGH(cosb, tr2) + MULHIGH(sinb, ti2); } } +#else +void Radix4First(int *buf, int num); +void Radix8First(int *buf, int num); +void Radix4FFT(int *buf, int num, int bgn, int *twidTab); +void PreMDCT(int *buf0, int num, const int *csptr); +void PostMDCT(int *buf0, int num, const int *csptr); #endif |