mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Merge pull request #109405 from primeos/ffmpeg-full-disable-rav1e
ffmpeg-full: disable rav1e by default (in favor of svt-av1)
This commit is contained in:
commit
a6d138c7ad
@ -15,8 +15,23 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "AV1-compliant encoder/decoder library core";
|
||||
homepage = "https://github.com/AOMediaCodec/SVT-AV1";
|
||||
license = licenses.bsd2;
|
||||
longDescription = ''
|
||||
The Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder) is an
|
||||
AV1-compliant encoder/decoder library core. The SVT-AV1 encoder
|
||||
development is a work-in-progress targeting performance levels applicable
|
||||
to both VOD and Live encoding / transcoding video applications. The
|
||||
SVT-AV1 decoder implementation is targeting future codec research
|
||||
activities.
|
||||
'';
|
||||
inherit (src.meta) homepage;
|
||||
changelog = "https://github.com/AOMediaCodec/SVT-AV1/blob/v${version}/CHANGELOG.md";
|
||||
license = with licenses; [
|
||||
bsd2
|
||||
{
|
||||
fullName = "Alliance for Open Media Patent License 1.0";
|
||||
url = "https://aomedia.org/license/patent-license/";
|
||||
}
|
||||
];
|
||||
platforms = platforms.unix;
|
||||
broken = stdenv.isAarch64; # undefined reference to `cpuinfo_arm_linux_init'
|
||||
maintainers = with maintainers; [ chiiruno ];
|
||||
|
@ -13375,6 +13375,7 @@ in
|
||||
|
||||
ffmpeg-full = callPackage ../development/libraries/ffmpeg-full {
|
||||
svt-av1 = if stdenv.isAarch64 then null else svt-av1;
|
||||
rav1e = null; # We already have SVT-AV1 for faster encoding
|
||||
# The following need to be fixed on Darwin
|
||||
libjack2 = if stdenv.isDarwin then null else libjack2;
|
||||
libmodplug = if stdenv.isDarwin then null else libmodplug;
|
||||
|
Loading…
Reference in New Issue
Block a user