2024-09-13 19:13:41 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchzip, yasm, perl, cmake, pkg-config, python3
|
2022-02-12 06:39:33 +00:00
|
|
|
, enableVmaf ? true, libvmaf
|
2023-10-19 17:54:42 +00:00
|
|
|
, gitUpdater
|
2024-01-06 12:30:47 +00:00
|
|
|
|
|
|
|
# for passthru.tests
|
|
|
|
, ffmpeg
|
|
|
|
, libavif
|
|
|
|
, libheif
|
2022-02-12 06:39:33 +00:00
|
|
|
}:
|
2018-03-30 10:05:47 +00:00
|
|
|
|
2022-06-27 00:24:26 +00:00
|
|
|
let
|
|
|
|
isCross = stdenv.buildPlatform != stdenv.hostPlatform;
|
|
|
|
in
|
2018-03-30 10:05:47 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libaom";
|
2024-09-04 21:11:02 +00:00
|
|
|
version = "3.10.0";
|
2018-03-30 10:05:47 +00:00
|
|
|
|
2021-05-04 11:56:41 +00:00
|
|
|
src = fetchzip {
|
|
|
|
url = "https://aomedia.googlesource.com/aom/+archive/v${version}.tar.gz";
|
2024-09-04 21:11:02 +00:00
|
|
|
hash = "sha256-7xtIT8zalh1XJfVKWeC/+jAkhOuFHw6Q0+c2YMtDark=";
|
2021-05-04 11:56:41 +00:00
|
|
|
stripRoot = false;
|
2018-03-30 10:05:47 +00:00
|
|
|
};
|
|
|
|
|
2024-09-13 19:13:41 +00:00
|
|
|
patches = [
|
|
|
|
./outputs.patch
|
2024-09-23 16:05:19 +00:00
|
|
|
] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [
|
|
|
|
# This patch defines `_POSIX_C_SOURCE`, which breaks system headers
|
|
|
|
# on Darwin.
|
2024-09-13 19:13:41 +00:00
|
|
|
(fetchurl {
|
|
|
|
name = "musl.patch";
|
|
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-libs/libaom/files/libaom-3.4.0-posix-c-source-ftello.patch?id=50c7c4021e347ee549164595280cf8a23c960959";
|
|
|
|
hash = "sha256-6+u7GTxZcSNJgN7D+s+XAVwbMnULufkTcQ0s7l+Ydl0=";
|
|
|
|
})
|
|
|
|
];
|
2020-05-22 09:17:18 +00:00
|
|
|
|
2018-12-17 22:22:17 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-19 06:50:56 +00:00
|
|
|
yasm perl cmake pkg-config python3
|
2018-12-17 22:22:17 +00:00
|
|
|
];
|
2018-03-30 10:05:47 +00:00
|
|
|
|
2024-01-21 03:07:31 +00:00
|
|
|
propagatedBuildInputs = lib.optional enableVmaf libvmaf;
|
2022-02-12 06:39:33 +00:00
|
|
|
|
2018-12-17 22:22:17 +00:00
|
|
|
preConfigure = ''
|
|
|
|
# build uses `git describe` to set the build version
|
|
|
|
cat > $NIX_BUILD_TOP/git << "EOF"
|
|
|
|
#!${stdenv.shell}
|
|
|
|
echo v${version}
|
|
|
|
EOF
|
|
|
|
chmod +x $NIX_BUILD_TOP/git
|
|
|
|
export PATH=$NIX_BUILD_TOP:$PATH
|
2018-12-17 14:32:50 +00:00
|
|
|
'';
|
|
|
|
|
2020-05-20 14:32:23 +00:00
|
|
|
# Configuration options:
|
|
|
|
# https://aomedia.googlesource.com/aom/+/refs/heads/master/build/cmake/aom_config_defaults.cmake
|
|
|
|
|
|
|
|
cmakeFlags = [
|
2020-05-22 09:17:18 +00:00
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
|
|
"-DENABLE_TESTS=OFF"
|
2022-02-12 06:39:33 +00:00
|
|
|
] ++ lib.optionals enableVmaf [
|
|
|
|
"-DCONFIG_TUNE_VMAF=1"
|
2022-06-27 00:24:26 +00:00
|
|
|
] ++ lib.optionals (isCross && !stdenv.hostPlatform.isx86) [
|
2023-11-08 12:08:40 +00:00
|
|
|
"-DCMAKE_ASM_COMPILER=${stdenv.cc.targetPrefix}as"
|
2021-08-27 10:09:15 +00:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isAarch32 [
|
|
|
|
# armv7l-hf-multiplatform does not support NEON
|
|
|
|
# see lib/systems/platform.nix
|
|
|
|
"-DENABLE_NEON=0"
|
2020-05-20 14:32:23 +00:00
|
|
|
];
|
|
|
|
|
2020-05-22 09:17:18 +00:00
|
|
|
postFixup = ''
|
|
|
|
moveToOutput lib/libaom.a "$static"
|
2022-06-27 00:24:26 +00:00
|
|
|
'' + lib.optionalString stdenv.hostPlatform.isStatic ''
|
|
|
|
ln -s $static $out
|
2020-05-22 09:17:18 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
outputs = [ "out" "bin" "dev" "static" ];
|
|
|
|
|
2023-10-19 17:54:42 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gitUpdater {
|
|
|
|
url = "https://aomedia.googlesource.com/aom";
|
|
|
|
rev-prefix = "v";
|
|
|
|
ignoredVersions = "(alpha|beta|rc).*";
|
|
|
|
};
|
2024-01-06 12:30:47 +00:00
|
|
|
tests = {
|
|
|
|
inherit libavif libheif;
|
|
|
|
ffmpeg = ffmpeg.override { withAom = true; };
|
|
|
|
};
|
2023-10-19 17:54:42 +00:00
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-05-20 14:32:23 +00:00
|
|
|
description = "Alliance for Open Media AV1 codec library";
|
|
|
|
longDescription = ''
|
|
|
|
Libaom is the reference implementation of the AV1 codec from the Alliance
|
|
|
|
for Open Media. It contains an AV1 library as well as applications like
|
|
|
|
an encoder (aomenc) and a decoder (aomdec).
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://aomedia.org/av1-features/get-started/";
|
2020-05-20 14:32:23 +00:00
|
|
|
changelog = "https://aomedia.googlesource.com/aom/+/refs/tags/v${version}/CHANGELOG";
|
2022-02-12 06:39:33 +00:00
|
|
|
maintainers = with maintainers; [ primeos kiloreux dandellion ];
|
2018-03-30 10:05:47 +00:00
|
|
|
platforms = platforms.all;
|
2022-06-27 00:25:23 +00:00
|
|
|
outputsToInstall = [ "bin" ];
|
2018-10-17 18:06:06 +00:00
|
|
|
license = licenses.bsd2;
|
2018-03-30 10:05:47 +00:00
|
|
|
};
|
2018-07-03 22:09:38 +00:00
|
|
|
}
|