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>
|
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
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void convertAudioFormat(struct audio_output *audioOutput,
|
|
|
|
const char **chunkArgPtr, size_t *sizeArgPtr)
|
|
|
|
{
|
2008-10-21 22:53:13 +02:00
|
|
|
size_t size = pcm_convert_size(&(audioOutput->inAudioFormat),
|
|
|
|
*sizeArgPtr,
|
|
|
|
&(audioOutput->outAudioFormat));
|
2008-09-24 07:20:26 +02:00
|
|
|
|
|
|
|
if (size > audioOutput->convBufferLen) {
|
|
|
|
if (audioOutput->convBuffer != NULL)
|
|
|
|
free(audioOutput->convBuffer);
|
2008-11-25 17:47:46 +01:00
|
|
|
audioOutput->convBuffer = g_malloc(size);
|
2008-09-24 07:20:26 +02:00
|
|
|
audioOutput->convBufferLen = size;
|
|
|
|
}
|
|
|
|
|
2008-10-21 22:53:13 +02:00
|
|
|
*sizeArgPtr = pcm_convert(&(audioOutput->inAudioFormat),
|
|
|
|
*chunkArgPtr, *sizeArgPtr,
|
|
|
|
&(audioOutput->outAudioFormat),
|
|
|
|
audioOutput->convBuffer,
|
|
|
|
&audioOutput->convState);
|
2008-09-24 07:20:26 +02:00
|
|
|
|
|
|
|
*chunkArgPtr = audioOutput->convBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ao_play(struct audio_output *ao)
|
|
|
|
{
|
|
|
|
const char *data = ao->args.play.data;
|
|
|
|
size_t size = ao->args.play.size;
|
2008-10-29 22:34:37 +01:00
|
|
|
bool ret;
|
2008-09-24 07:20:26 +02:00
|
|
|
|
2008-11-02 20:16:56 +01:00
|
|
|
assert(size > 0);
|
|
|
|
|
2008-12-24 03:08:39 +01:00
|
|
|
if (!audio_format_equals(&ao->inAudioFormat, &ao->outAudioFormat)) {
|
2008-09-24 07:20:26 +02:00
|
|
|
convertAudioFormat(ao, &data, &size);
|
|
|
|
|
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: */
|
|
|
|
if (size == 0)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-10-29 22:34:37 +01:00
|
|
|
ret = ao->plugin->play(ao->data, data, size);
|
|
|
|
if (!ret) {
|
2008-10-29 22:17:42 +01:00
|
|
|
ao->plugin->cancel(ao->data);
|
2008-10-29 20:40:33 +01:00
|
|
|
ao->plugin->close(ao->data);
|
2009-01-07 22:20:30 +01:00
|
|
|
pcm_convert_deinit(&ao->convState);
|
2008-10-29 20:40:33 +01:00
|
|
|
ao->open = false;
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2008-10-29 22:17:42 +01:00
|
|
|
ao->plugin->cancel(ao->data);
|
|
|
|
|
2008-09-29 16:43:55 +02:00
|
|
|
if (ao->plugin->pause != NULL) {
|
|
|
|
/* pause is supported */
|
|
|
|
ao_command_finished(ao);
|
|
|
|
ao->plugin->pause(ao->data);
|
|
|
|
} else {
|
|
|
|
/* pause is not supported - simply close the device */
|
|
|
|
ao->plugin->close(ao->data);
|
2008-10-29 20:40:27 +01:00
|
|
|
ao->open = false;
|
2008-09-29 16:43:55 +02:00
|
|
|
ao_command_finished(ao);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
pcm_convert_init(&ao->convState);
|
2008-10-29 22:34:37 +01:00
|
|
|
ret = ao->plugin->open(ao->data,
|
|
|
|
&ao->outAudioFormat);
|
2008-09-24 07:20:36 +02:00
|
|
|
|
|
|
|
assert(!ao->open);
|
2008-10-29 22:34:37 +01:00
|
|
|
if (ret == true)
|
2008-10-29 20:40:27 +01:00
|
|
|
ao->open = true;
|
2008-10-29 22:32:50 +01:00
|
|
|
else
|
|
|
|
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);
|
2008-10-29 22:17:42 +01:00
|
|
|
ao->plugin->cancel(ao->data);
|
2008-09-24 07:20:55 +02:00
|
|
|
ao->plugin->close(ao->data);
|
2009-01-07 22:20:30 +01:00
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
ao->open = false;
|
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:
|
2008-09-24 07:20:55 +02:00
|
|
|
ao->plugin->cancel(ao->data);
|
2008-09-24 07:20:26 +02:00
|
|
|
ao_command_finished(ao);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_COMMAND_SEND_TAG:
|
2008-09-24 07:20:55 +02:00
|
|
|
ao->plugin->send_tag(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
|
|
|
}
|