summaryrefslogtreecommitdiff
path: root/tools/gstpushsrc.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gstpushsrc.c')
-rw-r--r--tools/gstpushsrc.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/gstpushsrc.c b/tools/gstpushsrc.c
new file mode 100644
index 000000000..5db8e7630
--- /dev/null
+++ b/tools/gstpushsrc.c
@@ -0,0 +1,22 @@
+% ClassName
+GstPushSrc
+% TYPE_CLASS_NAME
+GST_TYPE_PUSH_SRC
+% pkg-config
+gstreamer-base-0.10
+% includes
+#include <gst/base/gstpushsrc.h>
+% prototypes
+static GstFlowReturn gst_replace_create (GstPushSrc * src, GstBuffer ** buf);
+% declare-class
+ GstPushSrc *pushsrc_class = GST_PUSHSRC (klass);
+% set-methods
+ pushsrc_class-> = GST_DEBUG_FUNCPTR (gst_replace_);
+% methods
+
+static GstFlowReturn
+gst_replace_create (GstPushSrc * src, GstBuffer ** buf)
+{
+
+}
+% end