guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: svt-hevc: Limit to x86_64-linux.


From: guix-commits
Subject: 01/02: gnu: svt-hevc: Limit to x86_64-linux.
Date: Mon, 19 Sep 2022 11:23:20 -0400 (EDT)

efraim pushed a commit to branch staging
in repository guix.

commit 62da6c6169d6a41508cd2c03d86ac350610d2827
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Sep 19 18:12:48 2022 +0300

    gnu: svt-hevc: Limit to x86_64-linux.
    
    * gnu/packages/video.scm (svt-hevc)[supported-systems]: Remove
    i686-linux. Add comment.
    * gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Don't add
    svt-hevc when building for i686-linux.
---
 gnu/packages/gstreamer.scm | 3 ++-
 gnu/packages/video.scm     | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 099c5ffcbb..c382f04446 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -826,7 +826,8 @@ model to base your own plug-in on, here it is.")
            xorg-server-for-tests))
     (inputs
      (append
-      (if (target-x86?) (list mediasdk svt-hevc) '())
+      (if (target-x86?) (list mediasdk) '())
+      (if (target-x86-64?) (list svt-hevc) '())
       (list bluez
             bzip2
             cairo
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index cc84444491..d66c42123d 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -335,7 +335,8 @@ the SVT-HEVC encoder, it is possible to spread video 
encoding processing across
 multiple Intel's Xeon processors to achieve a real advantage of processing
 efficiency.")
     (home-page "https://01.org/svt";)
-    (supported-systems '("x86_64-linux" "i686-linux"))
+    ;; Specifically targets x86_64 Intel hardware.
+    (supported-systems '("x86_64-linux"))
     (license (license:non-copyleft "file:///LICENSE.md"))))
 
 (define-public mediasdk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]