Commit 6feb2bab authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

insert correct BASOP instrumentation in ivas_param_ism_dec_dequant_md_fx

parent ed6a09a2
Loading
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1322,15 +1322,17 @@ void ivas_param_ism_dec_dequant_md_fx(
    Decoder_Struct *st_ivas )
{
    /* De-quantization */
    if ( !( st_ivas->hDecoderConfig->ivas_total_brate == IVAS_SID_5k2 || st_ivas->hDecoderConfig->ivas_total_brate == FRAME_NO_DATA ) )
    IF ( !( EQ_16(st_ivas->hDecoderConfig->ivas_total_brate, IVAS_SID_5k2) || EQ_16(st_ivas->hDecoderConfig->ivas_total_brate, FRAME_NO_DATA ) ) )
    {
        ivas_param_ism_dec_dequant_DOA_fx( st_ivas->hParamIsmDec, st_ivas->nchan_ism );
        ivas_param_ism_dec_dequant_powrat_fx( st_ivas->hParamIsmDec );
        st_ivas->hISMDTX.dtx_flag = 0;
        move16();
    }
    else
    ELSE
    {
        st_ivas->hISMDTX.dtx_flag = 1;
        move16();
    }

    return;