From 1b49c36a819f05ed64276642a16883c6e7c24a98 Mon Sep 17 00:00:00 2001 From: Alexey Yakovenko Date: Wed, 7 May 2014 23:39:22 +0200 Subject: updated/improved/added licensing info in many plugins, added COPYING files, some plugins got upgraded from GPL to ZLIB --- plugins/lastfm/COPYING | 17 ++++++++++ plugins/lastfm/lastfm.c | 7 ++-- plugins/libmp4ff/COPYING | 2 ++ plugins/libparser/COPYING | 21 ++++++++++++ plugins/libparser/parser.c | 29 +++++++++------- plugins/libparser/parser.h | 29 +++++++++------- plugins/m3u/COPYING | 21 ++++++++++++ plugins/m3u/m3u.c | 63 ++++++++++++++++++++--------------- plugins/medialib/COPYING | 21 ++++++++++++ plugins/medialib/medialib.c | 66 +++++++++++++++++++++---------------- plugins/mms/COPYING | 40 +++++++++++++++++++++++ plugins/mms/mmsplug.c | 66 +++++++++++++++++++++---------------- plugins/mono2stereo/COPYING | 21 ++++++++++++ plugins/mono2stereo/mono2stereo.c | 68 ++++++++++++++++++++++---------------- plugins/mpgmad/COPYING | 40 +++++++++++++++++++++++ plugins/mpgmad/mpgmad.c | 60 ++++++++++++++++++++-------------- plugins/musepack/COPYING | 56 +++++++++++++++++++++++++++++++ plugins/musepack/musepack.c | 61 ++++++++++++++++++++-------------- plugins/notify/COPYING | 17 ++++++++++ plugins/notify/notify.c | 37 +++------------------ plugins/nullout/COPYING | 21 ++++++++++++ plugins/nullout/nullout.c | 69 +++++++++++++++++++++++---------------- plugins/oss/COPYING | 16 +++++++++ plugins/oss/oss.c | 7 ++-- plugins/pltbrowser/COPYING | 21 ++++++++++++ plugins/pltbrowser/pltbrowser.c | 8 ++--- plugins/pulse/COPYING | 18 ++++++++++ plugins/pulse/pulse.c | 10 +++--- plugins/shellexec/COPYING | 19 +++++++++++ plugins/shellexec/shellexec.c | 5 +-- plugins/shellexecui/COPYING | 18 ++++++++++ plugins/shellexecui/shellexecui.c | 4 +++ plugins/shn/COPYING | 28 ++++++++++++++++ plugins/shn/shn.c | 68 ++++++++++++++++++++++---------------- plugins/sid/COPYING | 20 ++++++++++++ plugins/sid/csid.cpp | 4 +-- plugins/sid/plugin.c | 22 +++++-------- plugins/sndfile/COPYING | 35 ++++++++++++++++++++ plugins/sndfile/sndfile.c | 7 ++-- plugins/supereq/COPYING | 20 ++++++++++++ plugins/supereq/Equ.cpp | 4 +-- plugins/supereq/paramlist.hpp | 4 +-- plugins/supereq/supereq.c | 40 +++++++++++++++++++++-- 43 files changed, 892 insertions(+), 318 deletions(-) create mode 100644 plugins/lastfm/COPYING create mode 100644 plugins/libparser/COPYING create mode 100644 plugins/m3u/COPYING create mode 100644 plugins/medialib/COPYING create mode 100644 plugins/mms/COPYING create mode 100644 plugins/mono2stereo/COPYING create mode 100644 plugins/mpgmad/COPYING create mode 100644 plugins/musepack/COPYING create mode 100644 plugins/notify/COPYING create mode 100644 plugins/nullout/COPYING create mode 100644 plugins/oss/COPYING create mode 100644 plugins/pltbrowser/COPYING create mode 100644 plugins/pulse/COPYING create mode 100644 plugins/shellexec/COPYING create mode 100644 plugins/shellexecui/COPYING create mode 100644 plugins/shn/COPYING create mode 100644 plugins/sid/COPYING create mode 100644 plugins/sndfile/COPYING create mode 100644 plugins/supereq/COPYING (limited to 'plugins') diff --git a/plugins/lastfm/COPYING b/plugins/lastfm/COPYING new file mode 100644 index 00000000..5903dc62 --- /dev/null +++ b/plugins/lastfm/COPYING @@ -0,0 +1,17 @@ +Last.fm scrobbler plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko + +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. + diff --git a/plugins/lastfm/lastfm.c b/plugins/lastfm/lastfm.c index c725bc9d..d7e0a7e1 100644 --- a/plugins/lastfm/lastfm.c +++ b/plugins/lastfm/lastfm.c @@ -1,6 +1,6 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + Last.fm scrobbler plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -991,7 +991,8 @@ static DB_misc_t plugin = { .plugin.name = "last.fm scrobbler", .plugin.descr = "Sends played songs information to your last.fm account, or other service that use AudioScrobbler protocol", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko \n" + "Last.fm scrobbler plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko\n" "\n" "This program is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU General Public License\n" diff --git a/plugins/libmp4ff/COPYING b/plugins/libmp4ff/COPYING index 920c4e67..44cca089 100644 --- a/plugins/libmp4ff/COPYING +++ b/plugins/libmp4ff/COPYING @@ -1,3 +1,5 @@ +This copy of libmp4ff has been modified specifically for DeaDBeeF Player. +Modifications (C) 2009-20014 Alexey Yakovenko. Any non-GPL usage of this software or parts of this software is strictly forbidden. diff --git a/plugins/libparser/COPYING b/plugins/libparser/COPYING new file mode 100644 index 00000000..9764ddad --- /dev/null +++ b/plugins/libparser/COPYING @@ -0,0 +1,21 @@ +Simple text parsing library +Copyright (C) 2009-2014 Alexey Yakovenko + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + diff --git a/plugins/libparser/parser.c b/plugins/libparser/parser.c index dfb5fa5e..06d54f8f 100644 --- a/plugins/libparser/parser.c +++ b/plugins/libparser/parser.c @@ -1,19 +1,24 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + Simple text parsing library + Copyright (C) 2009-2014 Alexey Yakovenko - 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 software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. - 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. + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: - You should have received a copy of the GNU General Public License - along with this program. If not, see . + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. */ #include diff --git a/plugins/libparser/parser.h b/plugins/libparser/parser.h index 59a02554..b4af1196 100644 --- a/plugins/libparser/parser.h +++ b/plugins/libparser/parser.h @@ -1,19 +1,24 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + Simple text parsing library + Copyright (C) 2009-2014 Alexey Yakovenko - 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 software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. - 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. + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: - You should have received a copy of the GNU General Public License - along with this program. If not, see . + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. */ #ifndef __PARSER_H #define __PARSER_H diff --git a/plugins/m3u/COPYING b/plugins/m3u/COPYING new file mode 100644 index 00000000..b234745a --- /dev/null +++ b/plugins/m3u/COPYING @@ -0,0 +1,21 @@ +M3U and PLS playlist plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + diff --git a/plugins/m3u/m3u.c b/plugins/m3u/m3u.c index c3e76cc2..ea5a5fba 100644 --- a/plugins/m3u/m3u.c +++ b/plugins/m3u/m3u.c @@ -1,20 +1,24 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + M3U and PLS playlist plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko - 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. + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. */ #include @@ -600,21 +604,26 @@ DB_playlist_t plugin = { .plugin.name = "M3U and PLS support", .plugin.descr = "Importing and exporting M3U and PLS formats\nRecognizes .pls, .m3u and .m3u8 file types\n\nNOTE: only utf8 file names are currently supported", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko \n" + "M3U and PLS playlist plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko\n" + "\n" + "This software is provided 'as-is', without any express or implied\n" + "warranty. In no event will the authors be held liable for any damages\n" + "arising from the use of this software.\n" + "\n" + "Permission is granted to anyone to use this software for any purpose,\n" + "including commercial applications, and to alter it and redistribute it\n" + "freely, subject to the following restrictions:\n" "\n" - "This program is free software; you can redistribute it and/or\n" - "modify it under the terms of the GNU General Public License\n" - "as published by the Free Software Foundation; either version 2\n" - "of the License, or (at your option) any later version.\n" + "1. The origin of this software must not be misrepresented; you must not\n" + " claim that you wrote the original software. If you use this software\n" + " in a product, an acknowledgment in the product documentation would be\n" + " appreciated but is not required.\n" "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" + "2. Altered source versions must be plainly marked as such, and must not be\n" + " misrepresented as being the original software.\n" "\n" - "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" + "3. This notice may not be removed or altered from any source distribution.\n" , .plugin.website = "http://deadbeef.sf.net", .load = m3uplug_load, diff --git a/plugins/medialib/COPYING b/plugins/medialib/COPYING new file mode 100644 index 00000000..b159eb7e --- /dev/null +++ b/plugins/medialib/COPYING @@ -0,0 +1,21 @@ +Media Library plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + diff --git a/plugins/medialib/medialib.c b/plugins/medialib/medialib.c index 8a957156..9a52acff 100644 --- a/plugins/medialib/medialib.c +++ b/plugins/medialib/medialib.c @@ -1,21 +1,26 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2011 Alexey Yakovenko - - 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. + Media Library plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. */ + #include #include #include "../../deadbeef.h" @@ -223,21 +228,26 @@ static ddb_medialib_plugin_t plugin = { .plugin.plugin.name = "Media Library", .plugin.plugin.descr = "Scans disk for music files and manages them as database", .plugin.plugin.copyright = - "Copyright (C) 2009-2011 Alexey Yakovenko \n" + "Media Library plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko\n" + "\n" + "This software is provided 'as-is', without any express or implied\n" + "warranty. In no event will the authors be held liable for any damages\n" + "arising from the use of this software.\n" + "\n" + "Permission is granted to anyone to use this software for any purpose,\n" + "including commercial applications, and to alter it and redistribute it\n" + "freely, subject to the following restrictions:\n" "\n" - "This program is free software; you can redistribute it and/or\n" - "modify it under the terms of the GNU General Public License\n" - "as published by the Free Software Foundation; either version 2\n" - "of the License, or (at your option) any later version.\n" + "1. The origin of this software must not be misrepresented; you must not\n" + " claim that you wrote the original software. If you use this software\n" + " in a product, an acknowledgment in the product documentation would be\n" + " appreciated but is not required.\n" "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" + "2. Altered source versions must be plainly marked as such, and must not be\n" + " misrepresented as being the original software.\n" "\n" - "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" + "3. This notice may not be removed or altered from any source distribution.\n" , .plugin.plugin.website = "http://deadbeef.sf.net", .plugin.plugin.connect = ml_connect, diff --git a/plugins/mms/COPYING b/plugins/mms/COPYING new file mode 100644 index 00000000..e648d9ef --- /dev/null +++ b/plugins/mms/COPYING @@ -0,0 +1,40 @@ +MMS transport VFS plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + + + +libmms - MMS over TCP protocol +Copyright (C) 2002-2004 the xine project +Modifications for DeaDBeeF (C) 2009-2014 Alexey Yakovenko + +xine is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the ree Software Foundation; either version 2 of the License, or +(at your option) any later version. + +xine 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA diff --git a/plugins/mms/mmsplug.c b/plugins/mms/mmsplug.c index 5d87250c..143f778a 100644 --- a/plugins/mms/mmsplug.c +++ b/plugins/mms/mmsplug.c @@ -1,21 +1,26 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko - - 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. + MMS transport VFS plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. */ + #include "../../deadbeef.h" #include #include @@ -173,23 +178,26 @@ static DB_vfs_t plugin = { .plugin.name = "mms vfs", .plugin.descr = "MMS streaming plugin based on libmms", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko \n" + "MMS transport VFS plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko\n" + "\n" + "This software is provided 'as-is', without any express or implied\n" + "warranty. In no event will the authors be held liable for any damages\n" + "arising from the use of this software.\n" "\n" - "Uses modified libmms-0.6.0, http://sourceforge.net/projects/libmms/\n" + "Permission is granted to anyone to use this software for any purpose,\n" + "including commercial applications, and to alter it and redistribute it\n" + "freely, subject to the following restrictions:\n" "\n" - "This program is free software; you can redistribute it and/or\n" - "modify it under the terms of the GNU General Public License\n" - "as published by the Free Software Foundation; either version 2\n" - "of the License, or (at your option) any later version.\n" + "1. The origin of this software must not be misrepresented; you must not\n" + " claim that you wrote the original software. If you use this software\n" + " in a product, an acknowledgment in the product documentation would be\n" + " appreciated but is not required.\n" "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" + "2. Altered source versions must be plainly marked as such, and must not be\n" + " misrepresented as being the original software.\n" "\n" - "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" + "3. This notice may not be removed or altered from any source distribution.\n" , .plugin.website = "http://deadbeef.sf.net", .open = mms_open, diff --git a/plugins/mono2stereo/COPYING b/plugins/mono2stereo/COPYING new file mode 100644 index 00000000..194a6278 --- /dev/null +++ b/plugins/mono2stereo/COPYING @@ -0,0 +1,21 @@ +Mono to stereo converter DSP plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + diff --git a/plugins/mono2stereo/mono2stereo.c b/plugins/mono2stereo/mono2stereo.c index 18bcc074..9a259fa6 100644 --- a/plugins/mono2stereo/mono2stereo.c +++ b/plugins/mono2stereo/mono2stereo.c @@ -1,21 +1,26 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko - - 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. + Mono to stereo converter DSP plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. */ + #include #include #include @@ -142,23 +147,28 @@ static DB_dsp_t plugin = { .plugin.type = DB_PLUGIN_DSP, .plugin.id = "m2s", .plugin.name = "Mono to stereo", - .plugin.descr = "DSP plugin to convert mono to stereo", + .plugin.descr = "Mono to stereo converter DSP", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko \n" + "Mono to stereo converter DSP plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko\n" + "\n" + "This software is provided 'as-is', without any express or implied\n" + "warranty. In no event will the authors be held liable for any damages\n" + "arising from the use of this software.\n" + "\n" + "Permission is granted to anyone to use this software for any purpose,\n" + "including commercial applications, and to alter it and redistribute it\n" + "freely, subject to the following restrictions:\n" "\n" - "This program is free software; you can redistribute it and/or\n" - "modify it under the terms of the GNU General Public License\n" - "as published by the Free Software Foundation; either version 2\n" - "of the License, or (at your option) any later version.\n" + "1. The origin of this software must not be misrepresented; you must not\n" + " claim that you wrote the original software. If you use this software\n" + " in a product, an acknowledgment in the product documentation would be\n" + " appreciated but is not required.\n" "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" + "2. Altered source versions must be plainly marked as such, and must not be\n" + " misrepresented as being the original software.\n" "\n" - "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" + "3. This notice may not be removed or altered from any source distribution.\n" , .plugin.website = "http://deadbeef.sf.net", .num_params = m2s_num_params, diff --git a/plugins/mpgmad/COPYING b/plugins/mpgmad/COPYING new file mode 100644 index 00000000..9908700b --- /dev/null +++ b/plugins/mpgmad/COPYING @@ -0,0 +1,40 @@ +MPEG decoder plugin based on libmad +Copyright (C) 2009-2014 Alexey Yakovenko + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + + + +libmad - MPEG audio decoder library +Copyright (C) 2000-2004 Underbit Technologies, Inc. + +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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + diff --git a/plugins/mpgmad/mpgmad.c b/plugins/mpgmad/mpgmad.c index c5f67ef3..fb6d0fce 100644 --- a/plugins/mpgmad/mpgmad.c +++ b/plugins/mpgmad/mpgmad.c @@ -1,20 +1,27 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + MPEG decoder plugin based on libmad + Copyright (C) 2009-2014 Alexey Yakovenko - 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 software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. - 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. + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: - You should have received a copy of the GNU General Public License - along with this program. If not, see . + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. */ + + #include #include #include @@ -1467,21 +1474,26 @@ static DB_decoder_t plugin = { .plugin.name = "MPEG decoder", .plugin.descr = "MPEG v1/2 layer1/2/3 decoder based on libmad", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko \n" + "MPEG decoder plugin based on libmad\n" + "Copyright (C) 2009-2014 Alexey Yakovenko\n" + "\n" + "This software is provided 'as-is', without any express or implied\n" + "warranty. In no event will the authors be held liable for any damages\n" + "arising from the use of this software.\n" + "\n" + "Permission is granted to anyone to use this software for any purpose,\n" + "including commercial applications, and to alter it and redistribute it\n" + "freely, subject to the following restrictions:\n" "\n" - "This program is free software; you can redistribute it and/or\n" - "modify it under the terms of the GNU General Public License\n" - "as published by the Free Software Foundation; either version 2\n" - "of the License, or (at your option) any later version.\n" + "1. The origin of this software must not be misrepresented; you must not\n" + " claim that you wrote the original software. If you use this software\n" + " in a product, an acknowledgment in the product documentation would be\n" + " appreciated but is not required.\n" "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" + "2. Altered source versions must be plainly marked as such, and must not be\n" + " misrepresented as being the original software.\n" "\n" - "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" + "3. This notice may not be removed or altered from any source distribution.\n" , .plugin.website = "http://deadbeef.sf.net", .plugin.configdialog = settings_dlg, diff --git a/plugins/musepack/COPYING b/plugins/musepack/COPYING new file mode 100644 index 00000000..ed8dc12a --- /dev/null +++ b/plugins/musepack/COPYING @@ -0,0 +1,56 @@ +MusePack decoder plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko +Uses Musepack SV8 libs (r435), (C) 2005-2009, The Musepack Development Team + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + + + +Musepack SV8 libs (r435) +Copyright (c) 2005-2009, The Musepack Development Team +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following +disclaimer in the documentation and/or other materials provided +with the distribution. + +* Neither the name of the The Musepack Development Team nor the +names of its contributors may be used to endorse or promote +products derived from this software without specific prior +written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/plugins/musepack/musepack.c b/plugins/musepack/musepack.c index ea654e31..e7e41f53 100644 --- a/plugins/musepack/musepack.c +++ b/plugins/musepack/musepack.c @@ -1,20 +1,27 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + MusePack decoder plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko + Uses Musepack SV8 libs (r435), (C) 2005-2009, The Musepack Development Team - 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 software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. - 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. + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: - You should have received a copy of the GNU General Public License - along with this program. If not, see . + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. */ + #include #include #include @@ -538,23 +545,27 @@ static DB_decoder_t plugin = { .plugin.name = "MusePack decoder", .plugin.descr = "Musepack decoder using libmppdec", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko \n" - "\n" + "MusePack decoder plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko\n" "Uses Musepack SV8 libs (r435), (C) 2005-2009, The Musepack Development Team\n" "\n" - "This program is free software; you can redistribute it and/or\n" - "modify it under the terms of the GNU General Public License\n" - "as published by the Free Software Foundation; either version 2\n" - "of the License, or (at your option) any later version.\n" + "This software is provided 'as-is', without any express or implied\n" + "warranty. In no event will the authors be held liable for any damages\n" + "arising from the use of this software.\n" + "\n" + "Permission is granted to anyone to use this software for any purpose,\n" + "including commercial applications, and to alter it and redistribute it\n" + "freely, subject to the following restrictions:\n" + "\n" + "1. The origin of this software must not be misrepresented; you must not\n" + " claim that you wrote the original software. If you use this software\n" + " in a product, an acknowledgment in the product documentation would be\n" + " appreciated but is not required.\n" "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" + "2. Altered source versions must be plainly marked as such, and must not be\n" + " misrepresented as being the original software.\n" "\n" - "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" + "3. This notice may not be removed or altered from any source distribution.\n" , .plugin.website = "http://deadbeef.sf.net", .plugin.start = musepack_start, diff --git a/plugins/notify/COPYING b/plugins/notify/COPYING new file mode 100644 index 00000000..8b6f3fd7 --- /dev/null +++ b/plugins/notify/COPYING @@ -0,0 +1,17 @@ +OSD Notification plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko and contributors + +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. + diff --git a/plugins/notify/notify.c b/plugins/notify/notify.c index 86f7ee50..0364ea0a 100644 --- a/plugins/notify/notify.c +++ b/plugins/notify/notify.c @@ -1,6 +1,6 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + OSD Notification plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko and contributors This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -87,36 +87,6 @@ notify_thread (void *ctx) { } -#if 0 -static void -notify_marshal_dict_byte(DBusMessageIter *iter, const char *key, char value) -{ - DBusMessageIter entry, variant; - - if (!key || !value) return; - - dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY, NULL, &entry); - dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &key); - dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT, "y", &variant); - dbus_message_iter_append_basic(&variant, DBUS_TYPE_BYTE, &value); - dbus_message_iter_close_container(&entry, &variant); - dbus_message_iter_close_container(iter, &entry); -} - -static void -notify_marshal_dict_string(DBusMessageIter *iter, const char *key, const char *value) -{ - DBusMessageIter entry, variant; - - dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY, "sv", &entry); - dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &key); - dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT, "s", &variant); - dbus_message_iter_append_basic(&variant, DBUS_TYPE_STRING, &value); - dbus_message_iter_close_container(&entry, &variant); - dbus_message_iter_close_container(iter, &entry); -} -#endif - static void esc_xml (const char *cmd, char *esc, int size) { const char *src = cmd; @@ -343,7 +313,8 @@ DB_misc_t plugin = { .plugin.name = "OSD Notify", .plugin.descr = "Displays notifications when new track starts.\nRequires dbus and notification daemon to be running.\nNotification daemon should be provided by your desktop environment.\n", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko \n" + "OSD Notification plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko and contributors\n" "\n" "This program is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU General Public License\n" diff --git a/plugins/nullout/COPYING b/plugins/nullout/COPYING new file mode 100644 index 00000000..b3115770 --- /dev/null +++ b/plugins/nullout/COPYING @@ -0,0 +1,21 @@ +Null output plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + diff --git a/plugins/nullout/nullout.c b/plugins/nullout/nullout.c index 1a58f4d8..febb1b07 100644 --- a/plugins/nullout/nullout.c +++ b/plugins/nullout/nullout.c @@ -1,20 +1,26 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + Null output plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko - 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 software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. - 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. + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: - You should have received a copy of the GNU General Public License - along with this program. If not, see . + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. */ + #include #include #ifdef __linux__ @@ -196,24 +202,29 @@ static DB_output_t plugin = { .plugin.version_minor = 0, .plugin.type = DB_PLUGIN_OUTPUT, .plugin.id = "nullout", - .plugin.name = "null output plugin", - .plugin.descr = "doesn't play anything", + .plugin.name = "Null output plugin", + .plugin.descr = "This plugin takes the audio data, and discards it\n, so nothing will play.\nThis is useful for testing.", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko \n" - "\n" - "This program is free software; you can redistribute it and/or\n" - "modify it under the terms of the GNU General Public License\n" - "as published by the Free Software Foundation; either version 2\n" - "of the License, or (at your option) any later version.\n" - "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" - "\n" - "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" + "Null output plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko\n" + "\n" + "This software is provided 'as-is', without any express or implied\n" + "warranty. In no event will the authors be held liable for any damages\n" + "arising from the use of this software.\n" + "\n" + "Permission is granted to anyone to use this software for any purpose,\n" + "including commercial applications, and to alter it and redistribute it\n" + "freely, subject to the following restrictions:\n" + "\n" + "1. The origin of this software must not be misrepresented; you must not\n" + " claim that you wrote the original software. If you use this software\n" + " in a product, an acknowledgment in the product documentation would be\n" + " appreciated but is not required.\n" + "\n" + "2. Altered source versions must be plainly marked as such, and must not be\n" + " misrepresented as being the original software.\n" + "\n" + "3. This notice may not be removed or altered from any source distribution.\n" , .plugin.website = "http://deadbeef.sf.net", .plugin.start = null_start, diff --git a/plugins/oss/COPYING b/plugins/oss/COPYING new file mode 100644 index 00000000..c61cba17 --- /dev/null +++ b/plugins/oss/COPYING @@ -0,0 +1,16 @@ +OSS output plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko and contributors + +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, see . + diff --git a/plugins/oss/oss.c b/plugins/oss/oss.c index e7c272c7..4a26d448 100644 --- a/plugins/oss/oss.c +++ b/plugins/oss/oss.c @@ -1,6 +1,6 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + OSS output plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko and contributors 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 @@ -382,7 +382,8 @@ static DB_output_t plugin = { .plugin.name = "OSS output plugin", .plugin.descr = "plays sound via OSS API", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko \n" + "OSS output plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko and contributors\n" "\n" "This program is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU General Public License\n" diff --git a/plugins/pltbrowser/COPYING b/plugins/pltbrowser/COPYING new file mode 100644 index 00000000..f82e4d3d --- /dev/null +++ b/plugins/pltbrowser/COPYING @@ -0,0 +1,21 @@ +Playlist browser widget plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + diff --git a/plugins/pltbrowser/pltbrowser.c b/plugins/pltbrowser/pltbrowser.c index cbf41c00..b003ecda 100644 --- a/plugins/pltbrowser/pltbrowser.c +++ b/plugins/pltbrowser/pltbrowser.c @@ -1,6 +1,6 @@ /* - DeaDBeeF -- the music player - Copyright (C) 2009-2013 Alexey Yakovenko and other contributors + Playlist browser widget plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -256,8 +256,8 @@ static DB_misc_t plugin = { #endif .plugin.descr = "Use View -> Design Mode to add playlist browser into main window", .plugin.copyright = - "DeaDBeeF -- the music player\n" - "Copyright (C) 2009-2013 Alexey Yakovenko and other contributors\n" + "Playlist browser widget plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko\n" "\n" "This software is provided 'as-is', without any express or implied\n" "warranty. In no event will the authors be held liable for any damages\n" diff --git a/plugins/pulse/COPYING b/plugins/pulse/COPYING new file mode 100644 index 00000000..f624fe05 --- /dev/null +++ b/plugins/pulse/COPYING @@ -0,0 +1,18 @@ +PulseAudio output plugin for DeaDBeeF Player +Copyright (C) 2011 Jan D. Behrens +Copyright (C) 2010-2012 Alexey Yakovenko +Copyright (C) 2010 Anton Novikov + +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, see . + diff --git a/plugins/pulse/pulse.c b/plugins/pulse/pulse.c index 3315c139..09d4ab3f 100644 --- a/plugins/pulse/pulse.c +++ b/plugins/pulse/pulse.c @@ -1,6 +1,8 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + PulseAudio output plugin for DeaDBeeF Player + Copyright (C) 2011 Jan D. Behrens + Copyright (C) 2010-2012 Alexey Yakovenko + Copyright (C) 2010 Anton Novikov 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 @@ -14,9 +16,6 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . - - PulseAudio output plugin - Copyright (C) 2010 Anton Novikov */ #ifdef HAVE_CONFIG_H @@ -366,6 +365,7 @@ static DB_output_t plugin = .plugin.name = "PulseAudio output plugin", .plugin.descr = "At the moment of this writing, PulseAudio seems to be very unstable in many (or most) GNU/Linux distributions.\nIf you experience problems - please try switching to ALSA or OSS output.\nIf that doesn't help - please uninstall PulseAudio from your system, and try ALSA or OSS again.\nThanks for understanding", .plugin.copyright = + "PulseAudio output plugin for DeaDBeeF Player\n" "Copyright (C) 2011 Jan D. Behrens \n" "Copyright (C) 2010-2012 Alexey Yakovenko \n" "Copyright (C) 2010 Anton Novikov \n" diff --git a/plugins/shellexec/COPYING b/plugins/shellexec/COPYING new file mode 100644 index 00000000..80fa39ce --- /dev/null +++ b/plugins/shellexec/COPYING @@ -0,0 +1,19 @@ +Shellexec plugin for DeaDBeeF +Copyright (C) 2010-2014 Deadbeef team +Original developer Viktor Semykin +Maintenance, minor improvements Alexey Yakovenko +GUI support and bugfixing Azeem Arshad + +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, see . + diff --git a/plugins/shellexec/shellexec.c b/plugins/shellexec/shellexec.c index 3894b6b4..e1e7f79a 100644 --- a/plugins/shellexec/shellexec.c +++ b/plugins/shellexec/shellexec.c @@ -1,6 +1,6 @@ /* Shellexec plugin for DeaDBeeF - Copyright (C) 2010-2012 Deadbeef team + Copyright (C) 2010-2014 Deadbeef team Original developer Viktor Semykin Maintenance, minor improvements Alexey Yakovenko GUI support and bugfixing Azeem Arshad @@ -461,7 +461,8 @@ static Shx_plugin_t plugin = { "this would show the name of selected track in notification popup" , .misc.plugin.copyright = - "Copyright (C) 2010-2012 Deadbeef team\n" + "Shellexec plugin for DeaDBeeF\n" + "Copyright (C) 2010-2014 Deadbeef team\n" "Original developer Viktor Semykin \n" "Maintenance, minor improvements Alexey Yakovenko \n" "GUI support and bugfixing Azeem Arshad " diff --git a/plugins/shellexecui/COPYING b/plugins/shellexecui/COPYING new file mode 100644 index 00000000..fe3bb975 --- /dev/null +++ b/plugins/shellexecui/COPYING @@ -0,0 +1,18 @@ +ShellExec GUI plugin for DeaDBeeF Player +Copyright (C) 2012 Azeem Arshad +Copyright (C) 2013-2014 Alexey Yakovenko + +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. + diff --git a/plugins/shellexecui/shellexecui.c b/plugins/shellexecui/shellexecui.c index b7fa36ba..482cec2b 100644 --- a/plugins/shellexecui/shellexecui.c +++ b/plugins/shellexecui/shellexecui.c @@ -1,5 +1,7 @@ /* + ShellExec GUI plugin for DeaDBeeF Player Copyright (C) 2012 Azeem Arshad + Copyright (C) 2013-2014 Alexey Yakovenko This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -408,7 +410,9 @@ static DB_misc_t plugin = { #endif .plugin.descr = "A GTK UI for the Shellexec plugin", .plugin.copyright = + "ShellExec GUI plugin for DeaDBeeF Player\n" "Copyright (C) 2012 Azeem Arshad \n" + "Copyright (C) 2013-2014 Alexey Yakovenko\n" "\n" "This program is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU General Public License\n" diff --git a/plugins/shn/COPYING b/plugins/shn/COPYING new file mode 100644 index 00000000..6c3100f3 --- /dev/null +++ b/plugins/shn/COPYING @@ -0,0 +1,28 @@ +SHN (Shorten) plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko + +Based on xmms-shn, http://www.etree.org/shnutils/xmms-shn/ +Copyright (C) 2000-2007 Jason Jordan + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. + + + +For Shorten license, please see LICENCE.shorten +Modifications for DeaDBeeF (C) 2009-2014 Alexey Yakovenko diff --git a/plugins/shn/shn.c b/plugins/shn/shn.c index a8b773a1..cfc14fb4 100644 --- a/plugins/shn/shn.c +++ b/plugins/shn/shn.c @@ -1,20 +1,27 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko - - 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. + SHN (Shorten) plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko + + Based on xmms-shn, http://www.etree.org/shnutils/xmms-shn/ + Copyright (C) 2000-2007 Jason Jordan + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. */ // based on xmms-shn, http://www.etree.org/shnutils/xmms-shn/ @@ -1809,24 +1816,29 @@ static DB_decoder_t plugin = { .plugin.name = "Shorten player", .plugin.descr = "decodes shn files", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko \n" + "SHN (Shorten) plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko \n" "\n" "Based on xmms-shn, http://www.etree.org/shnutils/xmms-shn/\n" "Copyright (C) 2000-2007 Jason Jordan \n" "\n" - "This program is free software; you can redistribute it and/or\n" - "modify it under the terms of the GNU General Public License\n" - "as published by the Free Software Foundation; either version 2\n" - "of the License, or (at your option) any later version.\n" + "This software is provided 'as-is', without any express or implied\n" + "warranty. In no event will the authors be held liable for any damages\n" + "arising from the use of this software.\n" + "\n" + "Permission is granted to anyone to use this software for any purpose,\n" + "including commercial applications, and to alter it and redistribute it\n" + "freely, subject to the following restrictions:\n" + "\n" + "1. The origin of this software must not be misrepresented; you must not\n" + " claim that you wrote the original software. If you use this software\n" + " in a product, an acknowledgment in the product documentation would be\n" + " appreciated but is not required.\n" "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" + "2. Altered source versions must be plainly marked as such, and must not be\n" + " misrepresented as being the original software.\n" "\n" - "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" + "3. This notice may not be removed or altered from any source distribution.\n" , .plugin.website = "http://deadbeef.sf.net", .plugin.configdialog = settings_dlg, diff --git a/plugins/sid/COPYING b/plugins/sid/COPYING new file mode 100644 index 00000000..82ad2941 --- /dev/null +++ b/plugins/sid/COPYING @@ -0,0 +1,20 @@ +SID plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko + +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, see . + + + +Uses libsidplay2 with modifications. +The modifications (C) 2009-2014 Alexey Yakovenko. diff --git a/plugins/sid/csid.cpp b/plugins/sid/csid.cpp index c4b2744b..f2442f63 100644 --- a/plugins/sid/csid.cpp +++ b/plugins/sid/csid.cpp @@ -1,6 +1,6 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + SID plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko 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 diff --git a/plugins/sid/plugin.c b/plugins/sid/plugin.c index 2b33876b..03ea81cb 100644 --- a/plugins/sid/plugin.c +++ b/plugins/sid/plugin.c @@ -1,6 +1,6 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + SID plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko 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 @@ -38,16 +38,13 @@ DB_decoder_t sid_plugin = { .plugin.id = "sidplay2", .plugin.descr = "SID player based on libsidplay2", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko \n" + "SID plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko \n" "\n" - "Uses modified libsidplay2-2.1.0\n" - "Commodore 64 SID emulation library\n" - "Copyright (C) Simon White and other authors\n" - "\n" - "This program is free software; you can redistribute it and/or\n" - "modify it under the terms of the GNU General Public License\n" - "as published by the Free Software Foundation; either version 2\n" - "of the License, or (at your option) any later version.\n" + "This program is free software: you can redistribute it and/or modify\n" + "it under the terms of the GNU General Public License as published by\n" + "the Free Software Foundation, either version 2 of the License, or\n" + "(at your option) any later version.\n" "\n" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" @@ -55,8 +52,7 @@ DB_decoder_t sid_plugin = { "GNU General Public License for more details.\n" "\n" "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" + "along with this program. If not, see .\n" , .plugin.website = "http://deadbeef.sf.net", .plugin.start = csid_start, diff --git a/plugins/sndfile/COPYING b/plugins/sndfile/COPYING new file mode 100644 index 00000000..2e978c0e --- /dev/null +++ b/plugins/sndfile/COPYING @@ -0,0 +1,35 @@ +libsndfile plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko + +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. + + + +libsndfile +Copyright (C) 1999-2010 Erik de Castro Lopo + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/plugins/sndfile/sndfile.c b/plugins/sndfile/sndfile.c index 4ec9cb39..2cf5931c 100644 --- a/plugins/sndfile/sndfile.c +++ b/plugins/sndfile/sndfile.c @@ -1,6 +1,6 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko + libsndfile plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -582,7 +582,8 @@ static DB_decoder_t plugin = { .plugin.name = "WAV/PCM player", .plugin.descr = "wav/aiff player using libsndfile", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko \n" + "libsndfile plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko \n" "\n" "This program is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU General Public License\n" 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 + +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 + SuperEQ DSP plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko Original SuperEQ code (C) Naoki Shibata 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 + SuperEQ DSP plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko Original SuperEQ code (C) Naoki Shibata 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 + SuperEQ DSP plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko 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 \n" + "SuperEQ DSP plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko \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, -- cgit v1.2.3