Commit 0477b0c6 authored by vaclav's avatar vaclav
Browse files

issue 1314: set RENDERER_DISABLE for stereo to EXT output; under FIX_1314_STEREO_TO_EXT

parent 1a5f22ac
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@

/*#define FIX_I4_OL_PITCH*/                             /* fix open-loop pitch used for EVS core switching */
#define TMP_FIX_1119_SPLIT_RENDERING_VOIP               /* FhG: Add error check for unsupported config: split rendering with VoIP mode */

#define FIX_1314_STEREO_TO_EXT                          /* VA: issue 1314: set RENDERER_DISABLE for stereo to EXT output */

/* #################### End BE switches ################################## */

+4 −0
Original line number Diff line number Diff line
@@ -262,7 +262,11 @@ void ivas_renderer_select(
    }
    else if ( st_ivas->ivas_format == STEREO_FORMAT )
    {
#ifdef FIX_1314_STEREO_TO_EXT
        if ( output_config != IVAS_AUDIO_CONFIG_STEREO && output_config != IVAS_AUDIO_CONFIG_MONO && output_config != IVAS_AUDIO_CONFIG_EXTERNAL )
#else
        if ( output_config != IVAS_AUDIO_CONFIG_STEREO && output_config != IVAS_AUDIO_CONFIG_MONO )
#endif
        {
            *renderer_type = RENDERER_MC;
        }