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>
|
|
|
|
*
|
|
|
|
* gstplugin.c: Plugin subsystem for loading elements, types, and libs
|
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.
|
2000-12-28 22:12:02 +00:00
|
|
|
*
|
2000-01-30 09:03:00 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
2005-10-15 16:01:57 +00:00
|
|
|
|
2005-09-25 12:11:39 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstplugin
|
|
|
|
* @short_description: Container for features loaded from a shared object module
|
|
|
|
* @see_also: #GstPluginFeature, #GstElementFactory
|
|
|
|
*
|
|
|
|
* GStreamer is extensible, so #GstElement instances can be loaded at runtime.
|
2005-10-15 16:01:57 +00:00
|
|
|
* A plugin system can provide one or more of the basic
|
|
|
|
* <application>GStreamer</application> #GstPluginFeature subclasses.
|
2005-09-25 12:11:39 +00:00
|
|
|
*
|
2005-10-15 16:16:04 +00:00
|
|
|
* A plugin should export a symbol <symbol>plugin_desc</symbol> that is a
|
|
|
|
* struct of type #GstPluginDesc.
|
2005-10-15 16:01:57 +00:00
|
|
|
* the plugin loader will check the version of the core library the plugin was
|
|
|
|
* linked against and will create a new #GstPlugin. It will then call the
|
|
|
|
* #GstPluginInitFunc function that was provided in the plugin_desc.
|
2005-09-25 12:11:39 +00:00
|
|
|
*
|
2005-10-15 16:01:57 +00:00
|
|
|
* Once you have a handle to a #GstPlugin (e.g. from the #GstRegistryPool), you
|
|
|
|
* can add any object that subclasses #GstPluginFeature.
|
2005-09-25 12:11:39 +00:00
|
|
|
*
|
2005-10-15 16:01:57 +00:00
|
|
|
* Use gst_plugin_find_feature() and gst_plugin_get_feature_list() to find
|
|
|
|
* features in a plugin.
|
2005-09-25 12:11:39 +00:00
|
|
|
*
|
2005-10-15 16:01:57 +00:00
|
|
|
* Usually plugins are always automaticlly loaded so you don't need to call
|
|
|
|
* gst_plugin_load() explicitly to bring it into memory. There are options to
|
|
|
|
* statically link plugins to an app or even use GStreamer without a plugin
|
|
|
|
* repository in which case gst_plugin_load() can be needed to bring the plugin
|
|
|
|
* into memory.
|
2005-09-25 12:11:39 +00:00
|
|
|
*/
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-04-28 23:26:06 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2007-05-13 00:09:00 +00:00
|
|
|
#include <glib/gstdio.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
#include <sys/types.h>
|
2004-04-28 23:26:06 +00:00
|
|
|
#ifdef HAVE_DIRENT_H
|
2000-01-30 09:03:00 +00:00
|
|
|
#include <dirent.h>
|
2004-04-28 23:26:06 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_UNISTD_H
|
2000-01-30 09:03:00 +00:00
|
|
|
#include <unistd.h>
|
2004-04-28 23:26:06 +00:00
|
|
|
#endif
|
2003-12-15 12:44:35 +00:00
|
|
|
#include <signal.h>
|
2004-09-02 16:39:14 +00:00
|
|
|
#include <errno.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-12-28 22:12:02 +00:00
|
|
|
#include "gst_private.h"
|
2003-06-29 14:05:49 +00:00
|
|
|
|
2000-12-15 01:57:34 +00:00
|
|
|
#include "gstplugin.h"
|
2001-04-22 12:30:14 +00:00
|
|
|
#include "gstversion.h"
|
2003-06-29 14:05:49 +00:00
|
|
|
#include "gstinfo.h"
|
2003-04-14 18:53:03 +00:00
|
|
|
#include "gstfilter.h"
|
2005-09-15 00:13:26 +00:00
|
|
|
#include "gstregistry.h"
|
2005-09-20 06:28:33 +00:00
|
|
|
#include "gstmacros.h"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2003-12-19 20:27:03 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
#define GST_CAT_DEFAULT GST_CAT_PLUGIN_LOADING
|
|
|
|
|
2003-02-23 23:25:30 +00:00
|
|
|
static GList *_gst_plugin_static = NULL;
|
2007-05-13 00:20:35 +00:00
|
|
|
static gboolean _gst_plugin_inited;
|
2001-08-21 20:16:48 +00:00
|
|
|
|
2003-12-15 12:44:35 +00:00
|
|
|
/* static variables for segfault handling of plugin loading */
|
|
|
|
static char *_gst_plugin_fault_handler_filename = NULL;
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
extern gboolean _gst_disable_segtrap; /* see gst.c */
|
2004-04-16 00:32:27 +00:00
|
|
|
|
|
|
|
#ifndef HAVE_WIN32
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
static gboolean _gst_plugin_fault_handler_is_setup = FALSE;
|
2004-04-16 00:32:27 +00:00
|
|
|
#endif
|
2003-12-15 12:44:35 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
/* list of valid licenses.
|
2005-10-15 15:30:24 +00:00
|
|
|
* One of these must be specified or the plugin won't be loaded
|
|
|
|
* Contact gstreamer-devel@lists.sourceforge.net if your license should be
|
2003-11-02 14:17:17 +00:00
|
|
|
* added.
|
|
|
|
*
|
|
|
|
* GPL: http://www.gnu.org/copyleft/gpl.html
|
|
|
|
* LGPL: http://www.gnu.org/copyleft/lesser.html
|
|
|
|
* QPL: http://www.trolltech.com/licenses/qpl.html
|
2006-01-18 11:44:55 +00:00
|
|
|
* MPL: http://www.opensource.org/licenses/mozilla1.1.php
|
2003-11-02 14:17:17 +00:00
|
|
|
*/
|
2006-04-04 18:02:07 +00:00
|
|
|
static const gchar *valid_licenses[] = {
|
2004-03-15 19:27:17 +00:00
|
|
|
"LGPL", /* GNU Lesser General Public License */
|
|
|
|
"GPL", /* GNU General Public License */
|
|
|
|
"QPL", /* Trolltech Qt Public License */
|
|
|
|
"GPL/QPL", /* Combi-license of GPL + QPL */
|
2006-01-18 11:44:55 +00:00
|
|
|
"MPL", /* MPL 1.1 license */
|
|
|
|
"Proprietary", /* Proprietary license */
|
2004-03-15 19:27:17 +00:00
|
|
|
GST_LICENSE_UNKNOWN, /* some other license */
|
2003-10-31 19:32:47 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static GstPlugin *gst_plugin_register_func (GstPlugin * plugin,
|
2007-05-13 00:20:35 +00:00
|
|
|
GstPluginDesc * desc);
|
2007-06-27 10:12:14 +00:00
|
|
|
static void gst_plugin_desc_copy (GstPluginDesc * dest,
|
|
|
|
const GstPluginDesc * src);
|
2005-09-18 21:24:55 +00:00
|
|
|
static void gst_plugin_desc_free (GstPluginDesc * desc);
|
2003-11-13 02:47:03 +00:00
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
|
2005-09-15 20:56:30 +00:00
|
|
|
G_DEFINE_TYPE (GstPlugin, gst_plugin, GST_TYPE_OBJECT);
|
2005-09-15 00:13:26 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gst_plugin_init (GstPlugin * plugin)
|
2003-11-13 03:29:33 +00:00
|
|
|
{
|
2007-06-27 10:12:14 +00:00
|
|
|
/* do nothing, needed because of G_DEFINE_TYPE */
|
2003-11-13 03:29:33 +00:00
|
|
|
}
|
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
static void
|
2005-09-18 21:24:55 +00:00
|
|
|
gst_plugin_finalize (GObject * object)
|
2003-11-13 02:47:03 +00:00
|
|
|
{
|
gst/: Use _CAST macros to avoid unneeded type checking.
Original commit message from CVS:
* gst/gst.c: (gst_debug_help):
* gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_list_free):
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
(gst_plugin_feature_list_free):
* gst/gstregistry.c: (gst_registry_add_plugin),
(gst_registry_add_feature), (gst_registry_plugin_filter),
(gst_registry_feature_filter), (gst_registry_find_plugin),
(gst_registry_find_feature), (gst_registry_get_plugin_list),
(gst_registry_lookup_feature_locked), (gst_registry_lookup_locked):
* gst/gstregistryxml.c: (load_feature),
(gst_registry_xml_read_cache), (gst_registry_xml_write_cache):
* gst/gstminiobject.c: (gst_mini_object_unref),
(gst_mini_object_replace), (gst_value_mini_object_free),
(gst_value_mini_object_copy):
Use _CAST macros to avoid unneeded type checking.
Added some more G_UNLIKELY.
2006-06-12 09:17:44 +00:00
|
|
|
GstPlugin *plugin = GST_PLUGIN_CAST (object);
|
2005-09-16 04:54:24 +00:00
|
|
|
GstRegistry *registry = gst_registry_get_default ();
|
|
|
|
GList *g;
|
2003-11-13 02:47:03 +00:00
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
GST_DEBUG ("finalizing plugin %p", plugin);
|
2005-09-16 04:54:24 +00:00
|
|
|
for (g = registry->plugins; g; g = g->next) {
|
|
|
|
if (g->data == (gpointer) plugin) {
|
|
|
|
g_warning ("removing plugin that is still in registry");
|
|
|
|
}
|
|
|
|
}
|
2005-09-18 21:24:55 +00:00
|
|
|
g_free (plugin->filename);
|
2005-10-08 13:57:17 +00:00
|
|
|
g_free (plugin->basename);
|
2005-09-18 21:24:55 +00:00
|
|
|
gst_plugin_desc_free (&plugin->desc);
|
|
|
|
|
2006-04-04 18:02:07 +00:00
|
|
|
G_OBJECT_CLASS (gst_plugin_parent_class)->finalize (object);
|
2003-11-13 02:47:03 +00:00
|
|
|
}
|
|
|
|
|
2005-09-16 04:54:24 +00:00
|
|
|
static void
|
|
|
|
gst_plugin_class_init (GstPluginClass * klass)
|
|
|
|
{
|
2005-09-18 21:24:55 +00:00
|
|
|
G_OBJECT_CLASS (klass)->finalize = GST_DEBUG_FUNCPTR (gst_plugin_finalize);
|
2005-09-16 04:54:24 +00:00
|
|
|
}
|
2005-09-15 00:13:26 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
GQuark
|
2002-05-20 23:11:10 +00:00
|
|
|
gst_plugin_error_quark (void)
|
|
|
|
{
|
|
|
|
static GQuark quark = 0;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-05-20 23:11:10 +00:00
|
|
|
if (!quark)
|
|
|
|
quark = g_quark_from_static_string ("gst_plugin_error");
|
|
|
|
return quark;
|
|
|
|
}
|
|
|
|
|
2003-02-23 23:25:30 +00:00
|
|
|
/* this function can be called in the GCC constructor extension, before
|
2005-10-15 15:30:24 +00:00
|
|
|
* the _gst_plugin_initialize() was called. In that case, we store the
|
2003-02-23 23:25:30 +00:00
|
|
|
* plugin description in a list to initialize it when we open the main
|
|
|
|
* module later on.
|
|
|
|
* When the main module is known, we can register the plugin right away.
|
2005-03-07 18:27:42 +00:00
|
|
|
*/
|
2001-08-21 20:16:48 +00:00
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
_gst_plugin_register_static (GstPluginDesc * desc)
|
2001-08-21 20:16:48 +00:00
|
|
|
{
|
2007-05-13 00:20:35 +00:00
|
|
|
if (!_gst_plugin_inited) {
|
2004-03-13 15:27:01 +00:00
|
|
|
if (GST_CAT_DEFAULT)
|
|
|
|
GST_LOG ("queueing static plugin \"%s\" for loading later on",
|
2004-03-15 19:27:17 +00:00
|
|
|
desc->name);
|
2003-02-23 23:25:30 +00:00
|
|
|
_gst_plugin_static = g_list_prepend (_gst_plugin_static, desc);
|
2004-03-13 15:27:01 +00:00
|
|
|
} else {
|
2001-08-21 20:16:48 +00:00
|
|
|
GstPlugin *plugin;
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
if (GST_CAT_DEFAULT)
|
|
|
|
GST_LOG ("attempting to load static plugin \"%s\" now...", desc->name);
|
2005-09-15 00:13:26 +00:00
|
|
|
plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
|
2007-05-13 00:20:35 +00:00
|
|
|
if (gst_plugin_register_func (plugin, desc)) {
|
2004-03-13 15:27:01 +00:00
|
|
|
if (GST_CAT_DEFAULT)
|
2004-03-15 19:27:17 +00:00
|
|
|
GST_INFO ("loaded static plugin \"%s\"", desc->name);
|
2005-09-15 00:13:26 +00:00
|
|
|
gst_default_registry_add_plugin (plugin);
|
2001-08-21 20:16:48 +00:00
|
|
|
}
|
2003-02-23 23:25:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_gst_plugin_initialize (void)
|
|
|
|
{
|
2007-05-13 00:20:35 +00:00
|
|
|
_gst_plugin_inited = TRUE;
|
2003-02-23 23:25:30 +00:00
|
|
|
|
|
|
|
/* now register all static plugins */
|
2004-03-13 15:27:01 +00:00
|
|
|
g_list_foreach (_gst_plugin_static, (GFunc) _gst_plugin_register_static,
|
|
|
|
NULL);
|
2001-08-21 20:16:48 +00:00
|
|
|
}
|
|
|
|
|
2005-10-15 15:30:24 +00:00
|
|
|
/* this function could be extended to check if the plugin license matches the
|
2003-10-31 19:32:47 +00:00
|
|
|
* applications license (would require the app to register its license somehow).
|
|
|
|
* We'll wait for someone who's interested in it to code it :)
|
|
|
|
*/
|
|
|
|
static gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_plugin_check_license (const gchar * license)
|
2003-10-31 19:32:47 +00:00
|
|
|
{
|
2006-04-04 18:02:07 +00:00
|
|
|
const gchar **check_license = valid_licenses;
|
2003-10-31 19:32:47 +00:00
|
|
|
|
|
|
|
g_assert (check_license);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
while (*check_license) {
|
|
|
|
if (strcmp (license, *check_license) == 0)
|
|
|
|
return TRUE;
|
|
|
|
check_license++;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
static gboolean
|
|
|
|
gst_plugin_check_version (gint major, gint minor)
|
|
|
|
{
|
2001-12-14 22:59:21 +00:00
|
|
|
/* return NULL if the major and minor version numbers are not compatible */
|
|
|
|
/* with ours. */
|
2004-03-13 15:27:01 +00:00
|
|
|
if (major != GST_VERSION_MAJOR || minor != GST_VERSION_MINOR)
|
2001-08-21 20:16:48 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static GstPlugin *
|
2007-05-13 00:20:35 +00:00
|
|
|
gst_plugin_register_func (GstPlugin * plugin, GstPluginDesc * desc)
|
2001-08-21 20:16:48 +00:00
|
|
|
{
|
|
|
|
if (!gst_plugin_check_version (desc->major_version, desc->minor_version)) {
|
2004-03-13 15:27:01 +00:00
|
|
|
if (GST_CAT_DEFAULT)
|
2005-11-28 14:18:22 +00:00
|
|
|
GST_WARNING ("plugin \"%s\" has incompatible version, not loading",
|
2004-03-15 19:27:17 +00:00
|
|
|
plugin->filename);
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
return NULL;
|
2001-08-21 20:16:48 +00:00
|
|
|
}
|
|
|
|
|
2005-09-03 17:00:52 +00:00
|
|
|
if (!desc->license || !desc->description || !desc->source ||
|
|
|
|
!desc->package || !desc->origin) {
|
2004-03-13 15:27:01 +00:00
|
|
|
if (GST_CAT_DEFAULT)
|
2005-11-28 14:18:22 +00:00
|
|
|
GST_WARNING ("plugin \"%s\" has incorrect GstPluginDesc, not loading",
|
2004-03-15 19:27:17 +00:00
|
|
|
plugin->filename);
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
return NULL;
|
2001-08-21 20:16:48 +00:00
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
if (!gst_plugin_check_license (desc->license)) {
|
2004-03-13 15:27:01 +00:00
|
|
|
if (GST_CAT_DEFAULT)
|
2005-11-28 14:18:22 +00:00
|
|
|
GST_WARNING ("plugin \"%s\" has invalid license \"%s\", not loading",
|
2004-03-15 19:27:17 +00:00
|
|
|
plugin->filename, desc->license);
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
return NULL;
|
2003-10-31 19:32:47 +00:00
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2004-10-13 13:03:25 +00:00
|
|
|
if (GST_CAT_DEFAULT)
|
|
|
|
GST_LOG ("plugin \"%s\" looks good", GST_STR_NULL (plugin->filename));
|
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
gst_plugin_desc_copy (&plugin->desc, desc);
|
2002-05-10 19:23:18 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
if (!((desc->plugin_init) (plugin))) {
|
2004-03-13 15:27:01 +00:00
|
|
|
if (GST_CAT_DEFAULT)
|
2005-11-28 14:18:22 +00:00
|
|
|
GST_WARNING ("plugin \"%s\" failed to initialise", plugin->filename);
|
2003-10-31 19:32:47 +00:00
|
|
|
plugin->module = NULL;
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
return NULL;
|
2003-10-31 19:32:47 +00:00
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
|
|
|
if (GST_CAT_DEFAULT)
|
|
|
|
GST_LOG ("plugin \"%s\" initialised", GST_STR_NULL (plugin->filename));
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
return plugin;
|
|
|
|
}
|
|
|
|
|
2007-05-13 00:09:00 +00:00
|
|
|
#ifdef HAVE_SIGACTION
|
2007-01-02 06:14:06 +00:00
|
|
|
static struct sigaction oldaction;
|
|
|
|
|
2003-12-24 14:39:46 +00:00
|
|
|
/*
|
2003-12-15 12:44:35 +00:00
|
|
|
* _gst_plugin_fault_handler_restore:
|
|
|
|
* segfault handler restorer
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
_gst_plugin_fault_handler_restore (void)
|
|
|
|
{
|
2007-01-02 06:14:06 +00:00
|
|
|
if (!_gst_plugin_fault_handler_is_setup)
|
2006-07-17 17:40:52 +00:00
|
|
|
return;
|
|
|
|
|
2007-01-02 06:14:06 +00:00
|
|
|
_gst_plugin_fault_handler_is_setup = FALSE;
|
2003-12-15 12:44:35 +00:00
|
|
|
|
2007-01-02 06:14:06 +00:00
|
|
|
sigaction (SIGSEGV, &oldaction, NULL);
|
2003-12-15 12:44:35 +00:00
|
|
|
}
|
|
|
|
|
2003-12-24 14:39:46 +00:00
|
|
|
/*
|
2003-12-15 12:44:35 +00:00
|
|
|
* _gst_plugin_fault_handler_sighandler:
|
|
|
|
* segfault handler implementation
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
_gst_plugin_fault_handler_sighandler (int signum)
|
|
|
|
{
|
|
|
|
/* We need to restore the fault handler or we'll keep getting it */
|
|
|
|
_gst_plugin_fault_handler_restore ();
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
switch (signum) {
|
2003-12-15 12:44:35 +00:00
|
|
|
case SIGSEGV:
|
2003-12-16 12:20:54 +00:00
|
|
|
g_print ("\nERROR: ");
|
2003-12-15 12:44:35 +00:00
|
|
|
g_print ("Caught a segmentation fault while loading plugin file:\n");
|
|
|
|
g_print ("%s\n\n", _gst_plugin_fault_handler_filename);
|
|
|
|
g_print ("Please either:\n");
|
|
|
|
g_print ("- remove it and restart.\n");
|
2003-12-16 12:20:54 +00:00
|
|
|
g_print ("- run with --gst-disable-segtrap and debug.\n");
|
2003-12-15 12:44:35 +00:00
|
|
|
exit (-1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_print ("Caught unhandled signal on plugin loading\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-24 14:39:46 +00:00
|
|
|
/*
|
2003-12-15 12:44:35 +00:00
|
|
|
* _gst_plugin_fault_handler_setup:
|
|
|
|
* sets up the segfault handler
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
_gst_plugin_fault_handler_setup (void)
|
|
|
|
{
|
|
|
|
struct sigaction action;
|
|
|
|
|
|
|
|
/* if asked to leave segfaults alone, just return */
|
2004-03-13 15:27:01 +00:00
|
|
|
if (_gst_disable_segtrap)
|
|
|
|
return;
|
2003-12-15 12:44:35 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
if (_gst_plugin_fault_handler_is_setup)
|
|
|
|
return;
|
2003-12-15 12:44:35 +00:00
|
|
|
|
2007-01-02 06:14:06 +00:00
|
|
|
_gst_plugin_fault_handler_is_setup = TRUE;
|
|
|
|
|
2003-12-15 12:44:35 +00:00
|
|
|
memset (&action, 0, sizeof (action));
|
|
|
|
action.sa_handler = _gst_plugin_fault_handler_sighandler;
|
|
|
|
|
2007-01-02 06:14:06 +00:00
|
|
|
sigaction (SIGSEGV, &action, &oldaction);
|
2003-12-15 12:44:35 +00:00
|
|
|
}
|
2004-04-16 00:32:27 +00:00
|
|
|
#else
|
|
|
|
static void
|
|
|
|
_gst_plugin_fault_handler_restore (void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_gst_plugin_fault_handler_setup (void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
2003-12-15 12:44:35 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void _gst_plugin_fault_handler_setup ();
|
2003-12-15 12:44:35 +00:00
|
|
|
|
2005-09-15 20:56:30 +00:00
|
|
|
GStaticMutex gst_plugin_loading_mutex = G_STATIC_MUTEX_INIT;
|
|
|
|
|
2005-05-03 12:46:47 +00:00
|
|
|
/**
|
2005-09-15 00:13:26 +00:00
|
|
|
* gst_plugin_load_file:
|
|
|
|
* @filename: the plugin filename to load
|
2005-05-03 12:46:47 +00:00
|
|
|
* @error: pointer to a NULL-valued GError
|
|
|
|
*
|
2005-09-19 14:09:54 +00:00
|
|
|
* Loads the given plugin and refs it. Caller needs to unref after use.
|
2005-05-03 12:46:47 +00:00
|
|
|
*
|
2005-09-22 12:05:05 +00:00
|
|
|
* Returns: a reference to the existing loaded GstPlugin, a reference to the
|
|
|
|
* newly-loaded GstPlugin, or NULL if an error occurred.
|
2005-05-03 12:46:47 +00:00
|
|
|
*/
|
2005-09-15 00:13:26 +00:00
|
|
|
GstPlugin *
|
|
|
|
gst_plugin_load_file (const gchar * filename, GError ** error)
|
2005-05-03 12:46:47 +00:00
|
|
|
{
|
2005-09-15 00:13:26 +00:00
|
|
|
GstPlugin *plugin;
|
|
|
|
GModule *module;
|
|
|
|
gboolean ret;
|
2005-05-03 12:46:47 +00:00
|
|
|
gpointer ptr;
|
2005-09-15 00:13:26 +00:00
|
|
|
struct stat file_status;
|
2005-09-15 20:56:30 +00:00
|
|
|
GstRegistry *registry;
|
2005-05-03 12:46:47 +00:00
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
g_return_val_if_fail (filename != NULL, NULL);
|
2005-05-03 12:46:47 +00:00
|
|
|
|
2005-09-15 20:56:30 +00:00
|
|
|
registry = gst_registry_get_default ();
|
|
|
|
g_static_mutex_lock (&gst_plugin_loading_mutex);
|
|
|
|
|
|
|
|
plugin = gst_registry_lookup (registry, filename);
|
2005-09-18 06:59:25 +00:00
|
|
|
if (plugin) {
|
|
|
|
if (plugin->module) {
|
|
|
|
g_static_mutex_unlock (&gst_plugin_loading_mutex);
|
|
|
|
return plugin;
|
|
|
|
} else {
|
|
|
|
gst_object_unref (plugin);
|
2005-09-22 12:05:05 +00:00
|
|
|
plugin = NULL;
|
2005-09-18 06:59:25 +00:00
|
|
|
}
|
2005-05-03 12:46:47 +00:00
|
|
|
}
|
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "attempt to load plugin \"%s\"",
|
|
|
|
filename);
|
2004-07-06 17:55:25 +00:00
|
|
|
|
|
|
|
if (g_module_supported () == FALSE) {
|
2005-09-15 00:13:26 +00:00
|
|
|
GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "module loading not supported");
|
2004-07-06 17:55:25 +00:00
|
|
|
g_set_error (error,
|
|
|
|
GST_PLUGIN_ERROR,
|
|
|
|
GST_PLUGIN_ERROR_MODULE, "Dynamic loading not supported");
|
2005-09-15 20:56:30 +00:00
|
|
|
goto return_error;
|
2004-07-06 17:55:25 +00:00
|
|
|
}
|
|
|
|
|
2007-05-13 00:09:00 +00:00
|
|
|
if (g_stat (filename, &file_status)) {
|
2005-09-15 00:13:26 +00:00
|
|
|
GST_CAT_DEBUG (GST_CAT_PLUGIN_LOADING, "problem accessing file");
|
2004-07-06 17:55:25 +00:00
|
|
|
g_set_error (error,
|
|
|
|
GST_PLUGIN_ERROR,
|
2006-11-06 17:53:24 +00:00
|
|
|
GST_PLUGIN_ERROR_MODULE, "Problem accessing file %s: %s", filename,
|
|
|
|
g_strerror (errno));
|
2005-09-15 20:56:30 +00:00
|
|
|
goto return_error;
|
2004-07-06 17:55:25 +00:00
|
|
|
}
|
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
module = g_module_open (filename, G_MODULE_BIND_LOCAL);
|
|
|
|
if (module == NULL) {
|
2005-09-19 14:20:37 +00:00
|
|
|
GST_CAT_WARNING (GST_CAT_PLUGIN_LOADING, "module_open failed: %s",
|
2005-09-15 00:13:26 +00:00
|
|
|
g_module_error ());
|
|
|
|
g_set_error (error,
|
2007-05-11 08:29:10 +00:00
|
|
|
GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE, "Opening module failed: %s",
|
|
|
|
g_module_error ());
|
2007-05-11 10:56:48 +00:00
|
|
|
/* If we failed to open the shared object, then it's probably because a
|
|
|
|
* plugin is linked against the wrong libraries. Print out an easy-to-see
|
|
|
|
* message in this case. */
|
2007-05-16 19:35:46 +00:00
|
|
|
g_warning ("Failed to load plugin '%s': %s", filename, g_module_error ());
|
2005-09-15 20:56:30 +00:00
|
|
|
goto return_error;
|
2005-09-03 17:36:20 +00:00
|
|
|
}
|
2004-07-06 17:55:25 +00:00
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
plugin = g_object_new (GST_TYPE_PLUGIN, NULL);
|
2004-07-06 17:55:25 +00:00
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
plugin->module = module;
|
2006-01-05 10:43:02 +00:00
|
|
|
plugin->filename = g_strdup (filename);
|
2005-10-08 13:57:17 +00:00
|
|
|
plugin->basename = g_path_get_basename (filename);
|
2005-09-15 00:13:26 +00:00
|
|
|
plugin->file_mtime = file_status.st_mtime;
|
|
|
|
plugin->file_size = file_status.st_size;
|
2001-08-21 20:16:48 +00:00
|
|
|
|
2005-09-15 00:13:26 +00:00
|
|
|
ret = g_module_symbol (module, "gst_plugin_desc", &ptr);
|
|
|
|
if (!ret) {
|
|
|
|
GST_DEBUG ("Could not find plugin entry point in \"%s\"", filename);
|
|
|
|
g_set_error (error,
|
|
|
|
GST_PLUGIN_ERROR,
|
|
|
|
GST_PLUGIN_ERROR_MODULE,
|
2005-09-29 19:45:27 +00:00
|
|
|
"File \"%s\" is not a GStreamer plugin", filename);
|
2006-05-12 09:28:22 +00:00
|
|
|
g_module_close (module);
|
2005-09-15 20:56:30 +00:00
|
|
|
goto return_error;
|
2005-09-07 15:22:29 +00:00
|
|
|
}
|
2005-09-15 00:13:26 +00:00
|
|
|
plugin->orig_desc = (GstPluginDesc *) ptr;
|
2004-07-06 17:55:25 +00:00
|
|
|
|
|
|
|
GST_LOG ("Plugin %p for file \"%s\" prepared, calling entry function...",
|
|
|
|
plugin, filename);
|
|
|
|
|
|
|
|
/* this is where we load the actual .so, so let's trap SIGSEGV */
|
|
|
|
_gst_plugin_fault_handler_setup ();
|
|
|
|
_gst_plugin_fault_handler_filename = plugin->filename;
|
|
|
|
|
2004-10-13 13:03:25 +00:00
|
|
|
GST_LOG ("Plugin %p for file \"%s\" prepared, registering...",
|
|
|
|
plugin, filename);
|
|
|
|
|
2007-05-13 00:20:35 +00:00
|
|
|
if (!gst_plugin_register_func (plugin, plugin->orig_desc)) {
|
2004-07-06 17:55:25 +00:00
|
|
|
/* remove signal handler */
|
|
|
|
_gst_plugin_fault_handler_restore ();
|
|
|
|
GST_DEBUG ("gst_plugin_register_func failed for plugin \"%s\"", filename);
|
|
|
|
/* plugin == NULL */
|
|
|
|
g_set_error (error,
|
|
|
|
GST_PLUGIN_ERROR,
|
|
|
|
GST_PLUGIN_ERROR_MODULE,
|
2005-09-29 19:45:27 +00:00
|
|
|
"File \"%s\" appears to be a GStreamer plugin, but it failed to initialize",
|
|
|
|
filename);
|
2005-05-03 12:46:47 +00:00
|
|
|
g_module_close (module);
|
2005-09-15 20:56:30 +00:00
|
|
|
goto return_error;
|
2001-05-25 21:39:54 +00:00
|
|
|
}
|
2005-09-15 00:13:26 +00:00
|
|
|
|
|
|
|
/* remove signal handler */
|
|
|
|
_gst_plugin_fault_handler_restore ();
|
|
|
|
_gst_plugin_fault_handler_filename = NULL;
|
|
|
|
GST_INFO ("plugin \"%s\" loaded", plugin->filename);
|
|
|
|
|
2005-09-15 23:51:24 +00:00
|
|
|
gst_object_ref (plugin);
|
2005-09-15 00:13:26 +00:00
|
|
|
gst_default_registry_add_plugin (plugin);
|
|
|
|
|
2005-09-15 20:56:30 +00:00
|
|
|
g_static_mutex_unlock (&gst_plugin_loading_mutex);
|
2005-09-15 00:13:26 +00:00
|
|
|
return plugin;
|
2005-11-22 11:25:01 +00:00
|
|
|
|
2005-09-15 20:56:30 +00:00
|
|
|
return_error:
|
2005-11-22 11:25:01 +00:00
|
|
|
{
|
|
|
|
if (plugin)
|
|
|
|
gst_object_unref (plugin);
|
|
|
|
g_static_mutex_unlock (&gst_plugin_loading_mutex);
|
|
|
|
return NULL;
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_plugin_desc_copy (GstPluginDesc * dest, const GstPluginDesc * src)
|
2003-10-31 19:32:47 +00:00
|
|
|
{
|
|
|
|
dest->major_version = src->major_version;
|
|
|
|
dest->minor_version = src->minor_version;
|
|
|
|
dest->name = g_strdup (src->name);
|
|
|
|
dest->description = g_strdup (src->description);
|
|
|
|
dest->plugin_init = src->plugin_init;
|
|
|
|
dest->version = g_strdup (src->version);
|
|
|
|
dest->license = g_strdup (src->license);
|
2005-09-03 17:00:52 +00:00
|
|
|
dest->source = g_strdup (src->source);
|
2003-10-31 19:32:47 +00:00
|
|
|
dest->package = g_strdup (src->package);
|
|
|
|
dest->origin = g_strdup (src->origin);
|
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
/* unused */
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_plugin_desc_free (GstPluginDesc * desc)
|
2003-10-31 19:32:47 +00:00
|
|
|
{
|
|
|
|
g_free (desc->name);
|
|
|
|
g_free (desc->description);
|
|
|
|
g_free (desc->version);
|
|
|
|
g_free (desc->license);
|
2005-09-03 17:00:52 +00:00
|
|
|
g_free (desc->source);
|
2003-10-31 19:32:47 +00:00
|
|
|
g_free (desc->package);
|
|
|
|
g_free (desc->origin);
|
|
|
|
|
|
|
|
memset (desc, 0, sizeof (GstPluginDesc));
|
|
|
|
}
|
2002-05-08 20:40:48 +00:00
|
|
|
|
2001-01-06 02:35:17 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_get_name:
|
|
|
|
* @plugin: plugin to get the name of
|
|
|
|
*
|
|
|
|
* Get the short name of the plugin
|
|
|
|
*
|
|
|
|
* Returns: the name of the plugin
|
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
const gchar *
|
|
|
|
gst_plugin_get_name (GstPlugin * plugin)
|
2001-01-06 02:35:17 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (plugin != NULL, NULL);
|
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
return plugin->desc.name;
|
2001-01-06 02:35:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2004-01-26 03:44:14 +00:00
|
|
|
* gst_plugin_get_description:
|
2003-10-31 19:32:47 +00:00
|
|
|
* @plugin: plugin to get long name of
|
2001-01-06 02:35:17 +00:00
|
|
|
*
|
2003-10-31 19:32:47 +00:00
|
|
|
* Get the long descriptive name of the plugin
|
|
|
|
*
|
|
|
|
* Returns: the long name of the plugin
|
2001-01-06 02:35:17 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
G_CONST_RETURN gchar *
|
|
|
|
gst_plugin_get_description (GstPlugin * plugin)
|
2001-01-06 02:35:17 +00:00
|
|
|
{
|
2003-10-31 19:32:47 +00:00
|
|
|
g_return_val_if_fail (plugin != NULL, NULL);
|
2001-01-06 02:35:17 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
return plugin->desc.description;
|
2001-01-06 02:35:17 +00:00
|
|
|
}
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/**
|
2003-10-31 19:32:47 +00:00
|
|
|
* gst_plugin_get_filename:
|
|
|
|
* @plugin: plugin to get the filename of
|
|
|
|
*
|
|
|
|
* get the filename of the plugin
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
2003-10-31 19:32:47 +00:00
|
|
|
* Returns: the filename of the plugin
|
2000-01-30 09:03:00 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
G_CONST_RETURN gchar *
|
|
|
|
gst_plugin_get_filename (GstPlugin * plugin)
|
2000-12-15 01:57:34 +00:00
|
|
|
{
|
2003-10-31 19:32:47 +00:00
|
|
|
g_return_val_if_fail (plugin != NULL, NULL);
|
2001-01-06 02:35:17 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
return plugin->filename;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2004-12-07 18:50:39 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_get_version:
|
|
|
|
* @plugin: plugin to get the version of
|
|
|
|
*
|
|
|
|
* get the version of the plugin
|
|
|
|
*
|
|
|
|
* Returns: the version of the plugin
|
|
|
|
*/
|
|
|
|
G_CONST_RETURN gchar *
|
|
|
|
gst_plugin_get_version (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (plugin != NULL, NULL);
|
|
|
|
|
|
|
|
return plugin->desc.version;
|
|
|
|
}
|
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_get_license:
|
|
|
|
* @plugin: plugin to get the license of
|
|
|
|
*
|
|
|
|
* get the license of the plugin
|
|
|
|
*
|
|
|
|
* Returns: the license of the plugin
|
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
G_CONST_RETURN gchar *
|
|
|
|
gst_plugin_get_license (GstPlugin * plugin)
|
2003-10-31 19:32:47 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (plugin != NULL, NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
return plugin->desc.license;
|
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2005-09-03 17:00:52 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_get_source:
|
|
|
|
* @plugin: plugin to get the source of
|
|
|
|
*
|
|
|
|
* get the source module the plugin belongs to.
|
|
|
|
*
|
|
|
|
* Returns: the source of the plugin
|
|
|
|
*/
|
|
|
|
G_CONST_RETURN gchar *
|
|
|
|
gst_plugin_get_source (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (plugin != NULL, NULL);
|
|
|
|
|
|
|
|
return plugin->desc.source;
|
|
|
|
}
|
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_get_package:
|
|
|
|
* @plugin: plugin to get the package of
|
|
|
|
*
|
|
|
|
* get the package the plugin belongs to.
|
|
|
|
*
|
|
|
|
* Returns: the package of the plugin
|
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
G_CONST_RETURN gchar *
|
|
|
|
gst_plugin_get_package (GstPlugin * plugin)
|
2003-10-31 19:32:47 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (plugin != NULL, NULL);
|
2001-01-06 02:35:17 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
return plugin->desc.package;
|
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-01-06 02:35:17 +00:00
|
|
|
/**
|
2003-10-31 19:32:47 +00:00
|
|
|
* gst_plugin_get_origin:
|
|
|
|
* @plugin: plugin to get the origin of
|
2001-01-06 02:35:17 +00:00
|
|
|
*
|
2003-10-31 19:32:47 +00:00
|
|
|
* get the URL where the plugin comes from
|
2001-01-06 02:35:17 +00:00
|
|
|
*
|
2003-10-31 19:32:47 +00:00
|
|
|
* Returns: the origin of the plugin
|
2001-01-06 02:35:17 +00:00
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
G_CONST_RETURN gchar *
|
|
|
|
gst_plugin_get_origin (GstPlugin * plugin)
|
2001-01-06 02:35:17 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (plugin != NULL, NULL);
|
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
return plugin->desc.origin;
|
2001-01-06 02:35:17 +00:00
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_get_module:
|
|
|
|
* @plugin: plugin to query
|
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* Gets the #GModule of the plugin. If the plugin isn't loaded yet, NULL is
|
2003-10-31 19:32:47 +00:00
|
|
|
* returned.
|
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* Returns: module belonging to the plugin or NULL if the plugin isn't
|
2003-10-31 19:32:47 +00:00
|
|
|
* loaded yet.
|
|
|
|
*/
|
|
|
|
GModule *
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_plugin_get_module (GstPlugin * plugin)
|
2003-10-31 19:32:47 +00:00
|
|
|
{
|
gst/: Aplied part of patch #157127: Cleanup of issues reported by sparse.
Original commit message from CVS:
reviewed by: Wim Taymans, Ronald Bultje.
* gst/cothreads.c: (cothread_create):
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_child_state_change_func):
* gst/gstbuffer.c: (gst_buffer_span):
* gst/gstelement.c: (gst_element_get_index),
(gst_element_get_event_masks), (gst_element_get_query_types),
(gst_element_get_formats):
* gst/gsterror.c: (_gst_core_errors_init),
(_gst_library_errors_init), (_gst_resource_errors_init),
(_gst_stream_errors_init):
* gst/gstobject.c: (gst_object_default_deep_notify):
* gst/gstpad.c: (gst_pad_get_event_masks),
(gst_pad_get_internal_links_default):
* gst/gstplugin.c: (gst_plugin_register_func),
(gst_plugin_get_module):
* gst/gststructure.c: (gst_structure_get_string),
(gst_structure_get_abbrs), (gst_structure_from_abbr),
(gst_structure_to_abbr):
* gst/gstutils.c: (gst_print_element_args):
* gst/schedulers/gstoptimalscheduler.c: (add_to_group),
(setup_group_scheduler), (gst_opt_scheduler_iterate):
Aplied part of patch #157127: Cleanup of issues reported by
sparse.
Also do not try to use cothreads when there is no cothread
context yet.
2004-11-02 15:02:12 +00:00
|
|
|
g_return_val_if_fail (plugin != NULL, NULL);
|
2001-01-06 02:35:17 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
return plugin->module;
|
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2001-01-06 02:35:17 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_is_loaded:
|
|
|
|
* @plugin: plugin to query
|
|
|
|
*
|
|
|
|
* queries if the plugin is loaded into memory
|
|
|
|
*
|
|
|
|
* Returns: TRUE is loaded, FALSE otherwise
|
|
|
|
*/
|
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_plugin_is_loaded (GstPlugin * plugin)
|
2001-01-06 02:35:17 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (plugin != NULL, FALSE);
|
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
return (plugin->module != NULL || plugin->filename == NULL);
|
2001-01-06 02:35:17 +00:00
|
|
|
}
|
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
#if 0
|
2003-05-06 22:10:29 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_feature_list:
|
|
|
|
* @plugin: plugin to query
|
|
|
|
* @filter: the filter to use
|
|
|
|
* @first: only return first match
|
|
|
|
* @user_data: user data passed to the filter function
|
|
|
|
*
|
|
|
|
* Runs a filter against all plugin features and returns a GList with
|
2005-08-24 16:09:50 +00:00
|
|
|
* the results. If the first flag is set, only the first match is
|
2003-05-06 22:10:29 +00:00
|
|
|
* returned (as a list with a single object).
|
|
|
|
*
|
|
|
|
* Returns: a GList of features, g_list_free after use.
|
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GList *
|
|
|
|
gst_plugin_feature_filter (GstPlugin * plugin,
|
|
|
|
GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
|
2003-04-14 18:53:03 +00:00
|
|
|
{
|
2005-09-15 20:56:30 +00:00
|
|
|
GList *list;
|
|
|
|
GList *g;
|
|
|
|
|
|
|
|
list = gst_filter_run (plugin->features, (GstFilterFunc) filter, first,
|
2004-03-13 15:27:01 +00:00
|
|
|
user_data);
|
2005-09-15 20:56:30 +00:00
|
|
|
for (g = list; g; g = g->next) {
|
|
|
|
gst_object_ref (plugin);
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
2003-04-14 18:53:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct
|
2004-03-13 15:27:01 +00:00
|
|
|
{
|
2003-04-14 18:53:03 +00:00
|
|
|
GstPluginFeatureFilter filter;
|
2004-03-13 15:27:01 +00:00
|
|
|
gboolean first;
|
|
|
|
gpointer user_data;
|
|
|
|
GList *result;
|
2004-03-15 15:16:04 +00:00
|
|
|
}
|
|
|
|
FeatureFilterData;
|
2003-04-14 18:53:03 +00:00
|
|
|
|
2003-05-06 22:10:29 +00:00
|
|
|
static gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
_feature_filter (GstPlugin * plugin, gpointer user_data)
|
2003-04-14 18:53:03 +00:00
|
|
|
{
|
|
|
|
GList *result;
|
|
|
|
FeatureFilterData *data = (FeatureFilterData *) user_data;
|
|
|
|
|
2005-09-15 20:56:30 +00:00
|
|
|
result = gst_plugin_feature_filter (plugin, data->filter, data->first,
|
2004-03-13 15:27:01 +00:00
|
|
|
data->user_data);
|
2003-04-14 18:53:03 +00:00
|
|
|
if (result) {
|
|
|
|
data->result = g_list_concat (data->result, result);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-05-06 22:10:29 +00:00
|
|
|
/**
|
2005-08-24 16:09:50 +00:00
|
|
|
* gst_plugin_list_feature_filter:
|
|
|
|
* @list: a #GList of plugins to query
|
|
|
|
* @filter: the filter function to use
|
2003-05-06 22:10:29 +00:00
|
|
|
* @first: only return first match
|
|
|
|
* @user_data: user data passed to the filter function
|
|
|
|
*
|
|
|
|
* Runs a filter against all plugin features of the plugins in the given
|
2005-08-24 16:09:50 +00:00
|
|
|
* list and returns a GList with the results.
|
|
|
|
* If the first flag is set, only the first match is
|
2003-05-06 22:10:29 +00:00
|
|
|
* returned (as a list with a single object).
|
|
|
|
*
|
|
|
|
* Returns: a GList of features, g_list_free after use.
|
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GList *
|
|
|
|
gst_plugin_list_feature_filter (GList * list,
|
|
|
|
GstPluginFeatureFilter filter, gboolean first, gpointer user_data)
|
2003-04-14 18:53:03 +00:00
|
|
|
{
|
|
|
|
FeatureFilterData data;
|
|
|
|
GList *result;
|
|
|
|
|
|
|
|
data.filter = filter;
|
|
|
|
data.first = first;
|
|
|
|
data.user_data = user_data;
|
|
|
|
data.result = NULL;
|
|
|
|
|
|
|
|
result = gst_filter_run (list, (GstFilterFunc) _feature_filter, first, &data);
|
|
|
|
g_list_free (result);
|
|
|
|
|
|
|
|
return data.result;
|
|
|
|
}
|
2005-09-18 06:59:25 +00:00
|
|
|
#endif
|
2003-04-14 18:53:03 +00:00
|
|
|
|
2003-05-06 22:10:29 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_name_filter:
|
|
|
|
* @plugin: the plugin to check
|
|
|
|
* @name: the name of the plugin
|
|
|
|
*
|
2003-10-31 19:32:47 +00:00
|
|
|
* A standard filter that returns TRUE when the plugin is of the
|
2003-05-06 22:10:29 +00:00
|
|
|
* given name.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the plugin is of the given name.
|
|
|
|
*/
|
2003-04-14 18:53:03 +00:00
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_plugin_name_filter (GstPlugin * plugin, const gchar * name)
|
2003-04-14 18:53:03 +00:00
|
|
|
{
|
2003-10-31 19:32:47 +00:00
|
|
|
return (plugin->desc.name && !strcmp (plugin->desc.name, name));
|
2003-04-14 18:53:03 +00:00
|
|
|
}
|
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
#if 0
|
2002-06-12 22:26:36 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_find_feature:
|
|
|
|
* @plugin: plugin to get the feature from
|
|
|
|
* @name: The name of the feature to find
|
|
|
|
* @type: The type of the feature to find
|
|
|
|
*
|
|
|
|
* Find a feature of the given name and type in the given plugin.
|
|
|
|
*
|
|
|
|
* Returns: a GstPluginFeature or NULL if the feature was not found.
|
|
|
|
*/
|
2004-03-13 15:27:01 +00:00
|
|
|
GstPluginFeature *
|
|
|
|
gst_plugin_find_feature (GstPlugin * plugin, const gchar * name, GType type)
|
2000-12-15 01:57:34 +00:00
|
|
|
{
|
2003-04-14 18:53:03 +00:00
|
|
|
GList *walk;
|
|
|
|
GstPluginFeature *result = NULL;
|
|
|
|
GstTypeNameData data;
|
2000-08-28 20:20:55 +00:00
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
2000-08-28 20:20:55 +00:00
|
|
|
|
2003-04-14 18:53:03 +00:00
|
|
|
data.type = type;
|
|
|
|
data.name = name;
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
walk = gst_filter_run (plugin->features,
|
|
|
|
(GstFilterFunc) gst_plugin_feature_type_name_filter, TRUE, &data);
|
|
|
|
|
2005-09-16 04:54:24 +00:00
|
|
|
if (walk) {
|
2003-04-14 18:53:03 +00:00
|
|
|
result = GST_PLUGIN_FEATURE (walk->data);
|
2001-01-29 00:06:02 +00:00
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
gst_object_ref (result);
|
2005-09-16 04:54:24 +00:00
|
|
|
gst_plugin_feature_list_free (walk);
|
|
|
|
}
|
2005-09-15 00:13:26 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2005-09-18 06:59:25 +00:00
|
|
|
#endif
|
2005-09-15 00:13:26 +00:00
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
#if 0
|
2005-09-15 00:13:26 +00:00
|
|
|
static gboolean
|
|
|
|
gst_plugin_feature_name_filter (GstPluginFeature * feature, const gchar * name)
|
|
|
|
{
|
|
|
|
return !strcmp (name, GST_PLUGIN_FEATURE_NAME (feature));
|
|
|
|
}
|
2005-09-18 06:59:25 +00:00
|
|
|
#endif
|
2005-09-15 00:13:26 +00:00
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
#if 0
|
2005-09-15 00:13:26 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_find_feature_by_name:
|
|
|
|
* @plugin: plugin to get the feature from
|
|
|
|
* @name: The name of the feature to find
|
|
|
|
*
|
|
|
|
* Find a feature of the given name in the given plugin.
|
|
|
|
*
|
|
|
|
* Returns: a GstPluginFeature or NULL if the feature was not found.
|
|
|
|
*/
|
|
|
|
GstPluginFeature *
|
|
|
|
gst_plugin_find_feature_by_name (GstPlugin * plugin, const gchar * name)
|
|
|
|
{
|
|
|
|
GList *walk;
|
|
|
|
GstPluginFeature *result = NULL;
|
|
|
|
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
|
|
|
|
walk = gst_filter_run (plugin->features,
|
|
|
|
(GstFilterFunc) gst_plugin_feature_name_filter, TRUE, (void *) name);
|
|
|
|
|
2005-09-16 04:54:24 +00:00
|
|
|
if (walk) {
|
2005-09-15 00:13:26 +00:00
|
|
|
result = GST_PLUGIN_FEATURE (walk->data);
|
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
gst_object_ref (result);
|
2005-09-16 04:54:24 +00:00
|
|
|
gst_plugin_feature_list_free (walk);
|
|
|
|
}
|
2005-09-15 00:13:26 +00:00
|
|
|
|
2003-04-14 18:53:03 +00:00
|
|
|
return result;
|
2000-08-28 20:20:55 +00:00
|
|
|
}
|
2005-09-18 06:59:25 +00:00
|
|
|
#endif
|
2000-08-28 20:20:55 +00:00
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
/**
|
2005-09-18 06:59:25 +00:00
|
|
|
* gst_plugin_load_by_name:
|
2002-05-08 20:40:48 +00:00
|
|
|
* @name: name of plugin to load
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
2005-09-19 14:09:54 +00:00
|
|
|
* Load the named plugin. Refs the plugin.
|
2000-10-25 19:09:53 +00:00
|
|
|
*
|
2005-10-04 11:10:04 +00:00
|
|
|
* Returns: A reference to a loaded plugin, or NULL on error.
|
2000-10-25 19:09:53 +00:00
|
|
|
*/
|
2005-09-18 06:59:25 +00:00
|
|
|
GstPlugin *
|
|
|
|
gst_plugin_load_by_name (const gchar * name)
|
2000-12-15 01:57:34 +00:00
|
|
|
{
|
2005-09-19 14:09:54 +00:00
|
|
|
GstPlugin *plugin, *newplugin;
|
2002-09-23 08:36:05 +00:00
|
|
|
GError *error = NULL;
|
2000-08-28 20:20:55 +00:00
|
|
|
|
2005-09-19 14:09:54 +00:00
|
|
|
GST_DEBUG ("looking up plugin %s in default registry", name);
|
2005-09-15 00:13:26 +00:00
|
|
|
plugin = gst_registry_find_plugin (gst_registry_get_default (), name);
|
2002-12-19 21:31:03 +00:00
|
|
|
if (plugin) {
|
2005-09-19 14:09:54 +00:00
|
|
|
GST_DEBUG ("loading plugin %s from file %s", name, plugin->filename);
|
|
|
|
newplugin = gst_plugin_load_file (plugin->filename, &error);
|
|
|
|
gst_object_unref (plugin);
|
|
|
|
|
|
|
|
if (!newplugin) {
|
2007-03-07 17:26:49 +00:00
|
|
|
GST_WARNING ("load_plugin error: %s", error->message);
|
2002-09-23 08:36:05 +00:00
|
|
|
g_error_free (error);
|
2005-09-18 06:59:25 +00:00
|
|
|
return NULL;
|
2002-09-23 08:36:05 +00:00
|
|
|
}
|
2005-09-19 14:09:54 +00:00
|
|
|
/* newplugin was reffed by load_file */
|
|
|
|
return newplugin;
|
2002-09-23 08:36:05 +00:00
|
|
|
}
|
2000-08-28 20:20:55 +00:00
|
|
|
|
2005-09-18 06:59:25 +00:00
|
|
|
GST_DEBUG ("Could not find plugin %s in registry", name);
|
|
|
|
return NULL;
|
2000-08-28 20:20:55 +00:00
|
|
|
}
|
2005-09-15 00:13:26 +00:00
|
|
|
|
2005-09-22 12:05:05 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_load:
|
|
|
|
* @plugin: plugin to load
|
|
|
|
*
|
|
|
|
* Loads @plugin. Note that the *return value* is the loaded plugin; @plugin is
|
|
|
|
* untouched. The normal use pattern of this function goes like this:
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2005-09-22 12:05:05 +00:00
|
|
|
* <programlisting>
|
|
|
|
* GstPlugin *loaded_plugin;
|
|
|
|
* loaded_plugin = gst_plugin_load (plugin);
|
|
|
|
* // presumably, we're no longer interested in the potentially-unloaded plugin
|
|
|
|
* gst_object_unref (plugin);
|
|
|
|
* plugin = loaded_plugin;
|
|
|
|
* </programlisting>
|
|
|
|
*
|
|
|
|
* Returns: A reference to a loaded plugin, or NULL on error.
|
|
|
|
*/
|
2005-09-15 00:13:26 +00:00
|
|
|
GstPlugin *
|
|
|
|
gst_plugin_load (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
GError *error = NULL;
|
2005-09-15 23:51:24 +00:00
|
|
|
GstPlugin *newplugin;
|
2005-09-15 00:13:26 +00:00
|
|
|
|
|
|
|
if (gst_plugin_is_loaded (plugin)) {
|
|
|
|
return plugin;
|
|
|
|
}
|
|
|
|
|
2005-09-22 12:05:05 +00:00
|
|
|
if (!(newplugin = gst_plugin_load_file (plugin->filename, &error)))
|
|
|
|
goto load_error;
|
|
|
|
|
|
|
|
return newplugin;
|
|
|
|
|
|
|
|
load_error:
|
|
|
|
{
|
2007-03-07 17:26:49 +00:00
|
|
|
GST_WARNING ("load_plugin error: %s", error->message);
|
2005-09-15 00:13:26 +00:00
|
|
|
g_error_free (error);
|
|
|
|
return NULL;
|
|
|
|
}
|
2005-09-15 23:51:24 +00:00
|
|
|
}
|
|
|
|
|
2005-09-22 12:05:05 +00:00
|
|
|
/**
|
|
|
|
* gst_plugin_list_free:
|
|
|
|
* @list: list of #GstPlugin
|
|
|
|
*
|
|
|
|
* Unrefs each member of @list, then frees the list.
|
|
|
|
*/
|
2005-09-15 23:51:24 +00:00
|
|
|
void
|
|
|
|
gst_plugin_list_free (GList * list)
|
|
|
|
{
|
|
|
|
GList *g;
|
|
|
|
|
|
|
|
for (g = list; g; g = g->next) {
|
gst/: Use _CAST macros to avoid unneeded type checking.
Original commit message from CVS:
* gst/gst.c: (gst_debug_help):
* gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_list_free):
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
(gst_plugin_feature_list_free):
* gst/gstregistry.c: (gst_registry_add_plugin),
(gst_registry_add_feature), (gst_registry_plugin_filter),
(gst_registry_feature_filter), (gst_registry_find_plugin),
(gst_registry_find_feature), (gst_registry_get_plugin_list),
(gst_registry_lookup_feature_locked), (gst_registry_lookup_locked):
* gst/gstregistryxml.c: (load_feature),
(gst_registry_xml_read_cache), (gst_registry_xml_write_cache):
* gst/gstminiobject.c: (gst_mini_object_unref),
(gst_mini_object_replace), (gst_value_mini_object_free),
(gst_value_mini_object_copy):
Use _CAST macros to avoid unneeded type checking.
Added some more G_UNLIKELY.
2006-06-12 09:17:44 +00:00
|
|
|
gst_object_unref (GST_PLUGIN_CAST (g->data));
|
2005-09-15 23:51:24 +00:00
|
|
|
}
|
|
|
|
g_list_free (list);
|
2005-09-15 00:13:26 +00:00
|
|
|
}
|