Add new GESTrackSource
authorEdward Hervey <edward.hervey@collabora.co.uk>
Thu, 6 Aug 2009 16:54:01 +0000 (18:54 +0200)
committerEdward Hervey <edward.hervey@collabora.co.uk>
Thu, 6 Aug 2009 16:54:01 +0000 (18:54 +0200)
ges/Makefile.am
ges/ges-track-source.c [new file with mode: 0644]
ges/ges-track-source.h [new file with mode: 0644]
ges/ges-types.h
ges/ges.h

index ba7e7d9..841b7c2 100644 (file)
@@ -17,7 +17,8 @@ libges_@GST_MAJORMINOR@_la_SOURCES =          \
        ges-timeline-source.c                   \
        ges-timeline-transition.c               \
        ges-track.c                             \
-       ges-track-object.c
+       ges-track-object.c                      \
+       ges-track-source.c
 
 libges_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/ges/
 libges_@GST_MAJORMINOR@include_HEADERS =       \
@@ -31,7 +32,8 @@ libges_@GST_MAJORMINOR@include_HEADERS =      \
        ges-timeline-source.h                   \
        ges-timeline-transition.h               \
        ges-track.h                             \
-       ges-track-object.h
+       ges-track-object.h                      \
+       ges-track-source.h
 
 
 libges_@GST_MAJORMINOR@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
diff --git a/ges/ges-track-source.c b/ges/ges-track-source.c
new file mode 100644 (file)
index 0000000..791fd8c
--- /dev/null
@@ -0,0 +1,88 @@
+/* GStreamer Editing Services
+ * Copyright (C) 2009 Edward Hervey <bilboed@bilboed.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#include "ges-track-object.h"
+#include "ges-track-source.h"
+
+G_DEFINE_TYPE (GESTrackSource, ges_track_source, GES_TYPE_TRACK_OBJECT);
+
+static void
+ges_track_source_get_property (GObject * object, guint property_id,
+    GValue * value, GParamSpec * pspec)
+{
+  switch (property_id) {
+    default:
+      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+  }
+}
+
+static void
+ges_track_source_set_property (GObject * object, guint property_id,
+    const GValue * value, GParamSpec * pspec)
+{
+  switch (property_id) {
+    default:
+      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+  }
+}
+
+static void
+ges_track_source_dispose (GObject * object)
+{
+  G_OBJECT_CLASS (ges_track_source_parent_class)->dispose (object);
+}
+
+static void
+ges_track_source_finalize (GObject * object)
+{
+  G_OBJECT_CLASS (ges_track_source_parent_class)->finalize (object);
+}
+
+static gboolean
+ges_track_source_create_gnl_object (GESTrackObject * object)
+{
+  object->gnlobject = gst_element_factory_make ("gnlsource", NULL);
+
+  return TRUE;
+}
+
+static void
+ges_track_source_class_init (GESTrackSourceClass * klass)
+{
+  GObjectClass *object_class = G_OBJECT_CLASS (klass);
+  GESTrackObjectClass *track_class = GES_TRACK_OBJECT_CLASS (klass);
+
+  object_class->get_property = ges_track_source_get_property;
+  object_class->set_property = ges_track_source_set_property;
+  object_class->dispose = ges_track_source_dispose;
+  object_class->finalize = ges_track_source_finalize;
+
+  track_class->create_gnl_object = ges_track_source_create_gnl_object;
+}
+
+static void
+ges_track_source_init (GESTrackSource * self)
+{
+}
+
+GESTrackSource *
+ges_track_source_new (void)
+{
+  return g_object_new (GES_TYPE_TRACK_SOURCE, NULL);
+}
diff --git a/ges/ges-track-source.h b/ges/ges-track-source.h
new file mode 100644 (file)
index 0000000..147c298
--- /dev/null
@@ -0,0 +1,60 @@
+/* GStreamer Editing Services
+ * Copyright (C) 2009 Edward Hervey <bilboed@bilboed.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef _GES_TRACK_SOURCE
+#define _GES_TRACK_SOURCE
+
+#include <glib-object.h>
+#include <ges/ges-types.h>
+
+G_BEGIN_DECLS
+
+#define GES_TYPE_TRACK_SOURCE ges_track_source_get_type()
+
+#define GES_TRACK_SOURCE(obj) \
+  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GES_TYPE_TRACK_SOURCE, GESTrackSource))
+
+#define GES_TRACK_SOURCE_CLASS(klass) \
+  (G_TYPE_CHECK_CLASS_CAST ((klass), GES_TYPE_TRACK_SOURCE, GESTrackSourceClass))
+
+#define GES_IS_TRACK_SOURCE(obj) \
+  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GES_TYPE_TRACK_SOURCE))
+
+#define GES_IS_TRACK_SOURCE_CLASS(klass) \
+  (G_TYPE_CHECK_CLASS_TYPE ((klass), GES_TYPE_TRACK_SOURCE))
+
+#define GES_TRACK_SOURCE_GET_CLASS(obj) \
+  (G_TYPE_INSTANCE_GET_CLASS ((obj), GES_TYPE_TRACK_SOURCE, GESTrackSourceClass))
+
+struct _GESTrackSource {
+  GESTrackObject parent;
+};
+
+struct _GESTrackSourceClass {
+  GESTrackObjectClass parent_class;
+};
+
+GType ges_track_source_get_type (void);
+
+GESTrackSource* ges_track_source_new (void);
+
+G_END_DECLS
+
+#endif /* _GES_TRACK_SOURCE */
+
index e019a3c..a87463d 100644 (file)
@@ -47,5 +47,8 @@ typedef struct _GESTrackClass GESTrackClass;
 typedef struct _GESTrackObject GESTrackObject;
 typedef struct _GESTrackObjectClass GESTrackObjectClass;
 
+typedef struct _GESTrackSource GESTrackSource;
+typedef struct _GESTrackSourceClass GESTrackSourceClass;
+
 
 #endif /* __GES_TYPES_H__ */
index 066398e..af54f43 100644 (file)
--- a/ges/ges.h
+++ b/ges/ges.h
@@ -34,6 +34,7 @@
 #include <ges/ges-timeline-transition.h>
 #include <ges/ges-track.h>
 #include <ges/ges-track-object.h>
+#include <ges/ges-track-source.h>
 
 GST_DEBUG_CATEGORY_EXTERN (ges_debug);
 #define GST_CAT_DEFAULT ges_debug