audio.c 1.68 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2010 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"
Warren Dukes's avatar
Warren Dukes committed
21
#include "audio.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

29 30
#include <glib.h>

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

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

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

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

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

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