audio_parser.c 4.39 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2011 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13
 * 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.
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 21 22 23 24
 */

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

25
#include "config.h"
26 27
#include "audio_parser.h"
#include "audio_format.h"
28
#include "audio_check.h"
29

30
#include <assert.h>
31
#include <string.h>
32 33 34 35 36 37 38 39 40 41 42
#include <stdlib.h>

/**
 * The GLib quark used for errors reported by this library.
 */
static inline GQuark
audio_parser_quark(void)
{
	return g_quark_from_static_string("audio_parser");
}

43
static bool
44
parse_sample_rate(const char *src, bool mask, uint32_t *sample_rate_r,
45
		  const char **endptr_r, GError **error_r)
46 47
{
	unsigned long value;
48
	char *endptr;
49

50 51 52 53 54 55
	if (mask && *src == '*') {
		*sample_rate_r = 0;
		*endptr_r = src + 1;
		return true;
	}

56 57
	value = strtoul(src, &endptr, 10);
	if (endptr == src) {
58
		g_set_error(error_r, audio_parser_quark(), 0,
59
			    "Failed to parse the sample rate");
60
		return false;
61
	} else if (!audio_check_sample_rate(value, error_r))
62 63
		return false;

64 65 66 67
	*sample_rate_r = value;
	*endptr_r = endptr;
	return true;
}
68

69
static bool
70 71
parse_sample_format(const char *src, bool mask,
		    enum sample_format *sample_format_r,
72 73 74 75
		    const char **endptr_r, GError **error_r)
{
	unsigned long value;
	char *endptr;
76
	enum sample_format sample_format;
77

78
	if (mask && *src == '*') {
79
		*sample_format_r = SAMPLE_FORMAT_UNDEFINED;
80 81 82 83
		*endptr_r = src + 1;
		return true;
	}

84 85
	value = strtoul(src, &endptr, 10);
	if (endptr == src) {
86
		g_set_error(error_r, audio_parser_quark(), 0,
87
			    "Failed to parse the sample format");
88
		return false;
89 90 91 92 93 94 95 96 97 98 99 100
	}

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

	case 16:
		sample_format = SAMPLE_FORMAT_S16;
		break;

	case 24:
101 102 103 104 105
		if (memcmp(endptr, "_3", 2) == 0) {
			sample_format = SAMPLE_FORMAT_S24;
			endptr += 2;
		} else
			sample_format = SAMPLE_FORMAT_S24_P32;
106 107 108 109 110 111 112 113 114
		break;

	case 32:
		sample_format = SAMPLE_FORMAT_S32;
		break;

	default:
		g_set_error(error_r, audio_parser_quark(), 0,
			    "Invalid sample format: %lu", value);
115
		return false;
116 117 118
	}

	assert(audio_valid_sample_format(sample_format));
119

120
	*sample_format_r = sample_format;
121 122 123
	*endptr_r = endptr;
	return true;
}
124

125
static bool
126
parse_channel_count(const char *src, bool mask, uint8_t *channels_r,
127 128 129 130
		    const char **endptr_r, GError **error_r)
{
	unsigned long value;
	char *endptr;
131

132 133 134 135 136 137
	if (mask && *src == '*') {
		*channels_r = 0;
		*endptr_r = src + 1;
		return true;
	}

138
	value = strtoul(src, &endptr, 10);
139 140 141 142
	if (endptr == src) {
		g_set_error(error_r, audio_parser_quark(), 0,
			    "Failed to parse the channel count");
		return false;
143
	} else if (!audio_check_channel_count(value, error_r))
144 145 146 147 148 149 150 151 152
		return false;

	*channels_r = value;
	*endptr_r = endptr;
	return true;
}

bool
audio_format_parse(struct audio_format *dest, const char *src,
153
		   bool mask, GError **error_r)
154 155
{
	uint32_t rate;
156 157
	enum sample_format sample_format;
	uint8_t channels;
158 159 160 161 162

	audio_format_clear(dest);

	/* parse sample rate */

163
	if (!parse_sample_rate(src, mask, &rate, &src, error_r))
164 165 166
		return false;

	if (*src++ != ':') {
167
		g_set_error(error_r, audio_parser_quark(), 0,
168
			    "Sample format missing");
169 170 171
		return false;
	}

172 173
	/* parse sample format */

174
	if (!parse_sample_format(src, mask, &sample_format, &src, error_r))
175 176 177 178 179 180 181 182 183 184
		return false;

	if (*src++ != ':') {
		g_set_error(error_r, audio_parser_quark(), 0,
			    "Channel count missing");
		return false;
	}

	/* parse channel count */

185
	if (!parse_channel_count(src, mask, &channels, &src, error_r))
186 187 188 189 190 191 192
		return false;

	if (*src != 0) {
		g_set_error(error_r, audio_parser_quark(), 0,
			    "Extra data after channel count: %s", src);
		return false;
	}
193

194
	audio_format_init(dest, rate, sample_format, channels);
195 196
	assert(mask ? audio_format_mask_valid(dest)
	       : audio_format_valid(dest));
197 198 199

	return true;
}