Loading lib_com/options.h +0 −1 Original line number Diff line number Diff line Loading @@ -87,7 +87,6 @@ #define FIX_2255_ISAR_RENDER_POSES /* VA: issue 2255: fix missing check in isar_render_poses() */ #define FIX_1904_HARM_GSC_ENC /* VA: #1904 Harmonization of EVS and IVAS GSC code */ #define FIX_1478_UNINIT_ON_BFI /* VA: Fix issue 1478 where a vector is partly un-initialized during bfi */ #define FIX_BASOP_2327_WRONG_LOOP_END /* Nokia: basop inssue 2327: Correct loop end to solve MSAN error */ #define FIX_BASOP_2328_MSAN_WRONG_ASSIGNMENT /* Nokia: basop issue 2328: Fix MSAN error by correcting the variable assignment */ #define FIX_BASOP_2329_UNINIT_VALUE /* Nokia: basop issue 2329: Fix issue by checking for structure instead of length */ #define FIX_BASOP_2332_ASAN_OVERFLOW_IN_EXT_DIRAC_REND /* Nokia: basop issue 2332: Uses predefined memory sizes instead computing wrong */ Loading lib_rend/ivas_omasa_ana_fx.c +0 −8 Original line number Diff line number Diff line Loading @@ -719,11 +719,7 @@ static void ivas_omasa_dmx_fx( } max_e = in_e[0]; move16(); #ifdef FIX_BASOP_2327_WRONG_LOOP_END FOR( l = 1; l < input_frame; l++ ) #else FOR( l = 1; l < L_FRAME48k; l++ ) #endif { IF( LT_16( max_e, in_e[l] ) ) { Loading @@ -732,11 +728,7 @@ static void ivas_omasa_dmx_fx( } } #ifdef FIX_BASOP_2327_WRONG_LOOP_END FOR( l = 0; l < input_frame; l++ ) #else FOR( l = 0; l < L_FRAME48k; l++ ) #endif { data_out_f_fx[j][l] = L_shr( data_out_f_fx[j][l], sub( max_e, in_e[l] ) ); // exponent: max_e, Q: ( 15 - max_e ) move32(); Loading Loading
lib_com/options.h +0 −1 Original line number Diff line number Diff line Loading @@ -87,7 +87,6 @@ #define FIX_2255_ISAR_RENDER_POSES /* VA: issue 2255: fix missing check in isar_render_poses() */ #define FIX_1904_HARM_GSC_ENC /* VA: #1904 Harmonization of EVS and IVAS GSC code */ #define FIX_1478_UNINIT_ON_BFI /* VA: Fix issue 1478 where a vector is partly un-initialized during bfi */ #define FIX_BASOP_2327_WRONG_LOOP_END /* Nokia: basop inssue 2327: Correct loop end to solve MSAN error */ #define FIX_BASOP_2328_MSAN_WRONG_ASSIGNMENT /* Nokia: basop issue 2328: Fix MSAN error by correcting the variable assignment */ #define FIX_BASOP_2329_UNINIT_VALUE /* Nokia: basop issue 2329: Fix issue by checking for structure instead of length */ #define FIX_BASOP_2332_ASAN_OVERFLOW_IN_EXT_DIRAC_REND /* Nokia: basop issue 2332: Uses predefined memory sizes instead computing wrong */ Loading
lib_rend/ivas_omasa_ana_fx.c +0 −8 Original line number Diff line number Diff line Loading @@ -719,11 +719,7 @@ static void ivas_omasa_dmx_fx( } max_e = in_e[0]; move16(); #ifdef FIX_BASOP_2327_WRONG_LOOP_END FOR( l = 1; l < input_frame; l++ ) #else FOR( l = 1; l < L_FRAME48k; l++ ) #endif { IF( LT_16( max_e, in_e[l] ) ) { Loading @@ -732,11 +728,7 @@ static void ivas_omasa_dmx_fx( } } #ifdef FIX_BASOP_2327_WRONG_LOOP_END FOR( l = 0; l < input_frame; l++ ) #else FOR( l = 0; l < L_FRAME48k; l++ ) #endif { data_out_f_fx[j][l] = L_shr( data_out_f_fx[j][l], sub( max_e, in_e[l] ) ); // exponent: max_e, Q: ( 15 - max_e ) move32(); Loading