From 663a3ac386d60ff250465236eb28390ff69a3c0f Mon Sep 17 00:00:00 2001 From: janssontoftg Date: Fri, 24 May 2024 04:59:06 +0000 Subject: [PATCH] Use ceilf() instead of ceil() --- lib_rend/ivas_objectRenderer_mix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_rend/ivas_objectRenderer_mix.c b/lib_rend/ivas_objectRenderer_mix.c index b2492324c9..cd8b59cf25 100644 --- a/lib_rend/ivas_objectRenderer_mix.c +++ b/lib_rend/ivas_objectRenderer_mix.c @@ -539,7 +539,7 @@ static ivas_error DefaultBSplineModel( model->EL = (const float *) defaultHRIR_rom_EL16; model->ER = (const float *) defaultHRIR_rom_ER16; #ifdef FIX_989_TD_REND_ROM - model->K = (int16_t) ceil( RESAMPLE_FACTOR_16_48 * defaultHRIR_rom_model_configuration[5] ); + model->K = (int16_t) ceilf( RESAMPLE_FACTOR_16_48 * defaultHRIR_rom_model_configuration[5] ); #else model->K = 43; #endif -- GitLab