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

Merge branch 'fix_high_MLD_issue' into 'main'

Fix for high MLD issue observed with few files.

See merge request !71
parents 94ff9691 c3be3a0f
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -773,7 +773,7 @@ void rotateFrame_sd(

                /* output channel index without LFE */
                ch_out_woLFE = ( ch_out >= index_lfe ) ? ch_out - 1 : ch_out;
                gains_prev_fx[ch_in][ch_out] = tmp_gains_fx[ch_out_woLFE];
                gains_prev_fx[ch_in][ch_out] = L_shr( tmp_gains_fx[ch_out_woLFE], Q2 ); // Adjusting Q30 -> Q28
            }
        }

@@ -798,7 +798,7 @@ void rotateFrame_sd(
                /* output channel index without LFE */
                ch_out_woLFE = ( ch_out >= index_lfe ) ? ch_out - 1 : ch_out;

                gains_fx[ch_in][ch_out] = tmp_gains_fx[ch_out_woLFE];
                gains_fx[ch_in][ch_out] = L_shr( tmp_gains_fx[ch_out_woLFE], Q2 ); // Adjusting Q30 -> Q28
            }
        }
    }