src/fvec.c: move alias to aubio_priv.h, add cblas copy
[aubio.git] / src / aubio_priv.h
1 /*
2   Copyright (C) 2003-2015 Paul Brossier <piem@aubio.org>
3
4   This file is part of aubio.
5
6   aubio is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   aubio is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with aubio.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file
22  * Private include file
23  *
24  * This file is for inclusion from _within_ the library only.
25  */
26
27 #ifndef _AUBIO__PRIV_H
28 #define _AUBIO__PRIV_H
29
30 /*********************
31  *
32  * External includes
33  *
34  */
35
36 #include "config.h"
37
38 #if HAVE_STDLIB_H
39 #include <stdlib.h>
40 #endif
41
42 #if HAVE_STDIO_H
43 #include <stdio.h>
44 #endif
45
46 /* must be included before fftw3.h */
47 #ifdef HAVE_COMPLEX_H
48 #include <complex.h>
49 #endif
50
51 #if defined(HAVE_FFTW3) || defined(HAVE_FFTW3F)
52 #include <fftw3.h>
53 #endif
54
55 #ifdef HAVE_MATH_H
56 #include <math.h>
57 #endif
58
59 #ifdef HAVE_STRING_H
60 #include <string.h>
61 #endif
62
63 #ifdef HAVE_LIMITS_H
64 #include <limits.h> // for CHAR_BIT, in C99 standard
65 #endif
66
67 #ifdef HAVE_ACCELERATE
68 #define HAVE_ATLAS 1
69 #include <Accelerate/Accelerate.h>
70 #elif HAVE_ATLAS_CBLAS_H
71 #define HAVE_ATLAS 1
72 #include <atlas/cblas.h>
73 #else
74 #undef HAVE_ATLAS
75 #endif
76
77 #ifdef HAVE_ACCELERATE
78 #include <Accelerate/Accelerate.h>
79 #define aubio_vDSP_mmov       vDSP_mmov
80 #define aubio_vDSP_vmul       vDSP_vmul
81 #define aubio_vDSP_vfill      vDSP_vfill
82 #else /* HAVE_AUBIO_DOUBLE */
83 #define aubio_vDSP_mmov       vDSP_mmovD
84 #define aubio_vDSP_vmul       vDSP_vmulD
85 #define aubio_vDSP_vfill      vDSP_vfillD
86 #endif /* HAVE_AUBIO_DOUBLE */
87 #endif
88
89 #ifdef HAVE_ATLAS
90 #if !HAVE_AUBIO_DOUBLE
91 #define aubio_catlas_set      catlas_sset
92 #define aubio_cblas_copy      cblas_scopy
93 #else /* HAVE_AUBIO_DOUBLE */
94 #define aubio_catlas_set      catlas_dset
95 #define aubio_cblas_copy      cblas_dcopy
96 #endif /* HAVE_AUBIO_DOUBLE */
97
98 #if !defined(HAVE_MEMCPY_HACKS) && !defined(HAVE_ACCELERATE) && !defined(HAVE_ATLAS)
99 #define HAVE_NOOPT 1
100 #else
101 #undef HAVE_NOOPT
102 #endif
103
104 #include "types.h"
105
106 #define AUBIO_UNSTABLE 1
107
108 #include "mathutils.h"
109
110 /****
111  *
112  * SYSTEM INTERFACE
113  *
114  */
115
116 /* Memory management */
117 #define AUBIO_MALLOC(_n)             malloc(_n)
118 #define AUBIO_REALLOC(_p,_n)         realloc(_p,_n)
119 #define AUBIO_NEW(_t)                (_t*)calloc(sizeof(_t), 1)
120 #define AUBIO_ARRAY(_t,_n)           (_t*)calloc((_n)*sizeof(_t), 1)
121 #define AUBIO_MEMCPY(_dst,_src,_n)   memcpy(_dst,_src,_n)
122 #define AUBIO_MEMSET(_dst,_src,_t)   memset(_dst,_src,_t)
123 #define AUBIO_FREE(_p)               free(_p)
124
125
126 /* file interface */
127 #define AUBIO_FOPEN(_f,_m)           fopen(_f,_m)
128 #define AUBIO_FCLOSE(_f)             fclose(_f)
129 #define AUBIO_FREAD(_p,_s,_n,_f)     fread(_p,_s,_n,_f)
130 #define AUBIO_FSEEK(_f,_n,_set)      fseek(_f,_n,_set)
131
132 /* strings */
133 #define AUBIO_STRLEN(_s)             strlen(_s)
134 #define AUBIO_STRCMP(_s,_t)          strcmp(_s,_t)
135 #define AUBIO_STRNCMP(_s,_t,_n)      strncmp(_s,_t,_n)
136 #define AUBIO_STRCPY(_dst,_src)      strcpy(_dst,_src)
137 #define AUBIO_STRCHR(_s,_c)          strchr(_s,_c)
138 #ifdef strdup
139 #define AUBIO_STRDUP(s)              strdup(s)
140 #else
141 #define AUBIO_STRDUP(s)              AUBIO_STRCPY(AUBIO_MALLOC(AUBIO_STRLEN(s) + 1), s)
142 #endif
143
144
145 /* Error reporting */
146 typedef enum {
147   AUBIO_OK = 0,
148   AUBIO_FAIL = 1
149 } aubio_status;
150
151 #ifdef HAVE_C99_VARARGS_MACROS
152 #define AUBIO_ERR(...)               fprintf(stderr, "AUBIO ERROR: " __VA_ARGS__)
153 #define AUBIO_MSG(...)               fprintf(stdout, __VA_ARGS__)
154 #define AUBIO_DBG(...)               fprintf(stderr, __VA_ARGS__)
155 #define AUBIO_WRN(...)               fprintf(stderr, "AUBIO WARNING: " __VA_ARGS__)
156 #else
157 #define AUBIO_ERR(format, args...)   fprintf(stderr, "AUBIO ERROR: " format , ##args)
158 #define AUBIO_MSG(format, args...)   fprintf(stdout, format , ##args)
159 #define AUBIO_DBG(format, args...)   fprintf(stderr, format , ##args)
160 #define AUBIO_WRN(format, args...)   fprintf(stderr, "AUBIO WARNING: " format, ##args)
161 #endif
162
163 #define AUBIO_ERROR   AUBIO_ERR
164
165 #define AUBIO_QUIT(_s)               exit(_s)
166 #define AUBIO_SPRINTF                sprintf
167
168 /* pi and 2*pi */
169 #ifndef M_PI
170 #define PI         (3.14159265358979323846)
171 #else
172 #define PI         (M_PI)
173 #endif
174 #define TWO_PI     (PI*2.)
175
176 /* aliases to math.h functions */
177 #if !HAVE_AUBIO_DOUBLE
178 #define EXP        expf
179 #define COS        cosf
180 #define SIN        sinf
181 #define ABS        fabsf
182 #define POW        powf
183 #define SQRT       sqrtf
184 #define LOG10      log10f
185 #define LOG        logf
186 #define FLOOR      floorf
187 #define CEIL       ceilf
188 #define ATAN2      atan2f
189 #else
190 #define EXP        exp
191 #define COS        cos
192 #define SIN        sin
193 #define ABS        fabs
194 #define POW        pow
195 #define SQRT       sqrt
196 #define LOG10      log10
197 #define LOG        log
198 #define FLOOR      floor
199 #define CEIL       ceil
200 #define ATAN2      atan2
201 #endif
202 #define ROUND(x)   FLOOR(x+.5)
203
204 /* aliases to complex.h functions */
205 #if HAVE_AUBIO_DOUBLE || !defined(HAVE_COMPLEX_H) || defined(WIN32)
206 /* mingw32 does not know about c*f functions */
207 #define EXPC      cexp
208 /** complex = CEXPC(complex) */
209 #define CEXPC     cexp
210 /** sample = ARGC(complex) */
211 #define ARGC      carg
212 /** sample = ABSC(complex) norm */
213 #define ABSC      cabs
214 /** sample = REAL(complex) */
215 #define REAL      creal
216 /** sample = IMAG(complex) */
217 #define IMAG      cimag
218 #else
219 /** sample = EXPC(complex) */
220 #define EXPC      cexpf
221 /** complex = CEXPC(complex) */
222 #define CEXPC     cexp
223 /** sample = ARGC(complex) */
224 #define ARGC      cargf
225 /** sample = ABSC(complex) norm */
226 #define ABSC      cabsf
227 /** sample = REAL(complex) */
228 #define REAL      crealf
229 /** sample = IMAG(complex) */
230 #define IMAG      cimagf
231 #endif
232
233 /* handy shortcuts */
234 #define DB2LIN(g) (POW(10.0,(g)*0.05f))
235 #define LIN2DB(v) (20.0*LOG10(v))
236 #define SQR(_a)   ((_a)*(_a))
237
238 #ifndef MAX
239 #define MAX(a,b)  (((a)>(b))?(a):(b))
240 #endif /* MAX */
241 #ifndef MIN
242 #define MIN(a,b)  (((a)<(b))?(a):(b))
243 #endif /* MIN */
244
245 #define ELEM_SWAP(a,b) { register smpl_t t=(a);(a)=(b);(b)=t; }
246
247 #define VERY_SMALL_NUMBER 2.e-42 //1.e-37
248
249 /** if ABS(f) < VERY_SMALL_NUMBER, returns 1, else 0 */
250 #define IS_DENORMAL(f) ABS(f) < VERY_SMALL_NUMBER
251
252 /** if ABS(f) < VERY_SMALL_NUMBER, returns 0., else f */
253 #define KILL_DENORMAL(f)  IS_DENORMAL(f) ? 0. : f
254
255 /** if f > VERY_SMALL_NUMBER, returns f, else returns VERY_SMALL_NUMBER */
256 #define CEIL_DENORMAL(f)  f < VERY_SMALL_NUMBER ? VERY_SMALL_NUMBER : f
257
258 #define SAFE_LOG10(f) LOG10(CEIL_DENORMAL(f))
259 #define SAFE_LOG(f)   LOG(CEIL_DENORMAL(f))
260
261 /** silence unused parameter warning by adding an attribute */
262 #if defined(__GNUC__)
263 #define UNUSED __attribute__((unused))
264 #else
265 #define UNUSED
266 #endif
267
268 #endif /* _AUBIO__PRIV_H */