Browse Source

MacOS: Enabled 352.8 kHz sample rates in the audio device

tags/2021-05-28
Tom Poole 7 years ago
parent
commit
801d3e47c5
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

@@ -289,7 +289,7 @@ public:
if (OK (AudioObjectGetPropertyData (deviceID, &pa, 0, nullptr, &size, ranges))) if (OK (AudioObjectGetPropertyData (deviceID, &pa, 0, nullptr, &size, ranges)))
{ {
static const double possibleRates[] = { 44100.0, 48000.0, 88200.0, 96000.0, 176400.0, 192000.0, 384000.0 };
static const double possibleRates[] = { 44100.0, 48000.0, 88200.0, 96000.0, 176400.0, 192000.0, 352800.0, 384000.0 };
for (int i = 0; i < numElementsInArray (possibleRates); ++i) for (int i = 0; i < numElementsInArray (possibleRates); ++i)
{ {


Loading…
Cancel
Save