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
+3 -1
View File
@@ -219,8 +219,10 @@ std::string NativeQueryConfig(std::string query) {
sprintf(temp, "%i", scale);
return std::string(temp);
} else if (query == "force44khz") {
return std::string("0");
} else {
return std::string("");
return "";
}
}