From e46d34995dbfd1481f962b620df4dfa4266f7977 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Thu, 4 Dec 2003 10:37:38 +0000 Subject: remove copyright field from plugins Original commit message from CVS: remove copyright field from plugins --- ext/ladspa/gstladspa.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'ext/ladspa') 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 * <2001> Steve Baker + * 2003 Andy Wingo * * 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 /* 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 ) -- cgit