Commit 3fd8955c authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch 'fix-dmx-writeout-for-td-stereo' into 'main'

Fix dmx writeout for td stereo

See merge request !1046
parents b8cd21fc 1d6c1fb6
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -297,8 +297,9 @@ ivas_error pre_proc_front_ivas_fx(
    }

#ifdef DEBUG_MODE_INFO
    if ( !( hCPE->hStereoTD != NULL && ch_idx > 0 ) )
    if ( !( hCPE != NULL && hCPE->hStereoTD != NULL && ch_idx > 0 ) )
    {
        /* for TD stereo only write out first channel. The existence of a second channel can vary, this is just easier to handle */
        int16_t tmpF[L_FRAME48k];
        for ( int16_t isample = 0; isample < input_frame; isample++ )
        {