Commit e4d93a77 authored by Sandesh Venkatesh's avatar Sandesh Venkatesh Committed by Manuel Jander
Browse files

Fix for EVS bitexactness issue

parent 9189bfaf
Loading
Loading
Loading
Loading
+14 −4
Original line number Diff line number Diff line
@@ -75,12 +75,22 @@ void stat_noise_uv_dec_fx(
    }

    IF( !st_fx->Opt_AMR_WB )
    {
        IF( st_fx->element_mode > EVS_MONO )
        {
            stat_noise_uv_mod_ivas_fx( coder_type, noisiness, st_fx->lsp_old_fx, lsp_new, lsp_mid, Aq, exc2, &st_fx->Q_exc, 0, &st_fx->ge_sm_fx, &st_fx->uv_count, &st_fx->act_count,
                                       st_fx->lspold_s_fx, &st_fx->noimix_seed, &st_fx->min_alpha_fx,
                                       &st_fx->exc_pe_fx, st_fx->core_brate, st_fx->bwidth,
                                       &st_fx->Q_stat_noise, &st_fx->Q_stat_noise_ge );
        }
        ELSE
        {
            stat_noise_uv_mod_fx( coder_type, noisiness, st_fx->lsp_old_fx, lsp_new, lsp_mid, Aq, exc2, st_fx->Q_exc, 0, &st_fx->ge_sm_fx, &st_fx->uv_count, &st_fx->act_count,
                                  st_fx->lspold_s_fx, &st_fx->noimix_seed, &st_fx->min_alpha_fx,
                                  &st_fx->exc_pe_fx, st_fx->core_brate, st_fx->bwidth,
                                  &st_fx->Q_stat_noise, &st_fx->Q_stat_noise_ge );
        }
    }


    return;