D-Bus endpoint for JACK Audio Connection Kit https://jackdbus.ladish.org/
Go to file
shura bb3f5cb296 Solving problems while compiling jack2 on macOS X with dbus support (#434)
* Solving problems while compiling jack2 on macOS X with dbus support

* Using the right function name in uptime error
2019-02-24 18:09:47 +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 Prevent undefined behavior, fix code-style. 2019-02-20 16:13:03 +01:00
compat Handle alloca properly 2018-10-07 16:24:59 +02:00
dbus Solving problems while compiling jack2 on macOS X with dbus support (#434) 2019-02-24 18:09:47 +01:00
example-clients Sync example-clients/bufsize.c with jack1 2019-02-21 12:43:14 +01:00
linux Solving problems while compiling jack2 on macOS X with dbus support (#434) 2019-02-24 18:09:47 +01:00
macosx Solving problems while compiling jack2 on macOS X with dbus support (#434) 2019-02-24 18:09:47 +01:00
man Add man/jack_property.0 from jack1 2019-02-07 20:02:35 +01:00
posix Fix OSX build 2018-11-24 14:29:58 +01:00
solaris memops-alsa_bad_sound-fix-1 (#426) 2019-02-08 22:22:53 +01:00
tests Add script to test jack_property (Metadata) 2019-02-08 17:27:12 +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 Import waf.diff patch sent Stephane Letz 2008-11-14 01:07:46 +00:00
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.