~ubuntu-branches/debian/sid/x42-plugins/sid

« back to all changes in this revision

Viewing changes to fil4.lv2/src/iir.h

  • Committer: Package Import Robot
  • Author(s): Jaromír Mikeš
  • Date: 2015-06-09 03:12:15 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20150609031215-2582mlqmpovk2g7m
Tags: 20150608-1
* Remove spelling patch - applied upstream.
* Remove GTK build-deps - not needed now.
* Improved description.
* Exclude mipsel from build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
        if (freq > f->f_u) { freq = f->f_u; }
52
52
 
53
53
#ifndef NO_NAN_PROTECTION
54
 
        if (isnan(f->y0)) f->y0 = 0;
55
54
        if (isnan(f->y1)) f->y1 = 0;
56
55
        if (isnan(f->y2)) f->y2 = 0;
57
56
#endif
126
125
                f->y2 = f->y1;
127
126
                f->y1 = f->y0;
128
127
        }
129
 
        if (fabs(f->y0) < (1e-12)) f->y0 = 0.0; // denormal FTZ
130
128
}
131
129
#endif