Commit 2de182ee authored by multrus's avatar multrus
Browse files

[cleanup] accept FIX_2275_OOB_INDEXING_IN_PREDICT_SIGNAL_FUNC

parent 8f72a467
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -85,7 +85,6 @@
#define FIX_1999_TEMPORARY_DISABLE_DIST_ATT_CHECK       /* Eri: Issue 1999: Range check on float values of distance attenuation, while the float values are not propagated to this function. The test is not correct, but configurable distance attenuation is not used in Characterization.*/
#define TMP_1342_WORKAROUND_DEC_FLUSH_BROKEN_IN_SR      /* FhG: Temporary workaround for incorrect implementation of decoder flush with split rendering */
#define NONBE_1122_KEEP_EVS_MODE_UNCHANGED              /* FhG: Disables fix for issue 1122 in EVS mode to keep BE tests green. This switch should be removed once the 1122 fix is added to EVS via a CR.  */
#define FIX_2275_OOB_INDEXING_IN_PREDICT_SIGNAL_FUNC    /* FhG: fix a USAN OOB error */
#define FIX_2284_ADD_ASSERT_LOG                         /* FhG: add asserts to Log2_norm_lc() and log10_fx() */
#define FIX_2286_GCC_WARNING_Idx2Freq_Tbl               /* FhG: Fix compiler warning for OOB access of Idx2Freq_Tbl[] */
#define FIX_CLANG18_MSAN_IN_DEC_INIT_BY_MOVING_COMMON_INITS_TOGETHER /* FhG: fix CLANG18 MSAN error in decoder init */
+0 −6
Original line number Diff line number Diff line
@@ -401,7 +401,6 @@ void predict_signal(
        x0--;
    }

#ifdef FIX_2275_OOB_INDEXING_IN_PREDICT_SIGNAL_FUNC
    IF( EQ_16( frac_max, 6 ) )
    {
        win = &inter6_2tcx2[frac][0]; /* Q15 */
@@ -410,11 +409,6 @@ void predict_signal(
    {
        win = &inter4_2tcx2[frac][0]; /* Q15 */
    }
#else
    win = &inter4_2tcx2[frac][0]; /* Q15 */
    if ( EQ_16( frac_max, 6 ) )
        win = &inter6_2tcx2[frac][0]; /* Q15 */
#endif

    FOR( j = 0; j < L_subfr; j++ )
    {