source: src/aubio_priv.h @ 95f5c83

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/applefworksfix/ffmpeg5
Last change on this file since 95f5c83 was a6b5bf1, checked in by Paul Brossier <piem@piem.org>, 8 years ago

src/aubio_priv.h: include ipp headers from here

  • Property mode set to 100644
File size: 8.7 KB
Line 
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#ifdef HAVE_CONFIG_H
37#include "config.h"
38#endif
39
40#ifdef HAVE_STDLIB_H
41#include <stdlib.h>
42#endif
43
44#ifdef HAVE_STDIO_H
45#include <stdio.h>
46#endif
47
48/* must be included before fftw3.h */
49#ifdef HAVE_COMPLEX_H
50#include <complex.h>
51#endif
52
53#if defined(HAVE_FFTW3) || defined(HAVE_FFTW3F)
54#include <fftw3.h>
55#endif
56
57#ifdef HAVE_MATH_H
58#include <math.h>
59#endif
60
61#ifdef HAVE_STRING_H
62#include <string.h>
63#endif
64
65#ifdef HAVE_LIMITS_H
66#include <limits.h> // for CHAR_BIT, in C99 standard
67#endif
68
69#ifdef HAVE_STDARG_H
70#include <stdarg.h>
71#endif
72
73#ifdef HAVE_ACCELERATE
74#define HAVE_ATLAS 1
75#include <Accelerate/Accelerate.h>
76#elif defined(HAVE_ATLAS_CBLAS_H)
77#define HAVE_ATLAS 1
78#include <atlas/cblas.h>
79#else
80#undef HAVE_ATLAS
81#endif
82
83#ifdef HAVE_ACCELERATE
84#include <Accelerate/Accelerate.h>
85#ifndef HAVE_AUBIO_DOUBLE
86#define aubio_vDSP_mmov       vDSP_mmov
87#define aubio_vDSP_vmul       vDSP_vmul
88#define aubio_vDSP_vfill      vDSP_vfill
89#define aubio_vDSP_meanv      vDSP_meanv
90#define aubio_vDSP_sve        vDSP_sve
91#define aubio_vDSP_maxv       vDSP_maxv
92#define aubio_vDSP_maxvi      vDSP_maxvi
93#define aubio_vDSP_minv       vDSP_minv
94#define aubio_vDSP_minvi      vDSP_minvi
95#define aubio_vDSP_dotpr      vDSP_dotpr
96#define aubio_vDSP_vclr       vDSP_vclr
97#else /* HAVE_AUBIO_DOUBLE */
98#define aubio_vDSP_mmov       vDSP_mmovD
99#define aubio_vDSP_vmul       vDSP_vmulD
100#define aubio_vDSP_vfill      vDSP_vfillD
101#define aubio_vDSP_meanv      vDSP_meanvD
102#define aubio_vDSP_sve        vDSP_sveD
103#define aubio_vDSP_maxv       vDSP_maxvD
104#define aubio_vDSP_maxvi      vDSP_maxviD
105#define aubio_vDSP_minv       vDSP_minvD
106#define aubio_vDSP_minvi      vDSP_minviD
107#define aubio_vDSP_dotpr      vDSP_dotprD
108#define aubio_vDSP_vclr       vDSP_vclrD
109#endif /* HAVE_AUBIO_DOUBLE */
110#endif /* HAVE_ACCELERATE */
111
112#ifdef HAVE_ATLAS
113#ifndef HAVE_AUBIO_DOUBLE
114#define aubio_catlas_set      catlas_sset
115#define aubio_cblas_copy      cblas_scopy
116#define aubio_cblas_swap      cblas_sswap
117#define aubio_cblas_dot       cblas_sdot
118#else /* HAVE_AUBIO_DOUBLE */
119#define aubio_catlas_set      catlas_dset
120#define aubio_cblas_copy      cblas_dcopy
121#define aubio_cblas_swap      cblas_dswap
122#define aubio_cblas_dot       cblas_ddot
123#endif /* HAVE_AUBIO_DOUBLE */
124#endif /* HAVE_ATLAS */
125
126#if defined HAVE_INTEL_IPP
127#include <ippcore.h>
128#include <ippvm.h>
129#include <ipps.h>
130#endif
131
132#if !defined(HAVE_MEMCPY_HACKS) && !defined(HAVE_ACCELERATE) && !defined(HAVE_ATLAS) && !defined(HAVE_INTEL_IPP)
133#define HAVE_NOOPT 1
134#else
135#undef HAVE_NOOPT
136#endif
137
138#include "types.h"
139
140#define AUBIO_UNSTABLE 1
141
142#include "mathutils.h"
143
144/****
145 *
146 * SYSTEM INTERFACE
147 *
148 */
149
150/* Memory management */
151#define AUBIO_MALLOC(_n)             malloc(_n)
152#define AUBIO_REALLOC(_p,_n)         realloc(_p,_n)
153#define AUBIO_NEW(_t)                (_t*)calloc(sizeof(_t), 1)
154#define AUBIO_ARRAY(_t,_n)           (_t*)calloc((_n)*sizeof(_t), 1)
155#define AUBIO_MEMCPY(_dst,_src,_n)   memcpy(_dst,_src,_n)
156#define AUBIO_MEMSET(_dst,_src,_t)   memset(_dst,_src,_t)
157#define AUBIO_FREE(_p)               free(_p)
158
159
160/* file interface */
161#define AUBIO_FOPEN(_f,_m)           fopen(_f,_m)
162#define AUBIO_FCLOSE(_f)             fclose(_f)
163#define AUBIO_FREAD(_p,_s,_n,_f)     fread(_p,_s,_n,_f)
164#define AUBIO_FSEEK(_f,_n,_set)      fseek(_f,_n,_set)
165
166/* strings */
167#define AUBIO_STRLEN(_s)             strlen(_s)
168#define AUBIO_STRCMP(_s,_t)          strcmp(_s,_t)
169#define AUBIO_STRNCMP(_s,_t,_n)      strncmp(_s,_t,_n)
170#define AUBIO_STRCPY(_dst,_src)      strcpy(_dst,_src)
171#define AUBIO_STRCHR(_s,_c)          strchr(_s,_c)
172#ifdef strdup
173#define AUBIO_STRDUP(s)              strdup(s)
174#else
175#define AUBIO_STRDUP(s)              AUBIO_STRCPY(AUBIO_MALLOC(AUBIO_STRLEN(s) + 1), s)
176#endif
177
178
179/* Error reporting */
180typedef enum {
181  AUBIO_OK = 0,
182  AUBIO_FAIL = 1
183} aubio_status;
184
185/* Logging */
186
187#include "utils/log.h"
188
189/** internal logging function, defined in utils/log.c */
190uint_t aubio_log(sint_t level, const char_t *fmt, ...);
191
192#ifdef HAVE_C99_VARARGS_MACROS
193#define AUBIO_ERR(...)               aubio_log(AUBIO_LOG_ERR, "AUBIO ERROR: " __VA_ARGS__)
194#define AUBIO_INF(...)               aubio_log(AUBIO_LOG_INF, "AUBIO INFO: " __VA_ARGS__)
195#define AUBIO_MSG(...)               aubio_log(AUBIO_LOG_MSG, __VA_ARGS__)
196#define AUBIO_DBG(...)               aubio_log(AUBIO_LOG_DBG, __VA_ARGS__)
197#define AUBIO_WRN(...)               aubio_log(AUBIO_LOG_WRN, "AUBIO WARNING: " __VA_ARGS__)
198#else
199#define AUBIO_ERR(format, args...)   aubio_log(AUBIO_LOG_ERR, "AUBIO ERROR: " format , ##args)
200#define AUBIO_INF(format, args...)   aubio_log(AUBIO_LOG_INF, "AUBIO INFO: " format , ##args)
201#define AUBIO_MSG(format, args...)   aubio_log(AUBIO_LOG_MSG, format , ##args)
202#define AUBIO_DBG(format, args...)   aubio_log(AUBIO_LOG_DBG, format , ##args)
203#define AUBIO_WRN(format, args...)   aubio_log(AUBIO_LOG_WRN, "AUBIO WARNING: " format, ##args)
204#endif
205
206#define AUBIO_ERROR   AUBIO_ERR
207
208#define AUBIO_QUIT(_s)               exit(_s)
209#define AUBIO_SPRINTF                sprintf
210
211#define AUBIO_MAX_SAMPLERATE (192000*8)
212#define AUBIO_MAX_CHANNELS 1024
213
214/* pi and 2*pi */
215#ifndef M_PI
216#define PI         (3.14159265358979323846)
217#else
218#define PI         (M_PI)
219#endif
220#define TWO_PI     (PI*2.)
221
222#ifndef PATH_MAX
223#define PATH_MAX 1024
224#endif
225
226/* aliases to math.h functions */
227#if !HAVE_AUBIO_DOUBLE
228#define EXP        expf
229#define COS        cosf
230#define SIN        sinf
231#define ABS        fabsf
232#define POW        powf
233#define SQRT       sqrtf
234#define LOG10      log10f
235#define LOG        logf
236#define FLOOR      floorf
237#define CEIL       ceilf
238#define ATAN       atanf
239#define ATAN2      atan2f
240#else
241#define EXP        exp
242#define COS        cos
243#define SIN        sin
244#define ABS        fabs
245#define POW        pow
246#define SQRT       sqrt
247#define LOG10      log10
248#define LOG        log
249#define FLOOR      floor
250#define CEIL       ceil
251#define ATAN       atan
252#define ATAN2      atan2
253#endif
254#define ROUND(x)   FLOOR(x+.5)
255
256/* aliases to complex.h functions */
257#if HAVE_AUBIO_DOUBLE || !defined(HAVE_COMPLEX_H) || defined(WIN32)
258/* mingw32 does not know about c*f functions */
259#define EXPC      cexp
260/** complex = CEXPC(complex) */
261#define CEXPC     cexp
262/** sample = ARGC(complex) */
263#define ARGC      carg
264/** sample = ABSC(complex) norm */
265#define ABSC      cabs
266/** sample = REAL(complex) */
267#define REAL      creal
268/** sample = IMAG(complex) */
269#define IMAG      cimag
270#else
271/** sample = EXPC(complex) */
272#define EXPC      cexpf
273/** complex = CEXPC(complex) */
274#define CEXPC     cexp
275/** sample = ARGC(complex) */
276#define ARGC      cargf
277/** sample = ABSC(complex) norm */
278#define ABSC      cabsf
279/** sample = REAL(complex) */
280#define REAL      crealf
281/** sample = IMAG(complex) */
282#define IMAG      cimagf
283#endif
284
285/* avoid unresolved symbol with msvc 9 */
286#if defined(_MSC_VER) && (_MSC_VER < 1900)
287#define isnan _isnan
288#endif
289
290/* handy shortcuts */
291#define DB2LIN(g) (POW(10.0,(g)*0.05f))
292#define LIN2DB(v) (20.0*LOG10(v))
293#define SQR(_a)   ((_a)*(_a))
294
295#ifndef MAX
296#define MAX(a,b)  (((a)>(b))?(a):(b))
297#endif /* MAX */
298#ifndef MIN
299#define MIN(a,b)  (((a)<(b))?(a):(b))
300#endif /* MIN */
301
302#define ELEM_SWAP(a,b) { register smpl_t t=(a);(a)=(b);(b)=t; }
303
304#define VERY_SMALL_NUMBER 2.e-42 //1.e-37
305
306/** if ABS(f) < VERY_SMALL_NUMBER, returns 1, else 0 */
307#define IS_DENORMAL(f) ABS(f) < VERY_SMALL_NUMBER
308
309/** if ABS(f) < VERY_SMALL_NUMBER, returns 0., else f */
310#define KILL_DENORMAL(f)  IS_DENORMAL(f) ? 0. : f
311
312/** if f > VERY_SMALL_NUMBER, returns f, else returns VERY_SMALL_NUMBER */
313#define CEIL_DENORMAL(f)  f < VERY_SMALL_NUMBER ? VERY_SMALL_NUMBER : f
314
315#define SAFE_LOG10(f) LOG10(CEIL_DENORMAL(f))
316#define SAFE_LOG(f)   LOG(CEIL_DENORMAL(f))
317
318/** silence unused parameter warning by adding an attribute */
319#if defined(__GNUC__)
320#define UNUSED __attribute__((unused))
321#else
322#define UNUSED
323#endif
324
325/* are we using gcc -std=c99 ? */
326#if defined(__STRICT_ANSI__)
327#define strnlen(a,b) MIN(strlen(a),b)
328#if !HAVE_AUBIO_DOUBLE
329#define floorf floor
330#endif
331#endif /* __STRICT_ANSI__ */
332
333#endif /* AUBIO_PRIV_H */
Note: See TracBrowser for help on using the repository browser.