2008-09-24 07:20:26 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* Copyright (C) 2008 Max Kellermann <max@duempel.org>
|
|
|
|
* This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "output_thread.h"
|
|
|
|
#include "output_api.h"
|
2008-09-24 07:20:55 +02:00
|
|
|
#include "output_internal.h"
|
2008-09-24 07:20:26 +02:00
|
|
|
|
2008-11-25 17:47:46 +01:00
|
|
|
#include <glib.h>
|
2009-02-25 19:53:38 +01:00
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <assert.h>
|
2008-11-25 17:47:46 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
2008-10-08 10:49:29 +02:00
|
|
|
|
2009-02-25 19:53:38 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "output"
|
|
|
|
|
2008-10-29 22:32:50 +01:00
|
|
|
enum {
|
|
|
|
/** after a failure, wait this number of seconds before
|
|
|
|
automatically reopening the device */
|
|
|
|
REOPEN_AFTER = 10,
|
|
|
|
};
|
|
|
|
|
2008-09-24 07:20:26 +02:00
|
|
|
static void ao_command_finished(struct audio_output *ao)
|
|
|
|
{
|
|
|
|
assert(ao->command != AO_COMMAND_NONE);
|
|
|
|
ao->command = AO_COMMAND_NONE;
|
|
|
|
notify_signal(&audio_output_client_notify);
|
|
|
|
}
|
|
|
|
|
2009-02-10 22:09:07 +01:00
|
|
|
static void
|
|
|
|
ao_close(struct audio_output *ao)
|
|
|
|
{
|
|
|
|
assert(ao->open);
|
|
|
|
|
2009-02-16 01:38:10 +01:00
|
|
|
ao_plugin_close(ao->plugin, ao->data);
|
2009-02-10 22:09:07 +01:00
|
|
|
pcm_convert_deinit(&ao->convert_state);
|
|
|
|
ao->open = false;
|
|
|
|
}
|
|
|
|
|
2008-09-24 07:20:26 +02:00
|
|
|
static void ao_play(struct audio_output *ao)
|
|
|
|
{
|
|
|
|
const char *data = ao->args.play.data;
|
|
|
|
size_t size = ao->args.play.size;
|
|
|
|
|
2008-11-02 20:16:56 +01:00
|
|
|
assert(size > 0);
|
2009-02-26 21:02:39 +01:00
|
|
|
assert(size % audio_format_frame_size(&ao->in_audio_format) == 0);
|
2008-11-02 20:16:56 +01:00
|
|
|
|
2009-02-10 21:50:51 +01:00
|
|
|
if (!audio_format_equals(&ao->in_audio_format, &ao->out_audio_format)) {
|
|
|
|
data = pcm_convert(&ao->convert_state,
|
|
|
|
&ao->in_audio_format, data, size,
|
|
|
|
&ao->out_audio_format, &size);
|
2008-09-24 07:20:26 +02:00
|
|
|
|
2008-12-24 03:08:39 +01:00
|
|
|
/* under certain circumstances, pcm_convert() may
|
|
|
|
return an empty buffer - this condition should be
|
|
|
|
investigated further, but for now, do this check as
|
|
|
|
a workaround: */
|
2009-01-17 13:11:16 +01:00
|
|
|
if (data == NULL)
|
2008-12-24 03:08:39 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-02-23 09:29:56 +01:00
|
|
|
while (size > 0) {
|
|
|
|
size_t nbytes;
|
|
|
|
|
|
|
|
nbytes = ao_plugin_play(ao->plugin, ao->data, data, size);
|
|
|
|
if (nbytes == 0) {
|
|
|
|
/* play()==0 means failure */
|
|
|
|
ao_plugin_cancel(ao->plugin, ao->data);
|
|
|
|
ao_close(ao);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(nbytes <= size);
|
|
|
|
assert(nbytes % audio_format_frame_size(&ao->out_audio_format) == 0);
|
|
|
|
|
|
|
|
data += nbytes;
|
|
|
|
size -= nbytes;
|
2008-10-29 20:40:33 +01:00
|
|
|
}
|
|
|
|
|
2008-09-24 07:20:26 +02:00
|
|
|
ao_command_finished(ao);
|
|
|
|
}
|
|
|
|
|
2008-09-29 16:43:55 +02:00
|
|
|
static void ao_pause(struct audio_output *ao)
|
|
|
|
{
|
2009-02-16 01:38:10 +01:00
|
|
|
bool ret;
|
|
|
|
|
|
|
|
ao_plugin_cancel(ao->plugin, ao->data);
|
|
|
|
ao_command_finished(ao);
|
|
|
|
|
|
|
|
do {
|
|
|
|
ret = ao_plugin_pause(ao->plugin, ao->data);
|
|
|
|
if (!ret) {
|
|
|
|
ao_close(ao);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (ao->command == AO_COMMAND_NONE);
|
2008-09-29 16:43:55 +02:00
|
|
|
}
|
|
|
|
|
2008-12-28 22:09:42 +01:00
|
|
|
static gpointer audio_output_task(gpointer arg)
|
2008-09-24 07:20:26 +02:00
|
|
|
{
|
|
|
|
struct audio_output *ao = arg;
|
2008-10-29 22:34:37 +01:00
|
|
|
bool ret;
|
2008-09-24 07:20:26 +02:00
|
|
|
|
|
|
|
while (1) {
|
|
|
|
switch (ao->command) {
|
|
|
|
case AO_COMMAND_NONE:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_COMMAND_OPEN:
|
|
|
|
assert(!ao->open);
|
2009-01-07 22:20:30 +01:00
|
|
|
|
2009-02-16 01:38:10 +01:00
|
|
|
ret = ao_plugin_open(ao->plugin, ao->data,
|
|
|
|
&ao->out_audio_format);
|
2008-09-24 07:20:36 +02:00
|
|
|
|
|
|
|
assert(!ao->open);
|
2009-02-10 22:07:59 +01:00
|
|
|
if (ret) {
|
|
|
|
pcm_convert_init(&ao->convert_state);
|
2008-10-29 20:40:27 +01:00
|
|
|
ao->open = true;
|
2009-02-10 22:07:59 +01:00
|
|
|
} else
|
2008-10-29 22:32:50 +01:00
|
|
|
ao->reopen_after = time(NULL) + REOPEN_AFTER;
|
2008-09-24 07:20:36 +02:00
|
|
|
|
2008-09-24 07:20:26 +02:00
|
|
|
ao_command_finished(ao);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_COMMAND_CLOSE:
|
|
|
|
assert(ao->open);
|
2009-01-07 22:20:30 +01:00
|
|
|
|
2009-02-16 01:38:10 +01:00
|
|
|
ao_plugin_cancel(ao->plugin, ao->data);
|
2009-02-10 22:09:07 +01:00
|
|
|
ao_close(ao);
|
2008-09-24 07:20:26 +02:00
|
|
|
ao_command_finished(ao);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_COMMAND_PLAY:
|
|
|
|
ao_play(ao);
|
|
|
|
break;
|
|
|
|
|
2008-09-29 16:43:55 +02:00
|
|
|
case AO_COMMAND_PAUSE:
|
|
|
|
ao_pause(ao);
|
|
|
|
break;
|
|
|
|
|
2008-09-24 07:20:26 +02:00
|
|
|
case AO_COMMAND_CANCEL:
|
2009-02-16 01:38:10 +01:00
|
|
|
ao_plugin_cancel(ao->plugin, ao->data);
|
2008-09-24 07:20:26 +02:00
|
|
|
ao_command_finished(ao);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_COMMAND_SEND_TAG:
|
2009-02-16 01:38:10 +01:00
|
|
|
ao_plugin_send_tag(ao->plugin, ao->data, ao->args.tag);
|
2008-09-24 07:20:26 +02:00
|
|
|
ao_command_finished(ao);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_COMMAND_KILL:
|
|
|
|
ao_command_finished(ao);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
notify_wait(&ao->notify);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void audio_output_thread_start(struct audio_output *ao)
|
|
|
|
{
|
2009-01-04 19:51:54 +01:00
|
|
|
GError *e = NULL;
|
2008-09-24 07:20:26 +02:00
|
|
|
|
|
|
|
assert(ao->command == AO_COMMAND_NONE);
|
|
|
|
|
2009-01-07 23:55:13 +01:00
|
|
|
if (!(ao->thread = g_thread_create(audio_output_task, ao, true, &e)))
|
2008-12-28 22:09:42 +01:00
|
|
|
g_error("Failed to spawn output task: %s\n", e->message);
|
2008-09-24 07:20:26 +02:00
|
|
|
}
|