cannam@92
|
1 #ifndef PORTAUDIO_H
|
cannam@92
|
2 #define PORTAUDIO_H
|
cannam@92
|
3 /*
|
cannam@92
|
4 * $Id: portaudio.h 1745 2011-08-25 17:44:01Z rossb $
|
cannam@92
|
5 * PortAudio Portable Real-Time Audio Library
|
cannam@92
|
6 * PortAudio API Header File
|
cannam@92
|
7 * Latest version available at: http://www.portaudio.com/
|
cannam@92
|
8 *
|
cannam@92
|
9 * Copyright (c) 1999-2002 Ross Bencina and Phil Burk
|
cannam@92
|
10 *
|
cannam@92
|
11 * Permission is hereby granted, free of charge, to any person obtaining
|
cannam@92
|
12 * a copy of this software and associated documentation files
|
cannam@92
|
13 * (the "Software"), to deal in the Software without restriction,
|
cannam@92
|
14 * including without limitation the rights to use, copy, modify, merge,
|
cannam@92
|
15 * publish, distribute, sublicense, and/or sell copies of the Software,
|
cannam@92
|
16 * and to permit persons to whom the Software is furnished to do so,
|
cannam@92
|
17 * subject to the following conditions:
|
cannam@92
|
18 *
|
cannam@92
|
19 * The above copyright notice and this permission notice shall be
|
cannam@92
|
20 * included in all copies or substantial portions of the Software.
|
cannam@92
|
21 *
|
cannam@92
|
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
cannam@92
|
23 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
cannam@92
|
24 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
cannam@92
|
25 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
cannam@92
|
26 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
cannam@92
|
27 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
cannam@92
|
28 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
cannam@92
|
29 */
|
cannam@92
|
30
|
cannam@92
|
31 /*
|
cannam@92
|
32 * The text above constitutes the entire PortAudio license; however,
|
cannam@92
|
33 * the PortAudio community also makes the following non-binding requests:
|
cannam@92
|
34 *
|
cannam@92
|
35 * Any person wishing to distribute modifications to the Software is
|
cannam@92
|
36 * requested to send the modifications to the original developer so that
|
cannam@92
|
37 * they can be incorporated into the canonical version. It is also
|
cannam@92
|
38 * requested that these non-binding requests be included along with the
|
cannam@92
|
39 * license above.
|
cannam@92
|
40 */
|
cannam@92
|
41
|
cannam@92
|
42 /** @file
|
cannam@92
|
43 @ingroup public_header
|
cannam@92
|
44 @brief The portable PortAudio API.
|
cannam@92
|
45 */
|
cannam@92
|
46
|
cannam@92
|
47
|
cannam@92
|
48 #ifdef __cplusplus
|
cannam@92
|
49 extern "C"
|
cannam@92
|
50 {
|
cannam@92
|
51 #endif /* __cplusplus */
|
cannam@92
|
52
|
cannam@92
|
53
|
cannam@92
|
54 /** Retrieve the release number of the currently running PortAudio build,
|
cannam@92
|
55 eg 1900.
|
cannam@92
|
56 */
|
cannam@92
|
57 int Pa_GetVersion( void );
|
cannam@92
|
58
|
cannam@92
|
59
|
cannam@92
|
60 /** Retrieve a textual description of the current PortAudio build,
|
cannam@92
|
61 eg "PortAudio V19-devel 13 October 2002".
|
cannam@92
|
62 */
|
cannam@92
|
63 const char* Pa_GetVersionText( void );
|
cannam@92
|
64
|
cannam@92
|
65
|
cannam@92
|
66 /** Error codes returned by PortAudio functions.
|
cannam@92
|
67 Note that with the exception of paNoError, all PaErrorCodes are negative.
|
cannam@92
|
68 */
|
cannam@92
|
69
|
cannam@92
|
70 typedef int PaError;
|
cannam@92
|
71 typedef enum PaErrorCode
|
cannam@92
|
72 {
|
cannam@92
|
73 paNoError = 0,
|
cannam@92
|
74
|
cannam@92
|
75 paNotInitialized = -10000,
|
cannam@92
|
76 paUnanticipatedHostError,
|
cannam@92
|
77 paInvalidChannelCount,
|
cannam@92
|
78 paInvalidSampleRate,
|
cannam@92
|
79 paInvalidDevice,
|
cannam@92
|
80 paInvalidFlag,
|
cannam@92
|
81 paSampleFormatNotSupported,
|
cannam@92
|
82 paBadIODeviceCombination,
|
cannam@92
|
83 paInsufficientMemory,
|
cannam@92
|
84 paBufferTooBig,
|
cannam@92
|
85 paBufferTooSmall,
|
cannam@92
|
86 paNullCallback,
|
cannam@92
|
87 paBadStreamPtr,
|
cannam@92
|
88 paTimedOut,
|
cannam@92
|
89 paInternalError,
|
cannam@92
|
90 paDeviceUnavailable,
|
cannam@92
|
91 paIncompatibleHostApiSpecificStreamInfo,
|
cannam@92
|
92 paStreamIsStopped,
|
cannam@92
|
93 paStreamIsNotStopped,
|
cannam@92
|
94 paInputOverflowed,
|
cannam@92
|
95 paOutputUnderflowed,
|
cannam@92
|
96 paHostApiNotFound,
|
cannam@92
|
97 paInvalidHostApi,
|
cannam@92
|
98 paCanNotReadFromACallbackStream,
|
cannam@92
|
99 paCanNotWriteToACallbackStream,
|
cannam@92
|
100 paCanNotReadFromAnOutputOnlyStream,
|
cannam@92
|
101 paCanNotWriteToAnInputOnlyStream,
|
cannam@92
|
102 paIncompatibleStreamHostApi,
|
cannam@92
|
103 paBadBufferPtr
|
cannam@92
|
104 } PaErrorCode;
|
cannam@92
|
105
|
cannam@92
|
106
|
cannam@92
|
107 /** Translate the supplied PortAudio error code into a human readable
|
cannam@92
|
108 message.
|
cannam@92
|
109 */
|
cannam@92
|
110 const char *Pa_GetErrorText( PaError errorCode );
|
cannam@92
|
111
|
cannam@92
|
112
|
cannam@92
|
113 /** Library initialization function - call this before using PortAudio.
|
cannam@92
|
114 This function initializes internal data structures and prepares underlying
|
cannam@92
|
115 host APIs for use. With the exception of Pa_GetVersion(), Pa_GetVersionText(),
|
cannam@92
|
116 and Pa_GetErrorText(), this function MUST be called before using any other
|
cannam@92
|
117 PortAudio API functions.
|
cannam@92
|
118
|
cannam@92
|
119 If Pa_Initialize() is called multiple times, each successful
|
cannam@92
|
120 call must be matched with a corresponding call to Pa_Terminate().
|
cannam@92
|
121 Pairs of calls to Pa_Initialize()/Pa_Terminate() may overlap, and are not
|
cannam@92
|
122 required to be fully nested.
|
cannam@92
|
123
|
cannam@92
|
124 Note that if Pa_Initialize() returns an error code, Pa_Terminate() should
|
cannam@92
|
125 NOT be called.
|
cannam@92
|
126
|
cannam@92
|
127 @return paNoError if successful, otherwise an error code indicating the cause
|
cannam@92
|
128 of failure.
|
cannam@92
|
129
|
cannam@92
|
130 @see Pa_Terminate
|
cannam@92
|
131 */
|
cannam@92
|
132 PaError Pa_Initialize( void );
|
cannam@92
|
133
|
cannam@92
|
134
|
cannam@92
|
135 /** Library termination function - call this when finished using PortAudio.
|
cannam@92
|
136 This function deallocates all resources allocated by PortAudio since it was
|
cannam@92
|
137 initialized by a call to Pa_Initialize(). In cases where Pa_Initialise() has
|
cannam@92
|
138 been called multiple times, each call must be matched with a corresponding call
|
cannam@92
|
139 to Pa_Terminate(). The final matching call to Pa_Terminate() will automatically
|
cannam@92
|
140 close any PortAudio streams that are still open.
|
cannam@92
|
141
|
cannam@92
|
142 Pa_Terminate() MUST be called before exiting a program which uses PortAudio.
|
cannam@92
|
143 Failure to do so may result in serious resource leaks, such as audio devices
|
cannam@92
|
144 not being available until the next reboot.
|
cannam@92
|
145
|
cannam@92
|
146 @return paNoError if successful, otherwise an error code indicating the cause
|
cannam@92
|
147 of failure.
|
cannam@92
|
148
|
cannam@92
|
149 @see Pa_Initialize
|
cannam@92
|
150 */
|
cannam@92
|
151 PaError Pa_Terminate( void );
|
cannam@92
|
152
|
cannam@92
|
153
|
cannam@92
|
154
|
cannam@92
|
155 /** The type used to refer to audio devices. Values of this type usually
|
cannam@92
|
156 range from 0 to (Pa_GetDeviceCount()-1), and may also take on the PaNoDevice
|
cannam@92
|
157 and paUseHostApiSpecificDeviceSpecification values.
|
cannam@92
|
158
|
cannam@92
|
159 @see Pa_GetDeviceCount, paNoDevice, paUseHostApiSpecificDeviceSpecification
|
cannam@92
|
160 */
|
cannam@92
|
161 typedef int PaDeviceIndex;
|
cannam@92
|
162
|
cannam@92
|
163
|
cannam@92
|
164 /** A special PaDeviceIndex value indicating that no device is available,
|
cannam@92
|
165 or should be used.
|
cannam@92
|
166
|
cannam@92
|
167 @see PaDeviceIndex
|
cannam@92
|
168 */
|
cannam@92
|
169 #define paNoDevice ((PaDeviceIndex)-1)
|
cannam@92
|
170
|
cannam@92
|
171
|
cannam@92
|
172 /** A special PaDeviceIndex value indicating that the device(s) to be used
|
cannam@92
|
173 are specified in the host api specific stream info structure.
|
cannam@92
|
174
|
cannam@92
|
175 @see PaDeviceIndex
|
cannam@92
|
176 */
|
cannam@92
|
177 #define paUseHostApiSpecificDeviceSpecification ((PaDeviceIndex)-2)
|
cannam@92
|
178
|
cannam@92
|
179
|
cannam@92
|
180 /* Host API enumeration mechanism */
|
cannam@92
|
181
|
cannam@92
|
182 /** The type used to enumerate to host APIs at runtime. Values of this type
|
cannam@92
|
183 range from 0 to (Pa_GetHostApiCount()-1).
|
cannam@92
|
184
|
cannam@92
|
185 @see Pa_GetHostApiCount
|
cannam@92
|
186 */
|
cannam@92
|
187 typedef int PaHostApiIndex;
|
cannam@92
|
188
|
cannam@92
|
189
|
cannam@92
|
190 /** Retrieve the number of available host APIs. Even if a host API is
|
cannam@92
|
191 available it may have no devices available.
|
cannam@92
|
192
|
cannam@92
|
193 @return A non-negative value indicating the number of available host APIs
|
cannam@92
|
194 or, a PaErrorCode (which are always negative) if PortAudio is not initialized
|
cannam@92
|
195 or an error is encountered.
|
cannam@92
|
196
|
cannam@92
|
197 @see PaHostApiIndex
|
cannam@92
|
198 */
|
cannam@92
|
199 PaHostApiIndex Pa_GetHostApiCount( void );
|
cannam@92
|
200
|
cannam@92
|
201
|
cannam@92
|
202 /** Retrieve the index of the default host API. The default host API will be
|
cannam@92
|
203 the lowest common denominator host API on the current platform and is
|
cannam@92
|
204 unlikely to provide the best performance.
|
cannam@92
|
205
|
cannam@92
|
206 @return A non-negative value ranging from 0 to (Pa_GetHostApiCount()-1)
|
cannam@92
|
207 indicating the default host API index or, a PaErrorCode (which are always
|
cannam@92
|
208 negative) if PortAudio is not initialized or an error is encountered.
|
cannam@92
|
209 */
|
cannam@92
|
210 PaHostApiIndex Pa_GetDefaultHostApi( void );
|
cannam@92
|
211
|
cannam@92
|
212
|
cannam@92
|
213 /** Unchanging unique identifiers for each supported host API. This type
|
cannam@92
|
214 is used in the PaHostApiInfo structure. The values are guaranteed to be
|
cannam@92
|
215 unique and to never change, thus allowing code to be written that
|
cannam@92
|
216 conditionally uses host API specific extensions.
|
cannam@92
|
217
|
cannam@92
|
218 New type ids will be allocated when support for a host API reaches
|
cannam@92
|
219 "public alpha" status, prior to that developers should use the
|
cannam@92
|
220 paInDevelopment type id.
|
cannam@92
|
221
|
cannam@92
|
222 @see PaHostApiInfo
|
cannam@92
|
223 */
|
cannam@92
|
224 typedef enum PaHostApiTypeId
|
cannam@92
|
225 {
|
cannam@92
|
226 paInDevelopment=0, /* use while developing support for a new host API */
|
cannam@92
|
227 paDirectSound=1,
|
cannam@92
|
228 paMME=2,
|
cannam@92
|
229 paASIO=3,
|
cannam@92
|
230 paSoundManager=4,
|
cannam@92
|
231 paCoreAudio=5,
|
cannam@92
|
232 paOSS=7,
|
cannam@92
|
233 paALSA=8,
|
cannam@92
|
234 paAL=9,
|
cannam@92
|
235 paBeOS=10,
|
cannam@92
|
236 paWDMKS=11,
|
cannam@92
|
237 paJACK=12,
|
cannam@92
|
238 paWASAPI=13,
|
cannam@92
|
239 paAudioScienceHPI=14
|
cannam@92
|
240 } PaHostApiTypeId;
|
cannam@92
|
241
|
cannam@92
|
242
|
cannam@92
|
243 /** A structure containing information about a particular host API. */
|
cannam@92
|
244
|
cannam@92
|
245 typedef struct PaHostApiInfo
|
cannam@92
|
246 {
|
cannam@92
|
247 /** this is struct version 1 */
|
cannam@92
|
248 int structVersion;
|
cannam@92
|
249 /** The well known unique identifier of this host API @see PaHostApiTypeId */
|
cannam@92
|
250 PaHostApiTypeId type;
|
cannam@92
|
251 /** A textual description of the host API for display on user interfaces. */
|
cannam@92
|
252 const char *name;
|
cannam@92
|
253
|
cannam@92
|
254 /** The number of devices belonging to this host API. This field may be
|
cannam@92
|
255 used in conjunction with Pa_HostApiDeviceIndexToDeviceIndex() to enumerate
|
cannam@92
|
256 all devices for this host API.
|
cannam@92
|
257 @see Pa_HostApiDeviceIndexToDeviceIndex
|
cannam@92
|
258 */
|
cannam@92
|
259 int deviceCount;
|
cannam@92
|
260
|
cannam@92
|
261 /** The default input device for this host API. The value will be a
|
cannam@92
|
262 device index ranging from 0 to (Pa_GetDeviceCount()-1), or paNoDevice
|
cannam@92
|
263 if no default input device is available.
|
cannam@92
|
264 */
|
cannam@92
|
265 PaDeviceIndex defaultInputDevice;
|
cannam@92
|
266
|
cannam@92
|
267 /** The default output device for this host API. The value will be a
|
cannam@92
|
268 device index ranging from 0 to (Pa_GetDeviceCount()-1), or paNoDevice
|
cannam@92
|
269 if no default output device is available.
|
cannam@92
|
270 */
|
cannam@92
|
271 PaDeviceIndex defaultOutputDevice;
|
cannam@92
|
272
|
cannam@92
|
273 } PaHostApiInfo;
|
cannam@92
|
274
|
cannam@92
|
275
|
cannam@92
|
276 /** Retrieve a pointer to a structure containing information about a specific
|
cannam@92
|
277 host Api.
|
cannam@92
|
278
|
cannam@92
|
279 @param hostApi A valid host API index ranging from 0 to (Pa_GetHostApiCount()-1)
|
cannam@92
|
280
|
cannam@92
|
281 @return A pointer to an immutable PaHostApiInfo structure describing
|
cannam@92
|
282 a specific host API. If the hostApi parameter is out of range or an error
|
cannam@92
|
283 is encountered, the function returns NULL.
|
cannam@92
|
284
|
cannam@92
|
285 The returned structure is owned by the PortAudio implementation and must not
|
cannam@92
|
286 be manipulated or freed. The pointer is only guaranteed to be valid between
|
cannam@92
|
287 calls to Pa_Initialize() and Pa_Terminate().
|
cannam@92
|
288 */
|
cannam@92
|
289 const PaHostApiInfo * Pa_GetHostApiInfo( PaHostApiIndex hostApi );
|
cannam@92
|
290
|
cannam@92
|
291
|
cannam@92
|
292 /** Convert a static host API unique identifier, into a runtime
|
cannam@92
|
293 host API index.
|
cannam@92
|
294
|
cannam@92
|
295 @param type A unique host API identifier belonging to the PaHostApiTypeId
|
cannam@92
|
296 enumeration.
|
cannam@92
|
297
|
cannam@92
|
298 @return A valid PaHostApiIndex ranging from 0 to (Pa_GetHostApiCount()-1) or,
|
cannam@92
|
299 a PaErrorCode (which are always negative) if PortAudio is not initialized
|
cannam@92
|
300 or an error is encountered.
|
cannam@92
|
301
|
cannam@92
|
302 The paHostApiNotFound error code indicates that the host API specified by the
|
cannam@92
|
303 type parameter is not available.
|
cannam@92
|
304
|
cannam@92
|
305 @see PaHostApiTypeId
|
cannam@92
|
306 */
|
cannam@92
|
307 PaHostApiIndex Pa_HostApiTypeIdToHostApiIndex( PaHostApiTypeId type );
|
cannam@92
|
308
|
cannam@92
|
309
|
cannam@92
|
310 /** Convert a host-API-specific device index to standard PortAudio device index.
|
cannam@92
|
311 This function may be used in conjunction with the deviceCount field of
|
cannam@92
|
312 PaHostApiInfo to enumerate all devices for the specified host API.
|
cannam@92
|
313
|
cannam@92
|
314 @param hostApi A valid host API index ranging from 0 to (Pa_GetHostApiCount()-1)
|
cannam@92
|
315
|
cannam@92
|
316 @param hostApiDeviceIndex A valid per-host device index in the range
|
cannam@92
|
317 0 to (Pa_GetHostApiInfo(hostApi)->deviceCount-1)
|
cannam@92
|
318
|
cannam@92
|
319 @return A non-negative PaDeviceIndex ranging from 0 to (Pa_GetDeviceCount()-1)
|
cannam@92
|
320 or, a PaErrorCode (which are always negative) if PortAudio is not initialized
|
cannam@92
|
321 or an error is encountered.
|
cannam@92
|
322
|
cannam@92
|
323 A paInvalidHostApi error code indicates that the host API index specified by
|
cannam@92
|
324 the hostApi parameter is out of range.
|
cannam@92
|
325
|
cannam@92
|
326 A paInvalidDevice error code indicates that the hostApiDeviceIndex parameter
|
cannam@92
|
327 is out of range.
|
cannam@92
|
328
|
cannam@92
|
329 @see PaHostApiInfo
|
cannam@92
|
330 */
|
cannam@92
|
331 PaDeviceIndex Pa_HostApiDeviceIndexToDeviceIndex( PaHostApiIndex hostApi,
|
cannam@92
|
332 int hostApiDeviceIndex );
|
cannam@92
|
333
|
cannam@92
|
334
|
cannam@92
|
335
|
cannam@92
|
336 /** Structure used to return information about a host error condition.
|
cannam@92
|
337 */
|
cannam@92
|
338 typedef struct PaHostErrorInfo{
|
cannam@92
|
339 PaHostApiTypeId hostApiType; /**< the host API which returned the error code */
|
cannam@92
|
340 long errorCode; /**< the error code returned */
|
cannam@92
|
341 const char *errorText; /**< a textual description of the error if available, otherwise a zero-length string */
|
cannam@92
|
342 }PaHostErrorInfo;
|
cannam@92
|
343
|
cannam@92
|
344
|
cannam@92
|
345 /** Return information about the last host error encountered. The error
|
cannam@92
|
346 information returned by Pa_GetLastHostErrorInfo() will never be modified
|
cannam@92
|
347 asynchronously by errors occurring in other PortAudio owned threads
|
cannam@92
|
348 (such as the thread that manages the stream callback.)
|
cannam@92
|
349
|
cannam@92
|
350 This function is provided as a last resort, primarily to enhance debugging
|
cannam@92
|
351 by providing clients with access to all available error information.
|
cannam@92
|
352
|
cannam@92
|
353 @return A pointer to an immutable structure constraining information about
|
cannam@92
|
354 the host error. The values in this structure will only be valid if a
|
cannam@92
|
355 PortAudio function has previously returned the paUnanticipatedHostError
|
cannam@92
|
356 error code.
|
cannam@92
|
357 */
|
cannam@92
|
358 const PaHostErrorInfo* Pa_GetLastHostErrorInfo( void );
|
cannam@92
|
359
|
cannam@92
|
360
|
cannam@92
|
361
|
cannam@92
|
362 /* Device enumeration and capabilities */
|
cannam@92
|
363
|
cannam@92
|
364 /** Retrieve the number of available devices. The number of available devices
|
cannam@92
|
365 may be zero.
|
cannam@92
|
366
|
cannam@92
|
367 @return A non-negative value indicating the number of available devices or,
|
cannam@92
|
368 a PaErrorCode (which are always negative) if PortAudio is not initialized
|
cannam@92
|
369 or an error is encountered.
|
cannam@92
|
370 */
|
cannam@92
|
371 PaDeviceIndex Pa_GetDeviceCount( void );
|
cannam@92
|
372
|
cannam@92
|
373
|
cannam@92
|
374 /** Retrieve the index of the default input device. The result can be
|
cannam@92
|
375 used in the inputDevice parameter to Pa_OpenStream().
|
cannam@92
|
376
|
cannam@92
|
377 @return The default input device index for the default host API, or paNoDevice
|
cannam@92
|
378 if no default input device is available or an error was encountered.
|
cannam@92
|
379 */
|
cannam@92
|
380 PaDeviceIndex Pa_GetDefaultInputDevice( void );
|
cannam@92
|
381
|
cannam@92
|
382
|
cannam@92
|
383 /** Retrieve the index of the default output device. The result can be
|
cannam@92
|
384 used in the outputDevice parameter to Pa_OpenStream().
|
cannam@92
|
385
|
cannam@92
|
386 @return The default output device index for the default host API, or paNoDevice
|
cannam@92
|
387 if no default output device is available or an error was encountered.
|
cannam@92
|
388
|
cannam@92
|
389 @note
|
cannam@92
|
390 On the PC, the user can specify a default device by
|
cannam@92
|
391 setting an environment variable. For example, to use device #1.
|
cannam@92
|
392 <pre>
|
cannam@92
|
393 set PA_RECOMMENDED_OUTPUT_DEVICE=1
|
cannam@92
|
394 </pre>
|
cannam@92
|
395 The user should first determine the available device ids by using
|
cannam@92
|
396 the supplied application "pa_devs".
|
cannam@92
|
397 */
|
cannam@92
|
398 PaDeviceIndex Pa_GetDefaultOutputDevice( void );
|
cannam@92
|
399
|
cannam@92
|
400
|
cannam@92
|
401 /** The type used to represent monotonic time in seconds. PaTime is
|
cannam@92
|
402 used for the fields of the PaStreamCallbackTimeInfo argument to the
|
cannam@92
|
403 PaStreamCallback and as the result of Pa_GetStreamTime().
|
cannam@92
|
404
|
cannam@92
|
405 PaTime values have unspecified origin.
|
cannam@92
|
406
|
cannam@92
|
407 @see PaStreamCallback, PaStreamCallbackTimeInfo, Pa_GetStreamTime
|
cannam@92
|
408 */
|
cannam@92
|
409 typedef double PaTime;
|
cannam@92
|
410
|
cannam@92
|
411
|
cannam@92
|
412 /** A type used to specify one or more sample formats. Each value indicates
|
cannam@92
|
413 a possible format for sound data passed to and from the stream callback,
|
cannam@92
|
414 Pa_ReadStream and Pa_WriteStream.
|
cannam@92
|
415
|
cannam@92
|
416 The standard formats paFloat32, paInt16, paInt32, paInt24, paInt8
|
cannam@92
|
417 and aUInt8 are usually implemented by all implementations.
|
cannam@92
|
418
|
cannam@92
|
419 The floating point representation (paFloat32) uses +1.0 and -1.0 as the
|
cannam@92
|
420 maximum and minimum respectively.
|
cannam@92
|
421
|
cannam@92
|
422 paUInt8 is an unsigned 8 bit format where 128 is considered "ground"
|
cannam@92
|
423
|
cannam@92
|
424 The paNonInterleaved flag indicates that audio data is passed as an array
|
cannam@92
|
425 of pointers to separate buffers, one buffer for each channel. Usually,
|
cannam@92
|
426 when this flag is not used, audio data is passed as a single buffer with
|
cannam@92
|
427 all channels interleaved.
|
cannam@92
|
428
|
cannam@92
|
429 @see Pa_OpenStream, Pa_OpenDefaultStream, PaDeviceInfo
|
cannam@92
|
430 @see paFloat32, paInt16, paInt32, paInt24, paInt8
|
cannam@92
|
431 @see paUInt8, paCustomFormat, paNonInterleaved
|
cannam@92
|
432 */
|
cannam@92
|
433 typedef unsigned long PaSampleFormat;
|
cannam@92
|
434
|
cannam@92
|
435
|
cannam@92
|
436 #define paFloat32 ((PaSampleFormat) 0x00000001) /**< @see PaSampleFormat */
|
cannam@92
|
437 #define paInt32 ((PaSampleFormat) 0x00000002) /**< @see PaSampleFormat */
|
cannam@92
|
438 #define paInt24 ((PaSampleFormat) 0x00000004) /**< Packed 24 bit format. @see PaSampleFormat */
|
cannam@92
|
439 #define paInt16 ((PaSampleFormat) 0x00000008) /**< @see PaSampleFormat */
|
cannam@92
|
440 #define paInt8 ((PaSampleFormat) 0x00000010) /**< @see PaSampleFormat */
|
cannam@92
|
441 #define paUInt8 ((PaSampleFormat) 0x00000020) /**< @see PaSampleFormat */
|
cannam@92
|
442 #define paCustomFormat ((PaSampleFormat) 0x00010000) /**< @see PaSampleFormat */
|
cannam@92
|
443
|
cannam@92
|
444 #define paNonInterleaved ((PaSampleFormat) 0x80000000) /**< @see PaSampleFormat */
|
cannam@92
|
445
|
cannam@92
|
446 /** A structure providing information and capabilities of PortAudio devices.
|
cannam@92
|
447 Devices may support input, output or both input and output.
|
cannam@92
|
448 */
|
cannam@92
|
449 typedef struct PaDeviceInfo
|
cannam@92
|
450 {
|
cannam@92
|
451 int structVersion; /* this is struct version 2 */
|
cannam@92
|
452 const char *name;
|
cannam@92
|
453 PaHostApiIndex hostApi; /**< note this is a host API index, not a type id*/
|
cannam@92
|
454
|
cannam@92
|
455 int maxInputChannels;
|
cannam@92
|
456 int maxOutputChannels;
|
cannam@92
|
457
|
cannam@92
|
458 /** Default latency values for interactive performance. */
|
cannam@92
|
459 PaTime defaultLowInputLatency;
|
cannam@92
|
460 PaTime defaultLowOutputLatency;
|
cannam@92
|
461 /** Default latency values for robust non-interactive applications (eg. playing sound files). */
|
cannam@92
|
462 PaTime defaultHighInputLatency;
|
cannam@92
|
463 PaTime defaultHighOutputLatency;
|
cannam@92
|
464
|
cannam@92
|
465 double defaultSampleRate;
|
cannam@92
|
466 } PaDeviceInfo;
|
cannam@92
|
467
|
cannam@92
|
468
|
cannam@92
|
469 /** Retrieve a pointer to a PaDeviceInfo structure containing information
|
cannam@92
|
470 about the specified device.
|
cannam@92
|
471 @return A pointer to an immutable PaDeviceInfo structure. If the device
|
cannam@92
|
472 parameter is out of range the function returns NULL.
|
cannam@92
|
473
|
cannam@92
|
474 @param device A valid device index in the range 0 to (Pa_GetDeviceCount()-1)
|
cannam@92
|
475
|
cannam@92
|
476 @note PortAudio manages the memory referenced by the returned pointer,
|
cannam@92
|
477 the client must not manipulate or free the memory. The pointer is only
|
cannam@92
|
478 guaranteed to be valid between calls to Pa_Initialize() and Pa_Terminate().
|
cannam@92
|
479
|
cannam@92
|
480 @see PaDeviceInfo, PaDeviceIndex
|
cannam@92
|
481 */
|
cannam@92
|
482 const PaDeviceInfo* Pa_GetDeviceInfo( PaDeviceIndex device );
|
cannam@92
|
483
|
cannam@92
|
484
|
cannam@92
|
485 /** Parameters for one direction (input or output) of a stream.
|
cannam@92
|
486 */
|
cannam@92
|
487 typedef struct PaStreamParameters
|
cannam@92
|
488 {
|
cannam@92
|
489 /** A valid device index in the range 0 to (Pa_GetDeviceCount()-1)
|
cannam@92
|
490 specifying the device to be used or the special constant
|
cannam@92
|
491 paUseHostApiSpecificDeviceSpecification which indicates that the actual
|
cannam@92
|
492 device(s) to use are specified in hostApiSpecificStreamInfo.
|
cannam@92
|
493 This field must not be set to paNoDevice.
|
cannam@92
|
494 */
|
cannam@92
|
495 PaDeviceIndex device;
|
cannam@92
|
496
|
cannam@92
|
497 /** The number of channels of sound to be delivered to the
|
cannam@92
|
498 stream callback or accessed by Pa_ReadStream() or Pa_WriteStream().
|
cannam@92
|
499 It can range from 1 to the value of maxInputChannels in the
|
cannam@92
|
500 PaDeviceInfo record for the device specified by the device parameter.
|
cannam@92
|
501 */
|
cannam@92
|
502 int channelCount;
|
cannam@92
|
503
|
cannam@92
|
504 /** The sample format of the buffer provided to the stream callback,
|
cannam@92
|
505 a_ReadStream() or Pa_WriteStream(). It may be any of the formats described
|
cannam@92
|
506 by the PaSampleFormat enumeration.
|
cannam@92
|
507 */
|
cannam@92
|
508 PaSampleFormat sampleFormat;
|
cannam@92
|
509
|
cannam@92
|
510 /** The desired latency in seconds. Where practical, implementations should
|
cannam@92
|
511 configure their latency based on these parameters, otherwise they may
|
cannam@92
|
512 choose the closest viable latency instead. Unless the suggested latency
|
cannam@92
|
513 is greater than the absolute upper limit for the device implementations
|
cannam@92
|
514 should round the suggestedLatency up to the next practical value - ie to
|
cannam@92
|
515 provide an equal or higher latency than suggestedLatency wherever possible.
|
cannam@92
|
516 Actual latency values for an open stream may be retrieved using the
|
cannam@92
|
517 inputLatency and outputLatency fields of the PaStreamInfo structure
|
cannam@92
|
518 returned by Pa_GetStreamInfo().
|
cannam@92
|
519 @see default*Latency in PaDeviceInfo, *Latency in PaStreamInfo
|
cannam@92
|
520 */
|
cannam@92
|
521 PaTime suggestedLatency;
|
cannam@92
|
522
|
cannam@92
|
523 /** An optional pointer to a host api specific data structure
|
cannam@92
|
524 containing additional information for device setup and/or stream processing.
|
cannam@92
|
525 hostApiSpecificStreamInfo is never required for correct operation,
|
cannam@92
|
526 if not used it should be set to NULL.
|
cannam@92
|
527 */
|
cannam@92
|
528 void *hostApiSpecificStreamInfo;
|
cannam@92
|
529
|
cannam@92
|
530 } PaStreamParameters;
|
cannam@92
|
531
|
cannam@92
|
532
|
cannam@92
|
533 /** Return code for Pa_IsFormatSupported indicating success. */
|
cannam@92
|
534 #define paFormatIsSupported (0)
|
cannam@92
|
535
|
cannam@92
|
536 /** Determine whether it would be possible to open a stream with the specified
|
cannam@92
|
537 parameters.
|
cannam@92
|
538
|
cannam@92
|
539 @param inputParameters A structure that describes the input parameters used to
|
cannam@92
|
540 open a stream. The suggestedLatency field is ignored. See PaStreamParameters
|
cannam@92
|
541 for a description of these parameters. inputParameters must be NULL for
|
cannam@92
|
542 output-only streams.
|
cannam@92
|
543
|
cannam@92
|
544 @param outputParameters A structure that describes the output parameters used
|
cannam@92
|
545 to open a stream. The suggestedLatency field is ignored. See PaStreamParameters
|
cannam@92
|
546 for a description of these parameters. outputParameters must be NULL for
|
cannam@92
|
547 input-only streams.
|
cannam@92
|
548
|
cannam@92
|
549 @param sampleRate The required sampleRate. For full-duplex streams it is the
|
cannam@92
|
550 sample rate for both input and output
|
cannam@92
|
551
|
cannam@92
|
552 @return Returns 0 if the format is supported, and an error code indicating why
|
cannam@92
|
553 the format is not supported otherwise. The constant paFormatIsSupported is
|
cannam@92
|
554 provided to compare with the return value for success.
|
cannam@92
|
555
|
cannam@92
|
556 @see paFormatIsSupported, PaStreamParameters
|
cannam@92
|
557 */
|
cannam@92
|
558 PaError Pa_IsFormatSupported( const PaStreamParameters *inputParameters,
|
cannam@92
|
559 const PaStreamParameters *outputParameters,
|
cannam@92
|
560 double sampleRate );
|
cannam@92
|
561
|
cannam@92
|
562
|
cannam@92
|
563
|
cannam@92
|
564 /* Streaming types and functions */
|
cannam@92
|
565
|
cannam@92
|
566
|
cannam@92
|
567 /**
|
cannam@92
|
568 A single PaStream can provide multiple channels of real-time
|
cannam@92
|
569 streaming audio input and output to a client application. A stream
|
cannam@92
|
570 provides access to audio hardware represented by one or more
|
cannam@92
|
571 PaDevices. Depending on the underlying Host API, it may be possible
|
cannam@92
|
572 to open multiple streams using the same device, however this behavior
|
cannam@92
|
573 is implementation defined. Portable applications should assume that
|
cannam@92
|
574 a PaDevice may be simultaneously used by at most one PaStream.
|
cannam@92
|
575
|
cannam@92
|
576 Pointers to PaStream objects are passed between PortAudio functions that
|
cannam@92
|
577 operate on streams.
|
cannam@92
|
578
|
cannam@92
|
579 @see Pa_OpenStream, Pa_OpenDefaultStream, Pa_OpenDefaultStream, Pa_CloseStream,
|
cannam@92
|
580 Pa_StartStream, Pa_StopStream, Pa_AbortStream, Pa_IsStreamActive,
|
cannam@92
|
581 Pa_GetStreamTime, Pa_GetStreamCpuLoad
|
cannam@92
|
582
|
cannam@92
|
583 */
|
cannam@92
|
584 typedef void PaStream;
|
cannam@92
|
585
|
cannam@92
|
586
|
cannam@92
|
587 /** Can be passed as the framesPerBuffer parameter to Pa_OpenStream()
|
cannam@92
|
588 or Pa_OpenDefaultStream() to indicate that the stream callback will
|
cannam@92
|
589 accept buffers of any size.
|
cannam@92
|
590 */
|
cannam@92
|
591 #define paFramesPerBufferUnspecified (0)
|
cannam@92
|
592
|
cannam@92
|
593
|
cannam@92
|
594 /** Flags used to control the behavior of a stream. They are passed as
|
cannam@92
|
595 parameters to Pa_OpenStream or Pa_OpenDefaultStream. Multiple flags may be
|
cannam@92
|
596 ORed together.
|
cannam@92
|
597
|
cannam@92
|
598 @see Pa_OpenStream, Pa_OpenDefaultStream
|
cannam@92
|
599 @see paNoFlag, paClipOff, paDitherOff, paNeverDropInput,
|
cannam@92
|
600 paPrimeOutputBuffersUsingStreamCallback, paPlatformSpecificFlags
|
cannam@92
|
601 */
|
cannam@92
|
602 typedef unsigned long PaStreamFlags;
|
cannam@92
|
603
|
cannam@92
|
604 /** @see PaStreamFlags */
|
cannam@92
|
605 #define paNoFlag ((PaStreamFlags) 0)
|
cannam@92
|
606
|
cannam@92
|
607 /** Disable default clipping of out of range samples.
|
cannam@92
|
608 @see PaStreamFlags
|
cannam@92
|
609 */
|
cannam@92
|
610 #define paClipOff ((PaStreamFlags) 0x00000001)
|
cannam@92
|
611
|
cannam@92
|
612 /** Disable default dithering.
|
cannam@92
|
613 @see PaStreamFlags
|
cannam@92
|
614 */
|
cannam@92
|
615 #define paDitherOff ((PaStreamFlags) 0x00000002)
|
cannam@92
|
616
|
cannam@92
|
617 /** Flag requests that where possible a full duplex stream will not discard
|
cannam@92
|
618 overflowed input samples without calling the stream callback. This flag is
|
cannam@92
|
619 only valid for full duplex callback streams and only when used in combination
|
cannam@92
|
620 with the paFramesPerBufferUnspecified (0) framesPerBuffer parameter. Using
|
cannam@92
|
621 this flag incorrectly results in a paInvalidFlag error being returned from
|
cannam@92
|
622 Pa_OpenStream and Pa_OpenDefaultStream.
|
cannam@92
|
623
|
cannam@92
|
624 @see PaStreamFlags, paFramesPerBufferUnspecified
|
cannam@92
|
625 */
|
cannam@92
|
626 #define paNeverDropInput ((PaStreamFlags) 0x00000004)
|
cannam@92
|
627
|
cannam@92
|
628 /** Call the stream callback to fill initial output buffers, rather than the
|
cannam@92
|
629 default behavior of priming the buffers with zeros (silence). This flag has
|
cannam@92
|
630 no effect for input-only and blocking read/write streams.
|
cannam@92
|
631
|
cannam@92
|
632 @see PaStreamFlags
|
cannam@92
|
633 */
|
cannam@92
|
634 #define paPrimeOutputBuffersUsingStreamCallback ((PaStreamFlags) 0x00000008)
|
cannam@92
|
635
|
cannam@92
|
636 /** A mask specifying the platform specific bits.
|
cannam@92
|
637 @see PaStreamFlags
|
cannam@92
|
638 */
|
cannam@92
|
639 #define paPlatformSpecificFlags ((PaStreamFlags)0xFFFF0000)
|
cannam@92
|
640
|
cannam@92
|
641 /**
|
cannam@92
|
642 Timing information for the buffers passed to the stream callback.
|
cannam@92
|
643
|
cannam@92
|
644 Time values are expressed in seconds and are synchronised with the time base used by Pa_GetStreamTime() for the associated stream.
|
cannam@92
|
645
|
cannam@92
|
646 @see PaStreamCallback, Pa_GetStreamTime
|
cannam@92
|
647 */
|
cannam@92
|
648 typedef struct PaStreamCallbackTimeInfo{
|
cannam@92
|
649 PaTime inputBufferAdcTime; /**< The time when the first sample of the input buffer was captured at the ADC input */
|
cannam@92
|
650 PaTime currentTime; /**< The time when the stream callback was invoked */
|
cannam@92
|
651 PaTime outputBufferDacTime; /**< The time when the first sample of the output buffer will output the DAC */
|
cannam@92
|
652 } PaStreamCallbackTimeInfo;
|
cannam@92
|
653
|
cannam@92
|
654
|
cannam@92
|
655 /**
|
cannam@92
|
656 Flag bit constants for the statusFlags to PaStreamCallback.
|
cannam@92
|
657
|
cannam@92
|
658 @see paInputUnderflow, paInputOverflow, paOutputUnderflow, paOutputOverflow,
|
cannam@92
|
659 paPrimingOutput
|
cannam@92
|
660 */
|
cannam@92
|
661 typedef unsigned long PaStreamCallbackFlags;
|
cannam@92
|
662
|
cannam@92
|
663 /** In a stream opened with paFramesPerBufferUnspecified, indicates that
|
cannam@92
|
664 input data is all silence (zeros) because no real data is available. In a
|
cannam@92
|
665 stream opened without paFramesPerBufferUnspecified, it indicates that one or
|
cannam@92
|
666 more zero samples have been inserted into the input buffer to compensate
|
cannam@92
|
667 for an input underflow.
|
cannam@92
|
668 @see PaStreamCallbackFlags
|
cannam@92
|
669 */
|
cannam@92
|
670 #define paInputUnderflow ((PaStreamCallbackFlags) 0x00000001)
|
cannam@92
|
671
|
cannam@92
|
672 /** In a stream opened with paFramesPerBufferUnspecified, indicates that data
|
cannam@92
|
673 prior to the first sample of the input buffer was discarded due to an
|
cannam@92
|
674 overflow, possibly because the stream callback is using too much CPU time.
|
cannam@92
|
675 Otherwise indicates that data prior to one or more samples in the
|
cannam@92
|
676 input buffer was discarded.
|
cannam@92
|
677 @see PaStreamCallbackFlags
|
cannam@92
|
678 */
|
cannam@92
|
679 #define paInputOverflow ((PaStreamCallbackFlags) 0x00000002)
|
cannam@92
|
680
|
cannam@92
|
681 /** Indicates that output data (or a gap) was inserted, possibly because the
|
cannam@92
|
682 stream callback is using too much CPU time.
|
cannam@92
|
683 @see PaStreamCallbackFlags
|
cannam@92
|
684 */
|
cannam@92
|
685 #define paOutputUnderflow ((PaStreamCallbackFlags) 0x00000004)
|
cannam@92
|
686
|
cannam@92
|
687 /** Indicates that output data will be discarded because no room is available.
|
cannam@92
|
688 @see PaStreamCallbackFlags
|
cannam@92
|
689 */
|
cannam@92
|
690 #define paOutputOverflow ((PaStreamCallbackFlags) 0x00000008)
|
cannam@92
|
691
|
cannam@92
|
692 /** Some of all of the output data will be used to prime the stream, input
|
cannam@92
|
693 data may be zero.
|
cannam@92
|
694 @see PaStreamCallbackFlags
|
cannam@92
|
695 */
|
cannam@92
|
696 #define paPrimingOutput ((PaStreamCallbackFlags) 0x00000010)
|
cannam@92
|
697
|
cannam@92
|
698 /**
|
cannam@92
|
699 Allowable return values for the PaStreamCallback.
|
cannam@92
|
700 @see PaStreamCallback
|
cannam@92
|
701 */
|
cannam@92
|
702 typedef enum PaStreamCallbackResult
|
cannam@92
|
703 {
|
cannam@92
|
704 paContinue=0, /**< Signal that the stream should continue invoking the callback and processing audio. */
|
cannam@92
|
705 paComplete=1, /**< Signal that the stream should stop invoking the callback and finish once all output samples have played. */
|
cannam@92
|
706 paAbort=2 /**< Signal that the stream should stop invoking the callback and finish as soon as possible. */
|
cannam@92
|
707 } PaStreamCallbackResult;
|
cannam@92
|
708
|
cannam@92
|
709
|
cannam@92
|
710 /**
|
cannam@92
|
711 Functions of type PaStreamCallback are implemented by PortAudio clients.
|
cannam@92
|
712 They consume, process or generate audio in response to requests from an
|
cannam@92
|
713 active PortAudio stream.
|
cannam@92
|
714
|
cannam@92
|
715 When a stream is running, PortAudio calls the stream callback periodically.
|
cannam@92
|
716 The callback function is responsible for processing buffers of audio samples
|
cannam@92
|
717 passed via the input and output parameters.
|
cannam@92
|
718
|
cannam@92
|
719 The PortAudio stream callback runs at very high or real-time priority.
|
cannam@92
|
720 It is required to consistently meet its time deadlines. Do not allocate
|
cannam@92
|
721 memory, access the file system, call library functions or call other functions
|
cannam@92
|
722 from the stream callback that may block or take an unpredictable amount of
|
cannam@92
|
723 time to complete.
|
cannam@92
|
724
|
cannam@92
|
725 In order for a stream to maintain glitch-free operation the callback
|
cannam@92
|
726 must consume and return audio data faster than it is recorded and/or
|
cannam@92
|
727 played. PortAudio anticipates that each callback invocation may execute for
|
cannam@92
|
728 a duration approaching the duration of frameCount audio frames at the stream
|
cannam@92
|
729 sample rate. It is reasonable to expect to be able to utilise 70% or more of
|
cannam@92
|
730 the available CPU time in the PortAudio callback. However, due to buffer size
|
cannam@92
|
731 adaption and other factors, not all host APIs are able to guarantee audio
|
cannam@92
|
732 stability under heavy CPU load with arbitrary fixed callback buffer sizes.
|
cannam@92
|
733 When high callback CPU utilisation is required the most robust behavior
|
cannam@92
|
734 can be achieved by using paFramesPerBufferUnspecified as the
|
cannam@92
|
735 Pa_OpenStream() framesPerBuffer parameter.
|
cannam@92
|
736
|
cannam@92
|
737 @param input and @param output are either arrays of interleaved samples or;
|
cannam@92
|
738 if non-interleaved samples were requested using the paNonInterleaved sample
|
cannam@92
|
739 format flag, an array of buffer pointers, one non-interleaved buffer for
|
cannam@92
|
740 each channel.
|
cannam@92
|
741
|
cannam@92
|
742 The format, packing and number of channels used by the buffers are
|
cannam@92
|
743 determined by parameters to Pa_OpenStream().
|
cannam@92
|
744
|
cannam@92
|
745 @param frameCount The number of sample frames to be processed by
|
cannam@92
|
746 the stream callback.
|
cannam@92
|
747
|
cannam@92
|
748 @param timeInfo Timestamps indicating the ADC capture time of the first sample
|
cannam@92
|
749 in the input buffer, the DAC output time of the first sample in the output buffer
|
cannam@92
|
750 and the time the callback was invoked.
|
cannam@92
|
751 See PaStreamCallbackTimeInfo and Pa_GetStreamTime()
|
cannam@92
|
752
|
cannam@92
|
753 @param statusFlags Flags indicating whether input and/or output buffers
|
cannam@92
|
754 have been inserted or will be dropped to overcome underflow or overflow
|
cannam@92
|
755 conditions.
|
cannam@92
|
756
|
cannam@92
|
757 @param userData The value of a user supplied pointer passed to
|
cannam@92
|
758 Pa_OpenStream() intended for storing synthesis data etc.
|
cannam@92
|
759
|
cannam@92
|
760 @return
|
cannam@92
|
761 The stream callback should return one of the values in the
|
cannam@92
|
762 ::PaStreamCallbackResult enumeration. To ensure that the callback continues
|
cannam@92
|
763 to be called, it should return paContinue (0). Either paComplete or paAbort
|
cannam@92
|
764 can be returned to finish stream processing, after either of these values is
|
cannam@92
|
765 returned the callback will not be called again. If paAbort is returned the
|
cannam@92
|
766 stream will finish as soon as possible. If paComplete is returned, the stream
|
cannam@92
|
767 will continue until all buffers generated by the callback have been played.
|
cannam@92
|
768 This may be useful in applications such as soundfile players where a specific
|
cannam@92
|
769 duration of output is required. However, it is not necessary to utilize this
|
cannam@92
|
770 mechanism as Pa_StopStream(), Pa_AbortStream() or Pa_CloseStream() can also
|
cannam@92
|
771 be used to stop the stream. The callback must always fill the entire output
|
cannam@92
|
772 buffer irrespective of its return value.
|
cannam@92
|
773
|
cannam@92
|
774 @see Pa_OpenStream, Pa_OpenDefaultStream
|
cannam@92
|
775
|
cannam@92
|
776 @note With the exception of Pa_GetStreamCpuLoad() it is not permissible to call
|
cannam@92
|
777 PortAudio API functions from within the stream callback.
|
cannam@92
|
778 */
|
cannam@92
|
779 typedef int PaStreamCallback(
|
cannam@92
|
780 const void *input, void *output,
|
cannam@92
|
781 unsigned long frameCount,
|
cannam@92
|
782 const PaStreamCallbackTimeInfo* timeInfo,
|
cannam@92
|
783 PaStreamCallbackFlags statusFlags,
|
cannam@92
|
784 void *userData );
|
cannam@92
|
785
|
cannam@92
|
786
|
cannam@92
|
787 /** Opens a stream for either input, output or both.
|
cannam@92
|
788
|
cannam@92
|
789 @param stream The address of a PaStream pointer which will receive
|
cannam@92
|
790 a pointer to the newly opened stream.
|
cannam@92
|
791
|
cannam@92
|
792 @param inputParameters A structure that describes the input parameters used by
|
cannam@92
|
793 the opened stream. See PaStreamParameters for a description of these parameters.
|
cannam@92
|
794 inputParameters must be NULL for output-only streams.
|
cannam@92
|
795
|
cannam@92
|
796 @param outputParameters A structure that describes the output parameters used by
|
cannam@92
|
797 the opened stream. See PaStreamParameters for a description of these parameters.
|
cannam@92
|
798 outputParameters must be NULL for input-only streams.
|
cannam@92
|
799
|
cannam@92
|
800 @param sampleRate The desired sampleRate. For full-duplex streams it is the
|
cannam@92
|
801 sample rate for both input and output
|
cannam@92
|
802
|
cannam@92
|
803 @param framesPerBuffer The number of frames passed to the stream callback
|
cannam@92
|
804 function, or the preferred block granularity for a blocking read/write stream.
|
cannam@92
|
805 The special value paFramesPerBufferUnspecified (0) may be used to request that
|
cannam@92
|
806 the stream callback will receive an optimal (and possibly varying) number of
|
cannam@92
|
807 frames based on host requirements and the requested latency settings.
|
cannam@92
|
808 Note: With some host APIs, the use of non-zero framesPerBuffer for a callback
|
cannam@92
|
809 stream may introduce an additional layer of buffering which could introduce
|
cannam@92
|
810 additional latency. PortAudio guarantees that the additional latency
|
cannam@92
|
811 will be kept to the theoretical minimum however, it is strongly recommended
|
cannam@92
|
812 that a non-zero framesPerBuffer value only be used when your algorithm
|
cannam@92
|
813 requires a fixed number of frames per stream callback.
|
cannam@92
|
814
|
cannam@92
|
815 @param streamFlags Flags which modify the behavior of the streaming process.
|
cannam@92
|
816 This parameter may contain a combination of flags ORed together. Some flags may
|
cannam@92
|
817 only be relevant to certain buffer formats.
|
cannam@92
|
818
|
cannam@92
|
819 @param streamCallback A pointer to a client supplied function that is responsible
|
cannam@92
|
820 for processing and filling input and output buffers. If this parameter is NULL
|
cannam@92
|
821 the stream will be opened in 'blocking read/write' mode. In blocking mode,
|
cannam@92
|
822 the client can receive sample data using Pa_ReadStream and write sample data
|
cannam@92
|
823 using Pa_WriteStream, the number of samples that may be read or written
|
cannam@92
|
824 without blocking is returned by Pa_GetStreamReadAvailable and
|
cannam@92
|
825 Pa_GetStreamWriteAvailable respectively.
|
cannam@92
|
826
|
cannam@92
|
827 @param userData A client supplied pointer which is passed to the stream callback
|
cannam@92
|
828 function. It could for example, contain a pointer to instance data necessary
|
cannam@92
|
829 for processing the audio buffers. This parameter is ignored if streamCallback
|
cannam@92
|
830 is NULL.
|
cannam@92
|
831
|
cannam@92
|
832 @return
|
cannam@92
|
833 Upon success Pa_OpenStream() returns paNoError and places a pointer to a
|
cannam@92
|
834 valid PaStream in the stream argument. The stream is inactive (stopped).
|
cannam@92
|
835 If a call to Pa_OpenStream() fails, a non-zero error code is returned (see
|
cannam@92
|
836 PaError for possible error codes) and the value of stream is invalid.
|
cannam@92
|
837
|
cannam@92
|
838 @see PaStreamParameters, PaStreamCallback, Pa_ReadStream, Pa_WriteStream,
|
cannam@92
|
839 Pa_GetStreamReadAvailable, Pa_GetStreamWriteAvailable
|
cannam@92
|
840 */
|
cannam@92
|
841 PaError Pa_OpenStream( PaStream** stream,
|
cannam@92
|
842 const PaStreamParameters *inputParameters,
|
cannam@92
|
843 const PaStreamParameters *outputParameters,
|
cannam@92
|
844 double sampleRate,
|
cannam@92
|
845 unsigned long framesPerBuffer,
|
cannam@92
|
846 PaStreamFlags streamFlags,
|
cannam@92
|
847 PaStreamCallback *streamCallback,
|
cannam@92
|
848 void *userData );
|
cannam@92
|
849
|
cannam@92
|
850
|
cannam@92
|
851 /** A simplified version of Pa_OpenStream() that opens the default input
|
cannam@92
|
852 and/or output devices.
|
cannam@92
|
853
|
cannam@92
|
854 @param stream The address of a PaStream pointer which will receive
|
cannam@92
|
855 a pointer to the newly opened stream.
|
cannam@92
|
856
|
cannam@92
|
857 @param numInputChannels The number of channels of sound that will be supplied
|
cannam@92
|
858 to the stream callback or returned by Pa_ReadStream. It can range from 1 to
|
cannam@92
|
859 the value of maxInputChannels in the PaDeviceInfo record for the default input
|
cannam@92
|
860 device. If 0 the stream is opened as an output-only stream.
|
cannam@92
|
861
|
cannam@92
|
862 @param numOutputChannels The number of channels of sound to be delivered to the
|
cannam@92
|
863 stream callback or passed to Pa_WriteStream. It can range from 1 to the value
|
cannam@92
|
864 of maxOutputChannels in the PaDeviceInfo record for the default output device.
|
cannam@92
|
865 If 0 the stream is opened as an output-only stream.
|
cannam@92
|
866
|
cannam@92
|
867 @param sampleFormat The sample format of both the input and output buffers
|
cannam@92
|
868 provided to the callback or passed to and from Pa_ReadStream and Pa_WriteStream.
|
cannam@92
|
869 sampleFormat may be any of the formats described by the PaSampleFormat
|
cannam@92
|
870 enumeration.
|
cannam@92
|
871
|
cannam@92
|
872 @param sampleRate Same as Pa_OpenStream parameter of the same name.
|
cannam@92
|
873 @param framesPerBuffer Same as Pa_OpenStream parameter of the same name.
|
cannam@92
|
874 @param streamCallback Same as Pa_OpenStream parameter of the same name.
|
cannam@92
|
875 @param userData Same as Pa_OpenStream parameter of the same name.
|
cannam@92
|
876
|
cannam@92
|
877 @return As for Pa_OpenStream
|
cannam@92
|
878
|
cannam@92
|
879 @see Pa_OpenStream, PaStreamCallback
|
cannam@92
|
880 */
|
cannam@92
|
881 PaError Pa_OpenDefaultStream( PaStream** stream,
|
cannam@92
|
882 int numInputChannels,
|
cannam@92
|
883 int numOutputChannels,
|
cannam@92
|
884 PaSampleFormat sampleFormat,
|
cannam@92
|
885 double sampleRate,
|
cannam@92
|
886 unsigned long framesPerBuffer,
|
cannam@92
|
887 PaStreamCallback *streamCallback,
|
cannam@92
|
888 void *userData );
|
cannam@92
|
889
|
cannam@92
|
890
|
cannam@92
|
891 /** Closes an audio stream. If the audio stream is active it
|
cannam@92
|
892 discards any pending buffers as if Pa_AbortStream() had been called.
|
cannam@92
|
893 */
|
cannam@92
|
894 PaError Pa_CloseStream( PaStream *stream );
|
cannam@92
|
895
|
cannam@92
|
896
|
cannam@92
|
897 /** Functions of type PaStreamFinishedCallback are implemented by PortAudio
|
cannam@92
|
898 clients. They can be registered with a stream using the Pa_SetStreamFinishedCallback
|
cannam@92
|
899 function. Once registered they are called when the stream becomes inactive
|
cannam@92
|
900 (ie once a call to Pa_StopStream() will not block).
|
cannam@92
|
901 A stream will become inactive after the stream callback returns non-zero,
|
cannam@92
|
902 or when Pa_StopStream or Pa_AbortStream is called. For a stream providing audio
|
cannam@92
|
903 output, if the stream callback returns paComplete, or Pa_StopStream is called,
|
cannam@92
|
904 the stream finished callback will not be called until all generated sample data
|
cannam@92
|
905 has been played.
|
cannam@92
|
906
|
cannam@92
|
907 @param userData The userData parameter supplied to Pa_OpenStream()
|
cannam@92
|
908
|
cannam@92
|
909 @see Pa_SetStreamFinishedCallback
|
cannam@92
|
910 */
|
cannam@92
|
911 typedef void PaStreamFinishedCallback( void *userData );
|
cannam@92
|
912
|
cannam@92
|
913
|
cannam@92
|
914 /** Register a stream finished callback function which will be called when the
|
cannam@92
|
915 stream becomes inactive. See the description of PaStreamFinishedCallback for
|
cannam@92
|
916 further details about when the callback will be called.
|
cannam@92
|
917
|
cannam@92
|
918 @param stream a pointer to a PaStream that is in the stopped state - if the
|
cannam@92
|
919 stream is not stopped, the stream's finished callback will remain unchanged
|
cannam@92
|
920 and an error code will be returned.
|
cannam@92
|
921
|
cannam@92
|
922 @param streamFinishedCallback a pointer to a function with the same signature
|
cannam@92
|
923 as PaStreamFinishedCallback, that will be called when the stream becomes
|
cannam@92
|
924 inactive. Passing NULL for this parameter will un-register a previously
|
cannam@92
|
925 registered stream finished callback function.
|
cannam@92
|
926
|
cannam@92
|
927 @return on success returns paNoError, otherwise an error code indicating the cause
|
cannam@92
|
928 of the error.
|
cannam@92
|
929
|
cannam@92
|
930 @see PaStreamFinishedCallback
|
cannam@92
|
931 */
|
cannam@92
|
932 PaError Pa_SetStreamFinishedCallback( PaStream *stream, PaStreamFinishedCallback* streamFinishedCallback );
|
cannam@92
|
933
|
cannam@92
|
934
|
cannam@92
|
935 /** Commences audio processing.
|
cannam@92
|
936 */
|
cannam@92
|
937 PaError Pa_StartStream( PaStream *stream );
|
cannam@92
|
938
|
cannam@92
|
939
|
cannam@92
|
940 /** Terminates audio processing. It waits until all pending
|
cannam@92
|
941 audio buffers have been played before it returns.
|
cannam@92
|
942 */
|
cannam@92
|
943 PaError Pa_StopStream( PaStream *stream );
|
cannam@92
|
944
|
cannam@92
|
945
|
cannam@92
|
946 /** Terminates audio processing immediately without waiting for pending
|
cannam@92
|
947 buffers to complete.
|
cannam@92
|
948 */
|
cannam@92
|
949 PaError Pa_AbortStream( PaStream *stream );
|
cannam@92
|
950
|
cannam@92
|
951
|
cannam@92
|
952 /** Determine whether the stream is stopped.
|
cannam@92
|
953 A stream is considered to be stopped prior to a successful call to
|
cannam@92
|
954 Pa_StartStream and after a successful call to Pa_StopStream or Pa_AbortStream.
|
cannam@92
|
955 If a stream callback returns a value other than paContinue the stream is NOT
|
cannam@92
|
956 considered to be stopped.
|
cannam@92
|
957
|
cannam@92
|
958 @return Returns one (1) when the stream is stopped, zero (0) when
|
cannam@92
|
959 the stream is running or, a PaErrorCode (which are always negative) if
|
cannam@92
|
960 PortAudio is not initialized or an error is encountered.
|
cannam@92
|
961
|
cannam@92
|
962 @see Pa_StopStream, Pa_AbortStream, Pa_IsStreamActive
|
cannam@92
|
963 */
|
cannam@92
|
964 PaError Pa_IsStreamStopped( PaStream *stream );
|
cannam@92
|
965
|
cannam@92
|
966
|
cannam@92
|
967 /** Determine whether the stream is active.
|
cannam@92
|
968 A stream is active after a successful call to Pa_StartStream(), until it
|
cannam@92
|
969 becomes inactive either as a result of a call to Pa_StopStream() or
|
cannam@92
|
970 Pa_AbortStream(), or as a result of a return value other than paContinue from
|
cannam@92
|
971 the stream callback. In the latter case, the stream is considered inactive
|
cannam@92
|
972 after the last buffer has finished playing.
|
cannam@92
|
973
|
cannam@92
|
974 @return Returns one (1) when the stream is active (ie playing or recording
|
cannam@92
|
975 audio), zero (0) when not playing or, a PaErrorCode (which are always negative)
|
cannam@92
|
976 if PortAudio is not initialized or an error is encountered.
|
cannam@92
|
977
|
cannam@92
|
978 @see Pa_StopStream, Pa_AbortStream, Pa_IsStreamStopped
|
cannam@92
|
979 */
|
cannam@92
|
980 PaError Pa_IsStreamActive( PaStream *stream );
|
cannam@92
|
981
|
cannam@92
|
982
|
cannam@92
|
983
|
cannam@92
|
984 /** A structure containing unchanging information about an open stream.
|
cannam@92
|
985 @see Pa_GetStreamInfo
|
cannam@92
|
986 */
|
cannam@92
|
987
|
cannam@92
|
988 typedef struct PaStreamInfo
|
cannam@92
|
989 {
|
cannam@92
|
990 /** this is struct version 1 */
|
cannam@92
|
991 int structVersion;
|
cannam@92
|
992
|
cannam@92
|
993 /** The input latency of the stream in seconds. This value provides the most
|
cannam@92
|
994 accurate estimate of input latency available to the implementation. It may
|
cannam@92
|
995 differ significantly from the suggestedLatency value passed to Pa_OpenStream().
|
cannam@92
|
996 The value of this field will be zero (0.) for output-only streams.
|
cannam@92
|
997 @see PaTime
|
cannam@92
|
998 */
|
cannam@92
|
999 PaTime inputLatency;
|
cannam@92
|
1000
|
cannam@92
|
1001 /** The output latency of the stream in seconds. This value provides the most
|
cannam@92
|
1002 accurate estimate of output latency available to the implementation. It may
|
cannam@92
|
1003 differ significantly from the suggestedLatency value passed to Pa_OpenStream().
|
cannam@92
|
1004 The value of this field will be zero (0.) for input-only streams.
|
cannam@92
|
1005 @see PaTime
|
cannam@92
|
1006 */
|
cannam@92
|
1007 PaTime outputLatency;
|
cannam@92
|
1008
|
cannam@92
|
1009 /** The sample rate of the stream in Hertz (samples per second). In cases
|
cannam@92
|
1010 where the hardware sample rate is inaccurate and PortAudio is aware of it,
|
cannam@92
|
1011 the value of this field may be different from the sampleRate parameter
|
cannam@92
|
1012 passed to Pa_OpenStream(). If information about the actual hardware sample
|
cannam@92
|
1013 rate is not available, this field will have the same value as the sampleRate
|
cannam@92
|
1014 parameter passed to Pa_OpenStream().
|
cannam@92
|
1015 */
|
cannam@92
|
1016 double sampleRate;
|
cannam@92
|
1017
|
cannam@92
|
1018 } PaStreamInfo;
|
cannam@92
|
1019
|
cannam@92
|
1020
|
cannam@92
|
1021 /** Retrieve a pointer to a PaStreamInfo structure containing information
|
cannam@92
|
1022 about the specified stream.
|
cannam@92
|
1023 @return A pointer to an immutable PaStreamInfo structure. If the stream
|
cannam@92
|
1024 parameter invalid, or an error is encountered, the function returns NULL.
|
cannam@92
|
1025
|
cannam@92
|
1026 @param stream A pointer to an open stream previously created with Pa_OpenStream.
|
cannam@92
|
1027
|
cannam@92
|
1028 @note PortAudio manages the memory referenced by the returned pointer,
|
cannam@92
|
1029 the client must not manipulate or free the memory. The pointer is only
|
cannam@92
|
1030 guaranteed to be valid until the specified stream is closed.
|
cannam@92
|
1031
|
cannam@92
|
1032 @see PaStreamInfo
|
cannam@92
|
1033 */
|
cannam@92
|
1034 const PaStreamInfo* Pa_GetStreamInfo( PaStream *stream );
|
cannam@92
|
1035
|
cannam@92
|
1036
|
cannam@92
|
1037 /** Returns the current time in seconds for a stream according to the same clock used
|
cannam@92
|
1038 to generate callback PaStreamCallbackTimeInfo timestamps. The time values are
|
cannam@92
|
1039 monotonically increasing and have unspecified origin.
|
cannam@92
|
1040
|
cannam@92
|
1041 Pa_GetStreamTime returns valid time values for the entire life of the stream,
|
cannam@92
|
1042 from when the stream is opened until it is closed. Starting and stopping the stream
|
cannam@92
|
1043 does not affect the passage of time returned by Pa_GetStreamTime.
|
cannam@92
|
1044
|
cannam@92
|
1045 This time may be used for synchronizing other events to the audio stream, for
|
cannam@92
|
1046 example synchronizing audio to MIDI.
|
cannam@92
|
1047
|
cannam@92
|
1048 @return The stream's current time in seconds, or 0 if an error occurred.
|
cannam@92
|
1049
|
cannam@92
|
1050 @see PaTime, PaStreamCallback, PaStreamCallbackTimeInfo
|
cannam@92
|
1051 */
|
cannam@92
|
1052 PaTime Pa_GetStreamTime( PaStream *stream );
|
cannam@92
|
1053
|
cannam@92
|
1054
|
cannam@92
|
1055 /** Retrieve CPU usage information for the specified stream.
|
cannam@92
|
1056 The "CPU Load" is a fraction of total CPU time consumed by a callback stream's
|
cannam@92
|
1057 audio processing routines including, but not limited to the client supplied
|
cannam@92
|
1058 stream callback. This function does not work with blocking read/write streams.
|
cannam@92
|
1059
|
cannam@92
|
1060 This function may be called from the stream callback function or the
|
cannam@92
|
1061 application.
|
cannam@92
|
1062
|
cannam@92
|
1063 @return
|
cannam@92
|
1064 A floating point value, typically between 0.0 and 1.0, where 1.0 indicates
|
cannam@92
|
1065 that the stream callback is consuming the maximum number of CPU cycles possible
|
cannam@92
|
1066 to maintain real-time operation. A value of 0.5 would imply that PortAudio and
|
cannam@92
|
1067 the stream callback was consuming roughly 50% of the available CPU time. The
|
cannam@92
|
1068 return value may exceed 1.0. A value of 0.0 will always be returned for a
|
cannam@92
|
1069 blocking read/write stream, or if an error occurs.
|
cannam@92
|
1070 */
|
cannam@92
|
1071 double Pa_GetStreamCpuLoad( PaStream* stream );
|
cannam@92
|
1072
|
cannam@92
|
1073
|
cannam@92
|
1074 /** Read samples from an input stream. The function doesn't return until
|
cannam@92
|
1075 the entire buffer has been filled - this may involve waiting for the operating
|
cannam@92
|
1076 system to supply the data.
|
cannam@92
|
1077
|
cannam@92
|
1078 @param stream A pointer to an open stream previously created with Pa_OpenStream.
|
cannam@92
|
1079
|
cannam@92
|
1080 @param buffer A pointer to a buffer of sample frames. The buffer contains
|
cannam@92
|
1081 samples in the format specified by the inputParameters->sampleFormat field
|
cannam@92
|
1082 used to open the stream, and the number of channels specified by
|
cannam@92
|
1083 inputParameters->numChannels. If non-interleaved samples were requested using
|
cannam@92
|
1084 the paNonInterleaved sample format flag, buffer is a pointer to the first element
|
cannam@92
|
1085 of an array of buffer pointers, one non-interleaved buffer for each channel.
|
cannam@92
|
1086
|
cannam@92
|
1087 @param frames The number of frames to be read into buffer. This parameter
|
cannam@92
|
1088 is not constrained to a specific range, however high performance applications
|
cannam@92
|
1089 will want to match this parameter to the framesPerBuffer parameter used
|
cannam@92
|
1090 when opening the stream.
|
cannam@92
|
1091
|
cannam@92
|
1092 @return On success PaNoError will be returned, or PaInputOverflowed if input
|
cannam@92
|
1093 data was discarded by PortAudio after the previous call and before this call.
|
cannam@92
|
1094 */
|
cannam@92
|
1095 PaError Pa_ReadStream( PaStream* stream,
|
cannam@92
|
1096 void *buffer,
|
cannam@92
|
1097 unsigned long frames );
|
cannam@92
|
1098
|
cannam@92
|
1099
|
cannam@92
|
1100 /** Write samples to an output stream. This function doesn't return until the
|
cannam@92
|
1101 entire buffer has been consumed - this may involve waiting for the operating
|
cannam@92
|
1102 system to consume the data.
|
cannam@92
|
1103
|
cannam@92
|
1104 @param stream A pointer to an open stream previously created with Pa_OpenStream.
|
cannam@92
|
1105
|
cannam@92
|
1106 @param buffer A pointer to a buffer of sample frames. The buffer contains
|
cannam@92
|
1107 samples in the format specified by the outputParameters->sampleFormat field
|
cannam@92
|
1108 used to open the stream, and the number of channels specified by
|
cannam@92
|
1109 outputParameters->numChannels. If non-interleaved samples were requested using
|
cannam@92
|
1110 the paNonInterleaved sample format flag, buffer is a pointer to the first element
|
cannam@92
|
1111 of an array of buffer pointers, one non-interleaved buffer for each channel.
|
cannam@92
|
1112
|
cannam@92
|
1113 @param frames The number of frames to be written from buffer. This parameter
|
cannam@92
|
1114 is not constrained to a specific range, however high performance applications
|
cannam@92
|
1115 will want to match this parameter to the framesPerBuffer parameter used
|
cannam@92
|
1116 when opening the stream.
|
cannam@92
|
1117
|
cannam@92
|
1118 @return On success PaNoError will be returned, or paOutputUnderflowed if
|
cannam@92
|
1119 additional output data was inserted after the previous call and before this
|
cannam@92
|
1120 call.
|
cannam@92
|
1121 */
|
cannam@92
|
1122 PaError Pa_WriteStream( PaStream* stream,
|
cannam@92
|
1123 const void *buffer,
|
cannam@92
|
1124 unsigned long frames );
|
cannam@92
|
1125
|
cannam@92
|
1126
|
cannam@92
|
1127 /** Retrieve the number of frames that can be read from the stream without
|
cannam@92
|
1128 waiting.
|
cannam@92
|
1129
|
cannam@92
|
1130 @return Returns a non-negative value representing the maximum number of frames
|
cannam@92
|
1131 that can be read from the stream without blocking or busy waiting or, a
|
cannam@92
|
1132 PaErrorCode (which are always negative) if PortAudio is not initialized or an
|
cannam@92
|
1133 error is encountered.
|
cannam@92
|
1134 */
|
cannam@92
|
1135 signed long Pa_GetStreamReadAvailable( PaStream* stream );
|
cannam@92
|
1136
|
cannam@92
|
1137
|
cannam@92
|
1138 /** Retrieve the number of frames that can be written to the stream without
|
cannam@92
|
1139 waiting.
|
cannam@92
|
1140
|
cannam@92
|
1141 @return Returns a non-negative value representing the maximum number of frames
|
cannam@92
|
1142 that can be written to the stream without blocking or busy waiting or, a
|
cannam@92
|
1143 PaErrorCode (which are always negative) if PortAudio is not initialized or an
|
cannam@92
|
1144 error is encountered.
|
cannam@92
|
1145 */
|
cannam@92
|
1146 signed long Pa_GetStreamWriteAvailable( PaStream* stream );
|
cannam@92
|
1147
|
cannam@92
|
1148
|
cannam@92
|
1149 /* Miscellaneous utilities */
|
cannam@92
|
1150
|
cannam@92
|
1151
|
cannam@92
|
1152 /** Retrieve the size of a given sample format in bytes.
|
cannam@92
|
1153
|
cannam@92
|
1154 @return The size in bytes of a single sample in the specified format,
|
cannam@92
|
1155 or paSampleFormatNotSupported if the format is not supported.
|
cannam@92
|
1156 */
|
cannam@92
|
1157 PaError Pa_GetSampleSize( PaSampleFormat format );
|
cannam@92
|
1158
|
cannam@92
|
1159
|
cannam@92
|
1160 /** Put the caller to sleep for at least 'msec' milliseconds. This function is
|
cannam@92
|
1161 provided only as a convenience for authors of portable code (such as the tests
|
cannam@92
|
1162 and examples in the PortAudio distribution.)
|
cannam@92
|
1163
|
cannam@92
|
1164 The function may sleep longer than requested so don't rely on this for accurate
|
cannam@92
|
1165 musical timing.
|
cannam@92
|
1166 */
|
cannam@92
|
1167 void Pa_Sleep( long msec );
|
cannam@92
|
1168
|
cannam@92
|
1169
|
cannam@92
|
1170
|
cannam@92
|
1171 #ifdef __cplusplus
|
cannam@92
|
1172 }
|
cannam@92
|
1173 #endif /* __cplusplus */
|
cannam@92
|
1174 #endif /* PORTAUDIO_H */
|