diff options
author | trav90 <travawine@protonmail.ch> | 2018-04-26 16:54:31 -0500 |
---|---|---|
committer | trav90 <travawine@protonmail.ch> | 2018-04-26 16:54:31 -0500 |
commit | 610ec3b91c4b4482a828ffedec65532fad66434f (patch) | |
tree | 0823a31fd395541a58c4a87f0c36a29760c5e5d1 /media | |
parent | ac0b5252b434c439c6195744a68437eccd7c5338 (diff) | |
download | uxp-610ec3b91c4b4482a828ffedec65532fad66434f.tar.gz |
[ffvpx] Re-enable assembly optimized code
It was inadvertently disabled in 8b37a1bc306c1d5a3cc92e9dc04fb95d5d9a0298.
Diffstat (limited to 'media')
-rw-r--r-- | media/ffvpx/README_MCP | 6 | ||||
-rw-r--r-- | media/ffvpx/config_darwin64.asm | 2 | ||||
-rw-r--r-- | media/ffvpx/config_darwin64.h | 2 | ||||
-rw-r--r-- | media/ffvpx/config_unix32.h | 2 | ||||
-rw-r--r-- | media/ffvpx/config_unix64.asm | 2 | ||||
-rw-r--r-- | media/ffvpx/config_win32.asm | 2 | ||||
-rw-r--r-- | media/ffvpx/config_win32.h | 2 | ||||
-rw-r--r-- | media/ffvpx/config_win64.asm | 2 | ||||
-rw-r--r-- | media/ffvpx/config_win64.h | 2 |
9 files changed, 11 insertions, 11 deletions
diff --git a/media/ffvpx/README_MCP b/media/ffvpx/README_MCP index 784e19da5c..dc099b033e 100644 --- a/media/ffvpx/README_MCP +++ b/media/ffvpx/README_MCP @@ -7,12 +7,12 @@ Currently, we only use the vp8 and vp9 portion of the library, and only on x86 based platforms. If this changes, configuration files will most likely need to be updated. -AVX2 must be disabled on Linux due to the use of yasm 1.1 on the build bots. +AVX2 must be disabled on Linux 32 bits due to the use of yasm 1.1 on the build bots. Once yasm is upgraded to 1.2 or later, AVX2 code could be re-enabled. Add --disable-avx2 to configure on those platforms. configuration files were generated as follow using the configure script: -./configure --disable-everything --disable-protocols --disable-demuxers --disable-muxers --disable-filters --disable-programs --disable-doc --disable-parsers --enable-parser=vp8 --enable-parser=vp9 --enable-decoder=vp8 --enable-decoder=vp9 --disable-static --enable-shared --disable-debug --disable-sdl2 --disable-libxcb --disable-securetransport --disable-iconv --disable-swresample --disable-swscale --disable-avdevice --disable-avfilter --disable-avformat --disable-d3d11va --disable-dxva2 --disable-vaapi --disable-vda --disable-vdpau --disable-videotoolbox --enable-decoder=flac --enable-parser=flac --enable-asm --enable-yasm +./configure --disable-everything --disable-protocols --disable-demuxers --disable-muxers --disable-filters --disable-programs --disable-doc --disable-parsers --enable-parser=vp8 --enable-parser=vp9 --enable-decoder=vp8 --enable-decoder=vp9 --disable-static --enable-shared --disable-debug --disable-sdl2 --disable-libxcb --disable-securetransport --disable-iconv --disable-swresample --disable-swscale --disable-avdevice --disable-avfilter --disable-avformat --disable-d3d11va --disable-dxva2 --disable-vaapi --disable-vda --disable-vdpau --disable-videotoolbox --enable-decoder=flac --enable-asm --enable-x86asm config*: replace: /HAVE_(MALLOC_H|ARC4RANDOM|LOCALTIME_R|MEMALIGN|POSIX_MEMALIGN)/d @@ -21,7 +21,7 @@ config_darwin32.h: add to configure command: --disable-asm --disable-yasm --cc='clang -m32' config_unix32.h: -add to configure command: --disable-asm --disable-yasm --cc='clang -m32' +add to configure command: --disable-asm --disable-x86asm --cc='clang -m32' replace: s/HAVE_SYSCTL 1/HAVE_SYSCTL 0/ and s/HAVE_MEMALIGN 1/HAVE_MEMALIGN 0/ and s/HAVE_POSIX_MEMALIGN 1/HAVE_POSIX_MEMALIGN 0/ diff --git a/media/ffvpx/config_darwin64.asm b/media/ffvpx/config_darwin64.asm index af23f7124a..4fd3fdc63b 100644 --- a/media/ffvpx/config_darwin64.asm +++ b/media/ffvpx/config_darwin64.asm @@ -178,7 +178,7 @@ %define HAVE_CEXP 1 %define HAVE_INLINE_ASM 1 %define HAVE_SYMVER 1 -%define HAVE_YASM 1 +%define HAVE_X86ASM 1 %define HAVE_BIGENDIAN 0 %define HAVE_FAST_UNALIGNED 1 %define HAVE_ALSA_ASOUNDLIB_H 0 diff --git a/media/ffvpx/config_darwin64.h b/media/ffvpx/config_darwin64.h index 9eee508727..c43d8c452f 100644 --- a/media/ffvpx/config_darwin64.h +++ b/media/ffvpx/config_darwin64.h @@ -194,7 +194,7 @@ #define HAVE_CEXP 1 #define HAVE_INLINE_ASM 1 #define HAVE_SYMVER 1 -#define HAVE_YASM 1 +#define HAVE_X86ASM 1 #define HAVE_BIGENDIAN 0 #define HAVE_FAST_UNALIGNED 1 #define HAVE_INCOMPATIBLE_LIBAV_ABI 0 diff --git a/media/ffvpx/config_unix32.h b/media/ffvpx/config_unix32.h index 69808f6d74..5b4e8ab6ad 100644 --- a/media/ffvpx/config_unix32.h +++ b/media/ffvpx/config_unix32.h @@ -194,7 +194,7 @@ #define HAVE_CEXP 1 #define HAVE_INLINE_ASM 1 #define HAVE_SYMVER 1 -#define HAVE_YASM 0 +#define HAVE_X86ASM 0 #define HAVE_BIGENDIAN 0 #define HAVE_FAST_UNALIGNED 0 #define HAVE_ALSA_ASOUNDLIB_H 0 diff --git a/media/ffvpx/config_unix64.asm b/media/ffvpx/config_unix64.asm index 120e6e99fc..8de8b753b2 100644 --- a/media/ffvpx/config_unix64.asm +++ b/media/ffvpx/config_unix64.asm @@ -178,7 +178,7 @@ %define HAVE_CEXP 1 %define HAVE_INLINE_ASM 1 %define HAVE_SYMVER 1 -%define HAVE_YASM 1 +%define HAVE_X86ASM 1 %define HAVE_BIGENDIAN 0 %define HAVE_FAST_UNALIGNED 1 %define HAVE_ALSA_ASOUNDLIB_H 0 diff --git a/media/ffvpx/config_win32.asm b/media/ffvpx/config_win32.asm index 660202d0a9..7dd162073c 100644 --- a/media/ffvpx/config_win32.asm +++ b/media/ffvpx/config_win32.asm @@ -178,7 +178,7 @@ %define HAVE_CEXP 0 %define HAVE_INLINE_ASM 0 %define HAVE_SYMVER 0 -%define HAVE_YASM 1 +%define HAVE_X86ASM 1 %define HAVE_BIGENDIAN 0 %define HAVE_FAST_UNALIGNED 1 %define HAVE_ALSA_ASOUNDLIB_H 0 diff --git a/media/ffvpx/config_win32.h b/media/ffvpx/config_win32.h index 8460c7a105..fdc0c7b7e5 100644 --- a/media/ffvpx/config_win32.h +++ b/media/ffvpx/config_win32.h @@ -194,7 +194,7 @@ #define HAVE_CEXP 0 #define HAVE_INLINE_ASM 0 #define HAVE_SYMVER 0 -#define HAVE_YASM 1 +#define HAVE_X86ASM 1 #define HAVE_BIGENDIAN 0 #define HAVE_FAST_UNALIGNED 1 #define HAVE_ALSA_ASOUNDLIB_H 0 diff --git a/media/ffvpx/config_win64.asm b/media/ffvpx/config_win64.asm index e492246b43..67e54c0b1c 100644 --- a/media/ffvpx/config_win64.asm +++ b/media/ffvpx/config_win64.asm @@ -178,7 +178,7 @@ %define HAVE_CEXP 0 %define HAVE_INLINE_ASM 0 %define HAVE_SYMVER 0 -%define HAVE_YASM 1 +%define HAVE_X86ASM 1 %define HAVE_BIGENDIAN 0 %define HAVE_FAST_UNALIGNED 1 %define HAVE_ALSA_ASOUNDLIB_H 0 diff --git a/media/ffvpx/config_win64.h b/media/ffvpx/config_win64.h index a24f1c5232..b3a05a3683 100644 --- a/media/ffvpx/config_win64.h +++ b/media/ffvpx/config_win64.h @@ -194,7 +194,7 @@ #define HAVE_CEXP 0 #define HAVE_INLINE_ASM 0 #define HAVE_SYMVER 0 -#define HAVE_YASM 1 +#define HAVE_X86ASM 1 #define HAVE_BIGENDIAN 0 #define HAVE_FAST_UNALIGNED 1 #define HAVE_ALSA_ASOUNDLIB_H 0 |