62b917d6a0
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/ladspa?expand=0&rev=a0a47b83c34eb232331336b75d0761a6
20 lines
493 B
Plaintext
20 lines
493 B
Plaintext
Index: tap-plugins-0.7.1/tap_utils.h
|
|
===================================================================
|
|
--- tap_utils.h
|
|
+++ tap_utils.h 2004-03-05 15:45:53.000000000 +0100
|
|
@@ -95,6 +95,14 @@ for any bugs or malfunction. */
|
|
|
|
|
|
#define LN_2_2 0.34657359f
|
|
+static inline float FLUSH_TO_ZERO(float fv) {
|
|
+ union {
|
|
+ float f;
|
|
+ int i;
|
|
+ } v;
|
|
+ v.f = fv;
|
|
+ return (v.i & 0x7f800000) == 0 ?0.0f : fv;
|
|
+}
|
|
#define LIMIT(v,l,u) ((v)<(l)?(l):((v)>(u)?(u):(v)))
|
|
|
|
#define BIQUAD_TYPE float
|