summaryrefslogtreecommitdiffstats
path: root/gst/freeze
diff options
context:
space:
mode:
authorGergely Nagy <algernon@bonehunter.rulez.org>2005-04-14 11:34:48 +0000
committerGergely Nagy <algernon@bonehunter.rulez.org>2005-04-14 11:34:48 +0000
commitdaf1e62d02246e220b0d3fc8cfad4f66aed511c5 (patch)
treec9577c2fd9539b77f5ca32c513268408b5e29ff3 /gst/freeze
parent0f6b75851882e32dd77ec7999dfbe92f7c9f629e (diff)
downloadgst-plugins-bad-daf1e62d02246e220b0d3fc8cfad4f66aed511c5.tar.gz
gst-plugins-bad-daf1e62d02246e220b0d3fc8cfad4f66aed511c5.tar.bz2
gst-plugins-bad-daf1e62d02246e220b0d3fc8cfad4f66aed511c5.zip
New plugin: freeze, a stream freezer. (#165726)
Original commit message from CVS: * configure.ac: * gst/freeze/Makefile.am: * gst/freeze/gstfreeze.c: * gst/freeze/gstfreeze.h: New plugin: freeze, a stream freezer. (#165726)
Diffstat (limited to 'gst/freeze')
-rw-r--r--gst/freeze/Makefile.am10
-rw-r--r--gst/freeze/gstfreeze.c291
-rw-r--r--gst/freeze/gstfreeze.h66
3 files changed, 367 insertions, 0 deletions
diff --git a/gst/freeze/Makefile.am b/gst/freeze/Makefile.am
new file mode 100644
index 00000000..5f091047
--- /dev/null
+++ b/gst/freeze/Makefile.am
@@ -0,0 +1,10 @@
+plugin_LTLIBRARIES = libgstfreeze.la
+
+libgstfreeze_la_SOURCES = gstfreeze.c
+libgstfreeze_la_CFLAGS = $(GST_CFLAGS)
+libgstfreeze_la_LIBADD = ${GST_LIBS}
+libgstfreeze_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
+
+noinst_HEADERS = gstfreeze.h
+
+EXTRA_DIST = FAQ
diff --git a/gst/freeze/gstfreeze.c b/gst/freeze/gstfreeze.c
new file mode 100644
index 00000000..384c7720
--- /dev/null
+++ b/gst/freeze/gstfreeze.c
@@ -0,0 +1,291 @@
+/* gst-freeze -- Source freezer
+ * Copyright (C) 2005 Gergely Nagy <gergely.nagy@neteyes.hu>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1, as published by the Free Software Foundation.
+ *
+ * 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser 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
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <gst/gst.h>
+
+#include "gstfreeze.h"
+
+GST_DEBUG_CATEGORY (freeze_debug);
+#define GST_CAT_DEFAULT freeze_debug
+
+static GstElementDetails freeze_details = GST_ELEMENT_DETAILS ("Stream freezer",
+ "Generic",
+ "Makes a stream from buffers of data",
+ "Gergely Nagy <gergely.nagy@neteyes.hu>");
+
+static GstStaticPadTemplate gst_freeze_src_template =
+GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
+ GST_STATIC_CAPS_ANY);
+
+static GstStaticPadTemplate gst_freeze_sink_template =
+GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
+ GST_STATIC_CAPS_ANY);
+
+enum
+{
+ ARG_0,
+ ARG_MAX_BUFFERS,
+};
+
+#define parent_class \
+ GST_ELEMENT_CLASS (g_type_class_peek_parent \
+ (g_type_class_peek (GST_TYPE_FREEZE)))
+
+static GstElementStateReturn
+gst_freeze_change_state (GstElement * element)
+{
+ GstFreeze *freeze = GST_FREEZE (element);
+
+ switch (GST_STATE_TRANSITION (element)) {
+ case GST_STATE_READY_TO_PAUSED:
+ case GST_STATE_PLAYING_TO_PAUSED:
+ case GST_STATE_READY_TO_NULL:
+ break;
+ case GST_STATE_PAUSED_TO_READY:
+ case GST_STATE_NULL_TO_READY:
+ case GST_STATE_PAUSED_TO_PLAYING:
+ freeze->timestamp_offset = freeze->running_time = 0;
+ break;
+ }
+
+ return parent_class->change_state (element);
+}
+
+static void
+gst_freeze_set_property (GObject * object, guint prop_id,
+ const GValue * value, GParamSpec * pspec)
+{
+ GstFreeze *freeze = GST_FREEZE (object);
+
+ switch (prop_id) {
+ case ARG_MAX_BUFFERS:
+ freeze->max_buffers = g_value_get_uint (value);
+ break;
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+}
+
+static void
+gst_freeze_get_property (GObject * object, guint prop_id,
+ GValue * value, GParamSpec * pspec)
+{
+ GstFreeze *freeze = GST_FREEZE (object);
+
+ switch (prop_id) {
+ case ARG_MAX_BUFFERS:
+ g_value_set_uint (value, freeze->max_buffers);
+ break;
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+}
+
+static void
+gst_freeze_dispose (GObject * object)
+{
+ guint i;
+ GstFreeze *freeze = GST_FREEZE (object);
+
+ if (freeze->buffers != NULL) {
+ for (i = 0; i < g_list_length (freeze->buffers); i++)
+ gst_buffer_unref (GST_BUFFER (g_list_nth_data (freeze->buffers, i)));
+
+ g_list_free (freeze->buffers);
+ freeze->buffers = NULL;
+ freeze->current = NULL;
+ }
+
+ G_OBJECT_CLASS (parent_class)->dispose (object);
+}
+
+static void
+gst_freeze_base_init (gpointer klass)
+{
+ GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
+
+ gst_element_class_set_details (element_class, &freeze_details);
+
+ gst_element_class_add_pad_template (element_class,
+ gst_static_pad_template_get (&gst_freeze_sink_template));
+ gst_element_class_add_pad_template (element_class,
+ gst_static_pad_template_get (&gst_freeze_src_template));
+}
+
+static void
+gst_freeze_class_init (GstFreezeClass * klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+ GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
+
+ element_class->change_state = gst_freeze_change_state;
+
+ g_object_class_install_property
+ (object_class, ARG_MAX_BUFFERS,
+ g_param_spec_uint ("max-buffers", "max-buffers",
+ "Maximum number of buffers", 0, G_MAXUINT, 1, G_PARAM_READWRITE));
+
+ object_class->set_property = gst_freeze_set_property;
+ object_class->get_property = gst_freeze_get_property;
+ object_class->dispose = gst_freeze_dispose;
+}
+
+static void
+gst_freeze_loop (GstElement * element)
+{
+ GstFreeze *freeze;
+
+ freeze = GST_FREEZE (element);
+
+ if (!GST_PAD_IS_USABLE (freeze->sinkpad)) {
+ if (freeze->buffers == NULL) {
+ GST_DEBUG_OBJECT (freeze, "sink pad is not (yet?) usable");
+ return;
+ }
+ } else {
+ GstData *data;
+
+ data = gst_pad_pull (GST_PAD (freeze->sinkpad));
+ if (GST_IS_EVENT (data)) {
+ GstEvent *event = GST_EVENT (data);
+
+ switch (GST_EVENT_TYPE (event)) {
+ case GST_EVENT_EOS:
+ GST_DEBUG_OBJECT (freeze, "EOS on sink pad %s",
+ gst_pad_get_name (GST_PAD (freeze->sinkpad)));
+ gst_event_unref (event);
+ break;
+ default:
+ gst_pad_event_default (GST_PAD (freeze->sinkpad), GST_EVENT (data));
+ }
+ }
+
+ if (GST_IS_BUFFER (data)) {
+ if (g_list_length (freeze->buffers) < freeze->max_buffers ||
+ freeze->max_buffers == 0) {
+ freeze->buffers = g_list_append (freeze->buffers, GST_BUFFER (data));
+ GST_DEBUG_OBJECT (freeze, "accepted buffer %u",
+ g_list_length (freeze->buffers) - 1);
+ } else {
+ gst_buffer_unref (GST_BUFFER (data));
+ }
+ }
+ }
+
+ if (freeze->buffers == NULL) {
+ GST_DEBUG_OBJECT (freeze, "no buffers yet");
+ return;
+ }
+
+ if (freeze->current != NULL) {
+ GST_DEBUG_OBJECT (freeze, "switching to next buffer");
+ freeze->current = freeze->current->next;
+ }
+
+ if (freeze->current == NULL) {
+ if (freeze->max_buffers > 1)
+ GST_DEBUG_OBJECT (freeze, "restarting the loop");
+ freeze->current = freeze->buffers;
+ }
+
+ GST_BUFFER_TIMESTAMP (freeze->current->data) = freeze->timestamp_offset +
+ freeze->running_time;
+ freeze->running_time += GST_BUFFER_DURATION (freeze->current->data);
+
+ gst_buffer_ref (GST_BUFFER (freeze->current->data));
+ gst_pad_push (freeze->srcpad, GST_DATA (freeze->current->data));
+}
+
+static void
+gst_freeze_init (GstFreeze * freeze)
+{
+ GST_FLAG_SET (freeze, GST_ELEMENT_EVENT_AWARE);
+
+ freeze->sinkpad = gst_pad_new_from_template (gst_static_pad_template_get
+ (&gst_freeze_sink_template), "sink");
+ gst_element_add_pad (GST_ELEMENT (freeze), freeze->sinkpad);
+ gst_element_set_loop_function (GST_ELEMENT (freeze), gst_freeze_loop);
+ gst_pad_set_getcaps_function (freeze->sinkpad, gst_pad_proxy_getcaps);
+ gst_pad_set_link_function (freeze->sinkpad, gst_pad_proxy_pad_link);
+
+ freeze->srcpad = gst_pad_new_from_template (gst_static_pad_template_get
+ (&gst_freeze_src_template), "src");
+ gst_element_add_pad (GST_ELEMENT (freeze), freeze->srcpad);
+ gst_pad_set_getcaps_function (freeze->srcpad, gst_pad_proxy_getcaps);
+ gst_pad_set_link_function (freeze->srcpad, gst_pad_proxy_pad_link);
+
+ freeze->timestamp_offset = 0;
+ freeze->running_time = 0;
+ freeze->buffers = NULL;
+ freeze->current = NULL;
+ freeze->max_buffers = 1;
+}
+
+GType
+gst_freeze_get_type (void)
+{
+ static GType freeze_type = 0;
+
+ if (!freeze_type) {
+ static const GTypeInfo freeze_info = {
+ sizeof (GstFreezeClass),
+ gst_freeze_base_init,
+ NULL,
+ (GClassInitFunc) gst_freeze_class_init,
+ NULL,
+ NULL,
+ sizeof (GstFreeze),
+ 0,
+ (GInstanceInitFunc) gst_freeze_init,
+ };
+
+ freeze_type = g_type_register_static
+ (GST_TYPE_ELEMENT, "GstFreeze", &freeze_info, 0);
+ }
+
+ return freeze_type;
+}
+
+static gboolean
+plugin_init (GstPlugin * plugin)
+{
+ GST_DEBUG_CATEGORY_INIT (freeze_debug, "freeze", 0, "Stream freezer");
+
+ return gst_element_register (plugin, "freeze", GST_RANK_NONE,
+ GST_TYPE_FREEZE);
+}
+
+GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
+ GST_VERSION_MINOR,
+ "freeze",
+ "Stream freezer",
+ plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN);
+
+/*
+ * Local variables:
+ * mode: c
+ * file-style: k&r
+ * c-basic-offset: 2
+ * arch-tag: fb0ee62b-cf74-46c0-8e62-93b58bacc0ed
+ * End:
+ */
diff --git a/gst/freeze/gstfreeze.h b/gst/freeze/gstfreeze.h
new file mode 100644
index 00000000..95ff9c48
--- /dev/null
+++ b/gst/freeze/gstfreeze.h
@@ -0,0 +1,66 @@
+/* gst-freeze -- Source freezer
+ * Copyright (C) 2005 Gergely Nagy <gergely.nagy@neteyes.hu>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1, as published by the Free Software Foundation.
+ *
+ * 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser 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 __GST_FREEZE_H__
+#define __GST_FREEZE_H__ 1
+
+#include <gst/gst.h>
+
+G_BEGIN_DECLS
+#define GST_TYPE_FREEZE (gst_freeze_get_type ())
+#define GST_FREEZE(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST (obj, GST_TYPE_FREEZE, GstFreeze))
+#define GST_FREEZE_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST (klass, GST_TYPE_FREEZE, GstFreeze))
+#define GST_IS_FREEZE(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE (obj, GST_TYPE_FREEZE))
+#define GST_IS_FREEZE_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE (klass, GST_TYPE_FREEZE))
+typedef struct _GstFreeze GstFreeze;
+typedef struct _GstFreezeClass GstFreezeClass;
+
+struct _GstFreeze
+{
+ GstElement element;
+
+ GstPad *sinkpad, *srcpad;
+
+ GList *buffers;
+ GList *current;
+ guint max_buffers;
+
+ gint64 timestamp_offset;
+ GstClockTime running_time;
+};
+
+struct _GstFreezeClass
+{
+ GstElementClass parent_class;
+};
+
+GType gst_freeze_get_type (void);
+
+G_END_DECLS
+#endif
+/*
+ * Local variables:
+ * mode: c
+ * file-style: k&r
+ * c-basic-offset: 2
+ * arch-tag: 559a2214-86a1-4c2f-b497-bdcc5f82acf1
+ * End:
+ */