mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-15 03:16:04 +00:00
Add a test application checking accurracy and performance win of accelerated code. Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
41 lines
1.5 KiB
BlitzBasic
41 lines
1.5 KiB
BlitzBasic
DESCRIPTION = "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 in 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."
|
|
SECTION = "libs/multimedia"
|
|
|
|
LICENSE = "GPLv2 & LGPLv2.1"
|
|
LIC_FILES_CHKSUM = " \
|
|
file://common/jack/control.h;beginline=2;endline=21;md5=e6df0bf30cde8b3b825451459488195d \
|
|
file://common/jack/jack.h;beginline=1;endline=19;md5=6b736ed6b810592b135480a5e853392e \
|
|
"
|
|
|
|
DEPENDS = "libsamplerate0 libsndfile1 readline"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/jackaudio/jack2.git \
|
|
file://0001-Add-ARM-NEON-acceleration-for-all-non-dithering-samp.patch \
|
|
file://0002-jack_simdtests-add-application-checking-accurracy-an.patch \
|
|
"
|
|
SRCREV = "0279a2d65a36d1378f5bab56d95bf9e99cc8cefb"
|
|
PV = "1.9.10+git${SRCPV}"
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit waf pkgconfig
|
|
|
|
PACKAGECONFIG ??= "alsa"
|
|
PACKAGECONFIG[alsa] = "--alsa=yes,--alsa=no,alsa-lib"
|
|
PACKAGECONFIG[opus] = "--opus=yes,--opus=no,libopus"
|
|
|
|
# portaudio is for windows builds only
|
|
EXTRA_OECONF = "--portaudio=no"
|
|
|
|
PACKAGES =+ "libjack jack-server jack-utils"
|
|
|
|
FILES_libjack = "${libdir}/*.so.* ${libdir}/jack/*.so"
|
|
FILES_jack-server = "${bindir}/jackd"
|
|
FILES_jack-utils = "${bindir}/*"
|
|
FILES_${PN}-doc += " ${datadir}/jack-audio-connection-kit/reference/html/* "
|