Commit 0149f90f authored by TYAGIRIS's avatar TYAGIRIS
Browse files

fix for 5ms framing with pose correction

parent a326aafa
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -161,6 +161,8 @@
#define LCLD_CLEAN_UPS
#endif

#define FIX_NUM_SUBFRAME_UPDATE

#define FIX_1020_AEID_SELECTION_ERRORS                  /* Philips: issue #1020: fix for acoustic environment ID selection errors */
#define FIX_993_REMOVE_SBA_GET_ORDER                    /* VA: issue 993: remove unused function ivas_sba_get_order() */
#define FIX_1002_DEC_PHASE_ECU_USAN_OF_PHASE            /* Eri: issue #1002, usan-value-out-of-range-for-int16, kept BE for PLC-conditions   */
+11 −0
Original line number Diff line number Diff line
@@ -549,6 +549,17 @@ ivas_error IVAS_DEC_SetRenderFramesize(

    hIvasDec->st_ivas->hDecoderConfig->render_framesize = render_framesize;

#ifdef FIX_NUM_SUBFRAME_UPDATE
    if ( hIvasDec->st_ivas->hExtOrientationData != NULL )
    {
        hIvasDec->st_ivas->hExtOrientationData->num_subframes = (int16_t) render_framesize;
    }
    if ( hIvasDec->st_ivas->hCombinedOrientationData != NULL )
    {
        hIvasDec->st_ivas->hCombinedOrientationData->num_subframes = (int16_t) render_framesize;
    }
#endif

    return IVAS_ERR_OK;
}