FlacPcm.cxx 2.96 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2021 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * 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.
 */

20
#include "FlacPcm.hxx"
21
#include "pcm/CheckAudioFormat.hxx"
22
#include "lib/xiph/FlacAudioFormat.hxx"
23
#include "util/RuntimeError.hxx"
24
#include "util/ConstBuffer.hxx"
25

26
#include <cassert>
27

28
void
29
FlacPcmImport::Open(unsigned sample_rate, unsigned bits_per_sample,
30
		    unsigned channels)
31
{
32
	auto sample_format = FlacSampleFormat(bits_per_sample);
33 34 35
	if (sample_format == SampleFormat::UNDEFINED)
		throw FormatRuntimeError("Unsupported FLAC bit depth: %u",
					 bits_per_sample);
36

37
	audio_format = CheckAudioFormat(sample_rate, sample_format, channels);
38 39
}

40 41 42
template<typename T>
static void
FlacImportStereo(T *dest, const FLAC__int32 *const src[], size_t n_frames)
43
{
44
	for (size_t i = 0; i != n_frames; ++i) {
45 46
		*dest++ = (T)src[0][i];
		*dest++ = (T)src[1][i];
47 48 49
	}
}

50
template<typename T>
51
static void
52 53
FlacImportAny(T *dest, const FLAC__int32 *const src[], size_t n_frames,
	      unsigned n_channels)
54
{
55
	for (size_t i = 0; i != n_frames; ++i)
56 57
		for (unsigned c = 0; c != n_channels; ++c)
			*dest++ = src[c][i];
58 59
}

60
template<typename T>
61
static void
62 63
FlacImport(T *dest, const FLAC__int32 *const src[], size_t n_frames,
	   unsigned n_channels)
64
{
65 66 67 68
	if (n_channels == 2)
		FlacImportStereo(dest, src, n_frames);
	else
		FlacImportAny(dest, src, n_frames, n_channels);
69 70
}

71 72 73 74 75 76 77 78 79 80 81 82 83 84
template<typename T>
static ConstBuffer<void>
FlacImport(PcmBuffer &buffer, const FLAC__int32 *const src[], size_t n_frames,
	   unsigned n_channels)
{
	size_t n_samples = n_frames * n_channels;
	size_t dest_size = n_samples * sizeof(T);
	T *dest = (T *)buffer.Get(dest_size);
	FlacImport(dest, src, n_frames, n_channels);
	return {dest, dest_size};
}

ConstBuffer<void>
FlacPcmImport::Import(const FLAC__int32 *const src[], size_t n_frames)
85
{
86
	switch (audio_format.format) {
87
	case SampleFormat::S16:
88 89
		return FlacImport<int16_t>(buffer, src, n_frames,
					   audio_format.channels);
90

91 92
	case SampleFormat::S24_P32:
	case SampleFormat::S32:
93 94
		return FlacImport<int32_t>(buffer, src, n_frames,
					   audio_format.channels);
95

96
	case SampleFormat::S8:
97 98
		return FlacImport<int8_t>(buffer, src, n_frames,
					  audio_format.channels);
99

100 101 102
	case SampleFormat::FLOAT:
	case SampleFormat::DSD:
	case SampleFormat::UNDEFINED:
103
		break;
104
	}
105 106 107

	assert(false);
	gcc_unreachable();
108
}