upgrade to libvpx v1.4.0
This requires to make a clean of the build environment: cd submodules/external/libvpx && git reset --hard make clean make
This commit is contained in:
parent
22479baea0
commit
f1d2c1a6ea
3 changed files with 36 additions and 34 deletions
4
Makefile
4
Makefile
|
@ -342,13 +342,13 @@ LIBVPX_BUILD_DIR=$(TOPDIR)/submodules/externals/build/libvpx
|
||||||
LIBVPX_CONFIGURE_OPTIONS=--disable-vp9 --disable-examples --disable-unit-tests --disable-postproc --enable-error-concealment --enable-debug
|
LIBVPX_CONFIGURE_OPTIONS=--disable-vp9 --disable-examples --disable-unit-tests --disable-postproc --enable-error-concealment --enable-debug
|
||||||
|
|
||||||
$(LIBVPX_SRC_DIR)/configure_android_x86_patch_applied.txt:
|
$(LIBVPX_SRC_DIR)/configure_android_x86_patch_applied.txt:
|
||||||
@patch -p1 < $(TOPDIR)/patches/libvpx_configure_android_x86.patch
|
cd $(LIBVPX_SRC_DIR) && patch -p1 < $(TOPDIR)/patches/libvpx_configure_android_x86.patch
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
$(LIBVPX_BUILD_DIR)/arm/libvpx.a:
|
$(LIBVPX_BUILD_DIR)/arm/libvpx.a:
|
||||||
mkdir -p $(LIBVPX_BUILD_DIR)/arm && \
|
mkdir -p $(LIBVPX_BUILD_DIR)/arm && \
|
||||||
cd $(LIBVPX_BUILD_DIR)/arm && \
|
cd $(LIBVPX_BUILD_DIR)/arm && \
|
||||||
$(LIBVPX_SRC_DIR)/configure --target=armv7-android-gcc --sdk-path=$(NDK_PATH) $(LIBVPX_CONFIGURE_OPTIONS) && \
|
$(LIBVPX_SRC_DIR)/configure --target=armv7-android-gcc --extra-cflags="-mfloat-abi=softfp -mfpu=neon" --sdk-path=$(NDK_PATH) $(LIBVPX_CONFIGURE_OPTIONS) && \
|
||||||
make -j${NUMCPUS} \
|
make -j${NUMCPUS} \
|
||||||
|| ( echo "Build of libvpx for arm failed." ; exit 1 )
|
|| ( echo "Build of libvpx for arm failed." ; exit 1 )
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
--- a/submodules/externals/libvpx/build/make/configure.sh
|
diff --git a/build/make/configure.sh b/build/make/configure.sh
|
||||||
+++ b/submodules/externals/libvpx/build/make/configure.sh
|
index 25c9f80..336b006 100644
|
||||||
@@ -1037,6 +1037,33 @@ EOF
|
--- a/build/make/configure.sh
|
||||||
|
+++ b/build/make/configure.sh
|
||||||
|
@@ -1082,6 +1082,33 @@ EOF
|
||||||
os2)
|
os2)
|
||||||
AS=${AS:-nasm}
|
AS=${AS:-nasm}
|
||||||
;;
|
;;
|
||||||
|
|
2
submodules/externals/libvpx
vendored
2
submodules/externals/libvpx
vendored
|
@ -1 +1 @@
|
||||||
Subproject commit 2e88f2f2ec777259bda1714e72f1ecd2519bceb5
|
Subproject commit c74bf6d889992c3cabe017ec353ca85c323107cd
|
Loading…
Reference in a new issue