2009-03-13 18:43:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2009 The Music Player Daemon Project
|
|
|
|
* http://www.musicpd.org
|
2008-09-09 10:02:34 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2008-09-09 10:02:34 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "output_control.h"
|
|
|
|
#include "output_api.h"
|
2008-09-24 07:20:55 +02:00
|
|
|
#include "output_internal.h"
|
2008-09-09 10:02:34 +02:00
|
|
|
#include "output_list.h"
|
2009-02-11 18:00:41 +01:00
|
|
|
#include "audio_parser.h"
|
2009-03-26 18:23:23 +01:00
|
|
|
#include "mixer_control.h"
|
2009-07-06 10:01:47 +02:00
|
|
|
#include "filter_plugin.h"
|
|
|
|
#include "filter_registry.h"
|
|
|
|
#include "filter/chain_filter_plugin.h"
|
2008-09-09 10:02:34 +02:00
|
|
|
|
2008-11-25 17:47:46 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
2009-07-06 10:01:47 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
2009-02-25 19:53:38 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "output"
|
|
|
|
|
2008-09-09 10:02:34 +02:00
|
|
|
#define AUDIO_OUTPUT_TYPE "type"
|
|
|
|
#define AUDIO_OUTPUT_NAME "name"
|
|
|
|
#define AUDIO_OUTPUT_FORMAT "format"
|
|
|
|
|
2009-03-01 13:31:32 +01:00
|
|
|
static const struct audio_output_plugin *
|
2009-03-01 13:31:56 +01:00
|
|
|
audio_output_detect(GError **error)
|
2009-03-01 13:31:32 +01:00
|
|
|
{
|
|
|
|
const struct audio_output_plugin *plugin;
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
g_warning("Attempt to detect audio output device");
|
|
|
|
|
|
|
|
audio_output_plugins_for_each(plugin, i) {
|
|
|
|
if (plugin->test_default_device == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
g_warning("Attempting to detect a %s audio device",
|
|
|
|
plugin->name);
|
|
|
|
if (ao_plugin_test_default_device(plugin))
|
|
|
|
return plugin;
|
|
|
|
}
|
|
|
|
|
2009-03-01 13:31:56 +01:00
|
|
|
g_set_error(error, audio_output_quark(), 0,
|
|
|
|
"Unable to detect an audio device");
|
2009-03-01 13:31:32 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-07-05 18:44:37 +02:00
|
|
|
static struct mixer *
|
|
|
|
audio_output_load_mixer(const struct config_param *param,
|
|
|
|
const struct mixer_plugin *plugin)
|
|
|
|
{
|
|
|
|
if (!config_get_block_bool(param, "mixer_enabled", true))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (plugin == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return mixer_new(plugin, param);
|
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:56 +01:00
|
|
|
bool
|
2009-03-01 13:31:56 +01:00
|
|
|
audio_output_init(struct audio_output *ao, const struct config_param *param,
|
|
|
|
GError **error)
|
2008-09-09 10:02:34 +02:00
|
|
|
{
|
|
|
|
const struct audio_output_plugin *plugin = NULL;
|
|
|
|
|
|
|
|
if (param) {
|
2009-07-06 21:50:13 +02:00
|
|
|
const char *p;
|
2008-09-09 10:02:34 +02:00
|
|
|
|
2009-07-06 21:50:13 +02:00
|
|
|
p = config_get_block_string(param, AUDIO_OUTPUT_TYPE, NULL);
|
|
|
|
if (p == NULL) {
|
2009-03-01 13:32:42 +01:00
|
|
|
g_set_error(error, audio_output_quark(), 0,
|
|
|
|
"Missing \"type\" configuration");
|
|
|
|
return false;
|
|
|
|
}
|
2008-09-09 10:02:34 +02:00
|
|
|
|
2009-07-06 21:50:13 +02:00
|
|
|
plugin = audio_output_plugin_get(p);
|
2008-09-09 10:02:34 +02:00
|
|
|
if (plugin == NULL) {
|
2009-03-01 13:31:56 +01:00
|
|
|
g_set_error(error, audio_output_quark(), 0,
|
2009-07-06 21:50:13 +02:00
|
|
|
"No such audio output plugin: %s", p);
|
2009-03-01 13:31:56 +01:00
|
|
|
return false;
|
2008-09-09 10:02:34 +02:00
|
|
|
}
|
2009-03-01 13:32:42 +01:00
|
|
|
|
|
|
|
ao->name = config_get_block_string(param, AUDIO_OUTPUT_NAME,
|
|
|
|
NULL);
|
|
|
|
if (ao->name == NULL) {
|
|
|
|
g_set_error(error, audio_output_quark(), 0,
|
|
|
|
"Missing \"name\" configuration");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-07-06 21:50:13 +02:00
|
|
|
p = config_get_block_string(param, AUDIO_OUTPUT_FORMAT,
|
2009-03-01 13:32:42 +01:00
|
|
|
NULL);
|
2009-07-06 21:50:13 +02:00
|
|
|
ao->config_audio_format = p != NULL;
|
|
|
|
if (p != NULL) {
|
2009-07-06 21:40:43 +02:00
|
|
|
bool success =
|
|
|
|
audio_format_parse(&ao->out_audio_format,
|
2009-07-06 21:50:13 +02:00
|
|
|
p, error);
|
2009-07-06 21:40:43 +02:00
|
|
|
if (!success)
|
|
|
|
return false;
|
|
|
|
}
|
2008-09-09 10:02:34 +02:00
|
|
|
} else {
|
2008-11-25 17:47:46 +01:00
|
|
|
g_warning("No \"%s\" defined in config file\n",
|
|
|
|
CONF_AUDIO_OUTPUT);
|
2008-09-09 10:02:34 +02:00
|
|
|
|
2009-03-01 13:31:56 +01:00
|
|
|
plugin = audio_output_detect(error);
|
|
|
|
if (plugin == NULL)
|
2009-02-25 19:53:56 +01:00
|
|
|
return false;
|
2008-09-09 10:02:34 +02:00
|
|
|
|
2009-03-01 13:31:32 +01:00
|
|
|
g_message("Successfully detected a %s audio device",
|
|
|
|
plugin->name);
|
|
|
|
|
2009-03-01 13:32:42 +01:00
|
|
|
ao->name = "default detected output";
|
2009-07-06 21:40:43 +02:00
|
|
|
ao->config_audio_format = false;
|
2008-09-09 10:02:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ao->plugin = plugin;
|
2009-02-28 19:40:39 +01:00
|
|
|
ao->enabled = config_get_block_bool(param, "enabled", true);
|
2008-10-29 20:40:27 +01:00
|
|
|
ao->open = false;
|
2009-02-28 20:43:23 +01:00
|
|
|
ao->fail_timer = NULL;
|
2008-09-09 10:02:34 +02:00
|
|
|
|
2009-07-06 10:01:47 +02:00
|
|
|
/* set up the filter chain */
|
|
|
|
|
|
|
|
ao->filter = filter_chain_new();
|
|
|
|
assert(ao->filter != NULL);
|
|
|
|
|
|
|
|
ao->convert_filter = filter_new(&convert_filter_plugin, NULL, NULL);
|
|
|
|
assert(ao->convert_filter != NULL);
|
|
|
|
|
|
|
|
filter_chain_append(ao->filter, ao->convert_filter);
|
2008-09-09 10:02:34 +02:00
|
|
|
|
2008-12-28 22:09:42 +01:00
|
|
|
ao->thread = NULL;
|
2008-09-24 07:20:26 +02:00
|
|
|
notify_init(&ao->notify);
|
|
|
|
ao->command = AO_COMMAND_NONE;
|
2009-03-09 19:25:26 +01:00
|
|
|
ao->mutex = g_mutex_new();
|
2008-09-24 07:20:26 +02:00
|
|
|
|
2009-02-25 18:34:02 +01:00
|
|
|
ao->data = ao_plugin_init(plugin,
|
2009-03-20 15:47:50 +01:00
|
|
|
ao->config_audio_format
|
|
|
|
? &ao->out_audio_format : NULL,
|
2009-03-01 13:31:56 +01:00
|
|
|
param, error);
|
|
|
|
if (ao->data == NULL)
|
2009-02-25 19:53:56 +01:00
|
|
|
return false;
|
2008-09-09 10:02:34 +02:00
|
|
|
|
2009-07-05 18:44:37 +02:00
|
|
|
ao->mixer = audio_output_load_mixer(param, plugin->mixer_plugin);
|
2009-03-26 18:23:23 +01:00
|
|
|
|
2009-02-25 19:53:56 +01:00
|
|
|
return true;
|
2008-09-09 10:02:34 +02:00
|
|
|
}
|