Commit 14d6d8a4 authored by emerit's avatar emerit
Browse files

Merge branch 'main' into update_crend_v2

parents 8d01c878 4c0dfa80
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -145,4 +145,10 @@
#define FIX_ISSUE_1209                          /* Ittiam: Fix for issue 1209: Assertion exit in BASOP encoder (stereo_dmx_evs)*/
#define IVAS_ISSUE_1188_EVS_CRASH               /* Ittiam: Fix for issue 1188: Issue due to ASAN */
#define FIX_ISSUE_1155                          /* Ittiam: Fix for issue 1155: Encoder crash for Stereo at 32kbps in PostShortTerm_ivas_enc_fx()*/
#define FIX_1010_OPT_DIV                        /* FhG: SVD complexity optimizations (non-be) */
#define FIX_1010_OPT_SINGLE_RESCALE             /* FhG: SVD complexity optimizations (non-be) */
#define FIX_1010_OPT_GIVENS                     /* FhG: SVD complexity optimizations (non-be) */
#define FIX_1010_OPT_GIVENS_INV                 /* FhG: SVD complexity optimizations (non-be) */
#define FIX_1010_OPT_NORM_NOSAT                 /* FhG: SVD complexity optimizations (non-be) */
#define FIX_1010_OPT_SEC_SINGLE_RESCALE         /* FhG: SVD complexity optimizations (non-be) */
#endif
+4 −4
Original line number Diff line number Diff line
@@ -10830,8 +10830,8 @@ void ProcessStereoIGF_fx(
    Word32 *inv_spectrum_fx[CPE_CHANNELS][NB_DIV],        /* i  : inverse spectrum                        */
    const Word16 frameno,                                 /* i  : flag indicating index of current subfr. */
    const Word16 sp_aud_decision0,                        /* i  : sp_aud_decision0                        */
    const Word32 element_brate                            /* i  : element bitrate                         */
);
    const Word32 element_brate,                           /* i  : element bitrate                         */
    const Word16 mct_on );
/*igf_enc.c*/
void IGFEncApplyStereo_fx(
    STEREO_MDCT_ENC_DATA_HANDLE hStereoMdct,              /* i/o: MDCT stereo encoder structure           */
@@ -10844,8 +10844,8 @@ void IGFEncApplyStereo_fx(
    Word32 *inv_spectrum_fx[CPE_CHANNELS][NB_DIV],        /* i  : inverse spectrum                        */
    const Word16 frameno,                                 /* i  : flag indicating index of current subfr. */
    const Word16 sp_aud_decision0,                        /* i  : sp_aud_decision0                        */
    const Word32 element_brate                            /* i  : element bitrate                         */
);
    const Word32 element_brate,                           /* i  : element bitrate                         */
    const Word16 mct_on );
void IGFSaveSpectrumForITF_ivas_fx(
    IGF_ENC_INSTANCE_HANDLE hIGFEnc, /* i/o: instance handle of IGF Encoder  */
+1 −1
Original line number Diff line number Diff line
@@ -3753,7 +3753,7 @@ void GenShapedSHBExcitation_ivas_enc_fx(
    IF( LT_32( bitrate, ACELP_24k40 ) )
#endif
    {
        syn_filt_fx( 0, lpc_shb, LPC_SHB_ORDER, exc16kWhtnd, excSHB, L_FRAME16k, state_lpc_syn, 1 );
        Syn_filt_s( 0, lpc_shb, LPC_SHB_ORDER, exc16kWhtnd, excSHB, L_FRAME16k, state_lpc_syn, 1 );
        /* i: exc16kWhtnd in Q_bwe_exc */
        /* o: excSHB in Q_bwe_exc */
    }
+22 −22
Original line number Diff line number Diff line
@@ -572,7 +572,7 @@ void wtda_ivas_fx(

void wtda_ext_fx(
    const Word16 *new_audio,  /* i  : input audio (Q_in)                  */
    Word16 *wtda_audio,       /* o  : windowed audio (Q_in)               */
    Word16 *wtda_audio,       /* o  : windowed audio (Q_in - 1)           */
    const Word16 left_mode,   /* i  : window overlap of previous frame (0: full, 2: none, or 3: half) */
    const Word16 right_mode,  /* i  : window overlap of current frame (0: full, 2: none, or 3: half) */
    const Word16 L,           /* i  : length                              */
@@ -628,10 +628,10 @@ void wtda_ext_fx(
            FOR( i = 0; i < L / 2 - n; i += 2 )
            {
                wtda_audio[i] = round_fx( L_mac0( L_mult0( negate( allsig_r[L / 2 - i - 1] ), win_int_right[3 * L_FRAME16k / 2 - i / 2 - 1 - windecay16] ),
                                                  allsig_r[L / 2 + i], win_int_right[3 * L_FRAME16k / 2 + i / 2 - windecay16] ) ); // q_in
                                                  allsig_r[L / 2 + i], win_int_right[3 * L_FRAME16k / 2 + i / 2 - windecay16] ) ); // q_in - 1
                move16();
                wtda_audio[i + 1] = round_fx( L_mac0( L_mult0( negate( allsig_r[L / 2 - ( i + 1 ) - 1] ), win_right[( 3 * L_FRAME16k / 2 - i / 2 - 1 ) * decimate + decay - windecay48] ),
                                                      allsig_r[L / 2 + i + 1], win_right[( 3 * L_FRAME16k / 2 + 1 + i / 2 ) * decimate - decay - 1 - windecay48] ) ); // q_in
                                                      allsig_r[L / 2 + i + 1], win_right[( 3 * L_FRAME16k / 2 + 1 + i / 2 ) * decimate - decay - 1 - windecay48] ) ); // q_in - 1
                move16();
            }
        }
@@ -640,19 +640,19 @@ void wtda_ext_fx(
            FOR( i = 0; i < L / 2 - n; i += 2 )
            {
                wtda_audio[i] = round_fx( L_msu0( L_mult0( negate( allsig_r[L / 2 - i - 1] ), win_int_right[3 * L_FRAME16k / 2 - i / 2 - 1 - windecay16] ),
                                                  allsig_r[L / 2 + i], win_int_right[3 * L_FRAME16k / 2 + i / 2 - windecay16] ) ); // q_in
                                                  allsig_r[L / 2 + i], win_int_right[3 * L_FRAME16k / 2 + i / 2 - windecay16] ) ); // q_in - 1
                move16();
                wtda_audio[i + 1] = round_fx( L_msu0( L_mult0( negate( allsig_r[L / 2 - ( i + 1 ) - 1] ), win_right[( 3 * L_FRAME16k / 2 - i / 2 - 1 ) * decimate + decay - windecay48] ),
                                                      allsig_r[L / 2 + i + 1], win_right[( 3 * L_FRAME16k / 2 + 1 + i / 2 ) * decimate - decay - 1 - windecay48] ) ); // q_in
                                                      allsig_r[L / 2 + i + 1], win_right[( 3 * L_FRAME16k / 2 + 1 + i / 2 ) * decimate - decay - 1 - windecay48] ) ); // q_in - 1
                move16();
            }
        }

        FOR( i = L / 2 - n; i < L / 2; i += 2 )
        {
            wtda_audio[i] = shr( negate( allsig_r[L / 2 - i - 1] ), 1 ); // q_in
            wtda_audio[i] = shr( negate( allsig_r[L / 2 - i - 1] ), 1 ); // q_in - 1
            move16();
            wtda_audio[i + 1] = shr( negate( allsig_r[L / 2 - ( i + 1 ) - 1] ), 1 ); // q_in
            wtda_audio[i + 1] = shr( negate( allsig_r[L / 2 - ( i + 1 ) - 1] ), 1 ); // q_in - 1
            move16();
        }

@@ -661,20 +661,20 @@ void wtda_ext_fx(
            FOR( i = 0; i < n; i += 2 )
            {
                wtda_audio[i + L / 2] = round_fx( L_msu0( L_mult0( negate( allsig_l[i] ), win_left[( i / 2 ) * decimate + decay] ),
                                                          new_audio[n - i - 1], MAX16B ) ); // q_in
                                                          new_audio[n - i - 1], MAX16B ) ); // q_in - 1
                move16();
                wtda_audio[i + L / 2 + 1] = round_fx( L_msu0( L_mult0( negate( allsig_l[i + 1] ), win_int_left[i / 2] ),
                                                              new_audio[n - ( i + 1 ) - 1], MAX16B ) ); // q_in
                                                              new_audio[n - ( i + 1 ) - 1], MAX16B ) ); // q_in - 1
                move16();
            }

            FOR( i = n; i < L / 2; i += 2 )
            {
                wtda_audio[i + L / 2] = round_fx( L_msu0( L_mult0( negate( allsig_l[i] ), win_left[( i / 2 ) * decimate + decay] ),
                                                          allsig_l[L - i - 1], win_left[( L / 2 - i / 2 ) * decimate - 1 - decay] ) ); // q_in
                                                          allsig_l[L - i - 1], win_left[( L / 2 - i / 2 ) * decimate - 1 - decay] ) ); // q_in - 1
                move16();
                wtda_audio[i + L / 2 + 1] = round_fx( L_msu0( L_mult0( negate( allsig_l[i + 1] ), win_int_left[i / 2] ),
                                                              allsig_l[L - ( i + 1 ) - 1], win_int_left[L / 2 - i / 2 - 1] ) ); // q_in
                                                              allsig_l[L - ( i + 1 ) - 1], win_int_left[L / 2 - i / 2 - 1] ) ); // q_in - 1
                move16();
            }
        }
@@ -683,20 +683,20 @@ void wtda_ext_fx(
            FOR( i = 0; i < n; i += 2 )
            {
                wtda_audio[i + L / 2] = round_fx( L_msu0( L_mult0( allsig_l[i], win_left[( i / 2 ) * decimate + decay] ),
                                                          new_audio[n - i - 1], MAX16B ) ); // q_in
                                                          new_audio[n - i - 1], MAX16B ) ); // q_in - 1
                move16();
                wtda_audio[i + L / 2 + 1] = round_fx( L_msu0( L_mult0( allsig_l[i + 1], win_int_left[i / 2] ),
                                                              new_audio[n - ( i + 1 ) - 1], MAX16B ) ); // q_in
                                                              new_audio[n - ( i + 1 ) - 1], MAX16B ) ); // q_in - 1
                move16();
            }

            FOR( i = n; i < L / 2; i += 2 )
            {
                wtda_audio[i + L / 2] = round_fx( L_msu0( L_mult0( allsig_l[i], win_left[( i / 2 ) * decimate + decay] ),
                                                          allsig_l[L - i - 1], win_left[( L / 2 - i / 2 ) * decimate - 1 - decay] ) ); // q_in
                                                          allsig_l[L - i - 1], win_left[( L / 2 - i / 2 ) * decimate - 1 - decay] ) ); // q_in - 1
                move16();
                wtda_audio[i + L / 2 + 1] = round_fx( L_msu0( L_mult0( allsig_l[i + 1], win_int_left[i / 2] ),
                                                              allsig_l[L - ( i + 1 ) - 1], win_int_left[L / 2 - i / 2 - 1] ) ); // q_in
                                                              allsig_l[L - ( i + 1 ) - 1], win_int_left[L / 2 - i / 2 - 1] ) ); // q_in - 1
                move16();
            }
        }
@@ -708,7 +708,7 @@ void wtda_ext_fx(
            FOR( i = 0; i < L / 2 - n; i++ )
            {
                wtda_audio[i] = round_fx( L_mac0( L_mult0( negate( allsig_r[L / 2 - i - 1] ), win_right[3 * L / 2 * decimate - ( i + 1 ) * decimate + decay - windecay48] ),
                                                  allsig_r[L / 2 + i], win_right[3 * L / 2 * decimate - 1 + ( i + 1 ) * decimate - decay - windecay48] ) ); // q_in
                                                  allsig_r[L / 2 + i], win_right[3 * L / 2 * decimate - 1 + ( i + 1 ) * decimate - decay - windecay48] ) ); // q_in - 1
                move16();
            }
        }
@@ -717,14 +717,14 @@ void wtda_ext_fx(
            FOR( i = 0; i < L / 2 - n; i++ )
            {
                wtda_audio[i] = round_fx( L_msu0( L_mult0( negate( allsig_r[L / 2 - i - 1] ), win_right[3 * L / 2 * decimate - ( i + 1 ) * decimate + decay - windecay48] ),
                                                  allsig_r[L / 2 + i], win_right[3 * L / 2 * decimate - 1 + ( i + 1 ) * decimate - decay - windecay48] ) ); // q_in
                                                  allsig_r[L / 2 + i], win_right[3 * L / 2 * decimate - 1 + ( i + 1 ) * decimate - decay - windecay48] ) ); // q_in - 1
                move16();
            }
        }

        FOR( i = L / 2 - n; i < L / 2; i++ )
        {
            wtda_audio[i] = shr( negate( allsig_r[L / 2 - i - 1] ), 1 ); // q_in
            wtda_audio[i] = shr( negate( allsig_r[L / 2 - i - 1] ), 1 ); // q_in - 1
            move16();
        }

@@ -733,14 +733,14 @@ void wtda_ext_fx(
            FOR( i = 0; i < n; i++ )
            {
                wtda_audio[i + L / 2] = round_fx( L_msu0( L_mult0( negate( allsig_l[i] ), win_left[i * decimate + decay] ),
                                                          new_audio[n - i - 1], MAX16B ) ); // q_in
                                                          new_audio[n - i - 1], MAX16B ) ); // q_in - 1
                move16();
            }

            FOR( i = n; i < L / 2; i++ )
            {
                wtda_audio[i + L / 2] = round_fx( L_msu0( L_mult0( negate( allsig_l[i] ), win_left[i * decimate + decay] ),
                                                          allsig_l[L - i - 1], win_left[L * decimate - i * decimate - 1 - decay] ) ); // q_in
                                                          allsig_l[L - i - 1], win_left[L * decimate - i * decimate - 1 - decay] ) ); // q_in - 1
                move16();
            }
        }
@@ -749,14 +749,14 @@ void wtda_ext_fx(
            FOR( i = 0; i < n; i++ )
            {
                wtda_audio[i + L / 2] = round_fx( L_msu0( L_mult0( allsig_l[i], win_left[i * decimate + decay] ),
                                                          new_audio[n - i - 1], MAX16B ) ); // q_in
                                                          new_audio[n - i - 1], MAX16B ) ); // q_in - 1
                move16();
            }

            FOR( i = n; i < L / 2; i++ )
            {
                wtda_audio[i + L / 2] = round_fx( L_msu0( L_mult0( allsig_l[i], win_left[i * decimate + decay] ),
                                                          allsig_l[L - i - 1], win_left[L * decimate - i * decimate - 1 - decay] ) ); // q_in
                                                          allsig_l[L - i - 1], win_left[L * decimate - i * decimate - 1 - decay] ) ); // q_in - 1
                move16();
            }
        }
+445 −30

File changed.

Preview size limit exceeded, changes collapsed.

Loading