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