plugin: remove gst_plugin_get_module()

This is an implementation detail really, and it's not
clear what anyone would do with this. It's unused as
far as I'm aware, so just remove it for now.
This commit is contained in:
Tim-Philipp Müller 2012-04-29 16:46:55 +01:00
parent fb158cb994
commit 3954fdcb0d
4 changed files with 0 additions and 21 deletions

View file

@ -1995,7 +1995,6 @@ gst_plugin_get_origin
gst_plugin_get_source
gst_plugin_get_version
gst_plugin_get_release_date_string
gst_plugin_get_module
gst_plugin_is_loaded
gst_plugin_get_cache_data
gst_plugin_set_cache_data

View file

@ -1015,24 +1015,6 @@ gst_plugin_get_release_date_string (GstPlugin * plugin)
return plugin->desc.release_datetime;
}
/**
* gst_plugin_get_module:
* @plugin: plugin to query
*
* Gets the #GModule of the plugin. If the plugin isn't loaded yet, NULL is
* returned.
*
* Returns: (transfer none): module belonging to the plugin or NULL if the
* plugin isn't loaded yet.
*/
GModule *
gst_plugin_get_module (GstPlugin * plugin)
{
g_return_val_if_fail (plugin != NULL, NULL);
return plugin->module;
}
/**
* gst_plugin_is_loaded:
* @plugin: plugin to query

View file

@ -333,7 +333,6 @@ const gchar* gst_plugin_get_release_date_string (GstPlugin *plugin);
const GstStructure* gst_plugin_get_cache_data (GstPlugin * plugin);
void gst_plugin_set_cache_data (GstPlugin * plugin, GstStructure *cache_data);
GModule * gst_plugin_get_module (GstPlugin *plugin);
gboolean gst_plugin_is_loaded (GstPlugin *plugin);
gboolean gst_plugin_name_filter (GstPlugin *plugin, const gchar *name);

View file

@ -761,7 +761,6 @@ EXPORTS
gst_plugin_get_description
gst_plugin_get_filename
gst_plugin_get_license
gst_plugin_get_module
gst_plugin_get_name
gst_plugin_get_origin
gst_plugin_get_package