Commit 5575a014 authored by Devansh Kandpal's avatar Devansh Kandpal
Browse files

Added changes for float MR 1429 - aeid selection

parent 410d900a
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -127,6 +127,7 @@
#endif

//#define FIX_777_COMBI_RENDER_CONFIG_FILE                /* Philips: Fix for combined renderer config file support */
#define FIX_1020_AEID_SELECTION_ERRORS                  /* Philips: issue #1020: fix for acoustic environemnt ID selection errors */
#define FIX_944_REMOVE_LS_RENDERER_CALL_IN_STEREO       /* VA: issue 994: remove an obsolete call of function ivas_ls_setup_conversion() in stereo */
#define FIX_699_FILE_READER_JBM_TSM                     /* VA: issue 699: complement FileReader_getFilePath() logic for TSM and JBM */
#define FIX_997_REMOVE_SPAR_DEC_UPMIXER                 /* VA: issue 997: remove obsolete function ivas_spar_dec_upmixer() */
+4 −0
Original line number Diff line number Diff line
@@ -2197,7 +2197,11 @@ ivas_error RenderConfigReader_read(
                    return IVAS_ERR_INVALID_RENDER_CONFIG;
                }
                idx = strtol( strtok( NULL, ":" ), NULL, 0 );
#ifdef FIX_1020_AEID_SELECTION_ERRORS
                pRenderConfigReader->pAE[acIdx].id = idx;
#else
                pRenderConfigReader->pAE->id = idx;
#endif

                aeHasFgIdx = aeHasPredelay = aeHasRt60 = aeHasDsr = FALSE;
                aeHasERsize = aeHasERabs = FALSE;