gst: Change name parameter of GST_PLUGIN_DEFINE() to not take a string anymore

This will be needed when we later add support for static linking
of plugins without introducing new API or changing existing API.
This commit is contained in:
Sebastian Dröge 2012-04-05 14:17:16 +02:00
parent 079b2cb0c7
commit aca083c56d
3 changed files with 3 additions and 3 deletions

View file

@ -434,7 +434,7 @@ plugin_init (GstPlugin *plugin)
GST_PLUGIN_DEFINE (
GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"my_filter",
my_filter,
"My filter plugin",
plugin_init,
VERSION,

View file

@ -260,7 +260,7 @@ G_BEGIN_DECLS \
GST_PLUGIN_EXPORT GstPluginDesc gst_plugin_desc = { \
major, \
minor, \
name, \
#name, \
(gchar *) description, \
init, \
version, \

View file

@ -93,6 +93,6 @@ plugin_init (GstPlugin * plugin)
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"coreelements",
coreelements,
"standard GStreamer elements",
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);