From ff0c5e9154e7a3d71d2465639b5e0da1ea2c7242 Mon Sep 17 00:00:00 2001 From: Orcan Ogetbil Date: Tue, 6 Sep 2011 23:50:10 +0000 Subject: Updated the licensing information --- muse2/plugins/freeverb/CMakeLists.txt | 11 +++++++---- muse2/plugins/freeverb/allpass.h | 9 ++++++++- muse2/plugins/freeverb/comb.h | 9 ++++++++- muse2/plugins/freeverb/denormals.h | 9 ++++++++- muse2/plugins/freeverb/freeverb.cpp | 15 +++++++++++++++ muse2/plugins/freeverb/revmodel.cpp | 9 ++++++++- muse2/plugins/freeverb/revmodel.h | 9 ++++++++- muse2/plugins/freeverb/tuning.h | 7 +++++++ 8 files changed, 69 insertions(+), 9 deletions(-) (limited to 'muse2/plugins/freeverb') diff --git a/muse2/plugins/freeverb/CMakeLists.txt b/muse2/plugins/freeverb/CMakeLists.txt index da43dc98..9dfd9b1e 100644 --- a/muse2/plugins/freeverb/CMakeLists.txt +++ b/muse2/plugins/freeverb/CMakeLists.txt @@ -3,10 +3,12 @@ # Linux Music Editor # $Id:$ # -# Copyright (C) 2002-2006 by Werner Schweer and others +# Copyright (C) 1999-2011 by Werner Schweer and others # # This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License version 2. +# it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -14,8 +16,9 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program; if not, write to the +# Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA #============================================================================= ## diff --git a/muse2/plugins/freeverb/allpass.h b/muse2/plugins/freeverb/allpass.h index 4eb1c1a0..911a2c8a 100644 --- a/muse2/plugins/freeverb/allpass.h +++ b/muse2/plugins/freeverb/allpass.h @@ -1,8 +1,15 @@ -// Allpass filter declaration +//========================================================= +// MusE +// Linux Music Editor +// $Id: ./plugins/freeverb/allpass.h $ // // Written by Jezar at Dreampoint, June 2000 // http://www.dreampoint.co.uk // This code is public domain +// +//========================================================= +// Allpass filter declaration +// #ifndef _allpass_ #define _allpass_ diff --git a/muse2/plugins/freeverb/comb.h b/muse2/plugins/freeverb/comb.h index d2e0f871..5d70e0b1 100644 --- a/muse2/plugins/freeverb/comb.h +++ b/muse2/plugins/freeverb/comb.h @@ -1,8 +1,15 @@ -// Comb filter class declaration +//========================================================= +// MusE +// Linux Music Editor +// $Id: ./plugins/freeverb/comb.h $ // // Written by Jezar at Dreampoint, June 2000 // http://www.dreampoint.co.uk // This code is public domain +// +//========================================================= +// Comb filter class declaration +// #ifndef _comb_ #define _comb_ diff --git a/muse2/plugins/freeverb/denormals.h b/muse2/plugins/freeverb/denormals.h index d18412b4..ce3d77f6 100644 --- a/muse2/plugins/freeverb/denormals.h +++ b/muse2/plugins/freeverb/denormals.h @@ -1,9 +1,16 @@ -// Macro for killing denormalled numbers +//========================================================= +// MusE +// Linux Music Editor +// $Id: ./plugins/freeverb/denormals.h $ // // Written by Jezar at Dreampoint, June 2000 // http://www.dreampoint.co.uk // Based on IS_DENORMAL macro by Jon Watte // This code is public domain +// +//========================================================= +// Macro for killing denormalled numbers +// #ifndef _denormals_ #define _denormals_ diff --git a/muse2/plugins/freeverb/freeverb.cpp b/muse2/plugins/freeverb/freeverb.cpp index 0385e887..d7b65b89 100644 --- a/muse2/plugins/freeverb/freeverb.cpp +++ b/muse2/plugins/freeverb/freeverb.cpp @@ -3,6 +3,21 @@ // Linux Music Editor // $Id: freeverb.cpp,v 1.1.1.1 2003/10/27 18:57:03 wschweer Exp $ // (C) Copyright 2000 Werner Schweer (ws@seh.de) +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; version 2 of +// the License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +// //========================================================= #include "revmodel.h" diff --git a/muse2/plugins/freeverb/revmodel.cpp b/muse2/plugins/freeverb/revmodel.cpp index c72ee22b..e0f2e0b4 100644 --- a/muse2/plugins/freeverb/revmodel.cpp +++ b/muse2/plugins/freeverb/revmodel.cpp @@ -1,8 +1,15 @@ -// Reverb model implementation +//========================================================= +// MusE +// Linux Music Editor +// $Id: ./plugins/freeverb/revmodel.cpp $ // // Written by Jezar at Dreampoint, June 2000 // http://www.dreampoint.co.uk // This code is public domain +// +//========================================================= +// Reverb model implementation +// #include #include "revmodel.h" diff --git a/muse2/plugins/freeverb/revmodel.h b/muse2/plugins/freeverb/revmodel.h index bfa1f0b3..a143679a 100644 --- a/muse2/plugins/freeverb/revmodel.h +++ b/muse2/plugins/freeverb/revmodel.h @@ -1,8 +1,15 @@ -// Reverb model declaration +//========================================================= +// MusE +// Linux Music Editor +// $Id: ./plugins/freeverb/revmodel.h $ +// // // Written by Jezar at Dreampoint, June 2000 // http://www.dreampoint.co.uk // This code is public domain +// +//========================================================= +// Reverb model declaration #ifndef _revmodel_ #define _revmodel_ diff --git a/muse2/plugins/freeverb/tuning.h b/muse2/plugins/freeverb/tuning.h index ced89252..206209b6 100644 --- a/muse2/plugins/freeverb/tuning.h +++ b/muse2/plugins/freeverb/tuning.h @@ -1,8 +1,15 @@ +//========================================================= +// MusE +// Linux Music Editor +// $Id: ./plugins/freeverb/tuning.h $ +// // Reverb model tuning values // // Written by Jezar at Dreampoint, June 2000 // http://www.dreampoint.co.uk // This code is public domain +// +//========================================================= #ifndef _tuning_ #define _tuning_ -- cgit v1.2.3