From 77a65a8a97db6efef709faf38be7139e5a58e2bc Mon Sep 17 00:00:00 2001 From: Steve Daulton Date: Tue, 15 May 2018 13:39:24 +0100 Subject: [PATCH] Replace AIFF preset with WAV 24 on Windows + Linux and just add WAV 24-bit on Mac. --- src/export/ExportPCM.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/export/ExportPCM.cpp b/src/export/ExportPCM.cpp index 7bcf40359..15abe06ff 100644 --- a/src/export/ExportPCM.cpp +++ b/src/export/ExportPCM.cpp @@ -59,8 +59,11 @@ struct } static const kFormats[] = { +#if defined(__WXMAC__) { SF_FORMAT_AIFF | SF_FORMAT_PCM_16, wxT("AIFF"), XO("AIFF (Apple) signed 16-bit PCM") }, +#endif { SF_FORMAT_WAV | SF_FORMAT_PCM_16, wxT("WAV"), XO("WAV (Microsoft) signed 16-bit PCM") }, + { SF_FORMAT_WAV | SF_FORMAT_PCM_24, wxT("WAV24"), XO("WAV (Microsoft) signed 24-bit PCM") }, { SF_FORMAT_WAV | SF_FORMAT_FLOAT, wxT("WAVFLT"), XO("WAV (Microsoft) 32-bit float PCM") }, // { SF_FORMAT_WAV | SF_FORMAT_GSM610, wxT("GSM610"), XO("GSM 6.10 WAV (mobile)") }, };