Kvazaar is an open-source HEVC encoder licensed under LGPLv2.1.
This provides tools to encode raw video into HEVC stream.
website: http://ultravideo.cs.tut.fi/
Signed-off-by: Alexandre Esse <alexandre.esse.dev@gmail.com>
[Thomas: add --without-cryptopp to explicitly disable support for this
optional dependency, use SPDX license code, fix Config.in]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
N: Alexandre Belloni <alexandre.belloni@free-electrons.com>
F: package/tz/
+N: Alexandre Esse <alexandre.esse.dev@gmail.com>
+F: package/kvazaar/
+
N: Alistair Francis <alistair.francis@xilinx.com>
F: package/xen/
menu "Multimedia"
source "package/bitstream/Config.in"
+ source "package/kvazaar/Config.in"
source "package/libaacs/Config.in"
source "package/libamcodec/Config.in"
source "package/libass/Config.in"
--- /dev/null
+config BR2_PACKAGE_KVAZAAR
+ bool "kvazaar"
+ help
+ An open-source HEVC encoder licensed under LGPLv2.1
+
+ https://github.com/ultravideo/kvazaar
--- /dev/null
+# Locally calculated
+sha256 8e382738a51004bfcfca4c832e8b41fe6a17f889f3c39151dc1c1a37261a3a6d kvazaar-v1.1.0.tar.gz
--- /dev/null
+################################################################################
+#
+# kvazaar
+#
+################################################################################
+
+KVAZAAR_VERSION = v1.1.0
+KVAZAAR_SITE = $(call github,ultravideo,kvazaar,$(KVAZAAR_VERSION))
+KVAZAAR_LICENSE = LGPL-2.1+
+KVAZAAR_LICENSE_FILES = COPYING
+KVAZAAR_AUTORECONF = YES
+KVAZAAR_INSTALL_STAGING = YES
+KVAZAAR_CONF_OPTS = --without-cryptopp
+
+$(eval $(autotools-package))