Commit 85284408 authored by Nicolas Roussin's avatar Nicolas Roussin
Browse files

Merge branch 'main' into 2239-optimize-ivas_filter_process_fx

parents 2cf229be d1e851d5
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -155,6 +155,7 @@
#define FIX_2140_OBJECT_EDITING_SANITIZER_ISSUES        /* Nokia: Issue 2140, fixes three different sanitizer issues persisting in object editing code. */
#define FIX_2193_ISM_GAINS_WITH_OE                      /* FhG: fix issue 2193: use edited angles in ISM gain calculation */
#define FIX_2192_OBJ_EDITING_EXT_METADATA               /* Eri: Add support for extended metadata in object editing */
#define FIX_BASOP_ISSUE_1585_CUT_BS_CRASH               /* FhG: Fix for BASOP issue 1585 crash of a cut bitstream, also valid for float code*/

// RTPDUMP porting
#define RTP_S4_251135_CR26253_0016_REV1                /* RTP Pack/Unpack API corresponding to CR 26253 */
+9 −0
Original line number Diff line number Diff line
@@ -185,6 +185,15 @@ static void dec_prm_tcx_sidebits_fx(
        move16();
    }

#ifdef FIX_BASOP_ISSUE_1585_CUT_BS_CRASH
    /* for first frame reset last_core to initialization value for better error-robustness*/
    IF( EQ_16( st->ini_frame, 0 ) )
    {
        st->last_core = TCX_20_CORE;
        move16();
    }
#endif

    getTCXWindowing_ivas_fx( st->core, st->last_core, st->element_mode, st->hTcxCfg, st0 );

    st->hTcxDec->kernel_type[0] = st->hTcxDec->kernel_type[1] = MDCT_IV;