summaryrefslogtreecommitdiff
path: root/libs/backends/portaudio/portaudio_io.cc
AgeCommit message (Collapse)Author
2015-08-07Set the default host api in PortaudioBackend when initializing portaudioTim Mayberry
Not setting a default driver causes issues with the EngineControl dialog
2015-08-05Remove "Default" devices from the PortaudioBackendTim Mayberry
These are not really necessary now that input and output devices can be selected separately.
2015-08-05Use ASIO specific device channel names for port properties/pretty namesTim Mayberry
2015-08-05Add code to use ASIO supplied min/max buffer sizes but don't use itTim Mayberry
RME HDSP: min == max == preferred size with granularity == 0 Focusrite scarlett 2i2: min = current ASIO setting and max = max buffersize the device supports with a granularity of 1 which means hundreds of entries in the dropdown menu.
2015-08-05Refactor methods in PortaudioBackend to get ASIO buffer sizesTim Mayberry
2015-08-05Add ASIO specific code to query preferred buffer size for deviceTim Mayberry
2015-08-03don’t set paClipOff, have portaudio clip to -1,+1Robin Gareus
Fixes issues with some integer drivers where overflow wraps (values > 1.0 end up at -1, producing a hard click)
2015-07-31Add functionality to show ASIO control panelTim Mayberry
2015-07-31Implement AudioBackend::driver_name() in PortaudioBackendTim Mayberry
This was missing and is necessary for EngineControl dialog to work properly
2015-07-31Add extra DEBUG_TRACE output to PortaudioBackendTim Mayberry
2015-07-31WinMME based midi input/output for portaudio backendTim Mayberry
TODO: Use MMCSS to elevate thread priorities Enable/test and fix SYSEX related code
2015-07-31Fix for PortAudioBackend::available_sample_ratesTim Mayberry
Was being called without initializing PA. PA should probably be initialized in ctor but PA backend also needs to support hot-plugging devices at some point so this will do for now
2015-07-31Support selecting separate input and output devices in portaudio backendTim Mayberry
2015-07-31Refactor PortAudioIO::discover into three private methodsTim Mayberry
2015-07-31Set default input/output device based on selected host api rather than ↵Tim Mayberry
global default
2015-07-31Fix crash when unable to open portaudio streamTim Mayberry
Calling Pa_Terminate after failing to open stream causes an assertion
2015-07-31Add host api/driver selection to PortaudioBackendTim Mayberry
2015-07-08UTF8 encode windows device names - potential fix for #6418Robin Gareus
2015-04-15portaudio backend: allow Pa_GetDeviceInfo to fail.Robin Gareus
2015-03-20add missing return valueRobin Gareus
2015-03-20add a non-interleaved mode to the Portaudio backendRobin Gareus
2015-03-13call me Mr. BackendRobin Gareus
simple blocking (no callback) PortAudio Backend