From 6cb49cf2c3ba764bfd6cd0de8700d735c6acc5a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 18 May 2017 10:43:19 +0100 Subject: [PATCH] Fix up package name and origin in some plugins --- ext/shout2/gstshout2.c | 3 +-- gst/audiofx/gstscaletempoplugin.c | 8 +------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/ext/shout2/gstshout2.c b/ext/shout2/gstshout2.c index 867a134b1f..e28155f6d2 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 c4a73ce296..4c6f1f1dd9 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)