annotate src/portaudio_20161030_catalina_patch/include/portaudio.h @ 169:223a55898ab9 tip default

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