Optimize the resampler a little. Update native with new ability to not force 44khz so we actually get any use.

This causes Nexus 4 and Nexus 9 to end up on the fast path, greatly decreasing audio latency!

This also removes the "atomic audio" setting as the new audio code is lock-free always.
This commit is contained in:
Henrik Rydgard
2015-01-11 18:06:42 +01:00
parent 1b926ec59e
commit 0c6ceee210
6 changed files with 16 additions and 40 deletions
-2
View File
@@ -334,8 +334,6 @@ static bool DefaultForceFlushToZero() {
static ConfigSetting cpuSettings[] = {
ReportedConfigSetting("Jit", &g_Config.bJit, &DefaultJit, true, true),
ReportedConfigSetting("SeparateCPUThread", &g_Config.bSeparateCPUThread, false, true, true),
ConfigSetting("AtomicAudioLocks", &g_Config.bAtomicAudioLocks, false, true, true),
ReportedConfigSetting("SeparateIOThread", &g_Config.bSeparateIOThread, true, true, true),
ReportedConfigSetting("IOTimingMethod", &g_Config.iIOTimingMethod, IOTIMING_FAST, true, true),
ConfigSetting("FastMemoryAccess", &g_Config.bFastMemory, true, true, true),