cannam@140: #ifndef PORTAUDIO_H cannam@140: #define PORTAUDIO_H cannam@140: /* cannam@140: * $Id$ cannam@140: * PortAudio Portable Real-Time Audio Library cannam@140: * PortAudio API Header File cannam@140: * Latest version available at: http://www.portaudio.com/ cannam@140: * cannam@140: * Copyright (c) 1999-2002 Ross Bencina and Phil Burk cannam@140: * cannam@140: * Permission is hereby granted, free of charge, to any person obtaining cannam@140: * a copy of this software and associated documentation files cannam@140: * (the "Software"), to deal in the Software without restriction, cannam@140: * including without limitation the rights to use, copy, modify, merge, cannam@140: * publish, distribute, sublicense, and/or sell copies of the Software, cannam@140: * and to permit persons to whom the Software is furnished to do so, cannam@140: * subject to the following conditions: cannam@140: * cannam@140: * The above copyright notice and this permission notice shall be cannam@140: * included in all copies or substantial portions of the Software. cannam@140: * cannam@140: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, cannam@140: * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF cannam@140: * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. cannam@140: * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR cannam@140: * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF cannam@140: * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION cannam@140: * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. cannam@140: */ cannam@140: cannam@140: /* cannam@140: * The text above constitutes the entire PortAudio license; however, cannam@140: * the PortAudio community also makes the following non-binding requests: cannam@140: * cannam@140: * Any person wishing to distribute modifications to the Software is cannam@140: * requested to send the modifications to the original developer so that cannam@140: * they can be incorporated into the canonical version. It is also cannam@140: * requested that these non-binding requests be included along with the cannam@140: * license above. cannam@140: */ cannam@140: cannam@140: /** @file cannam@140: @ingroup public_header cannam@140: @brief The portable PortAudio API. cannam@140: */ cannam@140: cannam@140: cannam@140: #ifdef __cplusplus cannam@140: extern "C" cannam@140: { cannam@140: #endif /* __cplusplus */ cannam@140: cannam@140: /** Retrieve the release number of the currently running PortAudio build. cannam@140: For example, for version "19.5.1" this will return 0x00130501. cannam@140: cannam@140: @see paMakeVersionNumber cannam@140: */ cannam@140: int Pa_GetVersion( void ); cannam@140: cannam@140: /** Retrieve a textual description of the current PortAudio build, cannam@140: e.g. "PortAudio V19.5.0-devel, revision 1952M". cannam@140: The format of the text may change in the future. Do not try to parse the cannam@140: returned string. cannam@140: cannam@140: @deprecated As of 19.5.0, use Pa_GetVersionInfo()->versionText instead. cannam@140: */ cannam@140: const char* Pa_GetVersionText( void ); cannam@140: cannam@140: /** cannam@140: Generate a packed integer version number in the same format used cannam@140: by Pa_GetVersion(). Use this to compare a specified version number with cannam@140: the currently running version. For example: cannam@140: cannam@140: @code cannam@140: if( Pa_GetVersion() < paMakeVersionNumber(19,5,1) ) {} cannam@140: @endcode cannam@140: cannam@140: @see Pa_GetVersion, Pa_GetVersionInfo cannam@140: @version Available as of 19.5.0. cannam@140: */ cannam@140: #define paMakeVersionNumber(major, minor, subminor) \ cannam@140: (((major)&0xFF)<<16 | ((minor)&0xFF)<<8 | ((subminor)&0xFF)) cannam@140: cannam@140: cannam@140: /** cannam@140: A structure containing PortAudio API version information. cannam@140: @see Pa_GetVersionInfo, paMakeVersionNumber cannam@140: @version Available as of 19.5.0. cannam@140: */ cannam@140: typedef struct PaVersionInfo { cannam@140: int versionMajor; cannam@140: int versionMinor; cannam@140: int versionSubMinor; cannam@140: /** cannam@140: This is currently the Git revision hash but may change in the future. cannam@140: The versionControlRevision is updated by running a script before compiling the library. cannam@140: If the update does not occur, this value may refer to an earlier revision. cannam@140: */ cannam@140: const char *versionControlRevision; cannam@140: /** Version as a string, for example "PortAudio V19.5.0-devel, revision 1952M" */ cannam@140: const char *versionText; cannam@140: } PaVersionInfo; cannam@140: cannam@140: /** Retrieve version information for the currently running PortAudio build. cannam@140: @return A pointer to an immutable PaVersionInfo structure. cannam@140: cannam@140: @note This function can be called at any time. It does not require PortAudio cannam@140: to be initialized. The structure pointed to is statically allocated. Do not cannam@140: attempt to free it or modify it. cannam@140: cannam@140: @see PaVersionInfo, paMakeVersionNumber cannam@140: @version Available as of 19.5.0. cannam@140: */ cannam@140: const PaVersionInfo* Pa_GetVersionInfo(); cannam@140: cannam@140: cannam@140: /** Error codes returned by PortAudio functions. cannam@140: Note that with the exception of paNoError, all PaErrorCodes are negative. cannam@140: */ cannam@140: cannam@140: typedef int PaError; cannam@140: typedef enum PaErrorCode cannam@140: { cannam@140: paNoError = 0, cannam@140: cannam@140: paNotInitialized = -10000, cannam@140: paUnanticipatedHostError, cannam@140: paInvalidChannelCount, cannam@140: paInvalidSampleRate, cannam@140: paInvalidDevice, cannam@140: paInvalidFlag, cannam@140: paSampleFormatNotSupported, cannam@140: paBadIODeviceCombination, cannam@140: paInsufficientMemory, cannam@140: paBufferTooBig, cannam@140: paBufferTooSmall, cannam@140: paNullCallback, cannam@140: paBadStreamPtr, cannam@140: paTimedOut, cannam@140: paInternalError, cannam@140: paDeviceUnavailable, cannam@140: paIncompatibleHostApiSpecificStreamInfo, cannam@140: paStreamIsStopped, cannam@140: paStreamIsNotStopped, cannam@140: paInputOverflowed, cannam@140: paOutputUnderflowed, cannam@140: paHostApiNotFound, cannam@140: paInvalidHostApi, cannam@140: paCanNotReadFromACallbackStream, cannam@140: paCanNotWriteToACallbackStream, cannam@140: paCanNotReadFromAnOutputOnlyStream, cannam@140: paCanNotWriteToAnInputOnlyStream, cannam@140: paIncompatibleStreamHostApi, cannam@140: paBadBufferPtr cannam@140: } PaErrorCode; cannam@140: cannam@140: cannam@140: /** Translate the supplied PortAudio error code into a human readable cannam@140: message. cannam@140: */ cannam@140: const char *Pa_GetErrorText( PaError errorCode ); cannam@140: cannam@140: cannam@140: /** Library initialization function - call this before using PortAudio. cannam@140: This function initializes internal data structures and prepares underlying cannam@140: host APIs for use. With the exception of Pa_GetVersion(), Pa_GetVersionText(), cannam@140: and Pa_GetErrorText(), this function MUST be called before using any other cannam@140: PortAudio API functions. cannam@140: cannam@140: If Pa_Initialize() is called multiple times, each successful cannam@140: call must be matched with a corresponding call to Pa_Terminate(). cannam@140: Pairs of calls to Pa_Initialize()/Pa_Terminate() may overlap, and are not cannam@140: required to be fully nested. cannam@140: cannam@140: Note that if Pa_Initialize() returns an error code, Pa_Terminate() should cannam@140: NOT be called. cannam@140: cannam@140: @return paNoError if successful, otherwise an error code indicating the cause cannam@140: of failure. cannam@140: cannam@140: @see Pa_Terminate cannam@140: */ cannam@140: PaError Pa_Initialize( void ); cannam@140: cannam@140: cannam@140: /** Library termination function - call this when finished using PortAudio. cannam@140: This function deallocates all resources allocated by PortAudio since it was cannam@140: initialized by a call to Pa_Initialize(). In cases where Pa_Initialise() has cannam@140: been called multiple times, each call must be matched with a corresponding call cannam@140: to Pa_Terminate(). The final matching call to Pa_Terminate() will automatically cannam@140: close any PortAudio streams that are still open. cannam@140: cannam@140: Pa_Terminate() MUST be called before exiting a program which uses PortAudio. cannam@140: Failure to do so may result in serious resource leaks, such as audio devices cannam@140: not being available until the next reboot. cannam@140: cannam@140: @return paNoError if successful, otherwise an error code indicating the cause cannam@140: of failure. cannam@140: cannam@140: @see Pa_Initialize cannam@140: */ cannam@140: PaError Pa_Terminate( void ); cannam@140: cannam@140: cannam@140: cannam@140: /** The type used to refer to audio devices. Values of this type usually cannam@140: range from 0 to (Pa_GetDeviceCount()-1), and may also take on the PaNoDevice cannam@140: and paUseHostApiSpecificDeviceSpecification values. cannam@140: cannam@140: @see Pa_GetDeviceCount, paNoDevice, paUseHostApiSpecificDeviceSpecification cannam@140: */ cannam@140: typedef int PaDeviceIndex; cannam@140: cannam@140: cannam@140: /** A special PaDeviceIndex value indicating that no device is available, cannam@140: or should be used. cannam@140: cannam@140: @see PaDeviceIndex cannam@140: */ cannam@140: #define paNoDevice ((PaDeviceIndex)-1) cannam@140: cannam@140: cannam@140: /** A special PaDeviceIndex value indicating that the device(s) to be used cannam@140: are specified in the host api specific stream info structure. cannam@140: cannam@140: @see PaDeviceIndex cannam@140: */ cannam@140: #define paUseHostApiSpecificDeviceSpecification ((PaDeviceIndex)-2) cannam@140: cannam@140: cannam@140: /* Host API enumeration mechanism */ cannam@140: cannam@140: /** The type used to enumerate to host APIs at runtime. Values of this type cannam@140: range from 0 to (Pa_GetHostApiCount()-1). cannam@140: cannam@140: @see Pa_GetHostApiCount cannam@140: */ cannam@140: typedef int PaHostApiIndex; cannam@140: cannam@140: cannam@140: /** Retrieve the number of available host APIs. Even if a host API is cannam@140: available it may have no devices available. cannam@140: cannam@140: @return A non-negative value indicating the number of available host APIs cannam@140: or, a PaErrorCode (which are always negative) if PortAudio is not initialized cannam@140: or an error is encountered. cannam@140: cannam@140: @see PaHostApiIndex cannam@140: */ cannam@140: PaHostApiIndex Pa_GetHostApiCount( void ); cannam@140: cannam@140: cannam@140: /** Retrieve the index of the default host API. The default host API will be cannam@140: the lowest common denominator host API on the current platform and is cannam@140: unlikely to provide the best performance. cannam@140: cannam@140: @return A non-negative value ranging from 0 to (Pa_GetHostApiCount()-1) cannam@140: indicating the default host API index or, a PaErrorCode (which are always cannam@140: negative) if PortAudio is not initialized or an error is encountered. cannam@140: */ cannam@140: PaHostApiIndex Pa_GetDefaultHostApi( void ); cannam@140: cannam@140: cannam@140: /** Unchanging unique identifiers for each supported host API. This type cannam@140: is used in the PaHostApiInfo structure. The values are guaranteed to be cannam@140: unique and to never change, thus allowing code to be written that cannam@140: conditionally uses host API specific extensions. cannam@140: cannam@140: New type ids will be allocated when support for a host API reaches cannam@140: "public alpha" status, prior to that developers should use the cannam@140: paInDevelopment type id. cannam@140: cannam@140: @see PaHostApiInfo cannam@140: */ cannam@140: typedef enum PaHostApiTypeId cannam@140: { cannam@140: paInDevelopment=0, /* use while developing support for a new host API */ cannam@140: paDirectSound=1, cannam@140: paMME=2, cannam@140: paASIO=3, cannam@140: paSoundManager=4, cannam@140: paCoreAudio=5, cannam@140: paOSS=7, cannam@140: paALSA=8, cannam@140: paAL=9, cannam@140: paBeOS=10, cannam@140: paWDMKS=11, cannam@140: paJACK=12, cannam@140: paWASAPI=13, cannam@140: paAudioScienceHPI=14 cannam@140: } PaHostApiTypeId; cannam@140: cannam@140: cannam@140: /** A structure containing information about a particular host API. */ cannam@140: cannam@140: typedef struct PaHostApiInfo cannam@140: { cannam@140: /** this is struct version 1 */ cannam@140: int structVersion; cannam@140: /** The well known unique identifier of this host API @see PaHostApiTypeId */ cannam@140: PaHostApiTypeId type; cannam@140: /** A textual description of the host API for display on user interfaces. */ cannam@140: const char *name; cannam@140: cannam@140: /** The number of devices belonging to this host API. This field may be cannam@140: used in conjunction with Pa_HostApiDeviceIndexToDeviceIndex() to enumerate cannam@140: all devices for this host API. cannam@140: @see Pa_HostApiDeviceIndexToDeviceIndex cannam@140: */ cannam@140: int deviceCount; cannam@140: cannam@140: /** The default input device for this host API. The value will be a cannam@140: device index ranging from 0 to (Pa_GetDeviceCount()-1), or paNoDevice cannam@140: if no default input device is available. cannam@140: */ cannam@140: PaDeviceIndex defaultInputDevice; cannam@140: cannam@140: /** The default output device for this host API. The value will be a cannam@140: device index ranging from 0 to (Pa_GetDeviceCount()-1), or paNoDevice cannam@140: if no default output device is available. cannam@140: */ cannam@140: PaDeviceIndex defaultOutputDevice; cannam@140: cannam@140: } PaHostApiInfo; cannam@140: cannam@140: cannam@140: /** Retrieve a pointer to a structure containing information about a specific cannam@140: host Api. cannam@140: cannam@140: @param hostApi A valid host API index ranging from 0 to (Pa_GetHostApiCount()-1) cannam@140: cannam@140: @return A pointer to an immutable PaHostApiInfo structure describing cannam@140: a specific host API. If the hostApi parameter is out of range or an error cannam@140: is encountered, the function returns NULL. cannam@140: cannam@140: The returned structure is owned by the PortAudio implementation and must not cannam@140: be manipulated or freed. The pointer is only guaranteed to be valid between cannam@140: calls to Pa_Initialize() and Pa_Terminate(). cannam@140: */ cannam@140: const PaHostApiInfo * Pa_GetHostApiInfo( PaHostApiIndex hostApi ); cannam@140: cannam@140: cannam@140: /** Convert a static host API unique identifier, into a runtime cannam@140: host API index. cannam@140: cannam@140: @param type A unique host API identifier belonging to the PaHostApiTypeId cannam@140: enumeration. cannam@140: cannam@140: @return A valid PaHostApiIndex ranging from 0 to (Pa_GetHostApiCount()-1) or, cannam@140: a PaErrorCode (which are always negative) if PortAudio is not initialized cannam@140: or an error is encountered. cannam@140: cannam@140: The paHostApiNotFound error code indicates that the host API specified by the cannam@140: type parameter is not available. cannam@140: cannam@140: @see PaHostApiTypeId cannam@140: */ cannam@140: PaHostApiIndex Pa_HostApiTypeIdToHostApiIndex( PaHostApiTypeId type ); cannam@140: cannam@140: cannam@140: /** Convert a host-API-specific device index to standard PortAudio device index. cannam@140: This function may be used in conjunction with the deviceCount field of cannam@140: PaHostApiInfo to enumerate all devices for the specified host API. cannam@140: cannam@140: @param hostApi A valid host API index ranging from 0 to (Pa_GetHostApiCount()-1) cannam@140: cannam@140: @param hostApiDeviceIndex A valid per-host device index in the range cannam@140: 0 to (Pa_GetHostApiInfo(hostApi)->deviceCount-1) cannam@140: cannam@140: @return A non-negative PaDeviceIndex ranging from 0 to (Pa_GetDeviceCount()-1) cannam@140: or, a PaErrorCode (which are always negative) if PortAudio is not initialized cannam@140: or an error is encountered. cannam@140: cannam@140: A paInvalidHostApi error code indicates that the host API index specified by cannam@140: the hostApi parameter is out of range. cannam@140: cannam@140: A paInvalidDevice error code indicates that the hostApiDeviceIndex parameter cannam@140: is out of range. cannam@140: cannam@140: @see PaHostApiInfo cannam@140: */ cannam@140: PaDeviceIndex Pa_HostApiDeviceIndexToDeviceIndex( PaHostApiIndex hostApi, cannam@140: int hostApiDeviceIndex ); cannam@140: cannam@140: cannam@140: cannam@140: /** Structure used to return information about a host error condition. cannam@140: */ cannam@140: typedef struct PaHostErrorInfo{ cannam@140: PaHostApiTypeId hostApiType; /**< the host API which returned the error code */ cannam@140: long errorCode; /**< the error code returned */ cannam@140: const char *errorText; /**< a textual description of the error if available, otherwise a zero-length string */ cannam@140: }PaHostErrorInfo; cannam@140: cannam@140: cannam@140: /** Return information about the last host error encountered. The error cannam@140: information returned by Pa_GetLastHostErrorInfo() will never be modified cannam@140: asynchronously by errors occurring in other PortAudio owned threads cannam@140: (such as the thread that manages the stream callback.) cannam@140: cannam@140: This function is provided as a last resort, primarily to enhance debugging cannam@140: by providing clients with access to all available error information. cannam@140: cannam@140: @return A pointer to an immutable structure constraining information about cannam@140: the host error. The values in this structure will only be valid if a cannam@140: PortAudio function has previously returned the paUnanticipatedHostError cannam@140: error code. cannam@140: */ cannam@140: const PaHostErrorInfo* Pa_GetLastHostErrorInfo( void ); cannam@140: cannam@140: cannam@140: cannam@140: /* Device enumeration and capabilities */ cannam@140: cannam@140: /** Retrieve the number of available devices. The number of available devices cannam@140: may be zero. cannam@140: cannam@140: @return A non-negative value indicating the number of available devices or, cannam@140: a PaErrorCode (which are always negative) if PortAudio is not initialized cannam@140: or an error is encountered. cannam@140: */ cannam@140: PaDeviceIndex Pa_GetDeviceCount( void ); cannam@140: cannam@140: cannam@140: /** Retrieve the index of the default input device. The result can be cannam@140: used in the inputDevice parameter to Pa_OpenStream(). cannam@140: cannam@140: @return The default input device index for the default host API, or paNoDevice cannam@140: if no default input device is available or an error was encountered. cannam@140: */ cannam@140: PaDeviceIndex Pa_GetDefaultInputDevice( void ); cannam@140: cannam@140: cannam@140: /** Retrieve the index of the default output device. The result can be cannam@140: used in the outputDevice parameter to Pa_OpenStream(). cannam@140: cannam@140: @return The default output device index for the default host API, or paNoDevice cannam@140: if no default output device is available or an error was encountered. cannam@140: cannam@140: @note cannam@140: On the PC, the user can specify a default device by cannam@140: setting an environment variable. For example, to use device #1. cannam@140:
cannam@140:  set PA_RECOMMENDED_OUTPUT_DEVICE=1
cannam@140: 
cannam@140: The user should first determine the available device ids by using cannam@140: the supplied application "pa_devs". cannam@140: */ cannam@140: PaDeviceIndex Pa_GetDefaultOutputDevice( void ); cannam@140: cannam@140: cannam@140: /** The type used to represent monotonic time in seconds. PaTime is cannam@140: used for the fields of the PaStreamCallbackTimeInfo argument to the cannam@140: PaStreamCallback and as the result of Pa_GetStreamTime(). cannam@140: cannam@140: PaTime values have unspecified origin. cannam@140: cannam@140: @see PaStreamCallback, PaStreamCallbackTimeInfo, Pa_GetStreamTime cannam@140: */ cannam@140: typedef double PaTime; cannam@140: cannam@140: cannam@140: /** A type used to specify one or more sample formats. Each value indicates cannam@140: a possible format for sound data passed to and from the stream callback, cannam@140: Pa_ReadStream and Pa_WriteStream. cannam@140: cannam@140: The standard formats paFloat32, paInt16, paInt32, paInt24, paInt8 cannam@140: and aUInt8 are usually implemented by all implementations. cannam@140: cannam@140: The floating point representation (paFloat32) uses +1.0 and -1.0 as the cannam@140: maximum and minimum respectively. cannam@140: cannam@140: paUInt8 is an unsigned 8 bit format where 128 is considered "ground" cannam@140: cannam@140: The paNonInterleaved flag indicates that audio data is passed as an array cannam@140: of pointers to separate buffers, one buffer for each channel. Usually, cannam@140: when this flag is not used, audio data is passed as a single buffer with cannam@140: all channels interleaved. cannam@140: cannam@140: @see Pa_OpenStream, Pa_OpenDefaultStream, PaDeviceInfo cannam@140: @see paFloat32, paInt16, paInt32, paInt24, paInt8 cannam@140: @see paUInt8, paCustomFormat, paNonInterleaved cannam@140: */ cannam@140: typedef unsigned long PaSampleFormat; cannam@140: cannam@140: cannam@140: #define paFloat32 ((PaSampleFormat) 0x00000001) /**< @see PaSampleFormat */ cannam@140: #define paInt32 ((PaSampleFormat) 0x00000002) /**< @see PaSampleFormat */ cannam@140: #define paInt24 ((PaSampleFormat) 0x00000004) /**< Packed 24 bit format. @see PaSampleFormat */ cannam@140: #define paInt16 ((PaSampleFormat) 0x00000008) /**< @see PaSampleFormat */ cannam@140: #define paInt8 ((PaSampleFormat) 0x00000010) /**< @see PaSampleFormat */ cannam@140: #define paUInt8 ((PaSampleFormat) 0x00000020) /**< @see PaSampleFormat */ cannam@140: #define paCustomFormat ((PaSampleFormat) 0x00010000) /**< @see PaSampleFormat */ cannam@140: cannam@140: #define paNonInterleaved ((PaSampleFormat) 0x80000000) /**< @see PaSampleFormat */ cannam@140: cannam@140: /** A structure providing information and capabilities of PortAudio devices. cannam@140: Devices may support input, output or both input and output. cannam@140: */ cannam@140: typedef struct PaDeviceInfo cannam@140: { cannam@140: int structVersion; /* this is struct version 2 */ cannam@140: const char *name; cannam@140: PaHostApiIndex hostApi; /**< note this is a host API index, not a type id*/ cannam@140: cannam@140: int maxInputChannels; cannam@140: int maxOutputChannels; cannam@140: cannam@140: /** Default latency values for interactive performance. */ cannam@140: PaTime defaultLowInputLatency; cannam@140: PaTime defaultLowOutputLatency; cannam@140: /** Default latency values for robust non-interactive applications (eg. playing sound files). */ cannam@140: PaTime defaultHighInputLatency; cannam@140: PaTime defaultHighOutputLatency; cannam@140: cannam@140: double defaultSampleRate; cannam@140: } PaDeviceInfo; cannam@140: cannam@140: cannam@140: /** Retrieve a pointer to a PaDeviceInfo structure containing information cannam@140: about the specified device. cannam@140: @return A pointer to an immutable PaDeviceInfo structure. If the device cannam@140: parameter is out of range the function returns NULL. cannam@140: cannam@140: @param device A valid device index in the range 0 to (Pa_GetDeviceCount()-1) cannam@140: cannam@140: @note PortAudio manages the memory referenced by the returned pointer, cannam@140: the client must not manipulate or free the memory. The pointer is only cannam@140: guaranteed to be valid between calls to Pa_Initialize() and Pa_Terminate(). cannam@140: cannam@140: @see PaDeviceInfo, PaDeviceIndex cannam@140: */ cannam@140: const PaDeviceInfo* Pa_GetDeviceInfo( PaDeviceIndex device ); cannam@140: cannam@140: cannam@140: /** Parameters for one direction (input or output) of a stream. cannam@140: */ cannam@140: typedef struct PaStreamParameters cannam@140: { cannam@140: /** A valid device index in the range 0 to (Pa_GetDeviceCount()-1) cannam@140: specifying the device to be used or the special constant cannam@140: paUseHostApiSpecificDeviceSpecification which indicates that the actual cannam@140: device(s) to use are specified in hostApiSpecificStreamInfo. cannam@140: This field must not be set to paNoDevice. cannam@140: */ cannam@140: PaDeviceIndex device; cannam@140: cannam@140: /** The number of channels of sound to be delivered to the cannam@140: stream callback or accessed by Pa_ReadStream() or Pa_WriteStream(). cannam@140: It can range from 1 to the value of maxInputChannels in the cannam@140: PaDeviceInfo record for the device specified by the device parameter. cannam@140: */ cannam@140: int channelCount; cannam@140: cannam@140: /** The sample format of the buffer provided to the stream callback, cannam@140: a_ReadStream() or Pa_WriteStream(). It may be any of the formats described cannam@140: by the PaSampleFormat enumeration. cannam@140: */ cannam@140: PaSampleFormat sampleFormat; cannam@140: cannam@140: /** The desired latency in seconds. Where practical, implementations should cannam@140: configure their latency based on these parameters, otherwise they may cannam@140: choose the closest viable latency instead. Unless the suggested latency cannam@140: is greater than the absolute upper limit for the device implementations cannam@140: should round the suggestedLatency up to the next practical value - ie to cannam@140: provide an equal or higher latency than suggestedLatency wherever possible. cannam@140: Actual latency values for an open stream may be retrieved using the cannam@140: inputLatency and outputLatency fields of the PaStreamInfo structure cannam@140: returned by Pa_GetStreamInfo(). cannam@140: @see default*Latency in PaDeviceInfo, *Latency in PaStreamInfo cannam@140: */ cannam@140: PaTime suggestedLatency; cannam@140: cannam@140: /** An optional pointer to a host api specific data structure cannam@140: containing additional information for device setup and/or stream processing. cannam@140: hostApiSpecificStreamInfo is never required for correct operation, cannam@140: if not used it should be set to NULL. cannam@140: */ cannam@140: void *hostApiSpecificStreamInfo; cannam@140: cannam@140: } PaStreamParameters; cannam@140: cannam@140: cannam@140: /** Return code for Pa_IsFormatSupported indicating success. */ cannam@140: #define paFormatIsSupported (0) cannam@140: cannam@140: /** Determine whether it would be possible to open a stream with the specified cannam@140: parameters. cannam@140: cannam@140: @param inputParameters A structure that describes the input parameters used to cannam@140: open a stream. The suggestedLatency field is ignored. See PaStreamParameters cannam@140: for a description of these parameters. inputParameters must be NULL for cannam@140: output-only streams. cannam@140: cannam@140: @param outputParameters A structure that describes the output parameters used cannam@140: to open a stream. The suggestedLatency field is ignored. See PaStreamParameters cannam@140: for a description of these parameters. outputParameters must be NULL for cannam@140: input-only streams. cannam@140: cannam@140: @param sampleRate The required sampleRate. For full-duplex streams it is the cannam@140: sample rate for both input and output cannam@140: cannam@140: @return Returns 0 if the format is supported, and an error code indicating why cannam@140: the format is not supported otherwise. The constant paFormatIsSupported is cannam@140: provided to compare with the return value for success. cannam@140: cannam@140: @see paFormatIsSupported, PaStreamParameters cannam@140: */ cannam@140: PaError Pa_IsFormatSupported( const PaStreamParameters *inputParameters, cannam@140: const PaStreamParameters *outputParameters, cannam@140: double sampleRate ); cannam@140: cannam@140: cannam@140: cannam@140: /* Streaming types and functions */ cannam@140: cannam@140: cannam@140: /** cannam@140: A single PaStream can provide multiple channels of real-time cannam@140: streaming audio input and output to a client application. A stream cannam@140: provides access to audio hardware represented by one or more cannam@140: PaDevices. Depending on the underlying Host API, it may be possible cannam@140: to open multiple streams using the same device, however this behavior cannam@140: is implementation defined. Portable applications should assume that cannam@140: a PaDevice may be simultaneously used by at most one PaStream. cannam@140: cannam@140: Pointers to PaStream objects are passed between PortAudio functions that cannam@140: operate on streams. cannam@140: cannam@140: @see Pa_OpenStream, Pa_OpenDefaultStream, Pa_OpenDefaultStream, Pa_CloseStream, cannam@140: Pa_StartStream, Pa_StopStream, Pa_AbortStream, Pa_IsStreamActive, cannam@140: Pa_GetStreamTime, Pa_GetStreamCpuLoad cannam@140: cannam@140: */ cannam@140: typedef void PaStream; cannam@140: cannam@140: cannam@140: /** Can be passed as the framesPerBuffer parameter to Pa_OpenStream() cannam@140: or Pa_OpenDefaultStream() to indicate that the stream callback will cannam@140: accept buffers of any size. cannam@140: */ cannam@140: #define paFramesPerBufferUnspecified (0) cannam@140: cannam@140: cannam@140: /** Flags used to control the behavior of a stream. They are passed as cannam@140: parameters to Pa_OpenStream or Pa_OpenDefaultStream. Multiple flags may be cannam@140: ORed together. cannam@140: cannam@140: @see Pa_OpenStream, Pa_OpenDefaultStream cannam@140: @see paNoFlag, paClipOff, paDitherOff, paNeverDropInput, cannam@140: paPrimeOutputBuffersUsingStreamCallback, paPlatformSpecificFlags cannam@140: */ cannam@140: typedef unsigned long PaStreamFlags; cannam@140: cannam@140: /** @see PaStreamFlags */ cannam@140: #define paNoFlag ((PaStreamFlags) 0) cannam@140: cannam@140: /** Disable default clipping of out of range samples. cannam@140: @see PaStreamFlags cannam@140: */ cannam@140: #define paClipOff ((PaStreamFlags) 0x00000001) cannam@140: cannam@140: /** Disable default dithering. cannam@140: @see PaStreamFlags cannam@140: */ cannam@140: #define paDitherOff ((PaStreamFlags) 0x00000002) cannam@140: cannam@140: /** Flag requests that where possible a full duplex stream will not discard cannam@140: overflowed input samples without calling the stream callback. This flag is cannam@140: only valid for full duplex callback streams and only when used in combination cannam@140: with the paFramesPerBufferUnspecified (0) framesPerBuffer parameter. Using cannam@140: this flag incorrectly results in a paInvalidFlag error being returned from cannam@140: Pa_OpenStream and Pa_OpenDefaultStream. cannam@140: cannam@140: @see PaStreamFlags, paFramesPerBufferUnspecified cannam@140: */ cannam@140: #define paNeverDropInput ((PaStreamFlags) 0x00000004) cannam@140: cannam@140: /** Call the stream callback to fill initial output buffers, rather than the cannam@140: default behavior of priming the buffers with zeros (silence). This flag has cannam@140: no effect for input-only and blocking read/write streams. cannam@140: cannam@140: @see PaStreamFlags cannam@140: */ cannam@140: #define paPrimeOutputBuffersUsingStreamCallback ((PaStreamFlags) 0x00000008) cannam@140: cannam@140: /** A mask specifying the platform specific bits. cannam@140: @see PaStreamFlags cannam@140: */ cannam@140: #define paPlatformSpecificFlags ((PaStreamFlags)0xFFFF0000) cannam@140: cannam@140: /** cannam@140: Timing information for the buffers passed to the stream callback. cannam@140: cannam@140: Time values are expressed in seconds and are synchronised with the time base used by Pa_GetStreamTime() for the associated stream. cannam@140: cannam@140: @see PaStreamCallback, Pa_GetStreamTime cannam@140: */ cannam@140: typedef struct PaStreamCallbackTimeInfo{ cannam@140: PaTime inputBufferAdcTime; /**< The time when the first sample of the input buffer was captured at the ADC input */ cannam@140: PaTime currentTime; /**< The time when the stream callback was invoked */ cannam@140: PaTime outputBufferDacTime; /**< The time when the first sample of the output buffer will output the DAC */ cannam@140: } PaStreamCallbackTimeInfo; cannam@140: cannam@140: cannam@140: /** cannam@140: Flag bit constants for the statusFlags to PaStreamCallback. cannam@140: cannam@140: @see paInputUnderflow, paInputOverflow, paOutputUnderflow, paOutputOverflow, cannam@140: paPrimingOutput cannam@140: */ cannam@140: typedef unsigned long PaStreamCallbackFlags; cannam@140: cannam@140: /** In a stream opened with paFramesPerBufferUnspecified, indicates that cannam@140: input data is all silence (zeros) because no real data is available. In a cannam@140: stream opened without paFramesPerBufferUnspecified, it indicates that one or cannam@140: more zero samples have been inserted into the input buffer to compensate cannam@140: for an input underflow. cannam@140: @see PaStreamCallbackFlags cannam@140: */ cannam@140: #define paInputUnderflow ((PaStreamCallbackFlags) 0x00000001) cannam@140: cannam@140: /** In a stream opened with paFramesPerBufferUnspecified, indicates that data cannam@140: prior to the first sample of the input buffer was discarded due to an cannam@140: overflow, possibly because the stream callback is using too much CPU time. cannam@140: Otherwise indicates that data prior to one or more samples in the cannam@140: input buffer was discarded. cannam@140: @see PaStreamCallbackFlags cannam@140: */ cannam@140: #define paInputOverflow ((PaStreamCallbackFlags) 0x00000002) cannam@140: cannam@140: /** Indicates that output data (or a gap) was inserted, possibly because the cannam@140: stream callback is using too much CPU time. cannam@140: @see PaStreamCallbackFlags cannam@140: */ cannam@140: #define paOutputUnderflow ((PaStreamCallbackFlags) 0x00000004) cannam@140: cannam@140: /** Indicates that output data will be discarded because no room is available. cannam@140: @see PaStreamCallbackFlags cannam@140: */ cannam@140: #define paOutputOverflow ((PaStreamCallbackFlags) 0x00000008) cannam@140: cannam@140: /** Some of all of the output data will be used to prime the stream, input cannam@140: data may be zero. cannam@140: @see PaStreamCallbackFlags cannam@140: */ cannam@140: #define paPrimingOutput ((PaStreamCallbackFlags) 0x00000010) cannam@140: cannam@140: /** cannam@140: Allowable return values for the PaStreamCallback. cannam@140: @see PaStreamCallback cannam@140: */ cannam@140: typedef enum PaStreamCallbackResult cannam@140: { cannam@140: paContinue=0, /**< Signal that the stream should continue invoking the callback and processing audio. */ cannam@140: paComplete=1, /**< Signal that the stream should stop invoking the callback and finish once all output samples have played. */ cannam@140: paAbort=2 /**< Signal that the stream should stop invoking the callback and finish as soon as possible. */ cannam@140: } PaStreamCallbackResult; cannam@140: cannam@140: cannam@140: /** cannam@140: Functions of type PaStreamCallback are implemented by PortAudio clients. cannam@140: They consume, process or generate audio in response to requests from an cannam@140: active PortAudio stream. cannam@140: cannam@140: When a stream is running, PortAudio calls the stream callback periodically. cannam@140: The callback function is responsible for processing buffers of audio samples cannam@140: passed via the input and output parameters. cannam@140: cannam@140: The PortAudio stream callback runs at very high or real-time priority. cannam@140: It is required to consistently meet its time deadlines. Do not allocate cannam@140: memory, access the file system, call library functions or call other functions cannam@140: from the stream callback that may block or take an unpredictable amount of cannam@140: time to complete. cannam@140: cannam@140: In order for a stream to maintain glitch-free operation the callback cannam@140: must consume and return audio data faster than it is recorded and/or cannam@140: played. PortAudio anticipates that each callback invocation may execute for cannam@140: a duration approaching the duration of frameCount audio frames at the stream cannam@140: sample rate. It is reasonable to expect to be able to utilise 70% or more of cannam@140: the available CPU time in the PortAudio callback. However, due to buffer size cannam@140: adaption and other factors, not all host APIs are able to guarantee audio cannam@140: stability under heavy CPU load with arbitrary fixed callback buffer sizes. cannam@140: When high callback CPU utilisation is required the most robust behavior cannam@140: can be achieved by using paFramesPerBufferUnspecified as the cannam@140: Pa_OpenStream() framesPerBuffer parameter. cannam@140: cannam@140: @param input and @param output are either arrays of interleaved samples or; cannam@140: if non-interleaved samples were requested using the paNonInterleaved sample cannam@140: format flag, an array of buffer pointers, one non-interleaved buffer for cannam@140: each channel. cannam@140: cannam@140: The format, packing and number of channels used by the buffers are cannam@140: determined by parameters to Pa_OpenStream(). cannam@140: cannam@140: @param frameCount The number of sample frames to be processed by cannam@140: the stream callback. cannam@140: cannam@140: @param timeInfo Timestamps indicating the ADC capture time of the first sample cannam@140: in the input buffer, the DAC output time of the first sample in the output buffer cannam@140: and the time the callback was invoked. cannam@140: See PaStreamCallbackTimeInfo and Pa_GetStreamTime() cannam@140: cannam@140: @param statusFlags Flags indicating whether input and/or output buffers cannam@140: have been inserted or will be dropped to overcome underflow or overflow cannam@140: conditions. cannam@140: cannam@140: @param userData The value of a user supplied pointer passed to cannam@140: Pa_OpenStream() intended for storing synthesis data etc. cannam@140: cannam@140: @return cannam@140: The stream callback should return one of the values in the cannam@140: ::PaStreamCallbackResult enumeration. To ensure that the callback continues cannam@140: to be called, it should return paContinue (0). Either paComplete or paAbort cannam@140: can be returned to finish stream processing, after either of these values is cannam@140: returned the callback will not be called again. If paAbort is returned the cannam@140: stream will finish as soon as possible. If paComplete is returned, the stream cannam@140: will continue until all buffers generated by the callback have been played. cannam@140: This may be useful in applications such as soundfile players where a specific cannam@140: duration of output is required. However, it is not necessary to utilize this cannam@140: mechanism as Pa_StopStream(), Pa_AbortStream() or Pa_CloseStream() can also cannam@140: be used to stop the stream. The callback must always fill the entire output cannam@140: buffer irrespective of its return value. cannam@140: cannam@140: @see Pa_OpenStream, Pa_OpenDefaultStream cannam@140: cannam@140: @note With the exception of Pa_GetStreamCpuLoad() it is not permissible to call cannam@140: PortAudio API functions from within the stream callback. cannam@140: */ cannam@140: typedef int PaStreamCallback( cannam@140: const void *input, void *output, cannam@140: unsigned long frameCount, cannam@140: const PaStreamCallbackTimeInfo* timeInfo, cannam@140: PaStreamCallbackFlags statusFlags, cannam@140: void *userData ); cannam@140: cannam@140: cannam@140: /** Opens a stream for either input, output or both. cannam@140: cannam@140: @param stream The address of a PaStream pointer which will receive cannam@140: a pointer to the newly opened stream. cannam@140: cannam@140: @param inputParameters A structure that describes the input parameters used by cannam@140: the opened stream. See PaStreamParameters for a description of these parameters. cannam@140: inputParameters must be NULL for output-only streams. cannam@140: cannam@140: @param outputParameters A structure that describes the output parameters used by cannam@140: the opened stream. See PaStreamParameters for a description of these parameters. cannam@140: outputParameters must be NULL for input-only streams. cannam@140: cannam@140: @param sampleRate The desired sampleRate. For full-duplex streams it is the cannam@140: sample rate for both input and output cannam@140: cannam@140: @param framesPerBuffer The number of frames passed to the stream callback cannam@140: function, or the preferred block granularity for a blocking read/write stream. cannam@140: The special value paFramesPerBufferUnspecified (0) may be used to request that cannam@140: the stream callback will receive an optimal (and possibly varying) number of cannam@140: frames based on host requirements and the requested latency settings. cannam@140: Note: With some host APIs, the use of non-zero framesPerBuffer for a callback cannam@140: stream may introduce an additional layer of buffering which could introduce cannam@140: additional latency. PortAudio guarantees that the additional latency cannam@140: will be kept to the theoretical minimum however, it is strongly recommended cannam@140: that a non-zero framesPerBuffer value only be used when your algorithm cannam@140: requires a fixed number of frames per stream callback. cannam@140: cannam@140: @param streamFlags Flags which modify the behavior of the streaming process. cannam@140: This parameter may contain a combination of flags ORed together. Some flags may cannam@140: only be relevant to certain buffer formats. cannam@140: cannam@140: @param streamCallback A pointer to a client supplied function that is responsible cannam@140: for processing and filling input and output buffers. If this parameter is NULL cannam@140: the stream will be opened in 'blocking read/write' mode. In blocking mode, cannam@140: the client can receive sample data using Pa_ReadStream and write sample data cannam@140: using Pa_WriteStream, the number of samples that may be read or written cannam@140: without blocking is returned by Pa_GetStreamReadAvailable and cannam@140: Pa_GetStreamWriteAvailable respectively. cannam@140: cannam@140: @param userData A client supplied pointer which is passed to the stream callback cannam@140: function. It could for example, contain a pointer to instance data necessary cannam@140: for processing the audio buffers. This parameter is ignored if streamCallback cannam@140: is NULL. cannam@140: cannam@140: @return cannam@140: Upon success Pa_OpenStream() returns paNoError and places a pointer to a cannam@140: valid PaStream in the stream argument. The stream is inactive (stopped). cannam@140: If a call to Pa_OpenStream() fails, a non-zero error code is returned (see cannam@140: PaError for possible error codes) and the value of stream is invalid. cannam@140: cannam@140: @see PaStreamParameters, PaStreamCallback, Pa_ReadStream, Pa_WriteStream, cannam@140: Pa_GetStreamReadAvailable, Pa_GetStreamWriteAvailable cannam@140: */ cannam@140: PaError Pa_OpenStream( PaStream** stream, cannam@140: const PaStreamParameters *inputParameters, cannam@140: const PaStreamParameters *outputParameters, cannam@140: double sampleRate, cannam@140: unsigned long framesPerBuffer, cannam@140: PaStreamFlags streamFlags, cannam@140: PaStreamCallback *streamCallback, cannam@140: void *userData ); cannam@140: cannam@140: cannam@140: /** A simplified version of Pa_OpenStream() that opens the default input cannam@140: and/or output devices. cannam@140: cannam@140: @param stream The address of a PaStream pointer which will receive cannam@140: a pointer to the newly opened stream. cannam@140: cannam@140: @param numInputChannels The number of channels of sound that will be supplied cannam@140: to the stream callback or returned by Pa_ReadStream. It can range from 1 to cannam@140: the value of maxInputChannels in the PaDeviceInfo record for the default input cannam@140: device. If 0 the stream is opened as an output-only stream. cannam@140: cannam@140: @param numOutputChannels The number of channels of sound to be delivered to the cannam@140: stream callback or passed to Pa_WriteStream. It can range from 1 to the value cannam@140: of maxOutputChannels in the PaDeviceInfo record for the default output device. cannam@140: If 0 the stream is opened as an output-only stream. cannam@140: cannam@140: @param sampleFormat The sample format of both the input and output buffers cannam@140: provided to the callback or passed to and from Pa_ReadStream and Pa_WriteStream. cannam@140: sampleFormat may be any of the formats described by the PaSampleFormat cannam@140: enumeration. cannam@140: cannam@140: @param sampleRate Same as Pa_OpenStream parameter of the same name. cannam@140: @param framesPerBuffer Same as Pa_OpenStream parameter of the same name. cannam@140: @param streamCallback Same as Pa_OpenStream parameter of the same name. cannam@140: @param userData Same as Pa_OpenStream parameter of the same name. cannam@140: cannam@140: @return As for Pa_OpenStream cannam@140: cannam@140: @see Pa_OpenStream, PaStreamCallback cannam@140: */ cannam@140: PaError Pa_OpenDefaultStream( PaStream** stream, cannam@140: int numInputChannels, cannam@140: int numOutputChannels, cannam@140: PaSampleFormat sampleFormat, cannam@140: double sampleRate, cannam@140: unsigned long framesPerBuffer, cannam@140: PaStreamCallback *streamCallback, cannam@140: void *userData ); cannam@140: cannam@140: cannam@140: /** Closes an audio stream. If the audio stream is active it cannam@140: discards any pending buffers as if Pa_AbortStream() had been called. cannam@140: */ cannam@140: PaError Pa_CloseStream( PaStream *stream ); cannam@140: cannam@140: cannam@140: /** Functions of type PaStreamFinishedCallback are implemented by PortAudio cannam@140: clients. They can be registered with a stream using the Pa_SetStreamFinishedCallback cannam@140: function. Once registered they are called when the stream becomes inactive cannam@140: (ie once a call to Pa_StopStream() will not block). cannam@140: A stream will become inactive after the stream callback returns non-zero, cannam@140: or when Pa_StopStream or Pa_AbortStream is called. For a stream providing audio cannam@140: output, if the stream callback returns paComplete, or Pa_StopStream() is called, cannam@140: the stream finished callback will not be called until all generated sample data cannam@140: has been played. cannam@140: cannam@140: @param userData The userData parameter supplied to Pa_OpenStream() cannam@140: cannam@140: @see Pa_SetStreamFinishedCallback cannam@140: */ cannam@140: typedef void PaStreamFinishedCallback( void *userData ); cannam@140: cannam@140: cannam@140: /** Register a stream finished callback function which will be called when the cannam@140: stream becomes inactive. See the description of PaStreamFinishedCallback for cannam@140: further details about when the callback will be called. cannam@140: cannam@140: @param stream a pointer to a PaStream that is in the stopped state - if the cannam@140: stream is not stopped, the stream's finished callback will remain unchanged cannam@140: and an error code will be returned. cannam@140: cannam@140: @param streamFinishedCallback a pointer to a function with the same signature cannam@140: as PaStreamFinishedCallback, that will be called when the stream becomes cannam@140: inactive. Passing NULL for this parameter will un-register a previously cannam@140: registered stream finished callback function. cannam@140: cannam@140: @return on success returns paNoError, otherwise an error code indicating the cause cannam@140: of the error. cannam@140: cannam@140: @see PaStreamFinishedCallback cannam@140: */ cannam@140: PaError Pa_SetStreamFinishedCallback( PaStream *stream, PaStreamFinishedCallback* streamFinishedCallback ); cannam@140: cannam@140: cannam@140: /** Commences audio processing. cannam@140: */ cannam@140: PaError Pa_StartStream( PaStream *stream ); cannam@140: cannam@140: cannam@140: /** Terminates audio processing. It waits until all pending cannam@140: audio buffers have been played before it returns. cannam@140: */ cannam@140: PaError Pa_StopStream( PaStream *stream ); cannam@140: cannam@140: cannam@140: /** Terminates audio processing immediately without waiting for pending cannam@140: buffers to complete. cannam@140: */ cannam@140: PaError Pa_AbortStream( PaStream *stream ); cannam@140: cannam@140: cannam@140: /** Determine whether the stream is stopped. cannam@140: A stream is considered to be stopped prior to a successful call to cannam@140: Pa_StartStream and after a successful call to Pa_StopStream or Pa_AbortStream. cannam@140: If a stream callback returns a value other than paContinue the stream is NOT cannam@140: considered to be stopped. cannam@140: cannam@140: @return Returns one (1) when the stream is stopped, zero (0) when cannam@140: the stream is running or, a PaErrorCode (which are always negative) if cannam@140: PortAudio is not initialized or an error is encountered. cannam@140: cannam@140: @see Pa_StopStream, Pa_AbortStream, Pa_IsStreamActive cannam@140: */ cannam@140: PaError Pa_IsStreamStopped( PaStream *stream ); cannam@140: cannam@140: cannam@140: /** Determine whether the stream is active. cannam@140: A stream is active after a successful call to Pa_StartStream(), until it cannam@140: becomes inactive either as a result of a call to Pa_StopStream() or cannam@140: Pa_AbortStream(), or as a result of a return value other than paContinue from cannam@140: the stream callback. In the latter case, the stream is considered inactive cannam@140: after the last buffer has finished playing. cannam@140: cannam@140: @return Returns one (1) when the stream is active (ie playing or recording cannam@140: audio), zero (0) when not playing or, a PaErrorCode (which are always negative) cannam@140: if PortAudio is not initialized or an error is encountered. cannam@140: cannam@140: @see Pa_StopStream, Pa_AbortStream, Pa_IsStreamStopped cannam@140: */ cannam@140: PaError Pa_IsStreamActive( PaStream *stream ); cannam@140: cannam@140: cannam@140: cannam@140: /** A structure containing unchanging information about an open stream. cannam@140: @see Pa_GetStreamInfo cannam@140: */ cannam@140: cannam@140: typedef struct PaStreamInfo cannam@140: { cannam@140: /** this is struct version 1 */ cannam@140: int structVersion; cannam@140: cannam@140: /** The input latency of the stream in seconds. This value provides the most cannam@140: accurate estimate of input latency available to the implementation. It may cannam@140: differ significantly from the suggestedLatency value passed to Pa_OpenStream(). cannam@140: The value of this field will be zero (0.) for output-only streams. cannam@140: @see PaTime cannam@140: */ cannam@140: PaTime inputLatency; cannam@140: cannam@140: /** The output latency of the stream in seconds. This value provides the most cannam@140: accurate estimate of output latency available to the implementation. It may cannam@140: differ significantly from the suggestedLatency value passed to Pa_OpenStream(). cannam@140: The value of this field will be zero (0.) for input-only streams. cannam@140: @see PaTime cannam@140: */ cannam@140: PaTime outputLatency; cannam@140: cannam@140: /** The sample rate of the stream in Hertz (samples per second). In cases cannam@140: where the hardware sample rate is inaccurate and PortAudio is aware of it, cannam@140: the value of this field may be different from the sampleRate parameter cannam@140: passed to Pa_OpenStream(). If information about the actual hardware sample cannam@140: rate is not available, this field will have the same value as the sampleRate cannam@140: parameter passed to Pa_OpenStream(). cannam@140: */ cannam@140: double sampleRate; cannam@140: cannam@140: } PaStreamInfo; cannam@140: cannam@140: cannam@140: /** Retrieve a pointer to a PaStreamInfo structure containing information cannam@140: about the specified stream. cannam@140: @return A pointer to an immutable PaStreamInfo structure. If the stream cannam@140: parameter is invalid, or an error is encountered, the function returns NULL. cannam@140: cannam@140: @param stream A pointer to an open stream previously created with Pa_OpenStream. cannam@140: cannam@140: @note PortAudio manages the memory referenced by the returned pointer, cannam@140: the client must not manipulate or free the memory. The pointer is only cannam@140: guaranteed to be valid until the specified stream is closed. cannam@140: cannam@140: @see PaStreamInfo cannam@140: */ cannam@140: const PaStreamInfo* Pa_GetStreamInfo( PaStream *stream ); cannam@140: cannam@140: cannam@140: /** Returns the current time in seconds for a stream according to the same clock used cannam@140: to generate callback PaStreamCallbackTimeInfo timestamps. The time values are cannam@140: monotonically increasing and have unspecified origin. cannam@140: cannam@140: Pa_GetStreamTime returns valid time values for the entire life of the stream, cannam@140: from when the stream is opened until it is closed. Starting and stopping the stream cannam@140: does not affect the passage of time returned by Pa_GetStreamTime. cannam@140: cannam@140: This time may be used for synchronizing other events to the audio stream, for cannam@140: example synchronizing audio to MIDI. cannam@140: cannam@140: @return The stream's current time in seconds, or 0 if an error occurred. cannam@140: cannam@140: @see PaTime, PaStreamCallback, PaStreamCallbackTimeInfo cannam@140: */ cannam@140: PaTime Pa_GetStreamTime( PaStream *stream ); cannam@140: cannam@140: cannam@140: /** Retrieve CPU usage information for the specified stream. cannam@140: The "CPU Load" is a fraction of total CPU time consumed by a callback stream's cannam@140: audio processing routines including, but not limited to the client supplied cannam@140: stream callback. This function does not work with blocking read/write streams. cannam@140: cannam@140: This function may be called from the stream callback function or the cannam@140: application. cannam@140: cannam@140: @return cannam@140: A floating point value, typically between 0.0 and 1.0, where 1.0 indicates cannam@140: that the stream callback is consuming the maximum number of CPU cycles possible cannam@140: to maintain real-time operation. A value of 0.5 would imply that PortAudio and cannam@140: the stream callback was consuming roughly 50% of the available CPU time. The cannam@140: return value may exceed 1.0. A value of 0.0 will always be returned for a cannam@140: blocking read/write stream, or if an error occurs. cannam@140: */ cannam@140: double Pa_GetStreamCpuLoad( PaStream* stream ); cannam@140: cannam@140: cannam@140: /** Read samples from an input stream. The function doesn't return until cannam@140: the entire buffer has been filled - this may involve waiting for the operating cannam@140: system to supply the data. cannam@140: cannam@140: @param stream A pointer to an open stream previously created with Pa_OpenStream. cannam@140: cannam@140: @param buffer A pointer to a buffer of sample frames. The buffer contains cannam@140: samples in the format specified by the inputParameters->sampleFormat field cannam@140: used to open the stream, and the number of channels specified by cannam@140: inputParameters->numChannels. If non-interleaved samples were requested using cannam@140: the paNonInterleaved sample format flag, buffer is a pointer to the first element cannam@140: of an array of buffer pointers, one non-interleaved buffer for each channel. cannam@140: cannam@140: @param frames The number of frames to be read into buffer. This parameter cannam@140: is not constrained to a specific range, however high performance applications cannam@140: will want to match this parameter to the framesPerBuffer parameter used cannam@140: when opening the stream. cannam@140: cannam@140: @return On success PaNoError will be returned, or PaInputOverflowed if input cannam@140: data was discarded by PortAudio after the previous call and before this call. cannam@140: */ cannam@140: PaError Pa_ReadStream( PaStream* stream, cannam@140: void *buffer, cannam@140: unsigned long frames ); cannam@140: cannam@140: cannam@140: /** Write samples to an output stream. This function doesn't return until the cannam@140: entire buffer has been written - this may involve waiting for the operating cannam@140: system to consume the data. cannam@140: cannam@140: @param stream A pointer to an open stream previously created with Pa_OpenStream. cannam@140: cannam@140: @param buffer A pointer to a buffer of sample frames. The buffer contains cannam@140: samples in the format specified by the outputParameters->sampleFormat field cannam@140: used to open the stream, and the number of channels specified by cannam@140: outputParameters->numChannels. If non-interleaved samples were requested using cannam@140: the paNonInterleaved sample format flag, buffer is a pointer to the first element cannam@140: of an array of buffer pointers, one non-interleaved buffer for each channel. cannam@140: cannam@140: @param frames The number of frames to be written from buffer. This parameter cannam@140: is not constrained to a specific range, however high performance applications cannam@140: will want to match this parameter to the framesPerBuffer parameter used cannam@140: when opening the stream. cannam@140: cannam@140: @return On success PaNoError will be returned, or paOutputUnderflowed if cannam@140: additional output data was inserted after the previous call and before this cannam@140: call. cannam@140: */ cannam@140: PaError Pa_WriteStream( PaStream* stream, cannam@140: const void *buffer, cannam@140: unsigned long frames ); cannam@140: cannam@140: cannam@140: /** Retrieve the number of frames that can be read from the stream without cannam@140: waiting. cannam@140: cannam@140: @return Returns a non-negative value representing the maximum number of frames cannam@140: that can be read from the stream without blocking or busy waiting or, a cannam@140: PaErrorCode (which are always negative) if PortAudio is not initialized or an cannam@140: error is encountered. cannam@140: */ cannam@140: signed long Pa_GetStreamReadAvailable( PaStream* stream ); cannam@140: cannam@140: cannam@140: /** Retrieve the number of frames that can be written to the stream without cannam@140: waiting. cannam@140: cannam@140: @return Returns a non-negative value representing the maximum number of frames cannam@140: that can be written to the stream without blocking or busy waiting or, a cannam@140: PaErrorCode (which are always negative) if PortAudio is not initialized or an cannam@140: error is encountered. cannam@140: */ cannam@140: signed long Pa_GetStreamWriteAvailable( PaStream* stream ); cannam@140: cannam@140: cannam@140: /* Miscellaneous utilities */ cannam@140: cannam@140: cannam@140: /** Retrieve the size of a given sample format in bytes. cannam@140: cannam@140: @return The size in bytes of a single sample in the specified format, cannam@140: or paSampleFormatNotSupported if the format is not supported. cannam@140: */ cannam@140: PaError Pa_GetSampleSize( PaSampleFormat format ); cannam@140: cannam@140: cannam@140: /** Put the caller to sleep for at least 'msec' milliseconds. This function is cannam@140: provided only as a convenience for authors of portable code (such as the tests cannam@140: and examples in the PortAudio distribution.) cannam@140: cannam@140: The function may sleep longer than requested so don't rely on this for accurate cannam@140: musical timing. cannam@140: */ cannam@140: void Pa_Sleep( long msec ); cannam@140: cannam@140: cannam@140: cannam@140: #ifdef __cplusplus cannam@140: } cannam@140: #endif /* __cplusplus */ cannam@140: #endif /* PORTAUDIO_H */