Fix for plattforms that don't have M_PI in the cmath include.

This commit is contained in:
Joerg Mueller 2010-01-01 11:40:48 +00:00
parent 8ac9ec4156
commit dff4c87f84
3 changed files with 12 additions and 0 deletions

@ -29,6 +29,10 @@
#include <cstring>
#include <cmath>
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
#define BWPB41 0.76536686473
#define BWPB42 1.84775906502
#define CC channels + channel

@ -29,6 +29,10 @@
#include <cstring>
#include <cmath>
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
#define CC channels + channel
AUD_HighpassReader::AUD_HighpassReader(AUD_IReader* reader, float frequency,

@ -29,6 +29,10 @@
#include <cstring>
#include <cmath>
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
#define CC channels + channel
AUD_LowpassReader::AUD_LowpassReader(AUD_IReader* reader, float frequency,