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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
|
/*
* Copyright 2003-2020 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_FILTERED_AUDIO_OUTPUT_HXX
#define MPD_FILTERED_AUDIO_OUTPUT_HXX
#include "pcm/AudioFormat.hxx"
#include "filter/Observer.hxx"
#include <memory>
#include <string>
#include <map>
#include <chrono>
class FilterFactory;
class PreparedFilter;
class EventLoop;
class Mixer;
class MixerListener;
struct MixerPlugin;
struct ConfigBlock;
class AudioOutput;
struct AudioOutputDefaults;
struct ReplayGainConfig;
struct Tag;
struct FilteredAudioOutput {
const char *const plugin_name;
/**
* The device's configured display name.
*/
const char *name;
private:
/**
* A string describing this devicee in log messages. It is
* usually in the form "NAME (PLUGIN)".
*/
std::string log_name;
public:
/**
* The plugin which implements this output device.
*/
std::unique_ptr<AudioOutput> output;
/**
* The #mixer object associated with this audio output device.
* May be nullptr if none is available, or if software volume is
* configured.
*/
Mixer *mixer = nullptr;
/**
* The configured audio format.
*/
AudioFormat config_audio_format;
/**
* The #AudioFormat which is emitted by the #Filter, with
* #config_audio_format already applied. This is used to
* decide whether this object needs to be closed and reopened
* upon #AudioFormat changes.
*/
AudioFormat filter_audio_format;
/**
* The audio_format which is really sent to the device. This
* is basically config_audio_format (if configured) or
* in_audio_format, but may have been modified by
* plugin->open().
*/
AudioFormat out_audio_format;
/**
* The filter object of this audio output. This is an
* instance of chain_filter_plugin.
*/
std::unique_ptr<PreparedFilter> prepared_filter;
/**
* The #VolumeFilter instance of this audio output. It is
* used by the #SoftwareMixer.
*/
FilterObserver volume_filter;
/**
* The replay_gain_filter_plugin instance of this audio
* output.
*/
std::unique_ptr<PreparedFilter> prepared_replay_gain_filter;
/**
* The replay_gain_filter_plugin instance of this audio
* output, to be applied to the second chunk during
* cross-fading.
*/
std::unique_ptr<PreparedFilter> prepared_other_replay_gain_filter;
/**
* The convert_filter_plugin instance of this audio output.
* It is the last item in the filter chain, and is responsible
* for converting the input data into the appropriate format
* for this audio output.
*/
FilterObserver convert_filter;
/**
* Throws on error.
*/
FilteredAudioOutput(const char *_plugin_name,
std::unique_ptr<AudioOutput> &&_output,
const ConfigBlock &block,
const AudioOutputDefaults &defaults,
FilterFactory *filter_factory);
~FilteredAudioOutput();
private:
void Configure(const ConfigBlock &block,
const AudioOutputDefaults &defaults,
FilterFactory *filter_factory);
public:
void Setup(EventLoop &event_loop,
const ReplayGainConfig &replay_gain_config,
const MixerPlugin *mixer_plugin,
MixerListener &mixer_listener,
const ConfigBlock &block,
const AudioOutputDefaults &defaults);
const char *GetName() const {
return name;
}
const char *GetPluginName() const noexcept {
return plugin_name;
}
const char *GetLogName() const noexcept {
return log_name.c_str();
}
/**
* Does the plugin support enabling/disabling a device?
*/
gcc_pure
bool SupportsEnableDisable() const noexcept;
/**
* Does the plugin support pausing a device?
*/
gcc_pure
bool SupportsPause() const noexcept;
std::map<std::string, std::string> GetAttributes() const noexcept;
void SetAttribute(std::string &&name, std::string &&value);
/**
* Throws on error.
*/
void Enable();
void Disable() noexcept;
/**
* Invoke OutputPlugin::close().
*
* Caller must not lock the mutex.
*/
void Close(bool drain) noexcept;
void ConfigureConvertFilter();
/**
* Invoke OutputPlugin::open() and configure the
* #ConvertFilter.
*
* Throws on error.
*
* Caller must not lock the mutex.
*/
void OpenOutputAndConvert(AudioFormat audio_format);
/**
* Close the output plugin.
*
* Mutex must not be locked.
*/
void CloseOutput(bool drain) noexcept;
/**
* Mutex must not be locked.
*/
void OpenSoftwareMixer() noexcept;
/**
* Mutex must not be locked.
*/
void CloseSoftwareMixer() noexcept;
gcc_pure
std::chrono::steady_clock::duration Delay() noexcept;
void SendTag(const Tag &tag);
size_t Play(const void *data, size_t size);
void Drain();
void Cancel() noexcept;
void BeginPause() noexcept;
bool IteratePause();
void EndPause() noexcept{
}
};
/**
* Throws on error.
*/
std::unique_ptr<FilteredAudioOutput>
audio_output_new(EventLoop &event_loop,
const ReplayGainConfig &replay_gain_config,
const ConfigBlock &block,
const AudioOutputDefaults &defaults,
FilterFactory *filter_factory,
MixerListener &mixer_listener);
#endif
|