]> code.delx.au - pulseaudio/blob - src/pulse/def.h
- deprecate autoload stuff
[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_NO_REMAP_CHANNELS = 16, /**< Don't remap channels by
136 * their name, instead map them
137 * simply by their
138 * index. Implies
139 * PA_STREAM_NO_REMIX_CHANNELS. Only
140 * supported when the server is
141 * at least PA 0.9.8. It is
142 * ignored on older
143 * servers.\since 0.9.8 */
144 PA_STREAM_NO_REMIX_CHANNELS = 32, /**< When remapping channels by
145 * name, don't upmix or downmix
146 * them to related
147 * channels. Copy them into
148 * matching channels of the
149 * device 1:1. Only supported
150 * when the server is at least
151 * PA 0.9.8. It is ignored on
152 * older servers. \since
153 * 0.9.8 */
154 PA_STREAM_FIX_FORMAT = 64, /**< Use the sample format of the
155 * sink/device this stream is being
156 * connected to, and possibly ignore
157 * the format the sample spec contains
158 * -- but you still have to pass a
159 * valid value in it as a hint to
160 * PulseAudio what would suit your
161 * stream best. If this is used you
162 * should query the used sample format
163 * after creating the stream by using
164 * pa_stream_get_sample_spec(). Also,
165 * if you specified manual buffer
166 * metrics it is recommended to update
167 * them with
168 * pa_stream_set_buffer_attr() to
169 * compensate for the changed frame
170 * sizes. Only supported when the
171 * server is at least PA 0.9.8. It is
172 * ignored on older servers. \since
173 * 0.9.8 */
174
175 PA_STREAM_FIX_RATE = 128, /**< Use the sample rate of the sink,
176 * and possibly ignore the rate the
177 * sample spec contains. Usage similar
178 * to PA_STREAM_FIX_FORMAT.Only
179 * supported when the server is at least
180 * PA 0.9.8. It is ignored on older
181 * servers. \since 0.9.8 */
182
183 PA_STREAM_FIX_CHANNELS = 256, /**< Use the number of channels and
184 * the channel map of the sink, and
185 * possibly ignore the number of
186 * channels and the map the sample spec
187 * and the passed channel map
188 * contains. Usage similar to
189 * PA_STREAM_FIX_FORMAT. Only supported
190 * when the server is at least PA
191 * 0.9.8. It is ignored on older
192 * servers. \since 0.9.8 */
193 PA_STREAM_DONT_MOVE = 512, /**< Don't allow moving of this stream to
194 * another sink/device. Useful if you use
195 * any of the PA_STREAM_FIX_ flags and
196 * want to make sure that resampling
197 * never takes place -- which might
198 * happen if the stream is moved to
199 * another sink/source whith a different
200 * sample spec/channel map. Only
201 * supported when the server is at least
202 * PA 0.9.8. It is ignored on older
203 * servers. \since 0.9.8 */
204 PA_STREAM_VARIABLE_RATE = 1024, /**< Allow dynamic changing of the
205 * sampling rate during playback
206 * with
207 * pa_stream_update_sample_rate(). Only
208 * supported when the server is at
209 * least PA 0.9.8. It is ignored
210 * on older servers. \since
211 * 0.9.8 */
212 PA_STREAM_PEAK_DETECT = 2048, /**< Find peaks instead of
213 * resampling. \since 0.9.11 */
214
215 PA_STREAM_START_MUTED = 4096, /**< Create in muted state. \since 0.9.11 */
216
217
218 PA_STREAM_ADJUST_LATENCY = 8192, /**< Try to adjust the latency of
219 * the sink/source based on the
220 * requested buffer metrics and
221 * adjust buffer metrics
222 * accordingly. \since 0.9.11 */
223 } pa_stream_flags_t;
224
225 /** Playback and record buffer metrics */
226 typedef struct pa_buffer_attr {
227 uint32_t maxlength; /**< Maximum length of the
228 * buffer. Setting this to 0 will
229 * initialize this to the maximum value
230 * supported by server, which is
231 * recommended. */
232 uint32_t tlength; /**< Playback only: target length of the
233 * buffer. The server tries to assure
234 * that at least tlength bytes are always
235 * available in the buffer. It is
236 * recommended to set this to 0, which
237 * will initialize this to a value that
238 * is deemed sensible by the
239 * server. However, this value will
240 * default to something like 2s, i.e. for
241 * applications that have specific
242 * latency requirements this value should
243 * be set to the maximum latency that the
244 * application can deal with. */
245 uint32_t prebuf; /**< Playback only: pre-buffering. The
246 * server does not start with playback
247 * before at least prebug bytes are
248 * available in the buffer. It is
249 * recommended to set this to 0, which
250 * will initialize this to the same value
251 * as tlength, whatever that may be. */
252 uint32_t minreq; /**< Playback only: minimum request. The
253 * server does not request less than
254 * minreq bytes from the client, instead
255 * waits until the buffer is free enough
256 * to request more bytes at once. It is
257 * recommended to set this to 0, which
258 * will initialize this to a value that
259 * is deemed sensible by the server. */
260 uint32_t fragsize; /**< Recording only: fragment size. The
261 * server sends data in blocks of
262 * fragsize bytes size. Large values
263 * deminish interactivity with other
264 * operations on the connection context
265 * but decrease control overhead. It is
266 * recommended to set this to 0, which
267 * will initialize this to a value that
268 * is deemed sensible by the
269 * server. However, this value will
270 * default to something like 2s, i.e. for
271 * applications that have specific
272 * latency requirements this value should
273 * be set to the maximum latency that the
274 * application can deal with. */
275 } pa_buffer_attr;
276
277 /** Error values as used by pa_context_errno(). Use pa_strerror() to convert these values to human readable strings */
278 enum {
279 PA_OK = 0, /**< No error */
280 PA_ERR_ACCESS, /**< Access failure */
281 PA_ERR_COMMAND, /**< Unknown command */
282 PA_ERR_INVALID, /**< Invalid argument */
283 PA_ERR_EXIST, /**< Entity exists */
284 PA_ERR_NOENTITY, /**< No such entity */
285 PA_ERR_CONNECTIONREFUSED, /**< Connection refused */
286 PA_ERR_PROTOCOL, /**< Protocol error */
287 PA_ERR_TIMEOUT, /**< Timeout */
288 PA_ERR_AUTHKEY, /**< No authorization key */
289 PA_ERR_INTERNAL, /**< Internal error */
290 PA_ERR_CONNECTIONTERMINATED, /**< Connection terminated */
291 PA_ERR_KILLED, /**< Entity killed */
292 PA_ERR_INVALIDSERVER, /**< Invalid server */
293 PA_ERR_MODINITFAILED, /**< Module initialization failed */
294 PA_ERR_BADSTATE, /**< Bad state */
295 PA_ERR_NODATA, /**< No data */
296 PA_ERR_VERSION, /**< Incompatible protocol version \since 0.8 */
297 PA_ERR_TOOLARGE, /**< Data too large \since 0.8.1 */
298 PA_ERR_NOTSUPPORTED, /**< Operation not supported \since 0.9.5 */
299 PA_ERR_MAX /**< Not really an error but the first invalid error code */
300 };
301
302 /** Subscription event mask, as used by pa_context_subscribe() */
303 typedef enum pa_subscription_mask {
304 PA_SUBSCRIPTION_MASK_NULL = 0, /**< No events */
305 PA_SUBSCRIPTION_MASK_SINK = 1, /**< Sink events */
306 PA_SUBSCRIPTION_MASK_SOURCE = 2, /**< Source events */
307 PA_SUBSCRIPTION_MASK_SINK_INPUT = 4, /**< Sink input events */
308 PA_SUBSCRIPTION_MASK_SOURCE_OUTPUT = 8, /**< Source output events */
309 PA_SUBSCRIPTION_MASK_MODULE = 16, /**< Module events */
310 PA_SUBSCRIPTION_MASK_CLIENT = 32, /**< Client events */
311 PA_SUBSCRIPTION_MASK_SAMPLE_CACHE = 64, /**< Sample cache events */
312 PA_SUBSCRIPTION_MASK_SERVER = 128, /**< Other global server changes. \since 0.4 */
313 PA_SUBSCRIPTION_MASK_AUTOLOAD = 256, /**< Autoload table events. \since 0.5 */
314 PA_SUBSCRIPTION_MASK_ALL = 511 /**< Catch all events \since 0.8 */
315 } pa_subscription_mask_t;
316
317 /** Subscription event types, as used by pa_context_subscribe() */
318 typedef enum pa_subscription_event_type {
319 PA_SUBSCRIPTION_EVENT_SINK = 0, /**< Event type: Sink */
320 PA_SUBSCRIPTION_EVENT_SOURCE = 1, /**< Event type: Source */
321 PA_SUBSCRIPTION_EVENT_SINK_INPUT = 2, /**< Event type: Sink input */
322 PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT = 3, /**< Event type: Source output */
323 PA_SUBSCRIPTION_EVENT_MODULE = 4, /**< Event type: Module */
324 PA_SUBSCRIPTION_EVENT_CLIENT = 5, /**< Event type: Client */
325 PA_SUBSCRIPTION_EVENT_SAMPLE_CACHE = 6, /**< Event type: Sample cache item */
326 PA_SUBSCRIPTION_EVENT_SERVER = 7, /**< Event type: Global server change, only occuring with PA_SUBSCRIPTION_EVENT_CHANGE. \since 0.4 */
327 PA_SUBSCRIPTION_EVENT_AUTOLOAD = 8, /**< Event type: Autoload table changes. \since 0.5 */
328 PA_SUBSCRIPTION_EVENT_FACILITY_MASK = 15, /**< A mask to extract the event type from an event value */
329
330 PA_SUBSCRIPTION_EVENT_NEW = 0, /**< A new object was created */
331 PA_SUBSCRIPTION_EVENT_CHANGE = 16, /**< A property of the object was modified */
332 PA_SUBSCRIPTION_EVENT_REMOVE = 32, /**< An object was removed */
333 PA_SUBSCRIPTION_EVENT_TYPE_MASK = 16+32 /**< A mask to extract the event operation from an event value */
334 } pa_subscription_event_type_t;
335
336 /** Return one if an event type t matches an event mask bitfield */
337 #define pa_subscription_match_flags(m, t) (!!((m) & (1 << ((t) & PA_SUBSCRIPTION_EVENT_FACILITY_MASK))))
338
339 /** A structure for all kinds of timing information of a stream. See
340 * pa_stream_update_timing_info() and pa_stream_get_timing_info(). The
341 * total output latency a sample that is written with
342 * pa_stream_write() takes to be played may be estimated by
343 * sink_usec+buffer_usec+transport_usec. (where buffer_usec is defined
344 * as pa_bytes_to_usec(write_index-read_index)) The output buffer
345 * which buffer_usec relates to may be manipulated freely (with
346 * pa_stream_write()'s seek argument, pa_stream_flush() and friends),
347 * the buffers sink_usec and source_usec relate to are first-in
348 * first-out (FIFO) buffers which cannot be flushed or manipulated in
349 * any way. The total input latency a sample that is recorded takes to
350 * be delivered to the application is:
351 * source_usec+buffer_usec+transport_usec-sink_usec. (Take care of
352 * sign issues!) When connected to a monitor source sink_usec contains
353 * the latency of the owning sink. The two latency estimations
354 * described here are implemented in pa_stream_get_latency(). Please
355 * note that this structure can be extended as part of evolutionary
356 * API updates at any time in any new release.*/
357 typedef struct pa_timing_info {
358 struct timeval timestamp; /**< The time when this timing info structure was current */
359 int synchronized_clocks; /**< Non-zero if the local and the
360 * remote machine have synchronized
361 * clocks. If synchronized clocks are
362 * detected transport_usec becomes much
363 * more reliable. However, the code that
364 * detects synchronized clocks is very
365 * limited und unreliable itself. \since
366 * 0.5 */
367
368 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. */
369 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*/
370 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 */
371
372 int playing; /**< Non-zero when the stream is currently playing. Only for playback streams. */
373
374 int write_index_corrupt; /**< Non-zero if write_index is not
375 * up-to-date because a local write
376 * command that corrupted it has been
377 * issued in the time since this latency
378 * info was current . Only write
379 * commands with SEEK_RELATIVE_ON_READ
380 * and SEEK_RELATIVE_END can corrupt
381 * write_index. \since 0.8 */
382 int64_t write_index; /**< Current write index into the
383 * playback buffer in bytes. Think twice before
384 * using this for seeking purposes: it
385 * might be out of date a the time you
386 * want to use it. Consider using
387 * PA_SEEK_RELATIVE instead. \since
388 * 0.8 */
389
390 int read_index_corrupt; /**< Non-zero if read_index is not
391 * up-to-date because a local pause or
392 * flush request that corrupted it has
393 * been issued in the time since this
394 * latency info was current. \since 0.8 */
395
396 int64_t read_index; /**< Current read index into the
397 * playback buffer in bytes. Think twice before
398 * using this for seeking purposes: it
399 * might be out of date a the time you
400 * want to use it. Consider using
401 * PA_SEEK_RELATIVE_ON_READ
402 * instead. \since 0.8 */
403
404 pa_usec_t max_sink_usec; /**< The static configure latency for
405 * the sink. \since 0.9.10 */
406 pa_usec_t max_source_usec; /**< The static configure latency for
407 * the source. \since 0.9.10 */
408 } pa_timing_info;
409
410 /** A structure for the spawn api. This may be used to integrate auto
411 * spawned daemons into your application. For more information see
412 * pa_context_connect(). When spawning a new child process the
413 * waitpid() is used on the child's PID. The spawn routine will not
414 * block or ignore SIGCHLD signals, since this cannot be done in a
415 * thread compatible way. You might have to do this in
416 * prefork/postfork. \since 0.4 */
417 typedef struct pa_spawn_api {
418 void (*prefork)(void); /**< Is called just before the fork in the parent process. May be NULL. */
419 void (*postfork)(void); /**< Is called immediately after the fork in the parent process. May be NULL.*/
420 void (*atfork)(void); /**< Is called immediately after the
421 * fork in the child process. May be
422 * NULL. It is not safe to close all
423 * file descriptors in this function
424 * unconditionally, since a UNIX socket
425 * (created using socketpair()) is
426 * passed to the new process. */
427 } pa_spawn_api;
428
429 /** Seek type for pa_stream_write(). \since 0.8*/
430 typedef enum pa_seek_mode {
431 PA_SEEK_RELATIVE = 0, /**< Seek relatively to the write index */
432 PA_SEEK_ABSOLUTE = 1, /**< Seek relatively to the start of the buffer queue */
433 PA_SEEK_RELATIVE_ON_READ = 2, /**< Seek relatively to the read index. */
434 PA_SEEK_RELATIVE_END = 3 /**< Seek relatively to the current end of the buffer queue. */
435 } pa_seek_mode_t;
436
437 /** Special sink flags. \since 0.8 */
438 typedef enum pa_sink_flags {
439 PA_SINK_HW_VOLUME_CTRL = 1, /**< Supports hardware volume control */
440 PA_SINK_LATENCY = 2, /**< Supports latency querying */
441 PA_SINK_HARDWARE = 4, /**< Is a hardware sink of some kind, in contrast to "virtual"/software sinks \since 0.9.3 */
442 PA_SINK_NETWORK = 8, /**< Is a networked sink of some kind. \since 0.9.7 */
443 PA_SINK_HW_MUTE_CTRL = 16, /**< Supports hardware mute control \since 0.9.10 */
444 PA_SINK_DECIBEL_VOLUME = 32 /**< Volume can be translated to dB with pa_sw_volume_to_dB() \since 0.9.10 */
445 } pa_sink_flags_t;
446
447 /** Special source flags. \since 0.8 */
448 typedef enum pa_source_flags {
449 PA_SOURCE_HW_VOLUME_CTRL = 1, /**< Supports hardware volume control */
450 PA_SOURCE_LATENCY = 2, /**< Supports latency querying */
451 PA_SOURCE_HARDWARE = 4, /**< Is a hardware source of some kind, in contrast to "virtual"/software source \since 0.9.3 */
452 PA_SOURCE_NETWORK = 8, /**< Is a networked sink of some kind. \since 0.9.7 */
453 PA_SOURCE_HW_MUTE_CTRL = 16, /**< Supports hardware mute control \since 0.9.10 */
454 PA_SOURCE_DECIBEL_VOLUME = 32 /**< Volume can be translated to dB with pa_sw_volume_to_dB() \since 0.9.10 */
455 } pa_source_flags_t;
456
457 /** A generic free() like callback prototype */
458 typedef void (*pa_free_cb_t)(void *p);
459
460 PA_C_DECL_END
461
462 #endif