annotate osx/include/portaudio.h @ 83:ae30d91d2ffe

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