OMASA object editing path has wrong assignment
# Basic info <!--- Add commit SHA used to reproduce--> - Fixed point: - Decoder (fixed): 7897b35eaed4a12d558c229d86d6bc1f2f1934b6 # Bug description There is copy-paste mistake in OMASA object editing path when gains are not adjusted shown below. ``` IF( masaGainEdited ) { newRatios[0] = Mpy_32_16_1( newRatios[0], gainMasaPow2 ); // Q = 30 + 9 + 1 - 16 = 24 newRatios[1] = Mpy_32_16_1( newRatios[1], gainMasaPow2 ); // Q = 30 + 9 + 1 - 16 = 24 move32(); move32(); } ELSE { newRatios[0] = L_shr( newRatios[0], 6 ); // Q = 30 + 9 + 1 - 16 = 24 BUG HERE -> newRatios[1] = L_shr( newRatios[0], 6 ); move32(); move32(); } ``` # Ways to reproduce Box folder: ...\\Box_EXTERNAL_IVAS_BASOP_VERIFICATION\\issues\\issue-xxxx <!--Commandline or script--> ```bash ``` <!--- Below are labels that will be added but are not shown in description. This is a template to help fill them. Add further information to the first row and remove and add labels as necessary.-->
issue