Skip to content

Instantly share code, notes, and snippets.

View ryanfleury's full-sized avatar

Ryan Fleury ryanfleury

View GitHub Profile
#include "freeverb.h"
#define undenormalize(n) { if (xabs(n) < 1e-37) { (n) = 0; } }
static inline float xabs(float n) {
return n < 0 ? -n : n;
}