Commit da9d293d authored by emerit's avatar emerit
Browse files

fix diff

parent b5164785
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1050,6 +1050,9 @@ static ivas_error ivas_rend_initCrend_fx(

                FOR( j = 0; j < BINAURAL_CHANNELS; j++ )
                {
                    hHrtf->factor_Q_inv_diffuse_weight = hHrtfCrend->factor_Q_inv_diffuse_weight;
                    hHrtf->factor_Q_latency_s_fx = hHrtfCrend->factor_Q_latency_s_fx;
                    hHrtf->factor_Q_pOut_to_bin = hHrtfCrend->factor_Q_pOut_to_bin;
                    hHrtf->inv_diffuse_weight_fx[j][tmp2] = hHrtfCrend->inv_diffuse_weight_fx[j][tmp];
                    hHrtf->num_iterations[tmp2][j] = hHrtfCrend->num_iterations[tmp][j];
                    hHrtf->pIndex_frequency_max[tmp2][j] = hHrtfCrend->pIndex_frequency_max[tmp][j];
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@
 *------------------------------------------------------------------------*/
/* TD renderer default HRIR model */
#ifdef DEBUGGING
/* Generated on 30-Jan-2025 with Matlab version 23.2.0.2668659 (R2023b) Update 9 by marcemerit on MACA64 */
/* Generated on 04-Feb-2025 with Matlab version 23.2.0.2668659 (R2023b) Update 9 by marcemerit on MACA64 */
#endif
const Word16 defaultHRIR_rom_latency_s_Q_fx = 31;
+3 −3
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@
#define WMC_TOOL_SKIP
#ifdef DEBUGGING
/* Generated on 30-Jan-2025 with Matlab version 23.2.0.2668659 (R2023b) Update 9 by marcemerit on MACA64 */
/* Generated on 04-Feb-2025 with Matlab version 23.2.0.2668659 (R2023b) Update 9 by marcemerit on MACA64 */
#endif
@@ -46948,7 +46948,7 @@ const Word16 rightBRIRImag_fx[BINAURAL_CONVBANDS][HRTF_LS_CHANNELS][BINAURAL_NTA
const Word16 FASTCONV_factor_Q_reverberationTimes_fx = 15;
const Word16 fastconvReverberationTimes_fx[CLDFB_NO_CHANNELS_MAX] = 
{
    13725,    6792,    6652,    6788,    7095,    7735,    7554,    7509,    7471,    7205,    7392,    7237,    7330,    7306,    7327,    7449,    7454,    7331,    7214,    7168,    7223,    7152,    6988,    6892,    6797,    6513,    6431,    6387,    6237,    6046,    5909,    5773,    5784,    5819,    6016,    6420,    6660,    6829,    7034,    7209,    7305,    7550,    7665,    7656,    7744,    7780,    7918,    7901,    7827,    7942,    8102,    8059,    8133,    8041,    7994,    7999,    7828,    7950,    7695,    8292,    
    13763,    6773,    6672,    6798,    7119,    7739,    7542,    7501,    7478,    7202,    7405,    7215,    7275,    7311,    7326,    7454,    7468,    7322,    7206,    7163,    7223,    7152,    6988,    6892,    6797,    6513,    6431,    6387,    6237,    6046,    5909,    5773,    5784,    5819,    6016,    6420,    6660,    6829,    7034,    7209,    7305,    7550,    7665,    7656,    7744,    7780,    7918,    7901,    7827,    7942,    8102,    8059,    8145,    8041,    7994,    7999,    7832,    7923,    7695,    8292,    
};
@@ -46960,7 +46960,7 @@ const Word16 fastconvReverberationEneCorrections_fx[CLDFB_NO_CHANNELS_MAX] =
#ifdef DEBUGGING
/* Generated on 30-Jan-2025 with Matlab version 23.2.0.2668659 (R2023b) Update 9 by marcemerit on MACA64 */
/* Generated on 04-Feb-2025 with Matlab version 23.2.0.2668659 (R2023b) Update 9 by marcemerit on MACA64 */
#endif
+0 −2
Original line number Diff line number Diff line
@@ -38,8 +38,6 @@
#include "ivas_prot.h"
#include "ivas_prot_fx.h"

#include "ivas_rom_binauralRenderer.h"

/*---------------------------------------------------------------------*
 * Local structures
 *---------------------------------------------------------------------*/
+2 −2
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 3.10)

project(generate_crend_ivas_tables)

# set(CMAKE_OSX_ARCHITECTURES "x86_64")
set(CMAKE_BUILD_TYPE "Debug")
set(IVAS_TRUNK_PATH "${PROJECT_SOURCE_DIR}/../..")
set(IVAS_TRUNK_UTIL_PATH ${IVAS_TRUNK_PATH}/lib_util)
string(REPLACE "/binauralRenderer_interface" "" IVAS_TRUNK_SCRIPTS_PATH ${PROJECT_SOURCE_DIR})
@@ -98,8 +100,6 @@ set(SOURCE_FILES_H
    ${IVAS_TRUNK_REND_PATH}/ivas_rom_rend.h
)

add_definitions(-DFIX_GEN_CREND_ROM)

add_library(${PROJECT_NAME}_lib STATIC ${SOURCE_FILES_C} ${SOURCE_FILES_H})

add_executable(${PROJECT_NAME} generate_crend_ivas_tables_from_sofa.c)
Loading