kvazaar: new package

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>
This commit is contained in:
Alexandre Esse 2017-06-17 01:29:27 +02:00 committed by Thomas Petazzoni
parent 0309a6a728
commit 9e0a3101de
5 changed files with 27 additions and 0 deletions

View file

@ -64,6 +64,9 @@ F: package/liblog4c-localtime/
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/

View file

@ -1219,6 +1219,7 @@ endmenu
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"

View file

@ -0,0 +1,6 @@
config BR2_PACKAGE_KVAZAAR
bool "kvazaar"
help
An open-source HEVC encoder licensed under LGPLv2.1
https://github.com/ultravideo/kvazaar

View file

@ -0,0 +1,2 @@
# Locally calculated
sha256 8e382738a51004bfcfca4c832e8b41fe6a17f889f3c39151dc1c1a37261a3a6d kvazaar-v1.1.0.tar.gz

View file

@ -0,0 +1,15 @@
################################################################################
#
# 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))