2000-12-28 22:12:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* gstpad.c: Pads for connecting elements together
|
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.
|
|
|
|
*/
|
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* #define GST_DEBUG_ENABLED */
|
2000-12-28 21:12:40 +00:00
|
|
|
#include "gst_private.h"
|
|
|
|
|
2000-12-15 01:57:34 +00:00
|
|
|
#include "gstpad.h"
|
2001-09-17 23:44:58 +00:00
|
|
|
#include "gstutils.h"
|
2000-12-15 01:57:34 +00:00
|
|
|
#include "gstelement.h"
|
|
|
|
#include "gsttype.h"
|
2001-01-29 00:06:02 +00:00
|
|
|
#include "gstbin.h"
|
2001-05-25 21:00:07 +00:00
|
|
|
#include "gstscheduler.h"
|
2001-12-18 19:03:07 +00:00
|
|
|
#include "gstevent.h"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
enum {
|
|
|
|
TEMPL_PAD_CREATED,
|
|
|
|
/* FILL ME */
|
|
|
|
TEMPL_LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static GstObject *padtemplate_parent_class = NULL;
|
|
|
|
static guint gst_pad_template_signals[TEMPL_LAST_SIGNAL] = { 0 };
|
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
GType _gst_pad_type = 0;
|
2000-12-28 21:12:40 +00:00
|
|
|
|
2001-01-19 02:23:35 +00:00
|
|
|
/***** Start with the base GstPad class *****/
|
2001-01-29 00:06:02 +00:00
|
|
|
static void gst_pad_class_init (GstPadClass *klass);
|
|
|
|
static void gst_pad_init (GstPad *pad);
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
static gboolean gst_pad_try_reconnect_filtered_func (GstRealPad *srcpad, GstRealPad *sinkpad,
|
|
|
|
GstCaps *caps, gboolean clear);
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2001-06-25 06:45:56 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2001-01-29 00:06:02 +00:00
|
|
|
static xmlNodePtr gst_pad_save_thyself (GstObject *object, xmlNodePtr parent);
|
2001-06-24 21:18:28 +00:00
|
|
|
#endif
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2000-12-28 00:18:26 +00:00
|
|
|
static GstObject *pad_parent_class = NULL;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
GType
|
2001-10-17 10:21:27 +00:00
|
|
|
gst_pad_get_type(void)
|
|
|
|
{
|
|
|
|
if (!_gst_pad_type) {
|
2001-06-25 01:20:11 +00:00
|
|
|
static const GTypeInfo pad_info = {
|
2000-01-30 09:03:00 +00:00
|
|
|
sizeof(GstPadClass),
|
2001-06-25 01:20:11 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc)gst_pad_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof(GstPad),
|
|
|
|
32,
|
|
|
|
(GInstanceInitFunc)gst_pad_init,
|
2001-09-14 22:16:47 +00:00
|
|
|
NULL
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
2001-10-17 10:21:27 +00:00
|
|
|
_gst_pad_type = g_type_register_static(GST_TYPE_OBJECT, "GstPad", &pad_info, 0);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
return _gst_pad_type;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-01-19 02:23:35 +00:00
|
|
|
gst_pad_class_init (GstPadClass *klass)
|
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
pad_parent_class = g_type_class_ref(GST_TYPE_OBJECT);
|
2001-01-19 02:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_pad_init (GstPad *pad)
|
|
|
|
{
|
|
|
|
pad->element_private = NULL;
|
|
|
|
|
|
|
|
pad->padtemplate = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***** Then do the Real Pad *****/
|
2001-01-19 09:37:32 +00:00
|
|
|
/* Pad signals and args */
|
|
|
|
enum {
|
|
|
|
REAL_SET_ACTIVE,
|
|
|
|
REAL_CAPS_CHANGED,
|
2001-05-25 21:00:07 +00:00
|
|
|
REAL_CAPS_NEGO_FAILED,
|
|
|
|
REAL_CONNECTED,
|
|
|
|
REAL_DISCONNECTED,
|
2001-12-25 02:15:46 +00:00
|
|
|
REAL_EVENT_RECEIVED,
|
2001-01-19 09:37:32 +00:00
|
|
|
/* FILL ME */
|
|
|
|
REAL_LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
REAL_ARG_0,
|
|
|
|
REAL_ARG_ACTIVE,
|
|
|
|
/* FILL ME */
|
|
|
|
};
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
static void gst_real_pad_class_init (GstRealPadClass *klass);
|
|
|
|
static void gst_real_pad_init (GstRealPad *pad);
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
static void gst_real_pad_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
|
|
|
|
static void gst_real_pad_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2001-09-28 19:16:02 +00:00
|
|
|
static void gst_real_pad_dispose (GObject *object);
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
static void gst_pad_push_func (GstPad *pad, GstBuffer *buf);
|
2001-01-21 23:20:46 +00:00
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
GType _gst_real_pad_type = 0;
|
2001-01-19 02:23:35 +00:00
|
|
|
|
|
|
|
static GstPad *real_pad_parent_class = NULL;
|
2001-01-19 09:37:32 +00:00
|
|
|
static guint gst_real_pad_signals[REAL_LAST_SIGNAL] = { 0 };
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
GType
|
2001-01-19 02:23:35 +00:00
|
|
|
gst_real_pad_get_type(void) {
|
2001-10-17 10:21:27 +00:00
|
|
|
if (!_gst_real_pad_type) {
|
2001-06-25 01:20:11 +00:00
|
|
|
static const GTypeInfo pad_info = {
|
2001-01-19 02:23:35 +00:00
|
|
|
sizeof(GstRealPadClass),
|
2001-06-25 01:20:11 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc)gst_real_pad_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof(GstRealPad),
|
|
|
|
32,
|
|
|
|
(GInstanceInitFunc)gst_real_pad_init,
|
2001-09-14 22:16:47 +00:00
|
|
|
NULL
|
2001-01-19 02:23:35 +00:00
|
|
|
};
|
2001-10-17 10:21:27 +00:00
|
|
|
_gst_real_pad_type = g_type_register_static(GST_TYPE_PAD, "GstRealPad", &pad_info, 0);
|
2001-01-19 02:23:35 +00:00
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
return _gst_real_pad_type;
|
2001-01-19 02:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-01-21 23:20:46 +00:00
|
|
|
gst_real_pad_class_init (GstRealPadClass *klass)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
GObjectClass *gobject_class;
|
2001-01-29 00:06:02 +00:00
|
|
|
GstObjectClass *gstobject_class;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-12-25 02:15:46 +00:00
|
|
|
gobject_class = (GObjectClass*) klass;
|
|
|
|
gstobject_class = (GstObjectClass*) klass;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-12-25 02:15:46 +00:00
|
|
|
real_pad_parent_class = g_type_class_ref (GST_TYPE_PAD);
|
2001-06-25 01:20:11 +00:00
|
|
|
|
2001-12-25 02:15:46 +00:00
|
|
|
gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_real_pad_dispose);
|
|
|
|
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_real_pad_set_property);
|
|
|
|
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_real_pad_get_property);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-19 09:37:32 +00:00
|
|
|
gst_real_pad_signals[REAL_SET_ACTIVE] =
|
2001-12-25 02:15:46 +00:00
|
|
|
g_signal_new ("set_active", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
2001-06-25 01:20:11 +00:00
|
|
|
G_STRUCT_OFFSET (GstRealPadClass, set_active), NULL, NULL,
|
2001-09-10 19:00:42 +00:00
|
|
|
gst_marshal_VOID__BOOLEAN, G_TYPE_NONE, 1,
|
2001-06-25 01:20:11 +00:00
|
|
|
G_TYPE_BOOLEAN);
|
2001-01-19 09:37:32 +00:00
|
|
|
gst_real_pad_signals[REAL_CAPS_CHANGED] =
|
2001-12-25 02:15:46 +00:00
|
|
|
g_signal_new ("caps_changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
2001-06-25 01:20:11 +00:00
|
|
|
G_STRUCT_OFFSET (GstRealPadClass, caps_changed), NULL, NULL,
|
2001-09-10 19:00:42 +00:00
|
|
|
gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
|
2001-06-25 01:20:11 +00:00
|
|
|
G_TYPE_POINTER);
|
2001-05-25 21:00:07 +00:00
|
|
|
gst_real_pad_signals[REAL_CAPS_NEGO_FAILED] =
|
2001-12-25 02:15:46 +00:00
|
|
|
g_signal_new ("caps_nego_failed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
2001-06-25 01:20:11 +00:00
|
|
|
G_STRUCT_OFFSET (GstRealPadClass, caps_nego_failed), NULL, NULL,
|
2001-09-10 19:00:42 +00:00
|
|
|
gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
|
2001-06-25 01:20:11 +00:00
|
|
|
G_TYPE_POINTER);
|
2001-05-25 21:00:07 +00:00
|
|
|
gst_real_pad_signals[REAL_CONNECTED] =
|
2001-12-25 02:15:46 +00:00
|
|
|
g_signal_new ("connected", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
2001-06-25 01:20:11 +00:00
|
|
|
G_STRUCT_OFFSET (GstRealPadClass, connected), NULL, NULL,
|
2001-09-10 19:00:42 +00:00
|
|
|
gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
|
2001-06-25 01:20:11 +00:00
|
|
|
G_TYPE_POINTER);
|
2001-05-25 21:00:07 +00:00
|
|
|
gst_real_pad_signals[REAL_DISCONNECTED] =
|
2001-12-25 02:15:46 +00:00
|
|
|
g_signal_new ("disconnected", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
2001-06-25 01:20:11 +00:00
|
|
|
G_STRUCT_OFFSET (GstRealPadClass, disconnected), NULL, NULL,
|
2001-09-10 19:00:42 +00:00
|
|
|
gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
|
2001-06-25 01:20:11 +00:00
|
|
|
G_TYPE_POINTER);
|
2001-12-25 02:15:46 +00:00
|
|
|
gst_real_pad_signals[REAL_EVENT_RECEIVED] =
|
|
|
|
g_signal_new ("event_received", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GstRealPadClass, event_received), NULL, NULL,
|
|
|
|
gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
|
|
|
|
G_TYPE_POINTER);
|
2000-11-25 07:02:55 +00:00
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* gtk_object_add_arg_type ("GstRealPad::active", G_TYPE_BOOLEAN, */
|
|
|
|
/* GTK_ARG_READWRITE, REAL_ARG_ACTIVE); */
|
2002-01-13 22:22:42 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), REAL_ARG_ACTIVE,
|
|
|
|
g_param_spec_boolean ("active", "Active", "Whether the pad is active.",
|
|
|
|
TRUE,G_PARAM_READWRITE));
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2001-06-25 06:45:56 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2002-01-13 22:22:42 +00:00
|
|
|
gstobject_class->save_thyself = GST_DEBUG_FUNCPTR (gst_pad_save_thyself);
|
2001-06-24 21:18:28 +00:00
|
|
|
#endif
|
2001-01-29 00:06:02 +00:00
|
|
|
gstobject_class->path_string_separator = ".";
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-01-21 23:20:46 +00:00
|
|
|
static void
|
|
|
|
gst_real_pad_init (GstRealPad *pad)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
pad->direction = GST_PAD_UNKNOWN;
|
|
|
|
pad->peer = NULL;
|
WARNING: Don't grab this updated unless you're really, REALLY sure.
Original commit message from CVS:
WARNING: Don't grab this updated unless you're really, REALLY sure.
WARNING: Wait for the next one.
Whole lotta changes here, including a few random bits:
examples/*/Makefile: updated to use `libtool gcc`, not just `gcc`
gst/
gstbuffer.h: updated to new flag style
gst.c, gstdebug.h: added new debugging for function ptrs
gstpipeline.c: set type of parent_class to the class, not the object
gstthread.c: ditto
plugins/
cdparanoia/cdparanoia.c: added an argument type, updated some defaults
cobin/spindentity.c: updated to new do/while loopfunction style
mp3encode/lame/gstlame.c: argument types, whole lotta lame options
tests/: various changes
Now, for the big changes: Once again, the scheduling system has changed.
And once again, it broke a whole bunch of things. The gist of the change
is that there is now a function pointer for gst_pad_push and gst_pad_pull,
instead of a hard-wired function. Well, currently they are functions, but
that's for debugging purposes only, they just call the function pointer
after spewing lots of DEBUG().
This changed the GstPad structure a bit, and the GstPad API as well.
Where elements used to provide chain() and pull() functions, they provide
chain() and get() functions. gst_pad_set_pull[region]_function has been
changed to get_pad_set_get[region]_function. This means all the elements
out there that used to have pull functions need to be updated. The calls
to that function have been changed in the normal elements, but the names
of the functions passed is still _pull[region](), which is an aesthetic
issue more than anything.
As for what doesn't work yet, just about anything dealing with Connections
is hosed, meaning threaded stuff won't work. This will be fixed about 12
hours from now, after I've slept, etc. The simplefake.c test works in
both cothreaded and chained cases, but not much else will work due to the
Connection problem. Needless to say, don't grab this unless you *need*
these features *now*, else wait to update this stuff until tomorrow.
I'm going to sleep now.
2000-12-16 10:18:09 +00:00
|
|
|
|
2001-12-22 21:18:17 +00:00
|
|
|
pad->sched = NULL;
|
|
|
|
pad->sched_private = NULL;
|
|
|
|
|
2000-07-17 17:14:15 +00:00
|
|
|
pad->chainfunc = NULL;
|
WARNING: Don't grab this updated unless you're really, REALLY sure.
Original commit message from CVS:
WARNING: Don't grab this updated unless you're really, REALLY sure.
WARNING: Wait for the next one.
Whole lotta changes here, including a few random bits:
examples/*/Makefile: updated to use `libtool gcc`, not just `gcc`
gst/
gstbuffer.h: updated to new flag style
gst.c, gstdebug.h: added new debugging for function ptrs
gstpipeline.c: set type of parent_class to the class, not the object
gstthread.c: ditto
plugins/
cdparanoia/cdparanoia.c: added an argument type, updated some defaults
cobin/spindentity.c: updated to new do/while loopfunction style
mp3encode/lame/gstlame.c: argument types, whole lotta lame options
tests/: various changes
Now, for the big changes: Once again, the scheduling system has changed.
And once again, it broke a whole bunch of things. The gist of the change
is that there is now a function pointer for gst_pad_push and gst_pad_pull,
instead of a hard-wired function. Well, currently they are functions, but
that's for debugging purposes only, they just call the function pointer
after spewing lots of DEBUG().
This changed the GstPad structure a bit, and the GstPad API as well.
Where elements used to provide chain() and pull() functions, they provide
chain() and get() functions. gst_pad_set_pull[region]_function has been
changed to get_pad_set_get[region]_function. This means all the elements
out there that used to have pull functions need to be updated. The calls
to that function have been changed in the normal elements, but the names
of the functions passed is still _pull[region](), which is an aesthetic
issue more than anything.
As for what doesn't work yet, just about anything dealing with Connections
is hosed, meaning threaded stuff won't work. This will be fixed about 12
hours from now, after I've slept, etc. The simplefake.c test works in
both cothreaded and chained cases, but not much else will work due to the
Connection problem. Needless to say, don't grab this unless you *need*
these features *now*, else wait to update this stuff until tomorrow.
I'm going to sleep now.
2000-12-16 10:18:09 +00:00
|
|
|
pad->getfunc = NULL;
|
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
pad->chainhandler = GST_DEBUG_FUNCPTR (gst_pad_push_func);
|
2001-08-06 20:37:21 +00:00
|
|
|
pad->gethandler = NULL;
|
WARNING: Don't grab this updated unless you're really, REALLY sure.
Original commit message from CVS:
WARNING: Don't grab this updated unless you're really, REALLY sure.
WARNING: Wait for the next one.
Whole lotta changes here, including a few random bits:
examples/*/Makefile: updated to use `libtool gcc`, not just `gcc`
gst/
gstbuffer.h: updated to new flag style
gst.c, gstdebug.h: added new debugging for function ptrs
gstpipeline.c: set type of parent_class to the class, not the object
gstthread.c: ditto
plugins/
cdparanoia/cdparanoia.c: added an argument type, updated some defaults
cobin/spindentity.c: updated to new do/while loopfunction style
mp3encode/lame/gstlame.c: argument types, whole lotta lame options
tests/: various changes
Now, for the big changes: Once again, the scheduling system has changed.
And once again, it broke a whole bunch of things. The gist of the change
is that there is now a function pointer for gst_pad_push and gst_pad_pull,
instead of a hard-wired function. Well, currently they are functions, but
that's for debugging purposes only, they just call the function pointer
after spewing lots of DEBUG().
This changed the GstPad structure a bit, and the GstPad API as well.
Where elements used to provide chain() and pull() functions, they provide
chain() and get() functions. gst_pad_set_pull[region]_function has been
changed to get_pad_set_get[region]_function. This means all the elements
out there that used to have pull functions need to be updated. The calls
to that function have been changed in the normal elements, but the names
of the functions passed is still _pull[region](), which is an aesthetic
issue more than anything.
As for what doesn't work yet, just about anything dealing with Connections
is hosed, meaning threaded stuff won't work. This will be fixed about 12
hours from now, after I've slept, etc. The simplefake.c test works in
both cothreaded and chained cases, but not much else will work due to the
Connection problem. Needless to say, don't grab this unless you *need*
these features *now*, else wait to update this stuff until tomorrow.
I'm going to sleep now.
2000-12-16 10:18:09 +00:00
|
|
|
|
2001-04-16 21:45:02 +00:00
|
|
|
pad->bufferpoolfunc = NULL;
|
2001-01-20 02:57:46 +00:00
|
|
|
pad->ghostpads = NULL;
|
2000-12-11 00:04:25 +00:00
|
|
|
pad->caps = NULL;
|
2002-01-13 22:22:42 +00:00
|
|
|
|
|
|
|
pad->connectfunc = NULL;
|
|
|
|
pad->getcapsfunc = NULL;
|
2002-05-26 21:54:27 +00:00
|
|
|
|
|
|
|
pad->convertfunc = gst_pad_convert_default;
|
|
|
|
pad->eventfunc = gst_pad_event_default;
|
|
|
|
pad->convertfunc = gst_pad_convert_default;
|
|
|
|
pad->queryfunc = gst_pad_query_default;
|
|
|
|
pad->intconnfunc = gst_pad_get_internal_connections_default;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-11-25 07:02:55 +00:00
|
|
|
static void
|
2001-06-25 01:20:11 +00:00
|
|
|
gst_real_pad_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
|
2001-01-19 02:23:35 +00:00
|
|
|
{
|
2002-01-13 22:22:42 +00:00
|
|
|
g_return_if_fail (GST_IS_PAD (object));
|
2000-11-25 07:02:55 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2001-01-19 09:37:32 +00:00
|
|
|
case REAL_ARG_ACTIVE:
|
2002-01-13 22:22:42 +00:00
|
|
|
if (g_value_get_boolean (value)) {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "activating pad %s:%s", GST_DEBUG_PAD_NAME (object));
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_FLAG_UNSET (object, GST_PAD_DISABLED);
|
2000-11-25 07:02:55 +00:00
|
|
|
} else {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "de-activating pad %s:%s", GST_DEBUG_PAD_NAME (object));
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_FLAG_SET (object, GST_PAD_DISABLED);
|
2000-11-25 07:02:55 +00:00
|
|
|
}
|
2002-01-13 22:22:42 +00:00
|
|
|
g_signal_emit (G_OBJECT (object), gst_real_pad_signals[REAL_SET_ACTIVE], 0,
|
|
|
|
!GST_FLAG_IS_SET (object, GST_PAD_DISABLED));
|
2000-11-25 07:02:55 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-06-25 01:20:11 +00:00
|
|
|
gst_real_pad_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
|
2000-11-25 07:02:55 +00:00
|
|
|
{
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail (GST_IS_PAD (object));
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2001-01-19 09:37:32 +00:00
|
|
|
case REAL_ARG_ACTIVE:
|
2002-01-13 22:22:42 +00:00
|
|
|
g_value_set_boolean (value, !GST_FLAG_IS_SET (object, GST_PAD_DISABLED));
|
2000-11-25 07:02:55 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/**
|
2002-05-26 21:54:27 +00:00
|
|
|
* gst_pad_custom_new:
|
|
|
|
* @type: the type of the pad
|
2000-01-30 09:03:00 +00:00
|
|
|
* @name: name of new pad
|
|
|
|
* @direction: either GST_PAD_SRC or GST_PAD_SINK
|
|
|
|
*
|
2002-05-26 21:54:27 +00:00
|
|
|
* Create a new pad with given name from the given type.
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* Returns: new pad
|
|
|
|
*/
|
2000-11-01 13:49:41 +00:00
|
|
|
GstPad*
|
2002-05-26 21:54:27 +00:00
|
|
|
gst_pad_custom_new (GType type, const gchar *name,
|
|
|
|
GstPadDirection direction)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
2001-01-19 09:37:32 +00:00
|
|
|
GstRealPad *pad;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-01 13:49:41 +00:00
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
g_return_val_if_fail (direction != GST_PAD_UNKNOWN, NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
pad = g_object_new (type, NULL);
|
2001-01-29 00:06:02 +00:00
|
|
|
gst_object_set_name (GST_OBJECT (pad), name);
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_RPAD_DIRECTION (pad) = direction;
|
2000-12-13 19:29:35 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
return GST_PAD (pad);
|
2000-12-13 19:29:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2002-05-26 21:54:27 +00:00
|
|
|
* gst_pad_new:
|
|
|
|
* @name: name of new pad
|
|
|
|
* @direction: either GST_PAD_SRC or GST_PAD_SINK
|
|
|
|
*
|
|
|
|
* Create a new pad with given name.
|
|
|
|
*
|
|
|
|
* Returns: new pad
|
|
|
|
*/
|
|
|
|
GstPad*
|
|
|
|
gst_pad_new (const gchar *name,
|
|
|
|
GstPadDirection direction)
|
|
|
|
{
|
|
|
|
return gst_pad_custom_new (gst_real_pad_get_type (), name, direction);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* gst_pad_custom_new_from_template:
|
|
|
|
* @type: the custom GType for this pad
|
2001-01-19 22:15:21 +00:00
|
|
|
* @templ: the pad template to use
|
2000-12-13 19:29:35 +00:00
|
|
|
* @name: the name of the element
|
|
|
|
*
|
|
|
|
* Create a new pad with given name from the given template.
|
|
|
|
*
|
|
|
|
* Returns: new pad
|
|
|
|
*/
|
|
|
|
GstPad*
|
2002-05-26 21:54:27 +00:00
|
|
|
gst_pad_custom_new_from_template (GType type, GstPadTemplate *templ,
|
|
|
|
const gchar *name)
|
2000-12-13 19:29:35 +00:00
|
|
|
{
|
|
|
|
GstPad *pad;
|
|
|
|
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
2001-01-19 02:23:35 +00:00
|
|
|
g_return_val_if_fail (templ != NULL, NULL);
|
2000-12-13 19:29:35 +00:00
|
|
|
|
2001-01-19 02:23:35 +00:00
|
|
|
pad = gst_pad_new (name, templ->direction);
|
2001-09-29 15:39:00 +00:00
|
|
|
|
|
|
|
gst_object_ref (GST_OBJECT (templ));
|
2002-04-11 20:35:18 +00:00
|
|
|
GST_PAD_PAD_TEMPLATE (pad) = templ;
|
2002-05-26 21:54:27 +00:00
|
|
|
|
|
|
|
g_signal_emit (G_OBJECT (templ), gst_pad_template_signals[TEMPL_PAD_CREATED], 0, pad);
|
2001-09-29 15:39:00 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
return pad;
|
|
|
|
}
|
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_new_from_template:
|
|
|
|
* @templ: the pad template to use
|
|
|
|
* @name: the name of the element
|
|
|
|
*
|
|
|
|
* Create a new pad with given name from the given template.
|
|
|
|
*
|
|
|
|
* Returns: new pad
|
|
|
|
*/
|
|
|
|
GstPad*
|
|
|
|
gst_pad_new_from_template (GstPadTemplate *templ,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
return gst_pad_custom_new_from_template (gst_real_pad_get_type (), templ, name);
|
|
|
|
}
|
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_get_direction:
|
|
|
|
* @pad: the Pad to get the direction from
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Get the direction of the pad.
|
2000-03-27 19:53:43 +00:00
|
|
|
*
|
|
|
|
* Returns: the direction of the pad
|
|
|
|
*/
|
2001-01-21 23:20:46 +00:00
|
|
|
GstPadDirection
|
|
|
|
gst_pad_get_direction (GstPad *pad)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (pad != NULL, GST_PAD_UNKNOWN);
|
2001-01-19 09:37:32 +00:00
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_UNKNOWN);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
return GST_PAD_DIRECTION (pad);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_set_name:
|
|
|
|
* @pad: the pad to set the name of
|
|
|
|
* @name: the name of the pad
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Set the name of a pad.
|
2000-03-27 19:53:43 +00:00
|
|
|
*/
|
2001-01-21 23:20:46 +00:00
|
|
|
void
|
|
|
|
gst_pad_set_name (GstPad *pad,
|
|
|
|
const gchar *name)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
gst_object_set_name (GST_OBJECT (pad), name);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-03-27 19:53:43 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_get_name:
|
|
|
|
* @pad: the pad to get the name of
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Get the name of a pad.
|
2000-03-27 19:53:43 +00:00
|
|
|
*
|
2000-11-01 13:49:41 +00:00
|
|
|
* Returns: the name of the pad, don't free.
|
2000-03-27 19:53:43 +00:00
|
|
|
*/
|
2000-11-01 13:49:41 +00:00
|
|
|
const gchar*
|
2001-01-21 23:20:46 +00:00
|
|
|
gst_pad_get_name (GstPad *pad)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
return GST_OBJECT_NAME (pad);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
WARNING: Don't grab this updated unless you're really, REALLY sure.
Original commit message from CVS:
WARNING: Don't grab this updated unless you're really, REALLY sure.
WARNING: Wait for the next one.
Whole lotta changes here, including a few random bits:
examples/*/Makefile: updated to use `libtool gcc`, not just `gcc`
gst/
gstbuffer.h: updated to new flag style
gst.c, gstdebug.h: added new debugging for function ptrs
gstpipeline.c: set type of parent_class to the class, not the object
gstthread.c: ditto
plugins/
cdparanoia/cdparanoia.c: added an argument type, updated some defaults
cobin/spindentity.c: updated to new do/while loopfunction style
mp3encode/lame/gstlame.c: argument types, whole lotta lame options
tests/: various changes
Now, for the big changes: Once again, the scheduling system has changed.
And once again, it broke a whole bunch of things. The gist of the change
is that there is now a function pointer for gst_pad_push and gst_pad_pull,
instead of a hard-wired function. Well, currently they are functions, but
that's for debugging purposes only, they just call the function pointer
after spewing lots of DEBUG().
This changed the GstPad structure a bit, and the GstPad API as well.
Where elements used to provide chain() and pull() functions, they provide
chain() and get() functions. gst_pad_set_pull[region]_function has been
changed to get_pad_set_get[region]_function. This means all the elements
out there that used to have pull functions need to be updated. The calls
to that function have been changed in the normal elements, but the names
of the functions passed is still _pull[region](), which is an aesthetic
issue more than anything.
As for what doesn't work yet, just about anything dealing with Connections
is hosed, meaning threaded stuff won't work. This will be fixed about 12
hours from now, after I've slept, etc. The simplefake.c test works in
both cothreaded and chained cases, but not much else will work due to the
Connection problem. Needless to say, don't grab this unless you *need*
these features *now*, else wait to update this stuff until tomorrow.
I'm going to sleep now.
2000-12-16 10:18:09 +00:00
|
|
|
* gst_pad_set_chain_function:
|
|
|
|
* @pad: the pad to set the chain function for
|
|
|
|
* @chain: the chain function
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Set the given chain function for the pad.
|
2000-10-25 19:09:53 +00:00
|
|
|
*/
|
2002-01-20 11:55:35 +00:00
|
|
|
void
|
|
|
|
gst_pad_set_chain_function (GstPad *pad,
|
|
|
|
GstPadChainFunction chain)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
2001-01-19 02:23:35 +00:00
|
|
|
g_return_if_fail (GST_IS_REAL_PAD (pad));
|
2001-01-19 09:37:32 +00:00
|
|
|
|
|
|
|
GST_RPAD_CHAINFUNC(pad) = chain;
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "chainfunc for %s:%s set to %s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (chain));
|
2000-02-26 18:55:14 +00:00
|
|
|
}
|
|
|
|
|
2000-12-06 23:04:12 +00:00
|
|
|
/**
|
2000-12-28 21:42:23 +00:00
|
|
|
* gst_pad_set_get_function:
|
WARNING: Don't grab this updated unless you're really, REALLY sure.
Original commit message from CVS:
WARNING: Don't grab this updated unless you're really, REALLY sure.
WARNING: Wait for the next one.
Whole lotta changes here, including a few random bits:
examples/*/Makefile: updated to use `libtool gcc`, not just `gcc`
gst/
gstbuffer.h: updated to new flag style
gst.c, gstdebug.h: added new debugging for function ptrs
gstpipeline.c: set type of parent_class to the class, not the object
gstthread.c: ditto
plugins/
cdparanoia/cdparanoia.c: added an argument type, updated some defaults
cobin/spindentity.c: updated to new do/while loopfunction style
mp3encode/lame/gstlame.c: argument types, whole lotta lame options
tests/: various changes
Now, for the big changes: Once again, the scheduling system has changed.
And once again, it broke a whole bunch of things. The gist of the change
is that there is now a function pointer for gst_pad_push and gst_pad_pull,
instead of a hard-wired function. Well, currently they are functions, but
that's for debugging purposes only, they just call the function pointer
after spewing lots of DEBUG().
This changed the GstPad structure a bit, and the GstPad API as well.
Where elements used to provide chain() and pull() functions, they provide
chain() and get() functions. gst_pad_set_pull[region]_function has been
changed to get_pad_set_get[region]_function. This means all the elements
out there that used to have pull functions need to be updated. The calls
to that function have been changed in the normal elements, but the names
of the functions passed is still _pull[region](), which is an aesthetic
issue more than anything.
As for what doesn't work yet, just about anything dealing with Connections
is hosed, meaning threaded stuff won't work. This will be fixed about 12
hours from now, after I've slept, etc. The simplefake.c test works in
both cothreaded and chained cases, but not much else will work due to the
Connection problem. Needless to say, don't grab this unless you *need*
these features *now*, else wait to update this stuff until tomorrow.
I'm going to sleep now.
2000-12-16 10:18:09 +00:00
|
|
|
* @pad: the pad to set the get function for
|
|
|
|
* @get: the get function
|
2000-12-06 23:04:12 +00:00
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Set the given get function for the pad.
|
2000-12-06 23:04:12 +00:00
|
|
|
*/
|
2001-01-21 23:20:46 +00:00
|
|
|
void
|
WARNING: Don't grab this updated unless you're really, REALLY sure.
Original commit message from CVS:
WARNING: Don't grab this updated unless you're really, REALLY sure.
WARNING: Wait for the next one.
Whole lotta changes here, including a few random bits:
examples/*/Makefile: updated to use `libtool gcc`, not just `gcc`
gst/
gstbuffer.h: updated to new flag style
gst.c, gstdebug.h: added new debugging for function ptrs
gstpipeline.c: set type of parent_class to the class, not the object
gstthread.c: ditto
plugins/
cdparanoia/cdparanoia.c: added an argument type, updated some defaults
cobin/spindentity.c: updated to new do/while loopfunction style
mp3encode/lame/gstlame.c: argument types, whole lotta lame options
tests/: various changes
Now, for the big changes: Once again, the scheduling system has changed.
And once again, it broke a whole bunch of things. The gist of the change
is that there is now a function pointer for gst_pad_push and gst_pad_pull,
instead of a hard-wired function. Well, currently they are functions, but
that's for debugging purposes only, they just call the function pointer
after spewing lots of DEBUG().
This changed the GstPad structure a bit, and the GstPad API as well.
Where elements used to provide chain() and pull() functions, they provide
chain() and get() functions. gst_pad_set_pull[region]_function has been
changed to get_pad_set_get[region]_function. This means all the elements
out there that used to have pull functions need to be updated. The calls
to that function have been changed in the normal elements, but the names
of the functions passed is still _pull[region](), which is an aesthetic
issue more than anything.
As for what doesn't work yet, just about anything dealing with Connections
is hosed, meaning threaded stuff won't work. This will be fixed about 12
hours from now, after I've slept, etc. The simplefake.c test works in
both cothreaded and chained cases, but not much else will work due to the
Connection problem. Needless to say, don't grab this unless you *need*
these features *now*, else wait to update this stuff until tomorrow.
I'm going to sleep now.
2000-12-16 10:18:09 +00:00
|
|
|
gst_pad_set_get_function (GstPad *pad,
|
2001-01-21 23:20:46 +00:00
|
|
|
GstPadGetFunction get)
|
2000-12-06 23:04:12 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
2001-01-19 02:23:35 +00:00
|
|
|
g_return_if_fail (GST_IS_REAL_PAD (pad));
|
2000-12-06 23:04:12 +00:00
|
|
|
|
2001-01-19 09:37:32 +00:00
|
|
|
GST_RPAD_GETFUNC(pad) = get;
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "getfunc for %s:%s set to %s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (get));
|
2000-12-06 23:04:12 +00:00
|
|
|
}
|
|
|
|
|
2001-08-06 20:37:21 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_set_event_function:
|
|
|
|
* @pad: the pad to set the event handler for
|
|
|
|
* @event: the event handler
|
|
|
|
*
|
|
|
|
* Set the given event handler for the pad.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_pad_set_event_function (GstPad *pad,
|
|
|
|
GstPadEventFunction event)
|
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_REAL_PAD (pad));
|
|
|
|
|
|
|
|
GST_RPAD_EVENTFUNC(pad) = event;
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "eventfunc for %s:%s set to %s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (event));
|
2001-08-06 20:37:21 +00:00
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
2002-05-26 21:54:27 +00:00
|
|
|
* gst_pad_set_convert_function:
|
|
|
|
* @pad: the pad to set the event handler for
|
|
|
|
* @convert: the convert function
|
|
|
|
*
|
|
|
|
* Set the given convert function for the pad.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_pad_set_convert_function (GstPad *pad,
|
|
|
|
GstPadConvertFunction convert)
|
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_REAL_PAD (pad));
|
|
|
|
|
|
|
|
GST_RPAD_CONVERTFUNC(pad) = convert;
|
|
|
|
GST_DEBUG (GST_CAT_PADS, "convertfunc for %s:%s set to %s",
|
|
|
|
GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (convert));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_pad_set_query_function:
|
|
|
|
* @pad: the pad to set the event handler for
|
|
|
|
* @query: the query function
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
2002-05-26 21:54:27 +00:00
|
|
|
* Set the given query function for the pad.
|
2000-10-25 19:09:53 +00:00
|
|
|
*/
|
2001-01-21 23:20:46 +00:00
|
|
|
void
|
2002-05-26 21:54:27 +00:00
|
|
|
gst_pad_set_query_function (GstPad *pad, GstPadQueryFunction query)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
2001-01-19 02:23:35 +00:00
|
|
|
g_return_if_fail (GST_IS_REAL_PAD (pad));
|
WARNING: Don't grab this updated unless you're really, REALLY sure.
Original commit message from CVS:
WARNING: Don't grab this updated unless you're really, REALLY sure.
WARNING: Wait for the next one.
Whole lotta changes here, including a few random bits:
examples/*/Makefile: updated to use `libtool gcc`, not just `gcc`
gst/
gstbuffer.h: updated to new flag style
gst.c, gstdebug.h: added new debugging for function ptrs
gstpipeline.c: set type of parent_class to the class, not the object
gstthread.c: ditto
plugins/
cdparanoia/cdparanoia.c: added an argument type, updated some defaults
cobin/spindentity.c: updated to new do/while loopfunction style
mp3encode/lame/gstlame.c: argument types, whole lotta lame options
tests/: various changes
Now, for the big changes: Once again, the scheduling system has changed.
And once again, it broke a whole bunch of things. The gist of the change
is that there is now a function pointer for gst_pad_push and gst_pad_pull,
instead of a hard-wired function. Well, currently they are functions, but
that's for debugging purposes only, they just call the function pointer
after spewing lots of DEBUG().
This changed the GstPad structure a bit, and the GstPad API as well.
Where elements used to provide chain() and pull() functions, they provide
chain() and get() functions. gst_pad_set_pull[region]_function has been
changed to get_pad_set_get[region]_function. This means all the elements
out there that used to have pull functions need to be updated. The calls
to that function have been changed in the normal elements, but the names
of the functions passed is still _pull[region](), which is an aesthetic
issue more than anything.
As for what doesn't work yet, just about anything dealing with Connections
is hosed, meaning threaded stuff won't work. This will be fixed about 12
hours from now, after I've slept, etc. The simplefake.c test works in
both cothreaded and chained cases, but not much else will work due to the
Connection problem. Needless to say, don't grab this unless you *need*
these features *now*, else wait to update this stuff until tomorrow.
I'm going to sleep now.
2000-12-16 10:18:09 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
GST_RPAD_QUERYFUNC(pad) = query;
|
|
|
|
GST_DEBUG (GST_CAT_PADS, "queryfunc for %s:%s set to %s",
|
|
|
|
GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (query));
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2002-06-12 22:26:36 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_set_internal_connection_function:
|
|
|
|
* @pad: the pad to set the internal connection function for
|
|
|
|
* @intconn: the internal connection function
|
|
|
|
*
|
|
|
|
* Set the given internal connection function for the pad.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_pad_set_internal_connection_function (GstPad *pad, GstPadIntConnFunction intconn)
|
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_REAL_PAD (pad));
|
|
|
|
|
|
|
|
GST_RPAD_INTCONNFUNC(pad) = intconn;
|
|
|
|
GST_DEBUG (GST_CAT_PADS, "internal connection for %s:%s set to %s",
|
|
|
|
GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (intconn));
|
|
|
|
}
|
2002-05-26 21:54:27 +00:00
|
|
|
|
2001-03-12 21:02:12 +00:00
|
|
|
/**
|
2002-01-13 22:22:42 +00:00
|
|
|
* gst_pad_set_connect_function:
|
|
|
|
* @pad: the pad to set the connect function for
|
|
|
|
* @connect: the connect function
|
2001-03-12 21:02:12 +00:00
|
|
|
*
|
2002-01-13 22:22:42 +00:00
|
|
|
* Set the given connect function for the pad. It will be called
|
|
|
|
* when the pad is connected or reconnected with caps.
|
2001-03-12 21:02:12 +00:00
|
|
|
*/
|
|
|
|
void
|
2002-01-13 22:22:42 +00:00
|
|
|
gst_pad_set_connect_function (GstPad *pad,
|
|
|
|
GstPadConnectFunction connect)
|
2001-03-12 21:02:12 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_REAL_PAD (pad));
|
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_RPAD_CONNECTFUNC (pad) = connect;
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "connectfunc for %s:%s set to %s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (connect));
|
2001-03-12 21:02:12 +00:00
|
|
|
}
|
|
|
|
|
2001-04-12 18:11:19 +00:00
|
|
|
/**
|
2002-01-13 22:22:42 +00:00
|
|
|
* gst_pad_set_getcaps_function:
|
|
|
|
* @pad: the pad to set the getcaps function for
|
|
|
|
* @getcaps: the getcaps function
|
2001-04-12 18:11:19 +00:00
|
|
|
*
|
2002-01-13 22:22:42 +00:00
|
|
|
* Set the given getcaps function for the pad.
|
2001-04-12 18:11:19 +00:00
|
|
|
*/
|
|
|
|
void
|
2002-01-13 22:22:42 +00:00
|
|
|
gst_pad_set_getcaps_function (GstPad *pad,
|
|
|
|
GstPadGetCapsFunction getcaps)
|
2001-04-12 18:11:19 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_REAL_PAD (pad));
|
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_RPAD_GETCAPSFUNC (pad) = getcaps;
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "getcapsfunc for %s:%s set to %s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (getcaps));
|
2001-04-12 18:11:19 +00:00
|
|
|
}
|
2001-04-16 21:45:02 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_set_bufferpool_function:
|
|
|
|
* @pad: the pad to set the bufferpool function for
|
2001-04-17 21:14:55 +00:00
|
|
|
* @bufpool: the bufferpool function
|
2001-04-16 21:45:02 +00:00
|
|
|
*
|
|
|
|
* Set the given bufferpool function for the pad.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_pad_set_bufferpool_function (GstPad *pad,
|
|
|
|
GstPadBufferPoolFunction bufpool)
|
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_REAL_PAD (pad));
|
2001-04-12 18:11:19 +00:00
|
|
|
|
2001-04-16 21:45:02 +00:00
|
|
|
GST_RPAD_BUFFERPOOLFUNC (pad) = bufpool;
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "bufferpoolfunc for %s:%s set to %s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (pad), GST_DEBUG_FUNCPTR_NAME (bufpool));
|
2001-04-16 21:45:02 +00:00
|
|
|
}
|
2000-12-31 22:18:05 +00:00
|
|
|
|
WARNING: Don't grab this updated unless you're really, REALLY sure.
Original commit message from CVS:
WARNING: Don't grab this updated unless you're really, REALLY sure.
WARNING: Wait for the next one.
Whole lotta changes here, including a few random bits:
examples/*/Makefile: updated to use `libtool gcc`, not just `gcc`
gst/
gstbuffer.h: updated to new flag style
gst.c, gstdebug.h: added new debugging for function ptrs
gstpipeline.c: set type of parent_class to the class, not the object
gstthread.c: ditto
plugins/
cdparanoia/cdparanoia.c: added an argument type, updated some defaults
cobin/spindentity.c: updated to new do/while loopfunction style
mp3encode/lame/gstlame.c: argument types, whole lotta lame options
tests/: various changes
Now, for the big changes: Once again, the scheduling system has changed.
And once again, it broke a whole bunch of things. The gist of the change
is that there is now a function pointer for gst_pad_push and gst_pad_pull,
instead of a hard-wired function. Well, currently they are functions, but
that's for debugging purposes only, they just call the function pointer
after spewing lots of DEBUG().
This changed the GstPad structure a bit, and the GstPad API as well.
Where elements used to provide chain() and pull() functions, they provide
chain() and get() functions. gst_pad_set_pull[region]_function has been
changed to get_pad_set_get[region]_function. This means all the elements
out there that used to have pull functions need to be updated. The calls
to that function have been changed in the normal elements, but the names
of the functions passed is still _pull[region](), which is an aesthetic
issue more than anything.
As for what doesn't work yet, just about anything dealing with Connections
is hosed, meaning threaded stuff won't work. This will be fixed about 12
hours from now, after I've slept, etc. The simplefake.c test works in
both cothreaded and chained cases, but not much else will work due to the
Connection problem. Needless to say, don't grab this unless you *need*
these features *now*, else wait to update this stuff until tomorrow.
I'm going to sleep now.
2000-12-16 10:18:09 +00:00
|
|
|
static void
|
2001-01-21 23:20:46 +00:00
|
|
|
gst_pad_push_func(GstPad *pad, GstBuffer *buf)
|
WARNING: Don't grab this updated unless you're really, REALLY sure.
Original commit message from CVS:
WARNING: Don't grab this updated unless you're really, REALLY sure.
WARNING: Wait for the next one.
Whole lotta changes here, including a few random bits:
examples/*/Makefile: updated to use `libtool gcc`, not just `gcc`
gst/
gstbuffer.h: updated to new flag style
gst.c, gstdebug.h: added new debugging for function ptrs
gstpipeline.c: set type of parent_class to the class, not the object
gstthread.c: ditto
plugins/
cdparanoia/cdparanoia.c: added an argument type, updated some defaults
cobin/spindentity.c: updated to new do/while loopfunction style
mp3encode/lame/gstlame.c: argument types, whole lotta lame options
tests/: various changes
Now, for the big changes: Once again, the scheduling system has changed.
And once again, it broke a whole bunch of things. The gist of the change
is that there is now a function pointer for gst_pad_push and gst_pad_pull,
instead of a hard-wired function. Well, currently they are functions, but
that's for debugging purposes only, they just call the function pointer
after spewing lots of DEBUG().
This changed the GstPad structure a bit, and the GstPad API as well.
Where elements used to provide chain() and pull() functions, they provide
chain() and get() functions. gst_pad_set_pull[region]_function has been
changed to get_pad_set_get[region]_function. This means all the elements
out there that used to have pull functions need to be updated. The calls
to that function have been changed in the normal elements, but the names
of the functions passed is still _pull[region](), which is an aesthetic
issue more than anything.
As for what doesn't work yet, just about anything dealing with Connections
is hosed, meaning threaded stuff won't work. This will be fixed about 12
hours from now, after I've slept, etc. The simplefake.c test works in
both cothreaded and chained cases, but not much else will work due to the
Connection problem. Needless to say, don't grab this unless you *need*
these features *now*, else wait to update this stuff until tomorrow.
I'm going to sleep now.
2000-12-16 10:18:09 +00:00
|
|
|
{
|
2002-01-13 22:22:42 +00:00
|
|
|
if (GST_RPAD_CHAINFUNC (GST_RPAD_PEER (pad)) != NULL) {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_DATAFLOW, "calling chain function %s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_FUNCPTR_NAME (GST_RPAD_CHAINFUNC (GST_RPAD_PEER (pad))));
|
|
|
|
(GST_RPAD_CHAINFUNC (GST_RPAD_PEER (pad))) (pad, buf);
|
WARNING: Don't grab this updated unless you're really, REALLY sure.
Original commit message from CVS:
WARNING: Don't grab this updated unless you're really, REALLY sure.
WARNING: Wait for the next one.
Whole lotta changes here, including a few random bits:
examples/*/Makefile: updated to use `libtool gcc`, not just `gcc`
gst/
gstbuffer.h: updated to new flag style
gst.c, gstdebug.h: added new debugging for function ptrs
gstpipeline.c: set type of parent_class to the class, not the object
gstthread.c: ditto
plugins/
cdparanoia/cdparanoia.c: added an argument type, updated some defaults
cobin/spindentity.c: updated to new do/while loopfunction style
mp3encode/lame/gstlame.c: argument types, whole lotta lame options
tests/: various changes
Now, for the big changes: Once again, the scheduling system has changed.
And once again, it broke a whole bunch of things. The gist of the change
is that there is now a function pointer for gst_pad_push and gst_pad_pull,
instead of a hard-wired function. Well, currently they are functions, but
that's for debugging purposes only, they just call the function pointer
after spewing lots of DEBUG().
This changed the GstPad structure a bit, and the GstPad API as well.
Where elements used to provide chain() and pull() functions, they provide
chain() and get() functions. gst_pad_set_pull[region]_function has been
changed to get_pad_set_get[region]_function. This means all the elements
out there that used to have pull functions need to be updated. The calls
to that function have been changed in the normal elements, but the names
of the functions passed is still _pull[region](), which is an aesthetic
issue more than anything.
As for what doesn't work yet, just about anything dealing with Connections
is hosed, meaning threaded stuff won't work. This will be fixed about 12
hours from now, after I've slept, etc. The simplefake.c test works in
both cothreaded and chained cases, but not much else will work due to the
Connection problem. Needless to say, don't grab this unless you *need*
these features *now*, else wait to update this stuff until tomorrow.
I'm going to sleep now.
2000-12-16 10:18:09 +00:00
|
|
|
} else {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_DATAFLOW, "default pad_push handler in place, no chain function");
|
2001-12-27 00:47:41 +00:00
|
|
|
g_warning ("(internal error) default pad_push in place for pad %s:%s but it has no chain function",
|
|
|
|
GST_DEBUG_PAD_NAME (pad));
|
WARNING: Don't grab this updated unless you're really, REALLY sure.
Original commit message from CVS:
WARNING: Don't grab this updated unless you're really, REALLY sure.
WARNING: Wait for the next one.
Whole lotta changes here, including a few random bits:
examples/*/Makefile: updated to use `libtool gcc`, not just `gcc`
gst/
gstbuffer.h: updated to new flag style
gst.c, gstdebug.h: added new debugging for function ptrs
gstpipeline.c: set type of parent_class to the class, not the object
gstthread.c: ditto
plugins/
cdparanoia/cdparanoia.c: added an argument type, updated some defaults
cobin/spindentity.c: updated to new do/while loopfunction style
mp3encode/lame/gstlame.c: argument types, whole lotta lame options
tests/: various changes
Now, for the big changes: Once again, the scheduling system has changed.
And once again, it broke a whole bunch of things. The gist of the change
is that there is now a function pointer for gst_pad_push and gst_pad_pull,
instead of a hard-wired function. Well, currently they are functions, but
that's for debugging purposes only, they just call the function pointer
after spewing lots of DEBUG().
This changed the GstPad structure a bit, and the GstPad API as well.
Where elements used to provide chain() and pull() functions, they provide
chain() and get() functions. gst_pad_set_pull[region]_function has been
changed to get_pad_set_get[region]_function. This means all the elements
out there that used to have pull functions need to be updated. The calls
to that function have been changed in the normal elements, but the names
of the functions passed is still _pull[region](), which is an aesthetic
issue more than anything.
As for what doesn't work yet, just about anything dealing with Connections
is hosed, meaning threaded stuff won't work. This will be fixed about 12
hours from now, after I've slept, etc. The simplefake.c test works in
both cothreaded and chained cases, but not much else will work due to the
Connection problem. Needless to say, don't grab this unless you *need*
these features *now*, else wait to update this stuff until tomorrow.
I'm going to sleep now.
2000-12-16 10:18:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-17 17:14:15 +00:00
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_disconnect:
|
|
|
|
* @srcpad: the source pad to disconnect
|
|
|
|
* @sinkpad: the sink pad to disconnect
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Disconnects the source pad from the sink pad.
|
2000-10-25 19:09:53 +00:00
|
|
|
*/
|
2001-01-21 23:20:46 +00:00
|
|
|
void
|
2000-11-01 13:49:41 +00:00
|
|
|
gst_pad_disconnect (GstPad *srcpad,
|
2001-01-21 23:20:46 +00:00
|
|
|
GstPad *sinkpad)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
2001-01-19 02:23:35 +00:00
|
|
|
GstRealPad *realsrc, *realsink;
|
|
|
|
|
2000-06-25 21:38:00 +00:00
|
|
|
/* generic checks */
|
2000-11-01 13:49:41 +00:00
|
|
|
g_return_if_fail (srcpad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (srcpad));
|
|
|
|
g_return_if_fail (sinkpad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (sinkpad));
|
2000-06-25 21:38:00 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
GST_INFO (GST_CAT_ELEMENT_PADS, "disconnecting %s:%s(%p) and %s:%s(%p)",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (srcpad), srcpad, GST_DEBUG_PAD_NAME (sinkpad), sinkpad);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* now we need to deal with the real/ghost stuff */
|
2002-01-13 22:22:42 +00:00
|
|
|
realsrc = GST_PAD_REALIZE (srcpad);
|
|
|
|
realsink = GST_PAD_REALIZE (sinkpad);
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
g_return_if_fail (GST_RPAD_PEER (realsrc) != NULL);
|
2002-03-30 17:05:03 +00:00
|
|
|
g_return_if_fail (GST_RPAD_PEER (realsink) == realsrc);
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
if ((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SINK) &&
|
|
|
|
(GST_RPAD_DIRECTION (realsink) == GST_PAD_SRC)) {
|
2001-05-25 21:00:07 +00:00
|
|
|
GstRealPad *temppad;
|
|
|
|
|
|
|
|
temppad = realsrc;
|
|
|
|
realsrc = realsink;
|
|
|
|
realsink = temppad;
|
|
|
|
}
|
2002-01-13 22:22:42 +00:00
|
|
|
g_return_if_fail ((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SRC) &&
|
|
|
|
(GST_RPAD_DIRECTION (realsink) == GST_PAD_SINK));
|
2000-06-25 21:38:00 +00:00
|
|
|
|
|
|
|
/* first clear peers */
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_RPAD_PEER (realsrc) = NULL;
|
|
|
|
GST_RPAD_PEER (realsink) = NULL;
|
|
|
|
|
|
|
|
/* reset the filters, both filters are refcounted once */
|
|
|
|
if (GST_RPAD_FILTER (realsrc)) {
|
|
|
|
gst_caps_unref (GST_RPAD_FILTER (realsrc));
|
|
|
|
GST_RPAD_FILTER (realsink) = NULL;
|
|
|
|
GST_RPAD_FILTER (realsrc) = NULL;
|
|
|
|
}
|
2000-06-25 21:38:00 +00:00
|
|
|
|
2001-12-19 19:22:53 +00:00
|
|
|
/* now tell the scheduler */
|
|
|
|
if (GST_PAD_PARENT (realsrc)->sched)
|
|
|
|
gst_scheduler_pad_disconnect (GST_PAD_PARENT (realsrc)->sched, (GstPad *)realsrc, (GstPad *)realsink);
|
|
|
|
else if (GST_PAD_PARENT (realsink)->sched)
|
|
|
|
gst_scheduler_pad_disconnect (GST_PAD_PARENT (realsink)->sched, (GstPad *)realsrc, (GstPad *)realsink);
|
2001-12-15 22:37:35 +00:00
|
|
|
|
2002-02-18 00:40:56 +00:00
|
|
|
/* hold a reference, as they can go away in the signal handlers */
|
|
|
|
gst_object_ref (GST_OBJECT (realsrc));
|
|
|
|
gst_object_ref (GST_OBJECT (realsink));
|
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
/* fire off a signal to each of the pads telling them that they've been disconnected */
|
2002-01-13 22:22:42 +00:00
|
|
|
g_signal_emit (G_OBJECT (realsrc), gst_real_pad_signals[REAL_DISCONNECTED], 0, realsink);
|
|
|
|
g_signal_emit (G_OBJECT (realsink), gst_real_pad_signals[REAL_DISCONNECTED], 0, realsrc);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-01-01 08:37:41 +00:00
|
|
|
GST_INFO (GST_CAT_ELEMENT_PADS, "disconnected %s:%s and %s:%s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
|
2002-02-18 00:40:56 +00:00
|
|
|
|
|
|
|
gst_object_unref (GST_OBJECT (realsrc));
|
|
|
|
gst_object_unref (GST_OBJECT (realsink));
|
2001-09-14 19:45:20 +00:00
|
|
|
}
|
|
|
|
|
2002-01-28 00:51:39 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_can_connect_filtered:
|
|
|
|
* @srcpad: the source pad to connect
|
|
|
|
* @sinkpad: the sink pad to connect
|
|
|
|
* @filtercaps: the filter caps.
|
|
|
|
*
|
|
|
|
* Checks if the source pad and the sink pad can be connected.
|
|
|
|
* The filter indicates the media type that should flow trought this connection.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the pad can be connected, FALSE otherwise
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_pad_can_connect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
|
|
|
|
{
|
|
|
|
gint num_decoupled = 0;
|
|
|
|
GstRealPad *realsrc, *realsink;
|
|
|
|
|
|
|
|
/* generic checks */
|
|
|
|
g_return_val_if_fail (srcpad != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
|
|
|
|
g_return_val_if_fail (sinkpad != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
|
|
|
|
|
|
|
|
/* now we need to deal with the real/ghost stuff */
|
|
|
|
realsrc = GST_PAD_REALIZE (srcpad);
|
|
|
|
realsink = GST_PAD_REALIZE (sinkpad);
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_RPAD_PEER (realsrc) == NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_RPAD_PEER (realsink) == NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_PAD_PARENT (realsrc) != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_PAD_PARENT (realsink) != NULL, FALSE);
|
|
|
|
|
|
|
|
if (realsrc->sched && realsink->sched) {
|
|
|
|
if (GST_FLAG_IS_SET (GST_PAD_PARENT (realsrc), GST_ELEMENT_DECOUPLED))
|
|
|
|
num_decoupled++;
|
|
|
|
if (GST_FLAG_IS_SET (GST_PAD_PARENT (realsink), GST_ELEMENT_DECOUPLED))
|
|
|
|
num_decoupled++;
|
|
|
|
|
|
|
|
if (realsrc->sched != realsink->sched && num_decoupled != 1) {
|
2002-03-03 02:08:17 +00:00
|
|
|
g_warning ("connecting pads with different scheds requires exactly one decoupled element (queue)");
|
2002-01-28 00:51:39 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check if the directions are compatible */
|
|
|
|
if (!(((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SINK) &&
|
|
|
|
(GST_RPAD_DIRECTION (realsink) == GST_PAD_SRC)) ||
|
|
|
|
((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SRC) &&
|
|
|
|
(GST_RPAD_DIRECTION (realsink) == GST_PAD_SINK))))
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* gst_pad_can_connect:
|
|
|
|
* @srcpad: the source pad to connect
|
|
|
|
* @sinkpad: the sink pad to connect
|
|
|
|
*
|
|
|
|
* Checks if the source pad can be connected to the sink pad.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the pads can be connected, FALSE otherwise
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_pad_can_connect (GstPad *srcpad, GstPad *sinkpad)
|
|
|
|
{
|
|
|
|
return gst_pad_can_connect_filtered (srcpad, sinkpad, NULL);
|
|
|
|
}
|
|
|
|
|
2001-09-14 19:45:20 +00:00
|
|
|
/**
|
2002-01-13 22:22:42 +00:00
|
|
|
* gst_pad_connect_filtered:
|
2001-09-14 19:45:20 +00:00
|
|
|
* @srcpad: the source pad to connect
|
|
|
|
* @sinkpad: the sink pad to connect
|
2002-01-13 22:22:42 +00:00
|
|
|
* @filtercaps: the filter caps.
|
2001-09-14 19:45:20 +00:00
|
|
|
*
|
2002-01-13 22:22:42 +00:00
|
|
|
* Connects the source pad to the sink pad. The filter indicates the media type
|
|
|
|
* that should flow trought this connection.
|
2001-09-14 19:45:20 +00:00
|
|
|
*
|
2002-01-13 22:22:42 +00:00
|
|
|
* Returns: TRUE if the pad could be connected, FALSE otherwise
|
2001-09-14 19:45:20 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
2002-01-13 22:22:42 +00:00
|
|
|
gst_pad_connect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
2001-01-19 02:23:35 +00:00
|
|
|
GstRealPad *realsrc, *realsink;
|
2002-01-18 22:44:19 +00:00
|
|
|
gint num_decoupled = 0;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* generic checks */
|
2002-01-13 22:22:42 +00:00
|
|
|
g_return_val_if_fail (srcpad != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
|
|
|
|
g_return_val_if_fail (sinkpad != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
|
2001-03-12 21:02:12 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
GST_INFO (GST_CAT_PADS, "connecting %s:%s and %s:%s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* now we need to deal with the real/ghost stuff */
|
2002-01-13 22:22:42 +00:00
|
|
|
realsrc = GST_PAD_REALIZE (srcpad);
|
|
|
|
realsink = GST_PAD_REALIZE (sinkpad);
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
if ((GST_PAD (realsrc) != srcpad) || (GST_PAD (realsink) != sinkpad)) {
|
2001-05-25 21:00:07 +00:00
|
|
|
GST_INFO (GST_CAT_PADS, "*actually* connecting %s:%s and %s:%s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
|
2002-01-20 11:55:35 +00:00
|
|
|
}
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
g_return_val_if_fail (GST_RPAD_PEER (realsrc) == NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_RPAD_PEER (realsink) == NULL, FALSE);
|
2002-01-18 22:44:19 +00:00
|
|
|
g_return_val_if_fail (GST_PAD_PARENT (realsrc) != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_PAD_PARENT (realsink) != NULL, FALSE);
|
|
|
|
|
|
|
|
if (realsrc->sched && realsink->sched) {
|
|
|
|
if (GST_FLAG_IS_SET (GST_PAD_PARENT (realsrc), GST_ELEMENT_DECOUPLED))
|
|
|
|
num_decoupled++;
|
|
|
|
if (GST_FLAG_IS_SET (GST_PAD_PARENT (realsink), GST_ELEMENT_DECOUPLED))
|
|
|
|
num_decoupled++;
|
|
|
|
|
2002-01-19 15:22:19 +00:00
|
|
|
if (realsrc->sched != realsink->sched && num_decoupled != 1) {
|
2002-01-19 06:29:40 +00:00
|
|
|
g_warning ("connecting pads with different scheds requires exactly one decoupled element (queue)\n");
|
2002-01-18 22:44:19 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/* check for reversed directions and swap if necessary */
|
2002-01-13 22:22:42 +00:00
|
|
|
if ((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SINK) &&
|
|
|
|
(GST_RPAD_DIRECTION (realsink) == GST_PAD_SRC)) {
|
2001-05-25 21:00:07 +00:00
|
|
|
GstRealPad *temppad;
|
|
|
|
|
2001-01-19 02:23:35 +00:00
|
|
|
temppad = realsrc;
|
|
|
|
realsrc = realsink;
|
|
|
|
realsink = temppad;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2002-01-13 22:22:42 +00:00
|
|
|
g_return_val_if_fail ((GST_RPAD_DIRECTION (realsrc) == GST_PAD_SRC) &&
|
|
|
|
(GST_RPAD_DIRECTION (realsink) == GST_PAD_SINK), FALSE);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* first set peers */
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_RPAD_PEER (realsrc) = realsink;
|
|
|
|
GST_RPAD_PEER (realsink) = realsrc;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* try to negotiate the pads, we don't need to clear the caps here */
|
|
|
|
if (!gst_pad_try_reconnect_filtered_func (realsrc, realsink, filtercaps, FALSE)) {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_CAPS, "pads cannot connect");
|
2002-01-13 22:22:42 +00:00
|
|
|
|
|
|
|
GST_RPAD_PEER (realsrc) = NULL;
|
|
|
|
GST_RPAD_PEER (realsink) = NULL;
|
2001-03-12 21:02:12 +00:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-03-03 00:44:41 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
/* fire off a signal to each of the pads telling them that they've been connected */
|
2002-01-13 22:22:42 +00:00
|
|
|
g_signal_emit (G_OBJECT (realsrc), gst_real_pad_signals[REAL_CONNECTED], 0, realsink);
|
|
|
|
g_signal_emit (G_OBJECT (realsink), gst_real_pad_signals[REAL_CONNECTED], 0, realsrc);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* now tell the scheduler(s) */
|
2001-05-25 21:00:07 +00:00
|
|
|
if (realsrc->sched)
|
2001-12-04 22:12:50 +00:00
|
|
|
gst_scheduler_pad_connect (realsrc->sched, (GstPad *)realsrc, (GstPad *)realsink);
|
2001-05-25 21:00:07 +00:00
|
|
|
else if (realsink->sched)
|
2001-12-04 22:12:50 +00:00
|
|
|
gst_scheduler_pad_connect (realsink->sched, (GstPad *)realsrc, (GstPad *)realsink);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
|
|
|
GST_INFO (GST_CAT_PADS, "connected %s:%s and %s:%s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad));
|
2002-03-03 00:44:41 +00:00
|
|
|
gst_caps_debug (gst_pad_get_caps (GST_PAD_CAST (realsrc)), "caps of newly connected src pad");
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2001-03-12 21:02:12 +00:00
|
|
|
return TRUE;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_connect:
|
|
|
|
* @srcpad: the source pad to connect
|
|
|
|
* @sinkpad: the sink pad to connect
|
|
|
|
*
|
|
|
|
* Connects the source pad to the sink pad.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the pad could be connected, FALSE otherwise
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_pad_connect (GstPad *srcpad, GstPad *sinkpad)
|
|
|
|
{
|
|
|
|
return gst_pad_connect_filtered (srcpad, sinkpad, NULL);
|
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_set_parent:
|
2001-01-21 23:20:46 +00:00
|
|
|
* @pad: the pad to set the parent
|
2000-10-25 19:09:53 +00:00
|
|
|
* @parent: the object to set the parent to
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Sets the parent object of a pad.
|
2000-10-25 19:09:53 +00:00
|
|
|
*/
|
2001-01-21 23:20:46 +00:00
|
|
|
void
|
2000-11-01 13:49:41 +00:00
|
|
|
gst_pad_set_parent (GstPad *pad,
|
2001-01-29 00:06:02 +00:00
|
|
|
GstObject *parent)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
2001-01-29 00:06:02 +00:00
|
|
|
g_return_if_fail (GST_PAD_PARENT (pad) == NULL);
|
2000-11-01 13:49:41 +00:00
|
|
|
g_return_if_fail (parent != NULL);
|
2001-06-25 01:20:11 +00:00
|
|
|
g_return_if_fail (GST_IS_OBJECT (parent));
|
2000-11-01 13:49:41 +00:00
|
|
|
g_return_if_fail ((gpointer)pad != (gpointer)parent);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
gst_object_set_parent (GST_OBJECT (pad), parent);
|
|
|
|
}
|
|
|
|
|
2001-03-12 21:02:12 +00:00
|
|
|
/**
|
2001-05-27 14:37:29 +00:00
|
|
|
* gst_pad_get_parent:
|
|
|
|
* @pad: the pad to get the parent from
|
2001-03-12 21:02:12 +00:00
|
|
|
*
|
2001-05-27 14:37:29 +00:00
|
|
|
* Get the parent object of this pad.
|
2001-03-12 21:02:12 +00:00
|
|
|
*
|
2001-05-27 14:37:29 +00:00
|
|
|
* Returns: the parent object
|
2001-03-12 21:02:12 +00:00
|
|
|
*/
|
2001-05-27 14:37:29 +00:00
|
|
|
GstElement*
|
|
|
|
gst_pad_get_parent (GstPad *pad)
|
2001-03-12 21:02:12 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
|
|
|
|
2001-05-27 14:37:29 +00:00
|
|
|
return GST_PAD_PARENT (pad);
|
2001-03-12 21:02:12 +00:00
|
|
|
}
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
/**
|
2002-04-11 20:35:18 +00:00
|
|
|
* gst_pad_get_pad_template:
|
2001-05-27 14:37:29 +00:00
|
|
|
* @pad: the pad to get the padtemplate from
|
2001-01-29 00:06:02 +00:00
|
|
|
*
|
2001-05-27 14:37:29 +00:00
|
|
|
* Get the padtemplate object of this pad.
|
2001-01-29 00:06:02 +00:00
|
|
|
*
|
2001-05-27 14:37:29 +00:00
|
|
|
* Returns: the padtemplate object
|
2001-01-29 00:06:02 +00:00
|
|
|
*/
|
2001-05-27 14:37:29 +00:00
|
|
|
GstPadTemplate*
|
2002-04-11 20:35:18 +00:00
|
|
|
gst_pad_get_pad_template (GstPad *pad)
|
2001-01-29 00:06:02 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
2000-03-22 21:18:15 +00:00
|
|
|
|
2002-04-11 20:35:18 +00:00
|
|
|
return GST_PAD_PAD_TEMPLATE (pad);
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
|
2001-12-19 19:22:53 +00:00
|
|
|
|
2001-12-28 20:20:26 +00:00
|
|
|
/**
|
2002-05-25 15:36:59 +00:00
|
|
|
* gst_pad_set_scheduler:
|
2001-05-27 14:37:29 +00:00
|
|
|
* @pad: the pad to set the scheduler for
|
|
|
|
* @sched: The scheduler to set
|
|
|
|
*
|
2002-01-19 06:29:40 +00:00
|
|
|
* Set the scheduler for the pad
|
2001-05-27 14:37:29 +00:00
|
|
|
*/
|
2001-05-25 21:00:07 +00:00
|
|
|
void
|
2002-05-25 15:36:59 +00:00
|
|
|
gst_pad_set_scheduler (GstPad *pad, GstScheduler *sched)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
2001-12-19 19:22:53 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
GST_RPAD_SCHED(pad) = sched;
|
|
|
|
}
|
2001-12-19 19:22:53 +00:00
|
|
|
|
2001-05-27 14:37:29 +00:00
|
|
|
/**
|
2002-05-25 15:36:59 +00:00
|
|
|
* gst_pad_get_scheduler:
|
2001-05-27 14:37:29 +00:00
|
|
|
* @pad: the pad to get the scheduler from
|
|
|
|
*
|
|
|
|
* Get the scheduler of the pad
|
|
|
|
*
|
|
|
|
* Returns: the scheduler of the pad.
|
|
|
|
*/
|
2001-12-04 22:12:50 +00:00
|
|
|
GstScheduler*
|
2002-05-25 15:36:59 +00:00
|
|
|
gst_pad_get_scheduler (GstPad *pad)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
2001-12-19 19:22:53 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
return GST_RPAD_SCHED(pad);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2002-01-19 06:29:40 +00:00
|
|
|
/**
|
2002-05-25 15:36:59 +00:00
|
|
|
* gst_pad_unset_scheduler:
|
2002-01-19 06:29:40 +00:00
|
|
|
* @pad: the pad to unset the scheduler for
|
|
|
|
*
|
|
|
|
* Unset the scheduler for the pad
|
|
|
|
*/
|
|
|
|
void
|
2002-05-25 15:36:59 +00:00
|
|
|
gst_pad_unset_scheduler (GstPad *pad)
|
2002-01-19 06:29:40 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
|
|
|
|
|
|
|
GST_RPAD_SCHED(pad) = NULL;
|
|
|
|
}
|
|
|
|
|
2001-03-07 21:52:56 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_get_real_parent:
|
|
|
|
* @pad: the pad to get the parent from
|
|
|
|
*
|
|
|
|
* Get the real parent object of this pad. If the pad
|
|
|
|
* is a ghostpad, the actual owner of the real pad is
|
2001-05-27 14:37:29 +00:00
|
|
|
* returned, as opposed to the gst_pad_get_parent().
|
2001-03-07 21:52:56 +00:00
|
|
|
*
|
|
|
|
* Returns: the parent object
|
|
|
|
*/
|
2001-05-25 21:00:07 +00:00
|
|
|
GstElement*
|
2001-03-07 21:52:56 +00:00
|
|
|
gst_pad_get_real_parent (GstPad *pad)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
|
|
|
|
|
|
|
return GST_PAD_PARENT (GST_PAD (GST_PAD_REALIZE (pad)));
|
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
2001-01-20 02:57:46 +00:00
|
|
|
* gst_pad_add_ghost_pad:
|
2001-01-21 23:20:46 +00:00
|
|
|
* @pad: the pad to set the ghost parent
|
2001-01-20 02:57:46 +00:00
|
|
|
* @ghostpad: the ghost pad to add
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
2001-01-20 02:57:46 +00:00
|
|
|
* Add a ghost pad to a pad.
|
2000-10-25 19:09:53 +00:00
|
|
|
*/
|
2001-01-21 23:20:46 +00:00
|
|
|
void
|
2001-01-20 02:57:46 +00:00
|
|
|
gst_pad_add_ghost_pad (GstPad *pad,
|
2001-01-21 23:20:46 +00:00
|
|
|
GstPad *ghostpad)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
2001-01-19 02:23:35 +00:00
|
|
|
GstRealPad *realpad;
|
|
|
|
|
2000-11-01 13:49:41 +00:00
|
|
|
g_return_if_fail (pad != NULL);
|
2001-01-20 02:57:46 +00:00
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
|
|
|
g_return_if_fail (ghostpad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_GHOST_PAD (ghostpad));
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
realpad = GST_PAD_REALIZE (pad);
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2001-01-20 02:57:46 +00:00
|
|
|
realpad->ghostpads = g_list_prepend (realpad->ghostpads, ghostpad);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
2001-01-21 23:20:46 +00:00
|
|
|
* gst_pad_remove_ghost_pad:
|
|
|
|
* @pad: the pad to remove the ghost parent
|
2001-01-20 02:57:46 +00:00
|
|
|
* @ghostpad: the ghost pad to remove from the pad
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
2001-01-20 02:57:46 +00:00
|
|
|
* Remove a ghost pad from a pad.
|
2000-10-25 19:09:53 +00:00
|
|
|
*/
|
2001-01-21 23:20:46 +00:00
|
|
|
void
|
|
|
|
gst_pad_remove_ghost_pad (GstPad *pad,
|
|
|
|
GstPad *ghostpad)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
2001-01-19 02:23:35 +00:00
|
|
|
GstRealPad *realpad;
|
|
|
|
|
2000-11-01 13:49:41 +00:00
|
|
|
g_return_if_fail (pad != NULL);
|
2001-01-20 02:57:46 +00:00
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
|
|
|
g_return_if_fail (ghostpad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_GHOST_PAD (ghostpad));
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-19 09:37:32 +00:00
|
|
|
realpad = GST_PAD_REALIZE (pad);
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2001-01-20 02:57:46 +00:00
|
|
|
realpad->ghostpads = g_list_remove (realpad->ghostpads, ghostpad);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
2001-01-20 02:57:46 +00:00
|
|
|
* gst_pad_get_ghost_pad_list:
|
2000-10-25 19:09:53 +00:00
|
|
|
* @pad: the pad to get the ghost parents from
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Get the ghost parents of this pad.
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
2001-01-20 02:57:46 +00:00
|
|
|
* Returns: a GList of ghost pads
|
2000-10-25 19:09:53 +00:00
|
|
|
*/
|
2000-11-01 13:49:41 +00:00
|
|
|
GList*
|
2001-01-21 23:20:46 +00:00
|
|
|
gst_pad_get_ghost_pad_list (GstPad *pad)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
2001-01-20 02:57:46 +00:00
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-20 02:57:46 +00:00
|
|
|
return GST_PAD_REALIZE(pad)->ghostpads;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* an internal caps negotiation helper function does:
|
|
|
|
*
|
|
|
|
* 1. optinally calls the pad connect function with the provided caps
|
|
|
|
* 2. deal with the result code of the connect function
|
|
|
|
* 3. set fixed caps on the pad.
|
|
|
|
*/
|
2002-01-13 22:22:42 +00:00
|
|
|
static GstPadConnectReturn
|
2002-01-20 11:55:35 +00:00
|
|
|
gst_pad_try_set_caps_func (GstRealPad *pad, GstCaps *caps, gboolean notify)
|
2002-01-13 22:22:42 +00:00
|
|
|
{
|
|
|
|
GstCaps *oldcaps;
|
2002-03-03 00:44:41 +00:00
|
|
|
GstPadTemplate *template;
|
2002-01-20 11:55:35 +00:00
|
|
|
GstElement *parent = GST_PAD_PARENT (pad);
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2002-02-21 10:38:18 +00:00
|
|
|
/* thomas: FIXME: is this the right result to return ? */
|
|
|
|
g_return_val_if_fail (pad != NULL, GST_PAD_CONNECT_REFUSED);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), GST_PAD_CONNECT_REFUSED);
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* if this pad has a parent and the parent is not READY, delay the
|
|
|
|
* negotiation */
|
|
|
|
if (parent && GST_STATE (parent) < GST_STATE_READY)
|
2002-02-21 10:38:18 +00:00
|
|
|
{
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_CAPS, "parent %s of pad %s:%s is not ready",
|
2002-02-21 10:38:18 +00:00
|
|
|
GST_ELEMENT_NAME (parent), GST_DEBUG_PAD_NAME (pad));
|
2002-01-20 11:55:35 +00:00
|
|
|
return GST_PAD_CONNECT_DELAYED;
|
2002-02-21 10:38:18 +00:00
|
|
|
}
|
2002-01-20 11:55:35 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_INFO (GST_CAT_CAPS, "trying to set caps %p on pad %s:%s",
|
|
|
|
caps, GST_DEBUG_PAD_NAME (pad));
|
2002-03-03 00:44:41 +00:00
|
|
|
|
2002-04-11 20:35:18 +00:00
|
|
|
if ((template = gst_pad_get_pad_template (GST_PAD_CAST (pad)))) {
|
|
|
|
if (!gst_caps_intersect (caps, gst_pad_template_get_caps (template))) {
|
2002-03-03 00:44:41 +00:00
|
|
|
GST_INFO (GST_CAT_CAPS, "caps did not intersect with %s:%s's padtemplate",
|
|
|
|
GST_DEBUG_PAD_NAME (pad));
|
2002-04-02 16:38:05 +00:00
|
|
|
gst_caps_debug (caps, "caps themselves (attemped to set)");
|
2002-04-11 20:35:18 +00:00
|
|
|
gst_caps_debug (gst_pad_template_get_caps (template),
|
2002-03-03 00:44:41 +00:00
|
|
|
"pad template caps that did not agree with caps");
|
|
|
|
return GST_PAD_CONNECT_REFUSED;
|
|
|
|
}
|
|
|
|
/* given that the caps are fixed, we know that their intersection with the
|
|
|
|
* padtemplate caps is the same as caps itself */
|
|
|
|
}
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* we need to notify the connect function */
|
2002-01-13 22:22:42 +00:00
|
|
|
if (notify && GST_RPAD_CONNECTFUNC (pad)) {
|
|
|
|
GstPadConnectReturn res;
|
|
|
|
gchar *debug_string;
|
|
|
|
|
|
|
|
GST_INFO (GST_CAT_CAPS, "calling connect function on pad %s:%s",
|
|
|
|
GST_DEBUG_PAD_NAME (pad));
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* call the connect function */
|
|
|
|
res = GST_RPAD_CONNECTFUNC (pad) (GST_PAD (pad), caps);
|
2002-01-13 22:22:42 +00:00
|
|
|
|
|
|
|
switch (res) {
|
|
|
|
case GST_PAD_CONNECT_REFUSED:
|
|
|
|
debug_string = "REFUSED";
|
|
|
|
break;
|
|
|
|
case GST_PAD_CONNECT_OK:
|
|
|
|
debug_string = "OK";
|
|
|
|
break;
|
|
|
|
case GST_PAD_CONNECT_DONE:
|
|
|
|
debug_string = "DONE";
|
|
|
|
break;
|
|
|
|
case GST_PAD_CONNECT_DELAYED:
|
|
|
|
debug_string = "DELAYED";
|
|
|
|
break;
|
|
|
|
default:
|
2002-03-30 17:05:03 +00:00
|
|
|
g_warning ("unknown return code from connect function of pad %s:%s %d",
|
|
|
|
GST_DEBUG_PAD_NAME (pad), res);
|
2002-01-13 22:22:42 +00:00
|
|
|
return GST_PAD_CONNECT_REFUSED;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_INFO (GST_CAT_CAPS, "got reply %s (%d) from connect function on pad %s:%s",
|
|
|
|
debug_string, res, GST_DEBUG_PAD_NAME (pad));
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* done means the connect function called another caps negotiate function
|
|
|
|
* on this pad that succeeded, we dont need to continue */
|
2002-01-13 22:22:42 +00:00
|
|
|
if (res == GST_PAD_CONNECT_DONE) {
|
|
|
|
GST_INFO (GST_CAT_CAPS, "pad %s:%s is done", GST_DEBUG_PAD_NAME (pad));
|
|
|
|
return GST_PAD_CONNECT_DONE;
|
|
|
|
}
|
|
|
|
if (res == GST_PAD_CONNECT_REFUSED) {
|
|
|
|
GST_INFO (GST_CAT_CAPS, "pad %s:%s doesn't accept caps",
|
|
|
|
GST_DEBUG_PAD_NAME (pad));
|
|
|
|
return GST_PAD_CONNECT_REFUSED;
|
|
|
|
}
|
|
|
|
}
|
2002-02-20 16:44:46 +00:00
|
|
|
/* we can only set caps on the pad if they are fixed */
|
2002-01-13 22:22:42 +00:00
|
|
|
if (GST_CAPS_IS_FIXED (caps)) {
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
GST_INFO (GST_CAT_CAPS, "setting caps on pad %s:%s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (pad));
|
2002-01-20 11:55:35 +00:00
|
|
|
/* if we got this far all is ok, remove the old caps, set the new one */
|
|
|
|
oldcaps = GST_PAD_CAPS (pad);
|
|
|
|
if (caps) gst_caps_ref (caps);
|
|
|
|
GST_PAD_CAPS (pad) = caps;
|
|
|
|
if (oldcaps) gst_caps_unref (oldcaps);
|
2002-01-13 22:22:42 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
GST_INFO (GST_CAT_CAPS, "caps are not fixed on pad %s:%s, not setting them yet",
|
|
|
|
GST_DEBUG_PAD_NAME (pad));
|
|
|
|
}
|
|
|
|
|
|
|
|
return GST_PAD_CONNECT_OK;
|
|
|
|
}
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_try_set_caps:
|
|
|
|
* @pad: the pad to try to set the caps on
|
|
|
|
* @caps: the caps to set
|
|
|
|
*
|
|
|
|
* Try to set the caps on the given pad.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the caps could be set
|
|
|
|
*/
|
2002-01-13 22:22:42 +00:00
|
|
|
gboolean
|
|
|
|
gst_pad_try_set_caps (GstPad *pad, GstCaps *caps)
|
|
|
|
{
|
2002-01-20 11:55:35 +00:00
|
|
|
GstRealPad *peer, *realpad;
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
realpad = GST_PAD_REALIZE (pad);
|
|
|
|
peer = GST_RPAD_PEER (realpad);
|
2002-01-13 22:22:42 +00:00
|
|
|
|
|
|
|
GST_INFO (GST_CAT_CAPS, "trying to set caps %p on pad %s:%s",
|
2002-01-20 11:55:35 +00:00
|
|
|
caps, GST_DEBUG_PAD_NAME (realpad));
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2002-03-03 00:44:41 +00:00
|
|
|
gst_caps_debug (caps, "caps that we are trying to set");
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* setting non fixed caps on a pad is not allowed */
|
2002-01-13 22:22:42 +00:00
|
|
|
if (!GST_CAPS_IS_FIXED (caps)) {
|
2002-02-20 16:44:46 +00:00
|
|
|
GST_INFO (GST_CAT_CAPS, "trying to set unfixed caps on pad %s:%s, not allowed",
|
|
|
|
GST_DEBUG_PAD_NAME (realpad));
|
|
|
|
g_warning ("trying to set non fixed caps on pad %s:%s, not allowed",
|
2002-01-20 11:55:35 +00:00
|
|
|
GST_DEBUG_PAD_NAME (realpad));
|
2002-03-03 00:44:41 +00:00
|
|
|
gst_caps_debug (caps, "unfixed caps");
|
2002-01-13 22:22:42 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2002-03-03 00:44:41 +00:00
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* if we have a peer try to set the caps, notifying the peerpad
|
|
|
|
* if it has a connect function */
|
2002-02-21 10:38:18 +00:00
|
|
|
if (peer && (gst_pad_try_set_caps_func (peer, caps, TRUE) != GST_PAD_CONNECT_OK))
|
2002-02-20 16:44:46 +00:00
|
|
|
{
|
|
|
|
GST_INFO (GST_CAT_CAPS, "tried to set caps on peerpad %s:%s but couldn't",
|
|
|
|
GST_DEBUG_PAD_NAME (peer));
|
2002-01-13 22:22:42 +00:00
|
|
|
return FALSE;
|
2002-02-20 16:44:46 +00:00
|
|
|
}
|
2002-03-03 00:44:41 +00:00
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* then try to set our own caps, we don't need to be notified */
|
2002-02-21 10:38:18 +00:00
|
|
|
if (gst_pad_try_set_caps_func (realpad, caps, FALSE) != GST_PAD_CONNECT_OK)
|
2002-02-20 16:44:46 +00:00
|
|
|
{
|
|
|
|
GST_INFO (GST_CAT_CAPS, "tried to set own caps on pad %s:%s but couldn't",
|
|
|
|
GST_DEBUG_PAD_NAME (realpad));
|
2002-01-13 22:22:42 +00:00
|
|
|
return FALSE;
|
2002-02-20 16:44:46 +00:00
|
|
|
}
|
|
|
|
GST_INFO (GST_CAT_CAPS, "succeeded setting caps %p on pad %s:%s",
|
|
|
|
caps, GST_DEBUG_PAD_NAME (realpad));
|
2002-02-21 10:38:18 +00:00
|
|
|
g_assert (GST_PAD_CAPS (pad));
|
2002-02-20 16:44:46 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* this is a caps negotiation convenience routine, it performs:
|
|
|
|
*
|
|
|
|
* 1. optionally clear any pad caps
|
|
|
|
* 2. calculate the intersection between the two pad tamplate/getcaps caps
|
|
|
|
* 3. calculate the intersection with the (optional) filtercaps.
|
|
|
|
* 4. store the intersection in the pad filter
|
|
|
|
* 5. store the app filtercaps in the pad appfilter.
|
|
|
|
* 6. start the caps negotiation.
|
|
|
|
*/
|
2002-01-13 22:22:42 +00:00
|
|
|
static gboolean
|
2002-01-20 11:55:35 +00:00
|
|
|
gst_pad_try_reconnect_filtered_func (GstRealPad *srcpad, GstRealPad *sinkpad, GstCaps *filtercaps, gboolean clear)
|
2002-01-13 22:22:42 +00:00
|
|
|
{
|
|
|
|
GstCaps *srccaps, *sinkcaps;
|
|
|
|
GstCaps *intersection = NULL;
|
|
|
|
GstRealPad *realsrc, *realsink;
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
realsrc = GST_PAD_REALIZE (srcpad);
|
|
|
|
realsink = GST_PAD_REALIZE (sinkpad);
|
2002-01-13 22:22:42 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (GST_RPAD_PEER (realsrc) != NULL, FALSE);
|
2002-01-20 11:55:35 +00:00
|
|
|
g_return_val_if_fail (GST_RPAD_PEER (realsink) == realsrc, FALSE);
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* optinally clear the caps */
|
2002-01-13 22:22:42 +00:00
|
|
|
if (clear) {
|
|
|
|
GST_INFO (GST_CAT_PADS, "reconnect filtered %s:%s and %s:%s, clearing caps",
|
|
|
|
GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
|
|
|
|
|
|
|
|
GST_PAD_CAPS (GST_PAD (realsrc)) = NULL;
|
|
|
|
GST_PAD_CAPS (GST_PAD (realsink)) = NULL;
|
|
|
|
}
|
2002-01-20 11:55:35 +00:00
|
|
|
else {
|
|
|
|
GST_INFO (GST_CAT_PADS, "reconnect filtered %s:%s and %s:%s",
|
|
|
|
GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
|
|
|
|
}
|
2002-01-13 22:22:42 +00:00
|
|
|
|
|
|
|
srccaps = gst_pad_get_caps (GST_PAD (realsrc));
|
2002-04-21 13:32:35 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "dumping caps of pad %s:%s", GST_DEBUG_PAD_NAME (realsrc));
|
2002-03-03 00:44:41 +00:00
|
|
|
gst_caps_debug (srccaps, "caps of src pad (pre-reconnect)");
|
2002-01-13 22:22:42 +00:00
|
|
|
sinkcaps = gst_pad_get_caps (GST_PAD (realsink));
|
2002-04-21 13:32:35 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "dumping caps of pad %s:%s", GST_DEBUG_PAD_NAME (realsink));
|
2002-03-03 00:44:41 +00:00
|
|
|
gst_caps_debug (sinkcaps, "caps of sink pad (pre-reconnect)");
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* first take the intersection of the pad caps */
|
2002-01-13 22:22:42 +00:00
|
|
|
intersection = gst_caps_intersect (srccaps, sinkcaps);
|
|
|
|
|
|
|
|
/* if we have no intersection but one of the caps was not NULL.. */
|
2002-03-03 02:08:17 +00:00
|
|
|
if (!intersection && (srccaps || sinkcaps)) {
|
2002-01-20 11:55:35 +00:00
|
|
|
/* the intersection is NULL but the pad caps were not both NULL,
|
|
|
|
* this means they have no common format */
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_INFO (GST_CAT_PADS, "pads %s:%s and %s:%s have no common type",
|
|
|
|
GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
|
|
|
|
return FALSE;
|
2002-03-03 02:08:17 +00:00
|
|
|
} else if (intersection) {
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_INFO (GST_CAT_PADS, "pads %s:%s and %s:%s intersected to %s caps",
|
|
|
|
GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink),
|
|
|
|
((intersection && GST_CAPS_IS_FIXED (intersection)) ? "fixed" : "variable"));
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* then filter this against the app filter */
|
2002-01-13 22:22:42 +00:00
|
|
|
if (filtercaps) {
|
|
|
|
GstCaps *filtered_intersection = gst_caps_intersect (intersection, filtercaps);
|
|
|
|
|
|
|
|
/* get rid of the old intersection here */
|
|
|
|
gst_caps_unref (intersection);
|
|
|
|
|
|
|
|
if (!filtered_intersection) {
|
2002-01-20 11:55:35 +00:00
|
|
|
GST_INFO (GST_CAT_PADS, "filtered connection between pads %s:%s and %s:%s is empty",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
intersection = filtered_intersection;
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
/* keep a reference to the app caps */
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_RPAD_APPFILTER (realsink) = filtercaps;
|
|
|
|
GST_RPAD_APPFILTER (realsrc) = filtercaps;
|
|
|
|
}
|
|
|
|
}
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_CAPS, "setting filter for connection to:");
|
2002-03-03 00:44:41 +00:00
|
|
|
gst_caps_debug (intersection, "filter for connection");
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2002-03-03 02:08:17 +00:00
|
|
|
/* both the app filter and the filter, while stored on both peer pads, are the
|
|
|
|
equal to the same thing on both */
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_RPAD_FILTER (realsrc) = intersection;
|
|
|
|
GST_RPAD_FILTER (realsink) = intersection;
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
return gst_pad_perform_negotiate (GST_PAD (realsrc), GST_PAD (realsink));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_pad_perform_negotiate:
|
|
|
|
* @srcpad: a srcpad
|
|
|
|
* @sinkpad: a sinkpad
|
|
|
|
*
|
|
|
|
* Try to negotiate the pads.
|
|
|
|
*
|
|
|
|
* Returns: a boolean indicating the pad succesfully negotiated.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_pad_perform_negotiate (GstPad *srcpad, GstPad *sinkpad)
|
|
|
|
{
|
2002-03-03 02:08:17 +00:00
|
|
|
GstCaps *intersection, *filtered_intersection;
|
2002-01-20 11:55:35 +00:00
|
|
|
GstRealPad *realsrc, *realsink;
|
2002-03-03 02:08:17 +00:00
|
|
|
GstCaps *srccaps, *sinkcaps, *filter;
|
2002-01-20 11:55:35 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (srcpad != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (sinkpad != NULL, FALSE);
|
|
|
|
|
|
|
|
realsrc = GST_PAD_REALIZE (srcpad);
|
|
|
|
realsink = GST_PAD_REALIZE (sinkpad);
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_RPAD_PEER (realsrc) != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_RPAD_PEER (realsink) == realsrc, FALSE);
|
|
|
|
|
2002-03-03 02:08:17 +00:00
|
|
|
filter = GST_RPAD_APPFILTER (realsrc);
|
|
|
|
if (filter) {
|
|
|
|
GST_INFO (GST_CAT_PADS, "dumping filter for connection %s:%s-%s:%s",
|
|
|
|
GST_DEBUG_PAD_NAME (realsrc), GST_DEBUG_PAD_NAME (realsink));
|
|
|
|
gst_caps_debug (filter, "connection filter caps");
|
|
|
|
}
|
|
|
|
|
2002-02-19 22:10:37 +00:00
|
|
|
/* calculate the new caps here */
|
|
|
|
srccaps = gst_pad_get_caps (GST_PAD (realsrc));
|
2002-04-21 13:32:35 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "dumping caps of pad %s:%s", GST_DEBUG_PAD_NAME (realsrc));
|
2002-03-03 02:08:17 +00:00
|
|
|
gst_caps_debug (srccaps, "src caps, awaiting negotiation, after applying filter");
|
2002-02-19 22:10:37 +00:00
|
|
|
sinkcaps = gst_pad_get_caps (GST_PAD (realsink));
|
2002-04-21 13:32:35 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "dumping caps of pad %s:%s", GST_DEBUG_PAD_NAME (realsink));
|
2002-03-03 02:08:17 +00:00
|
|
|
gst_caps_debug (sinkcaps, "sink caps, awaiting negotiation, after applying filter");
|
2002-02-19 22:10:37 +00:00
|
|
|
intersection = gst_caps_intersect (srccaps, sinkcaps);
|
2002-03-03 02:08:17 +00:00
|
|
|
filtered_intersection = gst_caps_intersect (intersection, filter);
|
|
|
|
if (filtered_intersection) {
|
|
|
|
gst_caps_unref (intersection);
|
|
|
|
intersection = filtered_intersection;
|
|
|
|
}
|
2002-01-20 11:55:35 +00:00
|
|
|
|
2002-03-03 00:44:41 +00:00
|
|
|
/* no negotiation is performed if the pads have filtercaps */
|
2002-01-13 22:22:42 +00:00
|
|
|
if (intersection) {
|
|
|
|
GstPadConnectReturn res;
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
res = gst_pad_try_set_caps_func (realsrc, intersection, TRUE);
|
2002-01-13 22:22:42 +00:00
|
|
|
if (res == GST_PAD_CONNECT_REFUSED)
|
|
|
|
return FALSE;
|
|
|
|
if (res == GST_PAD_CONNECT_DONE)
|
|
|
|
return TRUE;
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
res = gst_pad_try_set_caps_func (realsink, intersection, TRUE);
|
2002-01-13 22:22:42 +00:00
|
|
|
if (res == GST_PAD_CONNECT_REFUSED)
|
|
|
|
return FALSE;
|
|
|
|
if (res == GST_PAD_CONNECT_DONE)
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2000-12-08 18:24:16 +00:00
|
|
|
/**
|
2002-01-13 22:22:42 +00:00
|
|
|
* gst_pad_try_reconnect_filtered:
|
2002-03-31 14:04:50 +00:00
|
|
|
* @srcpad: the source"pad to reconnect
|
|
|
|
* @sinkpad: the sink pad to reconnect
|
|
|
|
* @filtercaps: the capabilities to use in the reconnectiong
|
2000-12-08 18:24:16 +00:00
|
|
|
*
|
2002-01-13 22:22:42 +00:00
|
|
|
* Try to reconnect this pad and its peer with the specified caps
|
2001-03-21 21:43:56 +00:00
|
|
|
*
|
2002-01-13 22:22:42 +00:00
|
|
|
* Returns: a boolean indicating the peer pad could accept the caps.
|
2000-12-08 18:24:16 +00:00
|
|
|
*/
|
2001-03-18 02:42:30 +00:00
|
|
|
gboolean
|
2002-01-20 11:55:35 +00:00
|
|
|
gst_pad_try_reconnect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
|
2000-12-08 18:24:16 +00:00
|
|
|
{
|
2002-01-20 11:55:35 +00:00
|
|
|
GstRealPad *realsrc, *realsink;
|
|
|
|
|
|
|
|
g_return_val_if_fail (srcpad != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (sinkpad != NULL, FALSE);
|
|
|
|
|
|
|
|
realsrc = GST_PAD_REALIZE (srcpad);
|
|
|
|
realsink = GST_PAD_REALIZE (sinkpad);
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_RPAD_PEER (realsrc) != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_RPAD_PEER (realsink) == realsrc, FALSE);
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
return gst_pad_try_reconnect_filtered_func (realsrc, realsink, filtercaps, TRUE);
|
2002-01-13 22:22:42 +00:00
|
|
|
}
|
2000-12-08 18:24:16 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_reconnect_filtered:
|
2002-03-31 14:04:50 +00:00
|
|
|
* @srcpad: the source"pad to reconnect
|
|
|
|
* @sinkpad: the sink pad to reconnect
|
|
|
|
* @filtercaps: the capabilities to use in the reconnectiong
|
2002-01-13 22:22:42 +00:00
|
|
|
*
|
|
|
|
* Try to reconnect this pad and its peer with the specified caps.
|
|
|
|
*
|
|
|
|
* Returns: a boolean indicating the peer pad could accept the caps.
|
|
|
|
* if FALSE is returned, the pads are disconnected.
|
|
|
|
*/
|
|
|
|
gboolean
|
2002-01-20 11:55:35 +00:00
|
|
|
gst_pad_reconnect_filtered (GstPad *srcpad, GstPad *sinkpad, GstCaps *filtercaps)
|
2002-01-13 22:22:42 +00:00
|
|
|
{
|
2002-01-20 11:55:35 +00:00
|
|
|
GstRealPad *realsrc, *realsink;
|
2001-04-16 21:45:02 +00:00
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
g_return_val_if_fail (srcpad != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (sinkpad != NULL, FALSE);
|
|
|
|
|
|
|
|
realsrc = GST_PAD_REALIZE (srcpad);
|
|
|
|
realsink = GST_PAD_REALIZE (sinkpad);
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_RPAD_PEER (realsrc) != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_RPAD_PEER (realsink) == realsrc, FALSE);
|
|
|
|
|
|
|
|
if (!gst_pad_try_reconnect_filtered_func (realsrc, realsink, filtercaps, TRUE)) {
|
|
|
|
gst_pad_disconnect (srcpad, GST_PAD (GST_PAD_PEER (srcpad)));
|
2001-12-15 22:37:35 +00:00
|
|
|
return FALSE;
|
2001-03-18 16:17:39 +00:00
|
|
|
}
|
2002-01-13 22:22:42 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
2001-03-20 18:29:00 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_proxy_connect:
|
|
|
|
* @pad: the pad to proxy to
|
|
|
|
* @caps: the capabilities to use in the proxying
|
|
|
|
*
|
|
|
|
* Proxy the connect function to the specified pad.
|
|
|
|
*
|
|
|
|
* Returns: a boolean indicating the peer pad could accept the caps.
|
|
|
|
*/
|
|
|
|
GstPadConnectReturn
|
|
|
|
gst_pad_proxy_connect (GstPad *pad, GstCaps *caps)
|
|
|
|
{
|
2002-01-20 11:55:35 +00:00
|
|
|
GstRealPad *peer, *realpad;
|
|
|
|
|
|
|
|
realpad = GST_PAD_REALIZE (pad);
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
peer = GST_RPAD_PEER (realpad);
|
2001-03-12 21:02:12 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_INFO (GST_CAT_CAPS, "proxy connect to pad %s:%s",
|
2002-01-20 11:55:35 +00:00
|
|
|
GST_DEBUG_PAD_NAME (realpad));
|
2001-04-16 21:45:02 +00:00
|
|
|
|
2002-03-30 17:05:03 +00:00
|
|
|
if (peer && gst_pad_try_set_caps_func (peer, caps, TRUE) < 0)
|
2002-01-13 22:22:42 +00:00
|
|
|
return GST_PAD_CONNECT_REFUSED;
|
2002-03-30 17:05:03 +00:00
|
|
|
if (gst_pad_try_set_caps_func (realpad, caps, FALSE) < 0)
|
2002-01-13 22:22:42 +00:00
|
|
|
return GST_PAD_CONNECT_REFUSED;
|
|
|
|
|
|
|
|
return GST_PAD_CONNECT_OK;
|
2000-12-08 18:24:16 +00:00
|
|
|
}
|
2000-12-31 17:02:47 +00:00
|
|
|
|
2000-12-08 18:24:16 +00:00
|
|
|
/**
|
2001-03-21 21:43:56 +00:00
|
|
|
* gst_pad_get_caps:
|
2000-12-08 18:24:16 +00:00
|
|
|
* @pad: the pad to get the capabilities from
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Get the capabilities of this pad.
|
2000-12-08 18:24:16 +00:00
|
|
|
*
|
2001-03-21 21:43:56 +00:00
|
|
|
* Returns: the capabilities of this pad
|
2000-12-08 18:24:16 +00:00
|
|
|
*/
|
2001-03-12 21:02:12 +00:00
|
|
|
GstCaps*
|
|
|
|
gst_pad_get_caps (GstPad *pad)
|
2000-12-08 18:24:16 +00:00
|
|
|
{
|
2002-01-20 11:55:35 +00:00
|
|
|
GstRealPad *realpad;
|
|
|
|
|
2000-12-08 18:24:16 +00:00
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
realpad = GST_PAD_REALIZE (pad);
|
|
|
|
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_CAPS, "get pad caps of %s:%s (%p)",
|
2002-01-20 11:55:35 +00:00
|
|
|
GST_DEBUG_PAD_NAME (realpad), realpad);
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
if (GST_PAD_CAPS (realpad)) {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_CAPS, "using pad real caps");
|
2002-01-20 11:55:35 +00:00
|
|
|
return GST_PAD_CAPS (realpad);
|
2002-01-13 22:22:42 +00:00
|
|
|
}
|
2002-01-20 11:55:35 +00:00
|
|
|
else if GST_RPAD_GETCAPSFUNC (realpad) {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_CAPS, "using pad get function");
|
2002-01-20 11:55:35 +00:00
|
|
|
return GST_RPAD_GETCAPSFUNC (realpad) (GST_PAD_CAST (realpad), NULL);
|
2002-01-13 22:22:42 +00:00
|
|
|
}
|
2002-04-11 20:35:18 +00:00
|
|
|
else if (GST_PAD_PAD_TEMPLATE (realpad)) {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_CAPS, "using pad template");
|
2002-04-11 20:35:18 +00:00
|
|
|
return GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (realpad));
|
2002-01-13 22:22:42 +00:00
|
|
|
}
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_CAPS, "pad has no caps");
|
2001-03-18 02:42:30 +00:00
|
|
|
|
|
|
|
return NULL;
|
2000-12-08 18:24:16 +00:00
|
|
|
}
|
|
|
|
|
2001-03-21 21:43:56 +00:00
|
|
|
/**
|
2002-04-11 20:35:18 +00:00
|
|
|
* gst_pad_get_pad_template_caps:
|
2001-03-21 21:43:56 +00:00
|
|
|
* @pad: the pad to get the capabilities from
|
|
|
|
*
|
|
|
|
* Get the capabilities of this pad.
|
|
|
|
*
|
|
|
|
* Returns: a list of the capabilities of this pad
|
|
|
|
*/
|
2001-03-18 02:42:30 +00:00
|
|
|
GstCaps*
|
2002-04-11 20:35:18 +00:00
|
|
|
gst_pad_get_pad_template_caps (GstPad *pad)
|
2001-03-18 02:42:30 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
|
|
|
|
2002-04-11 20:35:18 +00:00
|
|
|
if (GST_PAD_PAD_TEMPLATE (pad))
|
|
|
|
return GST_PAD_TEMPLATE_CAPS (GST_PAD_PAD_TEMPLATE (pad));
|
2001-03-18 02:42:30 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-12-31 17:02:47 +00:00
|
|
|
/**
|
2002-04-11 20:35:18 +00:00
|
|
|
* gst_pad_template_get_caps_by_name:
|
2001-03-21 21:43:56 +00:00
|
|
|
* @templ: the padtemplate to get the capabilities from
|
2000-12-31 17:02:47 +00:00
|
|
|
* @name: the name of the capability to get
|
|
|
|
*
|
2001-03-21 21:43:56 +00:00
|
|
|
* Get the capability with the given name from this padtemplate.
|
2000-12-31 17:02:47 +00:00
|
|
|
*
|
|
|
|
* Returns: a capability or NULL if not found
|
|
|
|
*/
|
2001-03-12 21:02:12 +00:00
|
|
|
GstCaps*
|
2002-04-11 20:35:18 +00:00
|
|
|
gst_pad_template_get_caps_by_name (GstPadTemplate *templ, const gchar *name)
|
2000-12-31 17:02:47 +00:00
|
|
|
{
|
2001-03-12 21:02:12 +00:00
|
|
|
GstCaps *caps;
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2001-03-12 21:02:12 +00:00
|
|
|
g_return_val_if_fail (templ != NULL, NULL);
|
2000-12-31 17:02:47 +00:00
|
|
|
|
2002-04-11 20:35:18 +00:00
|
|
|
caps = GST_PAD_TEMPLATE_CAPS (templ);
|
2001-03-12 21:02:12 +00:00
|
|
|
if (!caps)
|
|
|
|
return NULL;
|
2001-01-21 23:20:46 +00:00
|
|
|
|
2001-03-12 21:02:12 +00:00
|
|
|
return gst_caps_get_by_name (caps, name);
|
2000-12-31 17:02:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_pad_check_compatibility:
|
|
|
|
* @srcpad: the srcpad to check
|
|
|
|
* @sinkpad: the sinkpad to check against
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Check if two pads have compatible capabilities.
|
2000-12-31 17:02:47 +00:00
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Returns: TRUE if they are compatible or the capabilities
|
2000-12-31 17:02:47 +00:00
|
|
|
* could not be checked
|
|
|
|
*/
|
2001-01-21 23:20:46 +00:00
|
|
|
gboolean
|
|
|
|
gst_pad_check_compatibility (GstPad *srcpad, GstPad *sinkpad)
|
2000-12-31 17:02:47 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (srcpad != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (srcpad), FALSE);
|
|
|
|
g_return_val_if_fail (sinkpad != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (sinkpad), FALSE);
|
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
if (GST_PAD_CAPS (srcpad) && GST_PAD_CAPS (sinkpad)) {
|
|
|
|
if (!gst_caps_check_compatibility (GST_PAD_CAPS (srcpad), GST_PAD_CAPS (sinkpad))) {
|
2000-12-31 17:02:47 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "could not check capabilities of pads (%s:%s) and (%s:%s) %p %p",
|
2001-03-12 21:02:12 +00:00
|
|
|
GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad),
|
|
|
|
GST_PAD_CAPS (srcpad), GST_PAD_CAPS (sinkpad));
|
2000-12-31 17:02:47 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_get_peer:
|
|
|
|
* @pad: the pad to get the peer from
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Get the peer pad of this pad.
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
|
|
|
* Returns: the peer pad
|
|
|
|
*/
|
2000-11-01 13:49:41 +00:00
|
|
|
GstPad*
|
2001-01-21 23:20:46 +00:00
|
|
|
gst_pad_get_peer (GstPad *pad)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
return GST_PAD (GST_PAD_PEER (pad));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_pad_get_allowed_caps:
|
|
|
|
* @pad: the pad to get the allowed caps from
|
|
|
|
*
|
2002-03-03 02:08:17 +00:00
|
|
|
* Get the caps of the allowed media types that can
|
2002-01-13 22:22:42 +00:00
|
|
|
* go through this pad.
|
|
|
|
*
|
2002-03-03 02:08:17 +00:00
|
|
|
* Returns: the allowed caps, newly allocated
|
2002-01-13 22:22:42 +00:00
|
|
|
*/
|
|
|
|
GstCaps*
|
|
|
|
gst_pad_get_allowed_caps (GstPad *pad)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
|
|
|
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PROPERTIES, "get allowed caps of %s:%s", GST_DEBUG_PAD_NAME (pad));
|
2002-01-20 11:55:35 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
return gst_caps_copy (GST_RPAD_FILTER (pad));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2002-03-31 14:04:50 +00:00
|
|
|
* gst_pad_recalc_allowed_caps:
|
2002-03-03 02:08:17 +00:00
|
|
|
* @pad: the pad to recaculate the caps of
|
2002-01-13 22:22:42 +00:00
|
|
|
*
|
2002-03-31 14:04:50 +00:00
|
|
|
* Attempt to reconnect the pad to its peer through its filter,
|
|
|
|
* set with gst_pad_[re]connect_filtered. This function is useful when a
|
|
|
|
* plugin has new capabilities on a pad and wants to notify the peer.
|
2002-01-13 22:22:42 +00:00
|
|
|
*
|
2002-03-03 02:08:17 +00:00
|
|
|
* Returns: TRUE on success, FALSE otherwise.
|
2002-01-13 22:22:42 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_pad_recalc_allowed_caps (GstPad *pad)
|
|
|
|
{
|
|
|
|
GstRealPad *peer;
|
|
|
|
|
2002-02-19 22:10:37 +00:00
|
|
|
g_return_val_if_fail (pad != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
|
2002-01-13 22:22:42 +00:00
|
|
|
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PROPERTIES, "set allowed caps of %s:%s", GST_DEBUG_PAD_NAME (pad));
|
2002-01-13 22:22:42 +00:00
|
|
|
|
|
|
|
peer = GST_RPAD_PEER (pad);
|
|
|
|
if (peer)
|
2002-02-19 22:10:37 +00:00
|
|
|
return gst_pad_try_reconnect_filtered (pad, GST_PAD (peer), GST_RPAD_APPFILTER (pad));
|
|
|
|
|
|
|
|
return TRUE;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-04-17 21:14:55 +00:00
|
|
|
/**
|
2001-04-19 22:25:04 +00:00
|
|
|
* gst_pad_get_bufferpool:
|
2001-04-17 21:14:55 +00:00
|
|
|
* @pad: the pad to get the bufferpool from
|
|
|
|
*
|
2001-04-19 22:25:04 +00:00
|
|
|
* Get the bufferpool of the peer pad of the given
|
2002-03-03 02:08:17 +00:00
|
|
|
* pad.
|
2001-04-17 21:14:55 +00:00
|
|
|
*
|
|
|
|
* Returns: The GstBufferPool or NULL.
|
|
|
|
*/
|
2001-04-16 21:45:02 +00:00
|
|
|
GstBufferPool*
|
|
|
|
gst_pad_get_bufferpool (GstPad *pad)
|
|
|
|
{
|
|
|
|
GstRealPad *peer;
|
|
|
|
|
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
peer = GST_RPAD_PEER (pad);
|
2001-04-16 21:45:02 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
if (!peer)
|
|
|
|
return NULL;
|
2001-04-16 21:45:02 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_ENTER ("(%s:%s)", GST_DEBUG_PAD_NAME (pad));
|
2001-04-16 21:45:02 +00:00
|
|
|
|
|
|
|
if (peer->bufferpoolfunc) {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "calling bufferpoolfunc &%s (@%p) of peer pad %s:%s",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_FUNCPTR_NAME (peer->bufferpoolfunc), &peer->bufferpoolfunc, GST_DEBUG_PAD_NAME (((GstPad*) peer)));
|
|
|
|
return (peer->bufferpoolfunc) (((GstPad*) peer));
|
2001-04-16 21:45:02 +00:00
|
|
|
} else {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "no bufferpoolfunc for peer pad %s:%s at %p",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_DEBUG_PAD_NAME (((GstPad*) peer)), &peer->bufferpoolfunc);
|
2001-04-16 21:45:02 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-21 23:20:46 +00:00
|
|
|
static void
|
2001-09-28 19:16:02 +00:00
|
|
|
gst_real_pad_dispose (GObject *object)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
|
|
|
GstPad *pad = GST_PAD (object);
|
2001-09-28 19:16:02 +00:00
|
|
|
|
2002-01-27 22:35:08 +00:00
|
|
|
/* No connected pad can ever be disposed.
|
|
|
|
* It has to have a parent to be connected and a parent would hold a reference */
|
|
|
|
g_assert (GST_PAD_PEER (pad) == NULL);
|
2002-02-02 13:34:44 +00:00
|
|
|
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_REFCOUNTING, "dispose %s:%s", GST_DEBUG_PAD_NAME(pad));
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-04-11 20:35:18 +00:00
|
|
|
if (GST_PAD_PAD_TEMPLATE (pad)){
|
|
|
|
GST_DEBUG (GST_CAT_REFCOUNTING, "unreffing padtemplate'%s'", GST_OBJECT_NAME (GST_PAD_PAD_TEMPLATE (pad)));
|
|
|
|
gst_object_unref (GST_OBJECT (GST_PAD_PAD_TEMPLATE (pad)));
|
|
|
|
GST_PAD_PAD_TEMPLATE (pad) = NULL;
|
2001-09-28 19:16:02 +00:00
|
|
|
}
|
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
/* we destroy the ghostpads, because they are nothing without the real pad */
|
2001-05-25 21:00:07 +00:00
|
|
|
if (GST_REAL_PAD (pad)->ghostpads) {
|
|
|
|
GList *orig, *ghostpads;
|
|
|
|
|
|
|
|
orig = ghostpads = g_list_copy (GST_REAL_PAD (pad)->ghostpads);
|
|
|
|
|
|
|
|
while (ghostpads) {
|
|
|
|
GstPad *ghostpad = GST_PAD (ghostpads->data);
|
|
|
|
|
2001-09-28 19:16:02 +00:00
|
|
|
if (GST_IS_ELEMENT (GST_OBJECT_PARENT (ghostpad))){
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_REFCOUNTING, "removing ghost pad from element '%s'",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_OBJECT_NAME (GST_OBJECT_PARENT (ghostpad)));
|
|
|
|
|
2001-12-19 19:22:53 +00:00
|
|
|
gst_element_remove_ghost_pad (GST_ELEMENT (GST_OBJECT_PARENT (ghostpad)), GST_PAD (ghostpad));
|
2001-09-28 19:16:02 +00:00
|
|
|
}
|
2001-05-25 21:00:07 +00:00
|
|
|
ghostpads = g_list_next (ghostpads);
|
|
|
|
}
|
|
|
|
g_list_free (orig);
|
|
|
|
g_list_free (GST_REAL_PAD(pad)->ghostpads);
|
|
|
|
}
|
2001-09-29 11:00:30 +00:00
|
|
|
|
2001-12-19 19:22:53 +00:00
|
|
|
if (GST_IS_ELEMENT (GST_OBJECT_PARENT (pad))){
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_REFCOUNTING, "removing pad from element '%s'",
|
2002-01-13 22:22:42 +00:00
|
|
|
GST_OBJECT_NAME (GST_OBJECT (GST_ELEMENT (GST_OBJECT_PARENT (pad)))));
|
|
|
|
|
2001-12-19 19:22:53 +00:00
|
|
|
gst_element_remove_pad (GST_ELEMENT (GST_OBJECT_PARENT (pad)), pad);
|
|
|
|
}
|
|
|
|
|
2001-09-28 19:16:02 +00:00
|
|
|
G_OBJECT_CLASS (real_pad_parent_class)->dispose (object);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-09-27 19:33:10 +00:00
|
|
|
|
2001-06-25 06:45:56 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2000-09-27 19:33:10 +00:00
|
|
|
/**
|
2000-10-25 19:09:53 +00:00
|
|
|
* gst_pad_load_and_connect:
|
2001-01-29 00:06:02 +00:00
|
|
|
* @self: the XML node to read the description from
|
|
|
|
* @parent: the element that has the pad
|
2000-09-27 19:33:10 +00:00
|
|
|
*
|
|
|
|
* Read the pad definition from the XML node and connect the given pad
|
2001-01-29 00:06:02 +00:00
|
|
|
* in element to a pad of an element up in the hierarchy.
|
2000-09-27 19:33:10 +00:00
|
|
|
*/
|
2001-01-21 23:20:46 +00:00
|
|
|
void
|
2001-01-29 00:06:02 +00:00
|
|
|
gst_pad_load_and_connect (xmlNodePtr self,
|
|
|
|
GstObject *parent)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
2001-02-15 18:42:13 +00:00
|
|
|
xmlNodePtr field = self->xmlChildrenNode;
|
2000-10-08 22:17:11 +00:00
|
|
|
GstPad *pad = NULL, *targetpad;
|
|
|
|
guchar *peer = NULL;
|
2000-09-27 19:33:10 +00:00
|
|
|
gchar **split;
|
|
|
|
GstElement *target;
|
2001-01-29 00:06:02 +00:00
|
|
|
GstObject *grandparent;
|
2000-09-27 19:33:10 +00:00
|
|
|
|
|
|
|
while (field) {
|
2001-01-29 00:06:02 +00:00
|
|
|
if (!strcmp (field->name, "name")) {
|
|
|
|
pad = gst_element_get_pad (GST_ELEMENT (parent), xmlNodeGetContent (field));
|
2000-09-27 19:33:10 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(field->name, "peer")) {
|
2001-09-13 20:12:17 +00:00
|
|
|
peer = xmlNodeGetContent (field);
|
2000-09-27 19:33:10 +00:00
|
|
|
}
|
|
|
|
field = field->next;
|
|
|
|
}
|
2001-01-29 00:06:02 +00:00
|
|
|
g_return_if_fail (pad != NULL);
|
2000-12-16 17:12:28 +00:00
|
|
|
|
|
|
|
if (peer == NULL) return;
|
2000-09-27 19:33:10 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
split = g_strsplit (peer, ".", 2);
|
2000-09-27 19:33:10 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
g_return_if_fail (split[0] != NULL);
|
|
|
|
g_return_if_fail (split[1] != NULL);
|
2000-09-27 19:33:10 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
grandparent = gst_object_get_parent (parent);
|
|
|
|
|
|
|
|
if (grandparent && GST_IS_BIN (grandparent)) {
|
|
|
|
target = gst_bin_get_by_name_recurse_up (GST_BIN (grandparent), split[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
goto cleanup;
|
2000-09-27 19:33:10 +00:00
|
|
|
|
|
|
|
if (target == NULL) goto cleanup;
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
targetpad = gst_element_get_pad (target, split[1]);
|
2000-09-27 19:33:10 +00:00
|
|
|
|
2000-12-08 18:24:16 +00:00
|
|
|
if (targetpad == NULL) goto cleanup;
|
2000-09-27 19:33:10 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
gst_pad_connect (pad, targetpad);
|
2000-09-27 19:33:10 +00:00
|
|
|
|
|
|
|
cleanup:
|
2001-01-29 00:06:02 +00:00
|
|
|
g_strfreev (split);
|
2000-09-27 19:33:10 +00:00
|
|
|
}
|
2001-03-12 21:02:12 +00:00
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_save_thyself:
|
|
|
|
* @pad: the pad to save
|
|
|
|
* @parent: the parent XML node to save the description in
|
|
|
|
*
|
|
|
|
* Saves the pad into an xml representation
|
|
|
|
*
|
|
|
|
* Returns: the xml representation of the pad
|
|
|
|
*/
|
2001-01-29 00:06:02 +00:00
|
|
|
static xmlNodePtr
|
|
|
|
gst_pad_save_thyself (GstObject *object,
|
2001-01-21 23:20:46 +00:00
|
|
|
xmlNodePtr parent)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
2001-01-19 02:23:35 +00:00
|
|
|
GstRealPad *realpad;
|
2000-01-30 09:03:00 +00:00
|
|
|
GstPad *peer;
|
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
g_return_val_if_fail (GST_IS_REAL_PAD (object), NULL);
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
realpad = GST_REAL_PAD(object);
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
xmlNewChild(parent,NULL,"name", GST_PAD_NAME (realpad));
|
2001-01-19 09:37:32 +00:00
|
|
|
if (GST_RPAD_PEER(realpad) != NULL) {
|
|
|
|
peer = GST_PAD(GST_RPAD_PEER(realpad));
|
2001-12-14 22:59:21 +00:00
|
|
|
/* first check to see if the peer's parent's parent is the same */
|
|
|
|
/* we just save it off */
|
2001-01-29 00:06:02 +00:00
|
|
|
xmlNewChild(parent,NULL,"peer",g_strdup_printf("%s.%s",
|
|
|
|
GST_OBJECT_NAME (GST_PAD_PARENT (peer)), GST_PAD_NAME (peer)));
|
2000-01-30 09:03:00 +00:00
|
|
|
} else
|
2000-09-27 19:33:10 +00:00
|
|
|
xmlNewChild(parent,NULL,"peer","");
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-09-27 19:33:10 +00:00
|
|
|
return parent;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2000-10-25 19:09:53 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_ghost_save_thyself:
|
|
|
|
* @pad: the pad to save
|
|
|
|
* @bin: the bin
|
|
|
|
* @parent: the parent XML node to save the description in
|
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Saves the ghost pad into an xml representation.
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
|
|
|
* Returns: the xml representation of the pad
|
|
|
|
*/
|
2001-01-21 23:20:46 +00:00
|
|
|
xmlNodePtr
|
2000-11-01 13:49:41 +00:00
|
|
|
gst_pad_ghost_save_thyself (GstPad *pad,
|
|
|
|
GstElement *bin,
|
2001-01-21 23:20:46 +00:00
|
|
|
xmlNodePtr parent)
|
2000-11-01 13:49:41 +00:00
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
xmlNodePtr self;
|
|
|
|
|
2001-01-19 09:37:32 +00:00
|
|
|
g_return_val_if_fail (GST_IS_GHOST_PAD (pad), NULL);
|
|
|
|
|
2002-01-20 11:55:35 +00:00
|
|
|
self = xmlNewChild (parent, NULL, "ghostpad", NULL);
|
|
|
|
xmlNewChild (self, NULL, "name", GST_PAD_NAME (pad));
|
|
|
|
xmlNewChild (self, NULL, "parent", GST_OBJECT_NAME (GST_PAD_PARENT (pad)));
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* FIXME FIXME FIXME! */
|
2001-01-19 09:37:32 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
return self;
|
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
#endif /* GST_DISABLE_LOADSAVE */
|
2000-12-12 19:29:43 +00:00
|
|
|
|
2000-12-28 00:18:26 +00:00
|
|
|
#ifndef gst_pad_push
|
2001-02-22 23:18:51 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_push:
|
|
|
|
* @pad: the pad to push
|
|
|
|
* @buf: the buffer to push
|
|
|
|
*
|
|
|
|
* Push a buffer to the peer of the pad.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_pad_push (GstPad *pad, GstBuffer *buf)
|
|
|
|
{
|
|
|
|
GstRealPad *peer = GST_RPAD_PEER (pad);
|
|
|
|
|
|
|
|
GST_DEBUG_ENTER ("(%s:%s)", GST_DEBUG_PAD_NAME (pad));
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-05-30 20:36:01 +00:00
|
|
|
g_return_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SRC);
|
2001-12-22 21:18:17 +00:00
|
|
|
|
2001-12-20 02:41:34 +00:00
|
|
|
if (!peer) {
|
2001-12-22 21:18:17 +00:00
|
|
|
g_warning ("push on pad %s:%s but it is unconnected", GST_DEBUG_PAD_NAME (pad));
|
2001-12-20 02:41:34 +00:00
|
|
|
}
|
2001-11-14 21:08:44 +00:00
|
|
|
else {
|
2001-12-22 21:18:17 +00:00
|
|
|
if (peer->chainhandler) {
|
|
|
|
if (buf) {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_DATAFLOW, "calling chainhandler &%s of peer pad %s:%s",
|
2001-12-22 21:18:17 +00:00
|
|
|
GST_DEBUG_FUNCPTR_NAME (peer->chainhandler), GST_DEBUG_PAD_NAME (GST_PAD (peer)));
|
|
|
|
(peer->chainhandler) (GST_PAD_CAST (peer), buf);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
g_warning ("trying to push a NULL buffer on pad %s:%s", GST_DEBUG_PAD_NAME (peer));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
g_warning ("(internal error) push on pad %s:%s but it has no chainhandler", GST_DEBUG_PAD_NAME (peer));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* clean up the mess here */
|
|
|
|
if (buf != NULL) {
|
|
|
|
if (GST_IS_BUFFER (buf))
|
|
|
|
gst_buffer_unref (buf);
|
|
|
|
else
|
2001-12-24 15:14:03 +00:00
|
|
|
gst_event_free (GST_EVENT (buf));
|
2001-11-14 21:08:44 +00:00
|
|
|
}
|
2000-12-28 00:18:26 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef gst_pad_pull
|
2001-02-22 23:18:51 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_pull:
|
|
|
|
* @pad: the pad to pull
|
|
|
|
*
|
|
|
|
* Pull a buffer from the peer pad.
|
|
|
|
*
|
|
|
|
* Returns: a new buffer from the peer pad.
|
|
|
|
*/
|
|
|
|
GstBuffer*
|
|
|
|
gst_pad_pull (GstPad *pad)
|
|
|
|
{
|
2002-05-26 03:23:25 +00:00
|
|
|
GstRealPad *peer;
|
|
|
|
|
|
|
|
peer = GST_RPAD_PEER (pad);
|
2001-02-22 23:18:51 +00:00
|
|
|
|
2001-01-01 03:14:40 +00:00
|
|
|
GST_DEBUG_ENTER("(%s:%s)",GST_DEBUG_PAD_NAME(pad));
|
2001-02-22 23:18:51 +00:00
|
|
|
|
2001-05-30 20:36:01 +00:00
|
|
|
g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK, NULL);
|
2001-09-14 01:57:09 +00:00
|
|
|
|
2001-12-20 02:41:34 +00:00
|
|
|
if (!peer) {
|
2001-12-22 21:18:17 +00:00
|
|
|
gst_element_error (GST_PAD_PARENT (pad),
|
|
|
|
"pull on pad %s:%s but it was unconnected",
|
|
|
|
GST_ELEMENT_NAME (GST_PAD_PARENT (pad)), GST_PAD_NAME (pad),
|
|
|
|
NULL);
|
2001-12-20 02:41:34 +00:00
|
|
|
}
|
2001-12-22 21:18:17 +00:00
|
|
|
else {
|
|
|
|
if (peer->gethandler) {
|
|
|
|
GstBuffer *buf;
|
|
|
|
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_DATAFLOW, "calling gethandler %s of peer pad %s:%s",
|
2001-12-22 21:18:17 +00:00
|
|
|
GST_DEBUG_FUNCPTR_NAME (peer->gethandler), GST_DEBUG_PAD_NAME (peer));
|
|
|
|
|
|
|
|
buf = (peer->gethandler) (GST_PAD_CAST (peer));
|
2002-05-26 03:23:25 +00:00
|
|
|
|
2001-12-22 21:18:17 +00:00
|
|
|
if (buf)
|
|
|
|
return buf;
|
2002-05-26 03:23:25 +00:00
|
|
|
|
2001-12-22 21:18:17 +00:00
|
|
|
/* no null buffers allowed */
|
|
|
|
gst_element_error (GST_PAD_PARENT (pad),
|
|
|
|
"NULL buffer during pull on %s:%s", GST_DEBUG_PAD_NAME (pad), NULL);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
gst_element_error (GST_PAD_PARENT (pad),
|
|
|
|
"(internal error) pull on pad %s:%s but the peer pad %s:%s has no gethandler",
|
|
|
|
GST_DEBUG_PAD_NAME (pad), GST_DEBUG_PAD_NAME (peer),
|
|
|
|
NULL);
|
|
|
|
}
|
2000-12-28 00:18:26 +00:00
|
|
|
}
|
2001-12-22 21:18:17 +00:00
|
|
|
return NULL;
|
2000-12-28 00:18:26 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-07-11 22:52:48 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_peek:
|
|
|
|
* @pad: the pad to peek
|
|
|
|
*
|
|
|
|
* Peek for a buffer from the peer pad.
|
|
|
|
*
|
|
|
|
* Returns: a from the peer pad or NULL if the peer has no buffer.
|
|
|
|
*/
|
|
|
|
GstBuffer*
|
|
|
|
gst_pad_peek (GstPad *pad)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK, NULL);
|
|
|
|
|
|
|
|
return GST_RPAD_BUFPEN (GST_RPAD_PEER (pad));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_pad_select:
|
|
|
|
* @padlist: A list of pads
|
|
|
|
*
|
|
|
|
* Wait for a buffer on the list of pads.
|
|
|
|
*
|
|
|
|
* Returns: The pad that has a buffer available, use
|
|
|
|
* #gst_pad_pull to get the buffer.
|
|
|
|
*/
|
|
|
|
GstPad*
|
|
|
|
gst_pad_select (GList *padlist)
|
|
|
|
{
|
2001-08-10 17:34:59 +00:00
|
|
|
GstPad *pad;
|
|
|
|
|
2001-12-19 19:22:53 +00:00
|
|
|
pad = gst_scheduler_pad_select (GST_PAD_PARENT (padlist->data)->sched, padlist);
|
2001-08-10 17:34:59 +00:00
|
|
|
|
|
|
|
return pad;
|
2001-07-11 22:52:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_pad_selectv:
|
|
|
|
* @pad: The first pad to perform the select on
|
|
|
|
* @...: More pads
|
|
|
|
*
|
|
|
|
* Wait for a buffer on the given of pads.
|
|
|
|
*
|
|
|
|
* Returns: The pad that has a buffer available, use
|
|
|
|
* #gst_pad_pull to get the buffer.
|
|
|
|
*/
|
|
|
|
GstPad*
|
|
|
|
gst_pad_selectv (GstPad *pad, ...)
|
|
|
|
{
|
|
|
|
GstPad *result;
|
|
|
|
GList *padlist = NULL;
|
|
|
|
va_list var_args;
|
|
|
|
|
|
|
|
if (pad == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
va_start (var_args, pad);
|
|
|
|
|
|
|
|
while (pad) {
|
|
|
|
padlist = g_list_prepend (padlist, pad);
|
|
|
|
pad = va_arg (var_args, GstPad *);
|
|
|
|
}
|
|
|
|
result = gst_pad_select (padlist);
|
|
|
|
g_list_free (padlist);
|
|
|
|
|
|
|
|
va_end (var_args);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2000-12-28 00:18:26 +00:00
|
|
|
/************************************************************************
|
2001-01-21 23:20:46 +00:00
|
|
|
*
|
2000-12-28 00:18:26 +00:00
|
|
|
* templates
|
|
|
|
*
|
|
|
|
*/
|
2002-04-11 20:35:18 +00:00
|
|
|
static void gst_pad_template_class_init (GstPadTemplateClass *klass);
|
|
|
|
static void gst_pad_template_init (GstPadTemplate *templ);
|
2001-03-07 21:52:56 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
GType
|
2002-04-11 20:35:18 +00:00
|
|
|
gst_pad_template_get_type (void)
|
2001-03-07 21:52:56 +00:00
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
static GType padtemplate_type = 0;
|
2001-03-07 21:52:56 +00:00
|
|
|
|
|
|
|
if (!padtemplate_type) {
|
2001-06-25 01:20:11 +00:00
|
|
|
static const GTypeInfo padtemplate_info = {
|
2001-03-07 21:52:56 +00:00
|
|
|
sizeof(GstPadTemplateClass),
|
2001-06-25 01:20:11 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2002-04-11 20:35:18 +00:00
|
|
|
(GClassInitFunc)gst_pad_template_class_init,
|
2001-06-25 01:20:11 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof(GstPadTemplate),
|
|
|
|
32,
|
2002-04-11 20:35:18 +00:00
|
|
|
(GInstanceInitFunc)gst_pad_template_init,
|
2001-09-14 22:16:47 +00:00
|
|
|
NULL
|
2001-03-07 21:52:56 +00:00
|
|
|
};
|
2001-06-25 01:20:11 +00:00
|
|
|
padtemplate_type = g_type_register_static(GST_TYPE_OBJECT, "GstPadTemplate", &padtemplate_info, 0);
|
2001-03-07 21:52:56 +00:00
|
|
|
}
|
|
|
|
return padtemplate_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-04-11 20:35:18 +00:00
|
|
|
gst_pad_template_class_init (GstPadTemplateClass *klass)
|
2001-03-07 21:52:56 +00:00
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
GObjectClass *gobject_class;
|
2001-03-07 21:52:56 +00:00
|
|
|
GstObjectClass *gstobject_class;
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
gobject_class = (GObjectClass*)klass;
|
2001-03-07 21:52:56 +00:00
|
|
|
gstobject_class = (GstObjectClass*)klass;
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
padtemplate_parent_class = g_type_class_ref(GST_TYPE_OBJECT);
|
2001-03-07 21:52:56 +00:00
|
|
|
|
2002-04-11 20:35:18 +00:00
|
|
|
gst_pad_template_signals[TEMPL_PAD_CREATED] =
|
2001-08-13 19:00:13 +00:00
|
|
|
g_signal_new ("pad_created", G_TYPE_FROM_CLASS(klass), G_SIGNAL_RUN_LAST,
|
2001-06-25 01:20:11 +00:00
|
|
|
G_STRUCT_OFFSET (GstPadTemplateClass, pad_created), NULL, NULL,
|
2001-12-18 19:03:07 +00:00
|
|
|
gst_marshal_VOID__POINTER, G_TYPE_NONE, 1,
|
|
|
|
G_TYPE_POINTER);
|
2001-03-07 21:52:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
gstobject_class->path_string_separator = "*";
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-04-11 20:35:18 +00:00
|
|
|
gst_pad_template_init (GstPadTemplate *templ)
|
2001-03-07 21:52:56 +00:00
|
|
|
{
|
|
|
|
}
|
2000-12-28 00:18:26 +00:00
|
|
|
|
2002-03-18 04:41:37 +00:00
|
|
|
/* ALWAYS padtemplates cannot have conversion specifications, it doesn't make
|
|
|
|
* sense.
|
|
|
|
* SOMETIMES padtemplates can do whatever they want, they are provided by the
|
|
|
|
* element.
|
|
|
|
* REQUEST padtemplates can be reverse-parsed (the user asks for 'sink1', the
|
|
|
|
* 'sink%d' template is automatically selected), so we need to restrict their
|
|
|
|
* naming.
|
|
|
|
*/
|
|
|
|
static gboolean
|
|
|
|
name_is_valid (const gchar *name, GstPadPresence presence)
|
|
|
|
{
|
|
|
|
const gchar *str;
|
|
|
|
|
|
|
|
if (presence == GST_PAD_ALWAYS) {
|
|
|
|
if (strchr (name, '%')) {
|
|
|
|
g_warning ("invalid name template %s: conversion specifications are not"
|
|
|
|
" allowed for GST_PAD_ALWAYS padtemplates", name);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else if (presence == GST_PAD_REQUEST) {
|
|
|
|
if ((str = strchr (name, '%')) && strchr (str + 1, '%')) {
|
|
|
|
g_warning ("invalid name template %s: only one conversion specification"
|
|
|
|
" allowed in GST_PAD_REQUEST padtemplate", name);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (str && (*(str+1) != 's' && *(str+1) != 'd')) {
|
|
|
|
g_warning ("invalid name template %s: conversion specification must be of"
|
|
|
|
" type '%%d' or '%%s' for GST_PAD_REQUEST padtemplate", name);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-03-30 19:31:14 +00:00
|
|
|
if (str && (*(str+2) != '\0')) {
|
|
|
|
g_warning ("invalid name template %s: conversion specification must appear"
|
|
|
|
" at the end of the GST_PAD_REQUEST padtemplate name", name);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-03-18 04:41:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2000-12-28 21:42:23 +00:00
|
|
|
/**
|
2002-04-11 20:35:18 +00:00
|
|
|
* gst_pad_template_new:
|
2001-01-21 23:20:46 +00:00
|
|
|
* @name_template: the name template
|
2000-12-28 21:42:23 +00:00
|
|
|
* @direction: the direction for the template
|
|
|
|
* @presence: the presence of the pad
|
2000-12-31 16:12:48 +00:00
|
|
|
* @caps: a list of capabilities for the template
|
2001-04-19 22:25:04 +00:00
|
|
|
* @...: more capabilities
|
2000-12-28 21:42:23 +00:00
|
|
|
*
|
2001-01-06 22:05:15 +00:00
|
|
|
* Creates a new padtemplate from the given arguments.
|
2000-12-28 21:42:23 +00:00
|
|
|
*
|
|
|
|
* Returns: the new padtemplate
|
|
|
|
*/
|
2000-12-13 19:29:35 +00:00
|
|
|
GstPadTemplate*
|
2002-05-08 20:40:48 +00:00
|
|
|
gst_pad_template_new (const gchar *name_template,
|
2001-04-14 18:56:37 +00:00
|
|
|
GstPadDirection direction, GstPadPresence presence,
|
|
|
|
GstCaps *caps, ...)
|
2000-12-12 19:29:43 +00:00
|
|
|
{
|
2000-12-14 17:21:29 +00:00
|
|
|
GstPadTemplate *new;
|
2001-04-14 18:56:37 +00:00
|
|
|
va_list var_args;
|
|
|
|
GstCaps *thecaps = NULL;
|
2001-01-21 23:20:46 +00:00
|
|
|
|
2001-03-07 21:52:56 +00:00
|
|
|
g_return_val_if_fail (name_template != NULL, NULL);
|
|
|
|
|
2002-03-18 04:41:37 +00:00
|
|
|
if (!name_is_valid (name_template, presence))
|
|
|
|
return NULL;
|
|
|
|
|
2002-04-26 15:02:34 +00:00
|
|
|
new = g_object_new (gst_pad_template_get_type (),
|
|
|
|
"name", name_template,
|
|
|
|
NULL);
|
2000-12-14 17:21:29 +00:00
|
|
|
|
2002-05-08 20:40:48 +00:00
|
|
|
GST_PAD_TEMPLATE_NAME_TEMPLATE (new) = g_strdup (name_template);
|
2002-04-11 20:35:18 +00:00
|
|
|
GST_PAD_TEMPLATE_DIRECTION (new) = direction;
|
|
|
|
GST_PAD_TEMPLATE_PRESENCE (new) = presence;
|
2001-04-14 18:56:37 +00:00
|
|
|
|
|
|
|
va_start (var_args, caps);
|
|
|
|
|
|
|
|
while (caps) {
|
2002-01-13 22:22:42 +00:00
|
|
|
new->fixed &= caps->fixed;
|
2001-04-14 18:56:37 +00:00
|
|
|
thecaps = gst_caps_append (thecaps, caps);
|
|
|
|
caps = va_arg (var_args, GstCaps*);
|
|
|
|
}
|
|
|
|
va_end (var_args);
|
|
|
|
|
2002-04-11 20:35:18 +00:00
|
|
|
GST_PAD_TEMPLATE_CAPS (new) = thecaps;
|
2000-12-14 17:21:29 +00:00
|
|
|
|
|
|
|
return new;
|
2000-12-12 19:29:43 +00:00
|
|
|
}
|
|
|
|
|
2001-03-12 21:02:12 +00:00
|
|
|
/**
|
2002-04-11 20:35:18 +00:00
|
|
|
* gst_pad_template_get_caps:
|
2001-03-12 21:02:12 +00:00
|
|
|
* @templ: the padtemplate to use
|
|
|
|
*
|
|
|
|
* Get the capabilities of the padtemplate
|
|
|
|
*
|
|
|
|
* Returns: a GstCaps*
|
|
|
|
*/
|
|
|
|
GstCaps*
|
2002-04-11 20:35:18 +00:00
|
|
|
gst_pad_template_get_caps (GstPadTemplate *templ)
|
2001-03-12 21:02:12 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (templ != NULL, NULL);
|
|
|
|
|
2002-04-11 20:35:18 +00:00
|
|
|
return GST_PAD_TEMPLATE_CAPS (templ);
|
2001-03-12 21:02:12 +00:00
|
|
|
}
|
2000-12-13 19:29:35 +00:00
|
|
|
|
2001-01-19 22:15:21 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_set_element_private:
|
|
|
|
* @pad: the pad to set the private data to
|
|
|
|
* @priv: The private data to attach to the pad
|
|
|
|
*
|
|
|
|
* Set the given private data pointer to the pad. This
|
|
|
|
* function can only be used by the element that own the
|
|
|
|
* pad.
|
|
|
|
*/
|
2001-01-11 22:03:01 +00:00
|
|
|
void
|
2001-01-13 13:51:08 +00:00
|
|
|
gst_pad_set_element_private (GstPad *pad, gpointer priv)
|
2001-01-11 22:03:01 +00:00
|
|
|
{
|
2001-01-13 13:51:08 +00:00
|
|
|
pad->element_private = priv;
|
2001-01-11 22:03:01 +00:00
|
|
|
}
|
|
|
|
|
2001-01-19 22:15:21 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_get_element_private:
|
|
|
|
* @pad: the pad to get the private data of
|
|
|
|
*
|
|
|
|
* Get the private data of a pad. The private data can
|
|
|
|
* only be set by the parent element of this pad.
|
|
|
|
*
|
|
|
|
* Returns: a pointer to the private data.
|
|
|
|
*/
|
2001-01-11 22:03:01 +00:00
|
|
|
gpointer
|
2001-01-11 22:09:29 +00:00
|
|
|
gst_pad_get_element_private (GstPad *pad)
|
2001-01-11 22:03:01 +00:00
|
|
|
{
|
2001-01-11 22:09:29 +00:00
|
|
|
return pad->element_private;
|
2001-01-11 22:03:01 +00:00
|
|
|
}
|
|
|
|
|
2001-01-19 02:23:35 +00:00
|
|
|
|
|
|
|
/***** ghost pads *****/
|
2001-10-17 10:21:27 +00:00
|
|
|
GType _gst_ghost_pad_type = 0;
|
2001-01-19 02:23:35 +00:00
|
|
|
|
|
|
|
static void gst_ghost_pad_class_init (GstGhostPadClass *klass);
|
|
|
|
static void gst_ghost_pad_init (GstGhostPad *pad);
|
|
|
|
|
|
|
|
static GstPad *ghost_pad_parent_class = NULL;
|
2001-12-14 22:59:21 +00:00
|
|
|
/* static guint gst_ghost_pad_signals[LAST_SIGNAL] = { 0 }; */
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
GType
|
2002-03-31 14:04:50 +00:00
|
|
|
gst_ghost_pad_get_type (void)
|
|
|
|
{
|
2001-10-17 10:21:27 +00:00
|
|
|
if (!_gst_ghost_pad_type) {
|
2001-06-25 01:20:11 +00:00
|
|
|
static const GTypeInfo pad_info = {
|
2002-03-31 14:04:50 +00:00
|
|
|
sizeof (GstGhostPadClass),
|
2001-06-25 01:20:11 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2002-03-31 14:04:50 +00:00
|
|
|
(GClassInitFunc) gst_ghost_pad_class_init,
|
2001-06-25 01:20:11 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof(GstGhostPad),
|
|
|
|
8,
|
2002-03-31 14:04:50 +00:00
|
|
|
(GInstanceInitFunc) gst_ghost_pad_init,
|
2001-09-14 22:16:47 +00:00
|
|
|
NULL
|
2001-01-19 02:23:35 +00:00
|
|
|
};
|
2002-03-31 14:04:50 +00:00
|
|
|
_gst_ghost_pad_type = g_type_register_static (GST_TYPE_PAD, "GstGhostPad", &pad_info, 0);
|
2001-01-19 02:23:35 +00:00
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
return _gst_ghost_pad_type;
|
2001-01-19 02:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_ghost_pad_class_init (GstGhostPadClass *klass)
|
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
GObjectClass *gobject_class;
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2002-03-31 14:04:50 +00:00
|
|
|
gobject_class = (GObjectClass*) klass;
|
2001-01-19 02:23:35 +00:00
|
|
|
|
2002-03-31 14:04:50 +00:00
|
|
|
ghost_pad_parent_class = g_type_class_ref (GST_TYPE_PAD);
|
2001-01-19 02:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_ghost_pad_init (GstGhostPad *pad)
|
|
|
|
{
|
|
|
|
pad->realpad = NULL;
|
|
|
|
}
|
2001-01-20 02:57:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_ghost_pad_new:
|
|
|
|
* @name: name of the new ghost pad
|
|
|
|
* @pad: the pad to create a ghost pad of
|
|
|
|
*
|
|
|
|
* Create a new ghost pad associated with the given pad.
|
|
|
|
*
|
|
|
|
* Returns: new ghost pad
|
|
|
|
*/
|
|
|
|
GstPad*
|
|
|
|
gst_ghost_pad_new (gchar *name,
|
|
|
|
GstPad *pad)
|
|
|
|
{
|
|
|
|
GstGhostPad *ghostpad;
|
2002-02-23 14:02:29 +00:00
|
|
|
GstRealPad *realpad;
|
2001-01-20 02:57:46 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
2002-01-13 22:22:42 +00:00
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
2001-01-20 02:57:46 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
ghostpad = g_object_new (gst_ghost_pad_get_type () ,NULL);
|
2001-01-29 00:06:02 +00:00
|
|
|
gst_pad_set_name (GST_PAD (ghostpad), name);
|
2002-02-23 14:02:29 +00:00
|
|
|
|
|
|
|
realpad = (GstRealPad *) pad;
|
|
|
|
|
|
|
|
while (!GST_IS_REAL_PAD (realpad)) {
|
|
|
|
realpad = GST_PAD_REALIZE (realpad);
|
|
|
|
}
|
|
|
|
GST_GPAD_REALPAD (ghostpad) = realpad;
|
2002-04-11 20:35:18 +00:00
|
|
|
GST_PAD_PAD_TEMPLATE (ghostpad) = GST_PAD_PAD_TEMPLATE (pad);
|
2001-01-20 02:57:46 +00:00
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* add ourselves to the real pad's list of ghostpads */
|
2002-01-13 22:22:42 +00:00
|
|
|
gst_pad_add_ghost_pad (pad, GST_PAD (ghostpad));
|
2001-01-21 23:20:46 +00:00
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* FIXME need to ref the real pad here... ? */
|
2001-01-20 02:57:46 +00:00
|
|
|
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_PADS, "created ghost pad \"%s\"", name);
|
2001-01-20 02:57:46 +00:00
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
return GST_PAD (ghostpad);
|
2001-01-20 02:57:46 +00:00
|
|
|
}
|
2001-08-06 20:37:21 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_get_internal_connections_default:
|
|
|
|
* @pad: the pad to get the internal connections of
|
|
|
|
*
|
|
|
|
* Get a GList of pads that this pad is connected to internally
|
|
|
|
* to the parent element.
|
|
|
|
*
|
|
|
|
* Returns: a GList of pads, g_list_free after use.
|
|
|
|
*/
|
|
|
|
GList*
|
|
|
|
gst_pad_get_internal_connections_default (GstPad *pad)
|
|
|
|
{
|
|
|
|
GList *res = NULL;
|
|
|
|
GstElement *parent;
|
|
|
|
GList *parent_pads;
|
|
|
|
GstPadDirection direction;
|
|
|
|
GstRealPad *rpad;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), FALSE);
|
|
|
|
|
|
|
|
rpad = GST_PAD_REALIZE (pad);
|
|
|
|
direction = rpad->direction;
|
|
|
|
|
|
|
|
parent = GST_PAD_PARENT (rpad);
|
|
|
|
parent_pads = parent->pads;
|
|
|
|
|
|
|
|
while (parent_pads) {
|
|
|
|
GstRealPad *parent_pad = GST_PAD_REALIZE (parent_pads->data);
|
|
|
|
|
|
|
|
if (parent_pad->direction != direction) {
|
|
|
|
res = g_list_prepend (res, parent_pad);
|
|
|
|
}
|
|
|
|
|
|
|
|
parent_pads = g_list_next (parent_pads);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_pad_get_internal_connections:
|
|
|
|
* @pad: the pad to get the internal connections of
|
|
|
|
*
|
|
|
|
* Get a GList of pads that this pad is connected to internally
|
|
|
|
* to the parent element.
|
|
|
|
*
|
|
|
|
* Returns: a GList of pads, g_list_free after use.
|
|
|
|
*/
|
|
|
|
GList*
|
|
|
|
gst_pad_get_internal_connections (GstPad *pad)
|
|
|
|
{
|
|
|
|
GList *res = NULL;
|
|
|
|
GstRealPad *rpad;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
|
|
|
|
|
|
|
rpad = GST_PAD_REALIZE (pad);
|
|
|
|
|
|
|
|
if (GST_RPAD_INTCONNFUNC (rpad))
|
|
|
|
res = GST_RPAD_INTCONNFUNC (rpad) (GST_PAD_CAST (rpad));
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2001-12-25 02:15:46 +00:00
|
|
|
gst_pad_event_default_dispatch (GstPad *pad, GstElement *element, GstEvent *event)
|
|
|
|
{
|
|
|
|
GList *pads = element->pads;
|
|
|
|
|
|
|
|
while (pads) {
|
|
|
|
GstPad *eventpad = GST_PAD (pads->data);
|
|
|
|
pads = g_list_next (pads);
|
|
|
|
|
|
|
|
/* for all pads in the opposite direction that are connected */
|
2002-01-13 22:22:42 +00:00
|
|
|
if (GST_PAD_DIRECTION (eventpad) != GST_PAD_DIRECTION (pad) && GST_PAD_IS_CONNECTED (eventpad)) {
|
2001-12-25 02:15:46 +00:00
|
|
|
if (GST_PAD_DIRECTION (eventpad) == GST_PAD_SRC) {
|
2002-02-23 14:02:29 +00:00
|
|
|
gst_pad_push (eventpad, GST_BUFFER (gst_event_copy (event)));
|
2001-12-25 02:15:46 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
GstPad *peerpad = GST_PAD_CAST (GST_RPAD_PEER (eventpad));
|
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
/* we only send the event on one pad, multi-sinkpad elements should implement
|
|
|
|
* a handler */
|
|
|
|
return gst_pad_send_event (peerpad, event);
|
2001-12-25 02:15:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-05-26 21:54:27 +00:00
|
|
|
return TRUE;
|
2001-12-25 02:15:46 +00:00
|
|
|
}
|
2001-08-06 20:37:21 +00:00
|
|
|
|
2001-12-09 13:17:54 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_event_default:
|
|
|
|
* @pad: the pad to operate on
|
|
|
|
* @event: the event to handle
|
|
|
|
*
|
|
|
|
* Invoke the default event handler for the given pad.
|
2002-05-26 21:54:27 +00:00
|
|
|
*
|
|
|
|
* Returns: TRUE if the event was sent succesfully.
|
2001-12-09 13:17:54 +00:00
|
|
|
*/
|
2002-05-26 21:54:27 +00:00
|
|
|
gboolean
|
2001-11-14 21:08:44 +00:00
|
|
|
gst_pad_event_default (GstPad *pad, GstEvent *event)
|
2001-08-22 21:45:25 +00:00
|
|
|
{
|
2001-11-14 21:08:44 +00:00
|
|
|
GstElement *element = GST_PAD_PARENT (pad);
|
2001-12-25 02:15:46 +00:00
|
|
|
|
|
|
|
g_signal_emit (G_OBJECT (pad), gst_real_pad_signals[REAL_EVENT_RECEIVED], 0, event);
|
2001-11-14 21:08:44 +00:00
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
2001-08-22 21:45:25 +00:00
|
|
|
case GST_EVENT_EOS:
|
2001-12-25 02:15:46 +00:00
|
|
|
gst_pad_event_default_dispatch (pad, element, event);
|
2002-05-31 21:34:45 +00:00
|
|
|
gst_element_set_eos (element);
|
2001-12-24 15:14:03 +00:00
|
|
|
/* we have to try to schedule another element because this one is disabled */
|
2001-12-22 21:18:17 +00:00
|
|
|
gst_element_yield (element);
|
2001-11-14 21:08:44 +00:00
|
|
|
break;
|
2002-05-26 21:54:27 +00:00
|
|
|
case GST_EVENT_DISCONTINUOUS:
|
|
|
|
{
|
|
|
|
guint64 time;
|
|
|
|
|
|
|
|
if (gst_event_discont_get_value (event, GST_FORMAT_TIME, &time)) {
|
|
|
|
if (element->setclockfunc && element->clock) {
|
|
|
|
gst_clock_handle_discont (element->clock, time);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-12-25 02:15:46 +00:00
|
|
|
case GST_EVENT_FLUSH:
|
2001-10-21 18:00:31 +00:00
|
|
|
default:
|
2002-05-26 21:54:27 +00:00
|
|
|
return gst_pad_event_default_dispatch (pad, element, event);
|
2001-08-22 21:45:25 +00:00
|
|
|
}
|
2002-05-26 21:54:27 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_pad_dispatcher:
|
|
|
|
* @pad: the pad to dispatch
|
|
|
|
* @dispatch: the GstDispatcherFunc to call
|
|
|
|
* @data: data passed to the dispatcher function.
|
|
|
|
*
|
|
|
|
* Invoke the given dispatcher function on all internally connected
|
|
|
|
* pads of the given pad. The GstPadDispatcherFunc should return
|
|
|
|
* TRUE when no further pads need to be preocessed.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if one of the dispatcher functions returned TRUE.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_pad_dispatcher (GstPad *pad, GstPadDispatcherFunc dispatch, gpointer data)
|
|
|
|
{
|
|
|
|
gboolean res = FALSE;
|
|
|
|
GList *int_pads, *orig;
|
|
|
|
|
|
|
|
g_return_val_if_fail (pad, FALSE);
|
|
|
|
g_return_val_if_fail (data, FALSE);
|
|
|
|
|
|
|
|
orig = int_pads = gst_pad_get_internal_connections (pad);
|
|
|
|
|
|
|
|
while (int_pads) {
|
|
|
|
GstRealPad *int_rpad = GST_PAD_REALIZE (int_pads->data);
|
|
|
|
GstRealPad *int_peer = GST_RPAD_PEER (int_rpad);
|
|
|
|
|
|
|
|
if (int_peer && GST_PAD_IS_CONNECTED (int_peer)) {
|
|
|
|
res = dispatch (GST_PAD_CAST (int_peer), data);
|
|
|
|
if (res)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
int_pads = g_list_next (int_pads);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_list_free (orig);
|
|
|
|
|
|
|
|
return res;
|
2001-08-22 21:45:25 +00:00
|
|
|
}
|
|
|
|
|
2001-10-21 18:00:31 +00:00
|
|
|
/**
|
|
|
|
* gst_pad_send_event:
|
|
|
|
* @pad: the pad to send the event to
|
|
|
|
* @event: the event to send to the pad.
|
|
|
|
*
|
|
|
|
* Send the event to the pad.
|
|
|
|
*
|
2001-10-23 19:50:41 +00:00
|
|
|
* Returns: TRUE if the event was handled.
|
2001-10-21 18:00:31 +00:00
|
|
|
*/
|
2001-10-17 10:21:27 +00:00
|
|
|
gboolean
|
|
|
|
gst_pad_send_event (GstPad *pad, GstEvent *event)
|
|
|
|
{
|
2002-05-26 21:54:27 +00:00
|
|
|
gboolean success = FALSE;
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2001-10-23 19:50:41 +00:00
|
|
|
g_return_val_if_fail (event, FALSE);
|
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
if (!pad || (GST_PAD_IS_SINK (pad) && !GST_PAD_IS_CONNECTED (pad)))
|
|
|
|
return FALSE;
|
|
|
|
|
2001-12-18 19:03:07 +00:00
|
|
|
if (GST_EVENT_SRC (event) == NULL)
|
|
|
|
GST_EVENT_SRC (event) = gst_object_ref (GST_OBJECT (pad));
|
|
|
|
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG (GST_CAT_EVENT, "have event %d on pad %s:%s",
|
2001-10-17 10:21:27 +00:00
|
|
|
GST_EVENT_TYPE (event), GST_DEBUG_PAD_NAME (pad));
|
|
|
|
|
|
|
|
if (GST_RPAD_EVENTFUNC (pad))
|
2002-05-26 21:54:27 +00:00
|
|
|
success = GST_RPAD_EVENTFUNC (pad) (pad, event);
|
2001-10-17 10:21:27 +00:00
|
|
|
else {
|
2002-03-24 22:07:09 +00:00
|
|
|
GST_DEBUG(GST_CAT_EVENT, "there's no event function for pad %s:%s", GST_DEBUG_PAD_NAME (pad));
|
2001-10-17 10:21:27 +00:00
|
|
|
}
|
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GstFormat src_format;
|
|
|
|
gint64 src_value;
|
|
|
|
GstFormat *dest_format;
|
|
|
|
gint64 *dest_value;
|
|
|
|
} GstPadConvertData;
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_pad_convert_dispatcher (GstPad *pad, GstPadConvertData *data)
|
|
|
|
{
|
|
|
|
return gst_pad_convert (pad, data->src_format, data->src_value,
|
|
|
|
data->dest_format, data->dest_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_pad_convert_default:
|
|
|
|
* @pad: the pad to invoke the default converter on
|
|
|
|
* @src_format: the source format
|
|
|
|
* @src_value: the source value
|
|
|
|
* @dest_format: a pointer to the destination format
|
|
|
|
* @dest_value: a pointer to the destination value
|
|
|
|
*
|
|
|
|
* Invoke the default converter on a pad. This will forward the
|
|
|
|
* call to the pad obtained using the internal connection of
|
|
|
|
* the element.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the conversion could be performed.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_pad_convert_default (GstPad *pad,
|
|
|
|
GstFormat src_format, gint64 src_value,
|
|
|
|
GstFormat *dest_format, gint64 *dest_value)
|
|
|
|
{
|
|
|
|
GstPadConvertData data;
|
|
|
|
|
|
|
|
g_return_val_if_fail (pad, FALSE);
|
|
|
|
g_return_val_if_fail (dest_format, FALSE);
|
|
|
|
g_return_val_if_fail (dest_value, FALSE);
|
|
|
|
|
|
|
|
data.src_format = src_format;
|
|
|
|
data.src_value = src_value;
|
|
|
|
data.dest_format = dest_format;
|
|
|
|
data.dest_value = dest_value;
|
|
|
|
|
|
|
|
return gst_pad_dispatcher (pad, (GstPadDispatcherFunc) gst_pad_convert_dispatcher, &data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_pad_convert:
|
|
|
|
* @pad: the pad to invoke the converter on
|
|
|
|
* @src_format: the source format
|
|
|
|
* @src_value: the source value
|
|
|
|
* @dest_format: a pointer to the destination format
|
|
|
|
* @dest_value: a pointer to the destination value
|
|
|
|
*
|
|
|
|
* Invoke a conversion on the pad.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the conversion could be performed.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_pad_convert (GstPad *pad,
|
|
|
|
GstFormat src_format, gint64 src_value,
|
|
|
|
GstFormat *dest_format, gint64 *dest_value)
|
|
|
|
{
|
|
|
|
GstRealPad *rpad;
|
|
|
|
|
|
|
|
g_return_val_if_fail (pad, FALSE);
|
|
|
|
g_return_val_if_fail (dest_format, FALSE);
|
|
|
|
g_return_val_if_fail (dest_value, FALSE);
|
|
|
|
|
2002-06-02 20:10:46 +00:00
|
|
|
if (src_format == *dest_format) {
|
|
|
|
*dest_value = src_value;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
rpad = GST_PAD_REALIZE (pad);
|
|
|
|
|
|
|
|
g_return_val_if_fail (rpad, FALSE);
|
|
|
|
|
|
|
|
if (GST_RPAD_CONVERTFUNC (rpad)) {
|
|
|
|
return GST_RPAD_CONVERTFUNC (rpad) (GST_PAD_CAST (rpad), src_format, src_value, dest_format, dest_value);
|
2001-08-06 20:37:21 +00:00
|
|
|
}
|
2001-10-23 19:50:41 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
return FALSE;
|
2001-08-06 20:37:21 +00:00
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GstPadQueryType type;
|
|
|
|
GstFormat *format;
|
|
|
|
gint64 *value;
|
|
|
|
} GstPadQueryData;
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_pad_query_dispatcher (GstPad *pad, GstPadQueryData *data)
|
|
|
|
{
|
|
|
|
return gst_pad_query (pad, data->type, data->format, data->value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_pad_query_default:
|
|
|
|
* @pad: the pad to invoke the default query on
|
|
|
|
* @type: the type of query to perform
|
|
|
|
* @format: a pointer to the format of the query
|
|
|
|
* @value: a pointer to the result of the query
|
|
|
|
*
|
|
|
|
* Invoke the default query function on a pad.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the query could be performed.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_pad_query_default (GstPad *pad, GstPadQueryType type,
|
|
|
|
GstFormat *format, gint64 *value)
|
|
|
|
{
|
|
|
|
GstPadQueryData data;
|
|
|
|
|
|
|
|
g_return_val_if_fail (pad, FALSE);
|
|
|
|
g_return_val_if_fail (format, FALSE);
|
|
|
|
g_return_val_if_fail (value, FALSE);
|
|
|
|
|
|
|
|
data.type = type;
|
|
|
|
data.format = format;
|
|
|
|
data.value = value;
|
|
|
|
|
|
|
|
return gst_pad_dispatcher (pad, (GstPadDispatcherFunc) gst_pad_query_dispatcher, &data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_pad_query:
|
|
|
|
* @pad: the pad to invoke the query on
|
|
|
|
* @type: the type of query to perform
|
|
|
|
* @format: a pointer to the format of the query
|
|
|
|
* @value: a pointer to the result of the query
|
|
|
|
*
|
|
|
|
* Query a pad for one of the available GstPadQuery properties.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the query could be performed.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_pad_query (GstPad *pad, GstPadQueryType type,
|
|
|
|
GstFormat *format, gint64 *value)
|
|
|
|
{
|
|
|
|
GstRealPad *rpad;
|
|
|
|
|
|
|
|
if (pad == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
g_return_val_if_fail (format, FALSE);
|
|
|
|
g_return_val_if_fail (value, FALSE);
|
|
|
|
|
|
|
|
rpad = GST_PAD_REALIZE (pad);
|
|
|
|
|
|
|
|
g_return_val_if_fail (rpad, FALSE);
|
|
|
|
|
|
|
|
if (GST_RPAD_QUERYFUNC (rpad))
|
|
|
|
return GST_RPAD_QUERYFUNC (rpad) (GST_PAD_CAST (pad), type, format, value);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|