summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGwenole Beauchesne <gwenole.beauchesne@intel.com>2012-02-07 10:01:01 +0100
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>2012-02-07 11:23:26 +0100
commit1fc69697eb8799d199beaa61da238495e083913f (patch)
treeba51f54a6fa7ebeea4f16f83256d1f8b700d94ab
parentb9938d4c19ee1279cdd0e437d83fcad49f8a094b (diff)
downloadgstreamer-vaapi-1fc69697eb8799d199beaa61da238495e083913f.tar.gz
glib: fix includes.
-rw-r--r--gst-libs/gst/vaapi/gstvaapiutils.h2
-rw-r--r--gst-libs/gst/vaapi/gstvaapiutils_glx.h2
-rw-r--r--gst-libs/gst/vaapi/gstvaapiutils_x11.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/gst-libs/gst/vaapi/gstvaapiutils.h b/gst-libs/gst/vaapi/gstvaapiutils.h
index 85c5f668..49b3a6bb 100644
--- a/gst-libs/gst/vaapi/gstvaapiutils.h
+++ b/gst-libs/gst/vaapi/gstvaapiutils.h
@@ -23,7 +23,7 @@
#define GST_VAAPI_UTILS_H
#include "config.h"
-#include <glib/gtypes.h>
+#include <glib.h>
#ifdef GST_VAAPI_USE_OLD_VAAPI_0_29
# include <va.h>
diff --git a/gst-libs/gst/vaapi/gstvaapiutils_glx.h b/gst-libs/gst/vaapi/gstvaapiutils_glx.h
index c5c7a0c0..80e76f1d 100644
--- a/gst-libs/gst/vaapi/gstvaapiutils_glx.h
+++ b/gst-libs/gst/vaapi/gstvaapiutils_glx.h
@@ -27,7 +27,7 @@
#include <GL/glext.h>
#include <GL/glx.h>
#include <GL/glxext.h>
-#include <glib/gtypes.h>
+#include <glib.h>
#if GLX_GLXEXT_VERSION < 18
typedef void (*PFNGLXBINDTEXIMAGEEXTPROC)(Display *, GLXDrawable, int, const int *);
diff --git a/gst-libs/gst/vaapi/gstvaapiutils_x11.h b/gst-libs/gst/vaapi/gstvaapiutils_x11.h
index a031168e..f9250878 100644
--- a/gst-libs/gst/vaapi/gstvaapiutils_x11.h
+++ b/gst-libs/gst/vaapi/gstvaapiutils_x11.h
@@ -24,7 +24,7 @@
#include "config.h"
#include <X11/Xlib.h>
-#include <glib/gtypes.h>
+#include <glib.h>
void x11_trap_errors(void)
attribute_hidden;