summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Lhomme <steve.lhomme@free.fr>2004-07-26 22:11:21 +0000
committerSteve Lhomme <steve.lhomme@free.fr>2004-07-26 22:11:21 +0000
commit2efe042ed586649b1d1e5a3023daef2c35b32e2d (patch)
tree9a209a5136d80166eeb173c74f51bb2179e93810
parent6d5553036e8b1d6ac2f5aafac8e2267c3bf6b8e4 (diff)
downloadgst-plugins-bad-2efe042ed586649b1d1e5a3023daef2c35b32e2d.tar.gz
gst-plugins-bad-2efe042ed586649b1d1e5a3023daef2c35b32e2d.tar.bz2
gst-plugins-bad-2efe042ed586649b1d1e5a3023daef2c35b32e2d.zip
local include fixes
Original commit message from CVS: local include fixes Fix some 64 bits constants to be glib friendly issue for a vararg macro with MSVC
-rw-r--r--gst/colorspace/gstcolorspace.c2
-rw-r--r--gst/colorspace/yuv2rgb.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/gst/colorspace/gstcolorspace.c b/gst/colorspace/gstcolorspace.c
index f321750a..d85e87ef 100644
--- a/gst/colorspace/gstcolorspace.c
+++ b/gst/colorspace/gstcolorspace.c
@@ -20,7 +20,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
-#include <gstcolorspace.h>
+#include "gstcolorspace.h"
#include <gst/gst.h>
#include <gst/video/video.h>
diff --git a/gst/colorspace/yuv2rgb.h b/gst/colorspace/yuv2rgb.h
index be173bca..e136f4d8 100644
--- a/gst/colorspace/yuv2rgb.h
+++ b/gst/colorspace/yuv2rgb.h
@@ -23,7 +23,7 @@
#define __YUV2RGB_H__
#include <gst/gst.h>
-#include <gstcolorspace.h>
+#include "gstcolorspace.h"
G_BEGIN_DECLS