Skip to content

Commit 9e3d957

Browse files
Jean-Baptiste Queruandroid code review
authored andcommitted
Merge "stagefright aacenc: Add prototypes for arm specific implementations of functions"
2 parents 354ac77 + e3c3499 commit 9e3d957

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)