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

MacOS: Enabled 352.8 kHz sample rates in the audio device

This commit is contained in:
Tom Poole 2018-08-08 10:48:03 +01:00
parent b6bbcb3438
commit 801d3e47c5

View file

@ -289,7 +289,7 @@ public:
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)
{