this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[BSD-3-Clause] Convert to SPDX license format

h.udo bc40eccb 5c6a01d7

+97 -119
+7 -7
COPYING
··· 1 - Copyright (c) 2003-2010 Mark Borgerding 1 + Copyright (c) 2003-2010 Mark Borgerding . All rights reserved. 2 2 3 - All rights reserved. 3 + KISS FFT is provided under: 4 4 5 - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 5 + SPDX-License-Identifier: BSD-3-Clause 6 6 7 - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 8 - * 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. 9 - * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. 7 + Being under the terms of the BSD 3-clause "New" or "Revised" License, 8 + according with: 9 + 10 + LICENSES/BSD-3-Clause 10 11 11 - 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.
+35
LICENSES/BSD-3-Clause
··· 1 + Valid-License-Identifier: BSD-3-Clause 2 + SPDX-URL: https://spdx.org/licenses/BSD-3-Clause.html 3 + Usage-Guide: 4 + To use the BSD 3-clause "New" or "Revised" License put the following SPDX 5 + tag/value pair into a comment according to the placement guidelines in 6 + the licensing rules documentation: 7 + SPDX-License-Identifier: BSD-3-Clause 8 + License-Text: 9 + 10 + Copyright (c) <year> <owner> . All rights reserved. 11 + 12 + Redistribution and use in source and binary forms, with or without modification, 13 + are permitted provided that the following conditions are met: 14 + 15 + 1. Redistributions of source code must retain the above copyright notice, 16 + this list of conditions and the following disclaimer. 17 + 18 + 2. Redistributions in binary form must reproduce the above copyright notice, 19 + this list of conditions and the following disclaimer in the documentation 20 + and/or other materials provided with the distribution. 21 + 22 + 3. Neither the name of the copyright holder nor the names of its contributors 23 + may be used to endorse or promote products derived from this software without 24 + specific prior written permission. 25 + 26 + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 27 + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 28 + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 29 + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 30 + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 31 + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 32 + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 33 + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 34 + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 35 + USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+6 -12
_kiss_fft_guts.h
··· 1 1 /* 2 - Copyright (c) 2003-2010, Mark Borgerding 3 - 4 - All rights reserved. 5 - 6 - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 7 - 8 - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 9 - * 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. 10 - * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. 11 - 12 - 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. 13 - */ 2 + * Copyright (c) 2003-2010, Mark Borgerding. All rights reserved. 3 + * This file is part of KISS FFT - https://github.com/mborgerding/kissfft 4 + * 5 + * SPDX-License-Identifier: BSD-3-Clause 6 + * See COPYING file for more information. 7 + */ 14 8 15 9 /* kiss_fft.h 16 10 defines kiss_fft_scalar as either short or a float type
+6 -12
kiss_fft.c
··· 1 1 /* 2 - Copyright (c) 2003-2010, Mark Borgerding 3 - 4 - All rights reserved. 5 - 6 - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 7 - 8 - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 9 - * 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. 10 - * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. 11 - 12 - 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. 13 - */ 2 + * Copyright (c) 2003-2010, Mark Borgerding. All rights reserved. 3 + * This file is part of KISS FFT - https://github.com/mborgerding/kissfft 4 + * 5 + * SPDX-License-Identifier: BSD-3-Clause 6 + * See COPYING file for more information. 7 + */ 14 8 15 9 16 10 #include "_kiss_fft_guts.h"
+6 -12
tools/fftutil.c
··· 1 1 /* 2 - Copyright (c) 2003-2004, Mark Borgerding 3 - 4 - All rights reserved. 5 - 6 - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 7 - 8 - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 9 - * 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. 10 - * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. 11 - 12 - 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. 13 - */ 2 + * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved. 3 + * This file is part of KISS FFT - https://github.com/mborgerding/kissfft 4 + * 5 + * SPDX-License-Identifier: BSD-3-Clause 6 + * See COPYING file for more information. 7 + */ 14 8 15 9 #include <stdlib.h> 16 10 #include <math.h>
+7 -14
tools/kfc.c
··· 1 - #include "kfc.h" 2 - 3 1 /* 4 - Copyright (c) 2003-2004, Mark Borgerding 2 + * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved. 3 + * This file is part of KISS FFT - https://github.com/mborgerding/kissfft 4 + * 5 + * SPDX-License-Identifier: BSD-3-Clause 6 + * See COPYING file for more information. 7 + */ 5 8 6 - All rights reserved. 7 - 8 - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 9 - 10 - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 11 - * 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. 12 - * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. 13 - 14 - 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. 15 - */ 16 - 9 + #include "kfc.h" 17 10 18 11 typedef struct cached_fft *kfc_cfg; 19 12
+6 -12
tools/kiss_fastfir.c
··· 1 1 /* 2 - Copyright (c) 2003-2004, Mark Borgerding 3 - 4 - All rights reserved. 5 - 6 - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 7 - 8 - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 9 - * 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. 10 - * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. 11 - 12 - 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. 13 - */ 2 + * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved. 3 + * This file is part of KISS FFT - https://github.com/mborgerding/kissfft 4 + * 5 + * SPDX-License-Identifier: BSD-3-Clause 6 + * See COPYING file for more information. 7 + */ 14 8 15 9 #include "_kiss_fft_guts.h" 16 10
+6 -14
tools/kiss_fftnd.c
··· 1 - 2 - 3 1 /* 4 - Copyright (c) 2003-2004, Mark Borgerding 5 - 6 - All rights reserved. 7 - 8 - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 9 - 10 - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 11 - * 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. 12 - * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. 13 - 14 - 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. 15 - */ 2 + * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved. 3 + * This file is part of KISS FFT - https://github.com/mborgerding/kissfft 4 + * 5 + * SPDX-License-Identifier: BSD-3-Clause 6 + * See COPYING file for more information. 7 + */ 16 8 17 9 #include "kiss_fftnd.h" 18 10 #include "_kiss_fft_guts.h"
+6 -12
tools/kiss_fftndr.c
··· 1 1 /* 2 - Copyright (c) 2003-2004, Mark Borgerding 3 - 4 - All rights reserved. 5 - 6 - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 7 - 8 - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 9 - * 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. 10 - * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. 11 - 12 - 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. 13 - */ 2 + * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved. 3 + * This file is part of KISS FFT - https://github.com/mborgerding/kissfft 4 + * 5 + * SPDX-License-Identifier: BSD-3-Clause 6 + * See COPYING file for more information. 7 + */ 14 8 15 9 #include "kiss_fftndr.h" 16 10 #include "_kiss_fft_guts.h"
+6 -12
tools/kiss_fftr.c
··· 1 1 /* 2 - Copyright (c) 2003-2004, Mark Borgerding 3 - 4 - All rights reserved. 5 - 6 - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 7 - 8 - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 9 - * 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. 10 - * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. 11 - 12 - 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. 13 - */ 2 + * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved. 3 + * This file is part of KISS FFT - https://github.com/mborgerding/kissfft 4 + * 5 + * SPDX-License-Identifier: BSD-3-Clause 6 + * See COPYING file for more information. 7 + */ 14 8 15 9 #include "kiss_fftr.h" 16 10 #include "_kiss_fft_guts.h"
+6 -12
tools/psdpng.c
··· 1 1 /* 2 - Copyright (c) 2003-2004, Mark Borgerding 3 - 4 - All rights reserved. 5 - 6 - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 7 - 8 - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 9 - * 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. 10 - * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. 11 - 12 - 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. 13 - */ 2 + * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved. 3 + * This file is part of KISS FFT - https://github.com/mborgerding/kissfft 4 + * 5 + * SPDX-License-Identifier: BSD-3-Clause 6 + * See COPYING file for more information. 7 + */ 14 8 15 9 #include <stdlib.h> 16 10 #include <math.h>