Restore Dolphin-Specific SoundTouch modifications

This commit is contained in:
get
2023-03-31 20:11:13 -05:00
parent 4e3a366b2d
commit 0e7e8d26f0
3 changed files with 26 additions and 26 deletions

View File

@ -47,8 +47,6 @@
//
////////////////////////////////////////////////////////////////////////////////
#define _USE_MATH_DEFINES
#include <math.h>
#include <assert.h>
#include <string.h>
@ -85,7 +83,8 @@ static const double XCORR_DECAY_TIME_CONSTANT = 30.0;
/// Data overlap factor for beat detection algorithm
static const int OVERLAP_FACTOR = 4;
static const double TWOPI = (2 * M_PI);
#define PI 3.14159265358979323846
#define TWOPI (2 * PI)
////////////////////////////////////////////////////////////////////////////////