1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-18 09:00:07 +02:00

Bug 2055 - ENH: Export2 does not export by default

Changed default to 16-bit instead of float.
This commit is contained in:
Leland Lucius 2020-04-14 08:34:19 -05:00
parent 54aac13648
commit 3bbcf2a15e

View File

@ -519,7 +519,7 @@ ProgressResult ExportPCM::Export(AudacityProject *project,
// If subtype is still not specified, supply a default.
if (!(sf_format & SF_FORMAT_SUBMASK))
{
sf_format |= SF_FORMAT_FLOAT;
sf_format |= SF_FORMAT_PCM_16;
}
int fileFormat = sf_format & SF_FORMAT_TYPEMASK;