]> code.delx.au - pulseaudio/blob - src/pulse/def.h
a7c475db865a2f08a3d064e8933ec2bae3b36f7d
[pulseaudio] / src / pulse / def.h
1 #ifndef foodefhfoo
2 #define foodefhfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of PulseAudio.
8
9 Copyright 2004-2006 Lennart Poettering
10 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
11
12 PulseAudio is free software; you can redistribute it and/or modify
13 it under the terms of the GNU Lesser General Public License as
14 published by the Free Software Foundation; either version 2.1 of the
15 License, or (at your option) any later version.
16
17 PulseAudio is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 Lesser General Public License for more details.
21
22 You should have received a copy of the GNU Lesser General Public
23 License along with PulseAudio; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
25 USA.
26 ***/
27
28 #include <inttypes.h>
29 #include <sys/time.h>
30 #include <time.h>
31
32 #include <pulse/cdecl.h>
33 #include <pulse/sample.h>
34
35 /** \file
36 * Global definitions */
37
38 PA_C_DECL_BEGIN
39
40 /** The state of a connection context */
41 typedef enum pa_context_state {
42 PA_CONTEXT_UNCONNECTED, /**< The context hasn't been connected yet */
43 PA_CONTEXT_CONNECTING, /**< A connection is being established */
44 PA_CONTEXT_AUTHORIZING, /**< The client is authorizing itself to the daemon */
45 PA_CONTEXT_SETTING_NAME, /**< The client is passing its application name to the daemon */
46 PA_CONTEXT_READY, /**< The connection is established, the context is ready to execute operations */
47 PA_CONTEXT_FAILED, /**< The connection failed or was disconnected */
48 PA_CONTEXT_TERMINATED /**< The connection was terminated cleanly */
49 } pa_context_state_t;
50
51 /** The state of a stream */
52 typedef enum pa_stream_state {
53 PA_STREAM_UNCONNECTED, /**< The stream is not yet connected to any sink or source */
54 PA_STREAM_CREATING, /**< The stream is being created */
55 PA_STREAM_READY, /**< The stream is established, you may pass audio data to it now */
56 PA_STREAM_FAILED, /**< An error occured that made the stream invalid */
57 PA_STREAM_TERMINATED /**< The stream has been terminated cleanly */
58 } pa_stream_state_t;
59
60 /** The state of an operation */
61 typedef enum pa_operation_state {
62 PA_OPERATION_RUNNING, /**< The operation is still running */
63 PA_OPERATION_DONE, /**< The operation has been completed */
64 PA_OPERATION_CANCELED /**< The operation has been canceled */
65 } pa_operation_state_t;
66
67 /** An invalid index */
68 #define PA_INVALID_INDEX ((uint32_t) -1)
69
70 /** Some special flags for contexts. \since 0.8 */
71 typedef enum pa_context_flags {
72 PA_CONTEXT_NOAUTOSPAWN = 1 /**< Disabled autospawning of the PulseAudio daemon if required */
73 } pa_context_flags_t;
74
75 /** The direction of a pa_stream object */
76 typedef enum pa_stream_direction {
77 PA_STREAM_NODIRECTION, /**< Invalid direction */
78 PA_STREAM_PLAYBACK, /**< Playback stream */
79 PA_STREAM_RECORD, /**< Record stream */
80 PA_STREAM_UPLOAD /**< Sample upload stream */
81 } pa_stream_direction_t;
82
83 /** Some special flags for stream connections. \since 0.6 */
84 typedef enum pa_stream_flags {
85 PA_STREAM_START_CORKED = 1, /**< Create the stream corked, requiring an explicit pa_stream_cork() call to uncork it. */
86 PA_STREAM_INTERPOLATE_TIMING = 2, /**< Interpolate the latency for
87 * this stream. When enabled,
88 * pa_stream_get_latency() and
89 * pa_stream_get_time() will try
90 * to estimate the current
91 * record/playback time based on
92 * the local time that passed
93 * since the last timing info
94 * update. Using this option
95 * has the advantage of not
96 * requiring a whole roundtrip
97 * when the current
98 * playback/recording time is
99 * needed. Consider using this
100 * option when requesting
101 * latency information
102 * frequently. This is
103 * especially useful on long
104 * latency network
105 * connections. It makes a lot
106 * of sense to combine this
107 * option with
108 * PA_STREAM_AUTO_TIMING_UPDATE. */
109 PA_STREAM_NOT_MONOTONOUS = 4, /**< Don't force the time to
110 * increase monotonically. If
111 * this option is enabled,
112 * pa_stream_get_time() will not
113 * necessarily return always
114 * monotonically increasing time
115 * values on each call. This may
116 * confuse applications which
117 * cannot deal with time going
118 * 'backwards', but has the
119 * advantage that bad transport
120 * latency estimations that
121 * caused the time to to jump
122 * ahead can be corrected
123 * quickly, without the need to
124 * wait. */
125 PA_STREAM_AUTO_TIMING_UPDATE = 8 /**< If set timing update requests
126 * are issued periodically
127 * automatically. Combined with
128 * PA_STREAM_INTERPOLATE_TIMING
129 * you will be able to query the
130 * current time and latency with
131 * pa_stream_get_time() and
132 * pa_stream_get_latency() at
133 * all times without a packet
134 * round trip.*/
135 } pa_stream_flags_t;
136
137 /** Playback and record buffer metrics */
138 typedef struct pa_buffer_attr {
139 uint32_t maxlength; /**< Maximum length of the buffer */
140 uint32_t tlength; /**< Playback only: target length of the buffer. The server tries to assure that at least tlength bytes are always available in the buffer */
141 uint32_t prebuf; /**< Playback only: pre-buffering. The server does not start with playback before at least prebug bytes are available in the buffer */
142 uint32_t minreq; /**< Playback only: minimum request. The server does not request less than minreq bytes from the client, instead waints until the buffer is free enough to request more bytes at once */
143 uint32_t fragsize; /**< Recording only: fragment size. The server sends data in blocks of fragsize bytes size. Large values deminish interactivity with other operations on the connection context but decrease control overhead. */
144 } pa_buffer_attr;
145
146 /** Error values as used by pa_context_errno(). Use pa_strerror() to convert these values to human readable strings */
147 enum {
148 PA_OK = 0, /**< No error */
149 PA_ERR_ACCESS, /**< Access failure */
150 PA_ERR_COMMAND, /**< Unknown command */
151 PA_ERR_INVALID, /**< Invalid argument */
152 PA_ERR_EXIST, /**< Entity exists */
153 PA_ERR_NOENTITY, /**< No such entity */
154 PA_ERR_CONNECTIONREFUSED, /**< Connection refused */
155 PA_ERR_PROTOCOL, /**< Protocol error */
156 PA_ERR_TIMEOUT, /**< Timeout */
157 PA_ERR_AUTHKEY, /**< No authorization key */
158 PA_ERR_INTERNAL, /**< Internal error */
159 PA_ERR_CONNECTIONTERMINATED, /**< Connection terminated */
160 PA_ERR_KILLED, /**< Entity killed */
161 PA_ERR_INVALIDSERVER, /**< Invalid server */
162 PA_ERR_MODINITFAILED, /**< Module initialization failed */
163 PA_ERR_BADSTATE, /**< Bad state */
164 PA_ERR_NODATA, /**< No data */
165 PA_ERR_VERSION, /**< Incompatible protocol version \since 0.8 */
166 PA_ERR_TOOLARGE, /**< Data too large \since 0.8.1 */
167 PA_ERR_NOTSUPPORTED, /**< Operation not supported \since 0.9.5 */
168 PA_ERR_MAX /**< Not really an error but the first invalid error code */
169 };
170
171 /** Subscription event mask, as used by pa_context_subscribe() */
172 typedef enum pa_subscription_mask {
173 PA_SUBSCRIPTION_MASK_NULL = 0, /**< No events */
174 PA_SUBSCRIPTION_MASK_SINK = 1, /**< Sink events */
175 PA_SUBSCRIPTION_MASK_SOURCE = 2, /**< Source events */
176 PA_SUBSCRIPTION_MASK_SINK_INPUT = 4, /**< Sink input events */
177 PA_SUBSCRIPTION_MASK_SOURCE_OUTPUT = 8, /**< Source output events */
178 PA_SUBSCRIPTION_MASK_MODULE = 16, /**< Module events */
179 PA_SUBSCRIPTION_MASK_CLIENT = 32, /**< Client events */
180 PA_SUBSCRIPTION_MASK_SAMPLE_CACHE = 64, /**< Sample cache events */
181 PA_SUBSCRIPTION_MASK_SERVER = 128, /**< Other global server changes. \since 0.4 */
182 PA_SUBSCRIPTION_MASK_AUTOLOAD = 256, /**< Autoload table events. \since 0.5 */
183 PA_SUBSCRIPTION_MASK_ALL = 511 /**< Catch all events \since 0.8 */
184 } pa_subscription_mask_t;
185
186 /** Subscription event types, as used by pa_context_subscribe() */
187 typedef enum pa_subscription_event_type {
188 PA_SUBSCRIPTION_EVENT_SINK = 0, /**< Event type: Sink */
189 PA_SUBSCRIPTION_EVENT_SOURCE = 1, /**< Event type: Source */
190 PA_SUBSCRIPTION_EVENT_SINK_INPUT = 2, /**< Event type: Sink input */
191 PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT = 3, /**< Event type: Source output */
192 PA_SUBSCRIPTION_EVENT_MODULE = 4, /**< Event type: Module */
193 PA_SUBSCRIPTION_EVENT_CLIENT = 5, /**< Event type: Client */
194 PA_SUBSCRIPTION_EVENT_SAMPLE_CACHE = 6, /**< Event type: Sample cache item */
195 PA_SUBSCRIPTION_EVENT_SERVER = 7, /**< Event type: Global server change, only occuring with PA_SUBSCRIPTION_EVENT_CHANGE. \since 0.4 */
196 PA_SUBSCRIPTION_EVENT_AUTOLOAD = 8, /**< Event type: Autoload table changes. \since 0.5 */
197 PA_SUBSCRIPTION_EVENT_FACILITY_MASK = 15, /**< A mask to extract the event type from an event value */
198
199 PA_SUBSCRIPTION_EVENT_NEW = 0, /**< A new object was created */
200 PA_SUBSCRIPTION_EVENT_CHANGE = 16, /**< A property of the object was modified */
201 PA_SUBSCRIPTION_EVENT_REMOVE = 32, /**< An object was removed */
202 PA_SUBSCRIPTION_EVENT_TYPE_MASK = 16+32 /**< A mask to extract the event operation from an event value */
203 } pa_subscription_event_type_t;
204
205 /** Return one if an event type t matches an event mask bitfield */
206 #define pa_subscription_match_flags(m, t) (!!((m) & (1 << ((t) & PA_SUBSCRIPTION_EVENT_FACILITY_MASK))))
207
208 /** A structure for all kinds of timing information of a stream. See
209 * pa_stream_update_timing_info() and pa_stream_get_timing_info(). The
210 * total output latency a sample that is written with
211 * pa_stream_write() takes to be played may be estimated by
212 * sink_usec+buffer_usec+transport_usec. (where buffer_usec is defined
213 * as pa_bytes_to_usec(write_index-read_index)) The output buffer
214 * which buffer_usec relates to may be manipulated freely (with
215 * pa_stream_write()'s seek argument, pa_stream_flush() and friends),
216 * the buffers sink_usec and source_usec relate to are first-in
217 * first-out (FIFO) buffers which cannot be flushed or manipulated in
218 * any way. The total input latency a sample that is recorded takes to
219 * be delivered to the application is:
220 * source_usec+buffer_usec+transport_usec-sink_usec. (Take care of
221 * sign issues!) When connected to a monitor source sink_usec contains
222 * the latency of the owning sink. The two latency estimations
223 * described here are implemented in pa_stream_get_latency().*/
224 typedef struct pa_timing_info {
225 struct timeval timestamp; /**< The time when this timing info structure was current */
226 int synchronized_clocks; /**< Non-zero if the local and the
227 * remote machine have synchronized
228 * clocks. If synchronized clocks are
229 * detected transport_usec becomes much
230 * more reliable. However, the code that
231 * detects synchronized clocks is very
232 * limited und unreliable itself. \since
233 * 0.5 */
234
235 pa_usec_t sink_usec; /**< Time in usecs a sample takes to be played on the sink. For playback streams and record streams connected to a monitor source. */
236 pa_usec_t source_usec; /**< Time in usecs a sample takes from being recorded to being delivered to the application. Only for record streams. \since 0.5*/
237 pa_usec_t transport_usec; /**< Estimated time in usecs a sample takes to be transferred to/from the daemon. For both playback and record streams. \since 0.5 */
238
239 int playing; /**< Non-zero when the stream is currently playing. Only for playback streams. */
240
241 int write_index_corrupt; /**< Non-zero if write_index is not
242 * up-to-date because a local write
243 * command that corrupted it has been
244 * issued in the time since this latency
245 * info was current . Only write
246 * commands with SEEK_RELATIVE_ON_READ
247 * and SEEK_RELATIVE_END can corrupt
248 * write_index. \since 0.8 */
249 int64_t write_index; /**< Current write index into the
250 * playback buffer in bytes. Think twice before
251 * using this for seeking purposes: it
252 * might be out of date a the time you
253 * want to use it. Consider using
254 * PA_SEEK_RELATIVE instead. \since
255 * 0.8 */
256
257 int read_index_corrupt; /**< Non-zero if read_index is not
258 * up-to-date because a local pause or
259 * flush request that corrupted it has
260 * been issued in the time since this
261 * latency info was current. \since 0.8 */
262
263 int64_t read_index; /**< Current read index into the
264 * playback buffer in bytes. Think twice before
265 * using this for seeking purposes: it
266 * might be out of date a the time you
267 * want to use it. Consider using
268 * PA_SEEK_RELATIVE_ON_READ
269 * instead. \since 0.8 */
270 } pa_timing_info;
271
272 /** A structure for the spawn api. This may be used to integrate auto
273 * spawned daemons into your application. For more information see
274 * pa_context_connect(). When spawning a new child process the
275 * waitpid() is used on the child's PID. The spawn routine will not
276 * block or ignore SIGCHLD signals, since this cannot be done in a
277 * thread compatible way. You might have to do this in
278 * prefork/postfork. \since 0.4 */
279 typedef struct pa_spawn_api {
280 void (*prefork)(void); /**< Is called just before the fork in the parent process. May be NULL. */
281 void (*postfork)(void); /**< Is called immediately after the fork in the parent process. May be NULL.*/
282 void (*atfork)(void); /**< Is called immediately after the
283 * fork in the child process. May be
284 * NULL. It is not safe to close all
285 * file descriptors in this function
286 * unconditionally, since a UNIX socket
287 * (created using socketpair()) is
288 * passed to the new process. */
289 } pa_spawn_api;
290
291 /** Seek type for pa_stream_write(). \since 0.8*/
292 typedef enum pa_seek_mode {
293 PA_SEEK_RELATIVE = 0, /**< Seek relatively to the write index */
294 PA_SEEK_ABSOLUTE = 1, /**< Seek relatively to the start of the buffer queue */
295 PA_SEEK_RELATIVE_ON_READ = 2, /**< Seek relatively to the read index. */
296 PA_SEEK_RELATIVE_END = 3 /**< Seek relatively to the current end of the buffer queue. */
297 } pa_seek_mode_t;
298
299 /** Special sink flags. \since 0.8 */
300 typedef enum pa_sink_flags {
301 PA_SINK_HW_VOLUME_CTRL = 1, /**< Supports hardware volume control */
302 PA_SINK_LATENCY = 2, /**< Supports latency querying */
303 PA_SINK_HARDWARE = 4, /**< Is a hardware sink of some kind, in contrast to "virtual"/software sinks \since 0.9.3 */
304 PA_SINK_NETWORK = 8 /**< Is a networked sink of some kind. \since 0.9.7 */
305 } pa_sink_flags_t;
306
307 /** Special source flags. \since 0.8 */
308 typedef enum pa_source_flags {
309 PA_SOURCE_HW_VOLUME_CTRL = 1, /**< Supports hardware volume control */
310 PA_SOURCE_LATENCY = 2, /**< Supports latency querying */
311 PA_SOURCE_HARDWARE = 4, /**< Is a hardware source of some kind, in contrast to "virtual"/software source \since 0.9.3 */
312 PA_SOURCE_NETWORK = 8 /**< Is a networked sink of some kind. \since 0.9.7 */
313 } pa_source_flags_t;
314
315 /** A generic free() like callback prototype */
316 typedef void (*pa_free_cb_t)(void *p);
317
318 PA_C_DECL_END
319
320 #endif