Fix up package name and origin in some plugins

This commit is contained in:
Tim-Philipp Müller 2017-05-18 10:43:19 +01:00
parent 2c6016667b
commit 6cb49cf2c3
2 changed files with 2 additions and 9 deletions

View file

@ -825,5 +825,4 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
shout2,
"Sends data to an icecast server using libshout2",
plugin_init,
VERSION, "LGPL", "libshout2", "http://www.icecast.org/download/")
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)

View file

@ -63,12 +63,6 @@ plugin_init (GstPlugin * plugin)
GST_TYPE_SCALETEMPO);
}
/* this is the structure that gstreamer looks for to register plugins
*
* exchange the strings 'plugin' and 'Template plugin' with you plugin name and
* description
*/
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR,
scaletempo, "Scale audio tempo in sync with playback rate",
plugin_init, VERSION, "LGPL", "GStreamer",
"http://gstreamer.freedesktop.org/")
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)