Commit 5c62f4b7 authored by sekine's avatar sekine
Browse files

Fix to avoid warning in Linux.

parent e9701ce1
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -152,7 +152,10 @@ static void calc_poc(
{
    int16_t i, n1, n2;
    int16_t n0, *itdLR;
    const float *c, *s;
#ifndef NTT_REMOVE_EPS_ROM
	const float *c;
#endif
	const float *s;
    float *P;
    float tmp1, tmp2, Lr, Li, Rr, Ri, gamma, igamma, iN;
    float specPOr[L_FRAME48k], specPOi[L_FRAME48k];
@@ -168,7 +171,9 @@ static void calc_poc(
    /* Initialization */
    iN = 1.0f / (float) input_frame;

#ifndef NTT_REMOVE_EPS_ROM
    c = hPOC->sin + ( input_frame >> 2 );
#endif
    s = hPOC->sin;
    P = hPOC->P;
    n0 = input_frame / 2;