~ubuntu-branches/ubuntu/utopic/lmms/utopic

« back to all changes in this revision

Viewing changes to plugins/zynaddsubfx/src/Effects/Alienwah.cpp

  • Committer: Package Import Robot
  • Author(s): Israel Dahl
  • Date: 2014-04-30 18:49:37 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20140430184937-hozuuxonlbshciya
Tags: 1.0.1-src-0ubuntu1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
        tmp = clfol * x + oldclfol * x1;
68
68
 
69
69
        out = tmp * oldl[oldk];
70
 
        out.real() += (1 - fabs(fb)) * smp.l[i] * (1.0 - panning);
 
70
        out += (1 - fabs(fb)) * smp.l[i] * (1.0 - panning);
71
71
 
72
72
        oldl[oldk]  = out;
73
73
        REALTYPE l = out.real() * 10.0 * (fb + 0.1);
76
76
        tmp = clfor * x + oldclfor * x1;
77
77
 
78
78
        out = tmp * oldr[oldk];
79
 
        out.real() += (1 - fabs(fb)) * smp.r[i] * (1.0 - panning);
 
79
        out += (1 - fabs(fb)) * smp.r[i] * (1.0 - panning);
80
80
 
81
81
        oldr[oldk]  = out;
82
82
        REALTYPE r = out.real() * 10.0 * (fb + 0.1);