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 51a01e140c8259bdfbe9c7ca98a3102ae4b92c61
parent 963b3d1a0a09569b6f93742e882e8dff8c557cdf
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Mon, 12 Sep 2016 15:06:39 +0300

Version 1.3.0

Diffstat:
Minclude/kfr/base/kfr.h | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/kfr/base/kfr.h b/include/kfr/base/kfr.h @@ -8,11 +8,11 @@ #include "../cident.h" -#define KFR_VERSION_STRING "1.2.0" +#define KFR_VERSION_STRING "1.3.0" #define KFR_VERSION_MAJOR 1 -#define KFR_VERSION_MINOR 2 +#define KFR_VERSION_MINOR 3 #define KFR_VERSION_BUILD 0 -#define KFR_VERSION 10200 +#define KFR_VERSION (KFR_VERSION_MAJOR * 10000 + KFR_VERSION_MINOR * 100 + KFR_VERSION_BUILD) #ifdef __cplusplus namespace kfr