1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

Increase max sample rate for RAW to 384 kHz

Match the maximum preset sample rate.
This commit is contained in:
Steve Daulton 2018-04-03 19:04:06 +01:00
parent f027708fe1
commit 0a12f6a81f

View File

@ -490,8 +490,9 @@ void ImportRawDialog::OnOK(wxCommandEvent & WXUNUSED(event))
mPercent = 100.0;
if (mRate < 100.0)
mRate = 100.0;
if (mRate > 100000.0)
mRate = 100000.0;
// Highest preset sample rate supported in Audacity 2.3.0 is 384 kHz
if (mRate > 384000.0)
mRate = 384000.0;
EndModal(true);
}