Commit 548b949b authored by malenov's avatar malenov
Browse files

rename H_fir[] to h_fir_fx[] as it is confused with h_fir[] aftyer being...

rename H_fir[] to h_fir_fx[] as it is confused with h_fir[] aftyer being instrumented by the WMC tool
parent e0e8d0e0
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2464,10 +2464,10 @@ static void LP_Decim2_Copy(
    move16();
    FOR( i = 0; i < l; i += 2 )
    {
        L_tmp = L_mult( *p_x, H_fir[0] );
        L_tmp = L_mult( *p_x, h_fir_fx[0] );
        FOR( k = 1; k < L_FIR_PO; k++ )
        {
            L_tmp = L_mac( L_tmp, p_x[k], H_fir[k] );
            L_tmp = L_mac( L_tmp, p_x[k], h_fir_fx[k] );
        }
        p_x += 2;

+1 −1
Original line number Diff line number Diff line
@@ -231,7 +231,7 @@ const int16_t sublen1_12k8[7] = { 40, 40, 50, 50, 80, 80, 115 };
const int16_t sec_length_12k8[4]  = {  7, 15, 30, 54 };
const int16_t sec_length1_12k8[4] = { 10, 19, 37, 38 };
const float h_fir[5] = {0.13f, 0.23f, 0.28f, 0.23f, 0.13f};
const Word16 H_fir[] = { 4260, 7536, 9175, 7536, 4260 };
const Word16 h_fir_fx[] = { 4260, 7536, 9175, 7536, 4260 };

const float W_HIST[DTX_HIST_SIZE] =
{
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ extern const int16_t bwd_start_bin[];
extern const int16_t bwd_end_bin[];

extern const float h_fir[];  /* 2nd order fir filter for wsp, decimation by 2 */
extern const Word16 H_fir[]; /* 2nd order fir filter for wsp, decimation by 2 */
extern const Word16 h_fir_fx[]; /* 2nd order fir filter for wsp, decimation by 2 */

extern const float preemphCompensation[];
extern const Word16 preemphCompensation_fx[];