output_internal.h 4.63 KB
Newer Older
1 2 3
/*
 * Copyright (C) 2003-2009 The Music Player Daemon Project
 * http://www.musicpd.org
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.
18 19
 */

20 21
#ifndef MPD_OUTPUT_INTERNAL_H
#define MPD_OUTPUT_INTERNAL_H
22

Max Kellermann's avatar
Max Kellermann committed
23
#include "audio_format.h"
24 25

#include <glib.h>
26

27 28
#include <time.h>

29 30
enum audio_output_command {
	AO_COMMAND_NONE = 0,
31 32
	AO_COMMAND_ENABLE,
	AO_COMMAND_DISABLE,
33
	AO_COMMAND_OPEN,
34 35 36 37 38 39 40

	/**
	 * This command is invoked when the input audio format
	 * changes.
	 */
	AO_COMMAND_REOPEN,

41 42
	AO_COMMAND_CLOSE,
	AO_COMMAND_PAUSE,
43 44 45 46 47 48 49

	/**
	 * Drains the internal (hardware) buffers of the device.  This
	 * operation may take a while to complete.
	 */
	AO_COMMAND_DRAIN,

50 51 52 53
	AO_COMMAND_CANCEL,
	AO_COMMAND_KILL
};

54
struct audio_output {
55 56 57
	/**
	 * The device's configured display name.
	 */
58 59
	const char *name;

60 61 62
	/**
	 * The plugin which implements this output device.
	 */
63 64
	const struct audio_output_plugin *plugin;

65 66 67 68 69 70
	/**
	 * The plugin's internal data.  It is passed to every plugin
	 * method.
	 */
	void *data;

71 72 73 74 75 76 77
	/**
	 * The #mixer object associated with this audio output device.
	 * May be NULL if none is available, or if software volume is
	 * configured.
	 */
	struct mixer *mixer;

78 79 80 81 82
	/**
	 * Has the user enabled this device?
	 */
	bool enabled;

83 84 85 86 87 88
	/**
	 * Is this device actually enabled, i.e. the "enable" method
	 * has succeeded?
	 */
	bool really_enabled;

89 90
	/**
	 * Is the device (already) open and functional?
91 92 93 94 95
	 *
	 * This attribute may only be modified by the output thread.
	 * It is protected with #mutex: write accesses inside the
	 * output thread and read accesses outside of it may only be
	 * performed while the lock is held.
96
	 */
97
	bool open;
98

99 100 101 102 103 104
	/**
	 * Is the device paused?  i.e. the output thread is in the
	 * ao_pause() loop.
	 */
	bool pause;

105
	/**
106 107 108
	 * If not NULL, the device has failed, and this timer is used
	 * to estimate how long it should stay disabled (unless
	 * explicitly reopened with "play").
109
	 */
110
	GTimer *fail_timer;
111

112 113 114 115 116
	/**
	 * The configured audio format.
	 */
	struct audio_format config_audio_format;

117 118 119 120
	/**
	 * The audio_format in which audio data is received from the
	 * player thread (which in turn receives it from the decoder).
	 */
121
	struct audio_format in_audio_format;
122 123 124

	/**
	 * The audio_format which is really sent to the device.  This
125 126
	 * is basically config_audio_format (if configured) or
	 * in_audio_format, but may have been modified by
127 128
	 * plugin->open().
	 */
129
	struct audio_format out_audio_format;
130

131 132 133 134 135 136 137 138 139 140 141 142 143
	/**
	 * The filter object of this audio output.  This is an
	 * instance of chain_filter_plugin.
	 */
	struct filter *filter;

	/**
	 * The convert_filter_plugin instance of this audio output.
	 * It is the last item in the filter chain, and is responsible
	 * for converting the input data into the appropriate format
	 * for this audio output.
	 */
	struct filter *convert_filter;
144

145
	/**
146
	 * The thread handle, or NULL if the output thread isn't
147 148
	 * running.
	 */
149
	GThread *thread;
150 151 152 153

	/**
	 * The next command to be performed by the output thread.
	 */
154
	enum audio_output_command command;
155 156

	/**
157
	 * The music pipe which provides music chunks to be played.
158
	 */
159
	const struct music_pipe *pipe;
160

161
	/**
162
	 * This mutex protects #open, #chunk and #chunk_finished.
163 164 165
	 */
	GMutex *mutex;

166 167 168 169 170 171
	/**
	 * This condition object wakes up the output thread after
	 * #command has been set.
	 */
	GCond *cond;

172 173 174 175 176 177 178 179 180 181 182 183
	/**
	 * The #music_chunk which is currently being played.  All
	 * chunks before this one may be returned to the
	 * #music_buffer, because they are not going to be used by
	 * this output anymore.
	 */
	const struct music_chunk *chunk;

	/**
	 * Has the output finished playing #chunk?
	 */
	bool chunk_finished;
184 185
};

186 187 188 189
/**
 * 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.
 */
190 191
extern struct notify audio_output_client_notify;

192
static inline bool
193 194 195 196 197
audio_output_is_open(const struct audio_output *ao)
{
	return ao->open;
}

198
static inline bool
199 200 201 202 203
audio_output_command_is_finished(const struct audio_output *ao)
{
	return ao->command == AO_COMMAND_NONE;
}

204
#endif