Ignore:
Timestamp:
Jun 22, 2016, 1:00:10 PM (9 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
4b9443c4
Parents:
60fc05b (diff), 6769586 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into notes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/utils_tests.h

    r60fc05b rf264b17  
    66#include "config.h"
    77
     8#ifdef HAVE_C99_VARARGS_MACROS
     9#define PRINT_ERR(...)   fprintf(stderr, "AUBIO-TESTS ERROR: " __VA_ARGS__)
     10#define PRINT_MSG(...)   fprintf(stdout, __VA_ARGS__)
     11#define PRINT_DBG(...)   fprintf(stderr, __VA_ARGS__)
     12#define PRINT_WRN(...)   fprintf(stderr, "AUBIO-TESTS WARNING: " __VA_ARGS__)
     13#else
    814#define PRINT_ERR(format, args...)   fprintf(stderr, "AUBIO-TESTS ERROR: " format , ##args)
    915#define PRINT_MSG(format, args...)   fprintf(stdout, format , ##args)
    1016#define PRINT_DBG(format, args...)   fprintf(stderr, format , ##args)
    1117#define PRINT_WRN(format, args...)   fprintf(stderr, "AUBIO-TESTS WARNING: " format, ##args)
     18#endif
    1219
    13 #ifdef HAVE_WIN_HACKS
     20#ifndef M_PI
     21#define M_PI         (3.14159265358979323846)
     22#endif
     23
     24#ifndef RAND_MAX
     25#define RAND_MAX 32767
     26#endif
     27
     28// are we on windows ? or are we using -std=c99 ?
     29#if defined(HAVE_WIN_HACKS) || defined(__STRICT_ANSI__)
    1430// http://en.wikipedia.org/wiki/Linear_congruential_generator
    1531// no srandom/random on win32
Note: See TracChangeset for help on using the changeset viewer.