summaryrefslogtreecommitdiff
path: root/src/pcm/AudioParser.cxx
blob: d30d2b7062cad9e3c2d57337f63d542e9dfa2b27 (plain)
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
/*
 * Copyright 2003-2021 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.
 */

/*
 * Parser functions for audio related objects.
 *
 */

#include "AudioParser.hxx"
#include "AudioFormat.hxx"
#include "util/RuntimeError.hxx"

#include <cassert>

#include <string.h>
#include <stdlib.h>

static uint32_t
ParseSampleRate(const char *src, bool mask, const char **endptr_r)
{
	unsigned long value;
	char *endptr;

	if (mask && *src == '*') {
		*endptr_r = src + 1;
		return 0;
	}

	value = strtoul(src, &endptr, 10);
	if (endptr == src) {
		throw std::invalid_argument("Failed to parse the sample rate");
	} else if (!audio_valid_sample_rate(value))
		throw FormatInvalidArgument("Invalid sample rate: %lu", value);

	*endptr_r = endptr;
	return value;
}

static SampleFormat
ParseSampleFormat(const char *src, bool mask, const char **endptr_r)
{
	unsigned long value;
	char *endptr;
	SampleFormat sample_format;

	if (mask && *src == '*') {
		*endptr_r = src + 1;
		return SampleFormat::UNDEFINED;
	}

	if (*src == 'f') {
		*endptr_r = src + 1;
		return SampleFormat::FLOAT;
	}

	if (memcmp(src, "dsd", 3) == 0) {
		*endptr_r = src + 3;
		return SampleFormat::DSD;
	}

	value = strtoul(src, &endptr, 10);
	if (endptr == src)
		throw std::invalid_argument("Failed to parse the sample format");

	switch (value) {
	case 8:
		sample_format = SampleFormat::S8;
		break;

	case 16:
		sample_format = SampleFormat::S16;
		break;

	case 24:
		if (memcmp(endptr, "_3", 2) == 0)
			/* for backwards compatibility */
			endptr += 2;

		sample_format = SampleFormat::S24_P32;
		break;

	case 32:
		sample_format = SampleFormat::S32;
		break;

	default:
		throw FormatInvalidArgument("Invalid sample format: %lu",
					    value);
	}

	assert(audio_valid_sample_format(sample_format));

	*endptr_r = endptr;
	return sample_format;
}

static uint8_t
ParseChannelCount(const char *src, bool mask, const char **endptr_r)
{
	unsigned long value;
	char *endptr;

	if (mask && *src == '*') {
		*endptr_r = src + 1;
		return 0;
	}

	value = strtoul(src, &endptr, 10);
	if (endptr == src)
		throw std::invalid_argument("Failed to parse the channel count");
	else if (!audio_valid_channel_count(value))
		throw FormatInvalidArgument("Invalid channel count: %u",
					    value);

	*endptr_r = endptr;
	return value;
}

AudioFormat
ParseAudioFormat(const char *src, bool mask)
{
	AudioFormat dest;
	dest.Clear();

	if (strncmp(src, "dsd", 3) == 0) {
		/* allow format specifications such as "dsd64" which
		   implies the sample rate */

		char *endptr;
		auto dsd = strtoul(src + 3, &endptr, 10);
		if (endptr > src + 3 && *endptr == ':' &&
		    dsd >= 32 && dsd <= 4096 && dsd % 2 == 0) {
			dest.sample_rate = dsd * 44100 / 8;
			dest.format = SampleFormat::DSD;

			src = endptr + 1;
			dest.channels = ParseChannelCount(src, mask, &src);
			if (*src != 0)
				throw FormatInvalidArgument("Extra data after channel count: %s",
							    src);

			return dest;
		}
	}

	/* parse sample rate */

	dest.sample_rate = ParseSampleRate(src, mask, &src);

	if (*src++ != ':')
		throw std::invalid_argument("Sample format missing");

	/* parse sample format */

	dest.format = ParseSampleFormat(src, mask, &src);

	if (*src++ != ':')
		throw std::invalid_argument("Channel count missing");

	/* parse channel count */

	dest.channels = ParseChannelCount(src, mask, &src);

	if (*src != 0)
		throw FormatInvalidArgument("Extra data after channel count: %s",
					    src);

	assert(mask
	       ? dest.IsMaskValid()
	       : dest.IsValid());
	return dest;
}