summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2017-05-18 10:43:19 +0100
committerTim-Philipp Müller <tim@centricular.com>2017-05-18 10:44:07 +0100
commit6cb49cf2c3ba764bfd6cd0de8700d735c6acc5a8 (patch)
tree75f09e795a607dbfdb6280c936fb887079060e66
parent2c6016667b11a8e3e461fc3a8f234fda01834e50 (diff)
Fix up package name and origin in some plugins
-rw-r--r--ext/shout2/gstshout2.c3
-rw-r--r--gst/audiofx/gstscaletempoplugin.c8
2 files changed, 2 insertions, 9 deletions
diff --git a/ext/shout2/gstshout2.c b/ext/shout2/gstshout2.c
index 867a134b1..e28155f6d 100644
--- a/ext/shout2/gstshout2.c
+++ b/ext/shout2/gstshout2.c
@@ -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)
diff --git a/gst/audiofx/gstscaletempoplugin.c b/gst/audiofx/gstscaletempoplugin.c
index c4a73ce29..4c6f1f1dd 100644
--- a/gst/audiofx/gstscaletempoplugin.c
+++ b/gst/audiofx/gstscaletempoplugin.c
@@ -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)