From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38242) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j8BSl-0007WT-Ua for guix-patches@gnu.org; Sat, 29 Feb 2020 18:24:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j8BSk-0003xF-KV for guix-patches@gnu.org; Sat, 29 Feb 2020 18:24:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:57810) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j8BSk-0003x6-HO for guix-patches@gnu.org; Sat, 29 Feb 2020 18:24:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j8BSk-0002Ua-Cc for guix-patches@gnu.org; Sat, 29 Feb 2020 18:24:02 -0500 Subject: [bug#39846] [PATCH] gnu: Add SVT-AV1. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:38167) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j8BRv-0007Jf-Vv for guix-patches@gnu.org; Sat, 29 Feb 2020 18:23:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j8BRu-0003ax-Pc for guix-patches@gnu.org; Sat, 29 Feb 2020 18:23:11 -0500 Received: from wout1-smtp.messagingengine.com ([64.147.123.24]:58133) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j8BRu-0003Zl-D3 for guix-patches@gnu.org; Sat, 29 Feb 2020 18:23:10 -0500 Received: from jasmine.lan (c-76-124-138-63.hsd1.pa.comcast.net [76.124.138.63]) by mail.messagingengine.com (Postfix) with ESMTPA id AF4CC3060F09 for ; Sat, 29 Feb 2020 18:23:07 -0500 (EST) From: Leo Famulari Date: Sat, 29 Feb 2020 18:22:55 -0500 Message-Id: <86ee9d7584db25cb3f36734e1b1543ffce4c18c8.1583018575.git.leo@famulari.name> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39846@debbugs.gnu.org * gnu/packages/video.scm (svt-av1): New variable. --- gnu/packages/video.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 6719e1e047..8d8db4b1ca 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -3793,3 +3793,32 @@ Theora videos. Theorafile was written to be used for FNA's VideoPlayer.") DVD using @command{libdvdcss}, but does @strong{not} demux, remux, transcode or reformat the videos in any way, producing perfect backups.") (license license:gpl3+))) + +(define-public svt-av1 + (package + (name "svt-av1") + (version "0.8.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/OpenVisualCloud/SVT-AV1.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "08sx9zhhks8wzq05f67jqmc1zqmmi7hqkgg2gyjpcsan5qc5476w")))) + (build-system cmake-build-system) + ;; SVT-AV1 only supports Intel-compatible CPUs. + (supported-systems '("x86_64-linux" "i686-linux")) + (arguments + ;; The test suite tries to download test data and git clone a 3rd-party + ;; fork of libaom. Skip it. + '(#:tests? #f)) + (native-inputs + `(("yasm" ,yasm))) + (synopsis "AV1 video codec") + (description "SVT-AV1 is an AV1 codec implementation. The encoder is a +work-in-progress, aiming to support video-on-demand and live streaming +applications. It only supports Intel-compatible CPUs (x86).") + (home-page "https://github.com/OpenVisualCloud/SVT-AV1") + (license license:bsd-2))) -- 2.25.1