Temporarily disabling OpenSL ES for playout.

TBR=tommi
BUG=b/21485703

Review URL: https://webrtc-codereview.appspot.com/52619004

Cr-Commit-Position: refs/heads/master@{#9329}
This commit is contained in:
henrika
2015-05-29 11:42:43 +02:00
parent 04e5b49827
commit bf738d7130

View File

@ -141,7 +141,10 @@ bool AudioManager::IsAcousticEchoCancelerSupported() const {
bool AudioManager::IsLowLatencyPlayoutSupported() const {
DCHECK(thread_checker_.CalledOnValidThread());
ALOGD("IsLowLatencyPlayoutSupported()");
return low_latency_playout_;
// TODO(henrika): enable again once issue in b/21485703 has been sorted out.
// This is just a temporary fix.
ALOGW("NOTE: OpenSL ES output is currently disabled!");
return false;
}
int AudioManager::GetDelayEstimateInMilliseconds() const {