diff options
| author | Andreas Müller <schnitzeltony@googlemail.com> | 2016-10-08 12:03:32 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-10-21 18:20:43 +0200 |
| commit | 0f8f1973e229a0799098bc2334416fec8c608b50 (patch) | |
| tree | f3a8a92512374d4388d4bb5bd9b083e7a04ce203 /meta-oe/recipes-multimedia/jack/jack_git.bb | |
| parent | a7e7eccede498a9aeeaf040476d49fd943c8a974 (diff) | |
| download | meta-openembedded-0f8f1973e229a0799098bc2334416fec8c608b50.tar.gz | |
jack: swap to jack2
* works out of the box without modificatins to /etc/security/limits.conf neccessary
* neon support was introduced
* on RaspberryPi2 buffer sizes can be set to smallest accepted value without XRUN
-> reduced latency
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-multimedia/jack/jack_git.bb')
| -rw-r--r-- | meta-oe/recipes-multimedia/jack/jack_git.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/jack/jack_git.bb b/meta-oe/recipes-multimedia/jack/jack_git.bb new file mode 100644 index 0000000000..34615b4a8b --- /dev/null +++ b/meta-oe/recipes-multimedia/jack/jack_git.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | DESCRIPTION = "jackdmp is a C++ version of the JACK low-latency audio \ | ||
| 2 | server for multi-processor machines. It is a new implementation of the \ | ||
| 3 | JACK server core features that aims in removing some limitations of \ | ||
| 4 | the JACK1 design. The activation system has been changed for a data \ | ||
| 5 | flow model and lock-free programming techniques for graph access have \ | ||
| 6 | been used to have a more dynamic and robust system." | ||
| 7 | SECTION = "libs/multimedia" | ||
| 8 | |||
| 9 | LICENSE = "GPLv2 & LGPLv2.1" | ||
| 10 | LIC_FILES_CHKSUM = " \ | ||
| 11 | file://common/jack/control.h;beginline=2;endline=21;md5=e6df0bf30cde8b3b825451459488195d \ | ||
| 12 | file://common/jack/jack.h;beginline=1;endline=19;md5=6b736ed6b810592b135480a5e853392e \ | ||
| 13 | " | ||
| 14 | |||
| 15 | DEPENDS = "libsamplerate0 libsndfile1 libopus readline" | ||
| 16 | |||
| 17 | SRC_URI = "git://github.com/jackaudio/jack2.git" | ||
| 18 | SRCREV = "364159f8212393442670b9c3b68b75aa39d98975" | ||
| 19 | PV = "1.9.10+git${SRCPV}" | ||
| 20 | S = "${WORKDIR}/git" | ||
| 21 | |||
| 22 | inherit waf pkgconfig | ||
| 23 | |||
| 24 | PACKAGECONFIG ??= "alsa" | ||
| 25 | PACKAGECONFIG[alsa] = "--alsa=yes,alsa=no,alsa-lib" | ||
| 26 | PACKAGECONFIG[portaudio] = "--portaudio=yes,--portaudio=no,portaudio" | ||
| 27 | |||
| 28 | PACKAGES =+ "libjack jack-server jack-utils" | ||
| 29 | |||
| 30 | FILES_libjack = "${libdir}/*.so.* ${libdir}/jack/*.so" | ||
| 31 | FILES_jack-server = "${bindir}/jackd" | ||
| 32 | FILES_jack-utils = "${bindir}/*" | ||
| 33 | FILES_${PN}-doc += " ${datadir}/jack-audio-connection-kit/reference/html/* " | ||
