mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-05 14:49:25 +02:00
patch to remove some unused member variables by Leland Lucius
This commit is contained in:
parent
dd8bc9cb93
commit
f09d3a8aaf
@ -541,7 +541,6 @@ AudioIO::AudioIO()
|
|||||||
|
|
||||||
mStreamToken = 0;
|
mStreamToken = 0;
|
||||||
mStopStreamCount = 0;
|
mStopStreamCount = 0;
|
||||||
mTempFloats = new float[65536]; // TODO: out channels * PortAudio buffer size
|
|
||||||
|
|
||||||
mLastPaError = paNoError;
|
mLastPaError = paNoError;
|
||||||
|
|
||||||
@ -635,7 +634,6 @@ AudioIO::~AudioIO()
|
|||||||
if(mSilentBuf)
|
if(mSilentBuf)
|
||||||
DeleteSamples(mSilentBuf);
|
DeleteSamples(mSilentBuf);
|
||||||
|
|
||||||
delete [] mTempFloats;
|
|
||||||
delete mThread;
|
delete mThread;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -504,7 +504,6 @@ private:
|
|||||||
unsigned int mNumCaptureChannels;
|
unsigned int mNumCaptureChannels;
|
||||||
unsigned int mNumPlaybackChannels;
|
unsigned int mNumPlaybackChannels;
|
||||||
sampleFormat mCaptureFormat;
|
sampleFormat mCaptureFormat;
|
||||||
float *mTempFloats;
|
|
||||||
int mLostSamples;
|
int mLostSamples;
|
||||||
volatile bool mAudioThreadShouldCallFillBuffersOnce;
|
volatile bool mAudioThreadShouldCallFillBuffersOnce;
|
||||||
volatile bool mAudioThreadFillBuffersLoopRunning;
|
volatile bool mAudioThreadFillBuffersLoopRunning;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user