Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
Fix compilation on non-sse2 platforms
|
||||
|
||||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
|
||||
diff -uNr libyuv-1411.org/include/libyuv/scale_row.h libyuv-1411/include/libyuv/scale_row.h
|
||||
--- libyuv-1411.org/include/libyuv/scale_row.h 2015-05-22 23:39:21.000000000 +0200
|
||||
+++ libyuv-1411/include/libyuv/scale_row.h 2015-05-25 12:35:17.000000000 +0200
|
||||
@@ -33,7 +33,7 @@
|
||||
|
||||
// The following are available on all x86 platforms:
|
||||
#if !defined(LIBYUV_DISABLE_X86) && \
|
||||
- (defined(_M_IX86) || defined(__x86_64__) || defined(__i386__))
|
||||
+ (defined(_M_IX86) || defined(__x86_64__) || (defined(__i386__) && defined(__SSE2__)))
|
||||
#define HAS_FIXEDDIV1_X86
|
||||
#define HAS_FIXEDDIV_X86
|
||||
#define HAS_SCALEADDROWS_SSE2
|
||||
@@ -0,0 +1,36 @@
|
||||
Add missing source files for aarch64.
|
||||
|
||||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
|
||||
diff -uNr libyuv-1ebf86795cb213a37f06eb1ef3713cff080568ea.org/CMakeLists.txt libyuv-1ebf86795cb213a37f06eb1ef3713cff080568ea/CMakeLists.txt
|
||||
--- libyuv-1ebf86795cb213a37f06eb1ef3713cff080568ea.org/CMakeLists.txt 2015-06-20 00:04:06.000000000 +0200
|
||||
+++ libyuv-1ebf86795cb213a37f06eb1ef3713cff080568ea/CMakeLists.txt 2015-09-07 19:29:42.898034988 +0200
|
||||
@@ -14,6 +14,7 @@
|
||||
${ly_src_dir}/compare.cc
|
||||
${ly_src_dir}/compare_common.cc
|
||||
${ly_src_dir}/compare_neon.cc
|
||||
+ ${ly_src_dir}/compare_neon64.cc
|
||||
${ly_src_dir}/compare_gcc.cc
|
||||
${ly_src_dir}/compare_win.cc
|
||||
${ly_src_dir}/convert.cc
|
||||
@@ -31,10 +32,12 @@
|
||||
${ly_src_dir}/rotate_argb.cc
|
||||
${ly_src_dir}/rotate_mips.cc
|
||||
${ly_src_dir}/rotate_neon.cc
|
||||
+ ${ly_src_dir}/rotate_neon64.cc
|
||||
${ly_src_dir}/row_any.cc
|
||||
${ly_src_dir}/row_common.cc
|
||||
${ly_src_dir}/row_mips.cc
|
||||
${ly_src_dir}/row_neon.cc
|
||||
+ ${ly_src_dir}/row_neon64.cc
|
||||
${ly_src_dir}/row_gcc.cc
|
||||
${ly_src_dir}/row_win.cc
|
||||
${ly_src_dir}/scale.cc
|
||||
@@ -43,6 +46,7 @@
|
||||
${ly_src_dir}/scale_common.cc
|
||||
${ly_src_dir}/scale_mips.cc
|
||||
${ly_src_dir}/scale_neon.cc
|
||||
+ ${ly_src_dir}/scale_neon64.cc
|
||||
${ly_src_dir}/scale_gcc.cc
|
||||
${ly_src_dir}/scale_win.cc
|
||||
${ly_src_dir}/video_common.cc
|
||||
12
deprecated/firmware/buildroot/package/libyuv/Config.in
Normal file
12
deprecated/firmware/buildroot/package/libyuv/Config.in
Normal file
@@ -0,0 +1,12 @@
|
||||
config BR2_PACKAGE_LIBYUV
|
||||
bool "libyuv"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on !BR2_STATIC_LIBS
|
||||
help
|
||||
libyuv is an open source project that includes YUV scaling
|
||||
and conversion functionality.
|
||||
|
||||
https://code.google.com/p/libyuv
|
||||
|
||||
comment "libyuv needs a toolchain w/ C++, dynamic library"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS
|
||||
18
deprecated/firmware/buildroot/package/libyuv/libyuv.mk
Normal file
18
deprecated/firmware/buildroot/package/libyuv/libyuv.mk
Normal file
@@ -0,0 +1,18 @@
|
||||
################################################################################
|
||||
#
|
||||
# libyuv
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBYUV_VERSION = 1ebf86795cb213a37f06eb1ef3713cff080568ea
|
||||
# we use the FreeSwitch fork because there is currently no alternative
|
||||
# for https://chromium.googlesource.com/libyuv/libyuv which will be
|
||||
# deactivated in 2015.
|
||||
LIBYUV_SITE = https://freeswitch.org/stash/scm/sd/libyuv.git
|
||||
LIBYUV_SITE_METHOD = git
|
||||
LIBYUV_LICENSE = BSD-3c
|
||||
LIBYUV_LICENSE_FILES = LICENSE
|
||||
LIBYUV_INSTALL_STAGING = YES
|
||||
LIBYUV_DEPENDENCIES = $(if $(BR2_PACKAGE_JPEG),jpeg)
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user