source: src/aubio_priv.h @ 7faef58

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5sampleryinfft+
Last change on this file since 7faef58 was 57405c1, checked in by Paul Brossier <piem@piem.org>, 8 years ago

src/aubio_priv.h: add AUBIO_INF to print to stdout with header

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