2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitLab
|
2021-01-19 06:50:56 +00:00
|
|
|
, meson, ninja, nasm, pkg-config
|
2019-10-11 12:29:36 +01:00
|
|
|
, withTools ? false # "dav1d" binary
|
|
|
|
, withExamples ? false, SDL2 # "dav1dplay" binary
|
2019-08-27 22:20:06 +01:00
|
|
|
, useVulkan ? false, libplacebo, vulkan-loader, vulkan-headers
|
2019-08-06 10:18:58 +01:00
|
|
|
}:
|
2019-03-21 17:44:00 +00:00
|
|
|
|
2019-10-11 12:29:36 +01:00
|
|
|
assert useVulkan -> withExamples;
|
2019-08-27 22:20:06 +01:00
|
|
|
|
2019-03-21 17:44:00 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "dav1d";
|
2021-01-03 18:01:48 +00:00
|
|
|
version = "0.8.1";
|
2019-03-21 17:44:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "code.videolan.org";
|
|
|
|
owner = "videolan";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-01-03 18:01:48 +00:00
|
|
|
sha256 = "1820fpmmq1vxjzjmza6ydk4fgxipb8gmcc5skybki64qn7410v7x";
|
2019-03-21 17:44:00 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ meson ninja nasm pkg-config ];
|
2019-03-21 17:44:00 +00:00
|
|
|
# TODO: doxygen (currently only HTML and not build by default).
|
2021-01-21 17:00:13 +00:00
|
|
|
buildInputs = lib.optional withExamples SDL2
|
|
|
|
++ lib.optionals useVulkan [ libplacebo vulkan-loader vulkan-headers ];
|
2019-08-06 11:51:12 +01:00
|
|
|
|
|
|
|
mesonFlags= [
|
2021-01-21 17:00:13 +00:00
|
|
|
"-Denable_tools=${lib.boolToString withTools}"
|
|
|
|
"-Denable_examples=${lib.boolToString withExamples}"
|
2019-08-06 11:51:12 +01:00
|
|
|
];
|
2019-03-21 17:44:00 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2019-03-21 17:44:00 +00:00
|
|
|
description = "A cross-platform AV1 decoder focused on speed and correctness";
|
|
|
|
longDescription = ''
|
|
|
|
The goal of this project is to provide a decoder for most platforms, and
|
|
|
|
achieve the highest speed possible to overcome the temporary lack of AV1
|
|
|
|
hardware decoder. It supports all features from AV1, including all
|
|
|
|
subsampling and bit-depth parameters.
|
|
|
|
'';
|
|
|
|
inherit (src.meta) homepage;
|
2020-03-06 20:21:39 +00:00
|
|
|
changelog = "https://code.videolan.org/videolan/dav1d/-/tags/${version}";
|
|
|
|
# More technical: https://code.videolan.org/videolan/dav1d/blob/${version}/NEWS
|
2019-03-21 17:44:00 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
|
|
|
}
|