WavpackDecoderPlugin.cxx 13 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
Max Kellermann's avatar
Max Kellermann committed
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 "WavpackDecoderPlugin.hxx"
22
#include "../DecoderAPI.hxx"
Max Kellermann's avatar
Max Kellermann committed
23
#include "input/InputStream.hxx"
24
#include "CheckAudioFormat.hxx"
25
#include "tag/Handler.hxx"
26
#include "fs/Path.hxx"
27
#include "util/Macros.hxx"
28
#include "util/Alloc.hxx"
29
#include "util/ScopeExit.hxx"
30
#include "util/RuntimeError.hxx"
31 32

#include <wavpack/wavpack.h>
Max Kellermann's avatar
Max Kellermann committed
33

34
#include <stdexcept>
35
#include <memory>
36

37 38
#include <cstdlib>

Max Kellermann's avatar
Max Kellermann committed
39
#include <assert.h>
40 41 42

#define ERRORLEN 80

43 44
#ifdef OPEN_DSD_AS_PCM
/* libWavPack supports DSD since version 5 */
45 46 47
  #ifdef ENABLE_DSD
static constexpr int OPEN_DSD_FLAG = OPEN_DSD_NATIVE;
  #else
48
static constexpr int OPEN_DSD_FLAG = OPEN_DSD_AS_PCM;
49
  #endif
50 51 52 53 54
#else
/* no DSD support in this libWavPack version */
static constexpr int OPEN_DSD_FLAG = 0;
#endif

55 56 57 58 59 60 61 62 63 64 65 66 67
static WavpackContext *
WavpackOpenInput(Path path, int flags, int norm_offset)
{
	char error[ERRORLEN];
	auto *wpc = WavpackOpenFileInput(path.c_str(), error,
					 flags, norm_offset);
	if (wpc == nullptr)
		throw FormatRuntimeError("failed to open WavPack file \"%s\": %s",
					 path.c_str(), error);

	return wpc;
}

68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
#ifdef OPEN_DSD_AS_PCM

static WavpackContext *
WavpackOpenInput(WavpackStreamReader64 *reader, void *wv_id, void *wvc_id,
		 int flags, int norm_offset)
{
	char error[ERRORLEN];
	auto *wpc = WavpackOpenFileInputEx64(reader, wv_id, wvc_id, error,
					   flags, norm_offset);
	if (wpc == nullptr)
		throw FormatRuntimeError("failed to open WavPack stream: %s",
					 error);

	return wpc;
}

#else

86 87 88 89 90 91 92 93 94 95 96 97 98 99
static WavpackContext *
WavpackOpenInput(WavpackStreamReader *reader, void *wv_id, void *wvc_id,
		 int flags, int norm_offset)
{
	char error[ERRORLEN];
	auto *wpc = WavpackOpenFileInputEx(reader, wv_id, wvc_id, error,
					   flags, norm_offset);
	if (wpc == nullptr)
		throw FormatRuntimeError("failed to open WavPack stream: %s",
					 error);

	return wpc;
}

100 101
#endif

102 103
gcc_pure
static SignedSongTime
104
GetDuration(WavpackContext *wpc) noexcept
105
{
106 107 108 109 110 111 112
#ifdef OPEN_DSD_AS_PCM
	/* libWavPack 5 */
	const auto n_samples = WavpackGetNumSamples64(wpc);
	if (n_samples == -1)
		/* unknown */
		return SignedSongTime::Negative();
#else
113
	const uint32_t n_samples = WavpackGetNumSamples(wpc);
114 115 116
	if (n_samples == uint32_t(-1))
		/* unknown */
		return SignedSongTime::Negative();
117
#endif
118

119 120 121 122
	return SongTime::FromScale<uint64_t>(n_samples,
					     WavpackGetSampleRate(wpc));
}

123
/*
124
 * Convert integer samples.
125
 */
126
template<typename T>
Max Kellermann's avatar
Max Kellermann committed
127
static void
128
format_samples_int(void *buffer, uint32_t count)
129
{
130
	int32_t *src = (int32_t *)buffer;
131
	T *dst = (T *)buffer;
132 133 134 135 136 137 138 139
	/*
	 * The asserts like the following one are because we do the
	 * formatting of samples within a single buffer. The size of
	 * the output samples never can be greater than the size of
	 * the input ones. Otherwise we would have an overflow.
	 */
	static_assert(sizeof(*dst) <= sizeof(*src), "Wrong size");

140
	/* pass through and align samples */
141
	std::copy_n(src, count, dst);
142 143 144
}

/*
145
 * No conversion necessary.
146
 */
147
static void
148
format_samples_nop(gcc_unused void *buffer, gcc_unused uint32_t count)
149
{
150
	/* do nothing */
151 152
}

153 154 155
/**
 * Choose a MPD sample format from libwavpacks' number of bits.
 */
156
static SampleFormat
157 158 159 160 161
wavpack_bits_to_sample_format(bool is_float,
#if defined(OPEN_DSD_AS_PCM) && defined(ENABLE_DSD)
			      bool is_dsd,
#endif
			      int bytes_per_sample)
162 163
{
	if (is_float)
164
		return SampleFormat::FLOAT;
165

166 167 168 169 170
#if defined(OPEN_DSD_AS_PCM) && defined(ENABLE_DSD)
	if (is_dsd)
		return SampleFormat::DSD;
#endif

171 172
	switch (bytes_per_sample) {
	case 1:
173
		return SampleFormat::S8;
174 175

	case 2:
176
		return SampleFormat::S16;
177 178

	case 3:
179
		return SampleFormat::S24_P32;
180 181

	case 4:
182
		return SampleFormat::S32;
183 184

	default:
185
		return SampleFormat::UNDEFINED;
186 187 188
	}
}

189 190 191 192
/*
 * This does the main decoding thing.
 * Requires an already opened WavpackContext.
 */
193
static void
194
wavpack_decode(DecoderClient &client, WavpackContext *wpc, bool can_seek)
195
{
196
	const bool is_float = (WavpackGetMode(wpc) & MODE_FLOAT) != 0;
197 198 199 200 201
#if defined(OPEN_DSD_AS_PCM) && defined(ENABLE_DSD)
	const bool is_dsd = (WavpackGetQualifyMode(wpc) & QMODE_DSD_AUDIO) != 0;
#else
	constexpr bool is_dsd = false;
#endif
202
	SampleFormat sample_format =
203
		wavpack_bits_to_sample_format(is_float,
204 205 206
#if defined(OPEN_DSD_AS_PCM) && defined(ENABLE_DSD)
					      is_dsd,
#endif
207
					      WavpackGetBytesPerSample(wpc));
208

209 210
	auto audio_format = CheckAudioFormat(WavpackGetSampleRate(wpc),
					     sample_format,
211
					     WavpackGetReducedChannels(wpc));
212

213
	auto *format_samples = format_samples_nop;
214 215 216
	if (is_dsd)
		format_samples = format_samples_int<uint8_t>;
	else if (!is_float) {
217 218
		switch (WavpackGetBytesPerSample(wpc)) {
		case 1:
219
			format_samples = format_samples_int<int8_t>;
220 221 222
			break;

		case 2:
223
			format_samples = format_samples_int<int16_t>;
224 225 226
			break;
		}
	}
227

228
	client.Ready(audio_format, can_seek, GetDuration(wpc));
229 230

	const int output_sample_size = audio_format.GetFrameSize();
231

232
	/* wavpack gives us all kind of samples in a 32-bit space */
233
	int32_t chunk[1024];
234
	const uint32_t samples_requested = ARRAY_SIZE(chunk) /
235
		audio_format.channels;
236

237
	DecoderCommand cmd = client.GetCommand();
238 239
	while (cmd != DecoderCommand::STOP) {
		if (cmd == DecoderCommand::SEEK) {
240
			if (can_seek) {
241
				auto where = client.GetSeekFrame();
242 243 244 245 246 247
#ifdef OPEN_DSD_AS_PCM
				bool success = WavpackSeekSample64(wpc, where);
#else
				bool success = WavpackSeekSample(wpc, where);
#endif
				if (!success) {
248
					/* seek errors are fatal */
249
					client.SeekError();
250
					break;
251
				}
252 253

				client.CommandFinished();
254
			} else {
255
				client.SeekError();
256 257 258
			}
		}

259 260
		uint32_t samples_got = WavpackUnpackSamples(wpc, chunk,
							    samples_requested);
261
		if (samples_got == 0)
262 263
			break;

264 265
		int bitrate = (int)(WavpackGetInstantBitrate(wpc) / 1000 +
				    0.5);
266
		format_samples(chunk, samples_got * audio_format.channels);
267

268 269 270
		cmd = client.SubmitData(nullptr, chunk,
					samples_got * output_sample_size,
					bitrate);
271
	}
272 273 274
}

/*
275
 * #InputStream <=> WavpackStreamReader wrapper callbacks
276 277
 */

Laszlo Ashin's avatar
Laszlo Ashin committed
278
/* This struct is needed for per-stream last_byte storage. */
279
struct WavpackInput {
280
	DecoderClient *const client;
281
	InputStream &is;
Laszlo Ashin's avatar
Laszlo Ashin committed
282 283
	/* Needed for push_back_byte() */
	int last_byte;
284

285
	constexpr WavpackInput(DecoderClient *_client, InputStream &_is)
286
		:client(_client), is(_is), last_byte(EOF) {}
287 288

	int32_t ReadBytes(void *data, size_t bcount);
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 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

	InputStream::offset_type GetPos() const {
		return is.GetOffset();
	}

	int SetPosAbs(InputStream::offset_type pos) {
		try {
			is.LockSeek(pos);
			return 0;
		} catch (const std::runtime_error &) {
			return -1;
		}
	}

	int SetPosRel(InputStream::offset_type delta, int mode) {
		offset_type offset = delta;
		switch (mode) {
		case SEEK_SET:
			break;

		case SEEK_CUR:
			offset += is.GetOffset();
			break;

		case SEEK_END:
			if (!is.KnownSize())
				return -1;

			offset += is.GetSize();
			break;

		default:
			return -1;
		}

		return SetPosAbs(offset);
	}

	int PushBackByte(int c) {
		if (last_byte == EOF) {
			last_byte = c;
			return c;
		} else {
			return EOF;
		}
	}

	InputStream::offset_type GetLength() const {
		if (!is.KnownSize())
			return 0;

		return is.GetSize();
	}

	bool CanSeek() const {
		return is.IsSeekable();
	}
Max Kellermann's avatar
Max Kellermann committed
346
};
Laszlo Ashin's avatar
Laszlo Ashin committed
347

348
/**
349
 * Little wrapper for struct WavpackInput to cast from void *.
350
 */
351
static WavpackInput *
352 353 354
wpin(void *id)
{
	assert(id);
355
	return (WavpackInput *)id;
356 357
}

358
static int32_t
359
wavpack_input_read_bytes(void *id, void *data, int32_t bcount)
360 361 362 363 364 365
{
	return wpin(id)->ReadBytes(data, bcount);
}

int32_t
WavpackInput::ReadBytes(void *data, size_t bcount)
366 367 368 369
{
	uint8_t *buf = (uint8_t *)data;
	int32_t i = 0;

370 371 372
	if (last_byte != EOF) {
		*buf++ = last_byte;
		last_byte = EOF;
373 374 375
		--bcount;
		++i;
	}
376 377 378 379

	/* wavpack fails if we return a partial read, so we just wait
	   until the buffer is full */
	while (bcount > 0) {
380
		size_t nbytes = decoder_read(client, is, buf, bcount);
381
		if (nbytes == 0) {
382 383
			/* EOF, error or a decoder command */
			break;
384
		}
385 386 387 388 389 390 391

		i += nbytes;
		bcount -= nbytes;
		buf += nbytes;
	}

	return i;
392 393
}

394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
#ifdef OPEN_DSD_AS_PCM

static int64_t
wavpack_input_get_pos(void *id)
{
	WavpackInput &wpi = *wpin(id);
	return wpi.GetPos();
}

static int
wavpack_input_set_pos_abs(void *id, int64_t pos)
{
	WavpackInput &wpi = *wpin(id);
	return wpi.SetPosAbs(pos);
}

static int
wavpack_input_set_pos_rel(void *id, int64_t delta, int mode)
{
	WavpackInput &wpi = *wpin(id);
	return wpi.SetPosRel(delta, mode);
}

#else

419
static uint32_t
420
wavpack_input_get_pos(void *id)
421
{
422
	WavpackInput &wpi = *wpin(id);
423
	return wpi.GetPos();
424 425
}

426
static int
427
wavpack_input_set_pos_abs(void *id, uint32_t pos)
428
{
429
	WavpackInput &wpi = *wpin(id);
430
	return wpi.SetPosAbs(pos);
431 432
}

433
static int
434
wavpack_input_set_pos_rel(void *id, int32_t delta, int mode)
435
{
436
	WavpackInput &wpi = *wpin(id);
437
	return wpi.SetPosRel(delta, mode);
438 439
}

440 441
#endif

442
static int
443
wavpack_input_push_back_byte(void *id, int c)
444
{
445
	WavpackInput &wpi = *wpin(id);
446
	return wpi.PushBackByte(c);
447 448
}

449 450 451 452 453 454 455 456 457 458 459
#ifdef OPEN_DSD_AS_PCM

static int64_t
wavpack_input_get_length(void *id)
{
	WavpackInput &wpi = *wpin(id);
	return wpi.GetLength();
}

#else

460
static uint32_t
461
wavpack_input_get_length(void *id)
462
{
463
	WavpackInput &wpi = *wpin(id);
464
	return wpi.GetLength();
465 466
}

467 468
#endif

469
static int
470
wavpack_input_can_seek(void *id)
471
{
472
	WavpackInput &wpi = *wpin(id);
473
	return wpi.CanSeek();
474 475
}

476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
#ifdef OPEN_DSD_AS_PCM

static WavpackStreamReader64 mpd_is_reader = {
	wavpack_input_read_bytes,
	nullptr, /* write_bytes */
	wavpack_input_get_pos,
	wavpack_input_set_pos_abs,
	wavpack_input_set_pos_rel,
	wavpack_input_push_back_byte,
	wavpack_input_get_length,
	wavpack_input_can_seek,
	nullptr, /* truncate_here */
	nullptr, /* close */
};

#else

493
static WavpackStreamReader mpd_is_reader = {
494 495 496 497 498 499 500 501
	wavpack_input_read_bytes,
	wavpack_input_get_pos,
	wavpack_input_set_pos_abs,
	wavpack_input_set_pos_rel,
	wavpack_input_push_back_byte,
	wavpack_input_get_length,
	wavpack_input_can_seek,
	nullptr /* no need to write edited tags */
502 503
};

504 505
#endif

506
static InputStreamPtr
507
wavpack_open_wvc(DecoderClient &client, const char *uri)
508
{
509 510 511 512
	/*
	 * As we use dc->utf8url, this function will be bad for
	 * single files. utf8url is not absolute file path :/
	 */
513
	if (uri == nullptr)
514
		return nullptr;
515

516
	char *wvc_url = xstrcatdup(uri, "c");
517 518 519
	AtScopeExit(wvc_url) {
		free(wvc_url);
	};
520

521
	try {
522
		return client.OpenUri(uri);
523 524 525
	} catch (const std::runtime_error &) {
		return nullptr;
	}
526
}
Laszlo Ashin's avatar
Laszlo Ashin committed
527

528 529 530
/*
 * Decodes a stream.
 */
531
static void
532
wavpack_streamdecode(DecoderClient &client, InputStream &is)
533
{
534
	int open_flags = OPEN_DSD_FLAG | OPEN_NORMALIZE;
535
	bool can_seek = is.IsSeekable();
Laszlo Ashin's avatar
Laszlo Ashin committed
536

537
	std::unique_ptr<WavpackInput> wvc;
538
	auto is_wvc = wavpack_open_wvc(client, is.GetURI());
539
	if (is_wvc) {
Laszlo Ashin's avatar
Laszlo Ashin committed
540
		open_flags |= OPEN_WVC;
541
		can_seek &= is_wvc->IsSeekable();
Laszlo Ashin's avatar
Laszlo Ashin committed
542

543
		wvc.reset(new WavpackInput(&client, *is_wvc));
544
	}
545

546 547 548 549
	if (!can_seek) {
		open_flags |= OPEN_STREAMING;
	}

550
	WavpackInput isp(&client, is);
551

552 553
	auto *wpc = WavpackOpenInput(&mpd_is_reader, &isp, wvc.get(),
				     open_flags, 0);
554 555 556
	AtScopeExit(wpc) {
		WavpackCloseFile(wpc);
	};
557

558
	wavpack_decode(client, wpc, can_seek);
559 560 561
}

/*
Laszlo Ashin's avatar
Laszlo Ashin committed
562
 * Decodes a file.
563
 */
564
static void
565
wavpack_filedecode(DecoderClient &client, Path path_fs)
566
{
567 568 569
	auto *wpc = WavpackOpenInput(path_fs,
				     OPEN_DSD_FLAG | OPEN_NORMALIZE | OPEN_WVC,
				     0);
570 571 572 573
	AtScopeExit(wpc) {
		WavpackCloseFile(wpc);
	};

574
	wavpack_decode(client, wpc, true);
575 576
}

577 578 579 580 581 582 583
/*
 * Reads metainfo from the specified file.
 */
static bool
wavpack_scan_file(Path path_fs,
		  const TagHandler &handler, void *handler_ctx)
{
584
	auto *wpc = WavpackOpenInput(path_fs, OPEN_DSD_FLAG, 0);
585 586 587 588 589 590 591 592 593 594 595
	AtScopeExit(wpc) {
		WavpackCloseFile(wpc);
	};

	const auto duration = GetDuration(wpc);
	if (!duration.IsNegative())
		tag_handler_invoke_duration(handler, handler_ctx, SongTime(duration));

	return true;
}

596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
static bool
wavpack_scan_stream(InputStream &is,
		    const TagHandler &handler, void *handler_ctx)
{
	WavpackInput isp(nullptr, is);
	auto *wpc = WavpackOpenInput(&mpd_is_reader, &isp, nullptr,
				     OPEN_DSD_FLAG, 0);
	AtScopeExit(wpc) {
		WavpackCloseFile(wpc);
	};

	const auto duration = GetDuration(wpc);
	if (!duration.IsNegative())
		tag_handler_invoke_duration(handler, handler_ctx, SongTime(duration));

	return true;
}

614 615
static char const *const wavpack_suffixes[] = {
	"wv",
616
	nullptr
617 618 619 620
};

static char const *const wavpack_mime_types[] = {
	"audio/x-wavpack",
621
	nullptr
622
};
623

624
const struct DecoderPlugin wavpack_decoder_plugin = {
625 626 627 628 629 630
	"wavpack",
	nullptr,
	nullptr,
	wavpack_streamdecode,
	wavpack_filedecode,
	wavpack_scan_file,
631
	wavpack_scan_stream,
632 633 634
	nullptr,
	wavpack_suffixes,
	wavpack_mime_types
635
};