jack2 with LADI related goodies
Go to file
Stephane Letz e298b4409d Correct GPL licence to LGPL for header files needed to build libjack. 2019-03-22 12:26:54 +01:00
.ci OSX build installs to /usr/local prefix 2019-02-17 22:47:25 +01:00
android Remove FreeBoB backend (superseded by FFADO) 2019-01-22 20:13:08 +01:00
autooptions Update autooptions and move to an own directory 2018-10-06 14:57:45 +02:00
common Correct GPL licence to LGPL for header files needed to build libjack. 2019-03-22 12:26:54 +01:00
compat Handle alloca properly 2018-10-07 16:24:59 +02:00
dbus Update to waf 2.0.11 2018-10-06 16:08:54 +02:00
example-clients Sync example-clients/bufsize.c with jack1 2019-02-21 12:43:14 +01:00
linux memops-alsa_bad_sound-fix-1 (#426) 2019-02-08 22:22:53 +01:00
macosx Remove FreeBoB backend (superseded by FFADO) 2019-01-22 20:13:08 +01:00
man Add man/jack_property.0 from jack1 2019-02-07 20:02:35 +01:00
posix Correct GPL licence to LGPL for header files needed to build libjack. 2019-03-22 12:26:54 +01:00
solaris memops-alsa_bad_sound-fix-1 (#426) 2019-02-08 22:22:53 +01:00
tests Test: exclude tests using deprecated functions for now. 2019-01-27 13:53:31 +01:00
waflib Update to waf 2.0.12 2018-10-13 16:51:26 +02:00
windows Cleanup some warnings 2018-11-13 23:01:23 +01:00
.gitignore Ignore *.pyc files. 2015-12-12 21:55:28 +01:00
.travis.yml Revert last commit (b3d5aa388f) 2019-02-17 22:44:31 +01:00
.wafupdaterc Update to waf 2.0.11 2018-10-06 16:08:54 +02:00
AUTHORS.rst Update AUTHORS file 2019-01-26 02:18:40 +01:00
ChangeLog.rst ChangeLog.rst: Adding rst version of a ChangeLog. This is a cleaned up version from README, incorporating release dates (where found). 2019-01-23 22:12:33 +01:00
README.rst README.rst: Fixing typo. 2019-01-23 22:12:33 +01:00
README_NETJACK2 Add JackNetMaster::LatencyCallback. 2013-03-04 16:19:20 +01:00
doxyfile.in Remove FreeBoB backend (superseded by FFADO) 2019-01-22 20:13:08 +01:00
jack.pc.in
svnversion_regenerate.sh drop unnecessary OLDPWD stuff 2015-05-01 11:22:46 +02:00
waf Update to waf 2.0.12 2018-10-13 16:51:26 +02:00
wscript Remove FreeBoB backend (superseded by FFADO) 2019-01-22 20:13:08 +01:00

README.rst

`JACK2 <http://jackaudio.org/>`_
################################

.. image:: https://travis-ci.org/jackaudio/jack2.svg?branch=master
   :target: https://travis-ci.org/jackaudio/jack2

JACK2 aka jackdmp is a C++ version of the JACK low-latency audio server for
multi-processor machines. It is a new implementation of the JACK server core
features that aims at removing some limitations of the JACK1 design. The
activation system has been changed for a data flow model and lock-free
programming techniques for graph access have been used to have a more dynamic
and robust system.

- uses a new client activation model, that allows simultaneous client
  execution (on a SMP machine) when parallel clients exist in the graph (client
  that have the same inputs). This activation model allows to better use
  available CPU on a smp machine, but also works on mono-processor machine.

- uses a lock-free way to access (read/write) the client graph, thus
  allowing connections/disconnection to be done without interrupting the audio
  stream. The result is that connections/disconnections are glitch-free.

- can work in two different modes at the server level:

  - *synchronous activation*: in a given cycle, the server waits for all
    clients to be finished (similar to normal jackd)

  - *asynchronous activation*: in a given cycle, the server does not wait for
    all clients to be finished and use output buffer computed the previous
    cycle.
    The audible result of this mode is that if a client is not activated
    during one cycle, other clients may still run and the resulting audio
    stream will still be produced (even if its partial in some way). This
    mode usually result in fewer (less audible) audio glitches in a loaded
    system.