chore(flac): use same default level as the offical flac tool

This commit is contained in:
Marcus Holland-Moritz 2023-12-17 17:07:06 +01:00
parent cc5af7bad8
commit 60e68e1849

View File

@ -510,7 +510,7 @@ class flac_compression_factory : public compression_factory {
std::unique_ptr<block_compressor::impl>
make_compressor(option_map& om) const override {
return std::make_unique<flac_block_compressor>(
om.get<uint32_t>("level", 6), om.get<bool>("exhaustive", false));
om.get<uint32_t>("level", 5), om.get<bool>("exhaustive", false));
}
std::unique_ptr<block_decompressor::impl>