summaryrefslogtreecommitdiff
path: root/libs/rubberband/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/rubberband/src/main.cpp')
-rw-r--r--libs/rubberband/src/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/rubberband/src/main.cpp b/libs/rubberband/src/main.cpp
index 5f1d2ba9c3..cdc62e8afa 100644
--- a/libs/rubberband/src/main.cpp
+++ b/libs/rubberband/src/main.cpp
@@ -36,7 +36,7 @@
using namespace std;
using namespace RubberBand;
-#ifdef _WIN32
+#ifdef PLATFORM_WINDOWS
using RubberBand::gettimeofday;
using RubberBand::usleep;
#endif
@@ -324,7 +324,7 @@ int main(int argc, char **argv)
cerr << "Using time ratio " << ratio;
cerr << " and frequency ratio " << frequencyshift << endl;
-#ifdef _WIN32
+#ifdef PLATFORM_WINDOWS
RubberBand::
#endif
timeval tv;
@@ -495,7 +495,7 @@ int main(int argc, char **argv)
}
delete[] obf;
} else {
-#ifdef WIN32
+#ifdef PLATFORM_WINDOWS
RubberBand::usleep(10000);
#else
usleep(10000);
@@ -510,7 +510,7 @@ int main(int argc, char **argv)
cerr << "in: " << countIn << ", out: " << countOut << ", ratio: " << float(countOut)/float(countIn) << ", ideal output: " << lrint(countIn * ratio) << ", error: " << abs(lrint(countIn * ratio) - int(countOut)) << endl;
-#ifdef _WIN32
+#ifdef PLATFORM_WINDOWS
RubberBand::
#endif
timeval etv;