mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
9df878658c
Original commit message from CVS: 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de> * gst/gstcaps.c: (gst_caps_append): add sanity checks * gst/gstcaps.h: (gst_caps_debug): remove, it doesn't exist anymore. * gst/gstelement.c: (gst_element_threadsafe_properties_pre_run), (gst_element_threadsafe_properties_post_run): make debugging messages not clutter up THREAD debug category (gst_element_negotiate_pads), (gst_element_clear_pad_caps), (gst_element_change_state): update to new caps API * gst/gstinterface.c: (gst_implements_interface_cast): don't put vital code in g_return_if_fail * gst/gstpad.c: (gst_pad_link_try), (gst_pad_try_set_caps), (gst_pad_link_filtered): add pst_pad_try_link and use it. (gst_pad_perform_negotiate), (gst_pad_renegotiate): implement correctly, deprecate first one. (gst_pad_link_unnegotiate), (gst_pad_unnegotiate): add and implement. (gst_pad_try_relink_filtered), (gst_pad_relink_filtered): implement. (gst_pad_get_negotiated_caps): add and implement. Make GST_PAD_CAPS call this function. (gst_pad_get_caps): remove unneeded check.. (gst_pad_recover_caps_error): disable, always return FALSE. (gst_real_pad_dispose): don't free caps and appfilter anymore, they're unused. * gst/gstpad.h: Reflect changes mentioned above. * gst/gstsystemclock.c: (gst_system_clock_wait): Make 'clock is way behind' a debugging message. * gst/gstthread.c: (gst_thread_change_state): Fix debugging message
177 lines
4.8 KiB
C
177 lines
4.8 KiB
C
/* GStreamer
|
|
*
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
*
|
|
* gstinterface.c: Interface functions
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "gstinterface.h"
|
|
#include "gstlog.h"
|
|
|
|
static void
|
|
gst_implements_interface_class_init (GstImplementsInterfaceClass *ifklass);
|
|
static gboolean
|
|
gst_implements_interface_supported_default (GstImplementsInterface *iface,
|
|
GType iface_type);
|
|
|
|
GType
|
|
gst_implements_interface_get_type (void)
|
|
{
|
|
static GType gst_interface_type = 0;
|
|
|
|
if (!gst_interface_type) {
|
|
static const GTypeInfo gst_interface_info = {
|
|
sizeof (GstImplementsInterfaceClass),
|
|
(GBaseInitFunc) gst_implements_interface_class_init,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
0,
|
|
0,
|
|
NULL,
|
|
NULL
|
|
};
|
|
|
|
gst_interface_type = g_type_register_static (G_TYPE_INTERFACE,
|
|
"GstImplementsInterface",
|
|
&gst_interface_info, 0);
|
|
|
|
g_type_interface_add_prerequisite (gst_interface_type,
|
|
GST_TYPE_ELEMENT);
|
|
}
|
|
|
|
return gst_interface_type;
|
|
}
|
|
|
|
static void
|
|
gst_implements_interface_class_init (GstImplementsInterfaceClass *klass)
|
|
{
|
|
klass->supported = gst_implements_interface_supported_default;
|
|
}
|
|
|
|
static gboolean
|
|
gst_implements_interface_supported_default (GstImplementsInterface *interface,
|
|
GType iface_type)
|
|
{
|
|
/* Well, if someone didn't set the virtual function,
|
|
* then something is clearly wrong. So big no-no here */
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
/**
|
|
* gst_element_implements_interface:
|
|
* @element: #GstElement to check for the implementation of the interface
|
|
* @iface_type: (final) type of the interface which we want to be implemented
|
|
*
|
|
* Test whether the given element implements a certain interface of type
|
|
* iface_type, and test whether it is supported for this specific instance.
|
|
*/
|
|
|
|
gboolean
|
|
gst_element_implements_interface (GstElement *element,
|
|
GType iface_type)
|
|
{
|
|
if (G_TYPE_CHECK_INSTANCE_TYPE (G_OBJECT (element),
|
|
iface_type)) {
|
|
GstImplementsInterface *iface;
|
|
GstImplementsInterfaceClass *ifclass;
|
|
|
|
iface = G_TYPE_CHECK_INSTANCE_CAST (G_OBJECT (element),
|
|
iface_type, GstImplementsInterface);
|
|
ifclass = GST_IMPLEMENTS_INTERFACE_GET_CLASS (iface);
|
|
|
|
if (ifclass->supported != NULL &&
|
|
ifclass->supported (iface, iface_type) == TRUE) {
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
/**
|
|
* gst_implements_interface_cast:
|
|
* @from: the object (any sort) from which to cast to the interface
|
|
* @type: the interface type to cast to
|
|
*
|
|
* cast a given object to an interface type, and check whether this
|
|
* interface is supported for this specific instance.
|
|
*/
|
|
|
|
gpointer
|
|
gst_implements_interface_cast (gpointer from,
|
|
GType iface_type)
|
|
{
|
|
GstImplementsInterface *iface;
|
|
|
|
/* check cast, give warning+fail if it's invalid */
|
|
if (!(iface = G_TYPE_CHECK_INSTANCE_CAST (from, iface_type,
|
|
GstImplementsInterface))) {
|
|
return NULL;
|
|
}
|
|
|
|
/* if we're an element, take care that this interface
|
|
* is actually implemented */
|
|
if (GST_IS_ELEMENT (from)) {
|
|
g_return_val_if_fail (
|
|
gst_element_implements_interface (GST_ELEMENT (from), iface_type),
|
|
NULL);
|
|
}
|
|
|
|
return iface;
|
|
}
|
|
|
|
/**
|
|
* gst_implements_interface_cast:
|
|
* @from: the object (any sort) from which to check from for the interface
|
|
* @type: the interface type to check for
|
|
*
|
|
* check a given object for an interface implementation, and check
|
|
* whether this interface is supported for this specific instance.
|
|
*/
|
|
|
|
gboolean
|
|
gst_implements_interface_check (gpointer from,
|
|
GType type)
|
|
{
|
|
GstImplementsInterface *iface;
|
|
|
|
/* check cast, return FALSE if it fails, don't give a warning... */
|
|
if (!G_TYPE_CHECK_INSTANCE_TYPE (from, type)) {
|
|
return FALSE;
|
|
}
|
|
|
|
iface = G_TYPE_CHECK_INSTANCE_CAST (from, type, GstImplementsInterface);
|
|
|
|
/* now, if we're an element (or derivative), is this thing
|
|
* actually implemented for real? */
|
|
if (GST_IS_ELEMENT (from)) {
|
|
if (!gst_element_implements_interface (GST_ELEMENT (from), type)) {
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
return TRUE;
|
|
}
|