From 913b1f3d889237fd391d155b0b446ce27c928e73 Mon Sep 17 00:00:00 2001 From: Sandesh Venkatesh Date: Tue, 20 Feb 2024 10:48:43 +0530 Subject: [PATCH] Fix for crash observed due to hrtf latency. Changed the incorrect data type of CRendBin_HOA3_HRIR_latency_s_fx from float to Word32 --- lib_rend/ivas_rom_binaural_crend_head.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_rend/ivas_rom_binaural_crend_head.c b/lib_rend/ivas_rom_binaural_crend_head.c index 3ab034a8e..efb3c568c 100644 --- a/lib_rend/ivas_rom_binaural_crend_head.c +++ b/lib_rend/ivas_rom_binaural_crend_head.c @@ -1290,7 +1290,7 @@ const Word32 *CRendBin_HOA2_HRIR_coeff_diffuse_im_16kHz_fx[BINAURAL_CHANNELS]={N const float CRendBin_HOA3_HRIR_latency_s = 0.000020834f; #ifdef IVAS_FLOAT_FIXED -const float CRendBin_HOA3_HRIR_latency_s_fx = 44741;/*Q-31*/ +const Word32 CRendBin_HOA3_HRIR_latency_s_fx = 44741;/*Q-31*/ #endif /* Sample Rate = 48000 */ -- GitLab