diff options
author | Andy Wingo <wingo@pobox.com> | 2003-12-04 10:37:38 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2003-12-04 10:37:38 +0000 |
commit | e69ece9d7e8425425f20c76a643e3214fd1fac9a (patch) | |
tree | f08c937120dd384a9ea5af55f421e2f773884f1b /ext/ladspa | |
parent | af1f5b95a241096c7535a679351a2b3a6d4378c1 (diff) | |
download | gst-plugins-bad-e69ece9d7e8425425f20c76a643e3214fd1fac9a.tar.gz gst-plugins-bad-e69ece9d7e8425425f20c76a643e3214fd1fac9a.tar.bz2 gst-plugins-bad-e69ece9d7e8425425f20c76a643e3214fd1fac9a.zip |
remove copyright field from plugins
Original commit message from CVS:
remove copyright field from plugins
Diffstat (limited to 'ext/ladspa')
-rw-r--r-- | ext/ladspa/gstladspa.c | 15 |
1 files changed, 10 insertions, 5 deletions
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 ) |