Version 0.62
[jack2.git] / windows / portaudio.h
blob57ccc36f33d65bfc324f95dfc62e29c51591e028
2 #ifndef PORTAUDIO_H
3 #define PORTAUDIO_H
4 /*
5 * $Id: portaudio.h,v 1.1.2.2 2006/06/20 14:44:48 letz Exp $
6 * PortAudio Portable Real-Time Audio Library
7 * PortAudio API Header File
8 * Latest version available at: http://www.portaudio.com/
10 * Copyright (c) 1999-2002 Ross Bencina and Phil Burk
12 * Permission is hereby granted, free of charge, to any person obtaining
13 * a copy of this software and associated documentation files
14 * (the "Software"), to deal in the Software without restriction,
15 * including without limitation the rights to use, copy, modify, merge,
16 * publish, distribute, sublicense, and/or sell copies of the Software,
17 * and to permit persons to whom the Software is furnished to do so,
18 * subject to the following conditions:
20 * The above copyright notice and this permission notice shall be
21 * included in all copies or substantial portions of the Software.
23 * Any person wishing to distribute modifications to the Software is
24 * requested to send the modifications to the original developer so that
25 * they can be incorporated into the canonical version.
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
30 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
31 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
32 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
33 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36 /** @file
37 @brief The PortAudio API.
41 #ifdef __cplusplus
42 extern "C"
44 #endif /* __cplusplus */
47 /** Retrieve the release number of the currently running PortAudio build,
48 eg 1900.
50 int Pa_GetVersion( void );
53 /** Retrieve a textual description of the current PortAudio build,
54 eg "PortAudio V19-devel 13 October 2002".
56 const char* Pa_GetVersionText( void );
59 /** Error codes returned by PortAudio functions.
60 Note that with the exception of paNoError, all PaErrorCodes are negative.
63 typedef int PaError;
64 typedef enum PaErrorCode
66 paNoError = 0,
68 paNotInitialized = -10000,
69 paUnanticipatedHostError,
70 paInvalidChannelCount,
71 paInvalidSampleRate,
72 paInvalidDevice,
73 paInvalidFlag,
74 paSampleFormatNotSupported,
75 paBadIODeviceCombination,
76 paInsufficientMemory,
77 paBufferTooBig,
78 paBufferTooSmall,
79 paNullCallback,
80 paBadStreamPtr,
81 paTimedOut,
82 paInternalError,
83 paDeviceUnavailable,
84 paIncompatibleHostApiSpecificStreamInfo,
85 paStreamIsStopped,
86 paStreamIsNotStopped,
87 paInputOverflowed,
88 paOutputUnderflowed,
89 paHostApiNotFound,
90 paInvalidHostApi,
91 paCanNotReadFromACallbackStream, /**< @todo review error code name */
92 paCanNotWriteToACallbackStream, /**< @todo review error code name */
93 paCanNotReadFromAnOutputOnlyStream, /**< @todo review error code name */
94 paCanNotWriteToAnInputOnlyStream, /**< @todo review error code name */
95 paIncompatibleStreamHostApi,
96 paBadBufferPtr
97 } PaErrorCode;
100 /** Translate the supplied PortAudio error code into a human readable
101 message.
103 const char *Pa_GetErrorText( PaError errorCode );
106 /** Library initialization function - call this before using PortAudio.
107 This function initialises internal data structures and prepares underlying
108 host APIs for use. This function MUST be called before using any other
109 PortAudio API functions.
111 If Pa_Initialize() is called multiple times, each successful
112 call must be matched with a corresponding call to Pa_Terminate().
113 Pairs of calls to Pa_Initialize()/Pa_Terminate() may overlap, and are not
114 required to be fully nested.
116 Note that if Pa_Initialize() returns an error code, Pa_Terminate() should
117 NOT be called.
119 @return paNoError if successful, otherwise an error code indicating the cause
120 of failure.
122 @see Pa_Terminate
124 PaError Pa_Initialize( void );
127 /** Library termination function - call this when finished using PortAudio.
128 This function deallocates all resources allocated by PortAudio since it was
129 initializied by a call to Pa_Initialize(). In cases where Pa_Initialise() has
130 been called multiple times, each call must be matched with a corresponding call
131 to Pa_Terminate(). The final matching call to Pa_Terminate() will automatically
132 close any PortAudio streams that are still open.
134 Pa_Terminate() MUST be called before exiting a program which uses PortAudio.
135 Failure to do so may result in serious resource leaks, such as audio devices
136 not being available until the next reboot.
138 @return paNoError if successful, otherwise an error code indicating the cause
139 of failure.
141 @see Pa_Initialize
143 PaError Pa_Terminate( void );
147 /** The type used to refer to audio devices. Values of this type usually
148 range from 0 to (Pa_DeviceCount-1), and may also take on the PaNoDevice
149 and paUseHostApiSpecificDeviceSpecification values.
151 @see Pa_DeviceCount, paNoDevice, paUseHostApiSpecificDeviceSpecification
153 typedef int PaDeviceIndex;
156 /** A special PaDeviceIndex value indicating that no device is available,
157 or should be used.
159 @see PaDeviceIndex
161 #define paNoDevice ((PaDeviceIndex)-1)
164 /** A special PaDeviceIndex value indicating that the device(s) to be used
165 are specified in the host api specific stream info structure.
167 @see PaDeviceIndex
169 #define paUseHostApiSpecificDeviceSpecification ((PaDeviceIndex)-2)
172 /* Host API enumeration mechanism */
174 /** The type used to enumerate to host APIs at runtime. Values of this type
175 range from 0 to (Pa_GetHostApiCount()-1).
177 @see Pa_GetHostApiCount
179 typedef int PaHostApiIndex;
182 /** Retrieve the number of available host APIs. Even if a host API is
183 available it may have no devices available.
185 @return A non-negative value indicating the number of available host APIs
186 or, a PaErrorCode (which are always negative) if PortAudio is not initialized
187 or an error is encountered.
189 @see PaHostApiIndex
191 PaHostApiIndex Pa_GetHostApiCount( void );
194 /** Retrieve the index of the default host API. The default host API will be
195 the lowest common denominator host API on the current platform and is
196 unlikely to provide the best performance.
198 @return A non-negative value ranging from 0 to (Pa_GetHostApiCount()-1)
199 indicating the default host API index or, a PaErrorCode (which are always
200 negative) if PortAudio is not initialized or an error is encountered.
202 PaHostApiIndex Pa_GetDefaultHostApi( void );
205 /** Unchanging unique identifiers for each supported host API. This type
206 is used in the PaHostApiInfo structure. The values are guaranteed to be
207 unique and to never change, thus allowing code to be written that
208 conditionally uses host API specific extensions.
210 New type ids will be allocated when support for a host API reaches
211 "public alpha" status, prior to that developers should use the
212 paInDevelopment type id.
214 @see PaHostApiInfo
216 typedef enum PaHostApiTypeId
218 paInDevelopment = 0, /* use while developing support for a new host API */
219 paDirectSound = 1,
220 paMME = 2,
221 paASIO = 3,
222 paSoundManager = 4,
223 paCoreAudio = 5,
224 paOSS = 7,
225 paALSA = 8,
226 paAL = 9,
227 paBeOS = 10,
228 paWDMKS = 11,
229 paJACK = 12,
230 paWASAPI = 13
231 } PaHostApiTypeId;
234 /** A structure containing information about a particular host API. */
236 typedef struct PaHostApiInfo {
237 /** this is struct version 1 */
238 int structVersion;
239 /** The well known unique identifier of this host API @see PaHostApiTypeId */
240 PaHostApiTypeId type;
241 /** A textual description of the host API for display on user interfaces. */
242 const char *name;
244 /** The number of devices belonging to this host API. This field may be
245 used in conjunction with Pa_HostApiDeviceIndexToDeviceIndex() to enumerate
246 all devices for this host API.
247 @see Pa_HostApiDeviceIndexToDeviceIndex
249 int deviceCount;
251 /** The default input device for this host API. The value will be a
252 device index ranging from 0 to (Pa_GetDeviceCount()-1), or paNoDevice
253 if no default input device is available.
255 PaDeviceIndex defaultInputDevice;
257 /** The default output device for this host API. The value will be a
258 device index ranging from 0 to (Pa_GetDeviceCount()-1), or paNoDevice
259 if no default output device is available.
261 PaDeviceIndex defaultOutputDevice;
264 PaHostApiInfo;
267 /** Retrieve a pointer to a structure containing information about a specific
268 host Api.
270 @param hostApi A valid host API index ranging from 0 to (Pa_GetHostApiCount()-1)
272 @return A pointer to an immutable PaHostApiInfo structure describing
273 a specific host API. If the hostApi parameter is out of range or an error
274 is encountered, the function returns NULL.
276 The returned structure is owned by the PortAudio implementation and must not
277 be manipulated or freed. The pointer is only guaranteed to be valid between
278 calls to Pa_Initialize() and Pa_Terminate().
280 const PaHostApiInfo * Pa_GetHostApiInfo( PaHostApiIndex hostApi );
283 /** Convert a static host API unique identifier, into a runtime
284 host API index.
286 @param type A unique host API identifier belonging to the PaHostApiTypeId
287 enumeration.
289 @return A valid PaHostApiIndex ranging from 0 to (Pa_GetHostApiCount()-1) or,
290 a PaErrorCode (which are always negative) if PortAudio is not initialized
291 or an error is encountered.
293 The paHostApiNotFound error code indicates that the host API specified by the
294 type parameter is not available.
296 @see PaHostApiTypeId
298 PaHostApiIndex Pa_HostApiTypeIdToHostApiIndex( PaHostApiTypeId type );
301 /** Convert a host-API-specific device index to standard PortAudio device index.
302 This function may be used in conjunction with the deviceCount field of
303 PaHostApiInfo to enumerate all devices for the specified host API.
305 @param hostApi A valid host API index ranging from 0 to (Pa_GetHostApiCount()-1)
307 @param hostApiDeviceIndex A valid per-host device index in the range
308 0 to (Pa_GetHostApiInfo(hostApi)->deviceCount-1)
310 @return A non-negative PaDeviceIndex ranging from 0 to (Pa_GetDeviceCount()-1)
311 or, a PaErrorCode (which are always negative) if PortAudio is not initialized
312 or an error is encountered.
314 A paInvalidHostApi error code indicates that the host API index specified by
315 the hostApi parameter is out of range.
317 A paInvalidDevice error code indicates that the hostApiDeviceIndex parameter
318 is out of range.
320 @see PaHostApiInfo
322 PaDeviceIndex Pa_HostApiDeviceIndexToDeviceIndex( PaHostApiIndex hostApi,
323 int hostApiDeviceIndex );
327 /** Structure used to return information about a host error condition.
329 typedef struct PaHostErrorInfo {
330 PaHostApiTypeId hostApiType; /**< the host API which returned the error code */
331 long errorCode; /**< the error code returned */
332 const char *errorText; /**< a textual description of the error if available, otherwise a zero-length string */
334 PaHostErrorInfo;
337 /** Return information about the last host error encountered. The error
338 information returned by Pa_GetLastHostErrorInfo() will never be modified
339 asyncronously by errors occurring in other PortAudio owned threads
340 (such as the thread that manages the stream callback.)
342 This function is provided as a last resort, primarily to enhance debugging
343 by providing clients with access to all available error information.
345 @return A pointer to an immutable structure constaining information about
346 the host error. The values in this structure will only be valid if a
347 PortAudio function has previously returned the paUnanticipatedHostError
348 error code.
350 const PaHostErrorInfo* Pa_GetLastHostErrorInfo( void );
354 /* Device enumeration and capabilities */
356 /** Retrieve the number of available devices. The number of available devices
357 may be zero.
359 @return A non-negative value indicating the number of available devices or,
360 a PaErrorCode (which are always negative) if PortAudio is not initialized
361 or an error is encountered.
363 PaDeviceIndex Pa_GetDeviceCount( void );
366 /** Retrieve the index of the default input device. The result can be
367 used in the inputDevice parameter to Pa_OpenStream().
369 @return The default input device index for the default host API, or paNoDevice
370 if no default input device is available or an error was encountered.
372 PaDeviceIndex Pa_GetDefaultInputDevice( void );
375 /** Retrieve the index of the default output device. The result can be
376 used in the outputDevice parameter to Pa_OpenStream().
378 @return The default output device index for the defualt host API, or paNoDevice
379 if no default output device is available or an error was encountered.
381 @note
382 On the PC, the user can specify a default device by
383 setting an environment variable. For example, to use device #1.
384 <pre>
385 set PA_RECOMMENDED_OUTPUT_DEVICE=1
386 </pre>
387 The user should first determine the available device ids by using
388 the supplied application "pa_devs".
390 PaDeviceIndex Pa_GetDefaultOutputDevice( void );
393 /** The type used to represent monotonic time in seconds that can be used
394 for syncronisation. The type is used for the outTime argument to the
395 PaStreamCallback and as the result of Pa_GetStreamTime().
397 @see PaStreamCallback, Pa_GetStreamTime
399 typedef double PaTime;
402 /** A type used to specify one or more sample formats. Each value indicates
403 a possible format for sound data passed to and from the stream callback,
404 Pa_ReadStream and Pa_WriteStream.
406 The standard formats paFloat32, paInt16, paInt32, paInt24, paInt8
407 and aUInt8 are usually implemented by all implementations.
409 The floating point representation (paFloat32) uses +1.0 and -1.0 as the
410 maximum and minimum respectively.
412 paUInt8 is an unsigned 8 bit format where 128 is considered "ground"
414 The paNonInterleaved flag indicates that a multichannel buffer is passed
415 as a set of non-interleaved pointers.
417 @see Pa_OpenStream, Pa_OpenDefaultStream, PaDeviceInfo
418 @see paFloat32, paInt16, paInt32, paInt24, paInt8
419 @see paUInt8, paCustomFormat, paNonInterleaved
421 typedef unsigned long PaSampleFormat;
424 #define paFloat32 ((PaSampleFormat) 0x00000001) /**< @see PaSampleFormat */
425 #define paInt32 ((PaSampleFormat) 0x00000002) /**< @see PaSampleFormat */
426 #define paInt24 ((PaSampleFormat) 0x00000004) /**< Packed 24 bit format. @see PaSampleFormat */
427 #define paInt16 ((PaSampleFormat) 0x00000008) /**< @see PaSampleFormat */
428 #define paInt8 ((PaSampleFormat) 0x00000010) /**< @see PaSampleFormat */
429 #define paUInt8 ((PaSampleFormat) 0x00000020) /**< @see PaSampleFormat */
430 #define paCustomFormat ((PaSampleFormat) 0x00010000)/**< @see PaSampleFormat */
432 #define paNonInterleaved ((PaSampleFormat) 0x80000000)
434 /** A structure providing information and capabilities of PortAudio devices.
435 Devices may support input, output or both input and output.
437 typedef struct PaDeviceInfo {
438 int structVersion; /* this is struct version 2 */
439 const char *name;
440 PaHostApiIndex hostApi; /* note this is a host API index, not a type id*/
442 int maxInputChannels;
443 int maxOutputChannels;
445 /* Default latency values for interactive performance. */
446 PaTime defaultLowInputLatency;
447 PaTime defaultLowOutputLatency;
448 /* Default latency values for robust non-interactive applications (eg. playing sound files). */
449 PaTime defaultHighInputLatency;
450 PaTime defaultHighOutputLatency;
452 double defaultSampleRate;
454 PaDeviceInfo;
457 /** Retrieve a pointer to a PaDeviceInfo structure containing information
458 about the specified device.
459 @return A pointer to an immutable PaDeviceInfo structure. If the device
460 parameter is out of range the function returns NULL.
462 @param device A valid device index in the range 0 to (Pa_GetDeviceCount()-1)
464 @note PortAudio manages the memory referenced by the returned pointer,
465 the client must not manipulate or free the memory. The pointer is only
466 guaranteed to be valid between calls to Pa_Initialize() and Pa_Terminate().
468 @see PaDeviceInfo, PaDeviceIndex
470 const PaDeviceInfo* Pa_GetDeviceInfo( PaDeviceIndex device );
473 /** Parameters for one direction (input or output) of a stream.
475 typedef struct PaStreamParameters {
476 /** A valid device index in the range 0 to (Pa_GetDeviceCount()-1)
477 specifying the device to be used or the special constant
478 paUseHostApiSpecificDeviceSpecification which indicates that the actual
479 device(s) to use are specified in hostApiSpecificStreamInfo.
480 This field must not be set to paNoDevice.
482 PaDeviceIndex device;
484 /** The number of channels of sound to be delivered to the
485 stream callback or accessed by Pa_ReadStream() or Pa_WriteStream().
486 It can range from 1 to the value of maxInputChannels in the
487 PaDeviceInfo record for the device specified by the device parameter.
489 int channelCount;
491 /** The sample format of the buffer provided to the stream callback,
492 a_ReadStream() or Pa_WriteStream(). It may be any of the formats described
493 by the PaSampleFormat enumeration.
495 PaSampleFormat sampleFormat;
497 /** The desired latency in seconds. Where practical, implementations should
498 configure their latency based on these parameters, otherwise they may
499 choose the closest viable latency instead. Unless the suggested latency
500 is greater than the absolute upper limit for the device implementations
501 should round the suggestedLatency up to the next practial value - ie to
502 provide an equal or higher latency than suggestedLatency wherever possibe.
503 Actual latency values for an open stream may be retrieved using the
504 inputLatency and outputLatency fields of the PaStreamInfo structure
505 returned by Pa_GetStreamInfo().
506 @see default*Latency in PaDeviceInfo, *Latency in PaStreamInfo
508 PaTime suggestedLatency;
510 /** An optional pointer to a host api specific data structure
511 containing additional information for device setup and/or stream processing.
512 hostApiSpecificStreamInfo is never required for correct operation,
513 if not used it should be set to NULL.
515 void *hostApiSpecificStreamInfo;
518 PaStreamParameters;
521 /** Return code for Pa_IsFormatSupported indicating success. */
522 #define paFormatIsSupported (0)
524 /** Determine whether it would be possible to open a stream with the specified
525 parameters.
527 @param inputParameters A structure that describes the input parameters used to
528 open a stream. The suggestedLatency field is ignored. See PaStreamParameters
529 for a description of these parameters. inputParameters must be NULL for
530 output-only streams.
532 @param outputParameters A structure that describes the output parameters used
533 to open a stream. The suggestedLatency field is ignored. See PaStreamParameters
534 for a description of these parameters. outputParameters must be NULL for
535 input-only streams.
537 @param sampleRate The required sampleRate. For full-duplex streams it is the
538 sample rate for both input and output
540 @return Returns 0 if the format is supported, and an error code indicating why
541 the format is not supported otherwise. The constant paFormatIsSupported is
542 provided to compare with the return value for success.
544 @see paFormatIsSupported, PaStreamParameters
546 PaError Pa_IsFormatSupported( const PaStreamParameters *inputParameters,
547 const PaStreamParameters *outputParameters,
548 double sampleRate );
552 /* Streaming types and functions */
556 A single PaStream can provide multiple channels of real-time
557 streaming audio input and output to a client application. A stream
558 provides access to audio hardware represented by one or more
559 PaDevices. Depending on the underlying Host API, it may be possible
560 to open multiple streams using the same device, however this behavior
561 is implementation defined. Portable applications should assume that
562 a PaDevice may be simultaneously used by at most one PaStream.
564 Pointers to PaStream objects are passed between PortAudio functions that
565 operate on streams.
567 @see Pa_OpenStream, Pa_OpenDefaultStream, Pa_OpenDefaultStream, Pa_CloseStream,
568 Pa_StartStream, Pa_StopStream, Pa_AbortStream, Pa_IsStreamActive,
569 Pa_GetStreamTime, Pa_GetStreamCpuLoad
572 typedef void PaStream;
575 /** Can be passed as the framesPerBuffer parameter to Pa_OpenStream()
576 or Pa_OpenDefaultStream() to indicate that the stream callback will
577 accept buffers of any size.
579 #define paFramesPerBufferUnspecified (0)
582 /** Flags used to control the behavior of a stream. They are passed as
583 parameters to Pa_OpenStream or Pa_OpenDefaultStream. Multiple flags may be
584 ORed together.
586 @see Pa_OpenStream, Pa_OpenDefaultStream
587 @see paNoFlag, paClipOff, paDitherOff, paNeverDropInput,
588 paPrimeOutputBuffersUsingStreamCallback, paPlatformSpecificFlags
590 typedef unsigned long PaStreamFlags;
592 /** @see PaStreamFlags */
593 #define paNoFlag ((PaStreamFlags) 0)
595 /** Disable default clipping of out of range samples.
596 @see PaStreamFlags
598 #define paClipOff ((PaStreamFlags) 0x00000001)
600 /** Disable default dithering.
601 @see PaStreamFlags
603 #define paDitherOff ((PaStreamFlags) 0x00000002)
605 /** Flag requests that where possible a full duplex stream will not discard
606 overflowed input samples without calling the stream callback. This flag is
607 only valid for full duplex callback streams and only when used in combination
608 with the paFramesPerBufferUnspecified (0) framesPerBuffer parameter. Using
609 this flag incorrectly results in a paInvalidFlag error being returned from
610 Pa_OpenStream and Pa_OpenDefaultStream.
612 @see PaStreamFlags, paFramesPerBufferUnspecified
614 #define paNeverDropInput ((PaStreamFlags) 0x00000004)
616 /** Call the stream callback to fill initial output buffers, rather than the
617 default behavior of priming the buffers with zeros (silence). This flag has
618 no effect for input-only and blocking read/write streams.
620 @see PaStreamFlags
622 #define paPrimeOutputBuffersUsingStreamCallback ((PaStreamFlags) 0x00000008)
624 /** A mask specifying the platform specific bits.
625 @see PaStreamFlags
627 #define paPlatformSpecificFlags ((PaStreamFlags)0xFFFF0000)
630 Timing information for the buffers passed to the stream callback.
632 typedef struct PaStreamCallbackTimeInfo {
633 PaTime inputBufferAdcTime;
634 PaTime currentTime;
635 PaTime outputBufferDacTime;
637 PaStreamCallbackTimeInfo;
641 Flag bit constants for the statusFlags to PaStreamCallback.
643 @see paInputUnderflow, paInputOverflow, paOutputUnderflow, paOutputOverflow,
644 paPrimingOutput
646 typedef unsigned long PaStreamCallbackFlags;
648 /** In a stream opened with paFramesPerBufferUnspecified, indicates that
649 input data is all silence (zeros) because no real data is available. In a
650 stream opened without paFramesPerBufferUnspecified, it indicates that one or
651 more zero samples have been inserted into the input buffer to compensate
652 for an input underflow.
653 @see PaStreamCallbackFlags
655 #define paInputUnderflow ((PaStreamCallbackFlags) 0x00000001)
657 /** In a stream opened with paFramesPerBufferUnspecified, indicates that data
658 prior to the first sample of the input buffer was discarded due to an
659 overflow, possibly because the stream callback is using too much CPU time.
660 Otherwise indicates that data prior to one or more samples in the
661 input buffer was discarded.
662 @see PaStreamCallbackFlags
664 #define paInputOverflow ((PaStreamCallbackFlags) 0x00000002)
666 /** Indicates that output data (or a gap) was inserted, possibly because the
667 stream callback is using too much CPU time.
668 @see PaStreamCallbackFlags
670 #define paOutputUnderflow ((PaStreamCallbackFlags) 0x00000004)
672 /** Indicates that output data will be discarded because no room is available.
673 @see PaStreamCallbackFlags
675 #define paOutputOverflow ((PaStreamCallbackFlags) 0x00000008)
677 /** Some of all of the output data will be used to prime the stream, input
678 data may be zero.
679 @see PaStreamCallbackFlags
681 #define paPrimingOutput ((PaStreamCallbackFlags) 0x00000010)
684 Allowable return values for the PaStreamCallback.
685 @see PaStreamCallback
687 typedef enum PaStreamCallbackResult
689 paContinue = 0,
690 paComplete = 1,
691 paAbort = 2
692 } PaStreamCallbackResult;
696 Functions of type PaStreamCallback are implemented by PortAudio clients.
697 They consume, process or generate audio in response to requests from an
698 active PortAudio stream.
700 @param input and @param output are arrays of interleaved samples,
701 the format, packing and number of channels used by the buffers are
702 determined by parameters to Pa_OpenStream().
704 @param frameCount The number of sample frames to be processed by
705 the stream callback.
707 @param timeInfo The time in seconds when the first sample of the input
708 buffer was received at the audio input, the time in seconds when the first
709 sample of the output buffer will begin being played at the audio output, and
710 the time in seconds when the stream callback was called.
711 See also Pa_GetStreamTime()
713 @param statusFlags Flags indicating whether input and/or output buffers
714 have been inserted or will be dropped to overcome underflow or overflow
715 conditions.
717 @param userData The value of a user supplied pointer passed to
718 Pa_OpenStream() intended for storing synthesis data etc.
720 @return
721 The stream callback should return one of the values in the
722 PaStreamCallbackResult enumeration. To ensure that the callback continues
723 to be called, it should return paContinue (0). Either paComplete or paAbort
724 can be returned to finish stream processing, after either of these values is
725 returned the callback will not be called again. If paAbort is returned the
726 stream will finish as soon as possible. If paComplete is returned, the stream
727 will continue until all buffers generated by the callback have been played.
728 This may be useful in applications such as soundfile players where a specific
729 duration of output is required. However, it is not necessary to utilise this
730 mechanism as Pa_StopStream(), Pa_AbortStream() or Pa_CloseStream() can also
731 be used to stop the stream. The callback must always fill the entire output
732 buffer irrespective of its return value.
734 @see Pa_OpenStream, Pa_OpenDefaultStream
736 @note With the exception of Pa_GetStreamCpuLoad() it is not permissable to call
737 PortAudio API functions from within the stream callback.
739 typedef int PaStreamCallback(
740 const void *input, void *output,
741 unsigned long frameCount,
742 const PaStreamCallbackTimeInfo* timeInfo,
743 PaStreamCallbackFlags statusFlags,
744 void *userData );
747 /** Opens a stream for either input, output or both.
749 @param stream The address of a PaStream pointer which will receive
750 a pointer to the newly opened stream.
752 @param inputParameters A structure that describes the input parameters used by
753 the opened stream. See PaStreamParameters for a description of these parameters.
754 inputParameters must be NULL for output-only streams.
756 @param outputParameters A structure that describes the output parameters used by
757 the opened stream. See PaStreamParameters for a description of these parameters.
758 outputParameters must be NULL for input-only streams.
760 @param sampleRate The desired sampleRate. For full-duplex streams it is the
761 sample rate for both input and output
763 @param framesPerBuffer The number of frames passed to the stream callback
764 function, or the preferred block granularity for a blocking read/write stream.
765 The special value paFramesPerBufferUnspecified (0) may be used to request that
766 the stream callback will recieve an optimal (and possibly varying) number of
767 frames based on host requirements and the requested latency settings.
768 Note: With some host APIs, the use of non-zero framesPerBuffer for a callback
769 stream may introduce an additional layer of buffering which could introduce
770 additional latency. PortAudio guarantees that the additional latency
771 will be kept to the theoretical minimum however, it is strongly recommended
772 that a non-zero framesPerBuffer value only be used when your algorithm
773 requires a fixed number of frames per stream callback.
775 @param streamFlags Flags which modify the behaviour of the streaming process.
776 This parameter may contain a combination of flags ORed together. Some flags may
777 only be relevant to certain buffer formats.
779 @param streamCallback A pointer to a client supplied function that is responsible
780 for processing and filling input and output buffers. If this parameter is NULL
781 the stream will be opened in 'blocking read/write' mode. In blocking mode,
782 the client can receive sample data using Pa_ReadStream and write sample data
783 using Pa_WriteStream, the number of samples that may be read or written
784 without blocking is returned by Pa_GetStreamReadAvailable and
785 Pa_GetStreamWriteAvailable respectively.
787 @param userData A client supplied pointer which is passed to the stream callback
788 function. It could for example, contain a pointer to instance data necessary
789 for processing the audio buffers. This parameter is ignored if streamCallback
790 is NULL.
792 @return
793 Upon success Pa_OpenStream() returns paNoError and places a pointer to a
794 valid PaStream in the stream argument. The stream is inactive (stopped).
795 If a call to Pa_OpenStream() fails, a non-zero error code is returned (see
796 PaError for possible error codes) and the value of stream is invalid.
798 @see PaStreamParameters, PaStreamCallback, Pa_ReadStream, Pa_WriteStream,
799 Pa_GetStreamReadAvailable, Pa_GetStreamWriteAvailable
801 PaError Pa_OpenStream( PaStream** stream,
802 const PaStreamParameters *inputParameters,
803 const PaStreamParameters *outputParameters,
804 double sampleRate,
805 unsigned long framesPerBuffer,
806 PaStreamFlags streamFlags,
807 PaStreamCallback *streamCallback,
808 void *userData );
811 /** A simplified version of Pa_OpenStream() that opens the default input
812 and/or output devices.
814 @param stream The address of a PaStream pointer which will receive
815 a pointer to the newly opened stream.
817 @param numInputChannels The number of channels of sound that will be supplied
818 to the stream callback or returned by Pa_ReadStream. It can range from 1 to
819 the value of maxInputChannels in the PaDeviceInfo record for the default input
820 device. If 0 the stream is opened as an output-only stream.
822 @param numOutputChannels The number of channels of sound to be delivered to the
823 stream callback or passed to Pa_WriteStream. It can range from 1 to the value
824 of maxOutputChannels in the PaDeviceInfo record for the default output dvice.
825 If 0 the stream is opened as an output-only stream.
827 @param sampleFormat The sample format of both the input and output buffers
828 provided to the callback or passed to and from Pa_ReadStream and Pa_WriteStream.
829 sampleFormat may be any of the formats described by the PaSampleFormat
830 enumeration.
832 @param sampleRate Same as Pa_OpenStream parameter of the same name.
833 @param framesPerBuffer Same as Pa_OpenStream parameter of the same name.
834 @param streamCallback Same as Pa_OpenStream parameter of the same name.
835 @param userData Same as Pa_OpenStream parameter of the same name.
837 @return As for Pa_OpenStream
839 @see Pa_OpenStream, PaStreamCallback
841 PaError Pa_OpenDefaultStream( PaStream** stream,
842 int numInputChannels,
843 int numOutputChannels,
844 PaSampleFormat sampleFormat,
845 double sampleRate,
846 unsigned long framesPerBuffer,
847 PaStreamCallback *streamCallback,
848 void *userData );
851 /** Closes an audio stream. If the audio stream is active it
852 discards any pending buffers as if Pa_AbortStream() had been called.
854 PaError Pa_CloseStream( PaStream *stream );
857 /** Functions of type PaStreamFinishedCallback are implemented by PortAudio
858 clients. They can be registered with a stream using the Pa_SetStreamFinishedCallback
859 function. Once registered they are called when the stream becomes inactive
860 (ie once a call to Pa_StopStream() will not block).
861 A stream will become inactive after the stream callback returns non-zero,
862 or when Pa_StopStream or Pa_AbortStream is called. For a stream providing audio
863 output, if the stream callback returns paComplete, or Pa_StopStream is called,
864 the stream finished callback will not be called until all generated sample data
865 has been played.
867 @param userData The userData parameter supplied to Pa_OpenStream()
869 @see Pa_SetStreamFinishedCallback
871 typedef void PaStreamFinishedCallback( void *userData );
874 /** Register a stream finished callback function which will be called when the
875 stream becomes inactive. See the description of PaStreamFinishedCallback for
876 further details about when the callback will be called.
878 @param stream a pointer to a PaStream that is in the stopped state - if the
879 stream is not stopped, the stream's finished callback will remain unchanged
880 and an error code will be returned.
882 @param streamFinishedCallback a pointer to a function with the same signature
883 as PaStreamFinishedCallback, that will be called when the stream becomes
884 inactive. Passing NULL for this parameter will un-register a previously
885 registered stream finished callback function.
887 @return on success returns paNoError, otherwise an error code indicating the cause
888 of the error.
890 @see PaStreamFinishedCallback
892 PaError Pa_SetStreamFinishedCallback( PaStream *stream, PaStreamFinishedCallback* streamFinishedCallback );
895 /** Commences audio processing.
897 PaError Pa_StartStream( PaStream *stream );
900 /** Terminates audio processing. It waits until all pending
901 audio buffers have been played before it returns.
903 PaError Pa_StopStream( PaStream *stream );
906 /** Terminates audio processing immediately without waiting for pending
907 buffers to complete.
909 PaError Pa_AbortStream( PaStream *stream );
912 /** Determine whether the stream is stopped.
913 A stream is considered to be stopped prior to a successful call to
914 Pa_StartStream and after a successful call to Pa_StopStream or Pa_AbortStream.
915 If a stream callback returns a value other than paContinue the stream is NOT
916 considered to be stopped.
918 @return Returns one (1) when the stream is stopped, zero (0) when
919 the stream is running or, a PaErrorCode (which are always negative) if
920 PortAudio is not initialized or an error is encountered.
922 @see Pa_StopStream, Pa_AbortStream, Pa_IsStreamActive
924 PaError Pa_IsStreamStopped( PaStream *stream );
927 /** Determine whether the stream is active.
928 A stream is active after a successful call to Pa_StartStream(), until it
929 becomes inactive either as a result of a call to Pa_StopStream() or
930 Pa_AbortStream(), or as a result of a return value other than paContinue from
931 the stream callback. In the latter case, the stream is considered inactive
932 after the last buffer has finished playing.
934 @return Returns one (1) when the stream is active (ie playing or recording
935 audio), zero (0) when not playing or, a PaErrorCode (which are always negative)
936 if PortAudio is not initialized or an error is encountered.
938 @see Pa_StopStream, Pa_AbortStream, Pa_IsStreamStopped
940 PaError Pa_IsStreamActive( PaStream *stream );
944 /** A structure containing unchanging information about an open stream.
945 @see Pa_GetStreamInfo
948 typedef struct PaStreamInfo {
949 /** this is struct version 1 */
950 int structVersion;
952 /** The input latency of the stream in seconds. This value provides the most
953 accurate estimate of input latency available to the implementation. It may
954 differ significantly from the suggestedLatency value passed to Pa_OpenStream().
955 The value of this field will be zero (0.) for output-only streams.
956 @see PaTime
958 PaTime inputLatency;
960 /** The output latency of the stream in seconds. This value provides the most
961 accurate estimate of output latency available to the implementation. It may
962 differ significantly from the suggestedLatency value passed to Pa_OpenStream().
963 The value of this field will be zero (0.) for input-only streams.
964 @see PaTime
966 PaTime outputLatency;
968 /** The sample rate of the stream in Hertz (samples per second). In cases
969 where the hardware sample rate is inaccurate and PortAudio is aware of it,
970 the value of this field may be different from the sampleRate parameter
971 passed to Pa_OpenStream(). If information about the actual hardware sample
972 rate is not available, this field will have the same value as the sampleRate
973 parameter passed to Pa_OpenStream().
975 double sampleRate;
978 PaStreamInfo;
981 /** Retrieve a pointer to a PaStreamInfo structure containing information
982 about the specified stream.
983 @return A pointer to an immutable PaStreamInfo structure. If the stream
984 parameter invalid, or an error is encountered, the function returns NULL.
986 @param stream A pointer to an open stream previously created with Pa_OpenStream.
988 @note PortAudio manages the memory referenced by the returned pointer,
989 the client must not manipulate or free the memory. The pointer is only
990 guaranteed to be valid until the specified stream is closed.
992 @see PaStreamInfo
994 const PaStreamInfo* Pa_GetStreamInfo( PaStream *stream );
997 /** Determine the current time for the stream according to the same clock used
998 to generate buffer timestamps. This time may be used for syncronising other
999 events to the audio stream, for example synchronizing audio to MIDI.
1001 @return The stream's current time in seconds, or 0 if an error occurred.
1003 @see PaTime, PaStreamCallback
1005 PaTime Pa_GetStreamTime( PaStream *stream );
1008 /** Retrieve CPU usage information for the specified stream.
1009 The "CPU Load" is a fraction of total CPU time consumed by a callback stream's
1010 audio processing routines including, but not limited to the client supplied
1011 stream callback. This function does not work with blocking read/write streams.
1013 This function may be called from the stream callback function or the
1014 application.
1016 @return
1017 A floating point value, typically between 0.0 and 1.0, where 1.0 indicates
1018 that the stream callback is consuming the maximum number of CPU cycles possible
1019 to maintain real-time operation. A value of 0.5 would imply that PortAudio and
1020 the stream callback was consuming roughly 50% of the available CPU time. The
1021 return value may exceed 1.0. A value of 0.0 will always be returned for a
1022 blocking read/write stream, or if an error occurrs.
1024 double Pa_GetStreamCpuLoad( PaStream* stream );
1027 /** Read samples from an input stream. The function doesn't return until
1028 the entire buffer has been filled - this may involve waiting for the operating
1029 system to supply the data.
1031 @param stream A pointer to an open stream previously created with Pa_OpenStream.
1033 @param buffer A pointer to a buffer of sample frames. The buffer contains
1034 samples in the format specified by the inputParameters->sampleFormat field
1035 used to open the stream, and the number of channels specified by
1036 inputParameters->numChannels. If non-interleaved samples were requested,
1037 buffer is a pointer to the first element of an array of non-interleaved
1038 buffer pointers, one for each channel.
1040 @param frames The number of frames to be read into buffer. This parameter
1041 is not constrained to a specific range, however high performance applications
1042 will want to match this parameter to the framesPerBuffer parameter used
1043 when opening the stream.
1045 @return On success PaNoError will be returned, or PaInputOverflowed if input
1046 data was discarded by PortAudio after the previous call and before this call.
1048 PaError Pa_ReadStream( PaStream* stream,
1049 void *buffer,
1050 unsigned long frames );
1053 /** Write samples to an output stream. This function doesn't return until the
1054 entire buffer has been consumed - this may involve waiting for the operating
1055 system to consume the data.
1057 @param stream A pointer to an open stream previously created with Pa_OpenStream.
1059 @param buffer A pointer to a buffer of sample frames. The buffer contains
1060 samples in the format specified by the outputParameters->sampleFormat field
1061 used to open the stream, and the number of channels specified by
1062 outputParameters->numChannels. If non-interleaved samples were requested,
1063 buffer is a pointer to the first element of an array of non-interleaved
1064 buffer pointers, one for each channel.
1066 @param frames The number of frames to be written from buffer. This parameter
1067 is not constrained to a specific range, however high performance applications
1068 will want to match this parameter to the framesPerBuffer parameter used
1069 when opening the stream.
1071 @return On success PaNoError will be returned, or paOutputUnderflowed if
1072 additional output data was inserted after the previous call and before this
1073 call.
1075 PaError Pa_WriteStream( PaStream* stream,
1076 const void *buffer,
1077 unsigned long frames );
1080 /** Retrieve the number of frames that can be read from the stream without
1081 waiting.
1083 @return Returns a non-negative value representing the maximum number of frames
1084 that can be read from the stream without blocking or busy waiting or, a
1085 PaErrorCode (which are always negative) if PortAudio is not initialized or an
1086 error is encountered.
1088 signed long Pa_GetStreamReadAvailable( PaStream* stream );
1091 /** Retrieve the number of frames that can be written to the stream without
1092 waiting.
1094 @return Returns a non-negative value representing the maximum number of frames
1095 that can be written to the stream without blocking or busy waiting or, a
1096 PaErrorCode (which are always negative) if PortAudio is not initialized or an
1097 error is encountered.
1099 signed long Pa_GetStreamWriteAvailable( PaStream* stream );
1102 /* Miscellaneous utilities */
1105 /** Retrieve the size of a given sample format in bytes.
1107 @return The size in bytes of a single sample in the specified format,
1108 or paSampleFormatNotSupported if the format is not supported.
1110 PaError Pa_GetSampleSize( PaSampleFormat format );
1113 /** Put the caller to sleep for at least 'msec' milliseconds. This function is
1114 provided only as a convenience for authors of portable code (such as the tests
1115 and examples in the PortAudio distribution.)
1117 The function may sleep longer than requested so don't rely on this for accurate
1118 musical timing.
1120 void Pa_Sleep( long msec );
1124 #ifdef __cplusplus
1126 #endif /* __cplusplus */
1127 #endif /* PORTAUDIO_H */