Skip to content

Commit faf38b2

Browse files
Jean-Baptiste QueruAndroid Git Automerger
authored andcommitted
am 9e3d957: Merge "stagefright aacenc: Add prototypes for arm specific implementations of functions"
* commit '9e3d957599c76ba19e23fd25b75ccc02d54efe3e': stagefright aacenc: Add prototypes for arm specific implementations of functions
2 parents 163777b + 9e3d957 commit faf38b2

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)