Add AudioDeviceModule to AudioState::Config.
This is to prepare client code for landing https://webrtc-review.googlesource.com/c/src/+/26681. Bug: webrtc:4690 Change-Id: I82b24d876f9345ca7f59bfd6fc7ab26ba694b0d8 Reviewed-on: https://webrtc-review.googlesource.com/28320 Reviewed-by: Oskar Sundbom <ossu@webrtc.org> Commit-Queue: Fredrik Solenberg <solenberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21043}
This commit is contained in:

committed by
Commit Bot

parent
5149242d06
commit
cf73c96a79
@ -16,6 +16,7 @@
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
class AudioDeviceModule;
|
||||
class AudioProcessing;
|
||||
class AudioTransport;
|
||||
class VoiceEngine;
|
||||
@ -41,6 +42,9 @@ class AudioState : public rtc::RefCountInterface {
|
||||
|
||||
// The audio processing module.
|
||||
rtc::scoped_refptr<webrtc::AudioProcessing> audio_processing;
|
||||
|
||||
// TODO(solenberg): Temporary: audio device module.
|
||||
rtc::scoped_refptr<webrtc::AudioDeviceModule> audio_device_module;
|
||||
};
|
||||
|
||||
virtual AudioProcessing* audio_processing() = 0;
|
||||
|
Reference in New Issue
Block a user