diff options
author | Antoine Côté <antoine.cote@posteo.net> | 2025-07-07 16:16:29 -0400 |
---|---|---|
committer | Steve George <steve@futurile.net> | 2025-07-16 17:12:32 +0100 |
commit | a031e48c2bf2f2b1ebbce19404657494b44f20d3 (patch) | |
tree | c48880737908744bf59369c227d17da4461d8be8 | |
parent | 2e9b8be55bf018c75ed415c5730a41885c03b512 (diff) |
gnu: dav1d: Update to 1.5.1.dav1d-update
* gnu/packages/video.scm (dav1d): Update to 1.5.1.
Change-Id: I2a2cbf458a867f3e0c98328e567d2f4b194abe14
Signed-off-by: Steve George <steve@futurile.net>
-rw-r--r-- | gnu/packages/video.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 23bbe3755a..c4c4f4f6b8 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -45,7 +45,7 @@ ;;; Copyright © 2020 Brett Gilio <brettg@gnu.org> ;;; Copyright © 2020 Alexandru-Sergiu Marton <brown121407@posteo.ro> ;;; Copyright © 2020 Ivan Kozlov <kanichos@yandex.ru> -;;; Copyright © 2020 Antoine Côté <antoine.cote@posteo.net> +;;; Copyright © 2020, 2025 Antoine Côté <antoine.cote@posteo.net> ;;; Copyright © 2020 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2021 Alexey Abramov <levenson@mmer.org> ;;; Copyright © 2021, 2022, 2023 Andrew Tropin <andrew@trop.in> @@ -6116,7 +6116,7 @@ and audio capture, network stream playback, and many more.") (define-public dav1d (package (name "dav1d") - (version "1.5.0") + (version "1.5.1") (source (origin (method git-fetch) @@ -6125,16 +6125,17 @@ and audio capture, network stream playback, and many more.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0rn8zvmqapjq4r9s9hlpz1866war4ap7hzp5h8qhm5igry7i1qvq")))) + (base32 "1n0b5m4srdjsqg15plc9fng5kjv14ygqahjxy8863fbzhr13vjx9")))) (build-system meson-build-system) (native-inputs (if (target-x86?) (list nasm) '())) (home-page "https://code.videolan.org/videolan/dav1d") - (synopsis "AV1 decoder") - (description "dav1d is a new AV1 cross-platform decoder, and focused on -speed and correctness.") + (synopsis "An @acronym{AV1, AOMedia Video 1} video decoder") + (description "This package is an AV1 cross-platform video decoder that's +focused on speed, size and correctness. AV1 is an open, royalty free video +coding format.") (license license:bsd-2))) (define-public wlstream |