Commit 612813ee authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

in ParamMC decoder, set up rendering config for BINAURAL_ROOM_REVERB in the...

in ParamMC decoder, set up rendering config for BINAURAL_ROOM_REVERB in the same way as BINAURAL_ROOM_IR
parent 26d1738d
Loading
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -174,6 +174,10 @@
#define NONBE_FIX_986_MC_BW_SWITCHING                         /* FhG: fix crash in bw and br switching with MC */
#define NONBE_FIX_975_JBM_USAN                                /* FhG: Fix issue #975, USAN in JBM decoding ad 13.2kbps */
#define NONBE_FIX_982_OMASA_DELAY_COMP_5MS                    /* FhG : issue #982 : 5ms and 20ms output different for OMASA */      
#define NONBE_FIX_987_PARAMC_BINAURAL_REVERB_RENDERING        /* FhG: issue 987: fix broken output with ParamMC to BINAURAL_REVERB rendering */

#define DISABLE_LIMITER

/* ##################### End NON-BE switches ########################### */

/* ################## End DEVELOPMENT switches ######################### */
+4 −0
Original line number Diff line number Diff line
@@ -225,8 +225,12 @@ void ivas_renderer_select(

#ifdef SPLIT_REND_WITH_HEAD_ROT
                if ( output_config == IVAS_AUDIO_CONFIG_BINAURAL || output_config == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB || output_config == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM || output_config == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED )
#else
#ifdef NONBE_FIX_987_PARAMC_BINAURAL_REVERB_RENDERING
                if ( output_config == IVAS_AUDIO_CONFIG_BINAURAL )
#else
                if ( output_config == IVAS_AUDIO_CONFIG_BINAURAL || output_config == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB )
#endif
#endif
                {
#ifdef DEBUGGING