dmitrykos
aa6ff975af
wasapi: Replace tabs with 4-spaces to comply with PortAudio code style guidelines ( http://github.com/PortAudio/portaudio/wiki/ImplementationStyleGuidelines ).
2020-10-09 00:57:23 +03:00
dmitrykos
dcc2f7fa48
wasapi: Fix paInvalidSampleRate (and any other) error code is replaced with paInvalidDevice if audio client failed to be created due to some reason.
2020-10-03 23:21:11 +03:00
dmitrykos
697fcddce5
wasapi: Improve stability of playback in Polling Shared mode with a low host latency requsted (22 ms):
...
- Implement workaround for system timer coarse granularity causing underruns by using timeBeginPeriod/timeEndPeriod APIs inside the Event and Poll thread handlers.
- Update next sleep time of the Poll rendering loop dynamically depending on time taken for processing/rendering of audio data into the available host buffer to avoid underruns and fit processing time into periodic polling time slots.
- Add support for time slots logging in Poll mode if PA_WASAPI_LOG_TIME_SLOTS is defined. Fixed audible glitches by preloading the whole host buffer before stream is started.
- Fix audible glitches on stream start by preloading the whole host buffer before stream is started.
2020-10-03 22:55:36 +03:00
Phil Burk
d7c67287b8
Merge pull request #304 from ibauersachs/patch-1
...
Fix CMake build after renaming readme
2020-09-27 18:28:19 -07:00
Dmitry Kostjuchenko
0326a6573b
Merge pull request #305 from sveinse/feature-wasapi-glitch-fix
...
wasapi: Implement fix for glitching WASAPI playback in the Shared Mode
2020-09-27 21:17:23 +03:00
Svein Seldal
9ebe293dc5
Implement fix for glitching WASAPI playback #303
2020-09-27 18:28:19 +02:00
Ingo Bauersachs
e1443bae25
Fix CMake build after renaming readme
2020-09-27 00:02:53 +02:00
Phil Burk
a63ed32b99
Merge pull request #299 from RossBencina/RossBencina-README-patch-1
...
Fix doc and examples references in README.md
2020-09-24 09:55:49 -07:00
Ross Bencina
ffa556a475
Fix doc and examples references in README.md
2020-09-24 14:11:42 +10:00
Ross Bencina
be86be4b8e
Merge pull request #297 from philburk/philburk-patch-readme
...
Update and rename README.txt to README.md
2020-09-24 14:01:04 +10:00
Phil Burk
7273b8de27
Update and rename README.txt to README.md
...
Use markdown
2020-09-23 20:36:04 -07:00
Ross Bencina
09087cf5a6
Merge branch 'edechamps-remove-testcvs' into 'master'
...
Get rid of the garbage testcvs/ directory
+1: Phil Burk, Ross Bencina
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/7106691
2020-08-06 00:38:10 +00:00
Ross Bencina
f828ad5fdc
Merge branch 'alsa_uninitialized_dir_fixes' into 'master'
...
Fix additional cases of uninitialized dir variable in pa_linux_alsa.c
+1: Phil Burk
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/7613051
2020-08-06 00:25:37 +00:00
Ross Bencina
b107f0853a
Merge branch 'ticket_263_alsa_uninitialized_var_2' into 'master'
...
Fix uninitialized dir variable in pa_linux_alsa.c (Version 2)
+1: Ross Bencina, Phil Burk
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/7612921
2020-08-06 00:23:46 +00:00
dmitrykos
799a6834a5
wasapi: Fixed OSVERSIONINFO initialization (patch provided by Carlo Bramini).
2020-03-26 20:05:53 +02:00
Ross Bencina
f269bf93e6
follow up fix related to 933b05c331 (ticket #263 uninitialized dir variable): fix the three other places where dir parameter wasn't set prior to entry to a snd_pcm_*_get_* function. There is some ambiguity about (a) whether this is intentional (i.e. use the rounding dir returned by previous *_get_* call, the PA source code does not indicate), and (b) whether it is meaningful (i.e. whether *_get_* functions actually use the value upon input -- the ALSA docs are not clear. regarding (a): I don't think it's intentional, i think it was just oversight. In any case thr risk is low: the underlying values of period_size, periods_max, periods_min, are all integer and should not be rounded, get_rate_min/get_rate_max are used only for debug reporting (I've set them to 0,0 for a minimal change from the current code, but -1,1 makes more sense).
2019-05-14 07:36:24 +10:00
Ross Bencina
933b05c331
fix uninitialized dir variable in pa_linux_alsa.c GropeDevice() by removing it. pass NULL as parameter to ALSA functions instead. see ticket #263 .
2019-05-14 07:00:47 +10:00
Phil Burk
c5d2c51bd6
Merge branch 'removeasio' into 'master'
...
asio: remove unnecessary ASIO SDK files
+1: Phil Burk
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/7559751
2019-04-26 16:48:28 +00:00
Phil Burk
ab665735ad
asio: remove unnecessary ASIO SDK files
...
These files should be obtained directly from Steinberg.
2019-04-26 09:43:52 -07:00
Dmitry Kostjuchenko
eb6b5e2598
Merge branch 'winrt' into 'master'
...
WASAPI: Add paWinWasapiAutoConvert flag, which sets AUDCLNT_STREAMFLAGS_AUTOCONVERTPCM | AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY for Shared mode streams.
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/7481081
2019-04-05 07:42:43 +00:00
dmitrykos
c40b969e1b
wasapi: some cleanup of Jörn Heusipp's patch
2019-04-05 10:38:44 +03:00
Jörn Heusipp
aa0748a5b5
wasapi: Add paWinWasapiAutoConvert flag, which sets AUDCLNT_STREAMFLAGS_AUTOCONVERTPCM | AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY for Shared mode streams.
...
AUDCLNT_STREAMFLAGS_AUTOCONVERTPCM is required in order to allow for sample rates other than the system mixer configured sample rate. Otherwise, WASAPI is limited to a single system configured sample rate in Shared mode, which is a severe limitation compared to other APIs supported by PortAudio.
AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY is recommended to be used additionally.
See <https://docs.microsoft.com/en-us/windows/desktop/coreaudio/audclnt-streamflags-xxx-constants > for documentation.
GetClosestFormat is modified to exit early when paWinWasapiAutoConvert is set in Shared mode because we trust the WASAPI conversions to succeed.
We restrict these changes to Windows 7 (and later) because documentation does not clearly state the minimum required Windows version. Windows Vista was not available for testing.
This patch has been in production in OpenMPT (<https://openmpt.org/ >) since version 1.27.01.00 (2017-09-27). PortAudio WASAPI Shared mode is the default output device type in OpenMPT for Windows 7 (and later) and also for Wine setups.
2019-04-05 10:02:17 +03:00
Dmitry Kostjuchenko
d7229de83b
Merge branch 'winrt' into 'master'
...
WASAPI: Fix failing with unsupported format error if PaWasapiStreamCategory is other than default
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/7376301
2019-04-05 06:53:39 +00:00
dmitrykos
d99940b26e
wasapi: set IAudioClient2+ properties before GetClosestFormat() in order to avoid failing with unsupported format error if PaWasapiStreamCategory is other than default, for example eAudioCategorySpeech
2019-03-09 12:43:14 +02:00
Dmitry Kostjuchenko
7bfa11f463
Merge branch 'winrt' into 'master'
...
WASAPI: Improved audio output stability in Exclusive mode for some UAC2 DACs
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/7327181
2019-02-23 21:04:57 +00:00
dmitrykos
96f81c0ec1
wasapi: Improved audio output stability in Exclusive mode for some UAC2 DACs with custom USB Audio driver by calculating buffer periodicity being equal (or almost equal) to the requested user frames (Capturing is excluded from this implementation as it has not yet been tested but can be included if tests show the improvement), cleanup/refactor some code to make it better readable
2019-02-23 23:02:38 +02:00
Dmitry Kostjuchenko
b7870b08f7
Merge branch 'winrt' into 'master'
...
WASAPI: new API PaWasapi_SetStreamStateHandler(), header cleanup and minor fix
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/7129721
2018-12-24 12:22:35 +00:00
dmitrykos
83ab55b62d
wasapi: new API PaWasapi_SetStreamStateHandler() to be able to catch WASAPI error inside the rendering thread loop (and handle it gracefully, for example restart the stream), protect from dangling pointer during device list update, cleanup header
2018-12-24 14:20:29 +02:00
Etienne Dechamps
8d0e18f87b
Get rid of the garbage testcvs/ directory.
2018-12-15 15:15:59 +00:00
Etienne Dechamps
76e31c2a24
Merge branch 'winbuild' into 'master'
...
Improvements to CMake build system on Windows
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/7040151
2018-12-15 15:06:22 +00:00
Etienne Dechamps
95e86c307b
Install pa_win_waveformat.h with MME, DirectSound and WASAPI.
...
pa_win_wmme.h, pa_win_ds.h and pa_win_wasapi.h all include
pa_win_waveformat.h. If the latter is not installed, none of these
headers are usable.
2018-12-15 15:04:20 +00:00
Etienne Dechamps
0baa1e2e31
Treat DirectSound just like any other standard Windows SDK library.
...
Currently the CMake build system goes through complicated logic to
find the DirectX SDK. This is completely unnecessary, because modern
versions of the Windows SDK include dsound.h and dsound.lib in the
standard paths, so it can be treated just like the other Windows OS
libraries and we can safely assume it is available.
This commit simplifies the logic and will allow the vcpkg portaudio
port to align with portaudio stream, by getting rid of this patch:
95f9ce56f3/ports/portaudio/find_dsound.patch
I have verified that PortAudio CMake still builds with this commit
with the following toolchains:
- Windows Visual Studio 2017 native CMake support
- mingw-w64 on Windows (msys2)
- mingw-w64 cross-compiling from Debian Unstable
2018-12-15 15:04:20 +00:00
Dmitry Kostjuchenko
dfd780389b
Merge branch 'winrt' into 'master'
...
WASAPI: relax latency check in Exclusive mode when switching from Event to Poll mode
+1: Etienne Dechamps
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/7097201
2018-12-12 21:39:57 +00:00
dmitrykos
7572245aec
wasapi: relax check for a latency range when deciding to switch from Event to Poll mode to have 1-21 ms range fine tuneable, add check for a min period when correcting period for UAC1 devices to avoid failure to initialize audio client due to invalid period error
2018-12-12 23:29:44 +02:00
Dmitry Kostjuchenko
b22a83a600
Merge branch 'winrt' into 'master'
...
WASAPI: fix rare case when Shared Mode format obtained by PKEY_AudioEngine_DeviceFormat not accepted by WASAPI
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/7085071
2018-12-10 08:52:59 +00:00
dmitrykos
d74ea7b610
wasapi: get channels count and sample rate from a mix format (IAudioClient::GetMixFormat) for a PaDeviceInfo to circumvent rare cases when WASAPI does not accept format provided PKEY_AudioEngine_DeviceFormat due to a wrong channel count (bug and solution reported by Etienne Dechamps (edechamps), discussion: http://app.assembla.com/spaces/portaudio/git/merge_requests/7024281 ), new PaWasapi_GetDeviceMixFormat API to get mix format provided by IAudioClient::GetMixFormat
2018-12-10 10:50:31 +02:00
Dmitry Kostjuchenko
0cdb346fdc
Merge branch 'winrt' into 'master'
...
WASAPI: fixed MonoToStereo converter could write beyond the allowed memory region if sample format is packed 24-bit integer, fixed DEF file by adding missing WASAPI API
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/6928491
2018-10-21 10:24:52 +00:00
dmitrykos
57b98d5a8c
wasapi: fixed MonoToStereo converter could write beyond the allowed memory region if sample format is packed 24-bit integer, fixed DEF file by adding missing WASAPI API
2018-10-21 13:21:28 +03:00
Nicholas Appleton
05994e022d
Merge branch 'cmake_mingw_additions' into 'master'
...
commit Rainer's work and make some minor modifications to the top-level cmakelists to make visual studio happy
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/4858113
2018-10-21 04:14:22 +00:00
Nick Appleton
365163674b
update cmake documentation
2018-10-12 22:43:17 +11:00
Nicholas Appleton
294881a1b9
fix typo
2018-10-04 20:09:08 +10:00
Nick Appleton
495b303bbd
Merge branch 'cmake_mingw_additions' of https://git.assembla.com/portaudio into cmake_mingw_additions
2018-10-02 21:55:27 +10:00
Nick Appleton
d3e00091c7
create and install cmake export targets to make it easier for people to include portaudio in larger projects:
2018-10-02 21:54:44 +10:00
Nicholas Appleton
ea11061b20
commit Rainer's work and make some minor modifications to the top-level cmakelists to make visual studio happy
2018-10-02 21:54:44 +10:00
Nick Appleton
396c189c01
create and install cmake export targets to make it easier for people to include portaudio in larger projects:
2018-10-02 21:53:41 +10:00
Dmitry Kostjuchenko
4f6fd67c3f
Merge branch 'winrt' into 'master'
...
WASAPI: Fixed callback not called for Input stream if 1 channel format is requested.
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/6838604
2018-09-23 17:46:21 +00:00
dmitrykos
eb4a7d25dc
wasapi: fixed callback not called for Input stream if 1 channel format is requested
2018-09-23 20:44:21 +03:00
Dmitry Kostjuchenko
c0d239712d
Merge branch 'winrt' into 'master'
...
WASAPI: Fixed crash on NULL.
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/6794444
2018-09-10 20:11:26 +00:00
dmitrykos
5dec767af1
wasapi: fixed crash on NULL
2018-09-10 23:09:44 +03:00
Dmitry Kostjuchenko
b2f6d82342
Merge branch 'winrt' into 'master'
...
WASAPI: Fixed input device can not be opened in Exclusive mode (regression of previous commit).
Merged-on: https://assembla.com/code/portaudio/git/merge_requests/6794374
2018-09-10 19:57:42 +00:00