Commit 853adaab authored by multrus's avatar multrus
Browse files

formatting

parent 7ddb7f5c
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -174,11 +174,9 @@ static void ivas_compute_smooth_cov(
    float *pPrior_cov_buf[IVAS_SPAR_MAX_CH][IVAS_SPAR_MAX_CH],
    const float fac,
    const int16_t start_band,
    const int16_t end_band
    ,
    const int16_t end_band,
    const int16_t num_ch,
    const int16_t transient_det
)
    const int16_t transient_det )
{
    int16_t i, j, k;
    int16_t prev_idx = hCovState->prior_bank_idx;
@@ -234,11 +232,9 @@ void ivas_cov_smooth_process(
    float *cov_real[IVAS_SPAR_MAX_CH][IVAS_SPAR_MAX_CH],
    ivas_filterbank_t *pFb, /* i/o: FB handle               */
    const int16_t start_band,
    const int16_t end_band
    ,
    const int16_t end_band,
    const int16_t num_ch,
    const int16_t transient_det
)
    const int16_t transient_det )
{
    int16_t i, j;
    int16_t num_bands = end_band - start_band;
+1 −2
Original line number Diff line number Diff line
@@ -52,8 +52,7 @@ void lsf_weight_2st(
    const float *lsfq,
    float *w,
    const int16_t mode,
    const int32_t sr_core 
)
    const int32_t sr_core )
{
    int16_t i;
    float d[M + 1];
+3 −4
Original line number Diff line number Diff line
@@ -1240,8 +1240,7 @@ void IGFDecApplyStereo(
    const int16_t *coreMsMask,
    const int16_t restrict_hopsize,
    const int16_t bfi, /* i  : frame loss == 1, frame good == 0                     */
    const int16_t bfi_apply_damping
)
    const int16_t bfi_apply_damping )
{
    IGF_DEC_PRIVATE_DATA_HANDLE hPrivateDataL, hPrivateDataR;
    H_IGF_GRID hGrid;
+2 −2
Original line number Diff line number Diff line
@@ -186,8 +186,8 @@ ivas_error ivas_core_dec(
        {
            float gain;

            gain = ( st->element_mode == IVAS_CPE_MDCT ) ? st->hTcxDec->conceal_eof_gain :
                   ( st->hPlcInfo != NULL ) ? st->hPlcInfo->recovery_gain : 0.0f;
            gain = ( st->element_mode == IVAS_CPE_MDCT ) ? st->hTcxDec->conceal_eof_gain : ( st->hPlcInfo != NULL ) ? st->hPlcInfo->recovery_gain
                                                                                                                    : 0.0f;

            if ( ( st->element_mode == IVAS_CPE_MDCT && hMCT == NULL ) || ( st->hPlcInfo != NULL ) )
            {
+2 −3
Original line number Diff line number Diff line
@@ -792,8 +792,7 @@ ivas_error ivas_init_decoder(

                if ( hDecoderConfig->output_config != AUDIO_CONFIG_FOA
#ifdef SPAR_STEREO_NO_DIRAC
                     && st_ivas->hDecoderConfig->output_config != AUDIO_CONFIG_STEREO 
                     && st_ivas->hDecoderConfig->output_config != AUDIO_CONFIG_MONO
                     && st_ivas->hDecoderConfig->output_config != AUDIO_CONFIG_STEREO && st_ivas->hDecoderConfig->output_config != AUDIO_CONFIG_MONO
#endif
                )
                {
Loading