kc3-lang/SDL/src/audio/jack

Branch :


Log

Author Commit Date CI Message
a70bb259 2022-01-20 13:16:03 drop handle parameter of OpenDevice
1043dd8c 2022-01-19 12:58:04 adjust handling of iscapture - drop iscapture parameter of OpenDevice - use SDL_bool for iscapture
0dda8a7f 2022-01-17 11:21:01 cleanup init functions of audio - use SDL_bool if possible - assume NULL/SDL_FALSE filled impl - skip zfill of current_audio at the beginning of SDL_AudioInit (done before the init() calls)
120c76c8 2022-01-03 09:40:00 Updated copyright for 2022
9130f7c3 2021-01-02 10:25:38 Updated copyright for 2021
cb361896 2020-12-09 07:16:22 Fixed bug 5235 - All internal sources should include SDL_assert.h Ryan C. Gordon We should really stick this in SDL_internal.h or something so it's always available.
7ef188a1 2020-09-19 14:01:57 jack: Fixed memory leak on device close.
a8780c6a 2020-01-16 20:49:25 Updated copyright date for 2020
5e13087b 2019-01-04 22:01:14 Updated copyright for 2019
1d25135b 2018-06-01 19:43:53 Fixed bug 4184 - jack audio driver fails in presence of midi ports Martin ?irokov Launching an SDL application with SDL_AUDIODRIVER=jack, and then calling SDL_OpenAudioDevice() with whatever parameters fails with an error like this one: SDL_OpenAudioDevice: Couldn't connect JACK ports: SDL:sdl_jack_output_0 => system:midi_playback_1 This happens because JACK_OpenDevice in src/audio/jack/SDL_jackaudio.c blindly tries to connect to all input ports without checking whether they are for audio or midi. The fix is to check port types and ignore all non audio ports. Also I removed devports field from struct SDL_PrivateAudioData, because it's never really used and removing unused ports from it would be PITA.
e3cc5b2c 2018-01-03 10:03:25 Updated copyright for 2018
0d011ec6 2017-08-28 00:22:23 Renaming of guard header names to quiet -Wreserved-id-macro
325330ef 2017-06-09 17:37:43 jack: removed accidental copy/paste.
58f08af4 2017-06-09 00:47:47 jack: added capture support.
c39fd577 2017-06-09 00:14:50 jack: Move jack_client_t into the audio device instead a global variable.
b65e0777 2017-06-08 22:20:49 jack: Remove BROKEN_MULTI_DEVICE code.
d9039f23 2017-06-08 13:27:58 jack: Initial shot at a JACK audio target. http://jackaudio.org/ Fixes Bugzilla #2163. (with several more commits following to improve this code.)