Commit 757328d4 authored by Arash Azizi's avatar Arash Azizi
Browse files

issue: 2389 further fixing function suffixes

parent f4dba0c0
Loading
Loading
Loading
Loading
+17 −5
Original line number Diff line number Diff line
@@ -297,11 +297,18 @@ void decoder_tcx_fx(
    IF( ( bfi == 0 ) && ( hTcxCfg->fIsTNSAllowed != 0 ) )
    {
        cast16();

#ifdef HARMONIZE_READ_DECODE_TNS
        fUseTns = (Word8)DecodeTnsData_fx(hTcxCfg->pCurrentTnsConfig,
            prm_tns,
            &tnsSize,
            &tnsData);
#else
        fUseTns = (Word8)DecodeTnsData(hTcxCfg->pCurrentTnsConfig,
            prm_tns,
            &tnsSize,
            &tnsData);
#endif // HARMONIZE_READ_DECODE_TNS

    }
    ELSE
    {
@@ -4204,7 +4211,12 @@ void decoder_tcx_invQ_fx(
    test();
    IF( !bfi && hTcxCfg->fIsTNSAllowed )
    {
#ifdef HARMONIZE_READ_DECODE_TNS
        * fUseTns = DecodeTnsData_fx(hTcxCfg->pCurrentTnsConfig, prm_tns, &tnsSize, tnsData);
#else   
        * fUseTns = DecodeTnsData(hTcxCfg->pCurrentTnsConfig, prm_tns, &tnsSize, tnsData);
#endif // HARMONIZE_READ_DECODE_TNS

        move16();
    }
    ELSE