1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
media / audio / audio_manager_base.h [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_AUDIO_AUDIO_MANAGER_BASE_H_
#define MEDIA_AUDIO_AUDIO_MANAGER_BASE_H_
#include <memory>
#include <string>
#include <unordered_set>
#include <utility>
#include <vector>
#include "base/compiler_specific.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/observer_list.h"
#include "base/task/single_thread_task_runner.h"
#include "base/threading/thread.h"
#include "build/build_config.h"
#include "media/audio/aecdump_recording_manager.h"
#include "media/audio/audio_debug_recording_manager.h"
#include "media/audio/audio_device_name.h"
#include "media/audio/audio_manager.h"
#include "media/audio/audio_output_dispatcher.h"
namespace media {
class AudioOutputDispatcher;
// AudioManagerBase provides AudioManager functions common for all platforms.
class MEDIA_EXPORT AudioManagerBase : public AudioManager {
public:
AudioManagerBase(const AudioManagerBase&) = delete;
AudioManagerBase& operator=(const AudioManagerBase&) = delete;
~AudioManagerBase() override;
AudioOutputStream* MakeAudioOutputStream(
const AudioParameters& params,
const std::string& device_id,
const LogCallback& log_callback) override;
AudioInputStream* MakeAudioInputStream(
const AudioParameters& params,
const std::string& device_id,
const LogCallback& log_callback) override;
AudioOutputStream* MakeAudioOutputStreamProxy(
const AudioParameters& params,
const std::string& device_id) override;
// Listeners will be notified on the GetTaskRunner() task runner.
void AddOutputDeviceChangeListener(AudioDeviceListener* listener) override;
void RemoveOutputDeviceChangeListener(AudioDeviceListener* listener) override;
std::unique_ptr<AudioLog> CreateAudioLog(
AudioLogFactory::AudioComponent component,
int component_id) override;
// AudioManagerBase:
// Called internally by the audio stream when it has been closed.
virtual void ReleaseOutputStream(AudioOutputStream* stream);
virtual void ReleaseInputStream(AudioInputStream* stream);
// Creates the output stream for the |AUDIO_PCM_LINEAR| format. The legacy
// name is also from |AUDIO_PCM_LINEAR|.
virtual AudioOutputStream* MakeLinearOutputStream(
const AudioParameters& params,
const LogCallback& log_callback) = 0;
// Creates the output stream for the |AUDIO_PCM_LOW_LATENCY| format.
virtual AudioOutputStream* MakeLowLatencyOutputStream(
const AudioParameters& params,
const std::string& device_id,
const LogCallback& log_callback) = 0;
// Creates the output stream for the |AUDIO_BITSTREAM_XXX| format.
virtual AudioOutputStream* MakeBitstreamOutputStream(
const AudioParameters& params,
const std::string& device_id,
const LogCallback& log_callback);
// Creates the input stream for the |AUDIO_PCM_LINEAR| format. The legacy
// name is also from |AUDIO_PCM_LINEAR|.
virtual AudioInputStream* MakeLinearInputStream(
const AudioParameters& params,
const std::string& device_id,
const LogCallback& log_callback) = 0;
// Creates the input stream for the |AUDIO_PCM_LOW_LATENCY| format.
virtual AudioInputStream* MakeLowLatencyInputStream(
const AudioParameters& params,
const std::string& device_id,
const LogCallback& log_callback) = 0;
// Get number of input or output streams.
int input_stream_count() const {
return static_cast<int>(input_streams_.size());
}
int output_stream_count() const { return num_output_streams_; }
protected:
AudioManagerBase(std::unique_ptr<AudioThread> audio_thread,
AudioLogFactory* audio_log_factory);
// AudioManager:
void ShutdownOnAudioThread() override;
void GetAudioInputDeviceDescriptions(
AudioDeviceDescriptions* device_descriptions) final;
void GetAudioOutputDeviceDescriptions(
AudioDeviceDescriptions* device_descriptions) final;
AudioParameters GetOutputStreamParameters(
const std::string& device_id) override;
AudioParameters GetInputStreamParameters(
const std::string& device_id) override;
std::string GetAssociatedOutputDeviceID(
const std::string& input_device_id) override;
void SetMaxOutputStreamsAllowed(int max) { max_num_output_streams_ = max; }
// Called by each platform specific AudioManager to notify output state change
// listeners that a state change has occurred. Must be called from the audio
// thread.
void NotifyAllOutputDeviceChangeListeners();
// Returns user buffer size as specified on the command line or 0 if no buffer
// size has been specified.
static int GetUserBufferSize();
// Returns the preferred hardware audio output parameters for opening output
// streams. If the users inject a valid |input_params|, each AudioManager
// will decide if they should return the values from |input_params| or the
// default hardware values. If the |input_params| is invalid, it will return
// the default hardware audio parameters.
// If |output_device_id| is empty, the implementation must treat that as
// a request for the default output device.
virtual AudioParameters GetPreferredOutputStreamParameters(
const std::string& output_device_id,
const AudioParameters& input_params) = 0;
// Appends a list of available input devices to |device_names|,
// which must initially be empty.
virtual void GetAudioInputDeviceNames(AudioDeviceNames* device_names);
// Appends a list of available output devices to |device_names|,
// which must initially be empty.
virtual void GetAudioOutputDeviceNames(AudioDeviceNames* device_names);
std::string GetDefaultInputDeviceID() override;
std::string GetDefaultOutputDeviceID() override;
std::string GetCommunicationsInputDeviceID() override;
std::string GetCommunicationsOutputDeviceID() override;
virtual std::unique_ptr<AudioDebugRecordingManager>
CreateAudioDebugRecordingManager();
AudioDebugRecordingManager* GetAudioDebugRecordingManager() final;
void SetAecDumpRecordingManager(base::WeakPtr<AecdumpRecordingManager>
aecdump_recording_manager) override;
// These functions assign group ids to devices based on their device ids. The
// default implementation is an attempt to do this based on
// GetAssociatedOutputDeviceID. They may be overridden by subclasses that want
// a different logic for assigning group ids. Must be called on the audio
// worker thread (see GetTaskRunner()).
virtual std::string GetGroupIDOutput(const std::string& output_device_id);
virtual std::string GetGroupIDInput(const std::string& input_device_id);
// Closes all currently open input streams.
void CloseAllInputStreams();
private:
FRIEND_TEST_ALL_PREFIXES(AudioManagerTest, AudioDebugRecording);
struct DispatcherParams;
typedef std::vector<std::unique_ptr<DispatcherParams>> AudioOutputDispatchers;
// AudioManager:
void InitializeDebugRecording() final;
void GetAudioDeviceDescriptions(
AudioDeviceDescriptions* descriptions,
void (AudioManagerBase::*get_device_names)(AudioDeviceNames*),
std::string (AudioManagerBase::*get_default_device_id)(),
std::string (AudioManagerBase::*get_communications_device_id)(),
std::string (AudioManagerBase::*get_group_id)(const std::string&));
// Max number of open output streams, modified by
// SetMaxOutputStreamsAllowed().
int max_num_output_streams_;
// Number of currently open output streams.
int num_output_streams_;
// Track output state change listeners.
base::ObserverList<AudioDeviceListener>::Unchecked output_listeners_;
// Contains currently open input streams.
std::unordered_set<raw_ptr<AudioInputStream, CtnExperimental>> input_streams_;
// Map of cached AudioOutputDispatcher instances. Must only be touched
// from the audio thread (no locking).
AudioOutputDispatchers output_dispatchers_;
// Proxy for creating AudioLog objects.
const raw_ptr<AudioLogFactory, DanglingUntriaged> audio_log_factory_;
// Debug recording manager.
std::unique_ptr<AudioDebugRecordingManager> debug_recording_manager_;
};
} // namespace media
#endif // MEDIA_AUDIO_AUDIO_MANAGER_BASE_H_