Commit a025941b authored by vaillancour's avatar vaillancour
Browse files

fix linux build

parent 2356b6b9
Loading
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -313,11 +313,8 @@ Word16 acelp_4t64_fx(
    }
    ELSE
    {
#ifdef REUSE_EVS_BE_ACELP_4T64
        E_ACELP_4tsearch_fx( dn, cn, H, code, &config, ind, y, element_mode );
#else
        E_ACELP_4tsearch_fx( dn, cn, H, code, &config, ind, y );
#endif

        FOR( i = 0; i < L_SUBFR; i++ )
        {
            y[i] = shr( y[i], 3 );
+0 −8
Original line number Diff line number Diff line
@@ -1071,11 +1071,7 @@ void E_ACELP_corrmatrix_fx( Word16 h[] /*Q12*/, Word16 sign[] /*Q0*/, Word16 vec
    return;
}

#ifndef REUSE_EVS_BE_ACELP_4T64
void E_ACELP_4tsearch_fx( Word16 dn[] /*Qdn*/, const Word16 cn[] /*Q_xn*/, const Word16 H[] /*Q12*/, Word16 code[] /*Q9*/, const PulseConfig *config, Word16 ind[] /*Q0*/, Word16 y[] /*Qy*/ )
#else
void E_ACELP_4tsearch_fx( Word16 dn[] /*Qdn*/, const Word16 cn[] /*Q_xn*/, const Word16 H[] /*Q12*/, Word16 code[] /*Q9*/, const PulseConfig *config, Word16 ind[] /*Q0*/, Word16 y[] /*Qy*/, const Word16 element_mode )
#endif
{
    Word16 sign[L_SUBFR], vec[L_SUBFR];
    Word16 cor_x[16], cor_y[16], h_buf[4 * L_SUBFR];
@@ -1820,11 +1816,7 @@ void E_ACELP_4t_fx(
    }
    ELSE
    {
#ifndef REUSE_EVS_BE_ACELP_4T64
        E_ACELP_4tsearch_fx( dn, cn, H, code, &config, ind, y );
#else
        E_ACELP_4tsearch_fx( dn, cn, H, code, &config, ind, y, element_mode );
#endif
    }
    E_ACELP_indexing_fx( code, &config, NB_TRACK_FCB_4T, _index );
    return;
+1 −3
Original line number Diff line number Diff line
@@ -1565,11 +1565,9 @@ void Mode2_pit_encode_fx(
    Word16 pit_max,
    Word16 pit_res_max );
#ifndef REUSE_EVS_BE_ACELP_4T64
void E_ACELP_4tsearch_fx( Word16 dn[] /*Qdn*/, const Word16 cn[] /*Q_xn*/, const Word16 H[] /*Q12*/, Word16 code[] /*Q9*/, const PulseConfig *config, Word16 ind[] /*Q0*/, Word16 y[] /*Qy*/ );
void E_ACELP_4tsearch_ivas_fx( Word16 dn[] /*Qdn*/, const Word16 cn[] /*Q_xn*/, const Word16 H[] /*Q12*/, Word16 code[] /*Q9*/, const PulseConfig *config, Word16 ind[] /*Q0*/, Word16 y[] /*Qy*/ );
#else
void E_ACELP_4tsearch_fx( Word16 dn[] /*Qdn*/, const Word16 cn[] /*Q_xn*/, const Word16 H[] /*Q12*/, Word16 code[] /*Q9*/, const PulseConfig *config, Word16 ind[] /*Q0*/, Word16 y[] /*Qy*/, const Word16 element_mode );
#endif
void E_ACELP_4tsearch_fx( Word16 dn[] /*Qdn*/, const Word16 cn[] /*Q_xn*/, const Word16 H[] /*Q12*/, Word16 code[] /*Q9*/, const PulseConfig *config, Word16 ind[] /*Q0*/, Word16 y[] /*Qy*/ );
void E_ACELP_4t_fx(
    Word16 dn[], /* Qdn */
    Word16 cn[] /* Q_xn */,