4 * jackdbus 2.23.2 (2024-MM-DD)
6 * Reserve audio device with non max priority
7 and use dummy driver when device ownership is taken.
9 * Make 'waf configure --debug' working againg
10 * Fix compiler warnings in --devmode
12 * jackdbus 2.23.1 (2024-06-13)
14 * update waftoolchainflags submodule
16 * wscript: fix git version generation for tarballs
17 * doxyfile.in: update the mention of the current doxygen version
18 * remove the jack2 leftover file jack.pc.in
19 * Revert "Solving problems while compiling jack2 on macOS X with dbus support"
20 Reduce code bloat by removing support of non-libre operating system
21 This reverts commit bb3f5cb2963dc74ba045a1553e05f755af8623cc.
22 * improved README.adoc
23 add links to jack1 design document and jackaudio git repo
24 README.adoc: Add Source section
25 * Restore dbus/audio_reserve.[hc]
27 The code was duplicated in dbus/controller.c
29 controller.c is to start invoking the reservation functions from
30 audio_reserve.c file (when needed).
32 Keeping reservation logic out of controller.c is good for setups
33 where it is not needed (e.g. pipewire+wireplumber already does this),
34 but jackdbus itself is still needed.
36 * Fix [theoretically possible] memory corruption. (dbus reservation)
38 Acquiring more than two devices via D-Bus reservation protocol
39 helper code could lead memory corruption.
41 Also using device identifiers longer than 64 will not cause memory
42 corruption anymore. strncpy() is now used instead of strcpy().
44 In jackdbus PipeWire setups, currently (pipewire-1.1.82),
45 this code should not run at all, as libjackserver.so jack control API
46 implementation is dummy.
47 Also, the presumption in PipeWire setups that WirePlumber will do the
48 device reservation, means that this [jackdbus] device reservation code
49 must not be called at all.
51 In JACK2, traditionally MIDI devices are not handled via reservation protocol,
52 and only one device can be reserved (the audio device used by JACK
53 server). One could argue whether jack2 "slave" devices-drivers should
54 involve reservation protocol too. No less for MIDI devices (via alsa raw,
55 alsa seq or some other MIDI back-end for jack).
57 This commit fixes memory corruption in [JACK] setups where more than
58 one device is reserved.
60 The possibility for buffer with long device identification string, e.g.
61 "Midi716491294619269518659286591827391287391827391827391826419825941256948191981723",
62 is also fixed. So big index numbers are unlikely to be observed in the
63 wild unless in malicious actor scenario.
65 * jackdbus 2.23.0 (2023-10-26)
67 * wscript: WafToolchainFlags (via git submodule)
68 * improved README.adoc, packaging section and more.
69 * jack_control: add status2 command
71 While status command returns always, status2 command
72 allows followup chained commands.
74 * jack_control: new command - "show"
76 show command behaves a bit like last parts of (current) adevices.sh script,
77 but chains the involved commands status2, dg, dp and ep internally.
79 The adevices.sh script uses status command and does not display
80 JACK settings unless jack is started. The show command uses
81 status2, so the settings will be displayed always.
83 * Use jackctl_server_create() instead of jackctl_server_create2()
85 This is more portable across jack1 and jack2.
86 jackctl_server_create2() is jackd.exe specific and has no purpose for jackdbus.
88 * Move jack_control to its own repository and use it via git submodule
90 Primary repo: https://gitea.ladish.org/LADI/jack_control
91 Backup repo: https://github.com/LADI/jack_control
93 jack_control is now always installed as part of jackdbus.
94 With dedicated repos for jackdbus and jack_control,
95 there is no point in having jack_control installation conditional.
97 * Build against system-wide jack headers
99 * Replace sigsegv.c with siginfo.c and build it only when explicitly enabled
101 siginfo is disabled by default so building on new CPU
102 architectures does not require adjusting of siginfo.c anymore.
104 When needed, --siginfo can be used as option to ./waf configure
105 to enable the functionality
107 * dbus/reserve.c: Fix -Wsingle-bit-bitfield-constant-conversion by using unsigned int
110 ../dbus/reserve.c:154:16: warning: implicit truncation from 'int' to a one-bit wide bit-field changes value from 1 to -1 [-Wsingle-bit-bitfield-constant-conversion]
111 154 | d->gave_up = 1;
115 * wsript: C++ compiler is not used, drop checks and options
116 * Remove traces of jackaudio/jack2 macos and windows support in jackdbus codebase
118 * wscript: add --devmode option; use -std=gnu99 by default; adjust --debug
119 * As same uptime() is shared between linux and freebsd, adjust the wscript
121 * jackdbus 2.22.1 (2023-04-18)
123 * Restore git revision display in the log file
125 * jackdbus 2.22.0 (2023-02-02)
127 * sync with jack2-1.9.22 codebase
129 * 1.9.22 (2023-02-02)
131 * The waf autooption ``--example-tools`` has been removed.
132 The example clients and tools are no longer part of the jack2 project.
133 * Drop dependencies that were only used for example clients and tools (readline, sndfile and zita libs)
134 * Fix build with python3.11+
135 * Fix compatibility with macOS 12+
136 * Fix ringbuffer thread safety on ARM
138 * jackdbus 2.21.0 (2022-08-27)
140 Initial release of standalone jackdbus.
142 LADI jackdbus was initially modification of jack1.
144 Later, jackdbus reincarnated as modification of jackdmp by Stephane Letz
145 in form of jack2 version 1.9.0, along with a new C level control API
146 provided via libjackserver.
148 jackdbus was maintained by its author as part of jackaudio's jack2 project until 2022-08.
149 As of this release, jackdbus is not part of jack2 codebase anymore,
150 at least as far as LADI project is concerned.
152 Instead, this new LADI modification of jackaudio.org jack2 codebase,
153 is providing jackdbus only.
155 This modification is based on jackaudio.org jack2 version 1.9.21.
158 * non-jackdbus related code is removed, to be built from https://github.com/LADI/jack2
160 * 1.9.21 (2022-04-15)
161 * Add shell mode to ``jack_control`` (executes commands from stdin until EOF)
162 * The waf autooption ``--example-tools`` introduced in 1.9.20 is now off by default,
163 To get the previous behavior back pass ``--example-tools`` during build.
164 This flag (and the related tools and their code) are going to be removed in the next release.
165 * Fix alignas() on non-packed architectures
166 * Fix build of jack-example-tools man pages (1.9.20 regression)
167 * Fix compatibility with macOS 12
168 * Fix missing symbols from jack client library (error and info callback pointers)
169 * Fix potential memory corruption in midi_latency_test tool
170 * Fix JackWeakAPI on Windows
171 * Use predefined variables in pkg-config file (required for mingw)
173 External changes, related to macOS/Windows installer:
174 * Fix application style in QJackCtl (qwindowsvistastyle.dll was missing)
175 * Update QjackCtl used in macOS/Windows installers to 0.9.7
177 * 1.9.20 (2022-01-15)
179 * Add waf autooption ``--example-tools`` to allow optional build of
180 executables, libraries and man pages provided by `jack-example-tools
181 <https://github.com/jackaudio/jack-example-tools>`_ (the files are built by
182 default). Building and installing the additional files can be disabled by
183 using ``--example-tools=no`` or ``--no-example-tools``.
184 * Fix 32-bit support in ALSA driver
185 * Fix incomplete ASIO support on Windows
186 * Fix metadata usage with multiple users
187 * Fix netsource tool missing on Windows
188 * Fix semaphore usage on macOS
189 * Official FreeBSD support
191 External changes, related to macOS/Windows installer:
192 * Update Qt5 used in macOS/Windows installers to 5.12.12
193 * Update QjackCtl used in macOS/Windows installers to 0.9.6
195 * 1.9.19 (2021-07-15)
197 * Add jack_position_t::tick_double, and flags around it
198 * Add zalsa "-w" argument to wait for soundcard to be available
199 * Bump internal protocol version to 9 (due to struct alignment)
200 * Fix alignment of fields for atomic accesses
201 * Fix build for platforms needing __STDC_FORMAT_MACROS
202 * Fix compilation of documentation
204 * 1.9.18 (2021-04-15)
206 * Add zalsa_in/out as internal client (based on zita-a2j/j2a and jack1 code)
207 * Fix jack_midi_dump deadlock on close after the jack server is restarted
208 * Fix interrupt signal for linux futex waits
209 * Fix usage of meta-data in official macOS builds (private DB errors)
210 * Log error message when cleaning previous DB (macOS and Windows)
212 * 1.9.17 (2021-01-15)
214 * Fix jack_control stopping after first command iteration
215 * Fix library compat/current version under macOS
216 * Fix return codes of jackd on success
217 * Ignore DB_VERSION_MISMATCH error on windows, it is expected
218 * Remove old workaround for asio4all, as it breaks with jack-router
220 External changes, related to macOS/Windows installer:
221 * Add jack-router to Windows installer, opt-in
222 * Fix registry keys for Windows, add 32bit compat ones on 64bit
223 * Support for arm64 macOS builds
224 * Show welcome and license pages on windows installer
225 * Update QjackCtl used in macOS/Windows installers to v0.9.0, with some commits cherry-picked from develop branch
227 * 1.9.16 (2020-10-16)
229 * Fix/revert a change in how meta-data definitions were exposed (regression in 1.9.15)
230 * Remove jack-router Windows code from the repository
232 * 1.9.15 (2020-10-15)
234 * Automated builds for macOS and Windows (see jackaudio/jack2-releases repository)
235 * Adapt wscript Windows build configuration to match old v1.9.11 installer
236 * Bump maximum default number of clients and ports (now 256 clients and 2048 ports)
237 * Delete various macOS and Windows-related files from the source code (no longer relevant)
238 * Mark JACK-Session as deprecated, please use NSM instead
239 * Remove unnecessary GPL include from LGPL code
240 * Split example-clients and tools, as done in JACK1 many years ago (WIP)
241 * Write Windows registry key during installation, so 3rd parties can find jackd.exe (as HKLM\\Software\\JACK\\Location)
242 * jack_control: Fix handling of dbus bytes
243 * jack_control: Return a proper exit status on DBus exception
244 * jack_property: Fix possible crash with "-l" argument usage
245 * jack_wait: Add client name option -n/--name
246 * Fix compilation of documentation
247 * Fix compilation of mixed mode with meta-data enabled
248 * Fix compilation with mingw
249 * Fix client-side crash if initial meta-data DB setup fails
250 * Fix macOS semaphore usage, so it works again
251 * Several fixes for Windows (with contributions from Kjetil S. Matheussen)
252 * Several minor fixes and grammar corrections (with contributions from Adam Miartus and Timo Wischer)
254 * 1.9.14 (2019-10-28)
257 * Fix mixed mode build when meta-data is enabled
258 * Fix blocking DBus device reservation, so it plays nice with others (like PipeWire)
259 * Use python3 for the waf build scripts
261 * 1.9.13 (2019-10-06)
263 * Meta-data API implementation. (and a few tools updated with support for it)
264 * Correct GPL licence to LGPL for files needed to build libjack.
265 * Remove FreeBoB backend (superseded by FFADO).
266 * define JACK_LIB_EXPORT, useful for internal clients.
267 * Mark jack_midi_reset_buffer as deprecated.
268 * Add example systemd unit file
269 * Signal to systemd when jackd is ready.
270 * Set "seq" alsa midi driver to maximum resolution possible.
271 * Fix loading internal clients from another internal client.
272 * Code cleanup and various fixes. (too many to mention here, see git log for details)
274 * 1.9.12 (2017-12-13)
276 * Fix Windows build issues.
277 * Fix build with gcc-7.
278 * Show hint when DBus device reservation fails.
279 * Add support for internal session files.
281 * 1.9.11-RC1 (2017-06-13)
283 * Various corrections in NetJack2 code. Partial buffers can now be
284 transmitted with libjacknet API.
285 * Including S24_LE/BE formats to linux ALSA driver.
286 * More robust shared memory allocator.
287 * Allow autostart of jackd on OSX where device-names can contain spaces.
288 * Correct CoreAudio devices aggregation code.
289 * Waf and wscripts improvement and update.
290 * More flexible RT priority setup on Windows.
291 * New JackProxyDriver.
292 * Various fixes in JACK MIDI code.
293 * Fix return value of SetTimebaseCallback().
294 * Correct netmanager latency reporting.
295 * Implement new jack_port_rename and JackPortRenameCallback API.
296 * For OSX El Capitan support, use of Posix semaphore and move of Frameworks
298 * Fix CPU hogging of the midi_thread().
299 * Release audio devices when alsa_driver_new fails.
300 * String management fix.
301 * Correct JackDriver::Open: call to fGraphManager->SetBufferSize has to use
302 current fEngineControl->fBufferSize value.
303 * Use ARM neon intrinsics for AudioBufferMixdown.
304 * Fix Netjack alignment.
305 * Various wscript improvements and cleanup.
306 * Fix initialization of several class variables.
307 * Heap-allocate client matrix in topo sort.
308 * Add a toggle command to transport utility, to allow toggling between play
310 * Avoid side effects from parsing of "version" option in jackd.
311 * Allow firewire device be selected via -d.
312 * Add ARM-NEON acceleration for all non-dithering sample conversion
314 * Add jack_simdtest utility.
315 * Use Linux futex as JackSynchro.
316 * Add autoclose option to jack_load.
318 * 1.9.10 (2014-07-19)
320 * More robust code in JackPortAudioDriver to handle buffer size change and
322 * Fix bus error on ARM platforms.
323 * Dynamically scan and print backend and internal names in jackd.
324 * CoreMIDI driver fixes.
325 * Rework NetJack2 code (OPUS codec on OSX, latency management, libjacknet
327 * Correct auto-connect for audioadapter.
329 * Merge of Nedko no-self-connect branch.
330 * Fix freewheel mode.
331 * JackServer::SwitchMaster now correctly notify buffer_size and sample_rate
332 changes, cleanup/improvements in JackNetDriver.
333 * Tim Mayberry : Add support for building with mingw compiler.
334 * Merge of Kim Jeong Yeon Android branch.
335 * Partial port of metadata API.
337 * 1.9.9.5 (2012-11-26)
339 * Adrian Knoth fix in midiseq.c.
340 * Fix library symbols export issue.
341 * Cleanup drivers and internals loading code.
342 * jackctl_driver_params_parse API moved in public control.h.
343 * More general drivers/internals loading model on Windows.
344 * Factorize code the server/client request in JackRequestDecoder class.
345 * More robust server/client protocol.
346 * Implement shutdown for in server clients.
347 * Better time-out management in NetJack2.
348 * Experimental system port alias use in Windows JackRouter.
349 * Improve ShutDown in NetManager.
350 * Correct ShutDown in JackInternalClient and JackLibClient.
351 * Fix NetJack2 initialisation bug.
352 * Add EndTime function (especially for Windows).
353 * Rename JackProcessSync in JackPosixProcessSync.
354 * A bit more robust JackMessageBuffer implementation (in progress).
355 * Check server API callback from notification thread.
356 * Use a time-out in notification channel write function.
357 * Fix lock management in JackEngine.
358 * In control API, UNIX like sigset_t replaced by more abstract
359 jackctl_sigmask_t * opaque struct.
360 * Improve libjacknet master mode.
361 * Remove JACK_32_64 flag, so POST_PACKED_STRUCTURE now always used.
362 POST_PACKED_STRUCTURE used for jack_latency_range_t type.
363 * Rework JackMessageBuffer. [firewire]
365 * Introduce UpdateLatencies() in FFADO backend. [firewire]
367 * Allow FFADO backend to change the buffer size.
369 * New jack_get_cycle_times() implementation from Fons Adriennsen.
370 * Align buffers to 32 byte boundaries to allow AVX processing.
371 * Extend jack_control to have parameter reset commands.
372 * Fix alsa driver parameter order.
373 * Control API: Enforce driver/internal parameter order.
374 * Fix in ALSA adapter.
375 * Devin Anderson patch for Jack/CoreMIDI duplicated messages.
376 * Change framework installation hierarchy for OSX Mountain Lion.
377 * Update JackCoreAudioDriver and JackCoreAudioAdapter with more recent API.
378 * jack_control: fix epr command.
379 * Add opus support to NetJack2.
380 * More robust channel mapping handling in JackCoreAudioDriver.
381 * netjack1/netone opus support.
382 * controlapi: fix double free on master switch.
383 * Use string ids in the alsa device list.
384 * netjack/opus: don't re-init en/decoders.
385 * Correct JackPortAudioDriver::Open: special case for ASIO drivers.
389 * Merge newer-midi branch (Devin Anderson redesign of the MIDI drivers:
390 alsarawmidi, ffado, coremidi and winmme).
391 * Correction in jackdmp.cpp: notify_server_stop should be done after server
393 * Correct driver lifetime management.
394 * Add XRun detection in PortAudio driver.
395 * CELT code for NetJack2.
396 * Merge branch switch-master-port-registration-notifications: correct driver
398 * Libjacknet in progress.
399 * Correct MIDI in NetJack2.
400 * Correct OSX real-time thread setup.
401 * Correct rd_acquire in dbus code.
402 * Correct NetJack2 connection handling.
403 * SaveConnections/RestoreConnections in NetDriver and JackAudioDriver.
404 * Special version of jack_attach_shm/jack_release_shm on client side for
405 POSIX shared memory, to solve a memory leak issue.
406 * Another round of code improvements to handle completely buggy Digidesign
407 CoreAudio user-land driver.
408 * Special CATCH_CLOSE_EXCEPTION_RETURN to handle Close API calls.
409 * Add JACK_NETJACK_PORT and JACK_NETJACK_MULTICAST environment variables for
410 NetJack2. NetJack2 now only send data on network only is ports are
411 connected both sides.
412 * Fix for "starting two instances of same app in parallel does not work"
414 * Enable explicit channel mapping in CoreAudio driver.
415 * New JackTimedDriver class to be used by JackDummyDriver, JackNetDriver and
416 JackNetOneDriver classes.
417 * More robust code in synchronization primitives and in JackMessageBuffer.
418 * More robust Control API implementation. Add jackctl_driver_get_type in
420 * Singleton behaviour for JackCoreMidiDriver and JackWinMMEDriver.
421 * John Emmas patch for DSP CPU computation.
422 * John Emmas Windows server launching patch.
423 * Fix jack_set_port_name API.
424 * Enable local access in NetJack2 code.
425 * Dynamic port management in JACK/CoreMidi bridge.
429 * Sync JackAlsaDriver::alsa_driver_check_card_type with JACK1 backend.
430 * Correct JackServer::Open to avoid a race when control API is used on OSX.
431 * Improve backend error handling: fatal error returned by Read/Write now
432 cause a Process failure (so a thread exit for blocking backends).
433 Recoverable ones (XRuns..) are now treated internally in ALSA, FreeBob and
435 * In jackdmp.cpp, jackctl_setup_signals moved before jackctl_server_start.
436 * Correct symbols export in backends on OSX. ALSA backend: suspend/resume
438 * Correct dummy driver.
439 * Adrian Knoth jack_lsp patch.
440 * Remove JackPortIsActive flag.
441 * New latency API implementation.
442 * ComputeTotalLatencies now a client/server call.
443 * Add latent test client for latency API.
444 * Also print playback and capture latency in jack_lsp.
445 jack_client_has_session_callback implementation.
446 * Check requested buffer size and limit to 1..8192 - avoids weird behaviour
447 caused by jack_bufsize foobar.
448 * jack_port_type_get_buffer_size implementation.
449 * Stop using alloca and allocate buffer on the heap for alsa_io.
450 * Rename jdelay to jack_iodelay as per Fons' request.
451 * Call buffer size callback in activate (actually this is done on client side
452 in the RT thread Init method).
453 * Add jack_midi_dump client.
454 * Synchronize net JACK1 with JACK1 version.
455 * Synchronize jack_connect/jack_disconnect with JACK1 version.
456 * Correct JackNetMaster::SetBufferSize.
457 * Use jack_default_audio_sample_t instead of float consistently, fix ticket
459 * -X now allows to add several slave backends, add -I to load several
461 * Rework internal slave driver management, JackServerGlobals now handle same
462 parameters as jackdmp.
463 * Correct JackEngine::NotifyGraphReorder, update JackDebugClient with latest
465 * Devin Anderson server-ctl-proposal branch merged on trunk: improved control
466 API, slave backend reworked. Implement renaming in JackDriver::Open to
467 avoid name collision (thanks Devin Anderson).
468 * Correct alsa_driver_restart (thanks Devin Anderson). Correction of
469 jack_connect/jack_disconnect: use of jack_activate and volatile keyword for
470 thread shared variable.
471 * Correction of JackNetOneDriver for latest CELT API.
472 * Synchronize JackWeakAPI.cpp with new APIs.
476 * Improve JackCoreAudioDriver and JackCoreAudioAdapter : when no devices are
477 described, takes default input and output and aggregate them.
478 * Correct JackGraphManager::DeactivatePort.
479 * Correct JackMachServerChannel::Execute : keep running even in error cases.
480 Raise JACK_PROTOCOL_VERSION number.
481 * Arnold Krille firewire patch.
482 * Raise JACK_DRIVER_PARAM_STRING_MAX and JACK_PARAM_STRING_MAX to 127
483 otherwise some audio drivers cannot be loaded on OSX.
484 * Fix some file header to have library side code use LGPL.
485 * On Windows, now use TRE library for regexp (BSD license instead of GPL
487 * ffado-portname-sync.patch from ticket #163 applied.
488 * Remove call to exit in library code.
489 * Make jack_connect/jack_disconnect wait for effective port
490 connection/disconnection.
491 * Add tests to validate intclient.h API.
492 * On Linux, inter-process synchronization primitive switched to POSIX
494 * In JackCoreAudioDriver, move code called in MeasureCallback to be called
496 * David Garcia Garzon netone patch.
497 * Fix from Fernando Lopez-Lezcano for compilation on fc13.
498 * Fix JackPosixSemaphore::TimedWait : same behavior as
499 JackPosixSemaphore::Wait regarding EINTR.
500 * David Garcia Garzon unused_pkt_buf_field_jack2 netone patch.
501 * Arnold Krille firewire snooping patch.
502 * Jan Engelhardt patch for get_cycles on SPARC.
503 * Adrian Knoth hurd.patch, kfreebsd-fix.patch and alpha_ia64-sigsegv.patch
505 * Adrian Knoth fix for linux cycle.h (ticket 188).
506 * In JackCoreAudioDriver, fix an issue when no value is given for input.
510 * Dynamic choice of maximum port number.
511 * More robust sample rate change handling code in JackCoreAudioDriver.
512 * Devin Anderson patch for Jack FFADO driver issues with lost MIDI bytes
513 between periods (and more).
514 * Fix port_rename callback: now both old name and new name are given as
516 * Special code in JackCoreAudio driver to handle completely buggy Digidesign
517 CoreAudio user-land driver.
518 * Ensure that client-side message buffer thread calls thread_init callback
519 if/when it is set by the client (backport of JACK1 rev 3838).
520 * Check dynamic port-max value.
521 * Fix JackCoreMidiDriver::ReadProcAux when ring buffer is full (thanks Devin
523 * Josh Green ALSA driver capture only patch.
524 * When threads are cancelled, the exception has to be rethrown.
525 * Use a QUIT notification to properly quit the server channel, the server
526 channel thread can then be 'stopped' instead of 'canceled'.
527 * Mario Lang alsa_io time calculation overflow patch. Shared memory manager
528 was calling abort in case of fatal error, now return an error in caller.
529 * Change JackEngineProfiling and JackAudioAdapterInterface gnuplot scripts
530 to output SVG instead of PDF.
534 * Solaris boomer backend now working in capture or playback only mode.
535 * Add a -G parameter in CoreAudio backend (the computation value in RT
536 thread expressed as percent of period).
537 * Use SNDCTL_DSP_SYNCGROUP/SNDCTL_DSP_SYNCSTART API to synchronize input and
538 output in Solaris boomer backend.
539 * Big endian bug fix in memops.c.
540 * Fix issues in JackNetDriver::DecodeTransportData and
541 JackNetDriver::Initialize.
542 * Correct CPU timing in JackNetDriver, now take cycle begin time after Read.
543 * Simplify transport in NetJack2: master only can control transport.
544 * Change CoreAudio notification thread setup for OSX Snow Leopard.
545 * Correct server temporary mode: now set a global and quit after
546 server/client message handling is finished.
547 * Add a string parameter to server ==> client notification, add a new
548 JackInfoShutdownCallback type.
549 * CoreAudio backend now issue a JackInfoShutdownCallback when an
550 unrecoverable error is detected (sampling rate change, stream
551 configuration change).
552 * Correct jackdmp.cpp (failures case were not correct..).
553 * Improve JackCoreAudioDriver code.
554 * Raise default port number to 2048.
555 * Correct JackProcessSync::LockedTimedWait.
556 * Correct JACK_MESSAGE_SIZE value, particularly in OSX RPC code.
557 * Now start server channel thread only when backend has been started (so in
559 * Should solve race conditions at start time.
560 * jack_verbose moved to JackGlobals class.
561 * Improve aggregate device management in JackCoreAudioDriver: now a
562 "private" device only and cleanup properly.
563 * Aggregate device code added to JackCoreAudioAdapter.
564 * Implement "hog mode" (exclusive access of the audio device) in
566 * Fix jack_set_sample_rate_callback to have he same behavior as in JACK1.
567 * Dynamic system version detection in JackCoreAudioDriver to either create
568 public or private aggregate device.
569 * In JackCoreAudioDriver, force the SR value to the wanted one *before*
570 creating aggregate device (otherwise creation will fail).
571 * In JackCoreAudioDriver, better cleanup of AD when intermediate open
573 * In JackCoreAudioDriver::Start, wait for the audio driver to effectively
574 start (use the MeasureCallback).
575 * In JackCoreAudioDriver, improve management of input/output channels: -1 is
576 now used internally to indicate a wanted max value.
577 * In JackCoreAudioDriver::OpenAUHAL, correct stream format setup and
579 * Correct crash bug in JackAudioAdapterInterface when not input is used in
580 adapter (temporary fix).
581 * Sync JackCoreAudioAdapter code on JackCoreAudioDriver one.
582 * JACK_SCHED_POLICY switched to SCHED_FIFO.
583 * Now can aggregate device that are themselves AD.
584 * No reason to make jack_on_shutdown deprecated, so revert the incorrect
586 * Thread AcquireRealTime and DropRealTime were (incorrectly) using fThread
588 * Use pthread_self()) (or GetCurrentThread() on Windows) to get the calling
590 * Correctly save and restore RT mode state in freewheel mode.
591 * Correct freewheel code on client side.
592 * Fix AcquireRealTime and DropRealTime: now distinguish when called from
593 another thread (AcquireRealTime/DropRealTime) and from the thread itself
594 (AcquireSelfRealTime/DropSelfRealTime).
595 * Correct JackPosixThread::StartImp: thread priority setting now done in the
597 * Correct JackGraphManager::GetBuffer for the "client loop with one
598 connection" case: buffer must be copied.
599 * Correct JackInfoShutdownCallback prototype, two new
600 JackClientProcessFailure and JackClientZombie JackStatus code.
601 * Correct JackCoreAudio driver when empty strings are given as -C, -P or -d
603 * Better memory allocation error checking on client (library) side.
604 * Better memory allocation error checking in ringbuffer.c, weak import
606 * Memory allocation error checking for jack_client_new and jack_client_open
607 (server and client side).
608 * Memory allocation error checking in server for RPC.
609 * Simplify server temporary mode: now use a JackTemporaryException.
610 * Lock/Unlock shared memory segments (to test...).
611 * Sync with JACK1 : -r parameter now used for no-realtime, realtime (-R) is
612 now default, usable backend given vie platform.
613 * In JackCoreAudio driver, (possibly) clock drift compensation when needed
614 in aggregated devices.
615 * In JackCoreAudio driver, clock drift compensation in aggregated devices
617 * In JackCoreAudio driver, clock drift compensation semantic changed a bit:
618 when on, does not activate if not needed (same clock domain).
619 * Sync JackCoreAudioAdapter code with JackCoreAudioDriver.
623 * New JackBoomerDriver class for Boomer driver on Solaris.
624 * Add mixed 32/64 bits mode (off by default).
625 * Native MIDI backend (JackCoreMidiDriver, JackWinMMEDriver).
626 * In ALSA audio card reservation code, tries to open the card even if
628 * Clock source setting on Linux.
629 * Add jackctl_server_switch_master API.
630 * Fix transport callback (timebase master, sync) issue when used after
631 jack_activate (RT thread was not running).
632 * D-Bus access for jackctl_server_add_slave/jackctl_server_remove_slave API.
633 * Cleanup "loopback" stuff in server.
634 * Torben Hohn fix for InitTime and GetMicroSeconds in JackWinTime.c.
635 * New jack_free function added in jack.h.
636 * Reworked Torben Hohn fix for server restart issue on Windows.
637 * Correct jack_set_error_function, jack_set_info_function and
638 jack_set_thread_creator functions.
639 * Correct JackFifo::TimedWait for EINTR handling.
640 * Move DBus based audio device reservation code in ALSA backend compilation.
641 * Correct JackTransportEngine::MakeAllLocating, sync callback has to be
642 called in this case also.
643 * NetJack2 code: better error checkout, method renaming.
644 * Tim Bechmann patch: hammerfall, only release monitor thread, if it has
646 * Tim Bechmann memops.c optimization patches.
647 * In combined --dbus and --classic compilation code, use PulseAudio
648 acquire/release code.
649 * Big rewrite of Solaris boomer driver, seems to work in duplex mode at
651 * Loopback backend reborn as a dynamically loadable separated backend.
656 * New "profiling" tools.
657 * Rework the mutex/signal classes.
658 * Support for BIG_ENDIAN machines in NetJack2.
659 * D-BUS based device reservation to better coexist with PulseAudio on Linux.
660 * Add auto_connect parameter in netmanager and netadapter.
661 * Use Torben Hohn PI controler code for adapters.
662 * Client incorrect re-naming fixed : now done at socket and fifo level.
663 * Virtualize and allow overriding of thread creation function, to allow Wine
664 support (from JACK1).
668 * Fix jackctl_server_unload_internal.
669 * Filter SIGPIPE to avoid having client get a SIGPIPE when trying to access
671 * Libjack shutdown handler does not "deactivate" (fActive = false) the
672 client anymore, so that jack_deactivate correctly does the job later on.
673 * Better isolation of server and clients system resources to allow starting
674 the server in several user account at the same time.
675 * Report ringbuffer.c fixes from JACK1.
676 * Client and library global context cleanup in case of incorrect shutdown
677 handling (that is applications not correctly closing client after server
679 * Use JACK_DRIVER_DIR variable in internal clients loader.
680 * For ALSA driver, synchronize with latest JACK1 memops functions.
681 * Synchronize JACK2 public headers with JACK1 ones.
682 * Implement jack_client_real_time_priority and
683 jack_client_max_real_time_priority API.
684 * Use up to BUFFER_SIZE_MAX frames in midi ports, fix for ticket #117.
685 * Cleanup server starting code for clients directly linked with
687 * JackMessageBuffer was using thread "Stop" scheme in destructor, now use
688 the safer thread "Kill" way.
689 * Synchronize ALSA backend code with JACK1 one.
690 * Set default mode to 'slow' in JackNetDriver and JackNetAdapter.
691 * Simplify audio packet order verification.
692 * Fix JackNetInterface::SetNetBufferSize for socket buffer size computation
693 and JackNetMasterInterface::DataRecv if synch packet is received, various
695 * Better recovery of network overload situations, now "resynchronize" by
697 * Support for BIG_ENDIAN machines in NetJack2.
698 * Support for BIG_ENDIAN machines in NetJack2 for MIDI ports.
699 * Support for "-h" option in internal clients to print the parameters.
700 * In NetJack2, fix a bug when capture or playback only channels are used.
701 * Add a JACK_INTERNAL_DIR environment variable to be used for internal
703 * Add a resample quality parameter in audioadapter.
704 * Now correctly return an error if JackServer::SetBufferSize could not
705 change the buffer size (and was just restoring the current one).
706 * Use PRIu32 kind of macro in JackAlsaDriver again.
707 * Add a resample quality parameter in netadapter.
711 * Waf based build system: Nedko Arnaudov, Grame for preliminary OSX support.
712 * Control API, dbus based server control access: Nedko Arnaudov, Grame.
713 * NetJack2 components (in progress): jack_net backend, netmanager,
714 audioadapter, netadapter : Romain Moret, Grame.
715 * Code restructuring to help port on other architectures: Michael Voigt.
716 * Code cleanup/optimization: Tim Blechmann.
717 * Improve handling of server internal clients that can now be
718 loaded/unloaded using the new server control API: Grame.
719 * A lot of bug fix and improvements.
725 * Add port register/unregister notification in JackAlsaDriver.
726 * Correct JACK_port_unregister in MIDI backend.
727 * Add TimeCallback in JackDebugClient class.
728 * Correct jack_get_time propotype.
729 * Correct JackSocketClientChannel::ClientClose to use ServerSyncCall instead
731 * Better documentation in jack.h. libjackdmp.so renamed to
732 libjackservermp.so and same for OSX framework.
733 * Define an internal jack_client_open_aux needed for library wrapper feature.
734 * Remove unneeded jack_port_connect API.
735 * Correct jack_port_get_connections function (should return NULL when no
737 * In thread model, execute a dummy cycle to be sure thread has the correct
738 properties (ensure thread creation is finished).
739 * Fix engine real-time notification (was broken since ??).
740 * Implements wrapper layer.
741 * Correct jack_port_get_total_latency.
742 * Correct all backend playback port latency in case of "asynchronous" mode
744 * Add test for jack_cycle_wait, jack_cycle_wait and jack_set_process_thread
746 * RT scheduling for OSX thread (when used in dummy driver).
747 * Add -L (extra output latency in aynchronous mode) in CoreAudio driver.
748 * New JackLockedEngine decorator class to serialize access from ALSA Midi
749 thread, command thread and in-server clients.
750 * Use engine in JackAlsaDriver::port_register and
751 JackAlsaDriver::port_unregister.
752 * Fix connect notification to deliver *one* notification only.
753 * Correct JackClient::Activate so that first kGraphOrderCallback can be
754 received by the client notification thread.
755 * New jack_server_control client to test notifications when linked to the
757 * Synchronise transport.h with latest jackd version (Video handling).
758 * Transport timebase fix.
759 * Dmitry Baikov patch for alsa_rawmidi driver.
760 * Pieter Palmers patch for FFADO driver.
761 * Add an Init method for blocking drivers to be decorated using
762 JackThreadedDriver class.
763 * Correct PortRegister, port name checking must be done on server side.
764 * Correct a missing parameter in the usage message of jack_midiseq.
765 * New SetNonBlocking method for JackSocket.
766 * Correct a dirty port array issue in JackGraphManager::GetPortsAux.
770 * Updated API to match jack 0.109.0 version.
771 * Update in usx2y.c and JackPort.cpp to match jackd 0.109.2.
772 * Latest jack_lsp code from jack SVN.
773 * Add jack_mp_thread_wait client example.
774 * Add jack_thread_wait client example.
775 * Remove checking thread in CoreAudio driver, better device state change
776 recovery strategy: the driver is stopped and restarted.
777 * Move transport related methods from JackEngine to JackServer.
780 * Tim Blechmann sse optimization patch for JackaudioPort::MixAudioBuffer,
781 use of Apple Accelerate framework on OSX.
782 * Remove use of assert in JackFifo, JackMachSemaphore, and
783 JackPosixSemaphore: print an error instead.
784 * Correct "server_connect": close the communication channel.
785 * More robust external API.
786 * Use SetAlias for port naming.
787 * Use jackd midi port naming scheme.
788 * Notify ports unregistration in JackEngine::ClientCloseAux.
789 * Fix in JackClient::Error(): when RT thread is failing and calling
790 Shutdown, Shutdown was not desactivating the client correctly.
794 * On OSX, use CFNotificationCenterPostNotificationWithOptions with
795 kCFNotificationDeliverImmediately | kCFNotificationPostToAllSessions for
796 server ==> JackRouter plugin notification.
797 * On OSX, use jack server name in notification system.
798 * Correct fPeriodUsecs computation in JackAudioDriver::SetBufferSize and
799 JackAudioDriver::SetSampleRate.
800 * Correct JackMachNotifyChannel::ClientNotify.
801 * Correct bug in CoreAudio driver sample rate management.
802 * Add a sample_rate change listener in CoreAudio driver.
803 * Correct sample_rate management in JackCoreAudioDriver::Open.
804 * Better handling in sample_rate change listener.
805 * Pieter Palmers FFADO driver and scons based build.
806 * Pieter Palmers second new build system: scons and Makefile based build.
807 * Tim Blechmann scons patch.
808 * Change string management for proper compilation with gcc 4.2.2.
810 * Cleanup in CoreAudio driver.
811 * Tim Blechmann patch for JackGraphManager::GetPortsAux memory leak, Tim
812 Blechmann patch for scons install.
813 * Dmitry Baikov MIDI patch: alsa_seqmidi and alsa_rammidi drivers.
814 * CoreAudio driver improvement: detect and notify abnormal situations
815 (stopped driver in case of SR change...).
819 * Internal loadable client implementation, winpipe version added.
820 * Reorganize jack headers.
821 * Improve Linux install/remove scripts.
822 * Use LIB_DIR variable for 64 bits related compilation (drivers location).
823 * More generic Linux script.
824 * Correct jack_acquire_real_time_scheduling on OSX.
825 * Merge of Dmitry Baikov MIDI branch.
826 * Correct JackGraphManager::GetPortsAux to use port type.
827 * Remove JackEngineTiming class: code moved in JackEngineControl.
828 * Add midiseq and midisine examples.
829 * Cleanup old zombification code.
830 * Linux Makefile now install jack headers.
831 * Use of JACK_CLIENT_DEBUG environment variable to activate debug client
833 * Definition of JACK_LOCATION variable using -D in the Makefile.
834 * Restore jack 0.103.0 MIDI API version.
835 * Fix a bug in freewheel management in async mode: drivers now receive the
836 kStartFreewheelCallback and kStopFreewheelCallback notifications.
837 * Server and user directory related code moved in a JackTools file.
838 * Client name rewriting to remove path characters (used in fifo naming).
839 * Correct ALSA driver Attach method: internal driver may have changed the
840 buffer_size and sample_rate values.
841 * Add JackWinSemaphore class.
842 * Add an implementation for obsolete jack_internal_client_new and
843 jack_internal_client_close.
844 * Add missing jack_port_type_size.
845 * Use of JackWinSemaphore instead of JackWinEvent for inter-process
847 * Correct types.h for use with MINGW on Windows.
848 * Move OSX start/stop notification mechanism in Jackdmp.cpp.
849 * Correct CheckPort in JackAPI.cpp.
853 * Correct jack_client_open "status" management.
854 * Rename server_name from "default" to "jackdmp_default" to avoid conflict
855 with regular jackd server.
856 * Fix a resource leak issue in JackCoreAudioDriver::Close().
857 * Better implement "jack_client_open" when linking a client with the server
859 * Correct "jack_register_server" in shm.c.
860 * Add missing timestamps.c and timestamps.h files.
861 * Correctly export public headers in OSX frameworks.
862 * Suppress JackEngine::ClientInternalCloseIm method.
863 * Use .jackdrc file (instead of .jackdmprc).
864 * Install script now creates a link "jackd ==> jackdmp" so that automatic
865 launch can work correctly.
866 * Paul Davis patch for -r (--replace-registry) feature.
867 * Internal loadable client implementation.
868 * Fix JackEngine::Close() method.
869 * Windows JackRouter.dll version 0.17: 32 integer sample format.
874 * Windows JackRouter.dll version 0.16: use of "jack_client_open" API to
875 allow automatic client renaming, better Windows VISTA support, new
880 * Fix backend port alias management (renaming in system:xxx).
881 * Fix a bug in JackLibClient::Open introduced when adding automatic client
883 * Fix a bug in jack_test.
884 * Correct JackShmMem destructor.
885 * Correct end case in JackClient::Execute.
886 * Correct JackMachSemaphore::Disconnect.
887 * Implement server temporary (-T) mode.
888 * Make "Rename" a method of JackPort class, call it from driver Attach
890 * Server/library protocol checking implementation.
894 * Checking in the server to avoid calling the clients if no callback are
896 * Correct deprecated jack_set_sample_rate_callback to return 0 instead of
898 * Dmitry Baikov buffer size patch.
899 * Correct notification for kActivateClient event. Correct
900 JackEngine::ClientCloseAux (when called from
901 JackEngine::ClientExternalOpen).
902 * Correct JackWinEvent::Allocate.
903 * Automatic client renaming.
904 * Add "systemic" latencies management in CoreAudio driver.
905 * Automatic server launch.
906 * Removes unneeded 'volatile' for JackTransportEngine::fWriteCounter.
910 * Correct back JackAlsaDriver::Read method.
911 * Dmitry Baikov patch for JackGraphManager.cpp. Merge JackGraphManager Remove
912 and Release method in a unique Release method.
913 * Dmitry Baikov jackmp-time patch : add jack_get_time, jack_time_to_frames,
914 jack_frames_to_time. Add missing -D__SMP__in OSX project. Add new
915 jack_port_set_alias, jack_port_unset_alias and jack_port_get_aliases API.
916 * Steven Chamberlain patch to fix jack_port_by_id export.
917 * Steven Chamberlain patch to fix jack_port_type. Test for jack_port_type
918 behaviour in jack_test.cpp tool. Add jack_set_client_registration_callback
919 API. Add "callback exiting" and "jack_frame_time" tests in jack_test.
923 * More client debug code: check if the client is still valid in every
924 JackDebugClient method, check if the library context is still valid in
926 * Uses a time out value of 10 sec in freewheel mode (like jack).
927 * More robust activation/deactivation code, especially in case of client
929 * New LockAllMemory and UnlockAllMemory functions.
930 * Use pthread_attr_setstacksize in JackPosixThread class.
931 * Add Pieter Palmers FreeBob driver.
932 * Thibault LeMeur ALSA driver patch.
933 * Thom Johansen fix for port buffer alignment issues.
934 * Better error checking in PortAudio driver.
938 * Tom Szilagyi memory leak fix in ringbuffer.c.
939 * Move client refnum management in JackEngine.
940 * Shared_ports renamed to shared_graph.
941 * Add call to the init callback (set up using the
942 jack_set_thread_init_callback API) in Real-Time and Notification threads.
943 * Define a new 'kActivateClient' notification.
944 * New server/client data transfer model to fix a 64 bits system bug.
945 * Fix a device name reversal bug in ALSA driver.
946 * Implement thread.h API.
950 * Improve audio driver synchronous code to better handle possible time-out
952 * Correct JackWinEnvent::Allocate (handle the ERROR_ALREADY_EXISTS case).
953 * Correct JackEngine::ClientExternalNew.
957 * Various fixes in Windows version.
958 * Signal handling in the Windows server.
959 * Improved JackRouter ASIO/Jack bridge on Windows.
960 * Rename global "verbose" in "jack_verbose" to avoid symbol clash with
962 * Add a new cpu testing/loading client.
963 * Correct server SetBufferSize in case of failure.
964 * Correct PortAudio driver help.
965 * Use -D to setup ADDON_DIR on OSX and Linux.
966 * Synchronize ALSA backend with jack one.
970 * Correct a bug introduced in 0.55 version that was preventing coreaudio
971 audio inputs to work.
972 * Restructured code structure after import on svn.
976 * Correct bug in Mutex code in JackClientPipeThread::HandleRequest.
977 * ASIO JackRouter driver supports more applications.
978 * Updated HTML documentation.
979 * Windows dll binaries are compiled in "release" mode.
983 * Correct SetBufferSize in coreaudio driver, portaudio driver and
985 * Real-time notifications for Windows version.
986 * In the PortAudio backend, display more informations for installed WinMME,
988 * DirectSound and ASIO drivers.
993 * Correct management of monitor ports in ALSA driver.
994 * Engine code cleanup.
995 * Apply Rui patch for more consistent parameter naming in coreaudio driver.
996 * Correct JackProcessSync::TimedWait: time-out was not computed correctly.
997 * Check the return code of NotifyAddClient in JackEngine.
1001 * Use the latest shm implementation that solve the uncleaned shm segment
1003 * Close still opened file descriptors (report from Giso Grimm). Updated html
1008 * Correct JackPilotMP tool on OSX.
1009 * Correct CoreAudio driver for half duplex cases.
1010 * Fix a bug in transport for "unactivated" clients.
1011 * Fix a bug when removing "unactivated" clients from the server. Tested on
1016 * Universal version for Mac Intel and PPC.
1017 * Improvement of CoreAudio driver for half duplex cases.
1021 * Correct bugs in transport API implementation.
1025 * Transport API implementation.
1029 * Internal connection manager code cleanup.
1033 * Finish software monitoring implementation for ALSA and CoreAudio drivers.
1034 * Simpler shared library management on OSX.
1038 * More fix for 64 bits compilation.
1039 * Correct ALSA driver.
1040 * Create a specific folder for jackdmp drivers.
1041 * Use /dev/shm as default for fifo and sockets.
1042 * "Install" and "Remove" script for smoother use with regular jack.
1046 * Fix a bug in loop management.
1047 * Fix a bug in driver loading/unloading code.
1048 * Internal code cleanup for better 64 bits architecture support.
1049 * Compilation on OSX/Intel.
1050 * Add the -d option for coreaudio driver (display CoreAudio devices internal
1055 * Script to remove the OSX binary stuff.
1056 * Correct an export symbol issue that was preventing QjackCtl to work on OSX.
1057 * Fix the consequences of the asynchronous semantic of
1058 connections/disconnections.
1062 * Patch from Dmitry Daikov: use clock_gettime by default for timing.
1063 * Correct dirty buffer issue in CoreAudio driver. Updated doc.
1067 * Correct freewheel mode.
1068 * Optimize ALSA and coreaudio drivers.
1069 * Correct OSX installation script.
1073 * Patch from Nick Mainsbridge.
1074 * Correct default mode for ALSA driver.
1075 * Correct XCode project.
1079 * Add the ALSA MMAP_COMPLEX support for ALSA driver.
1080 * Patch from Dmitry Daikov: compilation option to choose between
1081 "get_cycles" and "gettimeofday" to measure timing.
1085 * Linux version, code cleanup, new -L parameter to activate the loopback
1086 driver (see Documentation), a number of loopback ports can be defined.
1087 Client validation tool.
1091 * Correct bug in mixing code that caused Ardour + jackdmp to crash...
1095 * Implement client zombification + correct feedback loop management + code
1100 * Implements jack_time_frame, new -S (sync) mode: when "synch" mode is
1101 activated, the jackdmp server waits for the graph to be finished in the
1102 current cycle before writing the output buffers. Note: To experiment with
1103 the -S option, jackdmp must be launched in a console.
1107 * First published version