Skip to content

Commit 19bb626

Browse files
Jean-Baptiste QueruAndroid Git Automerger
authored andcommitted
am bf82692: am faf38b2: am 9e3d957: Merge "stagefright aacenc: Add prototypes for arm specific implementations of functions"
* commit 'bf8269238be1c5bde9f82a986fb128d9a80f250b': stagefright aacenc: Add prototypes for arm specific implementations of functions
2 parents 360db46 + bf82692 commit 19bb626

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

media/libstagefright/codecs/aacenc/src/transform.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,12 @@ static void PostMDCT(int *buf0, int num, const int *csptr)
339339
*buf1-- = MULHIGH(cosb, tr2) + MULHIGH(sinb, ti2);
340340
}
341341
}
342+
#else
343+
void Radix4First(int *buf, int num);
344+
void Radix8First(int *buf, int num);
345+
void Radix4FFT(int *buf, int num, int bgn, int *twidTab);
346+
void PreMDCT(int *buf0, int num, const int *csptr);
347+
void PostMDCT(int *buf0, int num, const int *csptr);
342348
#endif
343349

344350

0 commit comments

Comments
 (0)