summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/codecs/aacenc
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2012-02-27 13:15:15 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2012-02-27 13:15:15 -0800
commitacb364073e62acddced517f2edfe0326245b2af9 (patch)
tree4f5cf2e11dcff95cc798575a10a2479514c3f8c8 /media/libstagefright/codecs/aacenc
parent7b419b45b4c810c0c7ebcca5d613cd9356fa4939 (diff)
parent021c841c460993c0db515826a17460fc36eaf744 (diff)
downloadframeworks_av-acb364073e62acddced517f2edfe0326245b2af9.zip
frameworks_av-acb364073e62acddced517f2edfe0326245b2af9.tar.gz
frameworks_av-acb364073e62acddced517f2edfe0326245b2af9.tar.bz2
am 19bb6261: am bf826923: am faf38b24: am 9e3d9575: Merge "stagefright aacenc: Add prototypes for arm specific implementations of functions"
* commit '19bb62613f512b62d492fb4caf36de88fd1914dd': stagefright aacenc: Add prototypes for arm specific implementations of functions
Diffstat (limited to 'media/libstagefright/codecs/aacenc')
-rw-r--r--media/libstagefright/codecs/aacenc/src/transform.c6
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