diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-03-07 13:08:42 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-03-07 13:08:42 +0000 |
commit | c299138aaf5e279b36245c72f5442a7c02a76a5b (patch) | |
tree | 9bef76558c168174130f5dbf87df194033f343ba /gst/audiofx/audiocheblimit.c | |
parent | 7f9ddba043f5d13378bf512d72880020044e5d17 (diff) |
Check for sinh(), cosh() and asinh() and define our own implementations if they're not available. Fixes bug #520880.
Original commit message from CVS:
* configure.ac:
* gst/audiofx/Makefile.am:
* gst/audiofx/audiochebband.c:
* gst/audiofx/audiocheblimit.c:
* gst/audiofx/math_compat.h:
Check for sinh(), cosh() and asinh() and define our own
implementations if they're not available. Fixes bug #520880.
Diffstat (limited to 'gst/audiofx/audiocheblimit.c')
-rw-r--r-- | gst/audiofx/audiocheblimit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/audiofx/audiocheblimit.c b/gst/audiofx/audiocheblimit.c index 6938a533..47fadf98 100644 --- a/gst/audiofx/audiocheblimit.c +++ b/gst/audiofx/audiocheblimit.c @@ -81,6 +81,8 @@ #include <math.h> +#include "math_compat.h" + #include "audiocheblimit.h" #define GST_CAT_DEFAULT gst_audio_cheb_limit_debug |