gnu: svt-av1: Update to 1.3.0.

* gnu/packages/video.scm (svt-av1): Update to 1.3.0.
[supported-systems]: Remove.
[description]: Update.
This commit is contained in:
Marius Bakke 2022-11-30 11:52:44 +01:00
parent 84c577d7a7
commit 168afe2976
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -5120,7 +5120,7 @@ (define-public dvdbackup
(define-public svt-av1 (define-public svt-av1
(package (package
(name "svt-av1") (name "svt-av1")
(version "0.9.1") (version "1.3.0")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -5129,10 +5129,8 @@ (define-public svt-av1
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "02fchq2vlxcxzbrss72xl9vrxzysdy39d5i159bmg3qa45ngd2iw")))) (base32 "0blnla32yz665bx0xyx8lrjs2wqd2xhpbqwwpz72mq7zf341j8vv"))))
(build-system cmake-build-system) (build-system cmake-build-system)
;; SVT-AV1 only supports 64-bit Intel-compatible CPUs.
(supported-systems '("x86_64-linux"))
(arguments (arguments
;; The test suite tries to download test data and git clone a 3rd-party ;; The test suite tries to download test data and git clone a 3rd-party
;; fork of libaom. Skip it. ;; fork of libaom. Skip it.
@ -5150,7 +5148,8 @@ (define-public svt-av1
(synopsis "AV1 video codec") (synopsis "AV1 video codec")
(description "SVT-AV1 is an AV1 codec implementation. The encoder is a (description "SVT-AV1 is an AV1 codec implementation. The encoder is a
work-in-progress, aiming to support video-on-demand and live streaming work-in-progress, aiming to support video-on-demand and live streaming
applications. It only supports Intel-compatible CPUs (x86).") applications with high performance requirements. It mainly targets
Intel-compatible CPUs (x86), but has limited support for other architectures.")
(home-page "https://gitlab.com/AOMediaCodec/SVT-AV1") (home-page "https://gitlab.com/AOMediaCodec/SVT-AV1")
(license license:bsd-2))) (license license:bsd-2)))