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 e77e2ee66be5abf5bbc273add81504f0e46a3c21
parent b10448b262d5947133d909ea740e06747cb2e4d8
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Wed, 12 Oct 2022 14:48:40 +0100

Update copyright headers

Diffstat:
MCMakeLists.txt | 2+-
Mcapi/CMakeLists.txt | 2+-
Mcapi/capi.cpp | 2+-
Mexamples/CMakeLists.txt | 2+-
Mexamples/biquads.cpp | 2+-
Mexamples/ccv.cpp | 2+-
Mexamples/dft.cpp | 2+-
Mexamples/fir.cpp | 2+-
Mexamples/iir.cpp | 2+-
Mexamples/sample_rate_conversion.cpp | 2+-
Mexamples/window.cpp | 2+-
Minclude/kfr/all.hpp | 2+-
Minclude/kfr/base.hpp | 2+-
Minclude/kfr/base/basic_expressions.hpp | 2+-
Minclude/kfr/base/conversion.hpp | 2+-
Minclude/kfr/base/expression.hpp | 2+-
Minclude/kfr/base/filter.hpp | 2+-
Minclude/kfr/base/fraction.hpp | 2+-
Minclude/kfr/base/function_expressions.hpp | 2+-
Minclude/kfr/base/generators.hpp | 2+-
Minclude/kfr/base/memory.hpp | 2+-
Minclude/kfr/base/pointer.hpp | 2+-
Minclude/kfr/base/random.hpp | 2+-
Minclude/kfr/base/reduce.hpp | 2+-
Minclude/kfr/base/small_buffer.hpp | 2+-
Minclude/kfr/base/sort.hpp | 2+-
Minclude/kfr/base/univector.hpp | 2+-
Minclude/kfr/capi.h | 2+-
Minclude/kfr/dft.hpp | 2+-
Minclude/kfr/dft/cache.hpp | 2+-
Minclude/kfr/dft/convolution.hpp | 2+-
Minclude/kfr/dft/data/bitrev.hpp | 2+-
Minclude/kfr/dft/data/sincos.hpp | 2+-
Minclude/kfr/dft/fft.hpp | 2+-
Minclude/kfr/dft/impl/bitrev.hpp | 2+-
Minclude/kfr/dft/impl/convolution-impl.cpp | 2+-
Minclude/kfr/dft/impl/dft-fft.hpp | 2+-
Minclude/kfr/dft/impl/dft-impl-f32.cpp | 2+-
Minclude/kfr/dft/impl/dft-impl-f64.cpp | 2+-
Minclude/kfr/dft/impl/dft-impl.hpp | 2+-
Minclude/kfr/dft/impl/dft-templates.hpp | 2+-
Minclude/kfr/dft/impl/fft-impl-f32.cpp | 2+-
Minclude/kfr/dft/impl/fft-impl-f64.cpp | 2+-
Minclude/kfr/dft/impl/fft-impl.hpp | 2+-
Minclude/kfr/dft/impl/fft-templates.hpp | 2+-
Minclude/kfr/dft/impl/ft.hpp | 2+-
Minclude/kfr/dft/reference_dft.hpp | 2+-
Minclude/kfr/dsp.hpp | 2+-
Minclude/kfr/dsp/biquad.hpp | 2+-
Minclude/kfr/dsp/biquad_design.hpp | 2+-
Minclude/kfr/dsp/dcremove.hpp | 2+-
Minclude/kfr/dsp/delay.hpp | 2+-
Minclude/kfr/dsp/ebu.hpp | 2+-
Minclude/kfr/dsp/fir.hpp | 2+-
Minclude/kfr/dsp/fir_design.hpp | 2+-
Minclude/kfr/dsp/fracdelay.hpp | 2+-
Minclude/kfr/dsp/goertzel.hpp | 2+-
Minclude/kfr/dsp/iir_design.hpp | 2+-
Minclude/kfr/dsp/mixdown.hpp | 2+-
Minclude/kfr/dsp/oscillators.hpp | 2+-
Minclude/kfr/dsp/sample_rate_conversion.hpp | 2+-
Minclude/kfr/dsp/speaker.hpp | 2+-
Minclude/kfr/dsp/special.hpp | 2+-
Minclude/kfr/dsp/state_holder.hpp | 2+-
Minclude/kfr/dsp/units.hpp | 2+-
Minclude/kfr/dsp/waveshaper.hpp | 2+-
Minclude/kfr/dsp/weighting.hpp | 2+-
Minclude/kfr/dsp/window.hpp | 2+-
Minclude/kfr/graphics.hpp | 2+-
Minclude/kfr/graphics/color.hpp | 2+-
Minclude/kfr/graphics/geometry.hpp | 2+-
Minclude/kfr/graphics/scaled.hpp | 2+-
Minclude/kfr/io.hpp | 2+-
Minclude/kfr/io/audiofile.hpp | 2+-
Minclude/kfr/io/file.hpp | 2+-
Minclude/kfr/io/impl/audiofile-impl.cpp | 2+-
Minclude/kfr/io/python_plot.hpp | 2+-
Minclude/kfr/io/tostring.hpp | 2+-
Minclude/kfr/math.hpp | 2+-
Minclude/kfr/math/abs.hpp | 2+-
Minclude/kfr/math/asin_acos.hpp | 2+-
Minclude/kfr/math/atan.hpp | 2+-
Minclude/kfr/math/clamp.hpp | 2+-
Minclude/kfr/math/compiletime.hpp | 2+-
Minclude/kfr/math/complex_math.hpp | 2+-
Minclude/kfr/math/gamma.hpp | 2+-
Minclude/kfr/math/hyperbolic.hpp | 2+-
Minclude/kfr/math/impl/abs.hpp | 2+-
Minclude/kfr/math/impl/asin_acos.hpp | 2+-
Minclude/kfr/math/impl/atan.hpp | 2+-
Minclude/kfr/math/impl/clamp.hpp | 2+-
Minclude/kfr/math/impl/gamma.hpp | 2+-
Minclude/kfr/math/impl/hyperbolic.hpp | 2+-
Minclude/kfr/math/impl/log_exp.hpp | 2+-
Minclude/kfr/math/impl/logical.hpp | 2+-
Minclude/kfr/math/impl/min_max.hpp | 2+-
Minclude/kfr/math/impl/modzerobessel.hpp | 2+-
Minclude/kfr/math/impl/round.hpp | 2+-
Minclude/kfr/math/impl/saturation.hpp | 2+-
Minclude/kfr/math/impl/select.hpp | 2+-
Minclude/kfr/math/impl/sin_cos.hpp | 2+-
Minclude/kfr/math/impl/sqrt.hpp | 2+-
Minclude/kfr/math/impl/tan.hpp | 2+-
Minclude/kfr/math/interpolation.hpp | 2+-
Minclude/kfr/math/log_exp.hpp | 2+-
Minclude/kfr/math/logical.hpp | 2+-
Minclude/kfr/math/min_max.hpp | 2+-
Minclude/kfr/math/modzerobessel.hpp | 2+-
Minclude/kfr/math/round.hpp | 2+-
Minclude/kfr/math/saturation.hpp | 2+-
Minclude/kfr/math/select.hpp | 2+-
Minclude/kfr/math/sin_cos.hpp | 2+-
Minclude/kfr/math/sqrt.hpp | 2+-
Minclude/kfr/math/tan.hpp | 2+-
Minclude/kfr/runtime.hpp | 2+-
Minclude/kfr/runtime/cpuid.hpp | 2+-
Minclude/kfr/runtime/cpuid_auto.hpp | 2+-
Minclude/kfr/simd.hpp | 2+-
Minclude/kfr/simd/comparison.hpp | 2+-
Minclude/kfr/simd/complex.hpp | 2+-
Minclude/kfr/simd/constants.hpp | 2+-
Minclude/kfr/simd/digitreverse.hpp | 2+-
Minclude/kfr/simd/horizontal.hpp | 2+-
Minclude/kfr/simd/impl/backend.hpp | 2+-
Minclude/kfr/simd/impl/backend_clang.hpp | 2+-
Minclude/kfr/simd/impl/backend_generic.hpp | 2+-
Minclude/kfr/simd/impl/basicoperators_clang.hpp | 2+-
Minclude/kfr/simd/impl/basicoperators_generic.hpp | 2+-
Minclude/kfr/simd/impl/function.hpp | 2+-
Minclude/kfr/simd/impl/operators.hpp | 2+-
Minclude/kfr/simd/impl/read_write.hpp | 2+-
Minclude/kfr/simd/impl/simd.hpp | 2+-
Minclude/kfr/simd/impl/specialconstants.hpp | 2+-
Minclude/kfr/simd/impl/specializations.i | 2+-
Minclude/kfr/simd/mask.hpp | 2+-
Minclude/kfr/simd/operators.hpp | 2+-
Minclude/kfr/simd/platform.hpp | 2+-
Minclude/kfr/simd/read_write.hpp | 2+-
Minclude/kfr/simd/shuffle.hpp | 2+-
Minclude/kfr/simd/types.hpp | 2+-
Minclude/kfr/simd/vec.hpp | 2+-
Minclude/kfr/version.hpp | 2+-
Mtests/CMakeLists.txt | 2+-
Mtests/all_tests.cpp | 2+-
Mtests/asm_test.cpp | 2+-
Mtests/base_test.cpp | 2+-
Mtests/complex_test.cpp | 2+-
Mtests/dft_test.cpp | 2+-
Mtests/dsp_test.cpp | 2+-
Mtests/expression_test.cpp | 2+-
Mtests/generate_data.cpp | 2+-
Mtests/intrinsic_test.cpp | 2+-
Mtests/io_test.cpp | 2+-
Mtests/multiarch.cpp | 2+-
Mtests/multiarch_fir_avx.cpp | 2+-
Mtests/multiarch_fir_sse2.cpp | 2+-
Mtests/numeric_tests.hpp | 2+-
Mtests/unit/base/conversion.cpp | 2+-
Mtests/unit/base/fraction.cpp | 2+-
Mtests/unit/base/random.cpp | 2+-
Mtests/unit/base/reduce.cpp | 2+-
Mtests/unit/graphics/color.cpp | 2+-
Mtests/unit/graphics/geometry.cpp | 2+-
Mtests/unit/math/abs.cpp | 2+-
Mtests/unit/math/asin_acos.cpp | 2+-
Mtests/unit/math/atan.cpp | 2+-
Mtests/unit/math/hyperbolic.cpp | 2+-
Mtests/unit/math/log_exp.cpp | 2+-
Mtests/unit/math/min_max.cpp | 2+-
Mtests/unit/math/round.cpp | 2+-
Mtests/unit/math/select.cpp | 2+-
Mtests/unit/math/sin_cos.cpp | 2+-
Mtests/unit/math/tan.cpp | 2+-
Mtests/unit/simd/complex.cpp | 2+-
Mtests/unit/simd/operators.cpp | 2+-
Mtests/unit/simd/shuffle.cpp | 2+-
Mtests/unit/simd/vec.cpp | 2+-
Mtools/CMakeLists.txt | 2+-
Mtools/ebu_test.cpp | 2+-
Mtools/sample_rate_converter.cpp | 2+-
180 files changed, 180 insertions(+), 180 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2016 D Levin (http://www.kfrlib.com) +# Copyright (C) 2016-2022 Fractalium Ltd (http://www.kfrlib.com) # This file is part of KFR # # KFR is free software: you can redistribute it and/or modify diff --git a/capi/CMakeLists.txt b/capi/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2016 D Levin (http://www.kfrlib.com) +# Copyright (C) 2016-2022 Fractalium Ltd (http://www.kfrlib.com) # This file is part of KFR # # KFR is free software: you can redistribute it and/or modify diff --git a/capi/capi.cpp b/capi/capi.cpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2016 D Levin (http://www.kfrlib.com) +# Copyright (C) 2016-2022 Fractalium Ltd (http://www.kfrlib.com) # This file is part of KFR # # KFR is free software: you can redistribute it and/or modify diff --git a/examples/biquads.cpp b/examples/biquads.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/examples/ccv.cpp b/examples/ccv.cpp @@ -1,6 +1,6 @@ /* * ccv, part of KFR (https://www.kfr.dev) - * Copyright (C) 2019 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/examples/dft.cpp b/examples/dft.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/examples/fir.cpp b/examples/fir.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/examples/iir.cpp b/examples/iir.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/examples/sample_rate_conversion.cpp b/examples/sample_rate_conversion.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/examples/window.cpp b/examples/window.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/include/kfr/all.hpp b/include/kfr/all.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base.hpp b/include/kfr/base.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/basic_expressions.hpp b/include/kfr/base/basic_expressions.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/conversion.hpp b/include/kfr/base/conversion.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/expression.hpp b/include/kfr/base/expression.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/filter.hpp b/include/kfr/base/filter.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/fraction.hpp b/include/kfr/base/fraction.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/function_expressions.hpp b/include/kfr/base/function_expressions.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/generators.hpp b/include/kfr/base/generators.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/memory.hpp b/include/kfr/base/memory.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/pointer.hpp b/include/kfr/base/pointer.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/random.hpp b/include/kfr/base/random.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/reduce.hpp b/include/kfr/base/reduce.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/small_buffer.hpp b/include/kfr/base/small_buffer.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/sort.hpp b/include/kfr/base/sort.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/base/univector.hpp b/include/kfr/base/univector.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/capi.h b/include/kfr/capi.h @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft.hpp b/include/kfr/dft.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/cache.hpp b/include/kfr/dft/cache.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/convolution.hpp b/include/kfr/dft/convolution.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/data/bitrev.hpp b/include/kfr/dft/data/bitrev.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/data/sincos.hpp b/include/kfr/dft/data/sincos.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/fft.hpp b/include/kfr/dft/fft.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/impl/bitrev.hpp b/include/kfr/dft/impl/bitrev.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/impl/convolution-impl.cpp b/include/kfr/dft/impl/convolution-impl.cpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/impl/dft-fft.hpp b/include/kfr/dft/impl/dft-fft.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/impl/dft-impl-f32.cpp b/include/kfr/dft/impl/dft-impl-f32.cpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/impl/dft-impl-f64.cpp b/include/kfr/dft/impl/dft-impl-f64.cpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/impl/dft-impl.hpp b/include/kfr/dft/impl/dft-impl.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/impl/dft-templates.hpp b/include/kfr/dft/impl/dft-templates.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/impl/fft-impl-f32.cpp b/include/kfr/dft/impl/fft-impl-f32.cpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/impl/fft-impl-f64.cpp b/include/kfr/dft/impl/fft-impl-f64.cpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/impl/fft-impl.hpp b/include/kfr/dft/impl/fft-impl.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/impl/fft-templates.hpp b/include/kfr/dft/impl/fft-templates.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/impl/ft.hpp b/include/kfr/dft/impl/ft.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dft/reference_dft.hpp b/include/kfr/dft/reference_dft.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp.hpp b/include/kfr/dsp.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/biquad.hpp b/include/kfr/dsp/biquad.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/biquad_design.hpp b/include/kfr/dsp/biquad_design.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/dcremove.hpp b/include/kfr/dsp/dcremove.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/delay.hpp b/include/kfr/dsp/delay.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/ebu.hpp b/include/kfr/dsp/ebu.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/fir.hpp b/include/kfr/dsp/fir.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/fir_design.hpp b/include/kfr/dsp/fir_design.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/fracdelay.hpp b/include/kfr/dsp/fracdelay.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/goertzel.hpp b/include/kfr/dsp/goertzel.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/iir_design.hpp b/include/kfr/dsp/iir_design.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/mixdown.hpp b/include/kfr/dsp/mixdown.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/oscillators.hpp b/include/kfr/dsp/oscillators.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/sample_rate_conversion.hpp b/include/kfr/dsp/sample_rate_conversion.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/speaker.hpp b/include/kfr/dsp/speaker.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/special.hpp b/include/kfr/dsp/special.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/state_holder.hpp b/include/kfr/dsp/state_holder.hpp @@ -3,7 +3,7 @@ */ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ #pragma once diff --git a/include/kfr/dsp/units.hpp b/include/kfr/dsp/units.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/waveshaper.hpp b/include/kfr/dsp/waveshaper.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/weighting.hpp b/include/kfr/dsp/weighting.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/dsp/window.hpp b/include/kfr/dsp/window.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/graphics.hpp b/include/kfr/graphics.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/graphics/color.hpp b/include/kfr/graphics/color.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/graphics/geometry.hpp b/include/kfr/graphics/geometry.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/graphics/scaled.hpp b/include/kfr/graphics/scaled.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/io.hpp b/include/kfr/io.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/io/audiofile.hpp b/include/kfr/io/audiofile.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/io/file.hpp b/include/kfr/io/file.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/io/impl/audiofile-impl.cpp b/include/kfr/io/impl/audiofile-impl.cpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/io/python_plot.hpp b/include/kfr/io/python_plot.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/io/tostring.hpp b/include/kfr/io/tostring.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math.hpp b/include/kfr/math.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/abs.hpp b/include/kfr/math/abs.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/asin_acos.hpp b/include/kfr/math/asin_acos.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/atan.hpp b/include/kfr/math/atan.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/clamp.hpp b/include/kfr/math/clamp.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/compiletime.hpp b/include/kfr/math/compiletime.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/complex_math.hpp b/include/kfr/math/complex_math.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/gamma.hpp b/include/kfr/math/gamma.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/hyperbolic.hpp b/include/kfr/math/hyperbolic.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/abs.hpp b/include/kfr/math/impl/abs.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/asin_acos.hpp b/include/kfr/math/impl/asin_acos.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/atan.hpp b/include/kfr/math/impl/atan.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/clamp.hpp b/include/kfr/math/impl/clamp.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/gamma.hpp b/include/kfr/math/impl/gamma.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/hyperbolic.hpp b/include/kfr/math/impl/hyperbolic.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/log_exp.hpp b/include/kfr/math/impl/log_exp.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/logical.hpp b/include/kfr/math/impl/logical.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/min_max.hpp b/include/kfr/math/impl/min_max.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/modzerobessel.hpp b/include/kfr/math/impl/modzerobessel.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/round.hpp b/include/kfr/math/impl/round.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/saturation.hpp b/include/kfr/math/impl/saturation.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/select.hpp b/include/kfr/math/impl/select.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/sin_cos.hpp b/include/kfr/math/impl/sin_cos.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/sqrt.hpp b/include/kfr/math/impl/sqrt.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/impl/tan.hpp b/include/kfr/math/impl/tan.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/interpolation.hpp b/include/kfr/math/interpolation.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/log_exp.hpp b/include/kfr/math/log_exp.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/logical.hpp b/include/kfr/math/logical.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/min_max.hpp b/include/kfr/math/min_max.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/modzerobessel.hpp b/include/kfr/math/modzerobessel.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/round.hpp b/include/kfr/math/round.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/saturation.hpp b/include/kfr/math/saturation.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/select.hpp b/include/kfr/math/select.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/sin_cos.hpp b/include/kfr/math/sin_cos.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/sqrt.hpp b/include/kfr/math/sqrt.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/math/tan.hpp b/include/kfr/math/tan.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/runtime.hpp b/include/kfr/runtime.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/runtime/cpuid.hpp b/include/kfr/runtime/cpuid.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/runtime/cpuid_auto.hpp b/include/kfr/runtime/cpuid_auto.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd.hpp b/include/kfr/simd.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/comparison.hpp b/include/kfr/simd/comparison.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/complex.hpp b/include/kfr/simd/complex.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/constants.hpp b/include/kfr/simd/constants.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/digitreverse.hpp b/include/kfr/simd/digitreverse.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/horizontal.hpp b/include/kfr/simd/horizontal.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/impl/backend.hpp b/include/kfr/simd/impl/backend.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/impl/backend_clang.hpp b/include/kfr/simd/impl/backend_clang.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/impl/backend_generic.hpp b/include/kfr/simd/impl/backend_generic.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/impl/basicoperators_clang.hpp b/include/kfr/simd/impl/basicoperators_clang.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/impl/basicoperators_generic.hpp b/include/kfr/simd/impl/basicoperators_generic.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/impl/function.hpp b/include/kfr/simd/impl/function.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/impl/operators.hpp b/include/kfr/simd/impl/operators.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/impl/read_write.hpp b/include/kfr/simd/impl/read_write.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/impl/simd.hpp b/include/kfr/simd/impl/simd.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/impl/specialconstants.hpp b/include/kfr/simd/impl/specialconstants.hpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/impl/specializations.i b/include/kfr/simd/impl/specializations.i @@ -1,5 +1,5 @@ /** - * Copyright (C) 2016 D Levin (http://www.kfrlib.com) + * Copyright (C) 2016-2022 Fractalium Ltd (http://www.kfrlib.com) * This file is part of KFR * * KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/mask.hpp b/include/kfr/simd/mask.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/operators.hpp b/include/kfr/simd/operators.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/platform.hpp b/include/kfr/simd/platform.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/read_write.hpp b/include/kfr/simd/read_write.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/shuffle.hpp b/include/kfr/simd/shuffle.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/types.hpp b/include/kfr/simd/types.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/simd/vec.hpp b/include/kfr/simd/vec.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/include/kfr/version.hpp b/include/kfr/version.hpp @@ -2,7 +2,7 @@ * @{ */ /* - Copyright (C) 2016 D Levin (https://www.kfrlib.com) + Copyright (C) 2016-2022 Fractalium Ltd (https://www.kfrlib.com) This file is part of KFR KFR is free software: you can redistribute it and/or modify diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2016 D Levin (http://www.kfrlib.com) +# Copyright (C) 2016-2022 Fractalium Ltd (http://www.kfrlib.com) # This file is part of KFR # # KFR is free software: you can redistribute it and/or modify diff --git a/tests/all_tests.cpp b/tests/all_tests.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/asm_test.cpp b/tests/asm_test.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/base_test.cpp b/tests/base_test.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/complex_test.cpp b/tests/complex_test.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/dft_test.cpp b/tests/dft_test.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/dsp_test.cpp b/tests/dsp_test.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/expression_test.cpp b/tests/expression_test.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/generate_data.cpp b/tests/generate_data.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ #define _USE_MATH_DEFINES diff --git a/tests/intrinsic_test.cpp b/tests/intrinsic_test.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/io_test.cpp b/tests/io_test.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/multiarch.cpp b/tests/multiarch.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/multiarch_fir_avx.cpp b/tests/multiarch_fir_avx.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/multiarch_fir_sse2.cpp b/tests/multiarch_fir_sse2.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/numeric_tests.hpp b/tests/numeric_tests.hpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/base/conversion.cpp b/tests/unit/base/conversion.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/base/fraction.cpp b/tests/unit/base/fraction.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/base/random.cpp b/tests/unit/base/random.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/base/reduce.cpp b/tests/unit/base/reduce.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/graphics/color.cpp b/tests/unit/graphics/color.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/graphics/geometry.cpp b/tests/unit/graphics/geometry.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/math/abs.cpp b/tests/unit/math/abs.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/math/asin_acos.cpp b/tests/unit/math/asin_acos.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ #include "../../numeric_tests.hpp" diff --git a/tests/unit/math/atan.cpp b/tests/unit/math/atan.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/math/hyperbolic.cpp b/tests/unit/math/hyperbolic.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/math/log_exp.cpp b/tests/unit/math/log_exp.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ #include "../../numeric_tests.hpp" diff --git a/tests/unit/math/min_max.cpp b/tests/unit/math/min_max.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/math/round.cpp b/tests/unit/math/round.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/math/select.cpp b/tests/unit/math/select.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/math/sin_cos.cpp b/tests/unit/math/sin_cos.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ #include "../../numeric_tests.hpp" diff --git a/tests/unit/math/tan.cpp b/tests/unit/math/tan.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ #include "../../numeric_tests.hpp" diff --git a/tests/unit/simd/complex.cpp b/tests/unit/simd/complex.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/simd/operators.cpp b/tests/unit/simd/operators.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/simd/shuffle.cpp b/tests/unit/simd/shuffle.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tests/unit/simd/vec.cpp b/tests/unit/simd/vec.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2016 D Levin (http://www.kfrlib.com) +# Copyright (C) 2016-2022 Fractalium Ltd (http://www.kfrlib.com) # This file is part of KFR # # KFR is free software: you can redistribute it and/or modify diff --git a/tools/ebu_test.cpp b/tools/ebu_test.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */ diff --git a/tools/sample_rate_converter.cpp b/tools/sample_rate_converter.cpp @@ -1,6 +1,6 @@ /** * KFR (http://kfrlib.com) - * Copyright (C) 2016 D Levin + * Copyright (C) 2016-2022 Fractalium Ltd * See LICENSE.txt for details */