summaryrefslogtreecommitdiffstats
path: root/gst/videofilter/gstvideotemplate.c
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2004-01-07 08:56:45 +0000
committerDavid Schleef <ds@schleef.org>2004-01-07 08:56:45 +0000
commit08797649fbe07e1bc7a450f3190633a20f3efc84 (patch)
treed5308dc1a2fdf65973d4c0288f3b827629803d1f /gst/videofilter/gstvideotemplate.c
parent0bd268563c20c55fc79528ce7a84e859968998f5 (diff)
Merge gstvideotemplate.h into gstvideotemplate.c
Original commit message from CVS: Merge gstvideotemplate.h into gstvideotemplate.c
Diffstat (limited to 'gst/videofilter/gstvideotemplate.c')
-rw-r--r--gst/videofilter/gstvideotemplate.c28
1 files changed, 26 insertions, 2 deletions
diff --git a/gst/videofilter/gstvideotemplate.c b/gst/videofilter/gstvideotemplate.c
index 67c72acb..f633a5fa 100644
--- a/gst/videofilter/gstvideotemplate.c
+++ b/gst/videofilter/gstvideotemplate.c
@@ -27,10 +27,34 @@
#include "config.h"
#endif
-/*#define DEBUG_ENABLED */
-#include <gstvideotemplate.h>
+#include <gst/gst.h>
+#include <gstvideofilter.h>
#include <string.h>
+#define GST_TYPE_VIDEOTEMPLATE \
+ (gst_videotemplate_get_type())
+#define GST_VIDEOTEMPLATE(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VIDEOTEMPLATE,GstVideotemplate))
+#define GST_VIDEOTEMPLATE_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VIDEOTEMPLATE,GstVideotemplateClass))
+#define GST_IS_VIDEOTEMPLATE(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VIDEOTEMPLATE))
+#define GST_IS_VIDEOTEMPLATE_CLASS(obj) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VIDEOTEMPLATE))
+
+typedef struct _GstVideotemplate GstVideotemplate;
+typedef struct _GstVideotemplateClass GstVideotemplateClass;
+
+struct _GstVideotemplate {
+ GstVideofilter videofilter;
+
+};
+
+struct _GstVideotemplateClass {
+ GstVideofilterClass parent_class;
+};
+
+
/* GstVideotemplate signals and args */
enum {
/* FILL ME */