Commit fce08feb authored by Sumeyra Demir Kanik's avatar Sumeyra Demir Kanik
Browse files

Format fix

parent 6718d738
Loading
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -83,7 +83,8 @@ ivas_error ivas_td_binaural_renderer(
        st_ivas->hBinRendererTd, st_ivas->nchan_transport, LFE_CHANNEL, st_ivas->ivas_format,
        st_ivas->hIsmMetaData, st_ivas->hDecoderConfig->Opt_Headrotation, ( st_ivas->hHeadTrackData != NULL ) ? st_ivas->hHeadTrackData->Quaternions : NULL,
        ( st_ivas->hHeadTrackData != NULL ) ? st_ivas->hHeadTrackData->Pos : NULL, ism_md_subframe_update, output, output_frame );
#else    return ivas_td_binaural_renderer_unwrap(
#else
    return ivas_td_binaural_renderer_unwrap(
        st_ivas->hReverb,
        st_ivas->transport_config,
        st_ivas->hBinRendererTd, st_ivas->nchan_transport, LFE_CHANNEL, st_ivas->ivas_format,
@@ -112,7 +113,7 @@ void ObjRenderIVASSubframe(
    float *tc_local[MAX_TRANSPORT_CHANNELS];
    int16_t ch, slot_size, slots_to_render, output_frame;
#ifdef FIX_356_ISM_METADATA_SYNC
    int16_t subframe_update = 0;   /* Number of subframes to delay metadata to sync with audio */
    int16_t ism_md_subframe_update = 0; /* Number of subframes to delay metadata to sync with audio */
#endif
    for ( ch = 0; ch < BINAURAL_CHANNELS; ch++ )
    {
@@ -162,7 +163,7 @@ void ObjRenderIVASSubframe(

        /* Render subframe */
#ifdef FIX_356_ISM_METADATA_SYNC
        TDREND_GetMix( st_ivas->hBinRendererTd, output_f_local, output_frame, 0, subframe_update );
        TDREND_GetMix( st_ivas->hBinRendererTd, output_f_local, output_frame, 0, ism_md_subframe_update );
#else
        TDREND_GetMix( st_ivas->hBinRendererTd, output_f_local, output_frame, 0 );
#endif
+1 −1
Original line number Diff line number Diff line
@@ -304,7 +304,7 @@ ivas_error TDREND_GetMix(
    const int16_t subframe_idx                                  /* i  : Subframe index to 5 ms subframe           */
#ifdef FIX_356_ISM_METADATA_SYNC
    ,
    const int16_t subframe_update                               /* Number of subframes to delay metadata to sync with audio */
    const int16_t ism_md_subframe_update                        /* Number of subframes to delay metadata to sync with audio */
#endif
);