Commit 5778d723 authored by Tapani Pihlajakuja's avatar Tapani Pihlajakuja
Browse files

Merge branch '1808-asserts-for-binaural_room_reverb-output' into 'main'

Resolve #1808 "BASOP Asserts for BINAURAL_ROOM_REVERB output on main-pc"

Closes #1808

See merge request !1895
parents 8fc8a35f a73a2fc5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -981,8 +981,8 @@ static void ivas_binaural_obtain_DMX_fx(
                ELSE
                {
                    Word16 div = divide3232( P_in_fx[bandIdx], P_out_fx );
                    Word16 exp = 0; // divide3232 returns Q15 + following Q16 shift
                    factEQ_fx = Sqrt32( L_shl( div, Q16 ), &exp );
                    Word16 exp = 16; // divide3232 returns Q15
                    factEQ_fx = Sqrt32( div, &exp );
                    factEQ_fx = L_shl( factEQ_fx, sub( exp, 1 ) ); // Q30
                }
                if ( factEQ_fx <= 0 )