blob: 77c4cc51a2b2ff5d4eea25ee2d4bb04bada5634a [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
leozwang@webrtc.org28f39132012-03-01 18:01:48 +00002 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
niklase@google.com470e71d2011-07-07 08:21:25 +00003 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef AUDIO_DEVICE_AUDIO_DEVICE_IMPL_H_
12#define AUDIO_DEVICE_AUDIO_DEVICE_IMPL_H_
niklase@google.com470e71d2011-07-07 08:21:25 +000013
Tommi931e6582015-05-20 09:44:38 +020014#if defined(WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE)
15
kwibergf01633e2016-02-24 05:00:36 -080016#include <memory>
17
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020018#include "modules/audio_device/audio_device_buffer.h"
19#include "modules/audio_device/include/audio_device.h"
20#include "rtc_base/checks.h"
21#include "rtc_base/criticalsection.h"
niklase@google.com470e71d2011-07-07 08:21:25 +000022
henrikaba35d052015-07-14 17:04:08 +020023namespace webrtc {
niklase@google.com470e71d2011-07-07 08:21:25 +000024
25class AudioDeviceGeneric;
henrikab2619892015-05-18 16:49:16 +020026class AudioManager;
niklase@google.com470e71d2011-07-07 08:21:25 +000027
henrikaba35d052015-07-14 17:04:08 +020028class AudioDeviceModuleImpl : public AudioDeviceModule {
29 public:
30 enum PlatformType {
31 kPlatformNotSupported = 0,
32 kPlatformWin32 = 1,
33 kPlatformWinCe = 2,
34 kPlatformLinux = 3,
35 kPlatformMac = 4,
36 kPlatformAndroid = 5,
37 kPlatformIOS = 6
38 };
niklase@google.com470e71d2011-07-07 08:21:25 +000039
henrikaba35d052015-07-14 17:04:08 +020040 int32_t CheckPlatform();
41 int32_t CreatePlatformSpecificObjects();
42 int32_t AttachAudioBuffer();
niklase@google.com470e71d2011-07-07 08:21:25 +000043
henrikaba35d052015-07-14 17:04:08 +020044 AudioDeviceModuleImpl(const int32_t id, const AudioLayer audioLayer);
maxmorin88e31a32016-08-16 00:56:09 -070045 ~AudioDeviceModuleImpl() override;
niklase@google.com470e71d2011-07-07 08:21:25 +000046
henrikaba35d052015-07-14 17:04:08 +020047 int64_t TimeUntilNextProcess() override;
pbosa26ac922016-02-25 04:50:01 -080048 void Process() override;
niklase@google.com470e71d2011-07-07 08:21:25 +000049
henrikaba35d052015-07-14 17:04:08 +020050 // Retrieve the currently utilized audio layer
51 int32_t ActiveAudioLayer(AudioLayer* audioLayer) const override;
niklase@google.com470e71d2011-07-07 08:21:25 +000052
henrikaba35d052015-07-14 17:04:08 +020053 // Error handling
54 ErrorCode LastError() const override;
55 int32_t RegisterEventObserver(AudioDeviceObserver* eventCallback) override;
niklase@google.com470e71d2011-07-07 08:21:25 +000056
henrikaba35d052015-07-14 17:04:08 +020057 // Full-duplex transportation of PCM audio
58 int32_t RegisterAudioCallback(AudioTransport* audioCallback) override;
niklase@google.com470e71d2011-07-07 08:21:25 +000059
henrikaba35d052015-07-14 17:04:08 +020060 // Main initializaton and termination
61 int32_t Init() override;
62 int32_t Terminate() override;
63 bool Initialized() const override;
niklase@google.com470e71d2011-07-07 08:21:25 +000064
henrikaba35d052015-07-14 17:04:08 +020065 // Device enumeration
66 int16_t PlayoutDevices() override;
67 int16_t RecordingDevices() override;
68 int32_t PlayoutDeviceName(uint16_t index,
69 char name[kAdmMaxDeviceNameSize],
70 char guid[kAdmMaxGuidSize]) override;
71 int32_t RecordingDeviceName(uint16_t index,
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +000072 char name[kAdmMaxDeviceNameSize],
73 char guid[kAdmMaxGuidSize]) override;
niklase@google.com470e71d2011-07-07 08:21:25 +000074
henrikaba35d052015-07-14 17:04:08 +020075 // Device selection
76 int32_t SetPlayoutDevice(uint16_t index) override;
77 int32_t SetPlayoutDevice(WindowsDeviceType device) override;
78 int32_t SetRecordingDevice(uint16_t index) override;
79 int32_t SetRecordingDevice(WindowsDeviceType device) override;
niklase@google.com470e71d2011-07-07 08:21:25 +000080
henrikaba35d052015-07-14 17:04:08 +020081 // Audio transport initialization
82 int32_t PlayoutIsAvailable(bool* available) override;
83 int32_t InitPlayout() override;
84 bool PlayoutIsInitialized() const override;
85 int32_t RecordingIsAvailable(bool* available) override;
86 int32_t InitRecording() override;
87 bool RecordingIsInitialized() const override;
niklase@google.com470e71d2011-07-07 08:21:25 +000088
henrikaba35d052015-07-14 17:04:08 +020089 // Audio transport control
90 int32_t StartPlayout() override;
91 int32_t StopPlayout() override;
92 bool Playing() const override;
93 int32_t StartRecording() override;
94 int32_t StopRecording() override;
95 bool Recording() const override;
niklase@google.com470e71d2011-07-07 08:21:25 +000096
henrikaba35d052015-07-14 17:04:08 +020097 // Microphone Automatic Gain Control (AGC)
98 int32_t SetAGC(bool enable) override;
99 bool AGC() const override;
niklase@google.com470e71d2011-07-07 08:21:25 +0000100
henrikaba35d052015-07-14 17:04:08 +0200101 // Audio mixer initialization
102 int32_t InitSpeaker() override;
103 bool SpeakerIsInitialized() const override;
104 int32_t InitMicrophone() override;
105 bool MicrophoneIsInitialized() const override;
niklase@google.com470e71d2011-07-07 08:21:25 +0000106
henrikaba35d052015-07-14 17:04:08 +0200107 // Speaker volume controls
108 int32_t SpeakerVolumeIsAvailable(bool* available) override;
109 int32_t SetSpeakerVolume(uint32_t volume) override;
110 int32_t SpeakerVolume(uint32_t* volume) const override;
111 int32_t MaxSpeakerVolume(uint32_t* maxVolume) const override;
112 int32_t MinSpeakerVolume(uint32_t* minVolume) const override;
niklase@google.com470e71d2011-07-07 08:21:25 +0000113
henrikaba35d052015-07-14 17:04:08 +0200114 // Microphone volume controls
115 int32_t MicrophoneVolumeIsAvailable(bool* available) override;
116 int32_t SetMicrophoneVolume(uint32_t volume) override;
117 int32_t MicrophoneVolume(uint32_t* volume) const override;
118 int32_t MaxMicrophoneVolume(uint32_t* maxVolume) const override;
119 int32_t MinMicrophoneVolume(uint32_t* minVolume) const override;
niklase@google.com470e71d2011-07-07 08:21:25 +0000120
henrikaba35d052015-07-14 17:04:08 +0200121 // Speaker mute control
122 int32_t SpeakerMuteIsAvailable(bool* available) override;
123 int32_t SetSpeakerMute(bool enable) override;
124 int32_t SpeakerMute(bool* enabled) const override;
niklase@google.com470e71d2011-07-07 08:21:25 +0000125
henrikaba35d052015-07-14 17:04:08 +0200126 // Microphone mute control
127 int32_t MicrophoneMuteIsAvailable(bool* available) override;
128 int32_t SetMicrophoneMute(bool enable) override;
129 int32_t MicrophoneMute(bool* enabled) const override;
niklase@google.com470e71d2011-07-07 08:21:25 +0000130
henrikaba35d052015-07-14 17:04:08 +0200131 // Stereo support
132 int32_t StereoPlayoutIsAvailable(bool* available) const override;
133 int32_t SetStereoPlayout(bool enable) override;
134 int32_t StereoPlayout(bool* enabled) const override;
135 int32_t StereoRecordingIsAvailable(bool* available) const override;
136 int32_t SetStereoRecording(bool enable) override;
137 int32_t StereoRecording(bool* enabled) const override;
138 int32_t SetRecordingChannel(const ChannelType channel) override;
139 int32_t RecordingChannel(ChannelType* channel) const override;
niklase@google.com470e71d2011-07-07 08:21:25 +0000140
henrikaba35d052015-07-14 17:04:08 +0200141 // Delay information and control
henrikaba35d052015-07-14 17:04:08 +0200142 int32_t PlayoutDelay(uint16_t* delayMS) const override;
143 int32_t RecordingDelay(uint16_t* delayMS) const override;
niklase@google.com470e71d2011-07-07 08:21:25 +0000144
henrikaba35d052015-07-14 17:04:08 +0200145 // Native sample rate controls (samples/sec)
146 int32_t SetRecordingSampleRate(const uint32_t samplesPerSec) override;
147 int32_t RecordingSampleRate(uint32_t* samplesPerSec) const override;
148 int32_t SetPlayoutSampleRate(const uint32_t samplesPerSec) override;
149 int32_t PlayoutSampleRate(uint32_t* samplesPerSec) const override;
niklase@google.com470e71d2011-07-07 08:21:25 +0000150
henrikaba35d052015-07-14 17:04:08 +0200151 // Mobile device specific functions
henrikaba35d052015-07-14 17:04:08 +0200152 int32_t SetLoudspeakerStatus(bool enable) override;
153 int32_t GetLoudspeakerStatus(bool* enabled) const override;
niklase@google.com470e71d2011-07-07 08:21:25 +0000154
henrikac14f5ff2015-09-23 14:08:33 +0200155 bool BuiltInAECIsAvailable() const override;
156 int32_t EnableBuiltInAEC(bool enable) override;
157 bool BuiltInAGCIsAvailable() const override;
158 int32_t EnableBuiltInAGC(bool enable) override;
159 bool BuiltInNSIsAvailable() const override;
160 int32_t EnableBuiltInNS(bool enable) override;
andrew@webrtc.orga3c6d612011-09-13 17:17:49 +0000161
maxmorin88e31a32016-08-16 00:56:09 -0700162#if defined(WEBRTC_IOS)
henrikaba35d052015-07-14 17:04:08 +0200163 int GetPlayoutAudioParameters(AudioParameters* params) const override;
164 int GetRecordAudioParameters(AudioParameters* params) const override;
maxmorin88e31a32016-08-16 00:56:09 -0700165#endif // WEBRTC_IOS
henrikaba35d052015-07-14 17:04:08 +0200166
167 int32_t Id() { return _id; }
Tommi931e6582015-05-20 09:44:38 +0200168#if defined(WEBRTC_ANDROID)
henrikaba35d052015-07-14 17:04:08 +0200169 // Only use this acccessor for test purposes on Android.
170 AudioManager* GetAndroidAudioManagerForTest() {
171 return _audioManagerAndroid.get();
172 }
henrika24e56e32015-05-19 11:48:51 +0200173#endif
henrikaba35d052015-07-14 17:04:08 +0200174 AudioDeviceBuffer* GetAudioDeviceBuffer() { return &_audioDeviceBuffer; }
henrika@webrtc.org474d1eb2015-03-09 12:39:53 +0000175
henrikaba35d052015-07-14 17:04:08 +0200176 private:
177 PlatformType Platform() const;
178 AudioLayer PlatformAudioLayer() const;
niklase@google.com470e71d2011-07-07 08:21:25 +0000179
kthelgason6bfe49c2017-03-30 01:14:41 -0700180 rtc::CriticalSection _critSect;
181 rtc::CriticalSection _critSectEventCb;
182 rtc::CriticalSection _critSectAudioCb;
niklase@google.com470e71d2011-07-07 08:21:25 +0000183
henrikaba35d052015-07-14 17:04:08 +0200184 AudioDeviceObserver* _ptrCbAudioDeviceObserver;
niklase@google.com470e71d2011-07-07 08:21:25 +0000185
henrikaba35d052015-07-14 17:04:08 +0200186 AudioDeviceGeneric* _ptrAudioDevice;
niklase@google.com470e71d2011-07-07 08:21:25 +0000187
henrikaba35d052015-07-14 17:04:08 +0200188 AudioDeviceBuffer _audioDeviceBuffer;
Tommi931e6582015-05-20 09:44:38 +0200189#if defined(WEBRTC_ANDROID)
kwibergf01633e2016-02-24 05:00:36 -0800190 std::unique_ptr<AudioManager> _audioManagerAndroid;
henrikab2619892015-05-18 16:49:16 +0200191#endif
henrikaba35d052015-07-14 17:04:08 +0200192 int32_t _id;
193 AudioLayer _platformAudioLayer;
194 int64_t _lastProcessTime;
195 PlatformType _platformType;
196 bool _initialized;
197 mutable ErrorCode _lastError;
niklase@google.com470e71d2011-07-07 08:21:25 +0000198};
199
200} // namespace webrtc
201
Tommi931e6582015-05-20 09:44:38 +0200202#endif // defined(WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE)
203
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200204#endif // MODULES_INTERFACE_AUDIO_DEVICE_IMPL_H_