Commit 0dc48119 authored by Arash Azizi's avatar Arash Azizi
Browse files

issue: 2427 changing declaration place of function GetPLCModeDecision_ivas_fx...

issue: 2427 changing declaration place of function GetPLCModeDecision_ivas_fx and removing declaration of GetPLCModeDecision_fx
parent b5698c9d
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1890,9 +1890,11 @@ void TonalMDCTConceal_Detect_ivas_fx(
    Word16 element_mode 
);

#ifndef HARMONIZE_2427_GETPLC
Word16 GetPLCModeDecision_ivas_fx(
    Decoder_State *st                                           /* i/o:    decoder memory state pointer         */
);
#endif // !HARMONIZE_2427_GETPLC

void ivas_DetectTonalComponents_fx(
    Word16 indexOfTonalPeak[],
+5 −1
Original line number Diff line number Diff line
@@ -8474,9 +8474,13 @@ void highPassFiltering_fx(
    const Word16 hp_filt[],   /* i:   Q15    high pass filter coefficients                       */
    const Word16 l_fir_fer ); /* i:        high pass filter length                               */


#ifndef HARMONIZE_2427_GETPLC
Word16 GetPLCModeDecision_fx(
    Decoder_State *st );
#else
Word16 GetPLCModeDecision_ivas_fx(
    Decoder_State* st);
#endif // !HARMONIZE_2427_GETPLC

void lpc_unquantize_fx(
    Decoder_State *st,
+2 −0
Original line number Diff line number Diff line
@@ -496,6 +496,7 @@ Word16 GetPLCModeDecision_ivas_fx(
    return core; /*Q0*/
}

#ifndef HARMONIZE_2427_GETPLC
Word16 GetPLCModeDecision_fx(
    Decoder_State *st /* i/o:    decoder memory state pointer */
)
@@ -632,3 +633,4 @@ Word16 GetPLCModeDecision_fx(
    }
    return core;
}
#endif // !HARMONIZE_2427_GETPLC
 No newline at end of file