Commit 2fffe527 authored by Sumeyra Demir Kanik's avatar Sumeyra Demir Kanik
Browse files

Change from round to roundf in external renderer for ism2binaural

parent 8e40fa16
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -166,6 +166,7 @@
#define FIX_812_DOUBLE_PREC_MCT                         /* FhG: Issue 812: Avoid double precision in MCT */
#define FIX_807_VARIABLE_SPEED_DECODING                 /* FhG: Issue 807: Resolve "Variable Speed Decoding broken" */
#define FIX_818_DOUBLE_PREC_KERNEN_SW                   /* FhG: Issue 818: Avoid double precision in kernel switching */
#define FIX_817_DOUBLE_PREC_REND_MD                   /* FhG: Issue 817: Avoid double precision in renderer metadata module */


/* #################### End BE switches ################################## */
+14 −2
Original line number Diff line number Diff line
@@ -5943,7 +5943,11 @@ static ivas_error renderIsmToBinaural(

    push_wmops( "renderIsmToBinaural" );
    /* Metadata Delay to sync with audio delay converted from ms to 5ms (1000/50/4) subframe index */
#ifdef FIX_817_DOUBLE_PREC_REND_MD
    ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000 / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) );
#else
        ism_md_subframe_update_ext = (int16_t) round( ismInput->ism_metadata_delay_ms / ( 1000 / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) );
#endif
    copyBufferTo2dArray( ismInput->base.inputBuffer, tmpTDRendBuffer );

    if ( ( error = ivas_td_binaural_renderer_ext( &ismInput->tdRendWrapper, ismInput->base.inConfig, NULL, ismInput->base.ctx.pCombinedOrientationData, &ismInput->currentPos, ismInput->hReverb, ism_md_subframe_update_ext,
@@ -6166,7 +6170,11 @@ static ivas_error renderIsmToBinauralReverb(
    push_wmops( "renderIsmToBinauralRoom" );

    /* Metadata Delay to sync with audio delay converted from ms to 5ms (1000/50/4) subframe index */
#ifdef FIX_817_DOUBLE_PREC_REND_MD
    ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000 / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) );
#else
        ism_md_subframe_update_ext = (int16_t) round( ismInput->ism_metadata_delay_ms / ( 1000 / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) );
#endif
    copyBufferTo2dArray( ismInput->base.inputBuffer, tmpRendBuffer );

    if ( ( error = ivas_td_binaural_renderer_ext( &ismInput->tdRendWrapper, ismInput->base.inConfig, NULL, ismInput->base.ctx.pCombinedOrientationData, &ismInput->currentPos, ismInput->hReverb,
@@ -6344,7 +6352,11 @@ static ivas_error renderIsmToSplitBinaural(
    pMultiBinPoseData = &pSplitRendWrapper->multiBinPoseData;

    /* Metadata Delay to sync with audio delay converted from ms to 5ms (1000/50/4) subframe index */
#ifdef FIX_817_DOUBLE_PREC_REND_MD
    ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000 / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) );
#else
    ism_md_subframe_update_ext = (int16_t) round( ismInput->ism_metadata_delay_ms / ( 1000 / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) );
#endif

    pCombinedOrientationData = *ismInput->base.ctx.pCombinedOrientationData;