diff --git a/app/config/config.cpp b/app/config/config.cpp index 501cc4f35..e5de5fcc8 100644 --- a/app/config/config.cpp +++ b/app/config/config.cpp @@ -27,6 +27,7 @@ #include #include +#include "codec/exportformat.h" #include "common/autoscroll.h" #include "common/filefunctions.h" #include "common/xmlutils.h" @@ -120,6 +121,8 @@ void Config::SetDefaults() SetEntryInternal(QStringLiteral("AudioOutput"), NodeValue::kText, QString()); SetEntryInternal(QStringLiteral("AudioInput"), NodeValue::kText, QString()); + SetEntryInternal(QStringLiteral("AudioRecordingFormat"), NodeValue::kInt, ExportFormat::kFormatWAV); + SetEntryInternal(QStringLiteral("DiskCacheBehind"), NodeValue::kRational, QVariant::fromValue(rational(0))); SetEntryInternal(QStringLiteral("DiskCacheAhead"), NodeValue::kRational, QVariant::fromValue(rational(60)));