Merge pull request #4490 from wwylele/teakra-new

audio: implement DSP LLE
This commit is contained in:
Ben 2019-01-11 16:45:00 +01:00 committed by GitHub
commit 4f23d5d69e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 766 additions and 61 deletions

View file

@ -155,6 +155,9 @@ void Config::ReadValues() {
static_cast<u16>(sdl2_config->GetInteger("Layout", "custom_bottom_bottom", 480));
// Audio
Settings::values.enable_dsp_lle = sdl2_config->GetBoolean("Audio", "enable_dsp_lle", false);
Settings::values.enable_dsp_lle_multithread =
sdl2_config->GetBoolean("Audio", "enable_dsp_lle_multithread", false);
Settings::values.sink_id = sdl2_config->GetString("Audio", "output_engine", "auto");
Settings::values.enable_audio_stretching =
sdl2_config->GetBoolean("Audio", "enable_audio_stretching", true);