Commit a4e534f8 authored by emerit's avatar emerit
Browse files

Merge branch 'main' into update_crend_v2

parents b029ee8c 08fbe2db
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -379,8 +379,6 @@
    <ClCompile Include="..\lib_enc\multi_harm.c" />
    <ClCompile Include="..\lib_enc\nelp_enc.c" />
    <ClCompile Include="..\lib_enc\nelp_enc_fx.c" />
    <ClCompile Include="..\lib_enc\noise_adjust.c" />
    <ClCompile Include="..\lib_enc\nois_est.c" />
    <ClCompile Include="..\lib_enc\pitch_ol.c" />
    <ClCompile Include="..\lib_enc\pitch_ol2.c" />
    <ClCompile Include="..\lib_enc\pit_enc.c" />
+0 −4
Original line number Diff line number Diff line
@@ -216,10 +216,6 @@
    <ClCompile Include="..\lib_enc\multi_harm.c">
      <Filter>enc_all_c</Filter>
    </ClCompile>
    <ClCompile Include="..\lib_enc\nois_est.c">
      <Filter>enc_all_c</Filter>
    </ClCompile>
    <ClCompile Include="..\lib_enc\noise_adjust.c">
      <Filter>enc_all_c</Filter>
    </ClCompile>
    <ClCompile Include="..\lib_enc\pit_enc.c">
+0 −6
Original line number Diff line number Diff line
@@ -45,9 +45,6 @@
#include "basop_settings.h"
#include "cnst.h"


#define WMC_TOOL_SKIP

extern const Word32 SqrtTable[32];     // Q31
extern const Word16 SqrtDiffTable[32]; /* Q15 */

@@ -2660,6 +2657,3 @@ cmplx CL_mult_32x16( cmplx input, cmplx_s coeff )
#endif
    return result;
}


#undef WMC_TOOL_SKIP
+10 −0
Original line number Diff line number Diff line
@@ -1356,6 +1356,16 @@ const UWord32 tdm_ratio_tabl_fx[TDM_NQ + 1] = {
    2147483647, 2147483647, 2147483647
};

// Q30
const Word32 tdm_ratio_tabl_fx_Q30[] = {
    0, 0, 11703786, 26306674, 46385648, 71940704, 102542344, 137868448,
    177596896, 221298192, 268435456, 318471840, 370977792, 425201760, 480714208,
    536870912, 593027584, 648540032, 702764032, 755270016, 805306368, 852443648,
    896144896, 935873344, 971199488, 1001801152, 1027356160, 1047435136,
    1062038016, 1073741824, 1073741824, 1073741824
};


// Q24
const Word32 tdm_ratio_tabl_fx_Q24[TDM_NQ + 1] = {
    0, 0, 182871, 411041, 724775, 1124073, 1602224, 2154194,
+1 −0
Original line number Diff line number Diff line
@@ -108,6 +108,7 @@ extern const Word16 pow_10_icbwe_gsMappingDFT_tbl_fx[];
 *----------------------------------------------------------------------------------*/

extern const UWord32 tdm_ratio_tabl_fx[TDM_NQ + 1];
extern const Word32 tdm_ratio_tabl_fx_Q30[TDM_NQ + 1];
extern const Word32 tdm_ratio_tabl_fx_Q24[TDM_NQ + 1];
extern const UWord32 tdm_den_ratio_tabl_fx[];
extern const Word16 icbwe_gsMapping_tbl_fx[];    // Q12
Loading