modify COMPRESSION_PRESET to 5

This commit is contained in:
Bence Pőcze 2022-02-21 10:14:15 +01:00
parent a9a6537912
commit abbfcd5eb8
Signed by: bence
GPG Key ID: 0520C81918569406

View File

@ -15,7 +15,7 @@ extern "C"
#include <lzma.h>
}
const uint32_t COMPRESSION_PRESET = 9 | LZMA_PRESET_EXTREME;
const uint32_t COMPRESSION_PRESET = 5;
const std::vector<std::string> ENDINGS = {".mf4", ".rif"};
int main(int argc, char *argv[])