Browse Source

macOS: Fix default buffer size for AirPods Pro

pull/22/head
Tom Poole 3 years ago
parent
commit
8573fb2442
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_devices/native/juce_mac_CoreAudio.cpp

+ 1
- 1
modules/juce_audio_devices/native/juce_mac_CoreAudio.cpp 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;


Loading…
Cancel
Save