[gst-cvs] gst-plugins-bad: rtpmux: Do the includes locally
Olivier Crête
tester at kemper.freedesktop.org
Tue Apr 21 10:27:42 PDT 2009
Module: gst-plugins-bad
Branch: master
Commit: 5af0efd1d31d037220d10b5b0d1e8aa3fb31bcac
URL: http://cgit.freedesktop.org/gstreamer/gst-plugins-bad/commit/?id=5af0efd1d31d037220d10b5b0d1e8aa3fb31bcac
Author: Olivier Crête <olivier.crete at collabora.co.uk>
Date: Mon Apr 20 17:42:40 2009 -0400
rtpmux: Do the includes locally
---
gst/rtpmux/gstrtpdtmfmux.c | 3 ++-
gst/rtpmux/gstrtpdtmfmux.h | 2 +-
gst/rtpmux/gstrtpmux.c | 3 ++-
3 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/gst/rtpmux/gstrtpdtmfmux.c b/gst/rtpmux/gstrtpdtmfmux.c
index 409375b..692bf59 100644
--- a/gst/rtpmux/gstrtpdtmfmux.c
+++ b/gst/rtpmux/gstrtpdtmfmux.c
@@ -64,9 +64,10 @@
#endif
#include <gst/gst.h>
-#include <gstrtpdtmfmux.h>
#include <string.h>
+#include "gstrtpdtmfmux.h"
+
GST_DEBUG_CATEGORY_STATIC (gst_rtp_dtmf_mux_debug);
#define GST_CAT_DEFAULT gst_rtp_dtmf_mux_debug
diff --git a/gst/rtpmux/gstrtpdtmfmux.h b/gst/rtpmux/gstrtpdtmfmux.h
index c73ada4..343be5c 100644
--- a/gst/rtpmux/gstrtpdtmfmux.h
+++ b/gst/rtpmux/gstrtpdtmfmux.h
@@ -27,7 +27,7 @@
#define __GST_RTP_DTMF_MUX_H__
#include <gst/gst.h>
-#include <gstrtpmux.h>
+#include "gstrtpmux.h"
G_BEGIN_DECLS
#define GST_TYPE_RTP_DTMF_MUX (gst_rtp_dtmf_mux_get_type())
diff --git a/gst/rtpmux/gstrtpmux.c b/gst/rtpmux/gstrtpmux.c
index 51094f5..00782bb 100644
--- a/gst/rtpmux/gstrtpmux.c
+++ b/gst/rtpmux/gstrtpmux.c
@@ -36,9 +36,10 @@
#include <gst/gst.h>
#include <gst/rtp/gstrtpbuffer.h>
-#include <gstrtpmux.h>
#include <string.h>
+#include "gstrtpmux.h"
+
GST_DEBUG_CATEGORY_STATIC (gst_rtp_mux_debug);
#define GST_CAT_DEFAULT gst_rtp_mux_debug
More information about the Gstreamer-commits
mailing list