2008-09-24 07:20:55 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2008-10-31 09:19:53 +01:00
|
|
|
#ifndef MPD_OUTPUT_INTERNAL_H
|
|
|
|
#define MPD_OUTPUT_INTERNAL_H
|
2008-09-24 07:20:55 +02:00
|
|
|
|
2009-02-16 01:51:50 +01:00
|
|
|
#include "audio_format.h"
|
2009-01-07 18:53:36 +01:00
|
|
|
#include "pcm_convert.h"
|
2008-09-24 07:20:55 +02:00
|
|
|
#include "notify.h"
|
|
|
|
|
2008-10-29 22:32:50 +01:00
|
|
|
#include <time.h>
|
|
|
|
|
2009-02-16 00:43:12 +01:00
|
|
|
enum audio_output_command {
|
|
|
|
AO_COMMAND_NONE = 0,
|
|
|
|
AO_COMMAND_OPEN,
|
|
|
|
AO_COMMAND_CLOSE,
|
|
|
|
AO_COMMAND_PLAY,
|
|
|
|
AO_COMMAND_PAUSE,
|
|
|
|
AO_COMMAND_CANCEL,
|
|
|
|
AO_COMMAND_SEND_TAG,
|
|
|
|
AO_COMMAND_KILL
|
|
|
|
};
|
|
|
|
|
2008-09-24 07:20:55 +02:00
|
|
|
struct audio_output {
|
2008-09-24 07:21:46 +02:00
|
|
|
/**
|
|
|
|
* The device's configured display name.
|
|
|
|
*/
|
2008-09-24 07:20:55 +02:00
|
|
|
const char *name;
|
|
|
|
|
2008-09-24 07:21:46 +02:00
|
|
|
/**
|
|
|
|
* The plugin which implements this output device.
|
|
|
|
*/
|
2008-09-24 07:20:55 +02:00
|
|
|
const struct audio_output_plugin *plugin;
|
|
|
|
|
2008-09-24 07:21:46 +02:00
|
|
|
/**
|
|
|
|
* The plugin's internal data. It is passed to every plugin
|
|
|
|
* method.
|
|
|
|
*/
|
|
|
|
void *data;
|
|
|
|
|
2008-10-29 20:49:51 +01:00
|
|
|
/**
|
|
|
|
* Has the user enabled this device?
|
|
|
|
*/
|
|
|
|
bool enabled;
|
|
|
|
|
2008-09-24 07:21:46 +02:00
|
|
|
/**
|
|
|
|
* Is the device (already) open and functional?
|
|
|
|
*/
|
2008-10-29 20:40:27 +01:00
|
|
|
bool open;
|
2008-09-24 07:21:46 +02:00
|
|
|
|
2008-10-29 22:32:50 +01:00
|
|
|
/**
|
|
|
|
* If not zero, the device has failed, and should not be
|
|
|
|
* reopened automatically before this time stamp.
|
|
|
|
*/
|
|
|
|
time_t reopen_after;
|
|
|
|
|
2008-09-24 07:21:46 +02:00
|
|
|
/**
|
|
|
|
* The audio_format in which audio data is received from the
|
|
|
|
* player thread (which in turn receives it from the decoder).
|
|
|
|
*/
|
2009-02-10 21:50:51 +01:00
|
|
|
struct audio_format in_audio_format;
|
2008-09-24 07:21:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The audio_format which is really sent to the device. This
|
2009-02-10 21:50:51 +01:00
|
|
|
* is basically config_audio_format (if configured) or
|
|
|
|
* in_audio_format, but may have been modified by
|
2008-09-24 07:21:46 +02:00
|
|
|
* plugin->open().
|
|
|
|
*/
|
2009-02-10 21:50:51 +01:00
|
|
|
struct audio_format out_audio_format;
|
2008-09-24 07:21:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The audio_format which was configured. Only set if
|
|
|
|
* convertAudioFormat is true.
|
|
|
|
*/
|
2009-02-10 21:50:51 +01:00
|
|
|
struct audio_format config_audio_format;
|
2008-09-24 07:21:46 +02:00
|
|
|
|
2009-02-10 21:50:51 +01:00
|
|
|
struct pcm_convert_state convert_state;
|
2008-09-24 07:20:55 +02:00
|
|
|
|
2008-09-24 07:21:46 +02:00
|
|
|
/**
|
2008-12-28 22:09:42 +01:00
|
|
|
* The thread handle, or NULL if the output thread isn't
|
2008-09-24 07:21:46 +02:00
|
|
|
* running.
|
|
|
|
*/
|
2008-12-28 22:09:42 +01:00
|
|
|
GThread *thread;
|
2008-09-24 07:21:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify object for the thread.
|
|
|
|
*/
|
2008-09-24 07:20:55 +02:00
|
|
|
struct notify notify;
|
2008-09-24 07:21:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The next command to be performed by the output thread.
|
|
|
|
*/
|
2008-09-24 07:20:55 +02:00
|
|
|
enum audio_output_command command;
|
2008-09-24 07:21:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Command arguments, depending on the command.
|
|
|
|
*/
|
2008-09-24 07:20:55 +02:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
const char *data;
|
|
|
|
size_t size;
|
|
|
|
} play;
|
|
|
|
|
|
|
|
const struct tag *tag;
|
|
|
|
} args;
|
|
|
|
};
|
|
|
|
|
2008-09-24 07:21:46 +02:00
|
|
|
/**
|
|
|
|
* Notify object used by the thread's client, i.e. we will send a
|
|
|
|
* notify signal to this object, expecting the caller to wait on it.
|
|
|
|
*/
|
2008-09-24 07:20:55 +02:00
|
|
|
extern struct notify audio_output_client_notify;
|
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
static inline bool
|
2008-09-24 07:25:07 +02:00
|
|
|
audio_output_is_open(const struct audio_output *ao)
|
|
|
|
{
|
|
|
|
return ao->open;
|
|
|
|
}
|
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
static inline bool
|
2008-09-24 07:23:19 +02:00
|
|
|
audio_output_command_is_finished(const struct audio_output *ao)
|
|
|
|
{
|
|
|
|
return ao->command == AO_COMMAND_NONE;
|
|
|
|
}
|
|
|
|
|
2008-09-24 07:20:55 +02:00
|
|
|
#endif
|