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

Merge branch '3gpp_issue_847_fix' into 'main'

Fix for 3GPP issue 847: Crash in BINAURAL_ROOM_REVERB decode path

See merge request !532
parents 145d4840 94e1be34
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3291,7 +3291,7 @@ static ivas_error downmix_input_block_fx(
                {
                    temp = L_add( temp, pcm_in[i][add( input_offset, s )] );
                }
                pPcm_out[s] = L_shl( Mpy_32_32( dmx_gain_fx, L_shl_sat( temp, 7 ) ), 1 );
                pPcm_out[s] = W_extract_h( W_shl( W_mult0_32_32( dmx_gain_fx, temp ), 9 ) ); // ( Q23 + Q11 + Q9 ) - 32 = Q11
                move32();
            }
            BREAK;