Default to FLAC compression level 5 (#6052)

This commit is contained in:
Hussam al-Homsi
2021-09-15 12:50:49 -04:00
committed by GitHub
parent 770d2498b5
commit e3044575bc
2 changed files with 2 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ public:
m_bitRateSettings(bitRateSettings),
m_bitDepth(bitDepth),
m_stereoMode(stereoMode),
m_compressionLevel(0.5)
m_compressionLevel(0.625) // 5/8
{
}

View File

@@ -92,7 +92,7 @@ ExportProjectDialog::ExportProjectDialog( const QString & _file_name,
QVariant(i/static_cast<double>(MAX_LEVEL))
);
}
compLevelCB->setCurrentIndex(MAX_LEVEL/2);
compLevelCB->setCurrentIndex(5);
#ifndef LMMS_HAVE_SF_COMPLEVEL
// Disable this widget; the setting would be ignored by the renderer.
compressionWidget->setVisible(false);