mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add alsa-midi-latency-test.
* gnu/packages/audio.scm (alsa-midi-latency-test): New variable. Change-Id: I35d3047cb997c5787de515a38ae0a0eb8f12600d Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
b213afbf58
commit
b7eb1a8116
1 changed files with 36 additions and 1 deletions
|
@ -31,7 +31,7 @@
|
|||
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||
;;; Copyright © 2020, 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||
;;; Copyright © 2020 Jonathan Frederickson <jonathan@terracrypt.net>
|
||||
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||
;;; Copyright © 2020, 2024 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||
;;; Copyright © 2020, 2021, 2023 Vinicius Monego <monego@posteo.net>
|
||||
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
||||
;;; Copyright © 2021 jgart <jgart@dismail.de>
|
||||
|
@ -261,6 +261,41 @@ (define-public wildmidi
|
|||
;; Player.
|
||||
license:gpl3+))))
|
||||
|
||||
(define-public alsa-midi-latency-test
|
||||
(let ((version "0.0.5")
|
||||
(revision "0")
|
||||
(commit "07e43f8a1e6fd6d3bd97a00f2ee5afb74cb66f95"))
|
||||
(package
|
||||
(name "alsa-midi-latency-test")
|
||||
(version (git-version version revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/koppi/alsa-midi-latency-test")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0b3xd4z7zx6mmh6q2q7wnyd0hzikny2cikwzhaab3q86b551vb9n"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #f ;there are no tests
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(replace 'bootstrap
|
||||
(lambda _
|
||||
(invoke "sh" "./autogen.sh"))))))
|
||||
(native-inputs (list automake autoconf libtool))
|
||||
(inputs (list alsa-lib))
|
||||
(synopsis "Measure the roundtrip time of MIDI messages")
|
||||
(description
|
||||
"@code{alsa-midi-latency-test} measures the roundtrip time of a MIDI
|
||||
message in the alsa subsystem of the Linux kernel using a high precision timer.
|
||||
It calculates the worst case roundtrip time of all sent MIDI messages and
|
||||
displays a histogram of the roundtrip time jitter.")
|
||||
(home-page "https://github.com/koppi/alsa-midi-latency-test")
|
||||
(license license:gpl2+))))
|
||||
|
||||
(define-public webrtc-audio-processing
|
||||
(package
|
||||
(name "webrtc-audio-processing")
|
||||
|
|
Loading…
Reference in a new issue