Unverified Commit cd7b55e2 authored by norvell's avatar norvell
Browse files

Remove stat_noise_uv_enc_ivas_fx

parent 3e649560
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -843,7 +843,11 @@ ivas_error acelp_core_enc_fx(
                Copy( exc_fx, exc2_fx, st->L_frame ); // Q_new
                Word16 q_exc2 = Q_new;
                move16();
#ifdef HQ_ALIGN_DUPLICATED_CODE
                stat_noise_uv_enc_fx( st, epsP, lsp_new, lsp_mid, Aq, exc2_fx, uc_two_stage_flag, &q_exc2 );
#else
                stat_noise_uv_enc_ivas_fx( st, epsP, lsp_new, lsp_mid, Aq, exc2_fx, uc_two_stage_flag, &q_exc2 );
#endif
            }
        }

+2 −1
Original line number Diff line number Diff line
@@ -1838,7 +1838,7 @@ void stat_noise_uv_enc_fx(
    Word16 *exc2,                   /* i/o: excitation buffer                    */
    const Word16 uc_two_stage_flag, /* o  : flag undicating two-stage UC         */
    Word16 Q_new );

#ifndef HQ_ALIGN_DUPLICATED_CODE
void stat_noise_uv_enc_ivas_fx(
    Encoder_State *st_fx,           /* i/o: state structure                          */
    const Word32 *LepsP,            /* i  : LP prediction errors                 Q=Qx*/
@@ -1848,6 +1848,7 @@ void stat_noise_uv_enc_ivas_fx(
    Word16 *exc2,                   /* i/o: excitation buffer         Q=Q_stat_noise */
    const Word16 uc_two_stage_flag, /* o  : flag undicating two-stage UC             */
    Word16 *Q_new );
#endif

void analy_sp_fx(
    const Word16 element_mode, /* i  : element mode                                              */
+2 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ void stat_noise_uv_enc_fx(
    return;
}


#ifndef HQ_ALIGN_DUPLICATED_CODE
void stat_noise_uv_enc_ivas_fx(
    Encoder_State *st_fx,           /* i/o: state structure                          */
    const Word32 *LepsP,            /* i  : LP prediction errors                 Q=Qx*/
@@ -186,3 +186,4 @@ void stat_noise_uv_enc_ivas_fx(

    return;
}
#endif