2000-12-29 05:38:06 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* gstidentity.c:
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* 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 <gstidentity.h>
|
|
|
|
|
|
|
|
|
|
|
|
GstElementDetails gst_identity_details = {
|
|
|
|
"Identity",
|
|
|
|
"Filter",
|
|
|
|
"Pass data without modification",
|
|
|
|
VERSION,
|
|
|
|
"Erik Walthinsen <omega@cse.ogi.edu>",
|
|
|
|
"(C) 1999",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Identity signals and args */
|
|
|
|
enum {
|
2001-07-11 15:51:40 +00:00
|
|
|
SIGNAL_HANDOFF,
|
2000-01-30 09:03:00 +00:00
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ARG_0,
|
2000-12-22 16:14:33 +00:00
|
|
|
ARG_LOOP_BASED,
|
2001-01-07 03:42:27 +00:00
|
|
|
ARG_SLEEP_TIME,
|
2001-07-11 19:22:20 +00:00
|
|
|
ARG_DUPLICATE,
|
2001-04-20 19:21:51 +00:00
|
|
|
ARG_SILENT,
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
static void gst_identity_class_init (GstIdentityClass *klass);
|
|
|
|
static void gst_identity_init (GstIdentity *identity);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
static void gst_identity_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
|
|
|
|
static void gst_identity_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
|
2000-11-25 14:18:47 +00:00
|
|
|
|
|
|
|
static void gst_identity_chain (GstPad *pad, GstBuffer *buf);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-12-29 02:28:04 +00:00
|
|
|
static GstElementClass *parent_class = NULL;
|
2001-07-11 15:51:40 +00:00
|
|
|
static guint gst_identity_signals[LAST_SIGNAL] = { 0 };
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
GType
|
2000-11-25 14:18:47 +00:00
|
|
|
gst_identity_get_type (void)
|
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
static GType identity_type = 0;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
if (!identity_type) {
|
2001-06-25 01:20:11 +00:00
|
|
|
static const GTypeInfo identity_info = {
|
|
|
|
sizeof(GstIdentityClass), NULL,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc)gst_identity_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2000-01-30 09:03:00 +00:00
|
|
|
sizeof(GstIdentity),
|
2001-06-25 01:20:11 +00:00
|
|
|
0,
|
|
|
|
(GInstanceInitFunc)gst_identity_init,
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
2001-06-25 01:20:11 +00:00
|
|
|
identity_type = g_type_register_static (GST_TYPE_ELEMENT, "GstIdentity", &identity_info, 0);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
return identity_type;
|
|
|
|
}
|
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
static void
|
|
|
|
gst_identity_class_init (GstIdentityClass *klass)
|
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
GObjectClass *gobject_class;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
gobject_class = (GObjectClass*)klass;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-07-11 19:22:20 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LOOP_BASED,
|
|
|
|
g_param_spec_boolean ("loop_based", "loop_based", "loop_based",
|
|
|
|
TRUE, G_PARAM_READWRITE));
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SLEEP_TIME,
|
|
|
|
g_param_spec_uint ("sleep_time", "sleep_time", "sleep_time",
|
|
|
|
0, G_MAXUINT, 0, G_PARAM_READWRITE));
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DUPLICATE,
|
|
|
|
g_param_spec_uint ("duplicate", "duplicate", "duplicate",
|
|
|
|
0, G_MAXUINT, 1, G_PARAM_READWRITE));
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SILENT,
|
|
|
|
g_param_spec_boolean ("silent", "silent", "silent",
|
|
|
|
TRUE,G_PARAM_READWRITE));
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-07-11 15:51:40 +00:00
|
|
|
gst_identity_signals[SIGNAL_HANDOFF] =
|
|
|
|
g_signal_newc ("handoff", G_TYPE_FROM_CLASS(klass), G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GstIdentityClass, handoff), NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1,
|
|
|
|
G_TYPE_POINTER);
|
|
|
|
|
|
|
|
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_identity_set_property);
|
|
|
|
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_identity_get_property);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-04-20 19:21:51 +00:00
|
|
|
static GstBufferPool*
|
|
|
|
gst_identity_get_bufferpool (GstPad *pad)
|
|
|
|
{
|
|
|
|
GstIdentity *identity;
|
|
|
|
|
|
|
|
identity = GST_IDENTITY (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
return gst_pad_get_bufferpool (identity->srcpad);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstPadNegotiateReturn
|
|
|
|
gst_identity_negotiate_src (GstPad *pad, GstCaps **caps, gpointer *data)
|
|
|
|
{
|
|
|
|
GstIdentity *identity;
|
|
|
|
|
|
|
|
identity = GST_IDENTITY (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
return gst_pad_negotiate_proxy (pad, identity->sinkpad, caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstPadNegotiateReturn
|
|
|
|
gst_identity_negotiate_sink (GstPad *pad, GstCaps **caps, gpointer *data)
|
|
|
|
{
|
|
|
|
GstIdentity *identity;
|
|
|
|
|
|
|
|
identity = GST_IDENTITY (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
return gst_pad_negotiate_proxy (pad, identity->srcpad, caps);
|
|
|
|
}
|
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
static void
|
|
|
|
gst_identity_init (GstIdentity *identity)
|
|
|
|
{
|
|
|
|
identity->sinkpad = gst_pad_new ("sink", GST_PAD_SINK);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (identity), identity->sinkpad);
|
2001-07-11 15:51:40 +00:00
|
|
|
gst_pad_set_chain_function (identity->sinkpad, GST_DEBUG_FUNCPTR (gst_identity_chain));
|
2001-04-20 19:21:51 +00:00
|
|
|
gst_pad_set_bufferpool_function (identity->sinkpad, gst_identity_get_bufferpool);
|
|
|
|
gst_pad_set_negotiate_function (identity->sinkpad, gst_identity_negotiate_sink);
|
2000-11-25 14:18:47 +00:00
|
|
|
|
|
|
|
identity->srcpad = gst_pad_new ("src", GST_PAD_SRC);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (identity), identity->srcpad);
|
2001-04-20 19:21:51 +00:00
|
|
|
gst_pad_set_negotiate_function (identity->srcpad, gst_identity_negotiate_src);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-12-22 16:14:33 +00:00
|
|
|
identity->loop_based = FALSE;
|
2001-04-20 19:21:51 +00:00
|
|
|
identity->sleep_time = 0;
|
2001-07-11 19:22:20 +00:00
|
|
|
identity->duplicate = 1;
|
2001-04-20 19:21:51 +00:00
|
|
|
identity->silent = FALSE;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
static void
|
|
|
|
gst_identity_chain (GstPad *pad, GstBuffer *buf)
|
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
GstIdentity *identity;
|
2001-07-11 19:22:20 +00:00
|
|
|
guint i;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
|
|
|
g_return_if_fail (buf != NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
identity = GST_IDENTITY (gst_pad_get_parent (pad));
|
2001-04-20 19:21:51 +00:00
|
|
|
|
2001-07-11 19:22:20 +00:00
|
|
|
for (i=identity->duplicate; i; i--) {
|
|
|
|
if (!identity->silent)
|
|
|
|
g_print("identity: chain ******* (%s:%s)i (%d bytes, %llu) \n",
|
2001-07-11 14:56:16 +00:00
|
|
|
GST_DEBUG_PAD_NAME (identity->sinkpad), GST_BUFFER_SIZE (buf), GST_BUFFER_TIMESTAMP (buf));
|
2000-11-25 14:18:47 +00:00
|
|
|
|
2001-07-11 19:22:20 +00:00
|
|
|
g_signal_emit (G_OBJECT (identity), gst_identity_signals[SIGNAL_HANDOFF], 0,
|
2001-07-11 15:51:40 +00:00
|
|
|
buf);
|
|
|
|
|
2001-07-11 19:22:20 +00:00
|
|
|
if (i>1)
|
|
|
|
gst_buffer_ref (buf);
|
|
|
|
|
|
|
|
gst_pad_push (identity->srcpad, buf);
|
2001-01-07 03:42:27 +00:00
|
|
|
|
2001-07-11 19:22:20 +00:00
|
|
|
if (identity->sleep_time)
|
|
|
|
usleep (identity->sleep_time);
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-12-22 16:14:33 +00:00
|
|
|
static void
|
|
|
|
gst_identity_loop (GstElement *element)
|
|
|
|
{
|
|
|
|
GstIdentity *identity;
|
|
|
|
GstBuffer *buf;
|
2001-07-11 19:22:20 +00:00
|
|
|
guint i;
|
2000-12-22 16:14:33 +00:00
|
|
|
|
|
|
|
g_return_if_fail (element != NULL);
|
|
|
|
g_return_if_fail (GST_IS_IDENTITY (element));
|
|
|
|
|
|
|
|
identity = GST_IDENTITY (element);
|
|
|
|
|
2000-12-23 03:17:52 +00:00
|
|
|
do {
|
|
|
|
buf = gst_pad_pull (identity->sinkpad);
|
2001-07-11 19:22:20 +00:00
|
|
|
|
|
|
|
for (i=identity->duplicate; i; i--) {
|
|
|
|
if (!identity->silent)
|
|
|
|
g_print("identity: loop ******* (%s:%s)i (%d bytes, %llu) \n",
|
2001-07-11 14:56:16 +00:00
|
|
|
GST_DEBUG_PAD_NAME (identity->sinkpad), GST_BUFFER_SIZE (buf), GST_BUFFER_TIMESTAMP (buf));
|
|
|
|
|
2001-07-11 19:22:20 +00:00
|
|
|
g_signal_emit (G_OBJECT (identity), gst_identity_signals[SIGNAL_HANDOFF], 0,
|
2001-07-11 15:51:40 +00:00
|
|
|
buf);
|
2000-12-22 16:14:33 +00:00
|
|
|
|
2001-07-11 19:22:20 +00:00
|
|
|
if (i>1)
|
|
|
|
gst_buffer_ref (buf);
|
2000-12-23 03:17:52 +00:00
|
|
|
|
2001-07-11 19:22:20 +00:00
|
|
|
gst_pad_push (identity->srcpad, buf);
|
|
|
|
|
|
|
|
if (identity->sleep_time)
|
|
|
|
usleep (identity->sleep_time);
|
|
|
|
}
|
2001-01-07 03:42:27 +00:00
|
|
|
|
2000-12-23 03:17:52 +00:00
|
|
|
} while (!GST_ELEMENT_IS_COTHREAD_STOPPING(element));
|
2000-12-22 16:14:33 +00:00
|
|
|
}
|
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
static void
|
2001-06-25 01:20:11 +00:00
|
|
|
gst_identity_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
GstIdentity *identity;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
2000-11-25 14:18:47 +00:00
|
|
|
g_return_if_fail (GST_IS_IDENTITY (object));
|
|
|
|
|
|
|
|
identity = GST_IDENTITY (object);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2000-12-22 16:14:33 +00:00
|
|
|
case ARG_LOOP_BASED:
|
2001-06-25 01:20:11 +00:00
|
|
|
identity->loop_based = g_value_get_boolean (value);
|
2000-12-22 16:14:33 +00:00
|
|
|
if (identity->loop_based) {
|
|
|
|
gst_element_set_loop_function (GST_ELEMENT (identity), gst_identity_loop);
|
|
|
|
gst_pad_set_chain_function (identity->sinkpad, NULL);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gst_pad_set_chain_function (identity->sinkpad, gst_identity_chain);
|
|
|
|
gst_element_set_loop_function (GST_ELEMENT (identity), NULL);
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
break;
|
2001-01-07 03:42:27 +00:00
|
|
|
case ARG_SLEEP_TIME:
|
2001-06-25 01:20:11 +00:00
|
|
|
identity->sleep_time = g_value_get_uint (value);
|
2001-01-07 03:42:27 +00:00
|
|
|
break;
|
2001-04-20 19:21:51 +00:00
|
|
|
case ARG_SILENT:
|
2001-06-25 01:20:11 +00:00
|
|
|
identity->silent = g_value_get_boolean (value);
|
2001-04-20 19:21:51 +00:00
|
|
|
break;
|
2001-07-11 19:22:20 +00:00
|
|
|
case ARG_DUPLICATE:
|
|
|
|
identity->duplicate = g_value_get_uint (value);
|
|
|
|
break;
|
2000-01-30 09:03:00 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
static void gst_identity_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) {
|
2000-01-30 09:03:00 +00:00
|
|
|
GstIdentity *identity;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
2000-11-25 14:18:47 +00:00
|
|
|
g_return_if_fail (GST_IS_IDENTITY (object));
|
|
|
|
|
|
|
|
identity = GST_IDENTITY (object);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2000-12-22 16:14:33 +00:00
|
|
|
case ARG_LOOP_BASED:
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_set_boolean (value, identity->loop_based);
|
2000-01-30 09:03:00 +00:00
|
|
|
break;
|
2001-01-07 03:42:27 +00:00
|
|
|
case ARG_SLEEP_TIME:
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_set_uint (value, identity->sleep_time);
|
2001-01-07 03:42:27 +00:00
|
|
|
break;
|
2001-07-11 19:22:20 +00:00
|
|
|
case ARG_DUPLICATE:
|
|
|
|
g_value_set_uint (value, identity->duplicate);
|
|
|
|
break;
|
2001-04-20 19:21:51 +00:00
|
|
|
case ARG_SILENT:
|
2001-06-25 01:20:11 +00:00
|
|
|
g_value_set_boolean (value, identity->silent);
|
2001-04-20 19:21:51 +00:00
|
|
|
break;
|
2000-01-30 09:03:00 +00:00
|
|
|
default:
|
2001-06-25 01:20:11 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2000-01-30 09:03:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|