Commit e2e6d5d0 authored by vaclav's avatar vaclav
Browse files

comments

parent 917b6f28
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -695,7 +695,7 @@ UWord8 apa_exec_fx(
{
    UWord16 i;
#ifdef FIX_1435_MOVE_STEREO_PANNING
    Word16 frm_in[APA_BUF_PER_CHANNEL];
    Word16 frm_in[APA_BUF_PER_CHANNEL]; /* NOTE: this buffer could be smaller if alocated dynamically based on the actual sampling rate */
#else
    Word16 frm_in[CPE_CHANNELS * APA_BUF / APA_MAX_NUM_CHANNELS]; /* in EVS, 2 output channels */ /* NOTE: this buffer could be smaller if alocated dynamically based on the actual sampling rate and number of channels */
#endif
+10 −0
Original line number Diff line number Diff line
@@ -6213,6 +6213,16 @@ static ivas_error evs_dec_main_fx(
    }
#endif

#ifdef FIX_1419_MONO_STEREO_UMX
    /*if ( st_ivas->hDecoderConfig->Opt_tsm && st_ivas->hDecoderConfig->output_config == IVAS_AUDIO_CONFIG_MONO )*/
#else
    IF( st_ivas->hDecoderConfig->Opt_tsm )
#endif
    {
        /* BE workaround: in order to keep EVS bit-exact wrt. TS 26.443, convert 'float' output data to 'short' before the TSM */
        /* not applicable in BASOP */
    }

    return IVAS_ERR_OK;
}