mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 947160 remove MOZ_VP8_ENCODER. r=kinetik
- Encoder is always built, remove MOZ_VP8_ENCODER. - Rename MOZ_VP8* to MOZ_VPX* - Enable multi-res encoding via libvpx configure.
This commit is contained in:
parent
49897d0a80
commit
baa27de9ee
2
config/external/moz.build
vendored
2
config/external/moz.build
vendored
@ -27,7 +27,7 @@ if CONFIG['MOZ_OPUS']:
|
||||
if CONFIG['MOZ_WEBM']:
|
||||
external_dirs += ['media/libnestegg']
|
||||
|
||||
if CONFIG['MOZ_VP8'] and not CONFIG['MOZ_NATIVE_LIBVPX']:
|
||||
if CONFIG['MOZ_VPX'] and not CONFIG['MOZ_NATIVE_LIBVPX']:
|
||||
external_dirs += ['media/libvpx']
|
||||
|
||||
if CONFIG['MOZ_OGG']:
|
||||
|
32
configure.in
32
configure.in
@ -3967,9 +3967,8 @@ MOZ_SCTP=
|
||||
MOZ_MEDIA_PLUGINS=
|
||||
MOZ_MEDIA_NAVIGATOR=
|
||||
MOZ_OMX_PLUGIN=
|
||||
MOZ_VP8=
|
||||
MOZ_VP8_ERROR_CONCEALMENT=
|
||||
MOZ_VP8_ENCODER=1
|
||||
MOZ_VPX=
|
||||
MOZ_VPX_ERROR_CONCEALMENT=
|
||||
MOZ_WEBSPEECH=1
|
||||
VPX_AS=
|
||||
VPX_ASFLAGS=
|
||||
@ -5114,8 +5113,8 @@ if test -n "$MOZ_WEBRTC"; then
|
||||
dnl opt/production builds (via MOZ_CRASH())
|
||||
AC_DEFINE(MOZ_WEBRTC_ASSERT_ALWAYS)
|
||||
MOZ_RAW=1
|
||||
MOZ_VP8=1
|
||||
MOZ_VP8_ERROR_CONCEALMENT=1
|
||||
MOZ_VPX=1
|
||||
MOZ_VPX_ERROR_CONCEALMENT=1
|
||||
|
||||
dnl enable once Signaling lands
|
||||
MOZ_WEBRTC_SIGNALING=1
|
||||
@ -5228,7 +5227,7 @@ MOZ_ARG_DISABLE_BOOL(webm,
|
||||
|
||||
if test -n "$MOZ_WEBM"; then
|
||||
AC_DEFINE(MOZ_WEBM)
|
||||
MOZ_VP8=1
|
||||
MOZ_VPX=1
|
||||
fi;
|
||||
|
||||
dnl ========================================================
|
||||
@ -5364,13 +5363,10 @@ MOZ_ARG_WITH_BOOL(system-libvpx,
|
||||
MOZ_LIBVPX_CFLAGS=
|
||||
MOZ_LIBVPX_LIBS=
|
||||
|
||||
if test -n "$MOZ_VP8"; then
|
||||
AC_DEFINE(MOZ_VP8)
|
||||
if test -n "$MOZ_VP8_ERROR_CONCEALMENT" ; then
|
||||
AC_DEFINE(MOZ_VP8_ERROR_CONCEALMENT)
|
||||
fi
|
||||
if test -n "$MOZ_VP8_ENCODER" ; then
|
||||
AC_DEFINE(MOZ_VP8_ENCODER)
|
||||
if test -n "$MOZ_VPX"; then
|
||||
AC_DEFINE(MOZ_VPX)
|
||||
if test -n "$MOZ_VPX_ERROR_CONCEALMENT" ; then
|
||||
AC_DEFINE(MOZ_VPX_ERROR_CONCEALMENT)
|
||||
fi
|
||||
|
||||
if test -n "$MOZ_NATIVE_LIBVPX"; then
|
||||
@ -5402,7 +5398,7 @@ if test "$MOZ_WEBM" -o "$MOZ_OGG"; then
|
||||
fi
|
||||
fi
|
||||
|
||||
if test -n "$MOZ_VP8" -a -z "$MOZ_NATIVE_LIBVPX"; then
|
||||
if test -n "$MOZ_VPX" -a -z "$MOZ_NATIVE_LIBVPX"; then
|
||||
|
||||
dnl Detect if we can use an assembler to compile optimized assembly for libvpx.
|
||||
dnl We currently require yasm on all x86 platforms and require yasm 1.1.0 on Win32.
|
||||
@ -5467,8 +5463,7 @@ if test -n "$MOZ_VP8" -a -z "$MOZ_NATIVE_LIBVPX"; then
|
||||
AC_MSG_ERROR([yasm is a required build tool for this architecture when webm is enabled. You may either install yasm or --disable-webm (which disables the WebM video format). See https://developer.mozilla.org/en/YASM for more details.])
|
||||
fi
|
||||
|
||||
if test -n "$MOZ_VP8_ENCODER" -a \
|
||||
-z "$GNU_CC" -a -z "$INTEL_CC" -a -z "$CLANG_CC" ; then
|
||||
if test -z "$GNU_CC" -a -z "$INTEL_CC" -a -z "$CLANG_CC" ; then
|
||||
dnl We prefer to get asm offsets using inline assembler, which the above
|
||||
dnl compilers can do. When we're not using one of those, we have to fall
|
||||
dnl back to obj_int_extract, which reads them from a compiled object
|
||||
@ -8620,9 +8615,8 @@ AC_SUBST(MOZ_DIRECTSHOW)
|
||||
AC_SUBST(MOZ_MEDIA_PLUGINS)
|
||||
AC_SUBST(MOZ_APPLEMEDIA)
|
||||
AC_SUBST(MOZ_OMX_PLUGIN)
|
||||
AC_SUBST(MOZ_VP8_ERROR_CONCEALMENT)
|
||||
AC_SUBST(MOZ_VP8_ENCODER)
|
||||
AC_SUBST(MOZ_VP8)
|
||||
AC_SUBST(MOZ_VPX_ERROR_CONCEALMENT)
|
||||
AC_SUBST(MOZ_VPX)
|
||||
AC_SUBST(MOZ_OGG)
|
||||
AC_SUBST(VPX_AS)
|
||||
AC_SUBST(VPX_ASFLAGS)
|
||||
|
@ -29,7 +29,7 @@ nestegg_tstamp_scale
|
||||
nestegg_has_cues
|
||||
nestegg_sniff
|
||||
#endif
|
||||
#ifdef MOZ_VP8
|
||||
#ifdef MOZ_VPX
|
||||
#ifndef MOZ_NATIVE_LIBVPX
|
||||
vpx_codec_control_
|
||||
vpx_codec_dec_init_ver
|
||||
@ -42,10 +42,8 @@ vpx_codec_vp9_dx
|
||||
vpx_img_free
|
||||
vpx_codec_enc_config_set
|
||||
vpx_codec_enc_init_ver
|
||||
#ifdef MOZ_VP8_ENCODER
|
||||
vpx_codec_vp8_cx
|
||||
vpx_codec_vp9_cx
|
||||
#endif
|
||||
vpx_img_set_rect
|
||||
vpx_img_wrap
|
||||
vpx_codec_get_cx_data
|
||||
|
@ -22,10 +22,7 @@ CSRCS += cpu-features.c
|
||||
endif
|
||||
endif
|
||||
|
||||
ASM_OFFSETS = vpx_scale_asm_offsets.asm
|
||||
ifdef MOZ_VP8_ENCODER
|
||||
ASM_OFFSETS += vp8_asm_enc_offsets.asm
|
||||
endif
|
||||
ASM_OFFSETS = vpx_scale_asm_offsets.asm vp8_asm_enc_offsets.asm
|
||||
|
||||
|
||||
ifdef VPX_AS_CONVERSION
|
||||
@ -54,11 +51,7 @@ VPX_OIE_FORMAT := gas
|
||||
endif
|
||||
|
||||
GARBAGE += vpx_scale_asm_offsets.$(OBJ_SUFFIX) vpx_scale_asm_offsets.asm
|
||||
|
||||
ifdef MOZ_VP8_ENCODER
|
||||
|
||||
GARBAGE += vp8_asm_enc_offsets.$(OBJ_SUFFIX) vp8_asm_enc_offsets.asm
|
||||
endif
|
||||
|
||||
else
|
||||
|
||||
@ -82,8 +75,6 @@ vpx_scale_asm_offsets.asm: vpx_scale_asm_offsets.s
|
||||
|
||||
GARBAGE += vpx_scale_asm_offsets.s vpx_scale_asm_offsets.asm
|
||||
|
||||
ifdef MOZ_VP8_ENCODER
|
||||
|
||||
vp8_asm_enc_offsets.s: CFLAGS += -DINLINE_ASM
|
||||
|
||||
vp8_asm_enc_offsets.s: $(srcdir)/vp8/encoder/vp8_asm_enc_offsets.c
|
||||
@ -96,9 +87,6 @@ vp8_asm_enc_offsets.asm: vp8_asm_enc_offsets.s
|
||||
|
||||
GARBAGE += vp8_asm_enc_offsets.s vp8_asm_enc_offsets.asm
|
||||
|
||||
|
||||
endif
|
||||
|
||||
endif
|
||||
|
||||
EXTRA_MDDEPEND_FILES = vp8_asm_enc_offsets.s.pp vp8_asm_enc_offsets.$(OBJ_SUFFIX).pp vpx_scale_asm_offsets.s.pp vpx_scale_asm_offsets.$(OBJ_SUFFIX).pp
|
||||
@ -122,7 +110,7 @@ ifdef VPX_NEED_OBJ_INT_EXTRACT
|
||||
|
||||
# only for MSVC
|
||||
ifdef _MSC_VER
|
||||
NO_PROFILE_GUIDED_OPTIMIZE := vpx_scale_asm_offsets.c
|
||||
NO_PROFILE_GUIDED_OPTIMIZE := vpx_scale_asm_offsets.c vp8_asm_enc_offsets.c
|
||||
endif
|
||||
|
||||
vpx_scale_asm_offsets.asm: vpx_scale_asm_offsets.$(OBJ_SUFFIX) $(HOST_PROGRAM)
|
||||
@ -133,12 +121,6 @@ vpx_scale_asm_offsets.asm: vpx_scale_asm_offsets.$(OBJ_SUFFIX) $(HOST_PROGRAM)
|
||||
# It was generated solely so it could be parsed by obj_int_extract.
|
||||
OBJS := $(filter-out vpx_scale_asm_offsets.$(OBJ_SUFFIX),$(OBJS))
|
||||
|
||||
ifdef MOZ_VP8_ENCODER
|
||||
|
||||
ifdef _MSC_VER
|
||||
NO_PROFILE_GUIDED_OPTIMIZE += vp8_asm_enc_offsets.c
|
||||
endif
|
||||
|
||||
vp8_asm_enc_offsets.asm: vp8_asm_enc_offsets.$(OBJ_SUFFIX) $(HOST_PROGRAM)
|
||||
./$(HOST_PROGRAM) $(VPX_OIE_FORMAT) $< \
|
||||
$(if $(VPX_AS_CONVERSION),| $(VPX_AS_CONVERSION)) > $@
|
||||
@ -147,7 +129,6 @@ vp8_asm_enc_offsets.asm: vp8_asm_enc_offsets.$(OBJ_SUFFIX) $(HOST_PROGRAM)
|
||||
# It was generated solely so it could be parsed by obj_int_extract.
|
||||
OBJS := $(filter-out vp8_asm_enc_offsets.$(OBJ_SUFFIX),$(OBJS))
|
||||
|
||||
endif
|
||||
endif
|
||||
|
||||
# Workaround a bug of Sun Studio (CR 6963410)
|
||||
|
@ -16,47 +16,37 @@ if CONFIG['VPX_NEED_OBJ_INT_EXTRACT']:
|
||||
HOST_PROGRAM = 'host_obj_int_extract'
|
||||
|
||||
SOURCES += files['COMMON']
|
||||
SOURCES += files['ENCODER']
|
||||
|
||||
if CONFIG['MOZ_VP8_ERROR_CONCEALMENT']:
|
||||
if CONFIG['MOZ_VPX_ERROR_CONCEALMENT']:
|
||||
SOURCES += files['ERROR_CONCEALMENT']
|
||||
|
||||
if CONFIG['MOZ_VP8_ENCODER']:
|
||||
SOURCES += files['ENCODER']
|
||||
|
||||
#postproc is only enabled on x86 with asm
|
||||
if CONFIG['VPX_X86_ASM']:
|
||||
SOURCES += files['VP8_POSTPROC']
|
||||
|
||||
if CONFIG['VPX_X86_ASM'] and CONFIG['OS_TARGET'] == 'WINNT':
|
||||
SOURCES += [
|
||||
'vp8/encoder/vp8_asm_enc_offsets.c',
|
||||
'vpx_scale/vpx_scale_asm_offsets.c',
|
||||
]
|
||||
if CONFIG['MOZ_VP8_ENCODER']:
|
||||
SOURCES += [
|
||||
'vp8/encoder/vp8_asm_enc_offsets.c',
|
||||
]
|
||||
|
||||
if CONFIG['VPX_X86_ASM']:
|
||||
SOURCES += files['X86_ASM']
|
||||
SOURCES += files['X86_ASM_ENCODER']
|
||||
|
||||
if '64' in CONFIG['OS_TEST']:
|
||||
SOURCES += files['X86-64_ASM']
|
||||
SOURCES += files['X86-64_ASM_ENCODER']
|
||||
|
||||
# AVX2 only supported on
|
||||
# Darwin toolchain right now
|
||||
if CONFIG['OS_TARGET'] == 'Darwin':
|
||||
SOURCES += files['AVX2']
|
||||
|
||||
if CONFIG['VPX_X86_ASM'] and CONFIG['MOZ_VP8_ENCODER']:
|
||||
SOURCES += files['X86_ASM_ENCODER']
|
||||
if '64' in CONFIG['OS_TEST']:
|
||||
SOURCES += files['X86-64_ASM_ENCODER']
|
||||
#postproc is only enabled on x86 with asm
|
||||
SOURCES += files['VP8_POSTPROC']
|
||||
|
||||
arm_asm_files = []
|
||||
if CONFIG['VPX_ARM_ASM']:
|
||||
arm_asm_files += files['ARM_ASM']
|
||||
if CONFIG['MOZ_VP8_ENCODER']:
|
||||
arm_asm_files += files['ARM_ASM_ENCODER']
|
||||
arm_asm_files += files['ARM_ASM_ENCODER']
|
||||
|
||||
if CONFIG['VPX_AS_CONVERSION']:
|
||||
GENERATED_SOURCES += [ "%s.%s" % (f, CONFIG['VPX_ASM_SUFFIX'])
|
||||
@ -70,8 +60,7 @@ if CONFIG['VPX_ARM_ASM']:
|
||||
|
||||
# boolhuff_armv5te.asm defines the same functions as boolhuff.c instead of
|
||||
# using RTCD, so we have to make sure we only add one of the two.
|
||||
if CONFIG['MOZ_VP8_ENCODER'] \
|
||||
and 'vp8/encoder/arm/armv5te/boolhuff_armv5te.asm' not in arm_asm_files:
|
||||
if 'vp8/encoder/arm/armv5te/boolhuff_armv5te.asm' not in arm_asm_files:
|
||||
SOURCES += [
|
||||
'vp8/encoder/boolhuff.c',
|
||||
]
|
||||
|
@ -278,7 +278,10 @@ def prepare_upstream(prefix, commit=None):
|
||||
target_objdir = os.path.join(prefix, 'objdir', target)
|
||||
os.makedirs(target_objdir)
|
||||
os.chdir(target_objdir)
|
||||
configure = ['../../configure', '--target=%s' % target, '--disable-examples', '--disable-install-docs']
|
||||
configure = ['../../configure', '--target=%s' % target,
|
||||
'--disable-examples', '--disable-install-docs',
|
||||
'--enable-multi-res-encoding',
|
||||
]
|
||||
|
||||
if 'darwin9' in target:
|
||||
configure += ['--enable-pic']
|
||||
|
@ -40,17 +40,7 @@
|
||||
|
||||
/* Control error-concealment support using our own #define rather than
|
||||
hard-coding it. */
|
||||
#if defined(MOZ_VP8_ERROR_CONCEALMENT)
|
||||
#if defined(MOZ_VPX_ERROR_CONCEALMENT)
|
||||
#undef CONFIG_ERROR_CONCEALMENT
|
||||
#define CONFIG_ERROR_CONCEALMENT 1
|
||||
#endif
|
||||
|
||||
/* Control encoder support using our own #define rather than hard-coding it. */
|
||||
#if defined(MOZ_VP8_ENCODER)
|
||||
#undef CONFIG_VP8_ENCODER
|
||||
#undef CONFIG_ENCODERS
|
||||
#undef CONFIG_MULTI_RES_ENCODING
|
||||
#define CONFIG_VP8_ENCODER 1
|
||||
#define CONFIG_ENCODERS 1
|
||||
#define CONFIG_MULTI_RES_ENCODING 1
|
||||
#endif
|
||||
|
@ -74,7 +74,7 @@
|
||||
.equ CONFIG_POSTPROC_VISUALIZER , 0
|
||||
.equ CONFIG_OS_SUPPORT , 1
|
||||
.equ CONFIG_UNIT_TESTS , 0
|
||||
.equ CONFIG_MULTI_RES_ENCODING , 0
|
||||
.equ CONFIG_MULTI_RES_ENCODING , 1
|
||||
.equ CONFIG_TEMPORAL_DENOISING , 1
|
||||
.equ CONFIG_EXPERIMENTAL , 0
|
||||
.equ CONFIG_DECRYPT , 0
|
||||
|
@ -5,5 +5,5 @@
|
||||
/* tree. An additional intellectual property rights grant can be found */
|
||||
/* in the file PATENTS. All contributing project authors may */
|
||||
/* be found in the AUTHORS file in the root of the source tree. */
|
||||
static const char* const cfg = "--target=armv7-android-gcc --disable-examples --disable-install-docs --sdk-path=/opt/android-ndk-r9b/";
|
||||
static const char* const cfg = "--target=armv7-android-gcc --disable-examples --disable-install-docs --enable-multi-res-encoding --sdk-path=/opt/android-ndk-r9b/";
|
||||
const char *vpx_codec_build_config(void) {return cfg;}
|
||||
|
@ -83,7 +83,7 @@
|
||||
#define CONFIG_POSTPROC_VISUALIZER 0
|
||||
#define CONFIG_OS_SUPPORT 1
|
||||
#define CONFIG_UNIT_TESTS 0
|
||||
#define CONFIG_MULTI_RES_ENCODING 0
|
||||
#define CONFIG_MULTI_RES_ENCODING 1
|
||||
#define CONFIG_TEMPORAL_DENOISING 1
|
||||
#define CONFIG_EXPERIMENTAL 0
|
||||
#define CONFIG_DECRYPT 0
|
||||
|
@ -74,7 +74,7 @@
|
||||
.equ CONFIG_POSTPROC_VISUALIZER , 0
|
||||
.equ CONFIG_OS_SUPPORT , 1
|
||||
.equ CONFIG_UNIT_TESTS , 1
|
||||
.equ CONFIG_MULTI_RES_ENCODING , 0
|
||||
.equ CONFIG_MULTI_RES_ENCODING , 1
|
||||
.equ CONFIG_TEMPORAL_DENOISING , 1
|
||||
.equ CONFIG_EXPERIMENTAL , 0
|
||||
.equ CONFIG_DECRYPT , 0
|
||||
|
@ -5,5 +5,5 @@
|
||||
/* tree. An additional intellectual property rights grant can be found */
|
||||
/* in the file PATENTS. All contributing project authors may */
|
||||
/* be found in the AUTHORS file in the root of the source tree. */
|
||||
static const char* const cfg = "--target=generic-gnu --disable-examples --disable-install-docs";
|
||||
static const char* const cfg = "--target=generic-gnu --disable-examples --disable-install-docs --enable-multi-res-encoding";
|
||||
const char *vpx_codec_build_config(void) {return cfg;}
|
||||
|
@ -83,7 +83,7 @@
|
||||
#define CONFIG_POSTPROC_VISUALIZER 0
|
||||
#define CONFIG_OS_SUPPORT 1
|
||||
#define CONFIG_UNIT_TESTS 1
|
||||
#define CONFIG_MULTI_RES_ENCODING 0
|
||||
#define CONFIG_MULTI_RES_ENCODING 1
|
||||
#define CONFIG_TEMPORAL_DENOISING 1
|
||||
#define CONFIG_EXPERIMENTAL 0
|
||||
#define CONFIG_DECRYPT 0
|
||||
|
@ -71,7 +71,7 @@ CONFIG_SMALL equ 0
|
||||
CONFIG_POSTPROC_VISUALIZER equ 0
|
||||
CONFIG_OS_SUPPORT equ 1
|
||||
CONFIG_UNIT_TESTS equ 1
|
||||
CONFIG_MULTI_RES_ENCODING equ 0
|
||||
CONFIG_MULTI_RES_ENCODING equ 1
|
||||
CONFIG_TEMPORAL_DENOISING equ 1
|
||||
CONFIG_EXPERIMENTAL equ 0
|
||||
CONFIG_DECRYPT equ 0
|
||||
|
@ -5,5 +5,5 @@
|
||||
/* tree. An additional intellectual property rights grant can be found */
|
||||
/* in the file PATENTS. All contributing project authors may */
|
||||
/* be found in the AUTHORS file in the root of the source tree. */
|
||||
static const char* const cfg = "--target=x86-darwin9-gcc --disable-examples --disable-install-docs --enable-pic";
|
||||
static const char* const cfg = "--target=x86-darwin9-gcc --disable-examples --disable-install-docs --enable-multi-res-encoding --enable-pic";
|
||||
const char *vpx_codec_build_config(void) {return cfg;}
|
||||
|
@ -83,7 +83,7 @@
|
||||
#define CONFIG_POSTPROC_VISUALIZER 0
|
||||
#define CONFIG_OS_SUPPORT 1
|
||||
#define CONFIG_UNIT_TESTS 1
|
||||
#define CONFIG_MULTI_RES_ENCODING 0
|
||||
#define CONFIG_MULTI_RES_ENCODING 1
|
||||
#define CONFIG_TEMPORAL_DENOISING 1
|
||||
#define CONFIG_EXPERIMENTAL 0
|
||||
#define CONFIG_DECRYPT 0
|
||||
|
@ -71,7 +71,7 @@ CONFIG_SMALL equ 0
|
||||
CONFIG_POSTPROC_VISUALIZER equ 0
|
||||
CONFIG_OS_SUPPORT equ 1
|
||||
CONFIG_UNIT_TESTS equ 1
|
||||
CONFIG_MULTI_RES_ENCODING equ 0
|
||||
CONFIG_MULTI_RES_ENCODING equ 1
|
||||
CONFIG_TEMPORAL_DENOISING equ 1
|
||||
CONFIG_EXPERIMENTAL equ 0
|
||||
CONFIG_DECRYPT equ 0
|
||||
|
@ -5,5 +5,5 @@
|
||||
/* tree. An additional intellectual property rights grant can be found */
|
||||
/* in the file PATENTS. All contributing project authors may */
|
||||
/* be found in the AUTHORS file in the root of the source tree. */
|
||||
static const char* const cfg = "--target=x86-linux-gcc --disable-examples --disable-install-docs --enable-pic --disable-avx2 --disable-use-x86inc";
|
||||
static const char* const cfg = "--target=x86-linux-gcc --disable-examples --disable-install-docs --enable-multi-res-encoding --enable-pic --disable-avx2 --disable-use-x86inc";
|
||||
const char *vpx_codec_build_config(void) {return cfg;}
|
||||
|
@ -83,7 +83,7 @@
|
||||
#define CONFIG_POSTPROC_VISUALIZER 0
|
||||
#define CONFIG_OS_SUPPORT 1
|
||||
#define CONFIG_UNIT_TESTS 1
|
||||
#define CONFIG_MULTI_RES_ENCODING 0
|
||||
#define CONFIG_MULTI_RES_ENCODING 1
|
||||
#define CONFIG_TEMPORAL_DENOISING 1
|
||||
#define CONFIG_EXPERIMENTAL 0
|
||||
#define CONFIG_DECRYPT 0
|
||||
|
@ -71,7 +71,7 @@ CONFIG_SMALL equ 0
|
||||
CONFIG_POSTPROC_VISUALIZER equ 0
|
||||
CONFIG_OS_SUPPORT equ 1
|
||||
CONFIG_UNIT_TESTS equ 1
|
||||
CONFIG_MULTI_RES_ENCODING equ 0
|
||||
CONFIG_MULTI_RES_ENCODING equ 1
|
||||
CONFIG_TEMPORAL_DENOISING equ 1
|
||||
CONFIG_EXPERIMENTAL equ 0
|
||||
CONFIG_DECRYPT equ 0
|
||||
|
@ -5,5 +5,5 @@
|
||||
/* tree. An additional intellectual property rights grant can be found */
|
||||
/* in the file PATENTS. All contributing project authors may */
|
||||
/* be found in the AUTHORS file in the root of the source tree. */
|
||||
static const char* const cfg = "--target=x86-win32-vs8 --disable-examples --disable-install-docs";
|
||||
static const char* const cfg = "--target=x86-win32-vs8 --disable-examples --disable-install-docs --enable-multi-res-encoding";
|
||||
const char *vpx_codec_build_config(void) {return cfg;}
|
||||
|
@ -83,7 +83,7 @@
|
||||
#define CONFIG_POSTPROC_VISUALIZER 0
|
||||
#define CONFIG_OS_SUPPORT 1
|
||||
#define CONFIG_UNIT_TESTS 1
|
||||
#define CONFIG_MULTI_RES_ENCODING 0
|
||||
#define CONFIG_MULTI_RES_ENCODING 1
|
||||
#define CONFIG_TEMPORAL_DENOISING 1
|
||||
#define CONFIG_EXPERIMENTAL 0
|
||||
#define CONFIG_DECRYPT 0
|
||||
|
@ -71,7 +71,7 @@ CONFIG_SMALL equ 0
|
||||
CONFIG_POSTPROC_VISUALIZER equ 0
|
||||
CONFIG_OS_SUPPORT equ 1
|
||||
CONFIG_UNIT_TESTS equ 1
|
||||
CONFIG_MULTI_RES_ENCODING equ 0
|
||||
CONFIG_MULTI_RES_ENCODING equ 1
|
||||
CONFIG_TEMPORAL_DENOISING equ 1
|
||||
CONFIG_EXPERIMENTAL equ 0
|
||||
CONFIG_DECRYPT equ 0
|
||||
|
@ -5,5 +5,5 @@
|
||||
/* tree. An additional intellectual property rights grant can be found */
|
||||
/* in the file PATENTS. All contributing project authors may */
|
||||
/* be found in the AUTHORS file in the root of the source tree. */
|
||||
static const char* const cfg = "--target=x86_64-darwin9-gcc --disable-examples --disable-install-docs --enable-pic";
|
||||
static const char* const cfg = "--target=x86_64-darwin9-gcc --disable-examples --disable-install-docs --enable-multi-res-encoding --enable-pic";
|
||||
const char *vpx_codec_build_config(void) {return cfg;}
|
||||
|
@ -83,7 +83,7 @@
|
||||
#define CONFIG_POSTPROC_VISUALIZER 0
|
||||
#define CONFIG_OS_SUPPORT 1
|
||||
#define CONFIG_UNIT_TESTS 1
|
||||
#define CONFIG_MULTI_RES_ENCODING 0
|
||||
#define CONFIG_MULTI_RES_ENCODING 1
|
||||
#define CONFIG_TEMPORAL_DENOISING 1
|
||||
#define CONFIG_EXPERIMENTAL 0
|
||||
#define CONFIG_DECRYPT 0
|
||||
|
@ -71,7 +71,7 @@ CONFIG_SMALL equ 0
|
||||
CONFIG_POSTPROC_VISUALIZER equ 0
|
||||
CONFIG_OS_SUPPORT equ 1
|
||||
CONFIG_UNIT_TESTS equ 1
|
||||
CONFIG_MULTI_RES_ENCODING equ 0
|
||||
CONFIG_MULTI_RES_ENCODING equ 1
|
||||
CONFIG_TEMPORAL_DENOISING equ 1
|
||||
CONFIG_EXPERIMENTAL equ 0
|
||||
CONFIG_DECRYPT equ 0
|
||||
|
@ -5,5 +5,5 @@
|
||||
/* tree. An additional intellectual property rights grant can be found */
|
||||
/* in the file PATENTS. All contributing project authors may */
|
||||
/* be found in the AUTHORS file in the root of the source tree. */
|
||||
static const char* const cfg = "--target=x86_64-linux-gcc --disable-examples --disable-install-docs --enable-pic --disable-avx2";
|
||||
static const char* const cfg = "--target=x86_64-linux-gcc --disable-examples --disable-install-docs --enable-multi-res-encoding --enable-pic --disable-avx2";
|
||||
const char *vpx_codec_build_config(void) {return cfg;}
|
||||
|
@ -83,7 +83,7 @@
|
||||
#define CONFIG_POSTPROC_VISUALIZER 0
|
||||
#define CONFIG_OS_SUPPORT 1
|
||||
#define CONFIG_UNIT_TESTS 1
|
||||
#define CONFIG_MULTI_RES_ENCODING 0
|
||||
#define CONFIG_MULTI_RES_ENCODING 1
|
||||
#define CONFIG_TEMPORAL_DENOISING 1
|
||||
#define CONFIG_EXPERIMENTAL 0
|
||||
#define CONFIG_DECRYPT 0
|
||||
|
@ -71,7 +71,7 @@ CONFIG_SMALL equ 0
|
||||
CONFIG_POSTPROC_VISUALIZER equ 0
|
||||
CONFIG_OS_SUPPORT equ 1
|
||||
CONFIG_UNIT_TESTS equ 1
|
||||
CONFIG_MULTI_RES_ENCODING equ 0
|
||||
CONFIG_MULTI_RES_ENCODING equ 1
|
||||
CONFIG_TEMPORAL_DENOISING equ 1
|
||||
CONFIG_EXPERIMENTAL equ 0
|
||||
CONFIG_DECRYPT equ 0
|
||||
|
@ -5,5 +5,5 @@
|
||||
/* tree. An additional intellectual property rights grant can be found */
|
||||
/* in the file PATENTS. All contributing project authors may */
|
||||
/* be found in the AUTHORS file in the root of the source tree. */
|
||||
static const char* const cfg = "--target=x86_64-win64-vs8 --disable-examples --disable-install-docs";
|
||||
static const char* const cfg = "--target=x86_64-win64-vs8 --disable-examples --disable-install-docs --enable-multi-res-encoding";
|
||||
const char *vpx_codec_build_config(void) {return cfg;}
|
||||
|
@ -83,7 +83,7 @@
|
||||
#define CONFIG_POSTPROC_VISUALIZER 0
|
||||
#define CONFIG_OS_SUPPORT 1
|
||||
#define CONFIG_UNIT_TESTS 1
|
||||
#define CONFIG_MULTI_RES_ENCODING 0
|
||||
#define CONFIG_MULTI_RES_ENCODING 1
|
||||
#define CONFIG_TEMPORAL_DENOISING 1
|
||||
#define CONFIG_EXPERIMENTAL 0
|
||||
#define CONFIG_DECRYPT 0
|
||||
|
Loading…
Reference in New Issue
Block a user