1
0
mirror of https://github.com/mstorsjo/fdk-aac.git synced 2025-02-17 19:50:35 +01:00

Invert inline and void to be compatible with gcc 3.3.4

This commit is contained in:
Guillaume Smaha 2016-05-18 08:07:32 +02:00 committed by Martin Storsjo
parent 6eb248d1a4
commit 77fbe5d3e0

View File

@ -139,7 +139,7 @@ void ifft(int length, FIXP_DBL *pInput, INT *scalefactor);
* bit scale headroom. The values are interleaved, real/imag pairs.
*/
LNK_SECTION_CODE_L1
static void FDK_FORCEINLINE fft_4(FIXP_DBL *x) {
static FDK_FORCEINLINE void fft_4(FIXP_DBL *x) {
FIXP_DBL a00, a10, a20, a30, tmp0, tmp1;
a00 = (x[0] + x[4]) >> 1; /* Re A + Re B */
@ -168,7 +168,7 @@ static void FDK_FORCEINLINE fft_4(FIXP_DBL *x) {
#ifndef FUNCTION_fft_8
LNK_SECTION_CODE_L1
static void FDK_FORCEINLINE fft_8(FIXP_DBL *x) {
static FDK_FORCEINLINE void fft_8(FIXP_DBL *x) {
FIXP_SPK w_PiFOURTH = {{FIXP_SGL(0x5A82), FIXP_SGL(0x5A82)}};
FIXP_DBL a00, a10, a20, a30;