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

Merge branch '1792-noise-burst-in-binaural-renderer-sub-task-1348' into 'main'

[allow-regressions] Resolve "Noise Burst in Binaural Renderer (sub-task #1348)"

Closes #1792

See merge request !1858
parents 8a7c3d05 b966efbe
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -114,5 +114,6 @@
#define ISSUE_1772_replace_shr_o                /* FhG: replace by non-overflow-alternative - BE */

#define FIX_1735_W_SHL_SAT_L                    /* FhG: Usage of W_shl_sat_l() */
#define FIX_ISSUE_1792                          /* FhG: fix noise bursts in binaural rendering */

#endif
+4 −0
Original line number Diff line number Diff line
@@ -634,7 +634,11 @@ ivas_error ivas_jbm_dec_tc_fx(
                move16();
                FOR( ch = 0; ch < nchan_transport; ch++ )
                {
#ifdef FIX_ISSUE_1792
                    temp_min = L_norm_arr( p_output_fx[ch], output_frame );
#else
                    temp_min = getScaleFactor32( p_output_fx[ch], output_frame );
#endif
                    Q_p_output = s_min( Q_p_output, temp_min );
                }
                Q_p_output = sub( Q_p_output, 2 );