diff options
author | David Schleef <ds@schleef.org> | 2010-12-30 19:21:47 -0800 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2010-12-30 19:25:46 -0800 |
commit | 272086b121297cdbcaeef02fa133ef5f20f11163 (patch) | |
tree | 3ef1d66ab1ba104166b3c5024b212389eed5acfd | |
parent | edd1f791ca4e4526e10c6458d4d19a1fc3173a89 (diff) | |
download | gstreamer-plugins-bad-272086b121297cdbcaeef02fa133ef5f20f11163.tar.gz |
cog: Use math-compat.h
-rw-r--r-- | ext/cog/generate_tables.c | 1 | ||||
-rw-r--r-- | ext/cog/gstcms.c | 1 | ||||
-rw-r--r-- | ext/cog/gstcolorconvert.c | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/ext/cog/generate_tables.c b/ext/cog/generate_tables.c index d775bcc21..033f23c39 100644 --- a/ext/cog/generate_tables.c +++ b/ext/cog/generate_tables.c @@ -2,6 +2,7 @@ #include "config.h" #include <glib.h> +#include <gst/math-compat.h> #include <math.h> #include "gstcms.h" diff --git a/ext/cog/gstcms.c b/ext/cog/gstcms.c index 8fd28c6ba..27648cbf8 100644 --- a/ext/cog/gstcms.c +++ b/ext/cog/gstcms.c @@ -22,6 +22,7 @@ #endif #include <gst/gst.h> +#include <gst/math-compat.h> #include "gstcms.h" #include "cogutils.h" diff --git a/ext/cog/gstcolorconvert.c b/ext/cog/gstcolorconvert.c index 6f5d9c85f..560ca68c9 100644 --- a/ext/cog/gstcolorconvert.c +++ b/ext/cog/gstcolorconvert.c @@ -27,7 +27,7 @@ #include <string.h> #include <cog/cog.h> #include <cog/cogvirtframe.h> -#include <math.h> +#include <gst/math-compat.h> #include "gstcogutils.h" |