Commit 72c18579 authored by multrus's avatar multrus
Browse files

[cleanup] accept FIX_BASOP_2497_MCMASA_LFE_WRONG_SF_INDEX

parent 9b1f969e
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -103,7 +103,6 @@

#define FIX_BASOP_2486_HQ_FINE_GAIN_ALIGNMENT           /* Eri: Basop issue 2486: IVAS BASOP used calculations with truncation, EVS BASOP used rounding. This aligns the use of a table lookup. */
#define FIX_1540_EXPOSE_PT_IN_RTP_HEADER_API            /* Expose Payload Type setting in RTP Header */
#define FIX_BASOP_2497_MCMASA_LFE_WRONG_SF_INDEX        /* Nokia: BASOP 2497: Fix wrong subframe index in McMASA LFE synth. */
#define FIX_BASOP_2496_OMASA_OBJ_EDIT_WRONG_ASSIGN      /* Nokia: BASOP 2496: Fix wrong assignment in OMASA object edit code */
#define FIX_2495_Q_ALIGN_OSBA_RENDERER                  /* FhG: Basop issue #2495: Corrected exponent scaling of outAudio.data_fx before buffer accumulation in renderSbaToBinaural(). */
#define FIX_BASOP_2511_PROTO_REF_POWER_FIX              /* FhG: BASOP 2511; Fix reference power computation in protoSignalComputation_shd_fx() */
+0 −4
Original line number Diff line number Diff line
@@ -3454,11 +3454,7 @@ void ivas_lfe_synth_with_filters_fx(
    slotSize = shr_r( output_frame, 4 ); // output_frame / CLDFB_NO_COL_MAX
    FOR( slot_index = 0; slot_index < CLDFB_NO_COL_MAX; slot_index++ )
    {
#ifdef FIX_BASOP_2497_MCMASA_LFE_WRONG_SF_INDEX
        subframe_index = shr( slot_index, 2 );
#else
        subframe_index = shr( slot_index, 4 );
#endif

        mrange[0] = i_mult( slot_index, slotSize );
        move16();