Commit 588fb0d8 authored by emerit's avatar emerit
Browse files

bugs fix

parent e94264db
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -325,8 +325,8 @@ void ivas_apply_non_diegetic_panning_fx(

#ifdef FIX_1530_Codec_Level_Harmonization_Non_diegetic_panning
    Word16 pan = add( mult_r( non_diegetic_pan_gain_fx, 32 ), 32 ); // 0.5.Q15 = 16384                             // Q15
    v_multc_fx( input_f_fx, L_shl( L_deposit_l( cos_table_129[64 - pan] ), 16 ), output_fx[1], output_frame );
    v_multc_fx( input_f_fx, L_shl( L_deposit_l( cos_table_129[pan] ), 16 ), output_fx[0], output_frame );
    v_multc_fx_16( input_f_fx, cos_table_129[pan], output_fx[1], output_frame );
    v_multc_fx_16( input_f_fx, cos_table_129[64 - pan], output_fx[0], output_frame );
#else
    Word16 pan_left_fx, pan_right_fx;