From bf6d94ce57690b6692dcfb1a6081e172a0034351 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Fri, 25 Dec 2020 17:58:01 -0500 Subject: [PATCH] Remove unused AudioIoCallback::mAudioCallbackClockTime --- src/AudioIO.cpp | 3 --- src/AudioIO.h | 3 --- 2 files changed, 6 deletions(-) diff --git a/src/AudioIO.cpp b/src/AudioIO.cpp index 396a9b48d..8092a9e42 100644 --- a/src/AudioIO.cpp +++ b/src/AudioIO.cpp @@ -3681,9 +3681,6 @@ void AudioIoCallback::ComputeMidiTimings( // later, mStartTime - mSystemMinusAudioTime will tell us latency } - /* GSW: Save timeInfo in case MidiPlayback needs it */ - mAudioCallbackClockTime = PaUtil_GetTime(); - /* for Linux, estimate a smooth audio time as a slowly-changing offset from system time */ // rnow is system time as a double to simplify math diff --git a/src/AudioIO.h b/src/AudioIO.h index 34b44f8ad..644e8dca0 100644 --- a/src/AudioIO.h +++ b/src/AudioIO.h @@ -337,9 +337,6 @@ public: // These fields are used to synchronize MIDI with audio: - /// PortAudio's clock time - volatile double mAudioCallbackClockTime; - /// Number of frames output, including pauses volatile long mNumFrames; /// How many frames of zeros were output due to pauses?