comparison Plugins/Input/adplug/core/adl.cpp @ 1590:fd943ec96935 trunk

[svn] Sync with upstream. ADL is now dual licensed, and RIX has had a pitch fixup. Free warning fix included.
author chainsaw
date Thu, 24 Aug 2006 11:11:30 -0700
parents 705d4c089fce
children
comparison
equal deleted inserted replaced
1589:ebc170f08767 1590:fd943ec96935
1 /* 1 /*
2 * Adplug - Replayer for many OPL2/OPL3 audio file formats.
3 * Copyright (C) 1999 - 2006 Simon Peter, <dn.tlp@gmx.net>, et al.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 * adl.cpp - ADL player adaption by Simon Peter <dn.tlp@gmx.net> 2 * adl.cpp - ADL player adaption by Simon Peter <dn.tlp@gmx.net>
20 * 3 *
21 * Original ADL player by Torbjorn Andersson and Johannes Schickel 4 * Original ADL player by Torbjorn Andersson and Johannes Schickel
22 * 'lordhoto' <lordhoto at scummvm dot org> of the ScummVM project. 5 * 'lordhoto' <lordhoto at scummvm dot org> of the ScummVM project.
23 */ 6 */
24 7
25 /* ScummVM - Scumm Interpreter 8 /* ScummVM - Scumm Interpreter
9 *
10 * This file is licensed under both GPL and LGPL
26 * Copyright (C) 2006 The ScummVM project 11 * Copyright (C) 2006 The ScummVM project
12 * Copyright (C) 2006 Torbjorn Andersson and Johannes Schickel
13 *
14 * GPL License
27 * 15 *
28 * This program is free software; you can redistribute it and/or 16 * This program is free software; you can redistribute it and/or
29 * modify it under the terms of the GNU General Public License 17 * modify it under the terms of the GNU General Public License
30 * as published by the Free Software Foundation; either version 2 18 * as published by the Free Software Foundation; either version 2
31 * of the License, or (at your option) any later version. 19 * of the License, or (at your option) any later version.
36 * GNU General Public License for more details. 24 * GNU General Public License for more details.
37 25
38 * You should have received a copy of the GNU General Public License 26 * You should have received a copy of the GNU General Public License
39 * along with this program; if not, write to the Free Software 27 * along with this program; if not, write to the Free Software
40 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 28 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
29 *
30 * LPGL License
31 *
32 * This library is free software; you can redistribute it and/or
33 * modify it under the terms of the GNU Lesser General Public
34 * License as published by the Free Software Foundation; either
35 * version 2.1 of the License, or (at your option) any later version.
36
37 * This library is distributed in the hope that it will be useful,
38 * but WITHOUT ANY WARRANTY; without even the implied warranty of
39 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
40 * Lesser General Public License for more details.
41
42 * You should have received a copy of the GNU Lesser General Public
43 * License along with this library; if not, write to the Free Software
44 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
45 *
41 */ 46 */
42 47
43 #include <inttypes.h> 48 #include <inttypes.h>
44 #include <stdarg.h> 49 #include <stdarg.h>
45 #include <assert.h> 50 #include <assert.h>