audio_config.c 1.71 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2011 The Music Player Daemon Project
3
 * http://www.musicpd.org
Warren Dukes's avatar
Warren Dukes 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.
Warren Dukes's avatar
Warren Dukes committed
18 19
 */

20
#include "config.h"
21
#include "audio_config.h"
22
#include "audio_format.h"
23
#include "audio_parser.h"
24
#include "output_internal.h"
Max Kellermann's avatar
Max Kellermann committed
25
#include "output_plugin.h"
26
#include "output_all.h"
Max Kellermann's avatar
Max Kellermann committed
27
#include "conf.h"
28
#include "mpd_error.h"
29

30 31
#include <glib.h>

Max Kellermann's avatar
Max Kellermann committed
32
#include <assert.h>
33
#include <stdlib.h>
Max Kellermann's avatar
Max Kellermann committed
34

35
static struct audio_format configured_audio_format;
Warren Dukes's avatar
Warren Dukes committed
36

37 38
void getOutputAudioFormat(const struct audio_format *inAudioFormat,
			  struct audio_format *outAudioFormat)
39
{
40 41
	*outAudioFormat = *inAudioFormat;
	audio_format_mask_apply(outAudioFormat, &configured_audio_format);
42 43
}

Avuton Olrich's avatar
Avuton Olrich committed
44 45
void initAudioConfig(void)
{
46
	const struct config_param *param = config_get_param(CONF_AUDIO_OUTPUT_FORMAT);
47 48
	GError *error = NULL;
	bool ret;
49

50
	if (param == NULL)
Avuton Olrich's avatar
Avuton Olrich committed
51
		return;
52

53
	ret = audio_format_parse(&configured_audio_format, param->value,
54
				 true, &error);
55
	if (!ret)
56 57 58
		MPD_ERROR("error parsing \"%s\" at line %i: %s",
			  CONF_AUDIO_OUTPUT_FORMAT, param->line,
			  error->message);
59
}