-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.h
161 lines (106 loc) · 2.08 KB
/
base.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#pragma once
#include <math.h>
#include <float.h>
#include <stdlib.h>
#include <stdint.h>
#include <stddef.h>
#ifdef __cplusplus
# define EXTERN extern "C"
#else
# define EXTERN extern
#endif
#ifdef __cplusplus
namespace fastdsp { //namespace fastdsp
#endif
typedef float float32;
#if DBL_MANT_DIG == 53
typedef double float64;
#elif LDBL_MANT_DIG == 53
typedef long double float64;
#endif
//! Type of count
typedef unsigned int count_t;
//! Type of count
typedef int icount_t;
#ifdef __cplusplus
template<class T>
class complex_t{
public:
//! Real part
T re;
//! Imaginary part
T im;
complex_t(T re = 0.0, T im = 0.0){
this->re = re;
this->im = im;
};
complex_t(T a, T b, bool is_euler){
if(is_euler){
this->re = a * cos(b);
this->im = a * sin(b);
}else{
this->re = a;
this->im = b;
}
};
};
//! Complex short
typedef complex_t<short> cshort;
//! Complex long
typedef complex_t<long> clong;
//! Complex float
typedef complex_t<float32> cfloat;
//! Complex double
typedef complex_t<float64> cdouble;
//! Quaternion float
typedef struct {
float32 re;
float32 im[3];
} qfloat;
//! Quaternion double
typedef struct {
float64 re;
float64 im[3];
} qdouble;
#else
//! Complex float
typedef struct {
short re;
short im;
} cshort;
//! Complex float
typedef struct {
long re;
long im;
} clong;
//! Complex float
typedef struct {
float32 re;
float32 im;
} cfloat;
//! Complex double
typedef struct {
float64 re;
float64 im;
} cdouble;
//! Quaternion float
typedef struct {
float32 re;
float32 im[3];
} qfloat;
//! Quaternion double
typedef struct {
float64 re;
float64 im[3];
} qdouble;
#endif
typedef float32 (*pfunc_f_t)(float32);
typedef float32 (*pfunc2_f_t)(float32, float32);
typedef cfloat (*pfunc_cf_t)(cfloat);
typedef cfloat (*pfunc2_cf_t)(cfloat, cfloat);
inline float32 constrain_F(float32 val, float32 vmin, float32 vmax){
return (val < vmin) ? vmin : (val > vmax) ? vmax : val;
}
#ifdef __cplusplus
}; //namespace fastdsp
#endif