Commit 1770bb33 authored by vaclav's avatar vaclav
Browse files

Merge branch 'main' into 237-external-renderer-function-declarations-2

parents a8ed2426 7f87eaef
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -1506,9 +1506,7 @@ static ivas_error decodeG192(
        }
#ifdef WMOPS
        update_wmops();
#ifdef MEM_COUNT_DETAILS
        export_mem( "mem_analysis.csv" );
#endif
        update_mem();
#endif
    }

@@ -1979,9 +1977,7 @@ static ivas_error decodeVoIP(

#ifdef WMOPS
        update_wmops();
#ifdef MEM_COUNT_DETAILS
        export_mem( "mem_analysis.csv" );
#endif
        update_mem();
#endif
    }

+1 −3
Original line number Diff line number Diff line
@@ -717,9 +717,7 @@ int main(

#ifdef WMOPS
        update_wmops();
#ifdef MEM_COUNT_DETAILS
        export_mem( "mem_analysis.csv" );
#endif
        update_mem();
#endif
    }

+1 −3
Original line number Diff line number Diff line
@@ -999,9 +999,7 @@ int main(

#ifdef WMOPS
        update_wmops();
#ifdef MEM_COUNT_DETAILS
        export_mem( "mem_analysis.csv" );
#endif
        update_mem();
#endif
    }

+3 −0
Original line number Diff line number Diff line
@@ -3974,6 +3974,9 @@ ivas_error ivas_spar_md_dec_open(
    const DECODER_CONFIG_HANDLE hDecoderConfig,                 /* i  : configuration structure                 */
    const int16_t num_channels,                                 /* i  : number of internal channels             */
	const int16_t sba_order                                     /* i  : SBA order                               */
#ifdef SBA_BR_SWITCHING_RECONFIG
    ,const int16_t sid_format
#endif
);

void ivas_spar_md_dec_close(
+1 −0
Original line number Diff line number Diff line
@@ -154,6 +154,7 @@
#define FIX_337_TDREND_INTP                             /* Issue 337: TD renderer interpolation threshold set too low */

#define FIX_310_TD_REND_DELAY                           /* Adding HRTF delay being read from ROM/Binary file, fix rounding for delay compensation in renderer */
#define FIX_334_DEBUG_BE_STEREO_SWITCHING               /* FhG: Fix non-BE issue for stereo switching when DEBUGGING is enabled */

/* ################## End DEVELOPMENT switches ######################### */
/* clang-format on */
Loading