|
1 | | -/*Copyright (c) 2003-2004, Mark Borgerding |
2 | | - Lots of modifications by Jean-Marc Valin |
3 | | - Copyright (c) 2005-2007, Xiph.Org Foundation |
4 | | - Copyright (c) 2008, Xiph.Org Foundation, CSIRO |
5 | | -
|
6 | | - All rights reserved. |
7 | | -
|
8 | | - Redistribution and use in source and binary forms, with or without |
9 | | - modification, are permitted provided that the following conditions are met: |
10 | | -
|
11 | | - * Redistributions of source code must retain the above copyright notice, |
12 | | - this list of conditions and the following disclaimer. |
13 | | - * Redistributions in binary form must reproduce the above copyright notice, |
14 | | - this list of conditions and the following disclaimer in the |
15 | | - documentation and/or other materials provided with the distribution. |
16 | | -
|
17 | | - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
18 | | - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
19 | | - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
20 | | - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
21 | | - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
22 | | - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
23 | | - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
24 | | - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
25 | | - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
26 | | - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
27 | | - POSSIBILITY OF SUCH DAMAGE.*/ |
28 | | - |
29 | | -/* This code is originally from Mark Borgerding's KISS-FFT but has been |
30 | | - heavily modified to better suit Opus and was subsequently refactored |
31 | | - for ReNameNoise */ |
| 1 | +/* |
| 2 | + Copyright (c) 2024, The Mumble Developers |
| 3 | + Copyright (c) 2008, Xiph.Org Foundation, CSIRO |
| 4 | + Copyright (c) 2005-2007, Xiph.Org Foundation |
| 5 | + Lots of modifications by Jean-Marc Valin |
| 6 | + Copyright (c) 2003-2004, Mark Borgerding |
| 7 | +
|
| 8 | + All rights reserved. |
| 9 | +
|
| 10 | + Redistribution and use in source and binary forms, with or without |
| 11 | + modification, are permitted provided that the following conditions |
| 12 | + are met: |
| 13 | +
|
| 14 | + - Redistributions of source code must retain the above copyright |
| 15 | + notice, this list of conditions and the following disclaimer. |
| 16 | +
|
| 17 | + - Redistributions in binary form must reproduce the above copyright |
| 18 | + notice, this list of conditions and the following disclaimer in the |
| 19 | + documentation and/or other materials provided with the distribution. |
| 20 | +
|
| 21 | + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 22 | + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 23 | + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 24 | + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR |
| 25 | + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 26 | + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 27 | + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 28 | + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 29 | + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 30 | + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 31 | + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 32 | +*/ |
| 33 | + |
| 34 | +/* Lots of modifications by Jean-Marc Valin. This code is originally from Mark |
| 35 | + Borgerding's KISS-FFT but has been heavily modified to better suit Opus and |
| 36 | + was subsequently refactored for ReNameNoise */ |
32 | 37 |
|
33 | 38 | #ifndef SKIP_CONFIG_H |
34 | 39 | # ifdef HAVE_CONFIG_H |
|
0 commit comments