Commit fb47da0d authored by Fabian Bauer's avatar Fabian Bauer
Browse files

buildfix

parent 444bf40d
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -463,7 +463,7 @@ ivas_error decod_gen_voic_fx(
        test();
        test();
        test();
#ifdef ISSUE_1751_replace_shl_ro_
#ifdef ISSUE_1751_replace_shl_ro
        IF( GT_16( shr_r_sat( enratio, sub( Qenratio, 15 ) ), 8192 ) &&       /*compare with 0.25 in Q15*/
            LT_16( shr_r_sat( enratio, sub( Qenratio, 10 ) ), 15360 ) &&      /*compare with 15.0 in Q10*/
            GT_16( shr_r_sat( sp_enratio, sub( Qsp_enratio, 15 ) ), 4915 ) && /*compare with 0.15 in Q15*/
+2 −2
Original line number Diff line number Diff line
@@ -4265,7 +4265,7 @@ void ivas_lfe_synth_with_filters_fx(
            lfeGain_fx = shr_r_sat( lfeGain_fx, negate( lfeGain_fx_exp ) ); // Q15
#else
            Flag Overflow;
            lfeGain_fx = shl_ro( lfeGain_fx, lfeGain_fx_exp & Overflow ); // Q15
            lfeGain_fx = shl_ro( lfeGain_fx, lfeGain_fx_exp, &Overflow ); // Q15
#endif
        }
        IF( EQ_16( BASOP_Util_Cmp_Mant32Exp( hMasaLfeSynth->targetEneTransSmooth_fx, sub( Q31, hMasaLfeSynth->targetEneTransSmooth_q ), /*EPSILON + */ hMasaLfeSynth->transportEneSmooth_fx, sub( Q31, hMasaLfeSynth->transportEneSmooth_q ) ), 1 ) )
@@ -4282,7 +4282,7 @@ void ivas_lfe_synth_with_filters_fx(
            transportGain_fx = shr_r_sat( transportGain_fx, negate( transportGain_fx_exp ) ); // Q15
#else
            Flag Overflow;
            transportGain_fx = shl_ro( transportGain_fx, transportGain_fx_exp & Overflow ); // Q15
            transportGain_fx = shl_ro( transportGain_fx, transportGain_fx_exp, &Overflow ); // Q15
#endif
        }
        j = 0;