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