1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

macOS: Fix default buffer size for AirPods Pro

This commit is contained in:
Tom Poole 2022-03-07 14:02:11 +00:00
parent 833fd9bde2
commit 8573fb2442

View file

@ -843,7 +843,7 @@ private:
bool started = false, audioDeviceStopPending = false;
std::atomic<bool> playing { false };
double sampleRate = 0;
int bufferSize = 512;
int bufferSize = 0;
HeapBlock<float> audioBuffer;
int numInputChans = 0;
int numOutputChans = 0;