Commit b462f6e3 authored by TYAGIRIS's avatar TYAGIRIS
Browse files

instrumentation build fix

parent 7998b257
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -535,7 +535,7 @@ static void ivas_get_pred_coeffs(
        float dm_f_local, dm_w, dm_y, DM_F[IVAS_MAX_NUM_BANDS];
        float num_f, den_f, passive_g;
#ifdef FIX_SBA_VANISHING_RESIDUAL
        float activew_quad_thresh;
        float activew_quad_thresh, g_th_sq;
        if ( dyn_active_w_flag == 1 )
        {
            activew_quad_thresh = 1.0f;
@@ -544,7 +544,7 @@ static void ivas_get_pred_coeffs(
        {
            activew_quad_thresh = IVAS_LIN_ACTIVEW_QUAD_ACTIVEW_THRESH;
        }
        float g_th_sq = activew_quad_thresh * activew_quad_thresh;
        g_th_sq = activew_quad_thresh * activew_quad_thresh;
#else
        float g_th_sq = IVAS_LIN_ACTIVEW_QUAD_ACTIVEW_THRESH * IVAS_LIN_ACTIVEW_QUAD_ACTIVEW_THRESH;
#endif