]> code.delx.au - pulseaudio/blob - polyp/polyplib-def.h
9bba3f32d6f73f692ce5c497d5b129b6b3c90543
[pulseaudio] / polyp / polyplib-def.h
1 #ifndef foopolyplibdefhfoo
2 #define foopolyplibdefhfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of polypaudio.
8
9 polypaudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published
11 by the Free Software Foundation; either version 2 of the License,
12 or (at your option) any later version.
13
14 polypaudio is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with polypaudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
24
25 #include <inttypes.h>
26 #include "cdecl.h"
27 #include "sample.h"
28
29 /** \file
30 * Global definitions */
31
32 PA_C_DECL_BEGIN
33
34 /** The state of a connection context */
35 enum pa_context_state {
36 PA_CONTEXT_UNCONNECTED, /**< The context hasn't been connected yet */
37 PA_CONTEXT_CONNECTING, /**< A connection is being established */
38 PA_CONTEXT_AUTHORIZING, /**< The client is authorizing itself to the daemon */
39 PA_CONTEXT_SETTING_NAME, /**< The client is passing its application name to the daemon */
40 PA_CONTEXT_READY, /**< The connection is established, the context is ready to execute operations */
41 PA_CONTEXT_FAILED, /**< The connection failed or was disconnected */
42 PA_CONTEXT_TERMINATED /**< The connection was terminated cleanly */
43 };
44
45 /** The state of a stream */
46 enum pa_stream_state {
47 PA_STREAM_DISCONNECTED, /**< The stream is not yet connected to any sink or source */
48 PA_STREAM_CREATING, /**< The stream is being created */
49 PA_STREAM_READY, /**< The stream is established, you may pass audio data to it now */
50 PA_STREAM_FAILED, /**< An error occured that made the stream invalid */
51 PA_STREAM_TERMINATED /**< The stream has been terminated cleanly */
52 };
53
54 /** The state of an operation */
55 enum pa_operation_state {
56 PA_OPERATION_RUNNING, /**< The operation is still running */
57 PA_OPERATION_DONE, /**< The operation has been completed */
58 PA_OPERATION_CANCELED /**< The operation has been canceled */
59 };
60
61 /** An invalid index */
62 #define PA_INVALID_INDEX ((uint32_t) -1)
63
64 /** The direction of a pa_stream object */
65 enum pa_stream_direction {
66 PA_STREAM_NODIRECTION, /**< Invalid direction */
67 PA_STREAM_PLAYBACK, /**< Playback stream */
68 PA_STREAM_RECORD, /**< Record stream */
69 PA_STREAM_UPLOAD /**< Sample upload stream */
70 };
71
72 /** Playback and record buffer metrics */
73 struct pa_buffer_attr{
74 uint32_t maxlength; /**< Maximum length of the buffer */
75 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 */
76 uint32_t prebuf; /**< Playback only: pre-buffering. The server does not start with playback before at least prebug bytes are available in the buffer */
77 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 */
78 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. */
79 };
80
81 /** Error values as used by pa_context_errno(). Use pa_strerror() to convert these values to human readable strings */
82 enum {
83 PA_ERROR_OK, /**< No error */
84 PA_ERROR_ACCESS, /**< Access failure */
85 PA_ERROR_COMMAND, /**< Unknown command */
86 PA_ERROR_INVALID, /**< Invalid argument */
87 PA_ERROR_EXIST, /**< Entity exists */
88 PA_ERROR_NOENTITY, /**< No such entity */
89 PA_ERROR_CONNECTIONREFUSED, /**< Connection refused */
90 PA_ERROR_PROTOCOL, /**< Protocol error */
91 PA_ERROR_TIMEOUT, /**< Timeout */
92 PA_ERROR_AUTHKEY, /**< No authorization key */
93 PA_ERROR_INTERNAL, /**< Internal error */
94 PA_ERROR_CONNECTIONTERMINATED, /**< Connection terminated */
95 PA_ERROR_KILLED, /**< Entity killed */
96 PA_ERROR_INVALIDSERVER, /**< Invalid server */
97 PA_ERROR_INITFAILED, /**< Module initialization failed */
98 PA_ERROR_MAX /**< Not really an error but the first invalid error code */
99 };
100
101 /** Subscription event mask, as used by pa_context_subscribe() */
102 enum pa_subscription_mask {
103 PA_SUBSCRIPTION_MASK_NULL = 0, /**< No events */
104 PA_SUBSCRIPTION_MASK_SINK = 1, /**< Sink events */
105 PA_SUBSCRIPTION_MASK_SOURCE = 2, /**< Source events */
106 PA_SUBSCRIPTION_MASK_SINK_INPUT = 4, /**< Sink input events */
107 PA_SUBSCRIPTION_MASK_SOURCE_OUTPUT = 8, /**< Source output events */
108 PA_SUBSCRIPTION_MASK_MODULE = 16, /**< Module events */
109 PA_SUBSCRIPTION_MASK_CLIENT = 32, /**< Client events */
110 PA_SUBSCRIPTION_MASK_SAMPLE_CACHE = 64, /**< Sample cache events */
111 PA_SUBSCRIPTION_MASK_SERVER = 128 /**< Other global server changes. \since 0.4 */
112 };
113
114 /** Subscription event types, as used by pa_context_subscribe() */
115 enum pa_subscription_event_type {
116 PA_SUBSCRIPTION_EVENT_SINK = 0, /**< Event type: Sink */
117 PA_SUBSCRIPTION_EVENT_SOURCE = 1, /**< Event type: Source */
118 PA_SUBSCRIPTION_EVENT_SINK_INPUT = 2, /**< Event type: Sink input */
119 PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT = 3, /**< Event type: Source output */
120 PA_SUBSCRIPTION_EVENT_MODULE = 4, /**< Event type: Module */
121 PA_SUBSCRIPTION_EVENT_CLIENT = 5, /**< Event type: Client */
122 PA_SUBSCRIPTION_EVENT_SAMPLE_CACHE = 6, /**< Event type: Sample cache item */
123 PA_SUBSCRIPTION_EVENT_SERVER = 7, /**< Event type: Global server change, only occuring with PA_SUBSCRIPTION_EVENT_CHANGE. \since 0.4 */
124 PA_SUBSCRIPTION_EVENT_FACILITY_MASK = 7, /**< A mask to extract the event type from an event value */
125
126 PA_SUBSCRIPTION_EVENT_NEW = 0, /**< A new object was created */
127 PA_SUBSCRIPTION_EVENT_CHANGE = 16, /**< A property of the object was modified */
128 PA_SUBSCRIPTION_EVENT_REMOVE = 32, /**< An object was removed */
129 PA_SUBSCRIPTION_EVENT_TYPE_MASK = 16+32 /**< A mask to extract the event operation from an event value */
130 };
131
132 /** Return one if an event type t matches an event mask bitfield */
133 #define pa_subscription_match_flags(m, t) (!!((m) & (1 << ((t) & PA_SUBSCRIPTION_EVENT_FACILITY_MASK))))
134
135 /** A structure for latency info. See pa_stream_get_latency(). The
136 * total latency a sample that is written with pa_stream_write() takes
137 * to be played may be estimated by
138 * buffer_usec+sink_usec+transport_usec. The buffer to which
139 * buffer_usec relates may be manipulated freely (with
140 * pa_stream_write()'s delta argument, pa_stream_flush() and friends),
141 * the playback buffer sink_usec relates to is a FIFO which cannot be
142 * flushed or manipulated in any way. */
143 struct pa_latency_info {
144 pa_usec_t buffer_usec; /**< Time in usecs the current buffer takes to play */
145 pa_usec_t sink_usec; /**< Time in usecs a sample takes to be played on the sink. */
146 pa_usec_t transport_usec; /**< Estimated time in usecs a sample takes to be transferred to the daemon. \since 0.5 */
147 int playing; /**< Non-zero when the stream is currently playing */
148 uint32_t queue_length; /**< Queue size in bytes. */
149 int synchronized_clocks; /**< Non-zero if the local and the
150 * remote machine have synchronized
151 * clocks. If synchronized clocks are
152 * detected transport_usec becomes much
153 * more reliable. However, the code that
154 * detects synchronized clocks is very
155 * limited und unreliable itself. \since
156 * 0.5 */
157 struct timeval timestamp; /**< The time when this latency info was current */
158 };
159
160 /** A structure for the spawn api. This may be used to integrate auto
161 * spawned daemons into your application. For more information see
162 * pa_context_connect(). When spawning a new child process the
163 * waitpid() is used on the child's PID. The spawn routine will not
164 * block or ignore SIGCHLD signals, since this cannot be done in a
165 * thread compatible way. You might have to do this in
166 * prefork/postfork. \since 0.4 */
167 struct pa_spawn_api {
168 void (*prefork)(void); /**< Is called just before the fork in the parent process. May be NULL. */
169 void (*postfork)(void); /**< Is called immediately after the fork in the parent process. May be NULL.*/
170 void (*atfork)(void); /**< Is called immediately after the
171 * fork in the child process. May be
172 * NULL. It is not safe to close all
173 * file descriptors in this function
174 * unconditionally, since a UNIX socket
175 * (created using socketpair()) is
176 * passed to the new process. */
177 };
178
179 PA_C_DECL_END
180
181 #endif