mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-18 18:11:56 -05:00
Merge pull request #14 from cjcliffe/integrate_rtaudio
Integrate RtAudio
This commit is contained in:
commit
7c6d2e1131
@ -48,11 +48,8 @@ SET( CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${PROJECT_BINARY_DIR})
|
|||||||
#include_directories ( ${PROJECT_SOURCE_DIR}/../CubicVR-2/build/include )
|
#include_directories ( ${PROJECT_SOURCE_DIR}/../CubicVR-2/build/include )
|
||||||
#link_directories ( ${PROJECT_SOURCE_DIR}/../CubicVR-2/build/lib )
|
#link_directories ( ${PROJECT_SOURCE_DIR}/../CubicVR-2/build/lib )
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
find_package(OpenGL REQUIRED)
|
find_package(OpenGL REQUIRED)
|
||||||
|
|
||||||
|
|
||||||
find_package(wxWidgets REQUIRED gl core base)
|
find_package(wxWidgets REQUIRED gl core base)
|
||||||
set(wxWidgets_CONFIGURATION mswu)
|
set(wxWidgets_CONFIGURATION mswu)
|
||||||
include(${wxWidgets_USE_FILE})
|
include(${wxWidgets_USE_FILE})
|
||||||
@ -60,30 +57,59 @@ include(${wxWidgets_USE_FILE})
|
|||||||
# include_directories ( ${PROJECT_SOURCE_DIR}/../CubicVR-2/build/include )
|
# include_directories ( ${PROJECT_SOURCE_DIR}/../CubicVR-2/build/include )
|
||||||
# link_directories ( ${PROJECT_SOURCE_DIR}/../CubicVR-2/build/lib ${OPENGL_INCLUDE_DIR})
|
# link_directories ( ${PROJECT_SOURCE_DIR}/../CubicVR-2/build/lib ${OPENGL_INCLUDE_DIR})
|
||||||
|
|
||||||
|
IF (DEFINED WIN32)
|
||||||
if (DEFINED WIN32)
|
|
||||||
set(wxWidgets_USE_STATIC ON)
|
set(wxWidgets_USE_STATIC ON)
|
||||||
include_directories ( ${PROJECT_SOURCE_DIR}/external/fftw-3.3.4-dll64 ${PROJECT_SOURCE_DIR}/external/rtl-sdr-release )
|
include_directories ( ${PROJECT_SOURCE_DIR}/external/fftw-3.3.4-dll64 ${PROJECT_SOURCE_DIR}/external/rtl-sdr-release )
|
||||||
link_directories ( ${PROJECT_SOURCE_DIR}/external/fftw-3.3.4-dll64 ${PROJECT_SOURCE_DIR}/external/rtl-sdr-release/x64 )
|
link_directories ( ${PROJECT_SOURCE_DIR}/external/fftw-3.3.4-dll64 ${PROJECT_SOURCE_DIR}/external/rtl-sdr-release/x64 )
|
||||||
set(FFTW_LIB fftw3-3)
|
set(FFTW_LIB fftw3-3)
|
||||||
|
|
||||||
include_directories ( ${PROJECT_SOURCE_DIR}/external/portaudio/include )
|
|
||||||
link_directories ( ${PROJECT_SOURCE_DIR}/external/portaudio/libs/64 )
|
|
||||||
SET (PORTAUDIO_LIBRARY libportaudio_x86.dll winmm)
|
|
||||||
|
|
||||||
link_directories ( ${PROJECT_SOURCE_DIR}/external/liquid-dsp/lib/64 )
|
link_directories ( ${PROJECT_SOURCE_DIR}/external/liquid-dsp/lib/64 )
|
||||||
include_directories ( ${PROJECT_SOURCE_DIR}/external/liquid-dsp/include )
|
include_directories ( ${PROJECT_SOURCE_DIR}/external/liquid-dsp/include )
|
||||||
else (DEFINED WIN32)
|
|
||||||
set(RTLSDR_INCLUDE "/opt/local/include" CACHE FILEPATH "RTL-SDR Include Path")
|
|
||||||
set(RTLSDR_LIB "/opt/local/lib" CACHE FILEPATH "RTL-SDR Lib Path")
|
|
||||||
include_directories(${RTLSDR_INCLUDE})
|
|
||||||
link_directories(${RTLSDR_LIB})
|
|
||||||
|
|
||||||
set(FFTW_LIB fftw3)
|
ADD_DEFINITIONS(
|
||||||
|
# To use wasapi
|
||||||
|
-D__WINDOWS_WASAPI__
|
||||||
|
# To use directsound
|
||||||
|
#-D__WINDOWS_DS__
|
||||||
|
)
|
||||||
|
|
||||||
SET (PORTAUDIO_LIBRARY portaudio)
|
# To use wasapi
|
||||||
endif (DEFINED WIN32)
|
SET(OTHER_LIBRARIES -luuid -lksuser )
|
||||||
|
# To use DirectSound (which uses WASAPI anyways?)
|
||||||
|
# SET(OTHER_LIBRARIES -ldsound)
|
||||||
|
ENDIF (DEFINED WIN32)
|
||||||
|
|
||||||
|
IF (UNIX)
|
||||||
|
set(RTLSDR_INCLUDE "/opt/local/include" CACHE FILEPATH "RTL-SDR Include Path")
|
||||||
|
set(RTLSDR_LIB "/opt/local/lib" CACHE FILEPATH "RTL-SDR Lib Path")
|
||||||
|
include_directories(${RTLSDR_INCLUDE})
|
||||||
|
link_directories(${RTLSDR_LIB})
|
||||||
|
|
||||||
|
set(FFTW_LIB fftw3)
|
||||||
|
|
||||||
|
ADD_DEFINITIONS(
|
||||||
|
# -D__UNIX_JACK__
|
||||||
|
# -D__LINUX_ALSA__
|
||||||
|
# -D__LINUX_PULSE__
|
||||||
|
# -D__LINUX_OSS__
|
||||||
|
)
|
||||||
|
ENDIF(UNIX)
|
||||||
|
|
||||||
|
IF (APPLE)
|
||||||
|
set(RTLSDR_INCLUDE "/opt/local/include" CACHE FILEPATH "RTL-SDR Include Path")
|
||||||
|
set(RTLSDR_LIB "/opt/local/lib" CACHE FILEPATH "RTL-SDR Lib Path")
|
||||||
|
include_directories(${RTLSDR_INCLUDE})
|
||||||
|
link_directories(${RTLSDR_LIB})
|
||||||
|
|
||||||
|
set(FFTW_LIB fftw3)
|
||||||
|
|
||||||
|
ADD_DEFINITIONS(
|
||||||
|
-D__MACOSX_CORE__
|
||||||
|
)
|
||||||
|
|
||||||
|
FIND_LIBRARY(COREAUDIO_LIBRARY CoreAudio)
|
||||||
|
SET (OTHER_LIBRARIES ${COREAUDIO_LIBRARY})
|
||||||
|
ENDIF (APPLE)
|
||||||
|
|
||||||
|
|
||||||
SET (cubicsdr_sources
|
SET (cubicsdr_sources
|
||||||
@ -105,6 +131,7 @@ SET (cubicsdr_sources
|
|||||||
src/visual/SpectrumContext.cpp
|
src/visual/SpectrumContext.cpp
|
||||||
src/visual/WaterfallCanvas.cpp
|
src/visual/WaterfallCanvas.cpp
|
||||||
src/visual/WaterfallContext.cpp
|
src/visual/WaterfallContext.cpp
|
||||||
|
external/rtaudio/RtAudio.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
SET (cubicsdr_headers
|
SET (cubicsdr_headers
|
||||||
@ -128,6 +155,7 @@ SET (cubicsdr_headers
|
|||||||
src/visual/SpectrumContext.h
|
src/visual/SpectrumContext.h
|
||||||
src/visual/WaterfallCanvas.h
|
src/visual/WaterfallCanvas.h
|
||||||
src/visual/WaterfallContext.h
|
src/visual/WaterfallContext.h
|
||||||
|
external/rtaudio/RtAudio.h
|
||||||
)
|
)
|
||||||
|
|
||||||
include_directories ( ${PROJECT_SOURCE_DIR}/src/sdr
|
include_directories ( ${PROJECT_SOURCE_DIR}/src/sdr
|
||||||
@ -135,7 +163,8 @@ include_directories ( ${PROJECT_SOURCE_DIR}/src/sdr
|
|||||||
${PROJECT_SOURCE_DIR}/src/audio
|
${PROJECT_SOURCE_DIR}/src/audio
|
||||||
${PROJECT_SOURCE_DIR}/src/util
|
${PROJECT_SOURCE_DIR}/src/util
|
||||||
${PROJECT_SOURCE_DIR}/src/visual
|
${PROJECT_SOURCE_DIR}/src/visual
|
||||||
${PROJECT_SOURCE_DIR}/src )
|
${PROJECT_SOURCE_DIR}/src
|
||||||
|
${PROJECT_SOURCE_DIR}/external/rtaudio )
|
||||||
|
|
||||||
ADD_DEFINITIONS(
|
ADD_DEFINITIONS(
|
||||||
-std=c++0x # or -std=c++11
|
-std=c++0x # or -std=c++11
|
||||||
@ -147,10 +176,5 @@ ADD_DEFINITIONS(
|
|||||||
|
|
||||||
add_executable(CubicSDR ${cubicsdr_sources} ${cubicsdr_headers})
|
add_executable(CubicSDR ${cubicsdr_sources} ${cubicsdr_headers})
|
||||||
|
|
||||||
target_link_libraries(CubicSDR rtlsdr liquid ${FFTW_LIB} ${wxWidgets_LIBRARIES} ${OPENGL_LIBRARIES} ${PORTAUDIO_LIBRARY})
|
target_link_libraries(CubicSDR rtlsdr liquid ${FFTW_LIB} ${wxWidgets_LIBRARIES} ${OPENGL_LIBRARIES} ${OTHER_LIBRARIES})
|
||||||
# cubicvr2 glfw ${GLFW_LIBRARIES}
|
# cubicvr2 glfw ${GLFW_LIBRARIES}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -5,9 +5,9 @@ Cross-Platform Software-Defined Radio Application
|
|||||||
|
|
||||||
Utilizes:
|
Utilizes:
|
||||||
--------
|
--------
|
||||||
- liquid-dsp (http://liquidsdr.org/)
|
- liquid-dsp (http://liquidsdr.org/ https://github.com/jgaeddert/liquid-dsp)
|
||||||
|
- RtAudio (http://www.music.mcgill.ca/~gary/rtaudio/ http://github.com/thestk/rtaudio/)
|
||||||
- OpenGL (https://www.opengl.org/)
|
- OpenGL (https://www.opengl.org/)
|
||||||
- portaudio (http://www.portaudio.com/)
|
|
||||||
- wxWidgets (https://www.wxwidgets.org/)
|
- wxWidgets (https://www.wxwidgets.org/)
|
||||||
- CMake (http://www.cmake.org/)
|
- CMake (http://www.cmake.org/)
|
||||||
|
|
||||||
|
81
external/portaudio/LICENSE.txt
vendored
81
external/portaudio/LICENSE.txt
vendored
@ -1,81 +0,0 @@
|
|||||||
Portable header file to contain:
|
|
||||||
>>>>>
|
|
||||||
/*
|
|
||||||
* PortAudio Portable Real-Time Audio Library
|
|
||||||
* PortAudio API Header File
|
|
||||||
* Latest version available at: http://www.portaudio.com
|
|
||||||
*
|
|
||||||
* Copyright (c) 1999-2006 Ross Bencina and Phil Burk
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
* a copy of this software and associated documentation files
|
|
||||||
* (the "Software"), to deal in the Software without restriction,
|
|
||||||
* including without limitation the rights to use, copy, modify, merge,
|
|
||||||
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
||||||
* and to permit persons to whom the Software is furnished to do so,
|
|
||||||
* subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be
|
|
||||||
* included in all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
||||||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
||||||
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
||||||
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
||||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The text above constitutes the entire PortAudio license; however,
|
|
||||||
* the PortAudio community also makes the following non-binding requests:
|
|
||||||
*
|
|
||||||
* Any person wishing to distribute modifications to the Software is
|
|
||||||
* requested to send the modifications to the original developer so that
|
|
||||||
* they can be incorporated into the canonical version. It is also
|
|
||||||
* requested that these non-binding requests be included along with the
|
|
||||||
* license above.
|
|
||||||
*/
|
|
||||||
<<<<<
|
|
||||||
|
|
||||||
|
|
||||||
Implementation files to contain:
|
|
||||||
>>>>>
|
|
||||||
/*
|
|
||||||
* PortAudio Portable Real-Time Audio Library
|
|
||||||
* Latest version at: http://www.portaudio.com
|
|
||||||
* <platform> Implementation
|
|
||||||
* Copyright (c) 1999-2000 <author(s)>
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
* a copy of this software and associated documentation files
|
|
||||||
* (the "Software"), to deal in the Software without restriction,
|
|
||||||
* including without limitation the rights to use, copy, modify, merge,
|
|
||||||
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
||||||
* and to permit persons to whom the Software is furnished to do so,
|
|
||||||
* subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be
|
|
||||||
* included in all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
||||||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
||||||
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
||||||
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
||||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The text above constitutes the entire PortAudio license; however,
|
|
||||||
* the PortAudio community also makes the following non-binding requests:
|
|
||||||
*
|
|
||||||
* Any person wishing to distribute modifications to the Software is
|
|
||||||
* requested to send the modifications to the original developer so that
|
|
||||||
* they can be incorporated into the canonical version. It is also
|
|
||||||
* requested that these non-binding requests be included along with the
|
|
||||||
* license above.
|
|
||||||
*/
|
|
||||||
<<<<<
|
|
150
external/portaudio/include/pa_asio.h
vendored
150
external/portaudio/include/pa_asio.h
vendored
@ -1,150 +0,0 @@
|
|||||||
#ifndef PA_ASIO_H
|
|
||||||
#define PA_ASIO_H
|
|
||||||
/*
|
|
||||||
* $Id: pa_asio.h 1667 2011-05-02 15:49:20Z rossb $
|
|
||||||
* PortAudio Portable Real-Time Audio Library
|
|
||||||
* ASIO specific extensions
|
|
||||||
*
|
|
||||||
* Copyright (c) 1999-2000 Ross Bencina and Phil Burk
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
* a copy of this software and associated documentation files
|
|
||||||
* (the "Software"), to deal in the Software without restriction,
|
|
||||||
* including without limitation the rights to use, copy, modify, merge,
|
|
||||||
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
||||||
* and to permit persons to whom the Software is furnished to do so,
|
|
||||||
* subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be
|
|
||||||
* included in all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
||||||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
||||||
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
||||||
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
||||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The text above constitutes the entire PortAudio license; however,
|
|
||||||
* the PortAudio community also makes the following non-binding requests:
|
|
||||||
*
|
|
||||||
* Any person wishing to distribute modifications to the Software is
|
|
||||||
* requested to send the modifications to the original developer so that
|
|
||||||
* they can be incorporated into the canonical version. It is also
|
|
||||||
* requested that these non-binding requests be included along with the
|
|
||||||
* license above.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/** @file
|
|
||||||
@ingroup public_header
|
|
||||||
@brief ASIO-specific PortAudio API extension header file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "portaudio.h"
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C"
|
|
||||||
{
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
|
|
||||||
/** Retrieve legal native buffer sizes for the specificed device, in sample frames.
|
|
||||||
|
|
||||||
@param device The global index of the device about which the query is being made.
|
|
||||||
@param minBufferSizeFrames A pointer to the location which will receive the minimum buffer size value.
|
|
||||||
@param maxBufferSizeFrames A pointer to the location which will receive the maximum buffer size value.
|
|
||||||
@param preferredBufferSizeFrames A pointer to the location which will receive the preferred buffer size value.
|
|
||||||
@param granularity A pointer to the location which will receive the "granularity". This value determines
|
|
||||||
the step size used to compute the legal values between minBufferSizeFrames and maxBufferSizeFrames.
|
|
||||||
If granularity is -1 then available buffer size values are powers of two.
|
|
||||||
|
|
||||||
@see ASIOGetBufferSize in the ASIO SDK.
|
|
||||||
|
|
||||||
@note: this function used to be called PaAsio_GetAvailableLatencyValues. There is a
|
|
||||||
#define that maps PaAsio_GetAvailableLatencyValues to this function for backwards compatibility.
|
|
||||||
*/
|
|
||||||
PaError PaAsio_GetAvailableBufferSizes( PaDeviceIndex device,
|
|
||||||
long *minBufferSizeFrames, long *maxBufferSizeFrames, long *preferredBufferSizeFrames, long *granularity );
|
|
||||||
|
|
||||||
|
|
||||||
/** Backwards compatibility alias for PaAsio_GetAvailableBufferSizes
|
|
||||||
|
|
||||||
@see PaAsio_GetAvailableBufferSizes
|
|
||||||
*/
|
|
||||||
#define PaAsio_GetAvailableLatencyValues PaAsio_GetAvailableBufferSizes
|
|
||||||
|
|
||||||
|
|
||||||
/** Display the ASIO control panel for the specified device.
|
|
||||||
|
|
||||||
@param device The global index of the device whose control panel is to be displayed.
|
|
||||||
@param systemSpecific On Windows, the calling application's main window handle,
|
|
||||||
on Macintosh this value should be zero.
|
|
||||||
*/
|
|
||||||
PaError PaAsio_ShowControlPanel( PaDeviceIndex device, void* systemSpecific );
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/** Retrieve a pointer to a string containing the name of the specified
|
|
||||||
input channel. The string is valid until Pa_Terminate is called.
|
|
||||||
|
|
||||||
The string will be no longer than 32 characters including the null terminator.
|
|
||||||
*/
|
|
||||||
PaError PaAsio_GetInputChannelName( PaDeviceIndex device, int channelIndex,
|
|
||||||
const char** channelName );
|
|
||||||
|
|
||||||
|
|
||||||
/** Retrieve a pointer to a string containing the name of the specified
|
|
||||||
input channel. The string is valid until Pa_Terminate is called.
|
|
||||||
|
|
||||||
The string will be no longer than 32 characters including the null terminator.
|
|
||||||
*/
|
|
||||||
PaError PaAsio_GetOutputChannelName( PaDeviceIndex device, int channelIndex,
|
|
||||||
const char** channelName );
|
|
||||||
|
|
||||||
|
|
||||||
/** Set the sample rate of an open paASIO stream.
|
|
||||||
|
|
||||||
@param stream The stream to operate on.
|
|
||||||
@param sampleRate The new sample rate.
|
|
||||||
|
|
||||||
Note that this function may fail if the stream is alredy running and the
|
|
||||||
ASIO driver does not support switching the sample rate of a running stream.
|
|
||||||
|
|
||||||
Returns paIncompatibleStreamHostApi if stream is not a paASIO stream.
|
|
||||||
*/
|
|
||||||
PaError PaAsio_SetStreamSampleRate( PaStream* stream, double sampleRate );
|
|
||||||
|
|
||||||
|
|
||||||
#define paAsioUseChannelSelectors (0x01)
|
|
||||||
|
|
||||||
typedef struct PaAsioStreamInfo{
|
|
||||||
unsigned long size; /**< sizeof(PaAsioStreamInfo) */
|
|
||||||
PaHostApiTypeId hostApiType; /**< paASIO */
|
|
||||||
unsigned long version; /**< 1 */
|
|
||||||
|
|
||||||
unsigned long flags;
|
|
||||||
|
|
||||||
/* Support for opening only specific channels of an ASIO device.
|
|
||||||
If the paAsioUseChannelSelectors flag is set, channelSelectors is a
|
|
||||||
pointer to an array of integers specifying the device channels to use.
|
|
||||||
When used, the length of the channelSelectors array must match the
|
|
||||||
corresponding channelCount parameter to Pa_OpenStream() otherwise a
|
|
||||||
crash may result.
|
|
||||||
The values in the selectors array must specify channels within the
|
|
||||||
range of supported channels for the device or paInvalidChannelCount will
|
|
||||||
result.
|
|
||||||
*/
|
|
||||||
int *channelSelectors;
|
|
||||||
}PaAsioStreamInfo;
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#endif /* PA_ASIO_H */
|
|
95
external/portaudio/include/pa_win_ds.h
vendored
95
external/portaudio/include/pa_win_ds.h
vendored
@ -1,95 +0,0 @@
|
|||||||
#ifndef PA_WIN_DS_H
|
|
||||||
#define PA_WIN_DS_H
|
|
||||||
/*
|
|
||||||
* $Id: $
|
|
||||||
* PortAudio Portable Real-Time Audio Library
|
|
||||||
* DirectSound specific extensions
|
|
||||||
*
|
|
||||||
* Copyright (c) 1999-2007 Ross Bencina and Phil Burk
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
* a copy of this software and associated documentation files
|
|
||||||
* (the "Software"), to deal in the Software without restriction,
|
|
||||||
* including without limitation the rights to use, copy, modify, merge,
|
|
||||||
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
||||||
* and to permit persons to whom the Software is furnished to do so,
|
|
||||||
* subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be
|
|
||||||
* included in all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
||||||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
||||||
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
||||||
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
||||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The text above constitutes the entire PortAudio license; however,
|
|
||||||
* the PortAudio community also makes the following non-binding requests:
|
|
||||||
*
|
|
||||||
* Any person wishing to distribute modifications to the Software is
|
|
||||||
* requested to send the modifications to the original developer so that
|
|
||||||
* they can be incorporated into the canonical version. It is also
|
|
||||||
* requested that these non-binding requests be included along with the
|
|
||||||
* license above.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @file
|
|
||||||
@ingroup public_header
|
|
||||||
@brief DirectSound-specific PortAudio API extension header file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "portaudio.h"
|
|
||||||
#include "pa_win_waveformat.h"
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C"
|
|
||||||
{
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
|
|
||||||
#define paWinDirectSoundUseLowLevelLatencyParameters (0x01)
|
|
||||||
#define paWinDirectSoundUseChannelMask (0x04)
|
|
||||||
|
|
||||||
|
|
||||||
typedef struct PaWinDirectSoundStreamInfo{
|
|
||||||
unsigned long size; /**< sizeof(PaWinDirectSoundStreamInfo) */
|
|
||||||
PaHostApiTypeId hostApiType; /**< paDirectSound */
|
|
||||||
unsigned long version; /**< 2 */
|
|
||||||
|
|
||||||
unsigned long flags; /**< enable other features of this struct */
|
|
||||||
|
|
||||||
/**
|
|
||||||
low-level latency setting support
|
|
||||||
Sets the size of the DirectSound host buffer.
|
|
||||||
When flags contains the paWinDirectSoundUseLowLevelLatencyParameters
|
|
||||||
this size will be used instead of interpreting the generic latency
|
|
||||||
parameters to Pa_OpenStream(). If the flag is not set this value is ignored.
|
|
||||||
|
|
||||||
If the stream is a full duplex stream the implementation requires that
|
|
||||||
the values of framesPerBuffer for input and output match (if both are specified).
|
|
||||||
*/
|
|
||||||
unsigned long framesPerBuffer;
|
|
||||||
|
|
||||||
/**
|
|
||||||
support for WAVEFORMATEXTENSIBLE channel masks. If flags contains
|
|
||||||
paWinDirectSoundUseChannelMask this allows you to specify which speakers
|
|
||||||
to address in a multichannel stream. Constants for channelMask
|
|
||||||
are specified in pa_win_waveformat.h
|
|
||||||
|
|
||||||
*/
|
|
||||||
PaWinWaveFormatChannelMask channelMask;
|
|
||||||
|
|
||||||
}PaWinDirectSoundStreamInfo;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#endif /* PA_WIN_DS_H */
|
|
391
external/portaudio/include/pa_win_wasapi.h
vendored
391
external/portaudio/include/pa_win_wasapi.h
vendored
@ -1,391 +0,0 @@
|
|||||||
#ifndef PA_WIN_WASAPI_H
|
|
||||||
#define PA_WIN_WASAPI_H
|
|
||||||
/*
|
|
||||||
* $Id: $
|
|
||||||
* PortAudio Portable Real-Time Audio Library
|
|
||||||
* DirectSound specific extensions
|
|
||||||
*
|
|
||||||
* Copyright (c) 1999-2007 Ross Bencina and Phil Burk
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
* a copy of this software and associated documentation files
|
|
||||||
* (the "Software"), to deal in the Software without restriction,
|
|
||||||
* including without limitation the rights to use, copy, modify, merge,
|
|
||||||
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
||||||
* and to permit persons to whom the Software is furnished to do so,
|
|
||||||
* subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be
|
|
||||||
* included in all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
||||||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
||||||
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
||||||
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
||||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The text above constitutes the entire PortAudio license; however,
|
|
||||||
* the PortAudio community also makes the following non-binding requests:
|
|
||||||
*
|
|
||||||
* Any person wishing to distribute modifications to the Software is
|
|
||||||
* requested to send the modifications to the original developer so that
|
|
||||||
* they can be incorporated into the canonical version. It is also
|
|
||||||
* requested that these non-binding requests be included along with the
|
|
||||||
* license above.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @file
|
|
||||||
@ingroup public_header
|
|
||||||
@brief WASAPI-specific PortAudio API extension header file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "portaudio.h"
|
|
||||||
#include "pa_win_waveformat.h"
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C"
|
|
||||||
{
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
|
|
||||||
/* Setup flags */
|
|
||||||
typedef enum PaWasapiFlags
|
|
||||||
{
|
|
||||||
/* puts WASAPI into exclusive mode */
|
|
||||||
paWinWasapiExclusive = (1 << 0),
|
|
||||||
|
|
||||||
/* allows to skip internal PA processing completely */
|
|
||||||
paWinWasapiRedirectHostProcessor = (1 << 1),
|
|
||||||
|
|
||||||
/* assigns custom channel mask */
|
|
||||||
paWinWasapiUseChannelMask = (1 << 2),
|
|
||||||
|
|
||||||
/* selects non-Event driven method of data read/write
|
|
||||||
Note: WASAPI Event driven core is capable of 2ms latency!!!, but Polling
|
|
||||||
method can only provide 15-20ms latency. */
|
|
||||||
paWinWasapiPolling = (1 << 3),
|
|
||||||
|
|
||||||
/* forces custom thread priority setting. must be used if PaWasapiStreamInfo::threadPriority
|
|
||||||
is set to custom value. */
|
|
||||||
paWinWasapiThreadPriority = (1 << 4)
|
|
||||||
}
|
|
||||||
PaWasapiFlags;
|
|
||||||
#define paWinWasapiExclusive (paWinWasapiExclusive)
|
|
||||||
#define paWinWasapiRedirectHostProcessor (paWinWasapiRedirectHostProcessor)
|
|
||||||
#define paWinWasapiUseChannelMask (paWinWasapiUseChannelMask)
|
|
||||||
#define paWinWasapiPolling (paWinWasapiPolling)
|
|
||||||
#define paWinWasapiThreadPriority (paWinWasapiThreadPriority)
|
|
||||||
|
|
||||||
|
|
||||||
/* Host processor. Allows to skip internal PA processing completely.
|
|
||||||
You must set paWinWasapiRedirectHostProcessor flag to PaWasapiStreamInfo::flags member
|
|
||||||
in order to have host processor redirected to your callback.
|
|
||||||
Use with caution! inputFrames and outputFrames depend solely on final device setup.
|
|
||||||
To query maximal values of inputFrames/outputFrames use PaWasapi_GetFramesPerHostBuffer.
|
|
||||||
*/
|
|
||||||
typedef void (*PaWasapiHostProcessorCallback) (void *inputBuffer, long inputFrames,
|
|
||||||
void *outputBuffer, long outputFrames,
|
|
||||||
void *userData);
|
|
||||||
|
|
||||||
/* Device role */
|
|
||||||
typedef enum PaWasapiDeviceRole
|
|
||||||
{
|
|
||||||
eRoleRemoteNetworkDevice = 0,
|
|
||||||
eRoleSpeakers,
|
|
||||||
eRoleLineLevel,
|
|
||||||
eRoleHeadphones,
|
|
||||||
eRoleMicrophone,
|
|
||||||
eRoleHeadset,
|
|
||||||
eRoleHandset,
|
|
||||||
eRoleUnknownDigitalPassthrough,
|
|
||||||
eRoleSPDIF,
|
|
||||||
eRoleHDMI,
|
|
||||||
eRoleUnknownFormFactor
|
|
||||||
}
|
|
||||||
PaWasapiDeviceRole;
|
|
||||||
|
|
||||||
|
|
||||||
/* Jack connection type */
|
|
||||||
typedef enum PaWasapiJackConnectionType
|
|
||||||
{
|
|
||||||
eJackConnTypeUnknown,
|
|
||||||
eJackConnType3Point5mm,
|
|
||||||
eJackConnTypeQuarter,
|
|
||||||
eJackConnTypeAtapiInternal,
|
|
||||||
eJackConnTypeRCA,
|
|
||||||
eJackConnTypeOptical,
|
|
||||||
eJackConnTypeOtherDigital,
|
|
||||||
eJackConnTypeOtherAnalog,
|
|
||||||
eJackConnTypeMultichannelAnalogDIN,
|
|
||||||
eJackConnTypeXlrProfessional,
|
|
||||||
eJackConnTypeRJ11Modem,
|
|
||||||
eJackConnTypeCombination
|
|
||||||
}
|
|
||||||
PaWasapiJackConnectionType;
|
|
||||||
|
|
||||||
|
|
||||||
/* Jack geometric location */
|
|
||||||
typedef enum PaWasapiJackGeoLocation
|
|
||||||
{
|
|
||||||
eJackGeoLocUnk = 0,
|
|
||||||
eJackGeoLocRear = 0x1, /* matches EPcxGeoLocation::eGeoLocRear */
|
|
||||||
eJackGeoLocFront,
|
|
||||||
eJackGeoLocLeft,
|
|
||||||
eJackGeoLocRight,
|
|
||||||
eJackGeoLocTop,
|
|
||||||
eJackGeoLocBottom,
|
|
||||||
eJackGeoLocRearPanel,
|
|
||||||
eJackGeoLocRiser,
|
|
||||||
eJackGeoLocInsideMobileLid,
|
|
||||||
eJackGeoLocDrivebay,
|
|
||||||
eJackGeoLocHDMI,
|
|
||||||
eJackGeoLocOutsideMobileLid,
|
|
||||||
eJackGeoLocATAPI,
|
|
||||||
eJackGeoLocReserved5,
|
|
||||||
eJackGeoLocReserved6,
|
|
||||||
}
|
|
||||||
PaWasapiJackGeoLocation;
|
|
||||||
|
|
||||||
|
|
||||||
/* Jack general location */
|
|
||||||
typedef enum PaWasapiJackGenLocation
|
|
||||||
{
|
|
||||||
eJackGenLocPrimaryBox = 0,
|
|
||||||
eJackGenLocInternal,
|
|
||||||
eJackGenLocSeparate,
|
|
||||||
eJackGenLocOther
|
|
||||||
}
|
|
||||||
PaWasapiJackGenLocation;
|
|
||||||
|
|
||||||
|
|
||||||
/* Jack's type of port */
|
|
||||||
typedef enum PaWasapiJackPortConnection
|
|
||||||
{
|
|
||||||
eJackPortConnJack = 0,
|
|
||||||
eJackPortConnIntegratedDevice,
|
|
||||||
eJackPortConnBothIntegratedAndJack,
|
|
||||||
eJackPortConnUnknown
|
|
||||||
}
|
|
||||||
PaWasapiJackPortConnection;
|
|
||||||
|
|
||||||
|
|
||||||
/* Thread priority */
|
|
||||||
typedef enum PaWasapiThreadPriority
|
|
||||||
{
|
|
||||||
eThreadPriorityNone = 0,
|
|
||||||
eThreadPriorityAudio, //!< Default for Shared mode.
|
|
||||||
eThreadPriorityCapture,
|
|
||||||
eThreadPriorityDistribution,
|
|
||||||
eThreadPriorityGames,
|
|
||||||
eThreadPriorityPlayback,
|
|
||||||
eThreadPriorityProAudio, //!< Default for Exclusive mode.
|
|
||||||
eThreadPriorityWindowManager
|
|
||||||
}
|
|
||||||
PaWasapiThreadPriority;
|
|
||||||
|
|
||||||
|
|
||||||
/* Stream descriptor. */
|
|
||||||
typedef struct PaWasapiJackDescription
|
|
||||||
{
|
|
||||||
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))) */
|
|
||||||
PaWasapiJackConnectionType connectionType;
|
|
||||||
PaWasapiJackGeoLocation geoLocation;
|
|
||||||
PaWasapiJackGenLocation genLocation;
|
|
||||||
PaWasapiJackPortConnection portConnection;
|
|
||||||
unsigned int isConnected;
|
|
||||||
}
|
|
||||||
PaWasapiJackDescription;
|
|
||||||
|
|
||||||
|
|
||||||
/* Stream descriptor. */
|
|
||||||
typedef struct PaWasapiStreamInfo
|
|
||||||
{
|
|
||||||
unsigned long size; /**< sizeof(PaWasapiStreamInfo) */
|
|
||||||
PaHostApiTypeId hostApiType; /**< paWASAPI */
|
|
||||||
unsigned long version; /**< 1 */
|
|
||||||
|
|
||||||
unsigned long flags; /**< collection of PaWasapiFlags */
|
|
||||||
|
|
||||||
/* Support for WAVEFORMATEXTENSIBLE channel masks. If flags contains
|
|
||||||
paWinWasapiUseChannelMask this allows you to specify which speakers
|
|
||||||
to address in a multichannel stream. Constants for channelMask
|
|
||||||
are specified in pa_win_waveformat.h. Will be used only if
|
|
||||||
paWinWasapiUseChannelMask flag is specified.
|
|
||||||
*/
|
|
||||||
PaWinWaveFormatChannelMask channelMask;
|
|
||||||
|
|
||||||
/* Delivers raw data to callback obtained from GetBuffer() methods skipping
|
|
||||||
internal PortAudio processing inventory completely. userData parameter will
|
|
||||||
be the same that was passed to Pa_OpenStream method. Will be used only if
|
|
||||||
paWinWasapiRedirectHostProcessor flag is specified.
|
|
||||||
*/
|
|
||||||
PaWasapiHostProcessorCallback hostProcessorOutput;
|
|
||||||
PaWasapiHostProcessorCallback hostProcessorInput;
|
|
||||||
|
|
||||||
/* Specifies thread priority explicitly. Will be used only if paWinWasapiThreadPriority flag
|
|
||||||
is specified.
|
|
||||||
|
|
||||||
Please note, if Input/Output streams are opened simultaniously (Full-Duplex mode)
|
|
||||||
you shall specify same value for threadPriority or othervise one of the values will be used
|
|
||||||
to setup thread priority.
|
|
||||||
*/
|
|
||||||
PaWasapiThreadPriority threadPriority;
|
|
||||||
}
|
|
||||||
PaWasapiStreamInfo;
|
|
||||||
|
|
||||||
|
|
||||||
/** Returns default sound format for device. Format is represented by PaWinWaveFormat or
|
|
||||||
WAVEFORMATEXTENSIBLE structure.
|
|
||||||
|
|
||||||
@param pFormat Pointer to PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure.
|
|
||||||
@param nFormatSize Size of PaWinWaveFormat or WAVEFORMATEXTENSIBLE structure in bytes.
|
|
||||||
@param nDevice Device index.
|
|
||||||
|
|
||||||
@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 an error is encountered.
|
|
||||||
*/
|
|
||||||
int PaWasapi_GetDeviceDefaultFormat( void *pFormat, unsigned int nFormatSize, PaDeviceIndex nDevice );
|
|
||||||
|
|
||||||
|
|
||||||
/** Returns device role (PaWasapiDeviceRole enum).
|
|
||||||
|
|
||||||
@param nDevice device index.
|
|
||||||
|
|
||||||
@return Non-negative value indicating device role or, a PaErrorCode (which are always negative)
|
|
||||||
if PortAudio is not initialized or an error is encountered.
|
|
||||||
*/
|
|
||||||
int/*PaWasapiDeviceRole*/ PaWasapi_GetDeviceRole( PaDeviceIndex nDevice );
|
|
||||||
|
|
||||||
|
|
||||||
/** Boost thread priority of calling thread (MMCSS). Use it for Blocking Interface only for thread
|
|
||||||
which makes calls to Pa_WriteStream/Pa_ReadStream.
|
|
||||||
|
|
||||||
@param hTask Handle to pointer to priority task. Must be used with PaWasapi_RevertThreadPriority
|
|
||||||
method to revert thread priority to initial state.
|
|
||||||
|
|
||||||
@param nPriorityClass Id of thread priority of PaWasapiThreadPriority type. Specifying
|
|
||||||
eThreadPriorityNone does nothing.
|
|
||||||
|
|
||||||
@return Error code indicating success or failure.
|
|
||||||
@see PaWasapi_RevertThreadPriority
|
|
||||||
*/
|
|
||||||
PaError PaWasapi_ThreadPriorityBoost( void **hTask, PaWasapiThreadPriority nPriorityClass );
|
|
||||||
|
|
||||||
|
|
||||||
/** Boost thread priority of calling thread (MMCSS). Use it for Blocking Interface only for thread
|
|
||||||
which makes calls to Pa_WriteStream/Pa_ReadStream.
|
|
||||||
|
|
||||||
@param hTask Task handle obtained by PaWasapi_BoostThreadPriority method.
|
|
||||||
@return Error code indicating success or failure.
|
|
||||||
@see PaWasapi_BoostThreadPriority
|
|
||||||
*/
|
|
||||||
PaError PaWasapi_ThreadPriorityRevert( void *hTask );
|
|
||||||
|
|
||||||
|
|
||||||
/** Get number of frames per host buffer. This is maximal value of frames of WASAPI buffer which
|
|
||||||
can be locked for operations. Use this method as helper to findout maximal values of
|
|
||||||
inputFrames/outputFrames of PaWasapiHostProcessorCallback.
|
|
||||||
|
|
||||||
@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.
|
|
||||||
@see PaWasapiHostProcessorCallback
|
|
||||||
*/
|
|
||||||
PaError PaWasapi_GetFramesPerHostBuffer( PaStream *pStream, unsigned int *nInput, unsigned int *nOutput );
|
|
||||||
|
|
||||||
|
|
||||||
/** Get number of jacks associated with a WASAPI device. 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.
|
|
||||||
@param nDevice device index.
|
|
||||||
@param jcount Number of jacks is returned in this variable
|
|
||||||
@return Error code indicating success or failure
|
|
||||||
@see PaWasapi_GetJackDescription
|
|
||||||
*/
|
|
||||||
PaError PaWasapi_GetJackCount(PaDeviceIndex nDevice, int *jcount);
|
|
||||||
|
|
||||||
|
|
||||||
/** Get the jack description associated with a WASAPI device and jack number
|
|
||||||
Before this function is called, use PaWasapi_GetJackCount to determine the
|
|
||||||
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
|
|
||||||
description.
|
|
||||||
@param nDevice device index.
|
|
||||||
@param jindex Which jack to return information
|
|
||||||
@param KSJACK_DESCRIPTION This structure filled in on success.
|
|
||||||
@return Error code indicating success or failure
|
|
||||||
@see PaWasapi_GetJackCount
|
|
||||||
*/
|
|
||||||
PaError PaWasapi_GetJackDescription(PaDeviceIndex nDevice, int jindex, PaWasapiJackDescription *pJackDescription);
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
IMPORTANT:
|
|
||||||
|
|
||||||
WASAPI is implemented for Callback and Blocking interfaces. It supports Shared and Exclusive
|
|
||||||
share modes.
|
|
||||||
|
|
||||||
Exclusive Mode:
|
|
||||||
|
|
||||||
Exclusive mode allows to deliver audio data directly to hardware bypassing
|
|
||||||
software mixing.
|
|
||||||
Exclusive mode is specified by 'paWinWasapiExclusive' flag.
|
|
||||||
|
|
||||||
Callback Interface:
|
|
||||||
|
|
||||||
Provides best audio quality with low latency. Callback interface is implemented in
|
|
||||||
two versions:
|
|
||||||
|
|
||||||
1) Event-Driven:
|
|
||||||
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
|
|
||||||
3 ms for HD Audio class audio chips. For the Shared mode latency can not be
|
|
||||||
lower than 20 ms.
|
|
||||||
|
|
||||||
2) Poll-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
|
|
||||||
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
|
|
||||||
does not exist in Vista x86 or Windows 7.
|
|
||||||
Polling can be setup by speciying 'paWinWasapiPolling' flag. Our WASAPI implementation detects
|
|
||||||
WOW64 bug and sets 'paWinWasapiPolling' automatically.
|
|
||||||
|
|
||||||
Thread priority:
|
|
||||||
|
|
||||||
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'
|
|
||||||
flag and specifying 'PaWasapiStreamInfo::threadPriority' with value from PaWasapiThreadPriority
|
|
||||||
enum.
|
|
||||||
|
|
||||||
Blocking Interface:
|
|
||||||
|
|
||||||
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
|
|
||||||
distorted audio although Exclusive mode adds stability.
|
|
||||||
|
|
||||||
Pa_IsFormatSupported:
|
|
||||||
|
|
||||||
To check format with correct Share Mode (Exclusive/Shared) you must supply
|
|
||||||
PaWasapiStreamInfo with flags paWinWasapiExclusive set through member of
|
|
||||||
PaStreamParameters::hostApiSpecificStreamInfo structure.
|
|
||||||
|
|
||||||
Pa_OpenStream:
|
|
||||||
|
|
||||||
To set desired Share Mode (Exclusive/Shared) you must supply
|
|
||||||
PaWasapiStreamInfo with flags paWinWasapiExclusive set through member of
|
|
||||||
PaStreamParameters::hostApiSpecificStreamInfo structure.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#endif /* PA_WIN_WASAPI_H */
|
|
199
external/portaudio/include/pa_win_waveformat.h
vendored
199
external/portaudio/include/pa_win_waveformat.h
vendored
@ -1,199 +0,0 @@
|
|||||||
#ifndef PA_WIN_WAVEFORMAT_H
|
|
||||||
#define PA_WIN_WAVEFORMAT_H
|
|
||||||
|
|
||||||
/*
|
|
||||||
* PortAudio Portable Real-Time Audio Library
|
|
||||||
* Windows WAVEFORMAT* data structure utilities
|
|
||||||
* portaudio.h should be included before this file.
|
|
||||||
*
|
|
||||||
* Copyright (c) 2007 Ross Bencina
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
* a copy of this software and associated documentation files
|
|
||||||
* (the "Software"), to deal in the Software without restriction,
|
|
||||||
* including without limitation the rights to use, copy, modify, merge,
|
|
||||||
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
||||||
* and to permit persons to whom the Software is furnished to do so,
|
|
||||||
* subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be
|
|
||||||
* included in all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
||||||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
||||||
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
||||||
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
||||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The text above constitutes the entire PortAudio license; however,
|
|
||||||
* the PortAudio community also makes the following non-binding requests:
|
|
||||||
*
|
|
||||||
* Any person wishing to distribute modifications to the Software is
|
|
||||||
* requested to send the modifications to the original developer so that
|
|
||||||
* they can be incorporated into the canonical version. It is also
|
|
||||||
* requested that these non-binding requests be included along with the
|
|
||||||
* license above.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @file
|
|
||||||
@ingroup public_header
|
|
||||||
@brief Windows specific PortAudio API extension and utilities header file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
|
||||||
The following #defines for speaker channel masks are the same
|
|
||||||
as those in ksmedia.h, except with PAWIN_ prepended, KSAUDIO_ removed
|
|
||||||
in some cases, and casts to PaWinWaveFormatChannelMask added.
|
|
||||||
*/
|
|
||||||
|
|
||||||
typedef unsigned long PaWinWaveFormatChannelMask;
|
|
||||||
|
|
||||||
/* Speaker Positions: */
|
|
||||||
#define PAWIN_SPEAKER_FRONT_LEFT ((PaWinWaveFormatChannelMask)0x1)
|
|
||||||
#define PAWIN_SPEAKER_FRONT_RIGHT ((PaWinWaveFormatChannelMask)0x2)
|
|
||||||
#define PAWIN_SPEAKER_FRONT_CENTER ((PaWinWaveFormatChannelMask)0x4)
|
|
||||||
#define PAWIN_SPEAKER_LOW_FREQUENCY ((PaWinWaveFormatChannelMask)0x8)
|
|
||||||
#define PAWIN_SPEAKER_BACK_LEFT ((PaWinWaveFormatChannelMask)0x10)
|
|
||||||
#define PAWIN_SPEAKER_BACK_RIGHT ((PaWinWaveFormatChannelMask)0x20)
|
|
||||||
#define PAWIN_SPEAKER_FRONT_LEFT_OF_CENTER ((PaWinWaveFormatChannelMask)0x40)
|
|
||||||
#define PAWIN_SPEAKER_FRONT_RIGHT_OF_CENTER ((PaWinWaveFormatChannelMask)0x80)
|
|
||||||
#define PAWIN_SPEAKER_BACK_CENTER ((PaWinWaveFormatChannelMask)0x100)
|
|
||||||
#define PAWIN_SPEAKER_SIDE_LEFT ((PaWinWaveFormatChannelMask)0x200)
|
|
||||||
#define PAWIN_SPEAKER_SIDE_RIGHT ((PaWinWaveFormatChannelMask)0x400)
|
|
||||||
#define PAWIN_SPEAKER_TOP_CENTER ((PaWinWaveFormatChannelMask)0x800)
|
|
||||||
#define PAWIN_SPEAKER_TOP_FRONT_LEFT ((PaWinWaveFormatChannelMask)0x1000)
|
|
||||||
#define PAWIN_SPEAKER_TOP_FRONT_CENTER ((PaWinWaveFormatChannelMask)0x2000)
|
|
||||||
#define PAWIN_SPEAKER_TOP_FRONT_RIGHT ((PaWinWaveFormatChannelMask)0x4000)
|
|
||||||
#define PAWIN_SPEAKER_TOP_BACK_LEFT ((PaWinWaveFormatChannelMask)0x8000)
|
|
||||||
#define PAWIN_SPEAKER_TOP_BACK_CENTER ((PaWinWaveFormatChannelMask)0x10000)
|
|
||||||
#define PAWIN_SPEAKER_TOP_BACK_RIGHT ((PaWinWaveFormatChannelMask)0x20000)
|
|
||||||
|
|
||||||
/* Bit mask locations reserved for future use */
|
|
||||||
#define PAWIN_SPEAKER_RESERVED ((PaWinWaveFormatChannelMask)0x7FFC0000)
|
|
||||||
|
|
||||||
/* Used to specify that any possible permutation of speaker configurations */
|
|
||||||
#define PAWIN_SPEAKER_ALL ((PaWinWaveFormatChannelMask)0x80000000)
|
|
||||||
|
|
||||||
/* DirectSound Speaker Config */
|
|
||||||
#define PAWIN_SPEAKER_DIRECTOUT 0
|
|
||||||
#define PAWIN_SPEAKER_MONO (PAWIN_SPEAKER_FRONT_CENTER)
|
|
||||||
#define PAWIN_SPEAKER_STEREO (PAWIN_SPEAKER_FRONT_LEFT | PAWIN_SPEAKER_FRONT_RIGHT)
|
|
||||||
#define PAWIN_SPEAKER_QUAD (PAWIN_SPEAKER_FRONT_LEFT | PAWIN_SPEAKER_FRONT_RIGHT | \
|
|
||||||
PAWIN_SPEAKER_BACK_LEFT | PAWIN_SPEAKER_BACK_RIGHT)
|
|
||||||
#define PAWIN_SPEAKER_SURROUND (PAWIN_SPEAKER_FRONT_LEFT | PAWIN_SPEAKER_FRONT_RIGHT | \
|
|
||||||
PAWIN_SPEAKER_FRONT_CENTER | PAWIN_SPEAKER_BACK_CENTER)
|
|
||||||
#define PAWIN_SPEAKER_5POINT1 (PAWIN_SPEAKER_FRONT_LEFT | PAWIN_SPEAKER_FRONT_RIGHT | \
|
|
||||||
PAWIN_SPEAKER_FRONT_CENTER | PAWIN_SPEAKER_LOW_FREQUENCY | \
|
|
||||||
PAWIN_SPEAKER_BACK_LEFT | PAWIN_SPEAKER_BACK_RIGHT)
|
|
||||||
#define PAWIN_SPEAKER_7POINT1 (PAWIN_SPEAKER_FRONT_LEFT | PAWIN_SPEAKER_FRONT_RIGHT | \
|
|
||||||
PAWIN_SPEAKER_FRONT_CENTER | PAWIN_SPEAKER_LOW_FREQUENCY | \
|
|
||||||
PAWIN_SPEAKER_BACK_LEFT | PAWIN_SPEAKER_BACK_RIGHT | \
|
|
||||||
PAWIN_SPEAKER_FRONT_LEFT_OF_CENTER | PAWIN_SPEAKER_FRONT_RIGHT_OF_CENTER)
|
|
||||||
#define PAWIN_SPEAKER_5POINT1_SURROUND (PAWIN_SPEAKER_FRONT_LEFT | PAWIN_SPEAKER_FRONT_RIGHT | \
|
|
||||||
PAWIN_SPEAKER_FRONT_CENTER | PAWIN_SPEAKER_LOW_FREQUENCY | \
|
|
||||||
PAWIN_SPEAKER_SIDE_LEFT | PAWIN_SPEAKER_SIDE_RIGHT)
|
|
||||||
#define PAWIN_SPEAKER_7POINT1_SURROUND (PAWIN_SPEAKER_FRONT_LEFT | PAWIN_SPEAKER_FRONT_RIGHT | \
|
|
||||||
PAWIN_SPEAKER_FRONT_CENTER | PAWIN_SPEAKER_LOW_FREQUENCY | \
|
|
||||||
PAWIN_SPEAKER_BACK_LEFT | PAWIN_SPEAKER_BACK_RIGHT | \
|
|
||||||
PAWIN_SPEAKER_SIDE_LEFT | PAWIN_SPEAKER_SIDE_RIGHT)
|
|
||||||
/*
|
|
||||||
According to the Microsoft documentation:
|
|
||||||
The following are obsolete 5.1 and 7.1 settings (they lack side speakers). Note this means
|
|
||||||
that the default 5.1 and 7.1 settings (KSAUDIO_SPEAKER_5POINT1 and KSAUDIO_SPEAKER_7POINT1 are
|
|
||||||
similarly obsolete but are unchanged for compatibility reasons).
|
|
||||||
*/
|
|
||||||
#define PAWIN_SPEAKER_5POINT1_BACK PAWIN_SPEAKER_5POINT1
|
|
||||||
#define PAWIN_SPEAKER_7POINT1_WIDE PAWIN_SPEAKER_7POINT1
|
|
||||||
|
|
||||||
/* DVD Speaker Positions */
|
|
||||||
#define PAWIN_SPEAKER_GROUND_FRONT_LEFT PAWIN_SPEAKER_FRONT_LEFT
|
|
||||||
#define PAWIN_SPEAKER_GROUND_FRONT_CENTER PAWIN_SPEAKER_FRONT_CENTER
|
|
||||||
#define PAWIN_SPEAKER_GROUND_FRONT_RIGHT PAWIN_SPEAKER_FRONT_RIGHT
|
|
||||||
#define PAWIN_SPEAKER_GROUND_REAR_LEFT PAWIN_SPEAKER_BACK_LEFT
|
|
||||||
#define PAWIN_SPEAKER_GROUND_REAR_RIGHT PAWIN_SPEAKER_BACK_RIGHT
|
|
||||||
#define PAWIN_SPEAKER_TOP_MIDDLE PAWIN_SPEAKER_TOP_CENTER
|
|
||||||
#define PAWIN_SPEAKER_SUPER_WOOFER PAWIN_SPEAKER_LOW_FREQUENCY
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
PaWinWaveFormat is defined here to provide compatibility with
|
|
||||||
compilation environments which don't have headers defining
|
|
||||||
WAVEFORMATEXTENSIBLE (e.g. older versions of MSVC, Borland C++ etc.
|
|
||||||
|
|
||||||
The fields for WAVEFORMATEX and WAVEFORMATEXTENSIBLE are declared as an
|
|
||||||
unsigned char array here to avoid clients who include this file having
|
|
||||||
a dependency on windows.h and mmsystem.h, and also to to avoid having
|
|
||||||
to write separate packing pragmas for each compiler.
|
|
||||||
*/
|
|
||||||
#define PAWIN_SIZEOF_WAVEFORMATEX 18
|
|
||||||
#define PAWIN_SIZEOF_WAVEFORMATEXTENSIBLE (PAWIN_SIZEOF_WAVEFORMATEX + 22)
|
|
||||||
|
|
||||||
typedef struct{
|
|
||||||
unsigned char fields[ PAWIN_SIZEOF_WAVEFORMATEXTENSIBLE ];
|
|
||||||
unsigned long extraLongForAlignment; /* ensure that compiler aligns struct to DWORD */
|
|
||||||
} PaWinWaveFormat;
|
|
||||||
|
|
||||||
/*
|
|
||||||
WAVEFORMATEXTENSIBLE fields:
|
|
||||||
|
|
||||||
union {
|
|
||||||
WORD wValidBitsPerSample;
|
|
||||||
WORD wSamplesPerBlock;
|
|
||||||
WORD wReserved;
|
|
||||||
} Samples;
|
|
||||||
DWORD dwChannelMask;
|
|
||||||
GUID SubFormat;
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define PAWIN_INDEXOF_WVALIDBITSPERSAMPLE (PAWIN_SIZEOF_WAVEFORMATEX+0)
|
|
||||||
#define PAWIN_INDEXOF_DWCHANNELMASK (PAWIN_SIZEOF_WAVEFORMATEX+2)
|
|
||||||
#define PAWIN_INDEXOF_SUBFORMAT (PAWIN_SIZEOF_WAVEFORMATEX+6)
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
Valid values to pass for the waveFormatTag PaWin_InitializeWaveFormatEx and
|
|
||||||
PaWin_InitializeWaveFormatExtensible functions below. These must match
|
|
||||||
the standard Windows WAVE_FORMAT_* values.
|
|
||||||
*/
|
|
||||||
#define PAWIN_WAVE_FORMAT_PCM (1)
|
|
||||||
#define PAWIN_WAVE_FORMAT_IEEE_FLOAT (3)
|
|
||||||
#define PAWIN_WAVE_FORMAT_DOLBY_AC3_SPDIF (0x0092)
|
|
||||||
#define PAWIN_WAVE_FORMAT_WMA_SPDIF (0x0164)
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
returns PAWIN_WAVE_FORMAT_PCM or PAWIN_WAVE_FORMAT_IEEE_FLOAT
|
|
||||||
depending on the sampleFormat parameter.
|
|
||||||
*/
|
|
||||||
int PaWin_SampleFormatToLinearWaveFormatTag( PaSampleFormat sampleFormat );
|
|
||||||
|
|
||||||
/*
|
|
||||||
Use the following two functions to initialize the waveformat structure.
|
|
||||||
*/
|
|
||||||
|
|
||||||
void PaWin_InitializeWaveFormatEx( PaWinWaveFormat *waveFormat,
|
|
||||||
int numChannels, PaSampleFormat sampleFormat, int waveFormatTag, double sampleRate );
|
|
||||||
|
|
||||||
|
|
||||||
void PaWin_InitializeWaveFormatExtensible( PaWinWaveFormat *waveFormat,
|
|
||||||
int numChannels, PaSampleFormat sampleFormat, int waveFormatTag, double sampleRate,
|
|
||||||
PaWinWaveFormatChannelMask channelMask );
|
|
||||||
|
|
||||||
|
|
||||||
/* Map a channel count to a speaker channel mask */
|
|
||||||
PaWinWaveFormatChannelMask PaWin_DefaultChannelMask( int numChannels );
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#endif /* PA_WIN_WAVEFORMAT_H */
|
|
106
external/portaudio/include/pa_win_wdmks.h
vendored
106
external/portaudio/include/pa_win_wdmks.h
vendored
@ -1,106 +0,0 @@
|
|||||||
#ifndef PA_WIN_WDMKS_H
|
|
||||||
#define PA_WIN_WDMKS_H
|
|
||||||
/*
|
|
||||||
* $Id: pa_win_wdmks.h 1812 2012-02-14 09:32:57Z robiwan $
|
|
||||||
* PortAudio Portable Real-Time Audio Library
|
|
||||||
* WDM/KS specific extensions
|
|
||||||
*
|
|
||||||
* Copyright (c) 1999-2007 Ross Bencina and Phil Burk
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
* a copy of this software and associated documentation files
|
|
||||||
* (the "Software"), to deal in the Software without restriction,
|
|
||||||
* including without limitation the rights to use, copy, modify, merge,
|
|
||||||
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
||||||
* and to permit persons to whom the Software is furnished to do so,
|
|
||||||
* subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be
|
|
||||||
* included in all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
||||||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
||||||
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
||||||
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
||||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The text above constitutes the entire PortAudio license; however,
|
|
||||||
* the PortAudio community also makes the following non-binding requests:
|
|
||||||
*
|
|
||||||
* Any person wishing to distribute modifications to the Software is
|
|
||||||
* requested to send the modifications to the original developer so that
|
|
||||||
* they can be incorporated into the canonical version. It is also
|
|
||||||
* requested that these non-binding requests be included along with the
|
|
||||||
* license above.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @file
|
|
||||||
@ingroup public_header
|
|
||||||
@brief WDM Kernel Streaming-specific PortAudio API extension header file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#include "portaudio.h"
|
|
||||||
|
|
||||||
#include <windows.h>
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C"
|
|
||||||
{
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
typedef struct PaWinWDMKSInfo{
|
|
||||||
unsigned long size; /**< sizeof(PaWinWDMKSInfo) */
|
|
||||||
PaHostApiTypeId hostApiType; /**< paWDMKS */
|
|
||||||
unsigned long version; /**< 1 */
|
|
||||||
|
|
||||||
/* The number of packets to use for WaveCyclic devices, range is [2, 8]. Set to zero for default value of 2. */
|
|
||||||
unsigned noOfPackets;
|
|
||||||
} PaWinWDMKSInfo;
|
|
||||||
|
|
||||||
typedef enum PaWDMKSType
|
|
||||||
{
|
|
||||||
Type_kNotUsed,
|
|
||||||
Type_kWaveCyclic,
|
|
||||||
Type_kWaveRT,
|
|
||||||
Type_kCnt,
|
|
||||||
} PaWDMKSType;
|
|
||||||
|
|
||||||
typedef enum PaWDMKSSubType
|
|
||||||
{
|
|
||||||
SubType_kUnknown,
|
|
||||||
SubType_kNotification,
|
|
||||||
SubType_kPolled,
|
|
||||||
SubType_kCnt,
|
|
||||||
} PaWDMKSSubType;
|
|
||||||
|
|
||||||
typedef struct PaWinWDMKSDeviceInfo {
|
|
||||||
wchar_t filterPath[MAX_PATH]; /**< KS filter path in Unicode! */
|
|
||||||
wchar_t topologyPath[MAX_PATH]; /**< Topology filter path in Unicode! */
|
|
||||||
PaWDMKSType streamingType;
|
|
||||||
GUID deviceProductGuid; /**< The product GUID of the device (if supported) */
|
|
||||||
} PaWinWDMKSDeviceInfo;
|
|
||||||
|
|
||||||
typedef struct PaWDMKSDirectionSpecificStreamInfo
|
|
||||||
{
|
|
||||||
PaDeviceIndex device;
|
|
||||||
unsigned channels; /**< No of channels the device is opened with */
|
|
||||||
unsigned framesPerHostBuffer; /**< No of frames of the device buffer */
|
|
||||||
int endpointPinId; /**< Endpoint pin ID (on topology filter if topologyName is not empty) */
|
|
||||||
int muxNodeId; /**< Only valid for input */
|
|
||||||
PaWDMKSSubType streamingSubType; /**< Not known until device is opened for streaming */
|
|
||||||
} PaWDMKSDirectionSpecificStreamInfo;
|
|
||||||
|
|
||||||
typedef struct PaWDMKSSpecificStreamInfo {
|
|
||||||
PaWDMKSDirectionSpecificStreamInfo input;
|
|
||||||
PaWDMKSDirectionSpecificStreamInfo output;
|
|
||||||
} PaWDMKSSpecificStreamInfo;
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#endif /* PA_WIN_DS_H */
|
|
185
external/portaudio/include/pa_win_wmme.h
vendored
185
external/portaudio/include/pa_win_wmme.h
vendored
@ -1,185 +0,0 @@
|
|||||||
#ifndef PA_WIN_WMME_H
|
|
||||||
#define PA_WIN_WMME_H
|
|
||||||
/*
|
|
||||||
* $Id: pa_win_wmme.h 1592 2011-02-04 10:41:58Z rossb $
|
|
||||||
* PortAudio Portable Real-Time Audio Library
|
|
||||||
* MME specific extensions
|
|
||||||
*
|
|
||||||
* Copyright (c) 1999-2000 Ross Bencina and Phil Burk
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
* a copy of this software and associated documentation files
|
|
||||||
* (the "Software"), to deal in the Software without restriction,
|
|
||||||
* including without limitation the rights to use, copy, modify, merge,
|
|
||||||
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
||||||
* and to permit persons to whom the Software is furnished to do so,
|
|
||||||
* subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be
|
|
||||||
* included in all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
||||||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
||||||
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
||||||
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
||||||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The text above constitutes the entire PortAudio license; however,
|
|
||||||
* the PortAudio community also makes the following non-binding requests:
|
|
||||||
*
|
|
||||||
* Any person wishing to distribute modifications to the Software is
|
|
||||||
* requested to send the modifications to the original developer so that
|
|
||||||
* they can be incorporated into the canonical version. It is also
|
|
||||||
* requested that these non-binding requests be included along with the
|
|
||||||
* license above.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @file
|
|
||||||
@ingroup public_header
|
|
||||||
@brief WMME-specific PortAudio API extension header file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "portaudio.h"
|
|
||||||
#include "pa_win_waveformat.h"
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C"
|
|
||||||
{
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
|
|
||||||
/* The following are flags which can be set in
|
|
||||||
PaWinMmeStreamInfo's flags field.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define paWinMmeUseLowLevelLatencyParameters (0x01)
|
|
||||||
#define paWinMmeUseMultipleDevices (0x02) /* use mme specific multiple device feature */
|
|
||||||
#define paWinMmeUseChannelMask (0x04)
|
|
||||||
|
|
||||||
/* By default, the mme implementation drops the processing thread's priority
|
|
||||||
to THREAD_PRIORITY_NORMAL and sleeps the thread if the CPU load exceeds 100%
|
|
||||||
This flag disables any priority throttling. The processing thread will always
|
|
||||||
run at THREAD_PRIORITY_TIME_CRITICAL.
|
|
||||||
*/
|
|
||||||
#define paWinMmeDontThrottleOverloadedProcessingThread (0x08)
|
|
||||||
|
|
||||||
/* Flags for non-PCM spdif passthrough.
|
|
||||||
*/
|
|
||||||
#define paWinMmeWaveFormatDolbyAc3Spdif (0x10)
|
|
||||||
#define paWinMmeWaveFormatWmaSpdif (0x20)
|
|
||||||
|
|
||||||
|
|
||||||
typedef struct PaWinMmeDeviceAndChannelCount{
|
|
||||||
PaDeviceIndex device;
|
|
||||||
int channelCount;
|
|
||||||
}PaWinMmeDeviceAndChannelCount;
|
|
||||||
|
|
||||||
|
|
||||||
typedef struct PaWinMmeStreamInfo{
|
|
||||||
unsigned long size; /**< sizeof(PaWinMmeStreamInfo) */
|
|
||||||
PaHostApiTypeId hostApiType; /**< paMME */
|
|
||||||
unsigned long version; /**< 1 */
|
|
||||||
|
|
||||||
unsigned long flags;
|
|
||||||
|
|
||||||
/* low-level latency setting support
|
|
||||||
These settings control the number and size of host buffers in order
|
|
||||||
to set latency. They will be used instead of the generic parameters
|
|
||||||
to Pa_OpenStream() if flags contains the PaWinMmeUseLowLevelLatencyParameters
|
|
||||||
flag.
|
|
||||||
|
|
||||||
If PaWinMmeStreamInfo structures with PaWinMmeUseLowLevelLatencyParameters
|
|
||||||
are supplied for both input and output in a full duplex stream, then the
|
|
||||||
input and output framesPerBuffer must be the same, or the larger of the
|
|
||||||
two must be a multiple of the smaller, otherwise a
|
|
||||||
paIncompatibleHostApiSpecificStreamInfo error will be returned from
|
|
||||||
Pa_OpenStream().
|
|
||||||
*/
|
|
||||||
unsigned long framesPerBuffer;
|
|
||||||
unsigned long bufferCount; /* formerly numBuffers */
|
|
||||||
|
|
||||||
/* multiple devices per direction support
|
|
||||||
If flags contains the PaWinMmeUseMultipleDevices flag,
|
|
||||||
this functionality will be used, otherwise the device parameter to
|
|
||||||
Pa_OpenStream() will be used instead.
|
|
||||||
If devices are specified here, the corresponding device parameter
|
|
||||||
to Pa_OpenStream() should be set to paUseHostApiSpecificDeviceSpecification,
|
|
||||||
otherwise an paInvalidDevice error will result.
|
|
||||||
The total number of channels accross all specified devices
|
|
||||||
must agree with the corresponding channelCount parameter to
|
|
||||||
Pa_OpenStream() otherwise a paInvalidChannelCount error will result.
|
|
||||||
*/
|
|
||||||
PaWinMmeDeviceAndChannelCount *devices;
|
|
||||||
unsigned long deviceCount;
|
|
||||||
|
|
||||||
/*
|
|
||||||
support for WAVEFORMATEXTENSIBLE channel masks. If flags contains
|
|
||||||
paWinMmeUseChannelMask this allows you to specify which speakers
|
|
||||||
to address in a multichannel stream. Constants for channelMask
|
|
||||||
are specified in pa_win_waveformat.h
|
|
||||||
|
|
||||||
*/
|
|
||||||
PaWinWaveFormatChannelMask channelMask;
|
|
||||||
|
|
||||||
}PaWinMmeStreamInfo;
|
|
||||||
|
|
||||||
|
|
||||||
/** Retrieve the number of wave in handles used by a PortAudio WinMME stream.
|
|
||||||
Returns zero if the stream is output only.
|
|
||||||
|
|
||||||
@return A non-negative value indicating the number of wave in handles
|
|
||||||
or, a PaErrorCode (which are always negative) if PortAudio is not initialized
|
|
||||||
or an error is encountered.
|
|
||||||
|
|
||||||
@see PaWinMME_GetStreamInputHandle
|
|
||||||
*/
|
|
||||||
int PaWinMME_GetStreamInputHandleCount( PaStream* stream );
|
|
||||||
|
|
||||||
|
|
||||||
/** Retrieve a wave in handle used by a PortAudio WinMME stream.
|
|
||||||
|
|
||||||
@param stream The stream to query.
|
|
||||||
@param handleIndex The zero based index of the wave in handle to retrieve. This
|
|
||||||
should be in the range [0, PaWinMME_GetStreamInputHandleCount(stream)-1].
|
|
||||||
|
|
||||||
@return A valid wave in handle, or NULL if an error occurred.
|
|
||||||
|
|
||||||
@see PaWinMME_GetStreamInputHandle
|
|
||||||
*/
|
|
||||||
HWAVEIN PaWinMME_GetStreamInputHandle( PaStream* stream, int handleIndex );
|
|
||||||
|
|
||||||
|
|
||||||
/** Retrieve the number of wave out handles used by a PortAudio WinMME stream.
|
|
||||||
Returns zero if the stream is input only.
|
|
||||||
|
|
||||||
@return A non-negative value indicating the number of wave out handles
|
|
||||||
or, a PaErrorCode (which are always negative) if PortAudio is not initialized
|
|
||||||
or an error is encountered.
|
|
||||||
|
|
||||||
@see PaWinMME_GetStreamOutputHandle
|
|
||||||
*/
|
|
||||||
int PaWinMME_GetStreamOutputHandleCount( PaStream* stream );
|
|
||||||
|
|
||||||
|
|
||||||
/** Retrieve a wave out handle used by a PortAudio WinMME stream.
|
|
||||||
|
|
||||||
@param stream The stream to query.
|
|
||||||
@param handleIndex The zero based index of the wave out handle to retrieve.
|
|
||||||
This should be in the range [0, PaWinMME_GetStreamOutputHandleCount(stream)-1].
|
|
||||||
|
|
||||||
@return A valid wave out handle, or NULL if an error occurred.
|
|
||||||
|
|
||||||
@see PaWinMME_GetStreamOutputHandleCount
|
|
||||||
*/
|
|
||||||
HWAVEOUT PaWinMME_GetStreamOutputHandle( PaStream* stream, int handleIndex );
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#endif /* PA_WIN_WMME_H */
|
|
1174
external/portaudio/include/portaudio.h
vendored
1174
external/portaudio/include/portaudio.h
vendored
File diff suppressed because it is too large
Load Diff
BIN
external/portaudio/libs/32/portaudio_x86.dll
vendored
BIN
external/portaudio/libs/32/portaudio_x86.dll
vendored
Binary file not shown.
BIN
external/portaudio/libs/32/portaudio_x86.lib
vendored
BIN
external/portaudio/libs/32/portaudio_x86.lib
vendored
Binary file not shown.
BIN
external/portaudio/libs/64/libportaudio_static_x86.a
vendored
BIN
external/portaudio/libs/64/libportaudio_static_x86.a
vendored
Binary file not shown.
BIN
external/portaudio/libs/64/libportaudio_x86.dll
vendored
BIN
external/portaudio/libs/64/libportaudio_x86.dll
vendored
Binary file not shown.
BIN
external/portaudio/libs/64/libportaudio_x86.dll.a
vendored
BIN
external/portaudio/libs/64/libportaudio_x86.dll.a
vendored
Binary file not shown.
212
external/rtaudio/FunctionDiscoveryKeys_devpkey.h
vendored
Normal file
212
external/rtaudio/FunctionDiscoveryKeys_devpkey.h
vendored
Normal file
@ -0,0 +1,212 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
/*++
|
||||||
|
|
||||||
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
|
||||||
|
Module Name:
|
||||||
|
|
||||||
|
devpkey.h
|
||||||
|
|
||||||
|
Abstract:
|
||||||
|
|
||||||
|
Defines property keys for the Plug and Play Device Property API.
|
||||||
|
|
||||||
|
Author:
|
||||||
|
|
||||||
|
Jim Cavalaris (jamesca) 10-14-2003
|
||||||
|
|
||||||
|
Environment:
|
||||||
|
|
||||||
|
User-mode only.
|
||||||
|
|
||||||
|
Revision History:
|
||||||
|
|
||||||
|
14-October-2003 jamesca
|
||||||
|
|
||||||
|
Creation and initial implementation.
|
||||||
|
|
||||||
|
20-June-2006 dougb
|
||||||
|
|
||||||
|
Copied Jim's version replaced "DEFINE_DEVPROPKEY(DEVPKEY_" with "DEFINE_PROPERTYKEY(PKEY_"
|
||||||
|
|
||||||
|
--*/
|
||||||
|
|
||||||
|
//#include <devpropdef.h>
|
||||||
|
|
||||||
|
//
|
||||||
|
// _NAME
|
||||||
|
//
|
||||||
|
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_NAME, 0xb725f130, 0x47ef, 0x101a, 0xa5, 0xf1, 0x02, 0x60, 0x8c, 0x9e, 0xeb, 0xac, 10); // DEVPROP_TYPE_STRING
|
||||||
|
|
||||||
|
//
|
||||||
|
// Device properties
|
||||||
|
// These PKEYs correspond to the old setupapi SPDRP_XXX properties
|
||||||
|
//
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DeviceDesc, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 2); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_HardwareIds, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 3); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_CompatibleIds, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 4); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Service, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 6); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Class, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 9); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_ClassGuid, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 10); // DEVPROP_TYPE_GUID
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Driver, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 11); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_ConfigFlags, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 12); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Manufacturer, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 13); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_FriendlyName, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 14); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_LocationInfo, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 15); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_PDOName, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 16); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Capabilities, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 17); // DEVPROP_TYPE_UNINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_UINumber, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 18); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_UpperFilters, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 19); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_LowerFilters, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 20); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_BusTypeGuid, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 21); // DEVPROP_TYPE_GUID
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_LegacyBusType, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 22); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_BusNumber, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 23); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_EnumeratorName, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 24); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Security, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 25); // DEVPROP_TYPE_SECURITY_DESCRIPTOR
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_SecuritySDS, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 26); // DEVPROP_TYPE_SECURITY_DESCRIPTOR_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DevType, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 27); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Exclusive, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 28); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Characteristics, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 29); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Address, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 30); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_UINumberDescFormat, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 31); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_PowerData, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 32); // DEVPROP_TYPE_BINARY
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_RemovalPolicy, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 33); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_RemovalPolicyDefault, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 34); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_RemovalPolicyOverride, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 35); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_InstallState, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 36); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_LocationPaths, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 37); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_BaseContainerId, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 38); // DEVPROP_TYPE_GUID
|
||||||
|
|
||||||
|
//
|
||||||
|
// Device properties
|
||||||
|
// These PKEYs correspond to a device's status and problem code
|
||||||
|
//
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DevNodeStatus, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 2); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_ProblemCode, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 3); // DEVPROP_TYPE_UINT32
|
||||||
|
|
||||||
|
//
|
||||||
|
// Device properties
|
||||||
|
// These PKEYs correspond to device relations
|
||||||
|
//
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_EjectionRelations, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 4); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_RemovalRelations, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 5); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_PowerRelations, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 6); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_BusRelations, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 7); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Parent, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 8); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Children, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 9); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Siblings, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 10); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_TransportRelations, 0x4340a6c5, 0x93fa, 0x4706, 0x97, 0x2c, 0x7b, 0x64, 0x80, 0x08, 0xa5, 0xa7, 11); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
|
||||||
|
//
|
||||||
|
// Other Device properties
|
||||||
|
//
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Reported, 0x80497100, 0x8c73, 0x48b9, 0xaa, 0xd9, 0xce, 0x38, 0x7e, 0x19, 0xc5, 0x6e, 2); // DEVPROP_TYPE_BOOLEAN
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Legacy, 0x80497100, 0x8c73, 0x48b9, 0xaa, 0xd9, 0xce, 0x38, 0x7e, 0x19, 0xc5, 0x6e, 3); // DEVPROP_TYPE_BOOLEAN
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_InstanceId, 0x78c34fc8, 0x104a, 0x4aca, 0x9e, 0xa4, 0x52, 0x4d, 0x52, 0x99, 0x6e, 0x57, 256); // DEVPROP_TYPE_STRING
|
||||||
|
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_ContainerId, 0x8c7ed206, 0x3f8a, 0x4827, 0xb3, 0xab, 0xae, 0x9e, 0x1f, 0xae, 0xfc, 0x6c, 2); // DEVPROP_TYPE_GUID
|
||||||
|
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_ModelId, 0x80d81ea6, 0x7473, 0x4b0c, 0x82, 0x16, 0xef, 0xc1, 0x1a, 0x2c, 0x4c, 0x8b, 2); // DEVPROP_TYPE_GUID
|
||||||
|
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_FriendlyNameAttributes, 0x80d81ea6, 0x7473, 0x4b0c, 0x82, 0x16, 0xef, 0xc1, 0x1a, 0x2c, 0x4c, 0x8b, 3); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_ManufacturerAttributes, 0x80d81ea6, 0x7473, 0x4b0c, 0x82, 0x16, 0xef, 0xc1, 0x1a, 0x2c, 0x4c, 0x8b, 4); // DEVPROP_TYPE_UINT32
|
||||||
|
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_PresenceNotForDevice, 0x80d81ea6, 0x7473, 0x4b0c, 0x82, 0x16, 0xef, 0xc1, 0x1a, 0x2c, 0x4c, 0x8b, 5); // DEVPROP_TYPE_BOOLEAN
|
||||||
|
|
||||||
|
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Numa_Proximity_Domain, 0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 1); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DHP_Rebalance_Policy, 0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 2); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_Numa_Node, 0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 3); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_BusReportedDeviceDesc, 0x540b947e, 0x8b40, 0x45bc, 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 4); // DEVPROP_TYPE_STRING
|
||||||
|
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_InstallInProgress, 0x83da6326, 0x97a6, 0x4088, 0x94, 0x53, 0xa1, 0x92, 0x3f, 0x57, 0x3b, 0x29, 9); // DEVPROP_TYPE_BOOLEAN
|
||||||
|
|
||||||
|
//
|
||||||
|
// Device driver properties
|
||||||
|
//
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DriverDate, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 2); // DEVPROP_TYPE_FILETIME
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DriverVersion, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 3); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DriverDesc, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 4); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DriverInfPath, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 5); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DriverInfSection, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 6); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DriverInfSectionExt, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 7); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_MatchingDeviceId, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 8); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DriverProvider, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 9); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DriverPropPageProvider, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 10); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DriverCoInstallers, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 11); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_ResourcePickerTags, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 12); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_ResourcePickerExceptions, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 13); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DriverRank, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 14); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_DriverLogoLevel, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 15); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_NoConnectSound, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 17); // DEVPROP_TYPE_BOOLEAN
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_GenericDriverInstalled, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 18); // DEVPROP_TYPE_BOOLEAN
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_AdditionalSoftwareRequested, 0xa8b865dd, 0x2e3d, 0x4094, 0xad, 0x97, 0xe5, 0x93, 0xa7, 0xc, 0x75, 0xd6, 19);// DEVPROP_TYPE_BOOLEAN
|
||||||
|
|
||||||
|
//
|
||||||
|
// Device safe-removal properties
|
||||||
|
//
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_SafeRemovalRequired, 0xafd97640, 0x86a3, 0x4210, 0xb6, 0x7c, 0x28, 0x9c, 0x41, 0xaa, 0xbe, 0x55, 2); // DEVPROP_TYPE_BOOLEAN
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_Device_SafeRemovalRequiredOverride, 0xafd97640, 0x86a3, 0x4210, 0xb6, 0x7c, 0x28, 0x9c, 0x41, 0xaa, 0xbe, 0x55, 3);// DEVPROP_TYPE_BOOLEAN
|
||||||
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// Device properties that were set by the driver package that was installed
|
||||||
|
// on the device.
|
||||||
|
//
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DrvPkg_Model, 0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 2); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DrvPkg_VendorWebSite, 0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 3); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DrvPkg_DetailedDescription, 0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 4); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DrvPkg_DocumentationLink, 0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 5); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DrvPkg_Icon, 0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 6); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DrvPkg_BrandingIcon, 0xcf73bb51, 0x3abf, 0x44a2, 0x85, 0xe0, 0x9a, 0x3d, 0xc7, 0xa1, 0x21, 0x32, 7); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
|
||||||
|
//
|
||||||
|
// Device setup class properties
|
||||||
|
// These PKEYs correspond to the old setupapi SPCRP_XXX properties
|
||||||
|
//
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_UpperFilters, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 19); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_LowerFilters, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 20); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_Security, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 25); // DEVPROP_TYPE_SECURITY_DESCRIPTOR
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_SecuritySDS, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 26); // DEVPROP_TYPE_SECURITY_DESCRIPTOR_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_DevType, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 27); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_Exclusive, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 28); // DEVPROP_TYPE_UINT32
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_Characteristics, 0x4321918b, 0xf69e, 0x470d, 0xa5, 0xde, 0x4d, 0x88, 0xc7, 0x5a, 0xd2, 0x4b, 29); // DEVPROP_TYPE_UINT32
|
||||||
|
|
||||||
|
//
|
||||||
|
// Device setup class properties
|
||||||
|
// These PKEYs correspond to registry values under the device class GUID key
|
||||||
|
//
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_Name, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 2); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_ClassName, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 3); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_Icon, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 4); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_ClassInstaller, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 5); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_PropPageProvider, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 6); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_NoInstallClass, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 7); // DEVPROP_TYPE_BOOLEAN
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_NoDisplayClass, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 8); // DEVPROP_TYPE_BOOLEAN
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_SilentInstall, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 9); // DEVPROP_TYPE_BOOLEAN
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_NoUseClass, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 10); // DEVPROP_TYPE_BOOLEAN
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_DefaultService, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 11); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_IconPath, 0x259abffc, 0x50a7, 0x47ce, 0xaf, 0x8, 0x68, 0xc9, 0xa7, 0xd7, 0x33, 0x66, 12); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
|
||||||
|
//
|
||||||
|
// Other Device setup class properties
|
||||||
|
//
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceClass_ClassCoInstallers, 0x713d1703, 0xa2e2, 0x49f5, 0x92, 0x14, 0x56, 0x47, 0x2e, 0xf3, 0xda, 0x5c, 2); // DEVPROP_TYPE_STRING_LIST
|
||||||
|
|
||||||
|
//
|
||||||
|
// Device interface properties
|
||||||
|
//
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceInterface_FriendlyName, 0x026e516e, 0xb814, 0x414b, 0x83, 0xcd, 0x85, 0x6d, 0x6f, 0xef, 0x48, 0x22, 2); // DEVPROP_TYPE_STRING
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceInterface_Enabled, 0x026e516e, 0xb814, 0x414b, 0x83, 0xcd, 0x85, 0x6d, 0x6f, 0xef, 0x48, 0x22, 3); // DEVPROP_TYPE_BOOLEAN
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceInterface_ClassGuid, 0x026e516e, 0xb814, 0x414b, 0x83, 0xcd, 0x85, 0x6d, 0x6f, 0xef, 0x48, 0x22, 4); // DEVPROP_TYPE_GUID
|
||||||
|
|
||||||
|
//
|
||||||
|
// Device interface class properties
|
||||||
|
//
|
||||||
|
DEFINE_PROPERTYKEY(PKEY_DeviceInterfaceClass_DefaultInterface, 0x14c83a99, 0x0b3f, 0x44b7, 0xbe, 0x4c, 0xa1, 0x78, 0xd3, 0x99, 0x05, 0x64, 2); // DEVPROP_TYPE_STRING
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
10136
external/rtaudio/RtAudio.cpp
vendored
Normal file
10136
external/rtaudio/RtAudio.cpp
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1162
external/rtaudio/RtAudio.h
vendored
Normal file
1162
external/rtaudio/RtAudio.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
61
external/rtaudio/readme
vendored
Normal file
61
external/rtaudio/readme
vendored
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
RtAudio - a set of C++ classes that provide a common API for realtime audio input/output across Linux (native ALSA, JACK, PulseAudio and OSS), Macintosh OS X (CoreAudio and JACK), and Windows (DirectSound, ASIO and WASAPI) operating systems.
|
||||||
|
|
||||||
|
By Gary P. Scavone, 2001-2014.
|
||||||
|
|
||||||
|
This distribution of RtAudio contains the following:
|
||||||
|
|
||||||
|
doc: RtAudio documentation (see doc/html/index.html)
|
||||||
|
tests: example RtAudio programs
|
||||||
|
include: header and source files necessary for ASIO, DS & OSS compilation
|
||||||
|
tests/Windows: Visual C++ .net test program workspace and projects
|
||||||
|
|
||||||
|
OVERVIEW:
|
||||||
|
|
||||||
|
RtAudio is a set of C++ classes that provides a common API (Application Programming Interface) for realtime audio input/output across Linux (native ALSA, JACK, and OSS), Macintosh OS X, SGI, and Windows (DirectSound, ASIO and WASAPI) operating systems. RtAudio significantly simplifies the process of interacting with computer audio hardware. It was designed with the following objectives:
|
||||||
|
|
||||||
|
- object-oriented C++ design
|
||||||
|
- simple, common API across all supported platforms
|
||||||
|
- only one source and one header file for easy inclusion in programming projects
|
||||||
|
- allow simultaneous multi-api support
|
||||||
|
- support dynamic connection of devices
|
||||||
|
- provide extensive audio device parameter control
|
||||||
|
- allow audio device capability probing
|
||||||
|
- automatic internal conversion for data format, channel number compensation, (de)interleaving, and byte-swapping
|
||||||
|
|
||||||
|
RtAudio incorporates the concept of audio streams, which represent audio output (playback) and/or input (recording). Available audio devices and their capabilities can be enumerated and then specified when opening a stream. Where applicable, multiple API support can be compiled and a particular API specified when creating an RtAudio instance. See the \ref apinotes section for information specific to each of the supported audio APIs.
|
||||||
|
|
||||||
|
FURTHER READING:
|
||||||
|
|
||||||
|
For complete documentation on RtAudio, see the doc directory of the distribution or surf to http://www.music.mcgill.ca/~gary/rtaudio/.
|
||||||
|
|
||||||
|
|
||||||
|
LEGAL AND ETHICAL:
|
||||||
|
|
||||||
|
The RtAudio license is similar to the MIT License.
|
||||||
|
|
||||||
|
RtAudio: a set of realtime audio i/o C++ classes
|
||||||
|
Copyright (c) 2001-2014 Gary P. Scavone
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person
|
||||||
|
obtaining a copy of this software and associated documentation files
|
||||||
|
(the "Software"), to deal in the Software without restriction,
|
||||||
|
including without limitation the rights to use, copy, modify, merge,
|
||||||
|
publish, distribute, sublicense, and/or sell copies of the Software,
|
||||||
|
and to permit persons to whom the Software is furnished to do so,
|
||||||
|
subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
Any person wishing to distribute modifications to the Software is
|
||||||
|
asked to send the modifications to the original developer so that
|
||||||
|
they can be incorporated into the canonical version. This is,
|
||||||
|
however, not a binding provision of this license.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
||||||
|
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
||||||
|
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@ -47,6 +47,16 @@ bool CubicSDR::OnInit() {
|
|||||||
|
|
||||||
AppFrame *appframe = new AppFrame();
|
AppFrame *appframe = new AppFrame();
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
int main_policy;
|
||||||
|
struct sched_param main_param;
|
||||||
|
|
||||||
|
main_policy = SCHED_OTHER;
|
||||||
|
main_param.sched_priority = sched_get_priority_min(SCHED_OTHER);
|
||||||
|
|
||||||
|
pthread_setschedparam(pthread_self(), main_policy, &main_param);
|
||||||
|
#endif
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define BUF_SIZE (16384*6)
|
#define BUF_SIZE (16384*4)
|
||||||
#define SRATE 2000000
|
#define SRATE 2000000
|
||||||
#define FFT_SIZE 2048
|
#define FFT_SIZE 2048
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
AudioThread::AudioThread(AudioThreadInputQueue *inputQueue) :
|
AudioThread::AudioThread(AudioThreadInputQueue *inputQueue) :
|
||||||
inputQueue(inputQueue), stream(NULL), terminated(false) {
|
inputQueue(inputQueue), terminated(false), audio_queue_ptr(0) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -11,54 +11,85 @@ AudioThread::~AudioThread() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int audioCallback(void *outputBuffer, void *inputBuffer, unsigned int nBufferFrames, double streamTime, RtAudioStreamStatus status,
|
||||||
|
void *userData) {
|
||||||
|
AudioThread *src = (AudioThread *) userData;
|
||||||
|
float *out = (float*) outputBuffer;
|
||||||
|
if (status) {
|
||||||
|
std::cout << "Audio buffer underflow.." << std::endl;
|
||||||
|
}
|
||||||
|
if (!src->audio_queue.size()) {
|
||||||
|
for (int i = 0; i < nBufferFrames * 2; i++) {
|
||||||
|
out[i] = 0;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
std::vector<float> nextBuffer = src->audio_queue.front();
|
||||||
|
for (int i = 0; i < nBufferFrames * 2; i++) {
|
||||||
|
out[i] = nextBuffer[src->audio_queue_ptr];
|
||||||
|
src->audio_queue_ptr++;
|
||||||
|
if (src->audio_queue_ptr == nextBuffer.size()) {
|
||||||
|
src->audio_queue.pop();
|
||||||
|
src->audio_queue_ptr = 0;
|
||||||
|
if (!src->audio_queue.size()) {
|
||||||
|
for (int j = i; j < nBufferFrames * 2; j++) {
|
||||||
|
std::cout << "Audio buffer underflow.." << std::endl;
|
||||||
|
out[i] = 0;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
nextBuffer = src->audio_queue.front();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
void AudioThread::threadMain() {
|
void AudioThread::threadMain() {
|
||||||
std::cout << "Audio thread initializing.." << std::endl;
|
std::cout << "Audio thread initializing.." << std::endl;
|
||||||
|
|
||||||
PaError err;
|
if (dac.getDeviceCount() < 1) {
|
||||||
err = Pa_Initialize();
|
std::cout << "No audio devices found!" << std::endl;
|
||||||
if (err != paNoError) {
|
return;
|
||||||
std::cout << "Error starting portaudio :(" << std::endl;
|
}
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
int preferred_device = -1;
|
RtAudio::StreamParameters parameters;
|
||||||
|
parameters.deviceId = dac.getDefaultOutputDevice();
|
||||||
|
parameters.nChannels = 2;
|
||||||
|
parameters.firstChannel = 0;
|
||||||
|
unsigned int sampleRate = AUDIO_FREQUENCY;
|
||||||
|
unsigned int bufferFrames = 256;
|
||||||
|
|
||||||
outputParameters.device =
|
RtAudio::StreamOptions opts;
|
||||||
(preferred_device != -1) ?
|
opts.flags = RTAUDIO_MINIMIZE_LATENCY | RTAUDIO_SCHEDULE_REALTIME;
|
||||||
preferred_device : Pa_GetDefaultOutputDevice();
|
opts.streamName = "CubicSDR Audio Output";
|
||||||
if (outputParameters.device == paNoDevice) {
|
opts.priority = 0;
|
||||||
std::cout << "Error: No default output device.\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
outputParameters.channelCount = 2;
|
try {
|
||||||
outputParameters.sampleFormat = paFloat32;
|
dac.openStream(¶meters, NULL, RTAUDIO_FLOAT32, sampleRate, &bufferFrames, &audioCallback, (void *) this, &opts);
|
||||||
outputParameters.suggestedLatency = Pa_GetDeviceInfo(
|
dac.startStream();
|
||||||
outputParameters.device)->defaultHighOutputLatency;
|
} catch (RtAudioError& e) {
|
||||||
outputParameters.hostApiSpecificStreamInfo = NULL;
|
e.printMessage();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
stream = NULL;
|
while (!terminated) {
|
||||||
|
AudioThreadInput inp;
|
||||||
|
inputQueue->pop(inp);
|
||||||
|
if (inp.data.size()) {
|
||||||
|
audio_queue.push(inp.data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
err = Pa_OpenStream(&stream, NULL, &outputParameters, AUDIO_FREQUENCY,
|
try {
|
||||||
paFramesPerBufferUnspecified, paClipOff, NULL, NULL);
|
// Stop the stream
|
||||||
|
dac.stopStream();
|
||||||
|
} catch (RtAudioError& e) {
|
||||||
|
e.printMessage();
|
||||||
|
}
|
||||||
|
|
||||||
err = Pa_StartStream(stream);
|
if (dac.isStreamOpen()) {
|
||||||
if (err != paNoError) {
|
dac.closeStream();
|
||||||
std::cout << "Error starting stream: " << Pa_GetErrorText(err)
|
}
|
||||||
<< std::endl;
|
|
||||||
std::cout << "\tPortAudio error: " << Pa_GetErrorText(err) << std::endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
while (!terminated) {
|
|
||||||
AudioThreadInput inp;
|
|
||||||
inputQueue->pop(inp);
|
|
||||||
if (inp.data.size()) {
|
|
||||||
Pa_WriteStream(stream, &inp.data[0], inp.data.size()/2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
err = Pa_StopStream(stream);
|
|
||||||
err = Pa_CloseStream(stream);
|
|
||||||
Pa_Terminate();
|
|
||||||
|
|
||||||
std::cout << "Audio thread done." << std::endl;
|
std::cout << "Audio thread done." << std::endl;
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
#include "AudioThread.h"
|
#include "AudioThread.h"
|
||||||
#include "ThreadQueue.h"
|
#include "ThreadQueue.h"
|
||||||
#include "portaudio.h"
|
#include "RtAudio.h"
|
||||||
|
|
||||||
class AudioThreadInput {
|
class AudioThreadInput {
|
||||||
public:
|
public:
|
||||||
@ -28,7 +28,10 @@ typedef ThreadQueue<AudioThreadInput> AudioThreadInputQueue;
|
|||||||
|
|
||||||
class AudioThread {
|
class AudioThread {
|
||||||
public:
|
public:
|
||||||
AudioThread(AudioThreadInputQueue *inputQueue);
|
std::queue<std::vector<float> > audio_queue;
|
||||||
|
unsigned int audio_queue_ptr;
|
||||||
|
|
||||||
|
AudioThread(AudioThreadInputQueue *inputQueue);
|
||||||
~AudioThread();
|
~AudioThread();
|
||||||
|
|
||||||
void threadMain();
|
void threadMain();
|
||||||
@ -36,8 +39,7 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
AudioThreadInputQueue *inputQueue;
|
AudioThreadInputQueue *inputQueue;
|
||||||
PaStreamParameters outputParameters;
|
RtAudio dac;
|
||||||
PaStream *stream;
|
|
||||||
std::atomic<bool> terminated;
|
std::atomic<bool> terminated;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
ScopeContext::ScopeContext(ScopeCanvas *canvas, wxGLContext *sharedContext) :
|
ScopeContext::ScopeContext(ScopeCanvas *canvas, wxGLContext *sharedContext) :
|
||||||
PrimaryGLContext(canvas, sharedContext) {
|
PrimaryGLContext(canvas, sharedContext) {
|
||||||
glEnable(GL_CULL_FACE);
|
glDisable(GL_CULL_FACE);
|
||||||
glEnable(GL_DEPTH_TEST);
|
glDisable(GL_DEPTH_TEST);
|
||||||
|
|
||||||
glMatrixMode(GL_PROJECTION);
|
glMatrixMode(GL_PROJECTION);
|
||||||
glLoadIdentity();
|
glLoadIdentity();
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
SpectrumContext::SpectrumContext(SpectrumCanvas *canvas, wxGLContext *sharedContext) :
|
SpectrumContext::SpectrumContext(SpectrumCanvas *canvas, wxGLContext *sharedContext) :
|
||||||
PrimaryGLContext(canvas, sharedContext) {
|
PrimaryGLContext(canvas, sharedContext) {
|
||||||
glEnable(GL_CULL_FACE);
|
glDisable(GL_CULL_FACE);
|
||||||
glEnable(GL_DEPTH_TEST);
|
glDisable(GL_DEPTH_TEST);
|
||||||
|
|
||||||
glMatrixMode(GL_PROJECTION);
|
glMatrixMode(GL_PROJECTION);
|
||||||
glLoadIdentity();
|
glLoadIdentity();
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
WaterfallContext::WaterfallContext(WaterfallCanvas *canvas, wxGLContext *sharedContext) :
|
WaterfallContext::WaterfallContext(WaterfallCanvas *canvas, wxGLContext *sharedContext) :
|
||||||
PrimaryGLContext(canvas, sharedContext) {
|
PrimaryGLContext(canvas, sharedContext) {
|
||||||
glEnable(GL_CULL_FACE);
|
glDisable(GL_CULL_FACE);
|
||||||
glEnable(GL_DEPTH_TEST);
|
glDisable(GL_DEPTH_TEST);
|
||||||
|
|
||||||
glMatrixMode(GL_PROJECTION);
|
glMatrixMode(GL_PROJECTION);
|
||||||
glLoadIdentity();
|
glLoadIdentity();
|
||||||
|
Loading…
Reference in New Issue
Block a user