Commit 0262bc68 authored by Sandesh Venkatesh's avatar Sandesh Venkatesh
Browse files

Fix for wrong data type assignment for bpf_weights_16_ivas_fx_32

parent d516b98a
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10188,7 +10188,7 @@ const Word16 bpf_weights_16_ivas_fx[16] =
    9/*0.000270f Q15*/,      3/*0.000080f Q15*/,      1/*0.000030f Q15*/,      3/*0.000082f Q15*/,
    3/*0.000081f Q15*/,      2/*0.000052f Q15*/,      1/*0.000017f Q15*/,      1/*0.000016f Q15*/
};
const Word16 bpf_weights_16_ivas_fx_32[16] =
const Word32 bpf_weights_16_ivas_fx_32[16] =
{
    1073784774/*0.999969f Q15*/,  754369130/*0.702561f Q15*/,   224238095/*0.208838f Q15*/,     1667521/*0.001553f Q15*/,
    1908039/*0.001777f Q15*/,     1435593/*0.001370f Q15*/,     994285/*0.000926f Q15*/,     594853/*0.000554f Q15*/,
+1 −1
Original line number Diff line number Diff line
@@ -1622,7 +1622,7 @@ extern const Word32 rot_vec_syn_im_L60_fx[30];
extern const float bpf_weights_16[CLDFB_NO_COL_MAX];
extern const Word16 bpf_weights_16_Fx[16];
extern const Word16 bpf_weights_16_ivas_fx[16];
extern const Word16 bpf_weights_16_ivas_fx_32[16];
extern const Word32 bpf_weights_16_ivas_fx_32[16];

extern const float CNG_details_codebook[64][NUM_ENV_CNG];
extern const Word16 CNG_details_codebook_fx[64][NUM_ENV_CNG];
+1 −1
Original line number Diff line number Diff line
@@ -530,7 +530,7 @@ void addBassPostFilter_fx(
    Word32 cldfbBufferImag_fx[CLDFB_NO_COL_MAX][20];
    Word16 i, b;
    Word16 maxBand;
    const Word16 *weights_fx;
    const Word32 *weights_fx;
    Word16 nCol = cldfb->no_col;
    Word16 nColToProcess = nCol;
    Word16 nChan = cldfb->no_channels;