Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(293)

Unified Diff: webrtc/modules/audio_device/audio_device_impl.cc

Issue 1952123003: Surface the IntelligibilityEnhancer on MediaConstraints (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_device/audio_device_impl.cc
diff --git a/webrtc/modules/audio_device/audio_device_impl.cc b/webrtc/modules/audio_device/audio_device_impl.cc
index 6576f5d8e92b8b50d8dd10d37017f7627b068e8f..32f593f9532cfad2863c91e97e849cdef71a55fd 100644
--- a/webrtc/modules/audio_device/audio_device_impl.cc
+++ b/webrtc/modules/audio_device/audio_device_impl.cc
@@ -1904,6 +1904,11 @@ int32_t AudioDeviceModuleImpl::EnableBuiltInNS(bool enable) {
return _ptrAudioDevice->EnableBuiltInNS(enable);
}
+bool AudioDeviceModuleImpl::IntelligibilityIsEnabled() const {
+ CHECK_INITIALIZED_BOOL();
+ return _ptrAudioDevice->IntelligibilityIsEnabled();
+}
+
int AudioDeviceModuleImpl::GetPlayoutAudioParameters(
AudioParameters* params) const {
return _ptrAudioDevice->GetPlayoutAudioParameters(params);

Powered by Google App Engine
This is Rietveld 408576698