diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-09-19 18:12:48 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-09-19 18:12:48 +0300 |
commit | 62da6c6169d6a41508cd2c03d86ac350610d2827 (patch) | |
tree | 9dce29cdf3dc9dd5b6ba3e23498c3b4597dd8498 /gnu/packages/video.scm | |
parent | 9b30301efee6ccb1270284ee7eea99151f87e6f4 (diff) |
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.
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 3 |
1 files changed, 2 insertions, 1 deletions
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 |