mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
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:
parent
079b2cb0c7
commit
aca083c56d
3 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
|
|
@ -260,7 +260,7 @@ G_BEGIN_DECLS \
|
|||
GST_PLUGIN_EXPORT GstPluginDesc gst_plugin_desc = { \
|
||||
major, \
|
||||
minor, \
|
||||
name, \
|
||||
#name, \
|
||||
(gchar *) description, \
|
||||
init, \
|
||||
version, \
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue