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 a27857b7706c296f954d224c4d221a0c3988621d
parent 70db31777ca0115a5969c96c1fb1f8f39cbd934a
Author: [email protected] <[email protected]>
Date:   Thu,  8 Sep 2016 17:02:20 +0300

Remove unused structs and enums

Diffstat:
Minclude/kfr/base/types.hpp | 36------------------------------------
1 file changed, 0 insertions(+), 36 deletions(-)

diff --git a/include/kfr/base/types.hpp b/include/kfr/base/types.hpp @@ -190,42 +190,6 @@ inline datatype operator&(datatype x, datatype y) return static_cast<datatype>(static_cast<type>(x) | static_cast<type>(y)); } -enum class accuracy : int -{ - accuracy = 1, - speed = 2, - _accuracy_min = static_cast<int>(accuracy), - _accuracy_max = static_cast<int>(speed) -}; - -enum class archendianness : int -{ - littleendian = 1, - bigendian = 2, - _archendianness_min = static_cast<int>(littleendian), - _archendianness_max = static_cast<int>(bigendian) -}; - -typedef void*(CMT_CDECL* func_allocate)(size_t); - -typedef void(CMT_CDECL* func_deallocate)(void*); - -struct mem_allocator -{ - func_allocate allocate; - func_deallocate deallocate; - size_t granularity; - size_t alignment; -}; - -struct mem_header -{ - size_t size; - mem_allocator* allocator; - uintptr_t refcount; - uintptr_t reserved; -}; - enum class outputinput_t { output,