wasapi: new API PaWasapi_SetStreamStateHandler() to be able to catch WASAPI error inside the rendering thread loop (and handle it gracefully, for example restart the stream), protect from dangling pointer during device list update, cleanup header
This commit is contained in:
parent
7572245aec
commit
83ab55b62d
3 changed files with 362 additions and 203 deletions
|
|
@ -45,10 +45,12 @@ PaWasapi_GetAudioClient @56
|
||||||
PaWasapi_UpdateDeviceList @57
|
PaWasapi_UpdateDeviceList @57
|
||||||
PaWasapi_GetDeviceCurrentFormat @58
|
PaWasapi_GetDeviceCurrentFormat @58
|
||||||
PaWasapi_GetDeviceDefaultFormat @59
|
PaWasapi_GetDeviceDefaultFormat @59
|
||||||
PaWasapi_GetDeviceRole @60
|
PaWasapi_GetDeviceMixFormat @60
|
||||||
PaWasapi_ThreadPriorityBoost @61
|
PaWasapi_GetDeviceRole @61
|
||||||
PaWasapi_ThreadPriorityRevert @62
|
PaWasapi_ThreadPriorityBoost @62
|
||||||
PaWasapi_GetFramesPerHostBuffer @63
|
PaWasapi_ThreadPriorityRevert @63
|
||||||
PaWasapi_GetJackCount @64
|
PaWasapi_GetFramesPerHostBuffer @64
|
||||||
PaWasapi_GetJackDescription @65
|
PaWasapi_GetJackCount @65
|
||||||
PaWasapi_SetDefaultInterfaceId @66
|
PaWasapi_GetJackDescription @66
|
||||||
|
PaWasapi_SetDefaultInterfaceId @67
|
||||||
|
PaWasapi_SetStreamStateHandler @68
|
||||||
|
|
@ -3,9 +3,11 @@
|
||||||
/*
|
/*
|
||||||
* $Id: $
|
* $Id: $
|
||||||
* PortAudio Portable Real-Time Audio Library
|
* PortAudio Portable Real-Time Audio Library
|
||||||
* DirectSound specific extensions
|
* WASAPI specific extensions
|
||||||
*
|
*
|
||||||
* Copyright (c) 1999-2007 Ross Bencina and Phil Burk
|
* Copyright (c) 1999-2018 Ross Bencina and Phil Burk
|
||||||
|
* Copyright (c) 2006-2010 David Viens
|
||||||
|
* Copyright (c) 2010-2018 Dmitry Kostjuchenko
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||||||
* a copy of this software and associated documentation files
|
* a copy of this software and associated documentation files
|
||||||
|
|
@ -28,13 +30,13 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The text above constitutes the entire PortAudio license; however,
|
* The text above constitutes the entire PortAudio license; however,
|
||||||
* the PortAudio community also makes the following non-binding requests:
|
* the PortAudio community also makes the following non-binding requests:
|
||||||
*
|
*
|
||||||
* Any person wishing to distribute modifications to the Software is
|
* Any person wishing to distribute modifications to the Software is
|
||||||
* requested to send the modifications to the original developer so that
|
* requested to send the modifications to the original developer so that
|
||||||
* they can be incorporated into the canonical version. It is also
|
* they can be incorporated into the canonical version. It is also
|
||||||
* requested that these non-binding requests be included along with the
|
* requested that these non-binding requests be included along with the
|
||||||
* license above.
|
* license above.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
@ -52,7 +54,7 @@ extern "C"
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
|
||||||
/* Setup flags */
|
/* Stream setup flags. */
|
||||||
typedef enum PaWasapiFlags
|
typedef enum PaWasapiFlags
|
||||||
{
|
{
|
||||||
/* put WASAPI into exclusive mode */
|
/* put WASAPI into exclusive mode */
|
||||||
|
|
@ -69,12 +71,12 @@ typedef enum PaWasapiFlags
|
||||||
method can only provide 15-20ms latency. */
|
method can only provide 15-20ms latency. */
|
||||||
paWinWasapiPolling = (1 << 3),
|
paWinWasapiPolling = (1 << 3),
|
||||||
|
|
||||||
/* force custom thread priority setting, must be used if PaWasapiStreamInfo::threadPriority
|
/* force custom thread priority setting, must be used if PaWasapiStreamInfo::threadPriority
|
||||||
is set to a custom value */
|
is set to a custom value */
|
||||||
paWinWasapiThreadPriority = (1 << 4),
|
paWinWasapiThreadPriority = (1 << 4),
|
||||||
|
|
||||||
/* force explicit sample format and do not allow PA to select suitable working format, API will
|
/* force explicit sample format and do not allow PA to select suitable working format, API will
|
||||||
fail if provided sample format is not supported by audio hardware in Exclusive mode
|
fail if provided sample format is not supported by audio hardware in Exclusive mode
|
||||||
or system mixer in Shared mode */
|
or system mixer in Shared mode */
|
||||||
paWinWasapiExplicitSampleFormat = (1 << 5)
|
paWinWasapiExplicitSampleFormat = (1 << 5)
|
||||||
}
|
}
|
||||||
|
|
@ -87,15 +89,62 @@ PaWasapiFlags;
|
||||||
#define paWinWasapiExplicitSampleFormat (paWinWasapiExplicitSampleFormat)
|
#define paWinWasapiExplicitSampleFormat (paWinWasapiExplicitSampleFormat)
|
||||||
|
|
||||||
|
|
||||||
/* Host processor. Allows to skip internal PA processing completely.
|
/* Stream state.
|
||||||
You must set paWinWasapiRedirectHostProcessor flag to PaWasapiStreamInfo::flags member
|
|
||||||
in order to have host processor redirected to your callback.
|
@note Multiple states can be united into a bitmask.
|
||||||
Use with caution! inputFrames and outputFrames depend solely on final device setup.
|
@see PaWasapiStreamStateCallback, PaWasapi_SetStreamStateHandler
|
||||||
To query maximal values of inputFrames/outputFrames use PaWasapi_GetFramesPerHostBuffer.
|
|
||||||
*/
|
*/
|
||||||
typedef void (*PaWasapiHostProcessorCallback) (void *inputBuffer, long inputFrames,
|
typedef enum PaWasapiStreamState
|
||||||
void *outputBuffer, long outputFrames,
|
{
|
||||||
void *userData);
|
/* state change was caused by the error:
|
||||||
|
|
||||||
|
Example:
|
||||||
|
1) If thread execution stopped due to AUDCLNT_E_RESOURCES_INVALIDATED then state
|
||||||
|
value will contain paWasapiStreamStateError|paWasapiStreamStateThreadStop.
|
||||||
|
*/
|
||||||
|
paWasapiStreamStateError = (1 << 0),
|
||||||
|
|
||||||
|
/* processing thread is preparing to start execution */
|
||||||
|
paWasapiStreamStateThreadPrepare = (1 << 1),
|
||||||
|
|
||||||
|
/* processing thread started execution (enters its loop) */
|
||||||
|
paWasapiStreamStateThreadStart = (1 << 2),
|
||||||
|
|
||||||
|
/* processing thread stopped execution */
|
||||||
|
paWasapiStreamStateThreadStop = (1 << 3)
|
||||||
|
}
|
||||||
|
PaWasapiStreamState;
|
||||||
|
#define paWasapiStreamStateError (paWasapiStreamStateError)
|
||||||
|
#define paWasapiStreamStateThreadPrepare (paWasapiStreamStateThreadPrepare)
|
||||||
|
#define paWasapiStreamStateThreadStart (paWasapiStreamStateThreadStart)
|
||||||
|
#define paWasapiStreamStateThreadStop (paWasapiStreamStateThreadStop)
|
||||||
|
|
||||||
|
|
||||||
|
/* Host processor.
|
||||||
|
|
||||||
|
Allows to skip internal PA processing completely. paWinWasapiRedirectHostProcessor flag
|
||||||
|
must be set to the PaWasapiStreamInfo::flags member in order to have host processor
|
||||||
|
redirected to this callback.
|
||||||
|
|
||||||
|
Use with caution! inputFrames and outputFrames depend solely on final device setup.
|
||||||
|
To query max values of inputFrames/outputFrames use PaWasapi_GetFramesPerHostBuffer.
|
||||||
|
*/
|
||||||
|
typedef void (*PaWasapiHostProcessorCallback) (void *inputBuffer, long inputFrames,
|
||||||
|
void *outputBuffer, long outputFrames, void *userData);
|
||||||
|
|
||||||
|
|
||||||
|
/* Stream state handler.
|
||||||
|
|
||||||
|
@param pStream Pointer to PaStream object.
|
||||||
|
@param stateFlags State flags, a collection of values from PaWasapiStreamState enum.
|
||||||
|
@param errorId Error id provided by system API (HRESULT).
|
||||||
|
@param userData Pointer to user data.
|
||||||
|
|
||||||
|
@see PaWasapiStreamState
|
||||||
|
*/
|
||||||
|
typedef void (*PaWasapiStreamStateCallback) (PaStream *pStream, unsigned int stateFlags,
|
||||||
|
unsigned int errorId, void *pUserData);
|
||||||
|
|
||||||
|
|
||||||
/* Device role. */
|
/* Device role. */
|
||||||
typedef enum PaWasapiDeviceRole
|
typedef enum PaWasapiDeviceRole
|
||||||
|
|
@ -130,7 +179,7 @@ typedef enum PaWasapiJackConnectionType
|
||||||
eJackConnTypeXlrProfessional,
|
eJackConnTypeXlrProfessional,
|
||||||
eJackConnTypeRJ11Modem,
|
eJackConnTypeRJ11Modem,
|
||||||
eJackConnTypeCombination
|
eJackConnTypeCombination
|
||||||
}
|
}
|
||||||
PaWasapiJackConnectionType;
|
PaWasapiJackConnectionType;
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -153,7 +202,7 @@ typedef enum PaWasapiJackGeoLocation
|
||||||
eJackGeoLocATAPI,
|
eJackGeoLocATAPI,
|
||||||
eJackGeoLocReserved5,
|
eJackGeoLocReserved5,
|
||||||
eJackGeoLocReserved6,
|
eJackGeoLocReserved6,
|
||||||
}
|
}
|
||||||
PaWasapiJackGeoLocation;
|
PaWasapiJackGeoLocation;
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -164,7 +213,7 @@ typedef enum PaWasapiJackGenLocation
|
||||||
eJackGenLocInternal,
|
eJackGenLocInternal,
|
||||||
eJackGenLocSeparate,
|
eJackGenLocSeparate,
|
||||||
eJackGenLocOther
|
eJackGenLocOther
|
||||||
}
|
}
|
||||||
PaWasapiJackGenLocation;
|
PaWasapiJackGenLocation;
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -175,7 +224,7 @@ typedef enum PaWasapiJackPortConnection
|
||||||
eJackPortConnIntegratedDevice,
|
eJackPortConnIntegratedDevice,
|
||||||
eJackPortConnBothIntegratedAndJack,
|
eJackPortConnBothIntegratedAndJack,
|
||||||
eJackPortConnUnknown
|
eJackPortConnUnknown
|
||||||
}
|
}
|
||||||
PaWasapiJackPortConnection;
|
PaWasapiJackPortConnection;
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -195,7 +244,7 @@ PaWasapiThreadPriority;
|
||||||
|
|
||||||
|
|
||||||
/* Stream descriptor. */
|
/* Stream descriptor. */
|
||||||
typedef struct PaWasapiJackDescription
|
typedef struct PaWasapiJackDescription
|
||||||
{
|
{
|
||||||
unsigned long channelMapping;
|
unsigned long channelMapping;
|
||||||
unsigned long color; /* derived from macro: #define RGB(r,g,b) ((COLORREF)(((BYTE)(r)|((WORD)((BYTE)(g))<<8))|(((DWORD)(BYTE)(b))<<16))) */
|
unsigned long color; /* derived from macro: #define RGB(r,g,b) ((COLORREF)(((BYTE)(r)|((WORD)((BYTE)(g))<<8))|(((DWORD)(BYTE)(b))<<16))) */
|
||||||
|
|
@ -249,7 +298,7 @@ PaWasapiStreamOption;
|
||||||
|
|
||||||
|
|
||||||
/* Stream descriptor. */
|
/* Stream descriptor. */
|
||||||
typedef struct PaWasapiStreamInfo
|
typedef struct PaWasapiStreamInfo
|
||||||
{
|
{
|
||||||
unsigned long size; /**< sizeof(PaWasapiStreamInfo) */
|
unsigned long size; /**< sizeof(PaWasapiStreamInfo) */
|
||||||
PaHostApiTypeId hostApiType; /**< paWASAPI */
|
PaHostApiTypeId hostApiType; /**< paWASAPI */
|
||||||
|
|
@ -258,16 +307,16 @@ typedef struct PaWasapiStreamInfo
|
||||||
unsigned long flags; /**< collection of PaWasapiFlags */
|
unsigned long flags; /**< collection of PaWasapiFlags */
|
||||||
|
|
||||||
/** Support for WAVEFORMATEXTENSIBLE channel masks. If flags contains
|
/** Support for WAVEFORMATEXTENSIBLE channel masks. If flags contains
|
||||||
paWinWasapiUseChannelMask this allows you to specify which speakers
|
paWinWasapiUseChannelMask this allows you to specify which speakers
|
||||||
to address in a multichannel stream. Constants for channelMask
|
to address in a multichannel stream. Constants for channelMask
|
||||||
are specified in pa_win_waveformat.h. Will be used only if
|
are specified in pa_win_waveformat.h. Will be used only if
|
||||||
paWinWasapiUseChannelMask flag is specified.
|
paWinWasapiUseChannelMask flag is specified.
|
||||||
*/
|
*/
|
||||||
PaWinWaveFormatChannelMask channelMask;
|
PaWinWaveFormatChannelMask channelMask;
|
||||||
|
|
||||||
/** Delivers raw data to callback obtained from GetBuffer() methods skipping
|
/** Delivers raw data to callback obtained from GetBuffer() methods skipping
|
||||||
internal PortAudio processing inventory completely. userData parameter will
|
internal PortAudio processing inventory completely. userData parameter will
|
||||||
be the same that was passed to Pa_OpenStream method. Will be used only if
|
be the same that was passed to Pa_OpenStream method. Will be used only if
|
||||||
paWinWasapiRedirectHostProcessor flag is specified.
|
paWinWasapiRedirectHostProcessor flag is specified.
|
||||||
*/
|
*/
|
||||||
PaWasapiHostProcessorCallback hostProcessorOutput;
|
PaWasapiHostProcessorCallback hostProcessorOutput;
|
||||||
|
|
@ -293,13 +342,13 @@ typedef struct PaWasapiStreamInfo
|
||||||
@version Available as of 19.6.0
|
@version Available as of 19.6.0
|
||||||
*/
|
*/
|
||||||
PaWasapiStreamOption streamOption;
|
PaWasapiStreamOption streamOption;
|
||||||
}
|
}
|
||||||
PaWasapiStreamInfo;
|
PaWasapiStreamInfo;
|
||||||
|
|
||||||
|
|
||||||
/** Returns pointer to WASAPI's IAudioClient object of the stream.
|
/** Returns pointer to WASAPI's IAudioClient object of the stream.
|
||||||
|
|
||||||
@param pStream Pointer to PaStream.
|
@param pStream Pointer to PaStream object.
|
||||||
@param pAudioClient Pointer to pointer of IAudioClient.
|
@param pAudioClient Pointer to pointer of IAudioClient.
|
||||||
@param bOutput TRUE (1) for output stream, FALSE (0) for input stream.
|
@param bOutput TRUE (1) for output stream, FALSE (0) for input stream.
|
||||||
|
|
||||||
|
|
@ -308,10 +357,11 @@ PaWasapiStreamInfo;
|
||||||
PaError PaWasapi_GetAudioClient( PaStream *pStream, void **pAudioClient, int bOutput );
|
PaError PaWasapi_GetAudioClient( PaStream *pStream, void **pAudioClient, int bOutput );
|
||||||
|
|
||||||
|
|
||||||
/** Update device list.
|
/** Update device list.
|
||||||
This function is available if PA_WASAPI_MAX_CONST_DEVICE_COUNT is defined during compile time
|
|
||||||
with maximum constant WASAPI device count (recommended value - 32).
|
This function is available if PA_WASAPI_MAX_CONST_DEVICE_COUNT is defined during compile time
|
||||||
If PA_WASAPI_MAX_CONST_DEVICE_COUNT is set to 0 (or not defined) during compile time the implementation
|
with maximum constant WASAPI device count (recommended value - 32).
|
||||||
|
If PA_WASAPI_MAX_CONST_DEVICE_COUNT is set to 0 (or not defined) during compile time the implementation
|
||||||
will not define PaWasapi_UpdateDeviceList() and thus updating device list can only be possible by calling
|
will not define PaWasapi_UpdateDeviceList() and thus updating device list can only be possible by calling
|
||||||
Pa_Terminate() and then Pa_Initialize().
|
Pa_Terminate() and then Pa_Initialize().
|
||||||
|
|
||||||
|
|
@ -320,115 +370,128 @@ PaError PaWasapi_GetAudioClient( PaStream *pStream, void **pAudioClient, int bOu
|
||||||
PaError PaWasapi_UpdateDeviceList();
|
PaError PaWasapi_UpdateDeviceList();
|
||||||
|
|
||||||
|
|
||||||
/** Returns current audio format of the device assigned to the opened stream. Format is represented by
|
/** Get current audio format of the device assigned to the opened stream.
|
||||||
PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure. Use this function to reconfirm format if
|
|
||||||
PA's processor is overriden and paWinWasapiRedirectHostProcessor flag is specified.
|
|
||||||
|
|
||||||
@param pStream Pointer to PaStream.
|
Format is represented by PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure.
|
||||||
@param pFormat Pointer to PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure.
|
Use this function to reconfirm format if PA's processor is overriden and
|
||||||
@param nFormatSize Size of PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure in bytes.
|
paWinWasapiRedirectHostProcessor flag is specified.
|
||||||
@param bOutput TRUE (1) for output stream, FALSE (0) for input stream.
|
|
||||||
|
@param pStream Pointer to PaStream object.
|
||||||
|
@param pFormat Pointer to PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure.
|
||||||
|
@param formatSize Size of PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure in bytes.
|
||||||
|
@param bOutput TRUE (1) for output stream, FALSE (0) for input stream.
|
||||||
|
|
||||||
@return Non-negative value indicating the number of bytes copied into format decriptor
|
@return Non-negative value indicating the number of bytes copied into format decriptor
|
||||||
or, a PaErrorCode (which are always negative) if PortAudio is not initialized
|
or, a PaErrorCode (which is always negative) if PortAudio is not initialized
|
||||||
or an error is encountered.
|
or an error is encountered.
|
||||||
*/
|
*/
|
||||||
int PaWasapi_GetDeviceCurrentFormat( PaStream *pStream, void *pFormat, unsigned int nFormatSize, int bOutput );
|
int PaWasapi_GetDeviceCurrentFormat( PaStream *pStream, void *pFormat, unsigned int formatSize, int bOutput );
|
||||||
|
|
||||||
|
|
||||||
/** Returns default audio format for device in Shared Mode. Format is represented by
|
/** Get default audio format for the device in Shared Mode.
|
||||||
PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure and obtained by getting
|
|
||||||
the device property with a PKEY_AudioEngine_DeviceFormat key.
|
|
||||||
|
|
||||||
@param pFormat Pointer to PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure.
|
Format is represented by PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure and obtained
|
||||||
@param nFormatSize Size of PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure in bytes.
|
by getting the device property with a PKEY_AudioEngine_DeviceFormat key.
|
||||||
@param nDevice Device index.
|
|
||||||
|
@param pFormat Pointer to PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure.
|
||||||
|
@param formatSize Size of PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure in bytes.
|
||||||
|
@param device Device index.
|
||||||
|
|
||||||
@return Non-negative value indicating the number of bytes copied into format decriptor
|
@return Non-negative value indicating the number of bytes copied into format decriptor
|
||||||
or, a PaErrorCode (which are always negative) if PortAudio is not initialized
|
or, a PaErrorCode (which is always negative) if PortAudio is not initialized
|
||||||
or an error is encountered.
|
or an error is encountered.
|
||||||
*/
|
*/
|
||||||
int PaWasapi_GetDeviceDefaultFormat( void *pFormat, unsigned int nFormatSize, PaDeviceIndex nDevice );
|
int PaWasapi_GetDeviceDefaultFormat( void *pFormat, unsigned int formatSize, PaDeviceIndex device );
|
||||||
|
|
||||||
|
|
||||||
/** Returns mix audio format for device in Shared Mode. Format is represented by
|
/** Get mix audio format for the device in Shared Mode.
|
||||||
PaWinWaveFormat or WAVEFORMATEXTENSIBLE structureand obtained by
|
|
||||||
|
Format is represented by PaWinWaveFormat or WAVEFORMATEXTENSIBLE structureand obtained by
|
||||||
IAudioClient::GetMixFormat.
|
IAudioClient::GetMixFormat.
|
||||||
|
|
||||||
@param pFormat Pointer to PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure.
|
@param pFormat Pointer to PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure.
|
||||||
@param nFormatSize Size of PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure in bytes.
|
@param formatSize Size of PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure in bytes.
|
||||||
@param nDevice Device index.
|
@param device Device index.
|
||||||
|
|
||||||
@return Non-negative value indicating the number of bytes copied into format decriptor
|
@return Non-negative value indicating the number of bytes copied into format decriptor
|
||||||
or, a PaErrorCode (which are always negative) if PortAudio is not initialized
|
or, a PaErrorCode (which is always negative) if PortAudio is not initialized
|
||||||
or an error is encountered.
|
or an error is encountered.
|
||||||
*/
|
*/
|
||||||
int PaWasapi_GetDeviceMixFormat( void *pFormat, unsigned int nFormatSize, PaDeviceIndex nDevice );
|
int PaWasapi_GetDeviceMixFormat( void *pFormat, unsigned int formatSize, PaDeviceIndex device );
|
||||||
|
|
||||||
|
|
||||||
/** Returns device role (PaWasapiDeviceRole enum).
|
/** Get device role (PaWasapiDeviceRole enum).
|
||||||
|
|
||||||
@param nDevice Device index.
|
@param device Device index.
|
||||||
|
|
||||||
@return Non-negative value indicating device role or, a PaErrorCode (which are always negative)
|
@return Non-negative value indicating device role or, a PaErrorCode (which is always negative)
|
||||||
if PortAudio is not initialized or an error is encountered.
|
if PortAudio is not initialized or an error is encountered.
|
||||||
*/
|
*/
|
||||||
int/*PaWasapiDeviceRole*/ PaWasapi_GetDeviceRole( PaDeviceIndex nDevice );
|
int/*PaWasapiDeviceRole*/ PaWasapi_GetDeviceRole( PaDeviceIndex device );
|
||||||
|
|
||||||
|
|
||||||
/** Boost thread priority of calling thread (MMCSS). Use it for Blocking Interface only for thread
|
/** Boost thread priority of calling thread (MMCSS).
|
||||||
which makes calls to Pa_WriteStream/Pa_ReadStream.
|
|
||||||
|
|
||||||
@param hTask Handle to pointer to priority task. Must be used with PaWasapi_RevertThreadPriority
|
Use it for Blocking Interface only inside the thread which makes calls to Pa_WriteStream/Pa_ReadStream.
|
||||||
method to revert thread priority to initial state.
|
|
||||||
|
|
||||||
@param nPriorityClass Id of thread priority of PaWasapiThreadPriority type. Specifying
|
@param pTask Handle to pointer to priority task. Must be used with PaWasapi_RevertThreadPriority
|
||||||
|
method to revert thread priority to initial state.
|
||||||
|
|
||||||
|
@param priorityClass Id of thread priority of PaWasapiThreadPriority type. Specifying
|
||||||
eThreadPriorityNone does nothing.
|
eThreadPriorityNone does nothing.
|
||||||
|
|
||||||
@return Error code indicating success or failure.
|
@return Error code indicating success or failure.
|
||||||
@see PaWasapi_RevertThreadPriority
|
@see PaWasapi_RevertThreadPriority
|
||||||
*/
|
*/
|
||||||
PaError PaWasapi_ThreadPriorityBoost( void **hTask, PaWasapiThreadPriority nPriorityClass );
|
PaError PaWasapi_ThreadPriorityBoost( void **pTask, PaWasapiThreadPriority priorityClass );
|
||||||
|
|
||||||
|
|
||||||
/** Boost thread priority of calling thread (MMCSS). Use it for Blocking Interface only for thread
|
/** Boost thread priority of calling thread (MMCSS).
|
||||||
which makes calls to Pa_WriteStream/Pa_ReadStream.
|
|
||||||
|
Use it for Blocking Interface only inside the thread which makes calls to Pa_WriteStream/Pa_ReadStream.
|
||||||
|
|
||||||
|
@param pTask Task handle obtained by PaWasapi_BoostThreadPriority method.
|
||||||
|
|
||||||
@param hTask Task handle obtained by PaWasapi_BoostThreadPriority method.
|
|
||||||
@return Error code indicating success or failure.
|
@return Error code indicating success or failure.
|
||||||
@see PaWasapi_BoostThreadPriority
|
@see PaWasapi_BoostThreadPriority
|
||||||
*/
|
*/
|
||||||
PaError PaWasapi_ThreadPriorityRevert( void *hTask );
|
PaError PaWasapi_ThreadPriorityRevert( void *pTask );
|
||||||
|
|
||||||
|
|
||||||
/** Get number of frames per host buffer. This is maximal value of frames of WASAPI buffer which
|
/** Get number of frames per host buffer.
|
||||||
can be locked for operations. Use this method as helper to findout maximal values of
|
|
||||||
inputFrames/outputFrames of PaWasapiHostProcessorCallback.
|
It is max value of frames of WASAPI buffer which can be locked for operations.
|
||||||
|
Use this method as helper to findout max values of inputFrames/outputFrames
|
||||||
|
of PaWasapiHostProcessorCallback.
|
||||||
|
|
||||||
|
@param pStream Pointer to PaStream object.
|
||||||
|
@param pInput Pointer to variable to receive number of input frames. Can be NULL.
|
||||||
|
@param pOutput Pointer to variable to receive number of output frames. Can be NULL.
|
||||||
|
|
||||||
@param pStream Pointer to PaStream to query.
|
|
||||||
@param nInput Pointer to variable to receive number of input frames. Can be NULL.
|
|
||||||
@param nOutput Pointer to variable to receive number of output frames. Can be NULL.
|
|
||||||
@return Error code indicating success or failure.
|
@return Error code indicating success or failure.
|
||||||
@see PaWasapiHostProcessorCallback
|
@see PaWasapiHostProcessorCallback
|
||||||
*/
|
*/
|
||||||
PaError PaWasapi_GetFramesPerHostBuffer( PaStream *pStream, unsigned int *nInput, unsigned int *nOutput );
|
PaError PaWasapi_GetFramesPerHostBuffer( PaStream *pStream, unsigned int *pInput, unsigned int *pOutput );
|
||||||
|
|
||||||
|
|
||||||
/** Get number of jacks associated with a WASAPI device. Use this method to determine if
|
/** Get number of jacks associated with a WASAPI device.
|
||||||
there are any jacks associated with the provided WASAPI device. Not all audio devices
|
|
||||||
will support this capability. This is valid for both input and output devices.
|
Use this method to determine if there are any jacks associated with the provided WASAPI device.
|
||||||
|
Not all audio devices will support this capability. This is valid for both input and output devices.
|
||||||
|
|
||||||
@note Not available on UWP platform.
|
@note Not available on UWP platform.
|
||||||
|
|
||||||
@param nDevice device index.
|
@param device Device index.
|
||||||
@param jcount Number of jacks is returned in this variable
|
@param pJackCount Pointer to variable to receive number of jacks.
|
||||||
@return Error code indicating success or failure
|
|
||||||
|
@return Error code indicating success or failure.
|
||||||
@see PaWasapi_GetJackDescription
|
@see PaWasapi_GetJackDescription
|
||||||
*/
|
*/
|
||||||
PaError PaWasapi_GetJackCount( PaDeviceIndex nDevice, int *jcount );
|
PaError PaWasapi_GetJackCount( PaDeviceIndex device, int *pJackCount );
|
||||||
|
|
||||||
|
|
||||||
/** Get the jack description associated with a WASAPI device and jack number
|
/** Get the jack description associated with a WASAPI device and jack number.
|
||||||
|
|
||||||
Before this function is called, use PaWasapi_GetJackCount to determine the
|
Before this function is called, use PaWasapi_GetJackCount to determine the
|
||||||
number of jacks associated with device. If jcount is greater than zero, then
|
number of jacks associated with device. If jcount is greater than zero, then
|
||||||
each jack from 0 to jcount can be queried with this function to get the jack
|
each jack from 0 to jcount can be queried with this function to get the jack
|
||||||
|
|
@ -436,19 +499,21 @@ PaError PaWasapi_GetJackCount( PaDeviceIndex nDevice, int *jcount );
|
||||||
|
|
||||||
@note Not available on UWP platform.
|
@note Not available on UWP platform.
|
||||||
|
|
||||||
@param nDevice device index.
|
@param device Device index.
|
||||||
@param jindex Which jack to return information
|
@param jackIndex Jack index.
|
||||||
@param pJackDescription Pointer to PaWasapiJackDescription.
|
@param pJackDescription Pointer to PaWasapiJackDescription.
|
||||||
@return Error code indicating success or failure
|
|
||||||
|
@return Error code indicating success or failure.
|
||||||
@see PaWasapi_GetJackCount
|
@see PaWasapi_GetJackCount
|
||||||
*/
|
*/
|
||||||
PaError PaWasapi_GetJackDescription( PaDeviceIndex nDevice, int jindex, PaWasapiJackDescription *pJackDescription );
|
PaError PaWasapi_GetJackDescription( PaDeviceIndex device, int jackIndex, PaWasapiJackDescription *pJackDescription );
|
||||||
|
|
||||||
|
|
||||||
/** Set default interface Id.
|
/** Set default interface Id.
|
||||||
By default PA implementation will use DEVINTERFACE_AUDIO_RENDER and
|
|
||||||
DEVINTERFACE_AUDIO_CAPTURE if device Id is not provided explicitly. These default Ids
|
By default PA implementation will use DEVINTERFACE_AUDIO_RENDER and
|
||||||
will not allow to use Exclusive mode on UWP platform and thus you must provide
|
DEVINTERFACE_AUDIO_CAPTURE if device Id is not provided explicitly. These default Ids
|
||||||
|
will not allow to use Exclusive mode on UWP platform and thus you must provide
|
||||||
device Id explicitly via this API before calling Pa_OpenStream().
|
device Id explicitly via this API before calling Pa_OpenStream().
|
||||||
Device Ids on UWP platform are obtainable via
|
Device Ids on UWP platform are obtainable via
|
||||||
Windows::Media::Devices::MediaDevice::GetDefaultAudioRenderId() or
|
Windows::Media::Devices::MediaDevice::GetDefaultAudioRenderId() or
|
||||||
|
|
@ -459,18 +524,30 @@ PaError PaWasapi_GetJackDescription( PaDeviceIndex nDevice, int jindex, PaWasapi
|
||||||
@param pId Interface Id, pointer to the 16-bit Unicode string (WCHAR). If NULL then device Id
|
@param pId Interface Id, pointer to the 16-bit Unicode string (WCHAR). If NULL then device Id
|
||||||
will be reset to the default, e.g. DEVINTERFACE_AUDIO_RENDER or DEVINTERFACE_AUDIO_CAPTURE.
|
will be reset to the default, e.g. DEVINTERFACE_AUDIO_RENDER or DEVINTERFACE_AUDIO_CAPTURE.
|
||||||
@param bOutput TRUE (1) for output (render), FALSE (0) for input (capture).
|
@param bOutput TRUE (1) for output (render), FALSE (0) for input (capture).
|
||||||
|
|
||||||
@return Error code indicating success or failure. Will return paIncompatibleStreamHostApi if PA is not compiled
|
@return Error code indicating success or failure. Will return paIncompatibleStreamHostApi if PA is not compiled
|
||||||
for UWP platform. If Id is longer than 4096 characters paBufferTooBig will be returned.
|
for UWP platform. If Id is longer than 4096 characters paBufferTooBig will be returned.
|
||||||
*/
|
*/
|
||||||
PaError PaWasapi_SetDefaultInterfaceId( unsigned short *pId, int bOutput );
|
PaError PaWasapi_SetDefaultInterfaceId( unsigned short *pId, int bOutput );
|
||||||
|
|
||||||
|
|
||||||
|
/** Set stream state handler.
|
||||||
|
|
||||||
|
@param pStream Pointer to PaStream object.
|
||||||
|
@param fnStateHandler Pointer to state handling function.
|
||||||
|
@param pUserData Pointer to user data.
|
||||||
|
|
||||||
|
@return Error code indicating success or failure.
|
||||||
|
*/
|
||||||
|
PaError PaWasapi_SetStreamStateHandler( PaStream *pStream, PaWasapiStreamStateCallback fnStateHandler, void *pUserData );
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
IMPORTANT:
|
IMPORTANT:
|
||||||
|
|
||||||
WASAPI is implemented for Callback and Blocking interfaces. It supports Shared and Exclusive
|
WASAPI is implemented for Callback and Blocking interfaces. It supports Shared and Exclusive
|
||||||
share modes.
|
share modes.
|
||||||
|
|
||||||
Exclusive Mode:
|
Exclusive Mode:
|
||||||
|
|
||||||
Exclusive mode allows to deliver audio data directly to hardware bypassing
|
Exclusive mode allows to deliver audio data directly to hardware bypassing
|
||||||
|
|
@ -479,20 +556,20 @@ PaError PaWasapi_SetDefaultInterfaceId( unsigned short *pId, int bOutput );
|
||||||
|
|
||||||
Callback Interface:
|
Callback Interface:
|
||||||
|
|
||||||
Provides best audio quality with low latency. Callback interface is implemented in
|
Provides best audio quality with low latency. Callback interface is implemented in
|
||||||
two versions:
|
two versions:
|
||||||
|
|
||||||
1) Event-Driven:
|
1) Event-Driven:
|
||||||
This is the most powerful WASAPI implementation which provides glitch-free
|
This is the most powerful WASAPI implementation which provides glitch-free
|
||||||
audio at around 3ms latency in Exclusive mode. Lowest possible latency for this mode is
|
audio at around 3ms latency in Exclusive mode. Lowest possible latency for this mode is
|
||||||
3 ms for HD Audio class audio chips. For the Shared mode latency can not be
|
3 ms for HD Audio class audio chips. For the Shared mode latency can not be
|
||||||
lower than 20 ms.
|
lower than 20 ms.
|
||||||
|
|
||||||
2) Poll-Driven:
|
2) Poll-Driven:
|
||||||
Polling is another 2-nd method to operate with WASAPI. It is less efficient than Event-Driven
|
Polling is another 2-nd method to operate with WASAPI. It is less efficient than Event-Driven
|
||||||
and provides latency at around 10-13ms. Polling must be used to overcome a system bug
|
and provides latency at around 10-13ms. Polling must be used to overcome a system bug
|
||||||
under Windows Vista x64 when application is WOW64(32-bit) and Event-Driven method simply
|
under Windows Vista x64 when application is WOW64(32-bit) and Event-Driven method simply
|
||||||
times out (event handle is never signalled on buffer completion). Please note, such WOW64 bug
|
times out (event handle is never signalled on buffer completion). Please note, such WOW64 bug
|
||||||
does not exist in Vista x86 or Windows 7.
|
does not exist in Vista x86 or Windows 7.
|
||||||
Polling can be setup by speciying 'paWinWasapiPolling' flag. Our WASAPI implementation detects
|
Polling can be setup by speciying 'paWinWasapiPolling' flag. Our WASAPI implementation detects
|
||||||
WOW64 bug and sets 'paWinWasapiPolling' automatically.
|
WOW64 bug and sets 'paWinWasapiPolling' automatically.
|
||||||
|
|
@ -501,44 +578,51 @@ PaError PaWasapi_SetDefaultInterfaceId( unsigned short *pId, int bOutput );
|
||||||
|
|
||||||
Normally thread priority is set automatically and does not require modification. Although
|
Normally thread priority is set automatically and does not require modification. Although
|
||||||
if user wants some tweaking thread priority can be modified by setting 'paWinWasapiThreadPriority'
|
if user wants some tweaking thread priority can be modified by setting 'paWinWasapiThreadPriority'
|
||||||
flag and specifying 'PaWasapiStreamInfo::threadPriority' with value from PaWasapiThreadPriority
|
flag and specifying 'PaWasapiStreamInfo::threadPriority' with value from PaWasapiThreadPriority
|
||||||
enum.
|
enum.
|
||||||
|
|
||||||
Blocking Interface:
|
Blocking Interface:
|
||||||
|
|
||||||
Blocking interface is implemented but due to above described Poll-Driven method can not
|
Blocking interface is implemented but due to above described Poll-Driven method can not
|
||||||
deliver lowest possible latency. Specifying too low latency in Shared mode will result in
|
deliver lowest possible latency. Specifying too low latency in Shared mode will result in
|
||||||
distorted audio although Exclusive mode adds stability.
|
distorted audio although Exclusive mode adds stability.
|
||||||
|
|
||||||
8.24 format:
|
8.24 format:
|
||||||
|
|
||||||
If paCustomFormat is specified as sample format then the implementation will understand it
|
If paCustomFormat is specified as sample format then the implementation will understand it
|
||||||
as valid 24-bits inside 32-bit container (e.g. wBitsPerSample = 32, Samples.wValidBitsPerSample = 24).
|
as valid 24-bits inside 32-bit container (e.g. wBitsPerSample = 32, Samples.wValidBitsPerSample = 24).
|
||||||
|
|
||||||
By using paCustomFormat there will be small optimization when samples are be copied
|
By using paCustomFormat there will be small optimization when samples are be copied
|
||||||
with Copy_24_To_24 by PA processor instead of conversion from packed 3-byte (24-bit) data
|
with Copy_24_To_24 by PA processor instead of conversion from packed 3-byte (24-bit) data
|
||||||
with Int24_To_Int32.
|
with Int24_To_Int32.
|
||||||
|
|
||||||
Pa_IsFormatSupported:
|
Pa_IsFormatSupported:
|
||||||
|
|
||||||
To check format with correct Share Mode (Exclusive/Shared) you must supply PaWasapiStreamInfo
|
To check format with correct Share Mode (Exclusive/Shared) you must supply PaWasapiStreamInfo
|
||||||
with flags paWinWasapiExclusive set through member of PaStreamParameters::hostApiSpecificStreamInfo
|
with flags paWinWasapiExclusive set through member of PaStreamParameters::hostApiSpecificStreamInfo
|
||||||
structure.
|
structure.
|
||||||
|
|
||||||
If paWinWasapiExplicitSampleFormat flag is provided then implementation will not try to select
|
If paWinWasapiExplicitSampleFormat flag is provided then implementation will not try to select
|
||||||
suitable close format and will return an error instead of paFormatIsSupported. By specifying
|
suitable close format and will return an error instead of paFormatIsSupported. By specifying
|
||||||
paWinWasapiExplicitSampleFormat flag it is possible to find out what sample formats are
|
paWinWasapiExplicitSampleFormat flag it is possible to find out what sample formats are
|
||||||
supported by Exclusive or Shared modes.
|
supported by Exclusive or Shared modes.
|
||||||
|
|
||||||
Pa_OpenStream:
|
Pa_OpenStream:
|
||||||
|
|
||||||
To set desired Share Mode (Exclusive/Shared) you must supply
|
To set desired Share Mode (Exclusive/Shared) you must supply
|
||||||
PaWasapiStreamInfo with flags paWinWasapiExclusive set through member of
|
PaWasapiStreamInfo with flags paWinWasapiExclusive set through member of
|
||||||
PaStreamParameters::hostApiSpecificStreamInfo structure.
|
PaStreamParameters::hostApiSpecificStreamInfo structure.
|
||||||
|
|
||||||
|
Coding style for parameters and structure members of the public API:
|
||||||
|
|
||||||
|
1) bXXX - boolean, [1 (TRUE), 0 (FALSE)]
|
||||||
|
2) pXXX - pointer
|
||||||
|
3) fnXXX - pointer to function
|
||||||
|
4) structure members are never prefixed with a type distinguisher
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
#endif /* PA_WIN_WASAPI_H */
|
#endif /* PA_WIN_WASAPI_H */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
/*
|
/*
|
||||||
* Portable Audio I/O Library WASAPI implementation
|
* Portable Audio I/O Library WASAPI implementation
|
||||||
* Copyright (c) 2006-2010 David Viens, Dmitry Kostjuchenko
|
* Copyright (c) 2006-2010 David Viens
|
||||||
|
* Copyright (c) 2010-2018 Dmitry Kostjuchenko
|
||||||
*
|
*
|
||||||
* Based on the Open Source API proposed by Ross Bencina
|
* Based on the Open Source API proposed by Ross Bencina
|
||||||
* Copyright (c) 1999-2002 Ross Bencina, Phil Burk
|
* Copyright (c) 1999-2018 Ross Bencina, Phil Burk
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||||||
* a copy of this software and associated documentation files
|
* a copy of this software and associated documentation files
|
||||||
|
|
@ -287,6 +288,10 @@ PA_THREAD_FUNC ProcThreadPoll(void *param);
|
||||||
|
|
||||||
#define MAX_STR_LEN 512
|
#define MAX_STR_LEN 512
|
||||||
|
|
||||||
|
#ifdef PA_WINRT
|
||||||
|
#define PA_WASAPI_DEVICE_ID_LEN 4096
|
||||||
|
#endif
|
||||||
|
|
||||||
enum { S_INPUT = 0, S_OUTPUT = 1, S_COUNT = 2, S_FULLDUPLEX = 0 };
|
enum { S_INPUT = 0, S_OUTPUT = 1, S_COUNT = 2, S_FULLDUPLEX = 0 };
|
||||||
|
|
||||||
// Number of packets which compose single contignous buffer. With trial and error it was calculated
|
// Number of packets which compose single contignous buffer. With trial and error it was calculated
|
||||||
|
|
@ -334,12 +339,6 @@ FAvRevertMmThreadCharacteristics pAvRevertMmThreadCharacteristics = NULL;
|
||||||
FAvSetMmThreadPriority pAvSetMmThreadPriority = NULL;
|
FAvSetMmThreadPriority pAvSetMmThreadPriority = NULL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef PA_WINRT
|
|
||||||
#define PA_WASAPI_DEVICE_ID_LEN 4096
|
|
||||||
static OLECHAR g_DefaultRenderId[PA_WASAPI_DEVICE_ID_LEN] = { 0 };
|
|
||||||
static OLECHAR g_DefaultCaptureId[PA_WASAPI_DEVICE_ID_LEN] = { 0 };
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define _GetProc(fun, type, name) { \
|
#define _GetProc(fun, type, name) { \
|
||||||
fun = (type) GetProcAddress(hDInputDLL,name); \
|
fun = (type) GetProcAddress(hDInputDLL,name); \
|
||||||
if (fun == NULL) { \
|
if (fun == NULL) { \
|
||||||
|
|
@ -447,15 +446,15 @@ typedef struct
|
||||||
|
|
||||||
PaWinUtilComInitializationResult comInitializationResult;
|
PaWinUtilComInitializationResult comInitializationResult;
|
||||||
|
|
||||||
//this is the REAL number of devices, whether they are usefull to PA or not!
|
// this is the REAL number of devices, whether they are usefull to PA or not!
|
||||||
UINT32 deviceCount;
|
UINT32 deviceCount;
|
||||||
|
|
||||||
WCHAR defaultRenderer [MAX_STR_LEN];
|
WCHAR defaultRenderer[MAX_STR_LEN];
|
||||||
WCHAR defaultCapturer [MAX_STR_LEN];
|
WCHAR defaultCapturer[MAX_STR_LEN];
|
||||||
|
|
||||||
PaWasapiDeviceInfo *devInfo;
|
PaWasapiDeviceInfo *devInfo;
|
||||||
|
|
||||||
// Is true when WOW64 Vista/7 Workaround is needed
|
// is TRUE when WOW64 Vista/7 Workaround is needed
|
||||||
BOOL useWOW64Workaround;
|
BOOL useWOW64Workaround;
|
||||||
}
|
}
|
||||||
PaWasapiHostApiRepresentation;
|
PaWasapiHostApiRepresentation;
|
||||||
|
|
@ -579,6 +578,10 @@ typedef struct PaWasapiStream
|
||||||
|
|
||||||
// Thread priority level
|
// Thread priority level
|
||||||
PaWasapiThreadPriority nThreadPriority;
|
PaWasapiThreadPriority nThreadPriority;
|
||||||
|
|
||||||
|
// State handler
|
||||||
|
PaWasapiStreamStateCallback fnStateHandler;
|
||||||
|
void *pStateHandlerUserData;
|
||||||
}
|
}
|
||||||
PaWasapiStream;
|
PaWasapiStream;
|
||||||
|
|
||||||
|
|
@ -601,6 +604,10 @@ static void PaWasapi_FreeMemory(void *ptr);
|
||||||
static PaSampleFormat WaveToPaFormat(const WAVEFORMATEXTENSIBLE *fmtext);
|
static PaSampleFormat WaveToPaFormat(const WAVEFORMATEXTENSIBLE *fmtext);
|
||||||
|
|
||||||
// Local statics
|
// Local statics
|
||||||
|
#ifdef PA_WINRT
|
||||||
|
static OLECHAR g_DefaultRenderId[PA_WASAPI_DEVICE_ID_LEN] = { 0 };
|
||||||
|
static OLECHAR g_DefaultCaptureId[PA_WASAPI_DEVICE_ID_LEN] = { 0 };
|
||||||
|
#endif
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
#define LogHostError(HRES) __LogHostError(HRES, __FUNCTION__, __FILE__, __LINE__)
|
#define LogHostError(HRES) __LogHostError(HRES, __FUNCTION__, __FILE__, __LINE__)
|
||||||
|
|
@ -846,7 +853,7 @@ static UINT32 ALIGN_FWD(UINT32 v, UINT32 align)
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
// Get next value power of 2
|
// Get next value power of 2
|
||||||
UINT32 ALIGN_NEXT_POW2(UINT32 v)
|
static UINT32 ALIGN_NEXT_POW2(UINT32 v)
|
||||||
{
|
{
|
||||||
UINT32 v2 = 1;
|
UINT32 v2 = 1;
|
||||||
while (v > (v2 <<= 1)) { }
|
while (v > (v2 <<= 1)) { }
|
||||||
|
|
@ -1578,6 +1585,18 @@ static DWORD SignalObjectAndWait(HANDLE hObjectToSignal, HANDLE hObjectToWaitOn,
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------
|
||||||
|
static void NotifyStateChanged(PaWasapiStream *stream, UINT32 flags, HRESULT hr)
|
||||||
|
{
|
||||||
|
if (stream->fnStateHandler == NULL)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (FAILED(hr))
|
||||||
|
flags |= paWasapiStreamStateError;
|
||||||
|
|
||||||
|
stream->fnStateHandler((PaStream *)stream, flags, hr, stream->pStateHandlerUserData);
|
||||||
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
static PaError CreateDeviceList(PaWasapiHostApiRepresentation *paWasapi, PaHostApiIndex hostApiIndex)
|
static PaError CreateDeviceList(PaWasapiHostApiRepresentation *paWasapi, PaHostApiIndex hostApiIndex)
|
||||||
{
|
{
|
||||||
|
|
@ -1679,7 +1698,8 @@ static PaError CreateDeviceList(PaWasapiHostApiRepresentation *paWasapi, PaHostA
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
paWasapi->devInfo = (PaWasapiDeviceInfo *)PaUtil_AllocateMemory(sizeof(PaWasapiDeviceInfo) * paWasapi->deviceCount);
|
paWasapi->devInfo = (PaWasapiDeviceInfo *)PaUtil_GroupAllocateMemory(
|
||||||
|
paWasapi->allocations, sizeof(PaWasapiDeviceInfo) * paWasapi->deviceCount);
|
||||||
if (paWasapi->devInfo == NULL)
|
if (paWasapi->devInfo == NULL)
|
||||||
{
|
{
|
||||||
result = paInsufficientMemory;
|
result = paInsufficientMemory;
|
||||||
|
|
@ -2008,7 +2028,7 @@ error:
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
PaError PaWasapi_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex hostApiIndex )
|
PaError PaWasapi_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex hostApiIndex )
|
||||||
{
|
{
|
||||||
PaError result = paInternalError;
|
PaError result;
|
||||||
PaWasapiHostApiRepresentation *paWasapi;
|
PaWasapiHostApiRepresentation *paWasapi;
|
||||||
|
|
||||||
#ifndef PA_WINRT
|
#ifndef PA_WINRT
|
||||||
|
|
@ -2027,10 +2047,12 @@ PaError PaWasapi_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiInd
|
||||||
}
|
}
|
||||||
memset(paWasapi, 0, sizeof(PaWasapiHostApiRepresentation)); /* ensure all fields are zeroed. especially paWasapi->allocations */
|
memset(paWasapi, 0, sizeof(PaWasapiHostApiRepresentation)); /* ensure all fields are zeroed. especially paWasapi->allocations */
|
||||||
|
|
||||||
|
// Initialize COM subsystem
|
||||||
result = PaWinUtil_CoInitialize(paWASAPI, &paWasapi->comInitializationResult);
|
result = PaWinUtil_CoInitialize(paWASAPI, &paWasapi->comInitializationResult);
|
||||||
if (result != paNoError)
|
if (result != paNoError)
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
|
// Create memory group
|
||||||
paWasapi->allocations = PaUtil_CreateAllocationGroup();
|
paWasapi->allocations = PaUtil_CreateAllocationGroup();
|
||||||
if (paWasapi->allocations == NULL)
|
if (paWasapi->allocations == NULL)
|
||||||
{
|
{
|
||||||
|
|
@ -2086,15 +2108,20 @@ static void ReleaseWasapiDeviceInfoList( PaWasapiHostApiRepresentation *paWasapi
|
||||||
{
|
{
|
||||||
UINT32 i;
|
UINT32 i;
|
||||||
|
|
||||||
// Release device info bound objects and device info itself
|
// Release device info bound objects
|
||||||
for (i = 0; i < paWasapi->deviceCount; ++i)
|
for (i = 0; i < paWasapi->deviceCount; ++i)
|
||||||
{
|
{
|
||||||
#ifndef PA_WINRT
|
#ifndef PA_WINRT
|
||||||
SAFE_RELEASE(paWasapi->devInfo[i].device);
|
SAFE_RELEASE(paWasapi->devInfo[i].device);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
PaUtil_FreeMemory(paWasapi->devInfo);
|
|
||||||
|
|
||||||
|
// Free device info
|
||||||
|
if (paWasapi->allocations != NULL)
|
||||||
|
PaUtil_GroupFreeMemory(paWasapi->allocations, paWasapi->devInfo);
|
||||||
|
|
||||||
|
// Be ready for a device list reinitialization and if its creation is failed pointers must not be dangling
|
||||||
|
paWasapi->devInfo = NULL;
|
||||||
paWasapi->deviceCount = 0;
|
paWasapi->deviceCount = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2105,16 +2132,20 @@ static void Terminate( PaUtilHostApiRepresentation *hostApi )
|
||||||
if (paWasapi == NULL)
|
if (paWasapi == NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
// Release device list
|
||||||
ReleaseWasapiDeviceInfoList(paWasapi);
|
ReleaseWasapiDeviceInfoList(paWasapi);
|
||||||
|
|
||||||
|
// Free allocations and memory group itself
|
||||||
if (paWasapi->allocations != NULL)
|
if (paWasapi->allocations != NULL)
|
||||||
{
|
{
|
||||||
PaUtil_FreeAllAllocations(paWasapi->allocations);
|
PaUtil_FreeAllAllocations(paWasapi->allocations);
|
||||||
PaUtil_DestroyAllocationGroup(paWasapi->allocations);
|
PaUtil_DestroyAllocationGroup(paWasapi->allocations);
|
||||||
}
|
}
|
||||||
|
|
||||||
PaWinUtil_CoUninitialize( paWASAPI, &paWasapi->comInitializationResult );
|
// Release COM subsystem
|
||||||
|
PaWinUtil_CoUninitialize(paWASAPI, &paWasapi->comInitializationResult);
|
||||||
|
|
||||||
|
// Free API representation
|
||||||
PaUtil_FreeMemory(paWasapi);
|
PaUtil_FreeMemory(paWasapi);
|
||||||
|
|
||||||
// Close AVRT
|
// Close AVRT
|
||||||
|
|
@ -2122,18 +2153,19 @@ static void Terminate( PaUtilHostApiRepresentation *hostApi )
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
static PaWasapiHostApiRepresentation *_GetHostApi(PaError *_error)
|
static PaWasapiHostApiRepresentation *_GetHostApi(PaError *ret)
|
||||||
{
|
{
|
||||||
PaError error;
|
PaError error;
|
||||||
|
|
||||||
PaUtilHostApiRepresentation *pApi;
|
PaUtilHostApiRepresentation *pApi;
|
||||||
|
|
||||||
if ((error = PaUtil_GetHostApiRepresentation(&pApi, paWASAPI)) != paNoError)
|
if ((error = PaUtil_GetHostApiRepresentation(&pApi, paWASAPI)) != paNoError)
|
||||||
{
|
{
|
||||||
if (_error != NULL)
|
if (ret != NULL)
|
||||||
(*_error) = error;
|
(*ret) = error;
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (PaWasapiHostApiRepresentation *)pApi;
|
return (PaWasapiHostApiRepresentation *)pApi;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2148,7 +2180,11 @@ static PaError UpdateDeviceList()
|
||||||
// Get API
|
// Get API
|
||||||
hostApi = (PaUtilHostApiRepresentation *)(paWasapi = _GetHostApi(&ret));
|
hostApi = (PaUtilHostApiRepresentation *)(paWasapi = _GetHostApi(&ret));
|
||||||
if (paWasapi == NULL)
|
if (paWasapi == NULL)
|
||||||
return ret;
|
return paNotInitialized;
|
||||||
|
|
||||||
|
// Make sure initialized properly
|
||||||
|
if (paWasapi->allocations == NULL)
|
||||||
|
return paNotInitialized;
|
||||||
|
|
||||||
// Release WASAPI internal device info list
|
// Release WASAPI internal device info list
|
||||||
ReleaseWasapiDeviceInfoList(paWasapi);
|
ReleaseWasapiDeviceInfoList(paWasapi);
|
||||||
|
|
@ -2163,6 +2199,8 @@ static PaError UpdateDeviceList()
|
||||||
PaUtil_GroupFreeMemory(paWasapi->allocations, hostApi->deviceInfos[0]);
|
PaUtil_GroupFreeMemory(paWasapi->allocations, hostApi->deviceInfos[0]);
|
||||||
PaUtil_GroupFreeMemory(paWasapi->allocations, hostApi->deviceInfos);
|
PaUtil_GroupFreeMemory(paWasapi->allocations, hostApi->deviceInfos);
|
||||||
|
|
||||||
|
// Be ready for a device list reinitialization and if its creation is failed pointers must not be dangling
|
||||||
|
hostApi->deviceInfos = NULL;
|
||||||
hostApi->info.deviceCount = 0;
|
hostApi->info.deviceCount = 0;
|
||||||
hostApi->info.defaultInputDevice = paNoDevice;
|
hostApi->info.defaultInputDevice = paNoDevice;
|
||||||
hostApi->info.defaultOutputDevice = paNoDevice;
|
hostApi->info.defaultOutputDevice = paNoDevice;
|
||||||
|
|
@ -2184,7 +2222,7 @@ PaError PaWasapi_UpdateDeviceList()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
int PaWasapi_GetDeviceCurrentFormat( PaStream *pStream, void *pFormat, unsigned int nFormatSize, int bOutput )
|
int PaWasapi_GetDeviceCurrentFormat( PaStream *pStream, void *pFormat, unsigned int formatSize, int bOutput )
|
||||||
{
|
{
|
||||||
UINT32 size;
|
UINT32 size;
|
||||||
WAVEFORMATEXTENSIBLE *format;
|
WAVEFORMATEXTENSIBLE *format;
|
||||||
|
|
@ -2195,14 +2233,14 @@ int PaWasapi_GetDeviceCurrentFormat( PaStream *pStream, void *pFormat, unsigned
|
||||||
|
|
||||||
format = (bOutput == TRUE ? &stream->out.wavex : &stream->in.wavex);
|
format = (bOutput == TRUE ? &stream->out.wavex : &stream->in.wavex);
|
||||||
|
|
||||||
size = min(nFormatSize, (UINT32)sizeof(*format));
|
size = min(formatSize, (UINT32)sizeof(*format));
|
||||||
memcpy(pFormat, format, size);
|
memcpy(pFormat, format, size);
|
||||||
|
|
||||||
return size;
|
return size;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
int PaWasapi_GetDeviceDefaultFormat( void *pFormat, unsigned int nFormatSize, PaDeviceIndex nDevice )
|
int PaWasapi_GetDeviceDefaultFormat( void *pFormat, unsigned int formatSize, PaDeviceIndex device )
|
||||||
{
|
{
|
||||||
PaError ret;
|
PaError ret;
|
||||||
PaWasapiHostApiRepresentation *paWasapi;
|
PaWasapiHostApiRepresentation *paWasapi;
|
||||||
|
|
@ -2211,7 +2249,7 @@ int PaWasapi_GetDeviceDefaultFormat( void *pFormat, unsigned int nFormatSize, Pa
|
||||||
|
|
||||||
if (pFormat == NULL)
|
if (pFormat == NULL)
|
||||||
return paBadBufferPtr;
|
return paBadBufferPtr;
|
||||||
if (nFormatSize <= 0)
|
if (formatSize <= 0)
|
||||||
return paBufferTooSmall;
|
return paBufferTooSmall;
|
||||||
|
|
||||||
// Get API
|
// Get API
|
||||||
|
|
@ -2220,7 +2258,7 @@ int PaWasapi_GetDeviceDefaultFormat( void *pFormat, unsigned int nFormatSize, Pa
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
// Get device index
|
// Get device index
|
||||||
ret = PaUtil_DeviceIndexToHostApiDeviceIndex(&index, nDevice, &paWasapi->inheritedHostApiRep);
|
ret = PaUtil_DeviceIndexToHostApiDeviceIndex(&index, device, &paWasapi->inheritedHostApiRep);
|
||||||
if (ret != paNoError)
|
if (ret != paNoError)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
|
@ -2228,14 +2266,14 @@ int PaWasapi_GetDeviceDefaultFormat( void *pFormat, unsigned int nFormatSize, Pa
|
||||||
if ((UINT32)index >= paWasapi->deviceCount)
|
if ((UINT32)index >= paWasapi->deviceCount)
|
||||||
return paInvalidDevice;
|
return paInvalidDevice;
|
||||||
|
|
||||||
size = min(nFormatSize, (UINT32)sizeof(paWasapi->devInfo[ index ].DefaultFormat));
|
size = min(formatSize, (UINT32)sizeof(paWasapi->devInfo[ index ].DefaultFormat));
|
||||||
memcpy(pFormat, &paWasapi->devInfo[ index ].DefaultFormat, size);
|
memcpy(pFormat, &paWasapi->devInfo[ index ].DefaultFormat, size);
|
||||||
|
|
||||||
return size;
|
return size;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
int PaWasapi_GetDeviceMixFormat( void *pFormat, unsigned int nFormatSize, PaDeviceIndex nDevice )
|
int PaWasapi_GetDeviceMixFormat( void *pFormat, unsigned int formatSize, PaDeviceIndex device )
|
||||||
{
|
{
|
||||||
PaError ret;
|
PaError ret;
|
||||||
PaWasapiHostApiRepresentation *paWasapi;
|
PaWasapiHostApiRepresentation *paWasapi;
|
||||||
|
|
@ -2244,7 +2282,7 @@ int PaWasapi_GetDeviceMixFormat( void *pFormat, unsigned int nFormatSize, PaDevi
|
||||||
|
|
||||||
if (pFormat == NULL)
|
if (pFormat == NULL)
|
||||||
return paBadBufferPtr;
|
return paBadBufferPtr;
|
||||||
if (nFormatSize <= 0)
|
if (formatSize <= 0)
|
||||||
return paBufferTooSmall;
|
return paBufferTooSmall;
|
||||||
|
|
||||||
// Get API
|
// Get API
|
||||||
|
|
@ -2253,7 +2291,7 @@ int PaWasapi_GetDeviceMixFormat( void *pFormat, unsigned int nFormatSize, PaDevi
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
// Get device index
|
// Get device index
|
||||||
ret = PaUtil_DeviceIndexToHostApiDeviceIndex(&index, nDevice, &paWasapi->inheritedHostApiRep);
|
ret = PaUtil_DeviceIndexToHostApiDeviceIndex(&index, device, &paWasapi->inheritedHostApiRep);
|
||||||
if (ret != paNoError)
|
if (ret != paNoError)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
|
@ -2261,14 +2299,14 @@ int PaWasapi_GetDeviceMixFormat( void *pFormat, unsigned int nFormatSize, PaDevi
|
||||||
if ((UINT32)index >= paWasapi->deviceCount)
|
if ((UINT32)index >= paWasapi->deviceCount)
|
||||||
return paInvalidDevice;
|
return paInvalidDevice;
|
||||||
|
|
||||||
size = min(nFormatSize, (UINT32)sizeof(paWasapi->devInfo[ index ].MixFormat));
|
size = min(formatSize, (UINT32)sizeof(paWasapi->devInfo[ index ].MixFormat));
|
||||||
memcpy(pFormat, &paWasapi->devInfo[ index ].MixFormat, size);
|
memcpy(pFormat, &paWasapi->devInfo[ index ].MixFormat, size);
|
||||||
|
|
||||||
return size;
|
return size;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
int PaWasapi_GetDeviceRole( PaDeviceIndex nDevice )
|
int PaWasapi_GetDeviceRole( PaDeviceIndex device )
|
||||||
{
|
{
|
||||||
PaError ret;
|
PaError ret;
|
||||||
PaDeviceIndex index;
|
PaDeviceIndex index;
|
||||||
|
|
@ -2279,7 +2317,7 @@ int PaWasapi_GetDeviceRole( PaDeviceIndex nDevice )
|
||||||
return paNotInitialized;
|
return paNotInitialized;
|
||||||
|
|
||||||
// Get device index
|
// Get device index
|
||||||
ret = PaUtil_DeviceIndexToHostApiDeviceIndex(&index, nDevice, &paWasapi->inheritedHostApiRep);
|
ret = PaUtil_DeviceIndexToHostApiDeviceIndex(&index, device, &paWasapi->inheritedHostApiRep);
|
||||||
if (ret != paNoError)
|
if (ret != paNoError)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
|
@ -2291,17 +2329,17 @@ int PaWasapi_GetDeviceRole( PaDeviceIndex nDevice )
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
PaError PaWasapi_GetFramesPerHostBuffer( PaStream *pStream, unsigned int *nInput, unsigned int *nOutput )
|
PaError PaWasapi_GetFramesPerHostBuffer( PaStream *pStream, unsigned int *pInput, unsigned int *pOutput )
|
||||||
{
|
{
|
||||||
PaWasapiStream *stream = (PaWasapiStream *)pStream;
|
PaWasapiStream *stream = (PaWasapiStream *)pStream;
|
||||||
if (stream == NULL)
|
if (stream == NULL)
|
||||||
return paBadStreamPtr;
|
return paBadStreamPtr;
|
||||||
|
|
||||||
if (nInput != NULL)
|
if (pInput != NULL)
|
||||||
(*nInput) = stream->in.framesPerHostCallback;
|
(*pInput) = stream->in.framesPerHostCallback;
|
||||||
|
|
||||||
if (nOutput != NULL)
|
if (pOutput != NULL)
|
||||||
(*nOutput) = stream->out.framesPerHostCallback;
|
(*pOutput) = stream->out.framesPerHostCallback;
|
||||||
|
|
||||||
return paNoError;
|
return paNoError;
|
||||||
}
|
}
|
||||||
|
|
@ -4844,19 +4882,19 @@ static void MMCSS_deactivate(HANDLE hTask)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
PaError PaWasapi_ThreadPriorityBoost(void **hTask, PaWasapiThreadPriority nPriorityClass)
|
PaError PaWasapi_ThreadPriorityBoost(void **pTask, PaWasapiThreadPriority priorityClass)
|
||||||
{
|
{
|
||||||
HANDLE task;
|
HANDLE task;
|
||||||
PaError ret;
|
PaError ret;
|
||||||
|
|
||||||
if (hTask == NULL)
|
if (pTask == NULL)
|
||||||
return paUnanticipatedHostError;
|
return paUnanticipatedHostError;
|
||||||
|
|
||||||
#ifndef PA_WINRT
|
#ifndef PA_WINRT
|
||||||
if ((ret = MMCSS_activate(nPriorityClass, &task)) != paNoError)
|
if ((ret = MMCSS_activate(priorityClass, &task)) != paNoError)
|
||||||
return ret;
|
return ret;
|
||||||
#else
|
#else
|
||||||
switch (nPriorityClass)
|
switch (priorityClass)
|
||||||
{
|
{
|
||||||
case eThreadPriorityAudio:
|
case eThreadPriorityAudio:
|
||||||
case eThreadPriorityProAudio: {
|
case eThreadPriorityProAudio: {
|
||||||
|
|
@ -4880,21 +4918,21 @@ PaError PaWasapi_ThreadPriorityBoost(void **hTask, PaWasapiThreadPriority nPrior
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
(*hTask) = task;
|
(*pTask) = task;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
PaError PaWasapi_ThreadPriorityRevert(void *hTask)
|
PaError PaWasapi_ThreadPriorityRevert(void *pTask)
|
||||||
{
|
{
|
||||||
if (hTask == NULL)
|
if (pTask == NULL)
|
||||||
return paUnanticipatedHostError;
|
return paUnanticipatedHostError;
|
||||||
|
|
||||||
#ifndef PA_WINRT
|
#ifndef PA_WINRT
|
||||||
MMCSS_deactivate((HANDLE)hTask);
|
MMCSS_deactivate((HANDLE)pTask);
|
||||||
#else
|
#else
|
||||||
// Revert previous priority by removing 0x80000000 mask
|
// Revert previous priority by removing 0x80000000 mask
|
||||||
if (SetThreadPriority(GetCurrentThread(), (int)((intptr_t)hTask & ~0x80000000)) == FALSE)
|
if (SetThreadPriority(GetCurrentThread(), (int)((intptr_t)pTask & ~0x80000000)) == FALSE)
|
||||||
return paUnanticipatedHostError;
|
return paUnanticipatedHostError;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
@ -4905,7 +4943,7 @@ PaError PaWasapi_ThreadPriorityRevert(void *hTask)
|
||||||
// Described at:
|
// Described at:
|
||||||
// http://msdn.microsoft.com/en-us/library/dd371387(v=VS.85).aspx
|
// http://msdn.microsoft.com/en-us/library/dd371387(v=VS.85).aspx
|
||||||
|
|
||||||
PaError PaWasapi_GetJackCount(PaDeviceIndex nDevice, int *jcount)
|
PaError PaWasapi_GetJackCount(PaDeviceIndex device, int *pJackCount)
|
||||||
{
|
{
|
||||||
#ifndef PA_WINRT
|
#ifndef PA_WINRT
|
||||||
PaError ret;
|
PaError ret;
|
||||||
|
|
@ -4922,47 +4960,50 @@ PaError PaWasapi_GetJackCount(PaDeviceIndex nDevice, int *jcount)
|
||||||
if (paWasapi == NULL)
|
if (paWasapi == NULL)
|
||||||
return paNotInitialized;
|
return paNotInitialized;
|
||||||
|
|
||||||
// Get device index.
|
if (pJackCount == NULL)
|
||||||
ret = PaUtil_DeviceIndexToHostApiDeviceIndex(&index, nDevice, &paWasapi->inheritedHostApiRep);
|
return paUnanticipatedHostError;
|
||||||
|
|
||||||
|
// Get device index
|
||||||
|
ret = PaUtil_DeviceIndexToHostApiDeviceIndex(&index, device, &paWasapi->inheritedHostApiRep);
|
||||||
if (ret != paNoError)
|
if (ret != paNoError)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
// Validate index.
|
// Validate index
|
||||||
if ((UINT32)index >= paWasapi->deviceCount)
|
if ((UINT32)index >= paWasapi->deviceCount)
|
||||||
return paInvalidDevice;
|
return paInvalidDevice;
|
||||||
|
|
||||||
// Get the endpoint device's IDeviceTopology interface.
|
// Get the endpoint device's IDeviceTopology interface
|
||||||
hr = IMMDevice_Activate(paWasapi->devInfo[index].device, &pa_IID_IDeviceTopology,
|
hr = IMMDevice_Activate(paWasapi->devInfo[index].device, &pa_IID_IDeviceTopology,
|
||||||
CLSCTX_INPROC_SERVER, NULL, (void**)&pDeviceTopology);
|
CLSCTX_INPROC_SERVER, NULL, (void**)&pDeviceTopology);
|
||||||
IF_FAILED_JUMP(hr, error);
|
IF_FAILED_JUMP(hr, error);
|
||||||
|
|
||||||
// The device topology for an endpoint device always contains just one connector (connector number 0).
|
// The device topology for an endpoint device always contains just one connector (connector number 0)
|
||||||
hr = IDeviceTopology_GetConnector(pDeviceTopology, 0, &pConnFrom);
|
hr = IDeviceTopology_GetConnector(pDeviceTopology, 0, &pConnFrom);
|
||||||
IF_FAILED_JUMP(hr, error);
|
IF_FAILED_JUMP(hr, error);
|
||||||
|
|
||||||
// Step across the connection to the jack on the adapter.
|
// Step across the connection to the jack on the adapter
|
||||||
hr = IConnector_GetConnectedTo(pConnFrom, &pConnTo);
|
hr = IConnector_GetConnectedTo(pConnFrom, &pConnTo);
|
||||||
if (HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND) == hr)
|
if (HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND) == hr)
|
||||||
{
|
{
|
||||||
// The adapter device is not currently active.
|
// The adapter device is not currently active
|
||||||
hr = E_NOINTERFACE;
|
hr = E_NOINTERFACE;
|
||||||
}
|
}
|
||||||
IF_FAILED_JUMP(hr, error);
|
IF_FAILED_JUMP(hr, error);
|
||||||
|
|
||||||
// Get the connector's IPart interface.
|
// Get the connector's IPart interface
|
||||||
hr = IConnector_QueryInterface(pConnTo, &pa_IID_IPart, (void**)&pPart);
|
hr = IConnector_QueryInterface(pConnTo, &pa_IID_IPart, (void**)&pPart);
|
||||||
IF_FAILED_JUMP(hr, error);
|
IF_FAILED_JUMP(hr, error);
|
||||||
|
|
||||||
// Activate the connector's IKsJackDescription interface.
|
// Activate the connector's IKsJackDescription interface
|
||||||
hr = IPart_Activate(pPart, CLSCTX_INPROC_SERVER, &pa_IID_IKsJackDescription, (void**)&pJackDesc);
|
hr = IPart_Activate(pPart, CLSCTX_INPROC_SERVER, &pa_IID_IKsJackDescription, (void**)&pJackDesc);
|
||||||
IF_FAILED_JUMP(hr, error);
|
IF_FAILED_JUMP(hr, error);
|
||||||
|
|
||||||
// Return jack count for this device.
|
// Return jack count for this device
|
||||||
hr = IKsJackDescription_GetJackCount(pJackDesc, &jackCount);
|
hr = IKsJackDescription_GetJackCount(pJackDesc, &jackCount);
|
||||||
IF_FAILED_JUMP(hr, error);
|
IF_FAILED_JUMP(hr, error);
|
||||||
|
|
||||||
// Set.
|
// Set.
|
||||||
(*jcount) = jackCount;
|
(*pJackCount) = jackCount;
|
||||||
|
|
||||||
// Ok.
|
// Ok.
|
||||||
ret = paNoError;
|
ret = paNoError;
|
||||||
|
|
@ -4978,8 +5019,8 @@ error:
|
||||||
LogHostError(hr);
|
LogHostError(hr);
|
||||||
return paNoError;
|
return paNoError;
|
||||||
#else
|
#else
|
||||||
(void)nDevice;
|
(void)device;
|
||||||
(void)jcount;
|
(void)pJackCount;
|
||||||
return paUnanticipatedHostError;
|
return paUnanticipatedHostError;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
@ -5077,7 +5118,7 @@ static PaWasapiJackPortConnection _ConvertJackPortConnectionWASAPIToPA(int portC
|
||||||
// Described at:
|
// Described at:
|
||||||
// http://msdn.microsoft.com/en-us/library/dd371387(v=VS.85).aspx
|
// http://msdn.microsoft.com/en-us/library/dd371387(v=VS.85).aspx
|
||||||
|
|
||||||
PaError PaWasapi_GetJackDescription(PaDeviceIndex nDevice, int jindex, PaWasapiJackDescription *pJackDescription)
|
PaError PaWasapi_GetJackDescription(PaDeviceIndex device, int jackIndex, PaWasapiJackDescription *pJackDescription)
|
||||||
{
|
{
|
||||||
#ifndef PA_WINRT
|
#ifndef PA_WINRT
|
||||||
PaError ret;
|
PaError ret;
|
||||||
|
|
@ -5094,46 +5135,46 @@ PaError PaWasapi_GetJackDescription(PaDeviceIndex nDevice, int jindex, PaWasapiJ
|
||||||
if (paWasapi == NULL)
|
if (paWasapi == NULL)
|
||||||
return paNotInitialized;
|
return paNotInitialized;
|
||||||
|
|
||||||
// Get device index.
|
// Get device index
|
||||||
ret = PaUtil_DeviceIndexToHostApiDeviceIndex(&index, nDevice, &paWasapi->inheritedHostApiRep);
|
ret = PaUtil_DeviceIndexToHostApiDeviceIndex(&index, device, &paWasapi->inheritedHostApiRep);
|
||||||
if (ret != paNoError)
|
if (ret != paNoError)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
// Validate index.
|
// Validate index
|
||||||
if ((UINT32)index >= paWasapi->deviceCount)
|
if ((UINT32)index >= paWasapi->deviceCount)
|
||||||
return paInvalidDevice;
|
return paInvalidDevice;
|
||||||
|
|
||||||
// Get the endpoint device's IDeviceTopology interface.
|
// Get the endpoint device's IDeviceTopology interface
|
||||||
hr = IMMDevice_Activate(paWasapi->devInfo[index].device, &pa_IID_IDeviceTopology,
|
hr = IMMDevice_Activate(paWasapi->devInfo[index].device, &pa_IID_IDeviceTopology,
|
||||||
CLSCTX_INPROC_SERVER, NULL, (void**)&pDeviceTopology);
|
CLSCTX_INPROC_SERVER, NULL, (void**)&pDeviceTopology);
|
||||||
IF_FAILED_JUMP(hr, error);
|
IF_FAILED_JUMP(hr, error);
|
||||||
|
|
||||||
// The device topology for an endpoint device always contains just one connector (connector number 0).
|
// The device topology for an endpoint device always contains just one connector (connector number 0)
|
||||||
hr = IDeviceTopology_GetConnector(pDeviceTopology, 0, &pConnFrom);
|
hr = IDeviceTopology_GetConnector(pDeviceTopology, 0, &pConnFrom);
|
||||||
IF_FAILED_JUMP(hr, error);
|
IF_FAILED_JUMP(hr, error);
|
||||||
|
|
||||||
// Step across the connection to the jack on the adapter.
|
// Step across the connection to the jack on the adapter
|
||||||
hr = IConnector_GetConnectedTo(pConnFrom, &pConnTo);
|
hr = IConnector_GetConnectedTo(pConnFrom, &pConnTo);
|
||||||
if (HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND) == hr)
|
if (HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND) == hr)
|
||||||
{
|
{
|
||||||
// The adapter device is not currently active.
|
// The adapter device is not currently active
|
||||||
hr = E_NOINTERFACE;
|
hr = E_NOINTERFACE;
|
||||||
}
|
}
|
||||||
IF_FAILED_JUMP(hr, error);
|
IF_FAILED_JUMP(hr, error);
|
||||||
|
|
||||||
// Get the connector's IPart interface.
|
// Get the connector's IPart interface
|
||||||
hr = IConnector_QueryInterface(pConnTo, &pa_IID_IPart, (void**)&pPart);
|
hr = IConnector_QueryInterface(pConnTo, &pa_IID_IPart, (void**)&pPart);
|
||||||
IF_FAILED_JUMP(hr, error);
|
IF_FAILED_JUMP(hr, error);
|
||||||
|
|
||||||
// Activate the connector's IKsJackDescription interface.
|
// Activate the connector's IKsJackDescription interface
|
||||||
hr = IPart_Activate(pPart, CLSCTX_INPROC_SERVER, &pa_IID_IKsJackDescription, (void**)&pJackDesc);
|
hr = IPart_Activate(pPart, CLSCTX_INPROC_SERVER, &pa_IID_IKsJackDescription, (void**)&pJackDesc);
|
||||||
IF_FAILED_JUMP(hr, error);
|
IF_FAILED_JUMP(hr, error);
|
||||||
|
|
||||||
// Test to return jack description struct for index 0.
|
// Test to return jack description struct for index 0
|
||||||
hr = IKsJackDescription_GetJackDescription(pJackDesc, jindex, &jack);
|
hr = IKsJackDescription_GetJackDescription(pJackDesc, jackIndex, &jack);
|
||||||
IF_FAILED_JUMP(hr, error);
|
IF_FAILED_JUMP(hr, error);
|
||||||
|
|
||||||
// Convert WASAPI values to PA format.
|
// Convert WASAPI values to PA format
|
||||||
pJackDescription->channelMapping = jack.ChannelMapping;
|
pJackDescription->channelMapping = jack.ChannelMapping;
|
||||||
pJackDescription->color = jack.Color;
|
pJackDescription->color = jack.Color;
|
||||||
pJackDescription->connectionType = _ConvertJackConnectionTypeWASAPIToPA(jack.ConnectionType);
|
pJackDescription->connectionType = _ConvertJackConnectionTypeWASAPIToPA(jack.ConnectionType);
|
||||||
|
|
@ -5142,7 +5183,7 @@ PaError PaWasapi_GetJackDescription(PaDeviceIndex nDevice, int jindex, PaWasapiJ
|
||||||
pJackDescription->isConnected = jack.IsConnected;
|
pJackDescription->isConnected = jack.IsConnected;
|
||||||
pJackDescription->portConnection = _ConvertJackPortConnectionWASAPIToPA(jack.PortConnection);
|
pJackDescription->portConnection = _ConvertJackPortConnectionWASAPIToPA(jack.PortConnection);
|
||||||
|
|
||||||
// Ok.
|
// Ok
|
||||||
ret = paNoError;
|
ret = paNoError;
|
||||||
|
|
||||||
error:
|
error:
|
||||||
|
|
@ -5157,8 +5198,8 @@ error:
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
#else
|
#else
|
||||||
(void)nDevice;
|
(void)device;
|
||||||
(void)jindex;
|
(void)jackIndex;
|
||||||
(void)pJackDescription;
|
(void)pJackDescription;
|
||||||
return paUnanticipatedHostError;
|
return paUnanticipatedHostError;
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -5183,11 +5224,12 @@ PaError PaWasapi_GetAudioClient(PaStream *pStream, void **pAudioClient, int bOut
|
||||||
PaError PaWasapi_SetDefaultInterfaceId( unsigned short *pId, int bOutput )
|
PaError PaWasapi_SetDefaultInterfaceId( unsigned short *pId, int bOutput )
|
||||||
{
|
{
|
||||||
#ifdef PA_WINRT
|
#ifdef PA_WINRT
|
||||||
|
int i;
|
||||||
|
|
||||||
// Validate Id length
|
// Validate Id length
|
||||||
if (pId != NULL)
|
if (pId != NULL)
|
||||||
{
|
{
|
||||||
for (int i = 0; pId[i] != 0; ++i)
|
for (i = 0; pId[i] != 0; ++i)
|
||||||
{
|
{
|
||||||
if (i >= PA_WASAPI_DEVICE_ID_LEN)
|
if (i >= PA_WASAPI_DEVICE_ID_LEN)
|
||||||
return paBufferTooBig;
|
return paBufferTooBig;
|
||||||
|
|
@ -5200,7 +5242,7 @@ PaError PaWasapi_SetDefaultInterfaceId( unsigned short *pId, int bOutput )
|
||||||
memset(g_DefaultRenderId, 0, sizeof(g_DefaultRenderId));
|
memset(g_DefaultRenderId, 0, sizeof(g_DefaultRenderId));
|
||||||
if (pId != NULL)
|
if (pId != NULL)
|
||||||
{
|
{
|
||||||
for (int i = 0; (pId[i] != 0) && (i < STATIC_ARRAY_SIZE(g_DefaultRenderId)); ++i)
|
for (i = 0; (pId[i] != 0) && (i < STATIC_ARRAY_SIZE(g_DefaultRenderId)); ++i)
|
||||||
g_DefaultRenderId[i] = pId[i];
|
g_DefaultRenderId[i] = pId[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -5209,7 +5251,7 @@ PaError PaWasapi_SetDefaultInterfaceId( unsigned short *pId, int bOutput )
|
||||||
memset(g_DefaultCaptureId, 0, sizeof(g_DefaultCaptureId));
|
memset(g_DefaultCaptureId, 0, sizeof(g_DefaultCaptureId));
|
||||||
if (pId != NULL)
|
if (pId != NULL)
|
||||||
{
|
{
|
||||||
for (int i = 0; (pId[i] != 0) && (i < STATIC_ARRAY_SIZE(g_DefaultCaptureId)); ++i)
|
for (i = 0; (pId[i] != 0) && (i < STATIC_ARRAY_SIZE(g_DefaultCaptureId)); ++i)
|
||||||
g_DefaultCaptureId[i] = pId[i];
|
g_DefaultCaptureId[i] = pId[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -5221,6 +5263,19 @@ PaError PaWasapi_SetDefaultInterfaceId( unsigned short *pId, int bOutput )
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------
|
||||||
|
PaError PaWasapi_SetStreamStateHandler( PaStream *pStream, PaWasapiStreamStateCallback fnStateHandler, void *pUserData )
|
||||||
|
{
|
||||||
|
PaWasapiStream *stream = (PaWasapiStream *)pStream;
|
||||||
|
if (stream == NULL)
|
||||||
|
return paBadStreamPtr;
|
||||||
|
|
||||||
|
stream->fnStateHandler = fnStateHandler;
|
||||||
|
stream->pStateHandlerUserData = pUserData;
|
||||||
|
|
||||||
|
return paNoError;
|
||||||
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
HRESULT _PollGetOutputFramesAvailable(PaWasapiStream *stream, UINT32 *available)
|
HRESULT _PollGetOutputFramesAvailable(PaWasapiStream *stream, UINT32 *available)
|
||||||
{
|
{
|
||||||
|
|
@ -5448,6 +5503,9 @@ PA_THREAD_FUNC ProcThreadEvent(void *param)
|
||||||
BOOL bWaitAllEvents = FALSE;
|
BOOL bWaitAllEvents = FALSE;
|
||||||
BOOL bThreadComInitialized = FALSE;
|
BOOL bThreadComInitialized = FALSE;
|
||||||
|
|
||||||
|
// Notify: state
|
||||||
|
NotifyStateChanged(stream, paWasapiStreamStateThreadPrepare, ERROR_SUCCESS);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
If COM is already initialized CoInitialize will either return
|
If COM is already initialized CoInitialize will either return
|
||||||
FALSE, or RPC_E_CHANGED_MODE if it was initialized in a different
|
FALSE, or RPC_E_CHANGED_MODE if it was initialized in a different
|
||||||
|
|
@ -5560,6 +5618,9 @@ PA_THREAD_FUNC ProcThreadEvent(void *param)
|
||||||
// Notify: thread started
|
// Notify: thread started
|
||||||
SetEvent(stream->hThreadStart);
|
SetEvent(stream->hThreadStart);
|
||||||
|
|
||||||
|
// Notify: state
|
||||||
|
NotifyStateChanged(stream, paWasapiStreamStateThreadStart, ERROR_SUCCESS);
|
||||||
|
|
||||||
// Processing Loop
|
// Processing Loop
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
|
|
@ -5627,6 +5688,9 @@ thread_end:
|
||||||
// Notify: thread exited
|
// Notify: thread exited
|
||||||
SetEvent(stream->hThreadExit);
|
SetEvent(stream->hThreadExit);
|
||||||
|
|
||||||
|
// Notify: state
|
||||||
|
NotifyStateChanged(stream, paWasapiStreamStateThreadStop, hr);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
thread_error:
|
thread_error:
|
||||||
|
|
@ -5655,6 +5719,9 @@ PA_THREAD_FUNC ProcThreadPoll(void *param)
|
||||||
|
|
||||||
BOOL bThreadComInitialized = FALSE;
|
BOOL bThreadComInitialized = FALSE;
|
||||||
|
|
||||||
|
// Notify: state
|
||||||
|
NotifyStateChanged(stream, paWasapiStreamStateThreadPrepare, ERROR_SUCCESS);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
If COM is already initialized CoInitialize will either return
|
If COM is already initialized CoInitialize will either return
|
||||||
FALSE, or RPC_E_CHANGED_MODE if it was initialized in a different
|
FALSE, or RPC_E_CHANGED_MODE if it was initialized in a different
|
||||||
|
|
@ -5797,6 +5864,9 @@ PA_THREAD_FUNC ProcThreadPoll(void *param)
|
||||||
// Notify: thread started
|
// Notify: thread started
|
||||||
SetEvent(stream->hThreadStart);
|
SetEvent(stream->hThreadStart);
|
||||||
|
|
||||||
|
// Notify: state
|
||||||
|
NotifyStateChanged(stream, paWasapiStreamStateThreadStart, ERROR_SUCCESS);
|
||||||
|
|
||||||
if (!PA_WASAPI__IS_FULLDUPLEX(stream))
|
if (!PA_WASAPI__IS_FULLDUPLEX(stream))
|
||||||
{
|
{
|
||||||
// Processing Loop
|
// Processing Loop
|
||||||
|
|
@ -6152,6 +6222,9 @@ thread_end:
|
||||||
// Notify: thread exited
|
// Notify: thread exited
|
||||||
SetEvent(stream->hThreadExit);
|
SetEvent(stream->hThreadExit);
|
||||||
|
|
||||||
|
// Notify: state
|
||||||
|
NotifyStateChanged(stream, paWasapiStreamStateThreadStop, hr);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
thread_error:
|
thread_error:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue