Commit d830a9f9 authored by Sandesh Venkatesh's avatar Sandesh Venkatesh
Browse files

Merge branch '1204-lib_enc-if-vs-if-cleanup-to-gain-wmops' into 'main'

Resolve "lib_enc: IF vs if cleanup to gain WMOPS." ivas_band_cov_fx()

Closes #1204

See merge request !997
parents 1949602b 4f934943
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -546,7 +546,7 @@ static void ivas_band_cov_fx(
                pV_re[k] = W_extract_l( W_shl_nosat( pV_re_64bit[k], sub( q_shift, 32 ) ) ); //(q_In_FR[i1] + q_In_FR[j1]) + (q_shift - 32)
                move32();
                /* perform rounding towards lower value for negative results */
                IF( pV_re[k] < 0 )
                if ( pV_re[k] < 0 )
                {
                    pV_re[k] = L_add( pV_re[k], 1 );
                }