Index: webrtc/modules/audio_device/android/audio_manager.h |
diff --git a/webrtc/modules/audio_device/android/audio_manager.h b/webrtc/modules/audio_device/android/audio_manager.h |
index e15e4aaf7708438cec4b23b28ddb69028bfb994f..638b085972bac6ac9d9a5cb7450da7c943fdb287 100644 |
--- a/webrtc/modules/audio_device/android/audio_manager.h |
+++ b/webrtc/modules/audio_device/android/audio_manager.h |
@@ -103,6 +103,14 @@ class AudioManager { |
bool IsLowLatencyPlayoutSupported() const; |
bool IsLowLatencyRecordSupported() const; |
+ // Returns true if the device supports (and has been configured for) stereo. |
+ // Call the Java API WebRtcAudioManager.setStereoOutput/Input() with true as |
+ // paramter to enable stereo. Default is mono in both directions and the |
+ // setting is set once and for all when the audio manager object is created. |
+ // TODO(henrika): stereo is not supported in combination with OpenSL ES. |
+ bool IsStereoPlayoutSupported() const; |
+ bool IsStereoRecordSupported() const; |
+ |
// Returns true if the device supports pro-audio features in combination with |
// OpenSL ES. |
bool IsProAudioSupported() const; |