kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit 68c95a30b70d0bc663967999b02becce23afb4ab
parent 1ff05879d309acbffc4117521d9303d534d4fdb5
Author: [email protected] <[email protected]>
Date:   Tue,  2 Aug 2016 22:21:54 +0300

Add base.hpp, dft.hpp, dsp.hpp, io.hpp

Diffstat:
Minclude/kfr/all.hpp | 74++++----------------------------------------------------------------------
Ainclude/kfr/base.hpp | 63+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainclude/kfr/dft.hpp | 31+++++++++++++++++++++++++++++++
Ainclude/kfr/dsp.hpp | 41+++++++++++++++++++++++++++++++++++++++++
Ainclude/kfr/io.hpp | 30++++++++++++++++++++++++++++++
Minclude/kfr/math.hpp | 23+----------------------
6 files changed, 170 insertions(+), 92 deletions(-)

diff --git a/include/kfr/all.hpp b/include/kfr/all.hpp @@ -21,73 +21,7 @@ * See http://www.kfrlib.com for details. */ -#include "cometa/string.hpp" - -#include "base/abs.hpp" -#include "base/asin_acos.hpp" -#include "base/atan.hpp" -#include "base/basic_expressions.hpp" -#include "base/clamp.hpp" -#include "base/compiletime.hpp" -#include "base/complex.hpp" -#include "base/constants.hpp" -#include "base/conversion.hpp" -#include "base/cpuid.hpp" -#include "base/cpuid_auto.hpp" -#include "base/digitreverse.hpp" -#include "base/function.hpp" -#include "base/gamma.hpp" -#include "base/generators.hpp" -#include "base/hyperbolic.hpp" -#include "base/log_exp.hpp" -#include "base/logical.hpp" -#include "base/memory.hpp" -#include "base/min_max.hpp" -#include "base/modzerobessel.hpp" -#include "base/operators.hpp" -#include "base/pointer.hpp" -#include "base/random.hpp" -#include "base/read_write.hpp" -#include "base/reduce.hpp" -#include "base/round.hpp" -#include "base/saturation.hpp" -#include "base/select.hpp" -#include "base/shuffle.hpp" -#include "base/sin_cos.hpp" -#include "base/small_buffer.hpp" -#include "base/sort.hpp" -#include "base/sqrt.hpp" -#include "base/tan.hpp" -#include "base/types.hpp" -#include "base/univector.hpp" -#include "base/vec.hpp" -#include "version.hpp" - -#include "data/bitrev.hpp" -#include "data/sincos.hpp" -#include "dsp/biquad.hpp" -#include "dsp/biquad_design.hpp" -#include "dsp/fir.hpp" -#include "dsp/fir_design.hpp" -#include "dsp/fracdelay.hpp" -#include "dsp/goertzel.hpp" -#include "dsp/impulse.hpp" -#include "dsp/interpolation.hpp" -#include "dsp/oscillators.hpp" -#include "dsp/resample.hpp" -#include "dsp/speaker.hpp" -#include "dsp/units.hpp" -#include "dsp/waveshaper.hpp" -#include "dsp/weighting.hpp" -#include "dsp/window.hpp" -#include "io/audiofile.hpp" -#include "io/file.hpp" -#include "io/python_plot.hpp" -#include "io/tostring.hpp" -#include "math.hpp" - -#include "dft/bitrev.hpp" -#include "dft/conv.hpp" -#include "dft/fft.hpp" -#include "dft/ft.hpp" -#include "dft/reference_dft.hpp" +#include "base.hpp" +#include "dft.hpp" +#include "dsp.hpp" +#include "io.hpp" diff --git a/include/kfr/base.hpp b/include/kfr/base.hpp @@ -0,0 +1,63 @@ +/** + * Copyright (C) 2016 D Levin (http://www.kfrlib.com) + * This file is part of KFR + * + * KFR 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 3 of the License, or + * (at your option) any later version. + * + * KFR 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 KFR. + * + * If GPL is not suitable for your project, you must purchase a commercial license to use KFR. + * Buying a commercial license is mandatory as soon as you develop commercial activities without + * disclosing the source code of your own applications. + * See http://www.kfrlib.com for details. + */ +#pragma once + +#include "base/abs.hpp" +#include "base/asin_acos.hpp" +#include "base/atan.hpp" +#include "base/basic_expressions.hpp" +#include "base/clamp.hpp" +#include "base/compiletime.hpp" +#include "base/complex.hpp" +#include "base/constants.hpp" +#include "base/conversion.hpp" +#include "base/cpuid.hpp" +#include "base/cpuid_auto.hpp" +#include "base/digitreverse.hpp" +#include "base/expression.hpp" +#include "base/function.hpp" +#include "base/gamma.hpp" +#include "base/generators.hpp" +#include "base/hyperbolic.hpp" +#include "base/log_exp.hpp" +#include "base/logical.hpp" +#include "base/memory.hpp" +#include "base/min_max.hpp" +#include "base/modzerobessel.hpp" +#include "base/operators.hpp" +#include "base/pointer.hpp" +#include "base/random.hpp" +#include "base/read_write.hpp" +#include "base/reduce.hpp" +#include "base/round.hpp" +#include "base/saturation.hpp" +#include "base/select.hpp" +#include "base/shuffle.hpp" +#include "base/sin_cos.hpp" +#include "base/small_buffer.hpp" +#include "base/sort.hpp" +#include "base/sqrt.hpp" +#include "base/tan.hpp" +#include "base/types.hpp" +#include "base/univector.hpp" +#include "base/vec.hpp" diff --git a/include/kfr/dft.hpp b/include/kfr/dft.hpp @@ -0,0 +1,31 @@ +/** + * Copyright (C) 2016 D Levin (http://www.kfrlib.com) + * This file is part of KFR + * + * KFR 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 3 of the License, or + * (at your option) any later version. + * + * KFR 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 KFR. + * + * If GPL is not suitable for your project, you must purchase a commercial license to use KFR. + * Buying a commercial license is mandatory as soon as you develop commercial activities without + * disclosing the source code of your own applications. + * See http://www.kfrlib.com for details. + */ +#pragma once + +#include "base.hpp" + +#include "dft/bitrev.hpp" +#include "dft/conv.hpp" +#include "dft/fft.hpp" +#include "dft/ft.hpp" +#include "dft/reference_dft.hpp" diff --git a/include/kfr/dsp.hpp b/include/kfr/dsp.hpp @@ -0,0 +1,41 @@ +/** + * Copyright (C) 2016 D Levin (http://www.kfrlib.com) + * This file is part of KFR + * + * KFR 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 3 of the License, or + * (at your option) any later version. + * + * KFR 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 KFR. + * + * If GPL is not suitable for your project, you must purchase a commercial license to use KFR. + * Buying a commercial license is mandatory as soon as you develop commercial activities without + * disclosing the source code of your own applications. + * See http://www.kfrlib.com for details. + */ +#pragma once + +#include "base.hpp" + +#include "dsp/biquad.hpp" +#include "dsp/biquad_design.hpp" +#include "dsp/fir.hpp" +#include "dsp/fir_design.hpp" +#include "dsp/fracdelay.hpp" +#include "dsp/goertzel.hpp" +#include "dsp/impulse.hpp" +#include "dsp/interpolation.hpp" +#include "dsp/oscillators.hpp" +#include "dsp/resample.hpp" +#include "dsp/speaker.hpp" +#include "dsp/units.hpp" +#include "dsp/waveshaper.hpp" +#include "dsp/weighting.hpp" +#include "dsp/window.hpp" diff --git a/include/kfr/io.hpp b/include/kfr/io.hpp @@ -0,0 +1,30 @@ +/** + * Copyright (C) 2016 D Levin (http://www.kfrlib.com) + * This file is part of KFR + * + * KFR 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 3 of the License, or + * (at your option) any later version. + * + * KFR 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 KFR. + * + * If GPL is not suitable for your project, you must purchase a commercial license to use KFR. + * Buying a commercial license is mandatory as soon as you develop commercial activities without + * disclosing the source code of your own applications. + * See http://www.kfrlib.com for details. + */ +#pragma once + +#include "base.hpp" + +#include "io/audiofile.hpp" +#include "io/file.hpp" +#include "io/python_plot.hpp" +#include "io/tostring.hpp" diff --git a/include/kfr/math.hpp b/include/kfr/math.hpp @@ -22,25 +22,4 @@ */ #pragma once -#include "base/vec.hpp" - -#include "base/abs.hpp" -#include "base/asin_acos.hpp" -#include "base/atan.hpp" -#include "base/complex.hpp" -#include "base/constants.hpp" -#include "base/digitreverse.hpp" -#include "base/gamma.hpp" -#include "base/hyperbolic.hpp" -#include "base/log_exp.hpp" -#include "base/logical.hpp" -#include "base/min_max.hpp" -#include "base/operators.hpp" -#include "base/read_write.hpp" -#include "base/round.hpp" -#include "base/saturation.hpp" -#include "base/select.hpp" -#include "base/shuffle.hpp" -#include "base/sin_cos.hpp" -#include "base/sqrt.hpp" -#include "base/tan.hpp" +#include "base.hpp"