Commit eb73c092 authored by Fabian Bauer's avatar Fabian Bauer
Browse files

fixed instrumentation

parent 60d02a4b
Loading
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -179,7 +179,13 @@ static Word16 GetSubbandCorrIndex2_har_fx( /* o :
                x has to be MAX_32 and y has to be 0
                So, a saturated overflow has occured if the result is MAX_32 and y is != 0
                THe case MIN_32 with negative x is not valid since x is calculated by square */
            Overflow = ( ( L_corr_sq == MAX_32 ) && ( exp_norm < 0 ) ) ? 1 : 0;
            Overflow = 0;
            move32();
            test();
            IF(L_corr_sq == MAX_32 && (exp_norm < 0))
            {
                Overflow = 1;
            }
#else
            L_corr_sq = L_shr_o( L_corr_sq, s_min( shl( exp_norm, 1 ), 31 ), &Overflow ); /* (QCorr-16)*2+1 */
#endif