Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
From 47a9f0de049e77e866ea5bdd4bc7c795ea6dd641 Mon Sep 17 00:00:00 2001
|
||||
From: Ari Lemmetti <ari.lemmetti@gmail.com>
|
||||
Date: Tue, 11 Apr 2017 12:57:22 +0300
|
||||
Subject: [PATCH] Modify and use FILL_ARRAY macro to prevent warning on GCC 7
|
||||
|
||||
Following warning was given and is false positive
|
||||
|
||||
error: 'memset' used with length equal to number of elements without multiplication by element size [-Werror=memset-elt-size]
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
Upstream commit 47a9f0de049e7.
|
||||
|
||||
src/global.h | 6 +++++-
|
||||
src/rdo.c | 8 ++++----
|
||||
2 files changed, 9 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/src/global.h b/src/global.h
|
||||
index bedcd49c2e02..518167443f35 100644
|
||||
--- a/src/global.h
|
||||
+++ b/src/global.h
|
||||
@@ -219,7 +219,11 @@ typedef int16_t coeff_t;
|
||||
// Fill a structure or a static array with val bytes.
|
||||
#define FILL(var, val) memset(&(var), (val), sizeof(var))
|
||||
// Fill a number of elements in an array with val bytes.
|
||||
-#define FILL_ARRAY(ar, val, size) memset((ar), (val), (size) * sizeof(*(ar)))
|
||||
+#define FILL_ARRAY(ar, val, size) \
|
||||
+{\
|
||||
+ void *temp_ptr = (void*)(ar);\
|
||||
+ memset((temp_ptr), (val), (size) * sizeof(*(ar)));\
|
||||
+}
|
||||
|
||||
#define FREE_POINTER(pointer) { free((void*)pointer); pointer = NULL; }
|
||||
#define MOVE_POINTER(dst_pointer,src_pointer) { dst_pointer = src_pointer; src_pointer = NULL; }
|
||||
diff --git a/src/rdo.c b/src/rdo.c
|
||||
index 52305fd72fab..2579f2808441 100644
|
||||
--- a/src/rdo.c
|
||||
+++ b/src/rdo.c
|
||||
@@ -558,10 +558,10 @@ void kvz_rdoq(encoder_state_t * const state, coeff_t *coef, coeff_t *dest_coeff,
|
||||
// Explicitly tell the only possible numbers of elements to be zeroed.
|
||||
// Hope the compiler is able to utilize this information.
|
||||
switch (cg_num) {
|
||||
- case 1: memset(sig_coeffgroup_flag, 0, 1 * sizeof(sig_coeffgroup_flag[0])); break;
|
||||
- case 4: memset(sig_coeffgroup_flag, 0, 4 * sizeof(sig_coeffgroup_flag[0])); break;
|
||||
- case 16: memset(sig_coeffgroup_flag, 0, 16 * sizeof(sig_coeffgroup_flag[0])); break;
|
||||
- case 64: memset(sig_coeffgroup_flag, 0, 64 * sizeof(sig_coeffgroup_flag[0])); break;
|
||||
+ case 1: FILL_ARRAY(sig_coeffgroup_flag, 0, 1); break;
|
||||
+ case 4: FILL_ARRAY(sig_coeffgroup_flag, 0, 4); break;
|
||||
+ case 16: FILL_ARRAY(sig_coeffgroup_flag, 0, 16); break;
|
||||
+ case 64: FILL_ARRAY(sig_coeffgroup_flag, 0, 64); break;
|
||||
default: assert(0 && "There should be 1, 4, 16 or 64 coefficient groups");
|
||||
}
|
||||
|
||||
--
|
||||
2.13.2
|
||||
|
||||
16
bsp/buildroot/package/kvazaar/Config.in
Normal file
16
bsp/buildroot/package/kvazaar/Config.in
Normal file
@@ -0,0 +1,16 @@
|
||||
config BR2_PACKAGE_KVAZAAR
|
||||
bool "kvazaar"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
# use deprecated altivec vec_lvsl()
|
||||
depends on !BR2_powerpc && !BR2_powerpc64 && !BR2_powerpc64le
|
||||
help
|
||||
An open-source HEVC encoder licensed under LGPLv2.1
|
||||
|
||||
https://github.com/ultravideo/kvazaar
|
||||
|
||||
comment "kvazaar needs a toolchain w/ C++, threads"
|
||||
depends on !BR2_powerpc && !BR2_powerpc64 && !BR2_powerpc64le
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
2
bsp/buildroot/package/kvazaar/kvazaar.hash
Normal file
2
bsp/buildroot/package/kvazaar/kvazaar.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 8e382738a51004bfcfca4c832e8b41fe6a17f889f3c39151dc1c1a37261a3a6d kvazaar-v1.1.0.tar.gz
|
||||
16
bsp/buildroot/package/kvazaar/kvazaar.mk
Normal file
16
bsp/buildroot/package/kvazaar/kvazaar.mk
Normal file
@@ -0,0 +1,16 @@
|
||||
################################################################################
|
||||
#
|
||||
# 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_DEPENDENCIES = host-pkgconf
|
||||
KVAZAAR_CONF_OPTS = --without-cryptopp
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user