Commit 9e037c39 authored by Manuel Jander's avatar Manuel Jander
Browse files

Merge remote-tracking branch 'origin' into...

Merge remote-tracking branch 'origin' into 867-wide-range-of-values-for-observed-for-reference_power-resulting-in-precision-loss-and-high-mlds-3
parents c2735635 d892e8dd
Loading
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1750,6 +1750,9 @@ voip-be-on-merge-request:
    # delete previous jobs logfiles if present (-f flag ensures return calue of 0 even in first run where this folder is not present)
    - rm -rf COMPLEXITY/logs
    - which coan
  allow_failure:
    exit_codes:
      - 123
  artifacts:
    name: "$CI_JOB_NAME--$CI_COMMIT_REF_NAME--sha-$CI_COMMIT_SHA"
    when: always
+11 −8
Original line number Diff line number Diff line
@@ -240,11 +240,11 @@ Word16 rate2EVSmode(
}

/*-------------------------------------------------------------------*
 * push_indice_fx( )
 * push_indice( )
 *
 * Push a new indice into the buffer
 *-------------------------------------------------------------------*/

#ifndef HARM_PUSH_BIT
void push_indice_fx(
    BSTR_ENC_HANDLE hBstr, /* i/o: encoder state structure */
    Word16 id,             /* i  : ID of the indice */
@@ -288,9 +288,8 @@ void push_indice_fx(

    return;
}

/*-------------------------------------------------------------------*
 * push_next_indice_fx()            *
 * push_next_indice()            *
 * Push a new indice into the buffer at the next position
 *-------------------------------------------------------------------*/

@@ -318,7 +317,7 @@ void push_next_indice_fx(


/*-------------------------------------------------------------------*
 * push_next_bits_fx()
 * push_next_bits()
 * Push a bit buffer into the buffer at the next position
 *-------------------------------------------------------------------*/

@@ -368,6 +367,7 @@ void push_next_bits_fx(
    hBstr->nb_bits_tot = add( hBstr->nb_bits_tot, nb_bits );
    move16();
}
#endif

/*-------------------------------------------------------------------*
 * get_next_indice_fx( )
@@ -530,11 +530,12 @@ void reset_indices_enc_fx(
    move16();
    hBstr->nb_bits_tot = 0;
    move16();
#ifndef HARM_PUSH_BIT
    hBstr->next_ind_fx = 0;
    move16();
    hBstr->last_ind_fx = -1;
    move16();

#endif
    FOR( i = 0; i < max_num_indices; i++ )
    {
        hBstr->ind_list[i].nb_bits = -1;
@@ -565,7 +566,7 @@ void reset_indices_dec_fx(
 *
 * Write the buffer of indices to a file
 *-------------------------------------------------------------------*/

#ifndef HARM_PUSH_BIT
void write_indices_fx(
    Encoder_State *st_fx,  /* i/o: encoder state structure */
    BSTR_ENC_HANDLE hBstr, /* i/o: encoder state structure */
@@ -663,12 +664,13 @@ void write_indices_fx(

    return;
}
#endif
/*-------------------------------------------------------------------*
 * write_indices_buf_fx()
 *
 * Write the buffer of indices to a file
 *-------------------------------------------------------------------*/

#ifndef HARM_PUSH_BIT
void write_indices_buf_fx(
    Encoder_State *st_fx,  /* i/o: encoder state structure */
    BSTR_ENC_HANDLE hBstr, /* i/o: encoder state structure */
@@ -772,6 +774,7 @@ void write_indices_buf_fx(

    return;
}
#endif
/*-------------------------------------------------------------------*
 * indices_to_serial()
 *
+4 −7
Original line number Diff line number Diff line
@@ -41,26 +41,23 @@


void deemph_fx_32(
    Word16 shift,    /*scaled output*/
    Word32 *signal,  /* i/o: signal            Qx*/
    const Word16 mu, /* i  : deemphasis factor Q15*/
    const Word16 L,  /* i  : vector size         */
    Word32 *mem      /* i/o: memory (y[-1])    Qx+shift*/
    Word32 *mem      /* i/o: memory (y[-1])    Qx*/
)
{
    Word16 i;

    signal[0] = L_add( signal[0], Mpy_32_16_1( ( *mem ), mu ) ); /*Qx*/
    signal[0] = Madd_32_16( signal[0], *mem, mu ); // Qx
    move32();
    FOR( i = 1; i < L; i++ )
    {
        signal[i] = L_add( signal[i], Mpy_32_16_1( signal[i - 1], mu ) ); /*Qx*/
        signal[i] = L_shl( signal[i], shift );                            /*Qx+shift*/
        move32();
        signal[i] = Madd_32_16( signal[i], signal[i - 1], mu ); // Qx
        move32();
    }

    *mem = signal[L - 1]; /*Qx+shift*/
    *mem = signal[L - 1]; // Qx
    move32();

    return;
+14 −14
Original line number Diff line number Diff line
@@ -1028,7 +1028,7 @@ Word16 gsc_gainQ_fx( /*Q12*/
        mean_4g[0] = round_fx( L_tmp );
        move16();
        idx_g = vquant_fx( mean_4g, Gain_meanNB_fx, mean_4g, Gain_mean_dicNB_fx, 1, 64 );
        push_indice_fx( hBstr, IND_MEAN_GAIN2, idx_g, 6 );
        push_indice( hBstr, IND_MEAN_GAIN2, idx_g, 6 );

        FOR( i = 0; i < Mbands_gn; i++ )
        {
@@ -1040,21 +1040,21 @@ Word16 gsc_gainQ_fx( /*Q12*/
        move16();
        set16_fx( y_gain_tmp + 10, 0, MBANDS_GN - 10 );
        idx_g = vquant_fx( y_gain_tmp, Mean_dic_NB_fx, y_gain_tmp, Gain_dic1_NB_fx, 3, 64 );
        push_indice_fx( hBstr, IND_Y_GAIN_TMP, idx_g, 6 );
        push_indice( hBstr, IND_Y_GAIN_TMP, idx_g, 6 );

        IF( LT_32( core_brate, ACELP_9k60 ) )
        {
            idx_g = vquant_fx( y_gain_tmp + 3, Mean_dic_NB_fx + 3, y_gain_tmp + 3, Gain_dic2_NB_fx, 3, 32 );
            push_indice_fx( hBstr, IND_Y_GAIN_TMP, idx_g, 5 );
            push_indice( hBstr, IND_Y_GAIN_TMP, idx_g, 5 );
            idx_g = vquant_fx( y_gain_tmp + 6, Mean_dic_NB_fx + 6, y_gain_tmp + 6, Gain_dic3_NB_fx, 4, 16 );
            push_indice_fx( hBstr, IND_Y_GAIN_TMP, idx_g, 4 );
            push_indice( hBstr, IND_Y_GAIN_TMP, idx_g, 4 );
        }
        ELSE
        {
            idx_g = vquant_fx( y_gain_tmp + 3, Mean_dic_NB_fx + 3, y_gain_tmp + 3, Gain_dic2_NBHR_fx, 3, 64 );
            push_indice_fx( hBstr, IND_Y_GAIN_TMP, idx_g, 6 );
            push_indice( hBstr, IND_Y_GAIN_TMP, idx_g, 6 );
            idx_g = vquant_fx( y_gain_tmp + 6, Mean_dic_NB_fx + 6, y_gain_tmp + 6, Gain_dic3_NBHR_fx, 4, 128 );
            push_indice_fx( hBstr, IND_Y_GAIN_TMP, idx_g, 7 );
            push_indice( hBstr, IND_Y_GAIN_TMP, idx_g, 7 );
        } /*add end */

        test();
@@ -1122,7 +1122,7 @@ Word16 gsc_gainQ_fx( /*Q12*/
        move16();

        idx_g = vquant_fx( mean_4g, mean_m_fx, mean_4g, mean_gain_dic_fx, 1, 64 );
        push_indice_fx( hBstr, IND_MEAN_GAIN2, idx_g, 6 );
        push_indice( hBstr, IND_MEAN_GAIN2, idx_g, 6 );

        FOR( i = 0; i < Mbands_gn; i++ )
        {
@@ -1148,11 +1148,11 @@ Word16 gsc_gainQ_fx( /*Q12*/
            move16();

            idx_g = vquant_fx( y_gain_tmp2, YGain_mean_LR_fx, y_gain_tmp2, YGain_dic1_LR_fx, 3, 32 );
            push_indice_fx( hBstr, IND_Y_GAIN_TMP, idx_g, 5 );
            push_indice( hBstr, IND_Y_GAIN_TMP, idx_g, 5 );
            idx_g = vquant_fx( y_gain_tmp2 + 3, YGain_mean_LR_fx + 3, y_gain_tmp2 + 3, YGain_dic2_LR_fx, 4, 32 );
            push_indice_fx( hBstr, IND_Y_GAIN_TMP, idx_g, 5 );
            push_indice( hBstr, IND_Y_GAIN_TMP, idx_g, 5 );
            idx_g = vquant_fx( y_gain_tmp2 + 7, YGain_mean_LR_fx + 7, y_gain_tmp2 + 7, YGain_dic3_LR_fx, 5, 32 );
            push_indice_fx( hBstr, IND_Y_GAIN_TMP, idx_g, 5 );
            push_indice( hBstr, IND_Y_GAIN_TMP, idx_g, 5 );
            set16_fx( y_gain_tmp2 + 12, 0, MBANDS_GN - 12 );

            /* Update to quantized vector */
@@ -1185,13 +1185,13 @@ Word16 gsc_gainQ_fx( /*Q12*/
        ELSE
        {
            idx_g = vquant_fx( y_gain_tmp, YG_mean16_fx, y_gain_tmp, YG_dicMR_1_fx, 4, 64 );
            push_indice_fx( hBstr, IND_Y_GAIN_TMP, idx_g, 6 );
            push_indice( hBstr, IND_Y_GAIN_TMP, idx_g, 6 );
            idx_g = vquant_fx( y_gain_tmp + 4, YG_mean16_fx + 4, y_gain_tmp + 4, YG_dicMR_2_fx, 4, 32 );
            push_indice_fx( hBstr, IND_Y_GAIN_TMP, idx_g, 5 );
            push_indice( hBstr, IND_Y_GAIN_TMP, idx_g, 5 );
            idx_g = vquant_fx( y_gain_tmp + 8, YG_mean16_fx + 8, y_gain_tmp + 8, YG_dicMR_3_fx, 4, 32 );
            push_indice_fx( hBstr, IND_Y_GAIN_TMP, idx_g, 5 );
            push_indice( hBstr, IND_Y_GAIN_TMP, idx_g, 5 );
            idx_g = vquant_fx( y_gain_tmp + 12, YG_mean16_fx + 12, y_gain_tmp + 12, YG_dicMR_4_fx, 4, 16 );
            push_indice_fx( hBstr, IND_Y_GAIN_TMP, idx_g, 4 );
            push_indice( hBstr, IND_Y_GAIN_TMP, idx_g, 4 );
        }
    }

+2 −2
Original line number Diff line number Diff line
@@ -2036,7 +2036,7 @@ Word16 calc_nor_delta_hf_fx(
        /* updating norm & storing delta norm */
        add_bits_denv = 2;
        move16();
        push_indice_fx( hBstr, IND_DELTA_ENV_HQ, sub( bitsforDelta, 2 ), 2 );
        push_indice( hBstr, IND_DELTA_ENV_HQ, sub( bitsforDelta, 2 ), 2 );
        FOR( i = num_env_bands; i < nb_sfm; ++i )
        {
            IF( Rsubband[i] != 0 )
@@ -2052,7 +2052,7 @@ Word16 calc_nor_delta_hf_fx(
                    delta = min_delta; /*Q0*/
                    move16();
                }
                push_indice_fx( hBstr, IND_DELTA_ENV_HQ, delta - min_delta, bitsforDelta );
                push_indice( hBstr, IND_DELTA_ENV_HQ, delta - min_delta, bitsforDelta );
                ynrm[i] = add( ynrm[i], delta ); /*Q0*/
                move16();
                add_bits_denv = add( add_bits_denv, bitsforDelta );
Loading