summaryrefslogtreecommitdiff
path: root/plugins/supereq
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <waker@users.sourceforge.net>2014-05-07 23:39:22 +0200
committerGravatar Alexey Yakovenko <waker@users.sourceforge.net>2014-05-07 23:39:22 +0200
commit1b49c36a819f05ed64276642a16883c6e7c24a98 (patch)
tree8abaffeb0e6b71996e2f5490a9a2997b56b0dc0d /plugins/supereq
parent7946384fab1acb23d3dd1a88fd370fcd1a3e68fe (diff)
updated/improved/added licensing info in many plugins, added COPYING files, some plugins got upgraded from GPL to ZLIB
Diffstat (limited to 'plugins/supereq')
-rw-r--r--plugins/supereq/COPYING20
-rw-r--r--plugins/supereq/Equ.cpp4
-rw-r--r--plugins/supereq/paramlist.hpp4
-rw-r--r--plugins/supereq/supereq.c40
4 files changed, 61 insertions, 7 deletions
diff --git a/plugins/supereq/COPYING b/plugins/supereq/COPYING
new file mode 100644
index 00000000..31da0ae0
--- /dev/null
+++ b/plugins/supereq/COPYING
@@ -0,0 +1,20 @@
+SuperEQ DSP plugin for DeaDBeeF Player
+Copyright (C) 2009-2014 Alexey Yakovenko <waker@users.sourceforge.net>
+
+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; 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
+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.
+
+
+
+For additional credits, please see dsp_supereq.txt
diff --git a/plugins/supereq/Equ.cpp b/plugins/supereq/Equ.cpp
index afa5522e..aea1d2b5 100644
--- a/plugins/supereq/Equ.cpp
+++ b/plugins/supereq/Equ.cpp
@@ -1,6 +1,6 @@
/*
- DeaDBeeF - ultimate music player for GNU/Linux systems with X11
- Copyright (C) 2009-2013 Alexey Yakovenko <waker@users.sourceforge.net>
+ SuperEQ DSP plugin for DeaDBeeF Player
+ Copyright (C) 2009-2014 Alexey Yakovenko <waker@users.sourceforge.net>
Original SuperEQ code (C) Naoki Shibata <shibatch@users.sf.net>
This program is free software; you can redistribute it and/or
diff --git a/plugins/supereq/paramlist.hpp b/plugins/supereq/paramlist.hpp
index 9c5b09c4..d761aaf0 100644
--- a/plugins/supereq/paramlist.hpp
+++ b/plugins/supereq/paramlist.hpp
@@ -1,6 +1,6 @@
/*
- DeaDBeeF - ultimate music player for GNU/Linux systems with X11
- Copyright (C) 2009-2011 Alexey Yakovenko <waker@users.sourceforge.net>
+ SuperEQ DSP plugin for DeaDBeeF Player
+ Copyright (C) 2009-2014 Alexey Yakovenko <waker@users.sourceforge.net>
Original SuperEQ code (C) Naoki Shibata <shibatch@users.sf.net>
This program is free software; you can redistribute it and/or
diff --git a/plugins/supereq/supereq.c b/plugins/supereq/supereq.c
index 957da5a3..e701a94a 100644
--- a/plugins/supereq/supereq.c
+++ b/plugins/supereq/supereq.c
@@ -1,6 +1,6 @@
/*
- DeaDBeeF - ultimate music player for GNU/Linux systems with X11
- Copyright (C) 2009-2013 Alexey Yakovenko <waker@users.sourceforge.net>
+ SuperEQ DSP plugin for DeaDBeeF Player
+ Copyright (C) 2009-2014 Alexey Yakovenko <waker@users.sourceforge.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@@ -282,7 +282,8 @@ static DB_dsp_t plugin = {
.plugin.name = "SuperEQ",
.plugin.descr = "equalizer plugin using SuperEQ library",
.plugin.copyright =
- "Copyright (C) 2009-2013 Alexey Yakovenko <waker@users.sourceforge.net>\n"
+ "SuperEQ DSP plugin for DeaDBeeF Player\n"
+ "Copyright (C) 2009-2014 Alexey Yakovenko <waker@users.sourceforge.net>\n"
"\n"
"Uses supereq library by Naoki Shibata, http://shibatch.sourceforge.net\n"
"Uses FFT library by Takuya Ooura, http://www.kurims.kyoto-u.ac.jp/~ooura/\n"
@@ -300,6 +301,39 @@ static DB_dsp_t plugin = {
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n"
+ "\n"
+ "\n"
+ "\n"
+ "Based on:\n"
+ "Shibatch Super Equalizer ver 0.03 for winamp\n"
+ "written by Naoki Shibata shibatch@users.sourceforge.net\n"
+ "\n"
+ "Shibatch Super Equalizer is a graphic and parametric equalizer plugin\n"
+ "for winamp. This plugin uses 16383th order FIR filter with FFT algorithm.\n"
+ "It's equalization is very precise. Equalization setting can be done\n"
+ "for each channel separately.\n"
+ "\n"
+ "Processes of internal equalizer in winamp are actually done by each\n"
+ "input plugin, so the results may differ for each input plugin.\n"
+ "With this plugin, this problem can be avoided.\n"
+ "\n"
+ "This plugin is optimized for processors which have cache equal to or\n"
+ "greater than 128k bytes(16383*2*sizeof(float) = 128k). This plugin\n"
+ "won't work efficiently with K6 series processors(buy Athlon!!!).\n"
+ "\n"
+ "Do not forget pressing \"preview\" button after changing setting.\n"
+ "\n"
+ "http://shibatch.sourceforge.net/\n"
+ "\n"
+ "***\n"
+ "\n"
+ " This program(except FFT part) is distributed under LGPL. See LGPL.txt for\n"
+ "details.\n"
+ "\n"
+ " FFT part is a routine made by Mr.Ooura. This routine is a freeware. Contact\n"
+ "Mr.Ooura for details of distributing licenses.\n"
+ "\n"
+ "http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html\n"
,
.plugin.website = "http://deadbeef.sf.net",
.plugin.start = supereq_plugin_start,