annotate osx/include/portaudio.h @ 116:e448888319fc

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