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