summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThijs Vermeir <thijsvermeir@gmail.com>2015-10-24 21:50:28 +0200
committerPeter Korsgaard <peter@korsgaard.com>2015-10-25 22:30:09 +0100
commitb261a01323352f6b6b19dffff5ee336be581de86 (patch)
tree26aee4b4306bd8c08f12deae1537d1011bda3293
parent77a30a05caf9b07e5e9b6bf797f270e576940388 (diff)
downloadbuildroot-b261a01323352f6b6b19dffff5ee336be581de86.tar.gz
buildroot-b261a01323352f6b6b19dffff5ee336be581de86.zip
x265: new package
x265 is a H.265 / HEVC video encoder application library, designed to encode video or images into an H.265 / HEVC encoded bitstream. http://x265.org [Peter: use positive logic for CLI option] Signed-off-by: Thijs Vermeir <thijsvermeir@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r--package/Config.in1
-rw-r--r--package/x265/Config.in23
-rw-r--r--package/x265/x265.hash2
-rw-r--r--package/x265/x265.mk31
4 files changed, 57 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in
index 2f7443920f..10ff94e36e 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -978,6 +978,7 @@ menu "Multimedia"
source "package/live555/Config.in"
source "package/mediastreamer/Config.in"
source "package/x264/Config.in"
+ source "package/x265/Config.in"
endmenu
menu "Networking"
diff --git a/package/x265/Config.in b/package/x265/Config.in
new file mode 100644
index 0000000000..4d202a9da8
--- /dev/null
+++ b/package/x265/Config.in
@@ -0,0 +1,23 @@
+config BR2_PACKAGE_X265
+ bool "x265"
+ depends on BR2_INSTALL_LIBSTDCPP
+ help
+ x265 is an open source free software and library for encoding video
+ using the High Efficiency Video Coding (HEVC/H.265) standard. x265 is
+ offered under either the GNU General Public License (GPL) 2 license or
+ a commercial license, similar to the x264 project.
+
+ http://x265.org
+
+if BR2_PACKAGE_X265
+
+config BR2_PACKAGE_X265_CLI
+ bool "CLI"
+ help
+ Command-line tool to encode video streams into the
+ H.265/HEVC compression format.
+
+endif
+
+comment "x265 needs a toolchain w/ C++"
+ depends on !BR2_INSTALL_LIBSTDCPP
diff --git a/package/x265/x265.hash b/package/x265/x265.hash
new file mode 100644
index 0000000000..714ec2a30c
--- /dev/null
+++ b/package/x265/x265.hash
@@ -0,0 +1,2 @@
+# Locally generated
+sha256 760e6280c688f1ea90c492d19fc6d4084ca1c4b0ea9b2e3c736d32565c30d857 x265_1.8.tar.gz
diff --git a/package/x265/x265.mk b/package/x265/x265.mk
new file mode 100644
index 0000000000..aa61066be9
--- /dev/null
+++ b/package/x265/x265.mk
@@ -0,0 +1,31 @@
+################################################################################
+#
+# x265
+#
+################################################################################
+
+X265_VERSION = 1.8
+X265_SOURCE = x265_$(X265_VERSION).tar.gz
+X265_SITE = https://bitbucket.org/multicoreware/x265/downloads
+X265_LICENSE = GPLv2+
+X265_LICENSE_FILES = COPYING
+X265_SUBDIR = source
+X265_INSTALL_STAGING = YES
+
+ifeq ($(BR2_i386)$(BR2_x86_64),y)
+X265_DEPENDENCIES += host-yasm
+endif
+
+ifeq ($(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),y)
+X265_CONF_OPTS += -DENABLE_SHARED=true -DENABLE_PIC=true
+else
+X265_CONF_OPTS += -DENABLE_SHARED=false
+endif
+
+ifeq ($(BR2_PACKAGE_X265_CLI),y)
+X265_CONF_OPTS += -DENABLE_CLI=true
+else
+X265_CONF_OPTS += -DENABLE_CLI=else
+endif
+
+$(eval $(cmake-package))
OpenPOWER on IntegriCloud