瀏覽代碼

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>
Alexandre Esse 8 年之前
父節點
當前提交
9e0a3101de
共有 5 個文件被更改,包括 27 次插入0 次删除
  1. 3 0
      DEVELOPERS
  2. 1 0
      package/Config.in
  3. 6 0
      package/kvazaar/Config.in
  4. 2 0
      package/kvazaar/kvazaar.hash
  5. 15 0
      package/kvazaar/kvazaar.mk

+ 3 - 0
DEVELOPERS

@@ -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/
 

+ 1 - 0
package/Config.in

@@ -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"

+ 6 - 0
package/kvazaar/Config.in

@@ -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

+ 2 - 0
package/kvazaar/kvazaar.hash

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

+ 15 - 0
package/kvazaar/kvazaar.mk

@@ -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))