me
/
guix
Archived
1
0
Fork 0

gnu: svt-hevc: Mark as supported on x86_64-linux only.

This package fails to build on i686-linux: it makes use of SSE2 and
related intrinsics not supported on i686.

* gnu/packages/video.scm (svt-hevc)[supported-systems]: Remove
"i686-linux".
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Adjust condition
accordingly.
master
Ludovic Courtès 2022-10-09 21:42:09 +02:00
parent e3362e249a
commit 27a3a5d193
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
2 changed files with 4 additions and 4 deletions

View File

@ -889,7 +889,7 @@ model to base your own plug-in on, here it is.")
("soundtouch" ,soundtouch) ("soundtouch" ,soundtouch)
("spandsp" ,spandsp) ("spandsp" ,spandsp)
("srt" ,srt) ("srt" ,srt)
,@(if (target-x86?) ,@(if (target-x86-64?)
`(("svthevcenc" ,svt-hevc)) `(("svthevcenc" ,svt-hevc))
'()) '())
("tinyalsa" ,tinyalsa) ("tinyalsa" ,tinyalsa)

View File

@ -335,7 +335,7 @@ 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 multiple Intel's Xeon processors to achieve a real advantage of processing
efficiency.") efficiency.")
(home-page "https://01.org/svt") (home-page "https://01.org/svt")
(supported-systems '("x86_64-linux" "i686-linux")) (supported-systems '("x86_64-linux"))
(license (license:non-copyleft "file:///LICENSE.md")))) (license (license:non-copyleft "file:///LICENSE.md"))))
(define-public mediasdk (define-public mediasdk