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

Added some more supported frequencies to WavAudioFormat.

This commit is contained in:
jules 2013-09-04 09:54:00 +01:00
parent 4552218149
commit 21f6a0517a

View file

@ -1211,8 +1211,8 @@ WavAudioFormat::~WavAudioFormat()
Array<int> WavAudioFormat::getPossibleSampleRates()
{
const int rates[] = { 8000, 11025, 12000, 16000, 22050, 32000,
44100, 48000, 88200, 96000, 176400, 192000 };
const int rates[] = { 8000, 11025, 12000, 16000, 22050, 32000, 44100,
48000, 88200, 96000, 176400, 192000, 352800, 384000 };
return Array<int> (rates, numElementsInArray (rates));
}