AlsaOutputPlugin.cxx 32.5 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 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
 */

20
#include "config.h"
21
#include "AlsaOutputPlugin.hxx"
22
#include "lib/alsa/NonBlock.hxx"
23
#include "lib/alsa/Version.hxx"
24
#include "../OutputAPI.hxx"
25
#include "../Wrapper.hxx"
Max Kellermann's avatar
Max Kellermann committed
26
#include "mixer/MixerList.hxx"
27
#include "pcm/PcmExport.hxx"
28
#include "system/ByteOrder.hxx"
29
#include "thread/Cond.hxx"
30
#include "util/Manual.hxx"
31
#include "util/RuntimeError.hxx"
32
#include "util/Domain.hxx"
33
#include "util/ConstBuffer.hxx"
34 35 36
#include "event/MultiSocketMonitor.hxx"
#include "event/DeferredMonitor.hxx"
#include "event/Call.hxx"
37
#include "Log.hxx"
38

39
#include <alsa/asoundlib.h>
40

41 42
#include <boost/lockfree/spsc_queue.hpp>

43 44
#include <string>

45 46 47 48 49
#if SND_LIB_VERSION >= 0x1001c
/* alsa-lib supports DSD since version 1.0.27.1 */
#define HAVE_ALSA_DSD
#endif

50 51 52 53 54
#if SND_LIB_VERSION >= 0x1001d
/* alsa-lib supports DSD_U32 since version 1.0.29 */
#define HAVE_ALSA_DSD_U32
#endif

55 56
static const char default_device[] = "default";

57
static constexpr unsigned MPD_ALSA_BUFFER_TIME_US = 500000;
58

59
static constexpr unsigned MPD_ALSA_RETRY_NR = 5;
60

61 62 63
class AlsaOutput final
	: MultiSocketMonitor, DeferredMonitor {

64 65
	friend struct AudioOutputWrapper<AlsaOutput>;

66
	AudioOutput base;
67

68
	Manual<PcmExport> pcm_export;
69

70 71 72 73
	/**
	 * The configured name of the ALSA device; empty for the
	 * default device
	 */
74
	const std::string device;
75

76
#ifdef ENABLE_DSD
77
	/**
Max Kellermann's avatar
Max Kellermann committed
78
	 * Enable DSD over PCM according to the DoP standard?
79
	 *
80
	 * @see http://dsd-guide.com/dop-open-standard
81
	 */
82
	const bool dop;
83
#endif
84

Max Kellermann's avatar
Max Kellermann committed
85
	/** libasound's buffer_time setting (in microseconds) */
86
	const unsigned buffer_time;
Max Kellermann's avatar
Max Kellermann committed
87 88

	/** libasound's period_time setting (in microseconds) */
89
	const unsigned period_time;
Max Kellermann's avatar
Max Kellermann committed
90

91
	/** the mode flags passed to snd_pcm_open */
92
	int mode = 0;
93

Max Kellermann's avatar
Max Kellermann committed
94
	/** the libasound PCM device handle */
Max Kellermann's avatar
Max Kellermann committed
95
	snd_pcm_t *pcm;
Max Kellermann's avatar
Max Kellermann committed
96

97 98 99 100 101 102 103 104 105
	/**
	 * The size of one audio frame passed to method play().
	 */
	size_t in_frame_size;

	/**
	 * The size of one audio frame passed to libasound.
	 */
	size_t out_frame_size;
106 107 108 109 110 111

	/**
	 * The size of one period, in number of frames.
	 */
	snd_pcm_uframes_t period_frames;

112 113 114 115 116 117 118 119 120 121 122
	/**
	 * Is this a buggy alsa-lib version, which needs a workaround
	 * for the snd_pcm_drain() bug always returning -EAGAIN?  See
	 * alsa-lib commits fdc898d41135 and e4377b16454f for details.
	 * This bug was fixed in alsa-lib version 1.1.4.
	 *
	 * The workaround is to re-enable blocking mode for the
	 * snd_pcm_drain() call.
	 */
	bool work_around_drain_bug;

123
	/**
124 125
	 * After Open(), has this output been activated by a Play()
	 * command?
126
	 */
127
	bool active;
128

129
	/**
130 131 132 133 134 135 136 137
	 * Do we need to call snd_pcm_prepare() before the next write?
	 * It means that we put the device to SND_PCM_STATE_SETUP by
	 * calling snd_pcm_drop().
	 *
	 * Without this flag, we could easily recover after a failed
	 * optimistic write (returning -EBADFD), but the Raspberry Pi
	 * audio driver is infamous for generating ugly artefacts from
	 * this.
138
	 */
139
	bool must_prepare;
140

141 142
	bool drain;

143 144 145 146 147
	/**
	 * This buffer gets allocated after opening the ALSA device.
	 * It contains silence samples, enough to fill one period (see
	 * #period_frames).
	 */
148
	uint8_t *silence;
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 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
	/**
	 * For PrepareAlsaPcmSockets().
	 */
	ReusableArray<pollfd> pfd_buffer;

	/**
	 * For copying data from OutputThread to IOThread.
	 */
	boost::lockfree::spsc_queue<uint8_t> *ring_buffer;

	class PeriodBuffer {
		size_t capacity, head, tail;

		uint8_t *buffer;

	public:
		PeriodBuffer() = default;
		PeriodBuffer(const PeriodBuffer &) = delete;
		PeriodBuffer &operator=(const PeriodBuffer &) = delete;

		void Allocate(size_t n_frames, size_t frame_size) {
			capacity = n_frames * frame_size;

			/* reserve space for one more (partial) frame,
			   to be able to fill the buffer with silence,
			   after moving an unfinished frame to the
			   end */
			buffer = new uint8_t[capacity + frame_size - 1];
			head = tail = 0;
		}

		void Free() {
			delete[] buffer;
		}

		bool IsEmpty() const {
			return head == tail;
		}

		bool IsFull() const {
			return tail >= capacity;
		}

		uint8_t *GetTail() {
			return buffer + tail;
		}

		size_t GetSpaceBytes() const {
			assert(tail <= capacity);

			return capacity - tail;
		}

		void AppendBytes(size_t n) {
			assert(n <= capacity);
			assert(tail <= capacity - n);

			tail += n;
		}

		void FillWithSilence(const uint8_t *_silence,
				     const size_t frame_size) {
			size_t partial_frame = tail % frame_size;
			auto *dest = GetTail() - partial_frame;

			/* move the partial frame to the end */
			std::copy(dest, GetTail(), buffer + capacity);

			size_t silence_size = capacity - tail - partial_frame;
			std::copy_n(_silence, silence_size, dest);

			tail = capacity + partial_frame;
		}

		const uint8_t *GetHead() const {
			return buffer + head;
		}

		snd_pcm_uframes_t GetFrames(size_t frame_size) const {
			return (tail - head) / frame_size;
		}

		void ConsumeBytes(size_t n) {
			head += n;

			assert(head <= capacity);

			if (head >= capacity) {
				tail -= head;
				/* copy the partial frame (if any)
				   back to the beginning */
				std::copy_n(GetHead(), tail, buffer);
				head = 0;
			}
		}

		void ConsumeFrames(snd_pcm_uframes_t n, size_t frame_size) {
			ConsumeBytes(n * frame_size);
		}

		snd_pcm_uframes_t GetPeriodPosition(size_t frame_size) const {
			return head / frame_size;
		}

		void Rewind() {
			head = 0;
		}

		void Clear() {
			head = tail = 0;
		}
	};

	PeriodBuffer period_buffer;

	/**
	 * Protects #cond, #error, #drain.
	 */
	mutable Mutex mutex;

	/**
	 * Used to wait when #ring_buffer is full.  It will be
	 * signalled each time data is popped from the #ring_buffer,
	 * making space for more data.
	 */
	Cond cond;

	std::exception_ptr error;

279
public:
280
	AlsaOutput(EventLoop &loop, const ConfigBlock &block);
281

282 283 284 285 286 287 288 289 290 291
	~AlsaOutput() {
		/* free libasound's config cache */
		snd_config_update_free_global();
	}

	gcc_pure
	const char *GetDevice() {
		return device.empty() ? default_device : device.c_str();
	}

292 293
	static AlsaOutput *Create(EventLoop &event_loop,
				  const ConfigBlock &block);
294

295
	void Enable();
296 297
	void Disable();

298
	void Open(AudioFormat &audio_format);
299 300
	void Close();

301
	size_t Play(const void *chunk, size_t size);
302 303 304 305
	void Drain();
	void Cancel();

private:
306 307 308 309 310 311 312 313
	/**
	 * Set up the snd_pcm_t object which was opened by the caller.
	 * Set up the configured settings and the audio format.
	 *
	 * Throws #std::runtime_error on error.
	 */
	void Setup(AudioFormat &audio_format, PcmExport::Params &params);

314
#ifdef ENABLE_DSD
315 316
	void SetupDop(AudioFormat audio_format,
		      PcmExport::Params &params);
317 318
#endif

319
	void SetupOrDop(AudioFormat &audio_format, PcmExport::Params &params);
320

321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
	/**
	 * Activate the output by registering the sockets in the
	 * #EventLoop.  Before calling this, filling the ring buffer
	 * has no effect; nothing will be played, and no code will be
	 * run on #EventLoop's thread.
	 */
	void Activate() {
		if (active)
			return;

		active = true;
		DeferredMonitor::Schedule();
	}

	/**
	 * Wrapper for Activate() which unlocks our mutex.  Call this
	 * if you're holding the mutex.
	 */
	void UnlockActivate() {
		if (active)
			return;

		const ScopeUnlock unlock(mutex);
		Activate();
	}

	void ClearRingBuffer() {
		std::array<uint8_t, 1024> buffer;
		while (ring_buffer->pop(&buffer.front(), buffer.size())) {}
	}

352 353 354
	int Recover(int err);

	/**
355 356 357 358
	 * Drain all buffers.  To be run in #EventLoop's thread.
	 *
	 * @return true if draining is complete, false if this method
	 * needs to be called again later
359
	 */
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
	bool DrainInternal();

	/**
	 * Stop playback immediately, dropping all buffers.  To be run
	 * in #EventLoop's thread.
	 */
	void CancelInternal();

	void CopyRingToPeriodBuffer() {
		if (period_buffer.IsFull())
			return;

		size_t nbytes = ring_buffer->pop(period_buffer.GetTail(),
						 period_buffer.GetSpaceBytes());
		if (nbytes == 0)
			return;

		period_buffer.AppendBytes(nbytes);

		const std::lock_guard<Mutex> lock(mutex);
		/* notify the OutputThread that there is now
		   room in ring_buffer */
		cond.signal();
383 384
	}

385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
	snd_pcm_sframes_t WriteFromPeriodBuffer() {
		assert(!period_buffer.IsEmpty());

		auto frames_written = snd_pcm_writei(pcm, period_buffer.GetHead(),
						     period_buffer.GetFrames(out_frame_size));
		if (frames_written > 0)
			period_buffer.ConsumeFrames(frames_written,
						    out_frame_size);

		return frames_written;
	}

	bool LockHasError() const {
		const std::lock_guard<Mutex> lock(mutex);
		return !!error;
	}

	/* virtual methods from class DeferredMonitor */
	virtual void RunDeferred() override {
		InvalidateSockets();
	}

	/* virtual methods from class MultiSocketMonitor */
	virtual std::chrono::steady_clock::duration PrepareSockets() override;
	virtual void DispatchSockets() override;
Max Kellermann's avatar
Max Kellermann committed
410
};
411

412
static constexpr Domain alsa_output_domain("alsa_output");
413

414 415 416
AlsaOutput::AlsaOutput(EventLoop &loop, const ConfigBlock &block)
	:MultiSocketMonitor(loop), DeferredMonitor(loop),
	 base(alsa_output_plugin, block),
417
	 device(block.GetBlockValue("device", "")),
418
#ifdef ENABLE_DSD
419 420 421
	 dop(block.GetBlockValue("dop", false) ||
	     /* legacy name from MPD 0.18 and older: */
	     block.GetBlockValue("dsd_usb", false)),
422
#endif
423 424 425 426
	 buffer_time(block.GetBlockValue("buffer_time",
					 MPD_ALSA_BUFFER_TIME_US)),
	 period_time(block.GetBlockValue("period_time", 0u))
{
427
#ifdef SND_PCM_NO_AUTO_RESAMPLE
428
	if (!block.GetBlockValue("auto_resample", true))
429
		mode |= SND_PCM_NO_AUTO_RESAMPLE;
430
#endif
431

432
#ifdef SND_PCM_NO_AUTO_CHANNELS
433
	if (!block.GetBlockValue("auto_channels", true))
434
		mode |= SND_PCM_NO_AUTO_CHANNELS;
435
#endif
436

437
#ifdef SND_PCM_NO_AUTO_FORMAT
438
	if (!block.GetBlockValue("auto_format", true))
439
		mode |= SND_PCM_NO_AUTO_FORMAT;
440
#endif
441 442
}

443
inline AlsaOutput *
444
AlsaOutput::Create(EventLoop &event_loop, const ConfigBlock &block)
Avuton Olrich's avatar
Avuton Olrich committed
445
{
446
	return new AlsaOutput(event_loop, block);
447 448
}

449 450
inline void
AlsaOutput::Enable()
451
{
452
	pcm_export.Construct();
453 454
}

455 456
inline void
AlsaOutput::Disable()
457
{
458
	pcm_export.Destruct();
459 460
}

Max Kellermann's avatar
Max Kellermann committed
461
static bool
462
alsa_test_default_device()
463
{
Avuton Olrich's avatar
Avuton Olrich committed
464
	snd_pcm_t *handle;
465

466
	int ret = snd_pcm_open(&handle, default_device,
467
			       SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
Avuton Olrich's avatar
Avuton Olrich committed
468
	if (ret) {
469 470 471
		FormatError(alsa_output_domain,
			    "Error opening default ALSA device: %s",
			    snd_strerror(-ret));
472
		return false;
Avuton Olrich's avatar
Avuton Olrich committed
473 474
	} else
		snd_pcm_close(handle);
475

476
	return true;
477 478
}

479 480 481 482 483
/**
 * Convert MPD's #SampleFormat enum to libasound's snd_pcm_format_t
 * enum.  Returns SND_PCM_FORMAT_UNKNOWN if there is no according ALSA
 * PCM format.
 */
484
gcc_const
Max Kellermann's avatar
Max Kellermann committed
485
static snd_pcm_format_t
486
ToAlsaPcmFormat(SampleFormat sample_format) noexcept
487
{
488
	switch (sample_format) {
489
	case SampleFormat::UNDEFINED:
490 491
		return SND_PCM_FORMAT_UNKNOWN;

492
	case SampleFormat::DSD:
493 494 495
#ifdef HAVE_ALSA_DSD
		return SND_PCM_FORMAT_DSD_U8;
#else
496
		return SND_PCM_FORMAT_UNKNOWN;
497
#endif
498

499
	case SampleFormat::S8:
500 501
		return SND_PCM_FORMAT_S8;

502
	case SampleFormat::S16:
503 504
		return SND_PCM_FORMAT_S16;

505
	case SampleFormat::S24_P32:
506 507
		return SND_PCM_FORMAT_S24;

508
	case SampleFormat::S32:
509
		return SND_PCM_FORMAT_S32;
510

511
	case SampleFormat::FLOAT:
512
		return SND_PCM_FORMAT_FLOAT;
513
	}
514 515

	assert(false);
516
	gcc_unreachable();
517 518
}

519 520 521 522
/**
 * Determine the byte-swapped PCM format.  Returns
 * SND_PCM_FORMAT_UNKNOWN if the format cannot be byte-swapped.
 */
523
static snd_pcm_format_t
524
ByteSwapAlsaPcmFormat(snd_pcm_format_t fmt) noexcept
525
{
526
	switch (fmt) {
527 528 529 530 531
	case SND_PCM_FORMAT_S16_LE: return SND_PCM_FORMAT_S16_BE;
	case SND_PCM_FORMAT_S24_LE: return SND_PCM_FORMAT_S24_BE;
	case SND_PCM_FORMAT_S32_LE: return SND_PCM_FORMAT_S32_BE;
	case SND_PCM_FORMAT_S16_BE: return SND_PCM_FORMAT_S16_LE;
	case SND_PCM_FORMAT_S24_BE: return SND_PCM_FORMAT_S24_LE;
532 533 534 535 536 537 538

	case SND_PCM_FORMAT_S24_3BE:
		return SND_PCM_FORMAT_S24_3LE;

	case SND_PCM_FORMAT_S24_3LE:
		return SND_PCM_FORMAT_S24_3BE;

539
	case SND_PCM_FORMAT_S32_BE: return SND_PCM_FORMAT_S32_LE;
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554

#ifdef HAVE_ALSA_DSD_U32
	case SND_PCM_FORMAT_DSD_U16_LE:
		return SND_PCM_FORMAT_DSD_U16_BE;

	case SND_PCM_FORMAT_DSD_U16_BE:
		return SND_PCM_FORMAT_DSD_U16_LE;

	case SND_PCM_FORMAT_DSD_U32_LE:
		return SND_PCM_FORMAT_DSD_U32_BE;

	case SND_PCM_FORMAT_DSD_U32_BE:
		return SND_PCM_FORMAT_DSD_U32_LE;
#endif

555 556 557
	default: return SND_PCM_FORMAT_UNKNOWN;
	}
}
558

559 560 561 562
/**
 * Check if there is a "packed" version of the give PCM format.
 * Returns SND_PCM_FORMAT_UNKNOWN if not.
 */
563
static snd_pcm_format_t
564
PackAlsaPcmFormat(snd_pcm_format_t fmt)
565 566 567 568 569 570 571 572 573 574 575 576 577
{
	switch (fmt) {
	case SND_PCM_FORMAT_S24_LE:
		return SND_PCM_FORMAT_S24_3LE;

	case SND_PCM_FORMAT_S24_BE:
		return SND_PCM_FORMAT_S24_3BE;

	default:
		return SND_PCM_FORMAT_UNKNOWN;
	}
}

578 579 580 581
/**
 * Attempts to configure the specified sample format.  On failure,
 * fall back to the packed version.
 */
582
static int
583 584
AlsaTryFormatOrPacked(snd_pcm_t *pcm, snd_pcm_hw_params_t *hwparams,
		      snd_pcm_format_t fmt, PcmExport::Params &params)
585 586 587
{
	int err = snd_pcm_hw_params_set_format(pcm, hwparams, fmt);
	if (err == 0)
588
		params.pack24 = false;
589 590 591 592

	if (err != -EINVAL)
		return err;

593
	fmt = PackAlsaPcmFormat(fmt);
594 595 596 597 598
	if (fmt == SND_PCM_FORMAT_UNKNOWN)
		return -EINVAL;

	err = snd_pcm_hw_params_set_format(pcm, hwparams, fmt);
	if (err == 0)
599
		params.pack24 = true;
600 601 602 603

	return err;
}

604
/**
605 606
 * Attempts to configure the specified sample format, and tries the
 * reversed host byte order if was not supported.
607 608
 */
static int
609 610 611
AlsaTryFormatOrByteSwap(snd_pcm_t *pcm, snd_pcm_hw_params_t *hwparams,
			snd_pcm_format_t fmt,
			PcmExport::Params &params)
612
{
613
	int err = AlsaTryFormatOrPacked(pcm, hwparams, fmt, params);
614
	if (err == 0)
615
		params.reverse_endian = false;
616

617 618
	if (err != -EINVAL)
		return err;
619

620 621
	fmt = ByteSwapAlsaPcmFormat(fmt);
	if (fmt == SND_PCM_FORMAT_UNKNOWN)
622 623
		return -EINVAL;

624
	err = AlsaTryFormatOrPacked(pcm, hwparams, fmt, params);
625
	if (err == 0)
626
		params.reverse_endian = true;
627 628 629 630

	return err;
}

631 632
/**
 * Attempts to configure the specified sample format.  On DSD_U8
633
 * failure, attempt to switch to DSD_U32 or DSD_U16.
634 635 636 637 638 639 640 641
 */
static int
AlsaTryFormatDsd(snd_pcm_t *pcm, snd_pcm_hw_params_t *hwparams,
		 snd_pcm_format_t fmt, PcmExport::Params &params)
{
	int err = AlsaTryFormatOrByteSwap(pcm, hwparams, fmt, params);

#if defined(ENABLE_DSD) && defined(HAVE_ALSA_DSD_U32)
642 643
	if (err == 0) {
		params.dsd_u16 = false;
644
		params.dsd_u32 = false;
645
	}
646 647 648 649 650 651 652 653 654

	if (err == -EINVAL && fmt == SND_PCM_FORMAT_DSD_U8) {
		/* attempt to switch to DSD_U32 */
		fmt = IsLittleEndian()
			? SND_PCM_FORMAT_DSD_U32_LE
			: SND_PCM_FORMAT_DSD_U32_BE;
		err = AlsaTryFormatOrByteSwap(pcm, hwparams, fmt, params);
		if (err == 0)
			params.dsd_u32 = true;
655 656 657 658 659 660 661 662 663 664 665 666 667 668
		else
			fmt = SND_PCM_FORMAT_DSD_U8;
	}

	if (err == -EINVAL && fmt == SND_PCM_FORMAT_DSD_U8) {
		/* attempt to switch to DSD_U16 */
		fmt = IsLittleEndian()
			? SND_PCM_FORMAT_DSD_U16_LE
			: SND_PCM_FORMAT_DSD_U16_BE;
		err = AlsaTryFormatOrByteSwap(pcm, hwparams, fmt, params);
		if (err == 0)
			params.dsd_u16 = true;
		else
			fmt = SND_PCM_FORMAT_DSD_U8;
669 670 671 672 673 674
	}
#endif

	return err;
}

675 676 677 678 679 680 681 682 683
static int
AlsaTryFormat(snd_pcm_t *pcm, snd_pcm_hw_params_t *hwparams,
	      SampleFormat sample_format,
	      PcmExport::Params &params)
{
	snd_pcm_format_t alsa_format = ToAlsaPcmFormat(sample_format);
	if (alsa_format == SND_PCM_FORMAT_UNKNOWN)
		return -EINVAL;

684
	return AlsaTryFormatDsd(pcm, hwparams, alsa_format, params);
685 686
}

687
/**
688
 * Configure a sample format, and probe other formats if that fails.
689
 */
690
static int
691 692 693
AlsaSetupFormat(snd_pcm_t *pcm, snd_pcm_hw_params_t *hwparams,
		AudioFormat &audio_format,
		PcmExport::Params &params)
694
{
695
	/* try the input format first */
696

697
	int err = AlsaTryFormat(pcm, hwparams, audio_format.format, params);
698

699
	/* if unsupported by the hardware, try other formats */
700

701
	static constexpr SampleFormat probe_formats[] = {
702 703 704 705 706
		SampleFormat::S24_P32,
		SampleFormat::S32,
		SampleFormat::S16,
		SampleFormat::S8,
		SampleFormat::UNDEFINED,
707
	};
708

709
	for (unsigned i = 0;
710
	     err == -EINVAL && probe_formats[i] != SampleFormat::UNDEFINED;
711
	     ++i) {
712 713
		const SampleFormat mpd_format = probe_formats[i];
		if (mpd_format == audio_format.format)
714
			continue;
715

716
		err = AlsaTryFormat(pcm, hwparams, mpd_format, params);
717
		if (err == 0)
718
			audio_format.format = mpd_format;
719
	}
720

721
	return err;
722 723 724
}

/**
725
 * Wrapper for snd_pcm_hw_params().
726
 *
727 728 729 730 731
 * @param buffer_time the configured buffer time, or 0 if not configured
 * @param period_time the configured period time, or 0 if not configured
 * @param audio_format an #AudioFormat to be configured (or modified)
 * by this function
 * @param params to be modified by this function
732
 */
733
static void
734 735 736
AlsaSetupHw(snd_pcm_t *pcm, snd_pcm_hw_params_t *hwparams,
	    unsigned buffer_time, unsigned period_time,
	    AudioFormat &audio_format, PcmExport::Params &params)
737 738
{
	int err;
739
	unsigned retry = MPD_ALSA_RETRY_NR;
740
	unsigned int period_time_ro = period_time;
741 742 743

configure_hw:
	/* configure HW params */
744
	err = snd_pcm_hw_params_any(pcm, hwparams);
745
	if (err < 0)
746 747
		throw FormatRuntimeError("snd_pcm_hw_params_any() failed: %s",
					 snd_strerror(-err));
748

749
	err = snd_pcm_hw_params_set_access(pcm, hwparams,
750 751
					   SND_PCM_ACCESS_RW_INTERLEAVED);
	if (err < 0)
752 753
		throw FormatRuntimeError("snd_pcm_hw_params_set_access() failed: %s",
					 snd_strerror(-err));
754

755
	err = AlsaSetupFormat(pcm, hwparams, audio_format, params);
756 757 758 759
	if (err < 0)
		throw FormatRuntimeError("Failed to configure format %s: %s",
					 sample_format_to_string(audio_format.format),
					 snd_strerror(-err));
760

761 762
	unsigned int channels = audio_format.channels;
	err = snd_pcm_hw_params_set_channels_near(pcm, hwparams,
Avuton Olrich's avatar
Avuton Olrich committed
763
						  &channels);
764 765 766 767 768
	if (err < 0)
		throw FormatRuntimeError("Failed to configure %i channels: %s",
					 (int)audio_format.channels,
					 snd_strerror(-err));

769
	audio_format.channels = (int8_t)channels;
770

771 772 773 774
	const unsigned requested_sample_rate =
		params.CalcOutputSampleRate(audio_format.sample_rate);
	unsigned output_sample_rate = requested_sample_rate;

775
	err = snd_pcm_hw_params_set_rate_near(pcm, hwparams,
776
					      &output_sample_rate, nullptr);
777 778
	if (err < 0)
		throw FormatRuntimeError("Failed to configure sample rate %u Hz: %s",
779
					 requested_sample_rate,
780
					 snd_strerror(-err));
781

782
	if (output_sample_rate == 0)
783 784
		throw FormatRuntimeError("Failed to configure sample rate %u Hz",
					 audio_format.sample_rate);
785

786 787
	if (output_sample_rate != requested_sample_rate)
		audio_format.sample_rate = params.CalcInputSampleRate(output_sample_rate);
788

789 790 791 792 793 794
	snd_pcm_uframes_t buffer_size_min, buffer_size_max;
	snd_pcm_hw_params_get_buffer_size_min(hwparams, &buffer_size_min);
	snd_pcm_hw_params_get_buffer_size_max(hwparams, &buffer_size_max);
	unsigned buffer_time_min, buffer_time_max;
	snd_pcm_hw_params_get_buffer_time_min(hwparams, &buffer_time_min, 0);
	snd_pcm_hw_params_get_buffer_time_max(hwparams, &buffer_time_max, 0);
795 796 797
	FormatDebug(alsa_output_domain, "buffer: size=%u..%u time=%u..%u",
		    (unsigned)buffer_size_min, (unsigned)buffer_size_max,
		    buffer_time_min, buffer_time_max);
798 799 800 801 802 803 804

	snd_pcm_uframes_t period_size_min, period_size_max;
	snd_pcm_hw_params_get_period_size_min(hwparams, &period_size_min, 0);
	snd_pcm_hw_params_get_period_size_max(hwparams, &period_size_max, 0);
	unsigned period_time_min, period_time_max;
	snd_pcm_hw_params_get_period_time_min(hwparams, &period_time_min, 0);
	snd_pcm_hw_params_get_period_time_max(hwparams, &period_time_max, 0);
805 806 807
	FormatDebug(alsa_output_domain, "period: size=%u..%u time=%u..%u",
		    (unsigned)period_size_min, (unsigned)period_size_max,
		    period_time_min, period_time_max);
808

809 810
	if (buffer_time > 0) {
		err = snd_pcm_hw_params_set_buffer_time_near(pcm, hwparams,
811
							     &buffer_time, nullptr);
812
		if (err < 0)
813 814
			throw FormatRuntimeError("snd_pcm_hw_params_set_buffer_time_near() failed: %s",
						 snd_strerror(-err));
815 816
	} else {
		err = snd_pcm_hw_params_get_buffer_time(hwparams, &buffer_time,
817
							nullptr);
818 819
		if (err < 0)
			buffer_time = 0;
820
	}
821

822 823 824
	if (period_time_ro == 0 && buffer_time >= 10000) {
		period_time_ro = period_time = buffer_time / 4;

825 826 827
		FormatDebug(alsa_output_domain,
			    "default period_time = buffer_time/4 = %u/4 = %u",
			    buffer_time, period_time);
828 829
	}

830 831
	if (period_time_ro > 0) {
		period_time = period_time_ro;
832
		err = snd_pcm_hw_params_set_period_time_near(pcm, hwparams,
833
							     &period_time, nullptr);
834
		if (err < 0)
835 836
			throw FormatRuntimeError("snd_pcm_hw_params_set_period_time_near() failed: %s",
						 snd_strerror(-err));
837
	}
838

839
	err = snd_pcm_hw_params(pcm, hwparams);
840
	if (err == -EPIPE && --retry > 0 && period_time_ro > 0) {
841
		period_time_ro = period_time_ro >> 1;
842 843
		goto configure_hw;
	} else if (err < 0)
844 845
		throw FormatRuntimeError("snd_pcm_hw_params() failed: %s",
					 snd_strerror(-err));
846
	if (retry != MPD_ALSA_RETRY_NR)
847 848
		FormatDebug(alsa_output_domain,
			    "ALSA period_time set to %d", period_time);
849 850
}

851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882
/**
 * Wrapper for snd_pcm_sw_params().
 */
static void
AlsaSetupSw(snd_pcm_t *pcm, snd_pcm_uframes_t start_threshold,
	    snd_pcm_uframes_t avail_min)
{
	snd_pcm_sw_params_t *swparams;
	snd_pcm_sw_params_alloca(&swparams);

	int err = snd_pcm_sw_params_current(pcm, swparams);
	if (err < 0)
		throw FormatRuntimeError("snd_pcm_sw_params_current() failed: %s",
					 snd_strerror(-err));

	err = snd_pcm_sw_params_set_start_threshold(pcm, swparams,
						    start_threshold);
	if (err < 0)
		throw FormatRuntimeError("snd_pcm_sw_params_set_start_threshold() failed: %s",
					 snd_strerror(-err));

	err = snd_pcm_sw_params_set_avail_min(pcm, swparams, avail_min);
	if (err < 0)
		throw FormatRuntimeError("snd_pcm_sw_params_set_avail_min() failed: %s",
					 snd_strerror(-err));

	err = snd_pcm_sw_params(pcm, swparams);
	if (err < 0)
		throw FormatRuntimeError("snd_pcm_sw_params() failed: %s",
					 snd_strerror(-err));
}

883 884 885
inline void
AlsaOutput::Setup(AudioFormat &audio_format,
		  PcmExport::Params &params)
886 887 888 889
{
	snd_pcm_hw_params_t *hwparams;
	snd_pcm_hw_params_alloca(&hwparams);

890 891
	AlsaSetupHw(pcm, hwparams,
		    buffer_time, period_time,
892 893 894 895 896 897 898
		    audio_format, params);

	snd_pcm_format_t format;
	if (snd_pcm_hw_params_get_format(hwparams, &format) == 0)
		FormatDebug(alsa_output_domain,
			    "format=%s (%s)", snd_pcm_format_name(format),
			    snd_pcm_format_description(format));
899

900
	snd_pcm_uframes_t alsa_buffer_size;
901
	int err = snd_pcm_hw_params_get_buffer_size(hwparams, &alsa_buffer_size);
Avuton Olrich's avatar
Avuton Olrich committed
902
	if (err < 0)
903 904
		throw FormatRuntimeError("snd_pcm_hw_params_get_buffer_size() failed: %s",
					 snd_strerror(-err));
905

906
	snd_pcm_uframes_t alsa_period_size;
907
	err = snd_pcm_hw_params_get_period_size(hwparams, &alsa_period_size,
908
						nullptr);
Avuton Olrich's avatar
Avuton Olrich committed
909
	if (err < 0)
910 911
		throw FormatRuntimeError("snd_pcm_hw_params_get_period_size() failed: %s",
					 snd_strerror(-err));
912

913
	AlsaSetupSw(pcm, alsa_buffer_size - alsa_period_size,
914
		    alsa_period_size);
Avuton Olrich's avatar
Avuton Olrich committed
915

916 917
	FormatDebug(alsa_output_domain, "buffer_size=%u period_size=%u",
		    (unsigned)alsa_buffer_size, (unsigned)alsa_period_size);
918

919 920 921 922 923 924 925 926
	if (alsa_period_size == 0)
		/* this works around a SIGFPE bug that occurred when
		   an ALSA driver indicated period_size==0; this
		   caused a division by zero in alsa_play().  By using
		   the fallback "1", we make sure that this won't
		   happen again. */
		alsa_period_size = 1;

927
	period_frames = alsa_period_size;
928

929 930
	silence = new uint8_t[snd_pcm_frames_to_bytes(pcm, alsa_period_size)];
	snd_pcm_format_set_silence(format, silence,
931
				   alsa_period_size * audio_format.channels);
932

933 934
}

935 936
#ifdef ENABLE_DSD

937
inline void
938
AlsaOutput::SetupDop(const AudioFormat audio_format,
939
		     PcmExport::Params &params)
940
{
941
	assert(dop);
942
	assert(audio_format.format == SampleFormat::DSD);
943

944
	/* pass 24 bit to AlsaSetup() */
945

946 947
	AudioFormat dop_format = audio_format;
	dop_format.format = SampleFormat::S24_P32;
948

949
	const AudioFormat check = dop_format;
950

951
	Setup(dop_format, params);
952

953
	/* if the device allows only 32 bit, shift all DoP
954 955 956 957
	   samples left by 8 bit and leave the lower 8 bit cleared;
	   the DSD-over-USB documentation does not specify whether
	   this is legal, but there is anecdotical evidence that this
	   is possible (and the only option for some devices) */
958
	params.shift8 = dop_format.format == SampleFormat::S32;
959 960
	if (dop_format.format == SampleFormat::S32)
		dop_format.format = SampleFormat::S24_P32;
961

962
	if (dop_format != check) {
963 964
		/* no bit-perfect playback, which is required
		   for DSD over USB */
965
		delete[] silence;
966
		throw std::runtime_error("Failed to configure DSD-over-PCM");
967 968 969
	}
}

970 971
#endif

972 973
inline void
AlsaOutput::SetupOrDop(AudioFormat &audio_format, PcmExport::Params &params)
974
{
975
#ifdef ENABLE_DSD
976 977 978 979
	std::exception_ptr dop_error;
	if (dop && audio_format.format == SampleFormat::DSD) {
		try {
			params.dop = true;
980
			SetupDop(audio_format, params);
981 982 983
			return;
		} catch (...) {
			dop_error = std::current_exception();
984
			params.dop = false;
985
		}
986
	}
987

988 989
	try {
#endif
990
		Setup(audio_format, params);
991
#ifdef ENABLE_DSD
992 993 994 995 996 997 998 999 1000
	} catch (...) {
		if (dop_error)
			/* if DoP was attempted, prefer returning the
			   original DoP error instead of the fallback
			   error */
			std::rethrow_exception(dop_error);
		else
			throw;
	}
1001
#endif
1002 1003
}

1004 1005 1006 1007 1008 1009 1010 1011
static constexpr bool
MaybeDmix(snd_pcm_type_t type)
{
	return type == SND_PCM_TYPE_DMIX || type == SND_PCM_TYPE_PLUG;
}

gcc_pure
static bool
1012
MaybeDmix(snd_pcm_t *pcm) noexcept
1013 1014 1015 1016
{
	return MaybeDmix(snd_pcm_type(pcm));
}

1017 1018
inline void
AlsaOutput::Open(AudioFormat &audio_format)
1019
{
1020 1021
	int err = snd_pcm_open(&pcm, GetDevice(),
			       SND_PCM_STREAM_PLAYBACK, mode);
1022 1023 1024
	if (err < 0)
		throw FormatRuntimeError("Failed to open ALSA device \"%s\": %s",
					 GetDevice(), snd_strerror(err));
1025

1026
	FormatDebug(alsa_output_domain, "opened %s type=%s",
1027 1028
		    snd_pcm_name(pcm),
		    snd_pcm_type_name(snd_pcm_type(pcm)));
1029

1030 1031 1032
	PcmExport::Params params;
	params.alsa_channel_order = true;

1033 1034 1035
	try {
		SetupOrDop(audio_format, params);
	} catch (...) {
1036
		snd_pcm_close(pcm);
1037 1038
		std::throw_with_nested(FormatRuntimeError("Error opening ALSA device \"%s\"",
							  GetDevice()));
1039 1040
	}

1041 1042 1043
	work_around_drain_bug = MaybeDmix(pcm) &&
		GetRuntimeAlsaVersion() < MakeAlsaVersion(1, 1, 4);

1044 1045
	snd_pcm_nonblock(pcm, 1);

1046 1047 1048 1049 1050
#ifdef ENABLE_DSD
	if (params.dop)
		FormatDebug(alsa_output_domain, "DoP (DSD over PCM) enabled");
#endif

1051 1052 1053 1054
	pcm_export->Open(audio_format.format,
			 audio_format.channels,
			 params);

1055 1056
	in_frame_size = audio_format.GetFrameSize();
	out_frame_size = pcm_export->GetFrameSize(audio_format);
1057

1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
	drain = false;

	size_t period_size = period_frames * out_frame_size;
	ring_buffer = new boost::lockfree::spsc_queue<uint8_t>(period_size * 4);

	/* reserve space for one more (partial) frame, to be able to
	   fill the buffer with silence, after moving an unfinished
	   frame to the end */
	period_buffer.Allocate(period_frames, out_frame_size);

	active = false;
1069
	must_prepare = false;
1070 1071
}

1072 1073
inline int
AlsaOutput::Recover(int err)
Avuton Olrich's avatar
Avuton Olrich committed
1074 1075
{
	if (err == -EPIPE) {
1076
		FormatDebug(alsa_output_domain,
1077 1078
			    "Underrun on ALSA device \"%s\"",
			    GetDevice());
Avuton Olrich's avatar
Avuton Olrich committed
1079
	} else if (err == -ESTRPIPE) {
1080 1081
		FormatDebug(alsa_output_domain,
			    "ALSA device \"%s\" was suspended",
1082
			    GetDevice());
1083 1084
	}

1085
	switch (snd_pcm_state(pcm)) {
Warren Dukes's avatar
Warren Dukes committed
1086
	case SND_PCM_STATE_PAUSED:
1087
		err = snd_pcm_pause(pcm, /* disable */ 0);
Warren Dukes's avatar
Warren Dukes committed
1088 1089
		break;
	case SND_PCM_STATE_SUSPENDED:
1090
		err = snd_pcm_resume(pcm);
1091 1092 1093
		if (err == -EAGAIN)
			return 0;
		/* fall-through to snd_pcm_prepare: */
1094 1095 1096
#if GCC_CHECK_VERSION(7,0)
		[[fallthrough]];
#endif
1097
	case SND_PCM_STATE_OPEN:
1098 1099
	case SND_PCM_STATE_SETUP:
	case SND_PCM_STATE_XRUN:
1100
		period_buffer.Rewind();
1101
		err = snd_pcm_prepare(pcm);
Warren Dukes's avatar
Warren Dukes committed
1102
		break;
1103 1104
	case SND_PCM_STATE_DISCONNECTED:
		break;
Max Kellermann's avatar
Max Kellermann committed
1105
	/* this is no error, so just keep running */
1106
	case SND_PCM_STATE_PREPARED:
Max Kellermann's avatar
Max Kellermann committed
1107
	case SND_PCM_STATE_RUNNING:
1108
	case SND_PCM_STATE_DRAINING:
Max Kellermann's avatar
Max Kellermann committed
1109 1110
		err = 0;
		break;
1111 1112 1113 1114 1115
	}

	return err;
}

1116 1117
inline bool
AlsaOutput::DrainInternal()
1118
{
1119 1120 1121 1122
	if (snd_pcm_state(pcm) != SND_PCM_STATE_RUNNING) {
		CancelInternal();
		return true;
	}
1123

1124 1125 1126 1127 1128
	/* drain ring_buffer */
	CopyRingToPeriodBuffer();

	auto period_position = period_buffer.GetPeriodPosition(out_frame_size);
	if (period_position > 0)
1129 1130
		/* generate some silence to finish the partial
		   period */
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145
		period_buffer.FillWithSilence(silence, out_frame_size);

	/* drain period_buffer */
	if (!period_buffer.IsEmpty()) {
		auto frames_written = WriteFromPeriodBuffer();
		if (frames_written < 0 && errno != EAGAIN) {
			CancelInternal();
			return true;
		}

		if (!period_buffer.IsEmpty())
			/* need to call WriteFromPeriodBuffer() again
			   in the next iteration, so don't finish the
			   drain just yet */
			return false;
1146 1147
	}

1148
	/* .. and finally drain the ALSA hardware buffer */
1149 1150 1151 1152 1153 1154 1155 1156

	if (work_around_drain_bug) {
		snd_pcm_nonblock(pcm, 0);
		bool result = snd_pcm_drain(pcm) != -EAGAIN;
		snd_pcm_nonblock(pcm, 1);
		return result;
	}

1157 1158
	return snd_pcm_drain(pcm) != -EAGAIN;
}
1159

1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
inline void
AlsaOutput::Drain()
{
	const std::lock_guard<Mutex> lock(mutex);

	drain = true;

	UnlockActivate();

	while (drain && !error)
		cond.wait(mutex);
1171 1172
}

1173
inline void
1174
AlsaOutput::CancelInternal()
Avuton Olrich's avatar
Avuton Olrich committed
1175
{
1176
	must_prepare = true;
1177

1178
	snd_pcm_drop(pcm);
1179 1180

	pcm_export->Reset();
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
	period_buffer.Clear();
	ClearRingBuffer();
}

inline void
AlsaOutput::Cancel()
{
	if (!active) {
		/* early cancel, quick code path without thread
		   synchronization */

		pcm_export->Reset();
		assert(period_buffer.IsEmpty());
		ClearRingBuffer();

		return;
	}

	BlockingCall(MultiSocketMonitor::GetEventLoop(), [this](){
			CancelInternal();
		});
1202 1203
}

1204 1205
inline void
AlsaOutput::Close()
Avuton Olrich's avatar
Avuton Olrich committed
1206
{
1207 1208 1209 1210 1211 1212 1213 1214
	/* make sure the I/O thread isn't inside DispatchSockets() */
	BlockingCall(MultiSocketMonitor::GetEventLoop(), [this](){
			MultiSocketMonitor::Reset();
			DeferredMonitor::Cancel();
		});

	period_buffer.Free();
	delete ring_buffer;
1215 1216
	snd_pcm_close(pcm);
	delete[] silence;
1217 1218
}

1219
inline size_t
1220
AlsaOutput::Play(const void *chunk, size_t size)
1221
{
1222 1223
	assert(size > 0);
	assert(size % in_frame_size == 0);
1224

1225 1226 1227 1228 1229 1230 1231 1232 1233
	const auto e = pcm_export->Export({chunk, size});
	if (e.size == 0)
		/* the DoP (DSD over PCM) filter converts two frames
		   at a time and ignores the last odd frame; if there
		   was only one frame (e.g. the last frame in the
		   file), the result is empty; to avoid an endless
		   loop, bail out here, and pretend the one frame has
		   been played */
		return size;
1234

1235
	const std::lock_guard<Mutex> lock(mutex);
1236 1237

	while (true) {
1238 1239 1240
		if (error)
			std::rethrow_exception(error);

1241 1242
		size_t bytes_written = ring_buffer->push((const uint8_t *)e.data,
							 e.size);
1243 1244 1245 1246 1247 1248 1249 1250
		if (bytes_written > 0)
			return pcm_export->CalcSourceSize(bytes_written);

		/* now that the ring_buffer is full, we can activate
		   the socket handlers to trigger the first
		   snd_pcm_writei() */
		UnlockActivate();

1251 1252 1253 1254 1255 1256
		/* check the error again, because a new one may have
		   been set while our mutex was unlocked in
		   UnlockActivate() */
		if (error)
			std::rethrow_exception(error);

1257 1258 1259 1260 1261
		/* wait for the DispatchSockets() to make room in the
		   ring_buffer */
		cond.wait(mutex);
	}
}
1262

1263 1264 1265 1266 1267 1268
std::chrono::steady_clock::duration
AlsaOutput::PrepareSockets()
{
	if (LockHasError()) {
		ClearSocketList();
		return std::chrono::steady_clock::duration(-1);
1269 1270
	}

1271
	return PrepareAlsaPcmSockets(*this, pcm, pfd_buffer);
1272 1273
}

1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
void
AlsaOutput::DispatchSockets()
try {
	{
		const std::lock_guard<Mutex> lock(mutex);
		if (drain) {
			{
				ScopeUnlock unlock(mutex);
				if (!DrainInternal())
					return;

				MultiSocketMonitor::InvalidateSockets();
			}

			drain = false;
			cond.signal();
			return;
		}
	}
1293

1294 1295
	if (must_prepare) {
		must_prepare = false;
1296

1297
		int err = snd_pcm_prepare(pcm);
1298 1299 1300
		if (err < 0)
			throw FormatRuntimeError("snd_pcm_prepare() failed: %s",
						 snd_strerror(-err));
1301 1302
	}

1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
	CopyRingToPeriodBuffer();

	if (period_buffer.IsEmpty())
		/* insert some silence if the buffer has not enough
		   data yet, to avoid ALSA xrun */
		period_buffer.FillWithSilence(silence, out_frame_size);

	auto frames_written = WriteFromPeriodBuffer();
	if (frames_written < 0) {
		if (frames_written == -EAGAIN || frames_written == -EINTR)
			/* try again in the next DispatchSockets()
			   call which is still scheduled */
			return;

		if (Recover(frames_written) < 0)
			throw FormatRuntimeError("snd_pcm_writei() failed: %s",
						 snd_strerror(-frames_written));

		/* recovered; try again in the next DispatchSockets()
		   call */
		return;
	}
} catch (const std::runtime_error &) {
	MultiSocketMonitor::Reset();
Max Kellermann's avatar
Max Kellermann committed
1327

1328 1329 1330
	const std::lock_guard<Mutex> lock(mutex);
	error = std::current_exception();
	cond.signal();
1331 1332
}

1333 1334
typedef AudioOutputWrapper<AlsaOutput> Wrapper;

1335
const struct AudioOutputPlugin alsa_output_plugin = {
1336 1337
	"alsa",
	alsa_test_default_device,
1338 1339 1340 1341 1342 1343
	&Wrapper::Init,
	&Wrapper::Finish,
	&Wrapper::Enable,
	&Wrapper::Disable,
	&Wrapper::Open,
	&Wrapper::Close,
1344 1345
	nullptr,
	nullptr,
1346 1347 1348
	&Wrapper::Play,
	&Wrapper::Drain,
	&Wrapper::Cancel,
1349 1350 1351
	nullptr,

	&alsa_mixer_plugin,
1352
};