Internal.hxx 10.1 KB
Newer Older
1
/*
2
 * Copyright 2003-2016 The Music Player Daemon Project
3
 * http://www.musicpd.org
4 5 6 7 8 9 10 11 12 13
 *
 * 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.
14 15 16 17
 *
 * 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.
18 19
 */

Max Kellermann's avatar
Max Kellermann committed
20 21
#ifndef MPD_OUTPUT_INTERNAL_HXX
#define MPD_OUTPUT_INTERNAL_HXX
22

23
#include "AudioFormat.hxx"
24
#include "pcm/PcmBuffer.hxx"
25
#include "pcm/PcmDither.hxx"
26
#include "ReplayGainInfo.hxx"
27
#include "filter/Observer.hxx"
28 29
#include "thread/Mutex.hxx"
#include "thread/Cond.hxx"
30
#include "thread/Thread.hxx"
31
#include "system/PeriodClock.hxx"
32

33
class Error;
34
class PreparedFilter;
35
class Filter;
36
class MusicPipe;
37
class EventLoop;
38 39
class Mixer;
class MixerListener;
40
struct MusicChunk;
41
struct ConfigBlock;
42
struct PlayerControl;
43
struct AudioOutputPlugin;
44

45 46 47 48 49 50
struct AudioOutput {
	enum class Command {
		NONE,
		ENABLE,
		DISABLE,
		OPEN,
51

52 53 54 55 56
		/**
		 * This command is invoked when the input audio format
		 * changes.
		 */
		REOPEN,
57

58 59
		CLOSE,
		PAUSE,
60

61 62 63 64 65
		/**
		 * Drains the internal (hardware) buffers of the device.  This
		 * operation may take a while to complete.
		 */
		DRAIN,
66

67 68 69
		CANCEL,
		KILL
	};
70

71 72 73
	/**
	 * The device's configured display name.
	 */
74 75
	const char *name;

76 77 78
	/**
	 * The plugin which implements this output device.
	 */
79
	const AudioOutputPlugin &plugin;
80

81 82
	/**
	 * The #mixer object associated with this audio output device.
83
	 * May be nullptr if none is available, or if software volume is
84 85
	 * configured.
	 */
86
	Mixer *mixer = nullptr;
87

88 89 90 91 92 93 94
	/**
	 * Will this output receive tags from the decoder?  The
	 * default is true, but it may be configured to false to
	 * suppress sending tags to the output.
	 */
	bool tags;

95 96 97 98 99 100
	/**
	 * Shall this output always play something (i.e. silence),
	 * even when playback is stopped?
	 */
	bool always_on;

101 102 103
	/**
	 * Has the user enabled this device?
	 */
104
	bool enabled = true;
105

106 107 108 109
	/**
	 * Is this device actually enabled, i.e. the "enable" method
	 * has succeeded?
	 */
110
	bool really_enabled = false;
111

112 113
	/**
	 * Is the device (already) open and functional?
114 115 116 117 118
	 *
	 * This attribute may only be modified by the output thread.
	 * It is protected with #mutex: write accesses inside the
	 * output thread and read accesses outside of it may only be
	 * performed while the lock is held.
119
	 */
120
	bool open = false;
121

122 123 124 125
	/**
	 * Is the device paused?  i.e. the output thread is in the
	 * ao_pause() loop.
	 */
126
	bool pause = false;
127

128 129 130 131 132 133 134
	/**
	 * When this flag is set, the output thread will not do any
	 * playback.  It will wait until the flag is cleared.
	 *
	 * This is used to synchronize the "clear" operation on the
	 * shared music pipe during the CANCEL command.
	 */
135
	bool allow_play = true;
136

137 138 139 140 141 142
	/**
	 * True while the OutputThread is inside ao_play().  This
	 * means the PlayerThread does not need to wake up the
	 * OutputThread when new chunks are added to the MusicPipe,
	 * because the OutputThread is already watching that.
	 */
143
	bool in_playback_loop = false;
144 145 146 147 148 149

	/**
	 * Has the OutputThread been woken up to play more chunks?
	 * This is set by audio_output_play() and reset by ao_play()
	 * to reduce the number of duplicate wakeups.
	 */
150
	bool woken_for_play = false;
151

152 153
	ReplayGainMode replay_gain_mode = REPLAY_GAIN_OFF;

154
	/**
155
	 * If not nullptr, the device has failed, and this timer is used
156 157
	 * to estimate how long it should stay disabled (unless
	 * explicitly reopened with "play").
158
	 */
159
	PeriodClock fail_timer;
160

161 162 163
	/**
	 * The configured audio format.
	 */
164
	AudioFormat config_audio_format;
165

166 167 168 169
	/**
	 * The audio_format in which audio data is received from the
	 * player thread (which in turn receives it from the decoder).
	 */
170
	AudioFormat in_audio_format;
171 172 173

	/**
	 * The audio_format which is really sent to the device.  This
174 175
	 * is basically config_audio_format (if configured) or
	 * in_audio_format, but may have been modified by
176 177
	 * plugin->open().
	 */
178
	AudioFormat out_audio_format;
179

180 181 182
	/**
	 * The buffer used to allocate the cross-fading result.
	 */
183
	PcmBuffer cross_fade_buffer;
184

185 186 187 188 189
	/**
	 * The dithering state for cross-fading two streams.
	 */
	PcmDither cross_fade_dither;

190 191 192 193
	/**
	 * The filter object of this audio output.  This is an
	 * instance of chain_filter_plugin.
	 */
194
	PreparedFilter *prepared_filter = nullptr;
195
	Filter *filter_instance = nullptr;
196

197 198 199 200
	/**
	 * The #VolumeFilter instance of this audio output.  It is
	 * used by the #SoftwareMixer.
	 */
201
	FilterObserver volume_filter;
202

203 204 205 206
	/**
	 * The replay_gain_filter_plugin instance of this audio
	 * output.
	 */
207
	PreparedFilter *prepared_replay_gain_filter = nullptr;
208
	Filter *replay_gain_filter_instance = nullptr;
209 210 211 212 213 214 215

	/**
	 * The serial number of the last replay gain info.  0 means no
	 * replay gain info was available.
	 */
	unsigned replay_gain_serial;

216 217 218 219 220
	/**
	 * The replay_gain_filter_plugin instance of this audio
	 * output, to be applied to the second chunk during
	 * cross-fading.
	 */
221
	PreparedFilter *prepared_other_replay_gain_filter = nullptr;
222
	Filter *other_replay_gain_filter_instance = nullptr;
223 224 225 226 227 228 229

	/**
	 * The serial number of the last replay gain info by the
	 * "other" chunk during cross-fading.
	 */
	unsigned other_replay_gain_serial;

230 231 232 233 234 235
	/**
	 * 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.
	 */
236
	FilterObserver convert_filter;
237

238
	/**
239
	 * The thread handle, or nullptr if the output thread isn't
240 241
	 * running.
	 */
242
	Thread thread;
243 244 245 246

	/**
	 * The next command to be performed by the output thread.
	 */
247
	Command command = Command::NONE;
248 249

	/**
250
	 * The music pipe which provides music chunks to be played.
251
	 */
252
	const MusicPipe *pipe;
253

254
	/**
255 256
	 * This mutex protects #open, #fail_timer, #current_chunk and
	 * #current_chunk_finished.
257
	 */
258
	Mutex mutex;
259

260 261 262 263
	/**
	 * This condition object wakes up the output thread after
	 * #command has been set.
	 */
264
	Cond cond;
265

266
	/**
267
	 * The PlayerControl object which "owns" this output.  This
268 269
	 * object is needed to signal command completion.
	 */
270
	PlayerControl *player_control;
271

272
	/**
273
	 * The #MusicChunk which is currently being played.  All
274 275 276 277
	 * chunks before this one may be returned to the
	 * #music_buffer, because they are not going to be used by
	 * this output anymore.
	 */
278
	const MusicChunk *current_chunk;
279 280

	/**
281
	 * Has the output finished playing #current_chunk?
282
	 */
283
	bool current_chunk_finished;
284

285
	AudioOutput(const AudioOutputPlugin &_plugin);
286
	~AudioOutput();
287

288
	bool Configure(const ConfigBlock &block, Error &error);
289 290 291 292 293 294 295 296 297 298 299

	void StartThread();
	void StopThread();

	void Finish();

	bool IsOpen() const {
		return open;
	}

	bool IsCommandFinished() const {
300
		return command == Command::NONE;
301 302 303 304 305 306 307 308 309 310 311 312 313 314
	}

	/**
	 * Waits for command completion.
	 *
	 * Caller must lock the mutex.
	 */
	void WaitForCommand();

	/**
	 * Sends a command, but does not wait for completion.
	 *
	 * Caller must lock the mutex.
	 */
315
	void CommandAsync(Command cmd);
316 317 318 319 320 321 322

	/**
	 * Sends a command to the #AudioOutput object and waits for
	 * completion.
	 *
	 * Caller must lock the mutex.
	 */
323
	void CommandWait(Command cmd);
324 325 326 327 328

	/**
	 * Lock the #AudioOutput object and execute the command
	 * synchronously.
	 */
329
	void LockCommandWait(Command cmd);
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355

	/**
	 * Enables the device.
	 */
	void LockEnableWait();

	/**
	 * Disables the device.
	 */
	void LockDisableWait();

	void LockPauseAsync();

	/**
	 * Same LockCloseWait(), but expects the lock to be
	 * held by the caller.
	 */
	void CloseWait();
	void LockCloseWait();

	/**
	 * Closes the audio output, but if the "always_on" flag is set, put it
	 * into pause mode instead.
	 */
	void LockRelease();

356 357 358
	void SetReplayGainMode(ReplayGainMode _mode) {
		replay_gain_mode = _mode;
	}
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388

	/**
	 * Caller must lock the mutex.
	 */
	bool Open(const AudioFormat audio_format, const MusicPipe &mp);

	/**
	 * Opens or closes the device, depending on the "enabled"
	 * flag.
	 *
	 * @return true if the device is open
	 */
	bool LockUpdate(const AudioFormat audio_format,
			const MusicPipe &mp);

	void LockPlay();

	void LockDrainAsync();

	/**
	 * Clear the "allow_play" flag and send the "CANCEL" command
	 * asynchronously.  To finish the operation, the caller has to
	 * call LockAllowPlay().
	 */
	void LockCancelAsync();

	/**
	 * Set the "allow_play" and signal the thread.
	 */
	void LockAllowPlay();
389 390 391 392 393 394 395 396 397 398 399

private:
	void CommandFinished();

	bool Enable();
	void Disable();

	void Open();
	void Close(bool drain);
	void Reopen();

400 401 402 403 404 405 406
	/**
	 * Close the output plugin.
	 *
	 * Mutex must not be locked.
	 */
	void CloseOutput(bool drain);

407 408 409 410
	/**
	 * Throws std::runtime_error on error.
	 */
	AudioFormat OpenFilter(AudioFormat &format);
411 412 413 414

	/**
	 * Mutex must not be locked.
	 */
415
	void CloseFilter();
416

417 418 419 420 421 422 423 424 425 426 427
	void ReopenFilter();

	/**
	 * Wait until the output's delay reaches zero.
	 *
	 * @return true if playback should be continued, false if a
	 * command was issued
	 */
	bool WaitForDelay();

	gcc_pure
428
	const MusicChunk *GetNextChunk() const;
429

430
	bool PlayChunk(const MusicChunk *chunk);
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448

	/**
	 * Plays all remaining chunks, until the tail of the pipe has
	 * been reached (and no more chunks are queued), or until a
	 * command is received.
	 *
	 * @return true if at least one chunk has been available,
	 * false if the tail of the pipe was already reached
	 */
	bool Play();

	void Pause();

	/**
	 * The OutputThread.
	 */
	void Task();
	static void Task(void *arg);
449 450
};

451 452 453 454
/**
 * Notify object used by the thread's client, i.e. we will send a
 * notify signal to this object, expecting the caller to wait on it.
 */
455 456
extern struct notify audio_output_client_notify;

457
AudioOutput *
458
audio_output_new(EventLoop &event_loop, const ConfigBlock &block,
459
		 MixerListener &mixer_listener,
460
		 PlayerControl &pc,
461
		 Error &error);
462

463
void
464
audio_output_free(AudioOutput *ao);
465

466
#endif