summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2003-12-04 10:37:38 +0000
committerAndy Wingo <wingo@pobox.com>2003-12-04 10:37:38 +0000
commite46d34995dbfd1481f962b620df4dfa4266f7977 (patch)
tree42250ce68fbbb5419cb4323e55a6817dde3fd88f /ext
parent256a0bfc359c4d14cbf10ec265a7aa01a3d5a9bd (diff)
remove copyright field from plugins
Original commit message from CVS: remove copyright field from plugins
Diffstat (limited to 'ext')
-rw-r--r--ext/aalib/gstaasink.c1
-rw-r--r--ext/dv/gstdvdec.c1
-rw-r--r--ext/esd/gstesd.c1
-rw-r--r--ext/flac/gstflac.c1
-rw-r--r--ext/gdk_pixbuf/gstgdkpixbuf.c1
-rw-r--r--ext/jpeg/gstjpeg.c1
-rw-r--r--ext/ladspa/gstladspa.c15
-rw-r--r--ext/libpng/gstpng.c1
-rw-r--r--ext/mikmod/gstmikmod.c1
-rw-r--r--ext/pango/gsttextoverlay.c1
-rw-r--r--ext/pango/gsttimeoverlay.c1
-rw-r--r--ext/raw1394/gst1394.c1
-rw-r--r--ext/shout2/gstshout2.c1
-rw-r--r--ext/speex/gstspeex.c1
14 files changed, 10 insertions, 18 deletions
diff --git a/ext/aalib/gstaasink.c b/ext/aalib/gstaasink.c
index 4a7d8a40..59897e55 100644
--- a/ext/aalib/gstaasink.c
+++ b/ext/aalib/gstaasink.c
@@ -557,7 +557,6 @@ GST_PLUGIN_DEFINE (
plugin_init,
VERSION,
"GPL",
- GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN
)
diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c
index 7bcaef77..094445a8 100644
--- a/ext/dv/gstdvdec.c
+++ b/ext/dv/gstdvdec.c
@@ -998,7 +998,6 @@ GST_PLUGIN_DEFINE (
plugin_init,
VERSION,
"LGPL",
- GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN
);
diff --git a/ext/esd/gstesd.c b/ext/esd/gstesd.c
index cf62bfa8..e804b72e 100644
--- a/ext/esd/gstesd.c
+++ b/ext/esd/gstesd.c
@@ -49,7 +49,6 @@ GST_PLUGIN_DEFINE (
plugin_init,
VERSION,
"LGPL",
- GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN)
diff --git a/ext/flac/gstflac.c b/ext/flac/gstflac.c
index a52b94f6..bcbc60cb 100644
--- a/ext/flac/gstflac.c
+++ b/ext/flac/gstflac.c
@@ -53,6 +53,5 @@ GST_PLUGIN_DEFINE (
plugin_init,
VERSION,
"LGPL",
- GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN)
diff --git a/ext/gdk_pixbuf/gstgdkpixbuf.c b/ext/gdk_pixbuf/gstgdkpixbuf.c
index c9c7d919..749a72f7 100644
--- a/ext/gdk_pixbuf/gstgdkpixbuf.c
+++ b/ext/gdk_pixbuf/gstgdkpixbuf.c
@@ -434,6 +434,5 @@ GST_PLUGIN_DEFINE (
plugin_init,
VERSION,
"LGPL",
- GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN)
diff --git a/ext/jpeg/gstjpeg.c b/ext/jpeg/gstjpeg.c
index 1e7f8971..2fe1000d 100644
--- a/ext/jpeg/gstjpeg.c
+++ b/ext/jpeg/gstjpeg.c
@@ -41,6 +41,5 @@ GST_PLUGIN_DEFINE (
plugin_init,
VERSION,
"LGPL",
- GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN)
diff --git a/ext/ladspa/gstladspa.c b/ext/ladspa/gstladspa.c
index 6dc8763f..6ecb3ce1 100644
--- a/ext/ladspa/gstladspa.c
+++ b/ext/ladspa/gstladspa.c
@@ -1,6 +1,7 @@
/* GStreamer
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
* <2001> Steve Baker <stevebaker_org@yahoo.co.uk>
+ * 2003 Andy Wingo <wingo at pobox.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -30,6 +31,11 @@
#include <ladspa.h> /* main ladspa sdk include file */
#include "utils.h" /* ladspa sdk utility functions */
+/* 1.0 and the 1.1 preliminary headers don't define a version, but 1.1 final
+ does */
+#ifndef LADSPA_VERSION
+#define LADSPA_VERSION "1.0"
+#endif
/* takes ownership of the name */
static GstPadTemplate*
@@ -1038,9 +1044,8 @@ GST_PLUGIN_DEFINE (
"ladspa",
"All LADSPA plugins",
plugin_init,
- LADSPA_VERSION,
- "LGPL",
- "(c) 2003 The LADSPA team",
- "LADSPA",
- "http://www.ladspa.org/"
+ VERSION,
+ GST_LICENSE,
+ GST_PACKAGE,
+ GST_ORIGIN
)
diff --git a/ext/libpng/gstpng.c b/ext/libpng/gstpng.c
index 54bcccbd..20e5d0b0 100644
--- a/ext/libpng/gstpng.c
+++ b/ext/libpng/gstpng.c
@@ -40,6 +40,5 @@ GST_PLUGIN_DEFINE (
plugin_init,
VERSION,
"LGPL",
- GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN)
diff --git a/ext/mikmod/gstmikmod.c b/ext/mikmod/gstmikmod.c
index 57fa9bb2..6559b94e 100644
--- a/ext/mikmod/gstmikmod.c
+++ b/ext/mikmod/gstmikmod.c
@@ -562,6 +562,5 @@ GST_PLUGIN_DEFINE (
plugin_init,
VERSION,
"GPL",
- GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN)
diff --git a/ext/pango/gsttextoverlay.c b/ext/pango/gsttextoverlay.c
index 06f43ef5..2605c6a3 100644
--- a/ext/pango/gsttextoverlay.c
+++ b/ext/pango/gsttextoverlay.c
@@ -650,7 +650,6 @@ GST_PLUGIN_DEFINE (
plugin_init,
VERSION,
"GPL",
- GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN)
diff --git a/ext/pango/gsttimeoverlay.c b/ext/pango/gsttimeoverlay.c
index 0f97f6bc..9a3b292e 100644
--- a/ext/pango/gsttimeoverlay.c
+++ b/ext/pango/gsttimeoverlay.c
@@ -210,7 +210,6 @@ GST_PLUGIN_DEFINE (
plugin_init,
VERSION,
GST_LICENSE,
- GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN
)
diff --git a/ext/raw1394/gst1394.c b/ext/raw1394/gst1394.c
index f8ed5148..0a5a8b7a 100644
--- a/ext/raw1394/gst1394.c
+++ b/ext/raw1394/gst1394.c
@@ -43,7 +43,6 @@ GST_PLUGIN_DEFINE(
plugin_init,
VERSION,
"LGPL",
- GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN
);
diff --git a/ext/shout2/gstshout2.c b/ext/shout2/gstshout2.c
index 3faccb6c..bcf3981f 100644
--- a/ext/shout2/gstshout2.c
+++ b/ext/shout2/gstshout2.c
@@ -542,7 +542,6 @@ GST_PLUGIN_DEFINE (
plugin_init,
VERSION,
"LGPL",
- GST_COPYRIGHT,
"libshout2",
"http://www.icecast.org/download.html"
)
diff --git a/ext/speex/gstspeex.c b/ext/speex/gstspeex.c
index 7103f010..022b8ca9 100644
--- a/ext/speex/gstspeex.c
+++ b/ext/speex/gstspeex.c
@@ -41,6 +41,5 @@ GST_PLUGIN_DEFINE (
plugin_init,
VERSION,
"LGPL",
- GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN)