2010-05-18 19:58:33 +04:00
|
|
|
#!/bin/bash
|
|
|
|
##
|
2010-05-28 18:11:58 +04:00
|
|
|
## configure
|
2010-05-18 19:58:33 +04:00
|
|
|
##
|
2010-05-28 18:11:58 +04:00
|
|
|
## This script is the front-end to the build system. It provides a similar
|
|
|
|
## interface to standard configure scripts with some extra bits for dealing
|
|
|
|
## with toolchains that differ from the standard POSIX interface and
|
|
|
|
## for extracting subsets of the source tree. In theory, reusable parts
|
|
|
|
## of this script were intended to live in build/make/configure.sh,
|
|
|
|
## but in practice, the line is pretty blurry.
|
|
|
|
##
|
|
|
|
## This build system is based in part on the FFmpeg configure script.
|
2010-05-18 19:58:33 +04:00
|
|
|
##
|
|
|
|
|
|
|
|
#source_path="`dirname \"$0\"`"
|
|
|
|
source_path=${0%/*}
|
|
|
|
. "${source_path}/build/make/configure.sh"
|
|
|
|
|
|
|
|
show_help(){
|
|
|
|
show_help_pre
|
|
|
|
cat << EOF
|
|
|
|
Advanced options:
|
2012-10-10 20:16:37 +04:00
|
|
|
${toggle_libs} libraries
|
|
|
|
${toggle_examples} examples
|
|
|
|
${toggle_docs} documentation
|
|
|
|
${toggle_unit_tests} unit tests
|
2010-05-18 19:58:33 +04:00
|
|
|
--libc=PATH path to alternate libc
|
2010-10-05 21:15:08 +04:00
|
|
|
--as={yasm|nasm|auto} use specified assembler [auto, yasm preferred]
|
2012-01-06 23:50:05 +04:00
|
|
|
--sdk-path=PATH path to root of sdk (iOS, android builds only)
|
2010-05-18 19:58:33 +04:00
|
|
|
${toggle_fast_unaligned} don't use unaligned accesses, even when
|
|
|
|
supported by hardware [auto]
|
|
|
|
${toggle_codec_srcs} in/exclude codec library source code
|
|
|
|
${toggle_debug_libs} in/exclude debug version of libraries
|
|
|
|
${toggle_md5} support for output of checksum data
|
|
|
|
${toggle_static_msvcrt} use static MSVCRT (VS builds only)
|
|
|
|
${toggle_vp8} VP8 codec support
|
2012-11-01 22:09:58 +04:00
|
|
|
${toggle_vp9} VP9 codec support
|
2011-04-29 20:37:59 +04:00
|
|
|
${toggle_internal_stats} output of encoder internal stats for debug, if supported (encoders)
|
2010-05-18 19:58:33 +04:00
|
|
|
${toggle_mem_tracker} track memory usage
|
|
|
|
${toggle_postproc} postprocessing
|
2011-10-25 23:14:16 +04:00
|
|
|
${toggle_multithread} multithreaded encoding and decoding
|
2010-05-18 19:58:33 +04:00
|
|
|
${toggle_spatial_resampling} spatial sampling (scaling) support
|
|
|
|
${toggle_realtime_only} enable this option while building for real-time encoding
|
2012-02-09 14:37:03 +04:00
|
|
|
${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding
|
2011-05-02 17:30:51 +04:00
|
|
|
${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses
|
2010-05-18 19:58:33 +04:00
|
|
|
${toggle_runtime_cpu_detect} runtime cpu detection
|
2010-06-03 18:29:04 +04:00
|
|
|
${toggle_shared} shared library support
|
2011-07-26 02:40:36 +04:00
|
|
|
${toggle_static} static library support
|
2010-09-21 18:06:41 +04:00
|
|
|
${toggle_small} favor smaller size over speed
|
2010-11-05 02:03:36 +03:00
|
|
|
${toggle_postproc_visualizer} macro block / block level visualizers
|
2011-10-25 23:14:16 +04:00
|
|
|
${toggle_multi_res_encoding} enable multiple-resolution encoding
|
2012-03-06 13:48:18 +04:00
|
|
|
${toggle_temporal_denoising} enable temporal denoising and disable the spatial denoiser
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
Codecs:
|
|
|
|
Codecs can be selectively enabled or disabled individually, or by family:
|
|
|
|
--disable-<codec>
|
|
|
|
is equivalent to:
|
|
|
|
--disable-<codec>-encoder
|
|
|
|
--disable-<codec>-decoder
|
|
|
|
|
|
|
|
Codecs available in this distribution:
|
|
|
|
EOF
|
|
|
|
#restore editor state '
|
|
|
|
|
|
|
|
local family;
|
|
|
|
local last_family;
|
|
|
|
local c;
|
|
|
|
local str;
|
|
|
|
for c in ${CODECS}; do
|
|
|
|
family=${c%_*}
|
|
|
|
if [ "${family}" != "${last_family}" ]; then
|
|
|
|
[ -z "${str}" ] || echo "${str}"
|
|
|
|
str="$(printf ' %10s:' ${family})"
|
|
|
|
fi
|
|
|
|
str="${str} $(printf '%10s' ${c#*_})"
|
|
|
|
last_family=${family}
|
|
|
|
done
|
|
|
|
echo "${str}"
|
|
|
|
show_help_post
|
|
|
|
}
|
|
|
|
|
|
|
|
##
|
|
|
|
## BEGIN APPLICATION SPECIFIC CONFIGURATION
|
|
|
|
##
|
|
|
|
|
|
|
|
# all_platforms is a list of all supported target platforms. Maintain
|
|
|
|
# alphabetically by architecture, generic-gnu last.
|
2012-01-06 23:50:05 +04:00
|
|
|
all_platforms="${all_platforms} armv5te-android-gcc"
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} armv5te-linux-rvct"
|
|
|
|
all_platforms="${all_platforms} armv5te-linux-gcc"
|
2011-01-24 12:21:40 +03:00
|
|
|
all_platforms="${all_platforms} armv5te-none-rvct"
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} armv6-darwin-gcc"
|
|
|
|
all_platforms="${all_platforms} armv6-linux-rvct"
|
|
|
|
all_platforms="${all_platforms} armv6-linux-gcc"
|
2011-01-24 12:21:40 +03:00
|
|
|
all_platforms="${all_platforms} armv6-none-rvct"
|
2012-01-06 23:50:05 +04:00
|
|
|
all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8
|
|
|
|
all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8
|
|
|
|
all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8
|
2011-01-24 12:21:40 +03:00
|
|
|
all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} mips32-linux-gcc"
|
|
|
|
all_platforms="${all_platforms} ppc32-darwin8-gcc"
|
|
|
|
all_platforms="${all_platforms} ppc32-darwin9-gcc"
|
2010-09-21 22:56:42 +04:00
|
|
|
all_platforms="${all_platforms} ppc32-linux-gcc"
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} ppc64-darwin8-gcc"
|
|
|
|
all_platforms="${all_platforms} ppc64-darwin9-gcc"
|
|
|
|
all_platforms="${all_platforms} ppc64-linux-gcc"
|
2010-09-30 23:36:00 +04:00
|
|
|
all_platforms="${all_platforms} sparc-solaris-gcc"
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} x86-darwin8-gcc"
|
|
|
|
all_platforms="${all_platforms} x86-darwin8-icc"
|
|
|
|
all_platforms="${all_platforms} x86-darwin9-gcc"
|
|
|
|
all_platforms="${all_platforms} x86-darwin9-icc"
|
2011-10-14 23:06:24 +04:00
|
|
|
all_platforms="${all_platforms} x86-darwin10-gcc"
|
2012-04-27 22:40:04 +04:00
|
|
|
all_platforms="${all_platforms} x86-darwin11-gcc"
|
|
|
|
all_platforms="${all_platforms} x86-darwin12-gcc"
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} x86-linux-gcc"
|
|
|
|
all_platforms="${all_platforms} x86-linux-icc"
|
2012-02-03 08:31:11 +04:00
|
|
|
all_platforms="${all_platforms} x86-os2-gcc"
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} x86-solaris-gcc"
|
|
|
|
all_platforms="${all_platforms} x86-win32-gcc"
|
|
|
|
all_platforms="${all_platforms} x86-win32-vs7"
|
|
|
|
all_platforms="${all_platforms} x86-win32-vs8"
|
2010-07-22 21:34:25 +04:00
|
|
|
all_platforms="${all_platforms} x86-win32-vs9"
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} x86_64-darwin9-gcc"
|
2010-11-16 22:52:05 +03:00
|
|
|
all_platforms="${all_platforms} x86_64-darwin10-gcc"
|
2012-08-07 02:05:24 +04:00
|
|
|
all_platforms="${all_platforms} x86_64-darwin11-gcc"
|
2012-04-27 22:40:04 +04:00
|
|
|
all_platforms="${all_platforms} x86_64-darwin12-gcc"
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} x86_64-linux-gcc"
|
2010-06-17 21:34:19 +04:00
|
|
|
all_platforms="${all_platforms} x86_64-linux-icc"
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} x86_64-solaris-gcc"
|
2011-11-12 07:45:44 +04:00
|
|
|
all_platforms="${all_platforms} x86_64-win64-gcc"
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} x86_64-win64-vs8"
|
2010-07-22 21:34:25 +04:00
|
|
|
all_platforms="${all_platforms} x86_64-win64-vs9"
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} universal-darwin8-gcc"
|
|
|
|
all_platforms="${all_platforms} universal-darwin9-gcc"
|
2012-04-27 22:40:04 +04:00
|
|
|
all_platforms="${all_platforms} universal-darwin10-gcc"
|
|
|
|
all_platforms="${all_platforms} universal-darwin11-gcc"
|
|
|
|
all_platforms="${all_platforms} universal-darwin12-gcc"
|
2010-05-18 19:58:33 +04:00
|
|
|
all_platforms="${all_platforms} generic-gnu"
|
|
|
|
|
|
|
|
# all_targets is a list of all targets that can be configured
|
|
|
|
# note that these should be in dependency order for now.
|
|
|
|
all_targets="libs examples docs"
|
|
|
|
|
|
|
|
# all targets available are enabled, by default.
|
|
|
|
for t in ${all_targets}; do
|
|
|
|
[ -f ${source_path}/${t}.mk ] && enable ${t}
|
|
|
|
done
|
|
|
|
|
|
|
|
# check installed doxygen version
|
|
|
|
doxy_version=$(doxygen --version 2>/dev/null)
|
|
|
|
doxy_major=${doxy_version%%.*}
|
|
|
|
if [ ${doxy_major:-0} -ge 1 ]; then
|
|
|
|
doxy_version=${doxy_version#*.}
|
|
|
|
doxy_minor=${doxy_version%%.*}
|
|
|
|
doxy_patch=${doxy_version##*.}
|
|
|
|
|
|
|
|
[ $doxy_major -gt 1 ] && enable doxygen
|
|
|
|
[ $doxy_minor -gt 5 ] && enable doxygen
|
|
|
|
[ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable doxygen
|
|
|
|
fi
|
|
|
|
|
2010-05-24 18:16:44 +04:00
|
|
|
# install everything except the sources, by default. sources will have
|
|
|
|
# to be enabled when doing dist builds, since that's no longer a common
|
|
|
|
# case.
|
2010-05-18 19:58:33 +04:00
|
|
|
enabled doxygen && php -v >/dev/null 2>&1 && enable install_docs
|
|
|
|
enable install_bins
|
|
|
|
enable install_libs
|
|
|
|
|
2011-07-26 02:40:36 +04:00
|
|
|
enable static
|
2010-05-18 19:58:33 +04:00
|
|
|
enable optimizations
|
|
|
|
enable fast_unaligned #allow unaligned accesses, if supported by hw
|
|
|
|
enable md5
|
|
|
|
enable spatial_resampling
|
|
|
|
enable multithread
|
2011-01-24 12:21:40 +03:00
|
|
|
enable os_support
|
2012-03-06 13:48:18 +04:00
|
|
|
enable temporal_denoising
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
[ -d ${source_path}/../include ] && enable alt_tree_layout
|
2012-11-07 04:59:01 +04:00
|
|
|
for d in vp8 vp9; do
|
2010-05-18 19:58:33 +04:00
|
|
|
[ -d ${source_path}/${d} ] && disable alt_tree_layout;
|
|
|
|
done
|
|
|
|
|
|
|
|
if ! enabled alt_tree_layout; then
|
|
|
|
# development environment
|
|
|
|
[ -d ${source_path}/vp8 ] && CODECS="${CODECS} vp8_encoder vp8_decoder"
|
2012-11-01 22:09:58 +04:00
|
|
|
[ -d ${source_path}/vp9 ] && CODECS="${CODECS} vp9_encoder vp9_decoder"
|
2010-05-18 19:58:33 +04:00
|
|
|
else
|
|
|
|
# customer environment
|
2010-05-24 19:39:59 +04:00
|
|
|
[ -f ${source_path}/../include/vpx/vp8cx.h ] && CODECS="${CODECS} vp8_encoder"
|
|
|
|
[ -f ${source_path}/../include/vpx/vp8dx.h ] && CODECS="${CODECS} vp8_decoder"
|
2012-11-07 04:59:01 +04:00
|
|
|
[ -f ${source_path}/../include/vpx/vp9cx.h ] && CODECS="${CODECS} vp9_encoder"
|
|
|
|
[ -f ${source_path}/../include/vpx/vp9dx.h ] && CODECS="${CODECS} vp9_decoder"
|
2012-04-03 02:08:18 +04:00
|
|
|
[ -f ${source_path}/../include/vpx/vp8cx.h ] || disable vp8_encoder
|
|
|
|
[ -f ${source_path}/../include/vpx/vp8dx.h ] || disable vp8_decoder
|
2012-11-07 04:59:01 +04:00
|
|
|
[ -f ${source_path}/../include/vpx/vp9cx.h ] || disable vp9_encoder
|
|
|
|
[ -f ${source_path}/../include/vpx/vp9dx.h ] || disable vp9_decoder
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
[ -f ${source_path}/../lib/*/*mt.lib ] && soft_enable static_msvcrt
|
|
|
|
fi
|
|
|
|
|
|
|
|
CODECS="$(echo ${CODECS} | tr ' ' '\n')"
|
|
|
|
CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)"
|
|
|
|
|
|
|
|
ARCH_LIST="
|
|
|
|
arm
|
|
|
|
mips
|
|
|
|
x86
|
|
|
|
x86_64
|
|
|
|
ppc32
|
|
|
|
ppc64
|
|
|
|
"
|
|
|
|
ARCH_EXT_LIST="
|
2012-01-20 03:18:31 +04:00
|
|
|
edsp
|
|
|
|
media
|
|
|
|
neon
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
mips32
|
2012-04-11 20:53:15 +04:00
|
|
|
dspr2
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
mmx
|
|
|
|
sse
|
|
|
|
sse2
|
|
|
|
sse3
|
|
|
|
ssse3
|
2010-10-27 16:45:24 +04:00
|
|
|
sse4_1
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
altivec
|
|
|
|
"
|
|
|
|
HAVE_LIST="
|
|
|
|
${ARCH_EXT_LIST}
|
|
|
|
vpx_ports
|
|
|
|
stdint_h
|
|
|
|
alt_tree_layout
|
|
|
|
pthread_h
|
|
|
|
sys_mman_h
|
2011-03-25 13:53:03 +03:00
|
|
|
unistd_h
|
2010-05-18 19:58:33 +04:00
|
|
|
"
|
2010-06-01 19:14:25 +04:00
|
|
|
EXPERIMENT_LIST="
|
2010-11-16 22:38:40 +03:00
|
|
|
csm
|
2012-02-29 05:12:08 +04:00
|
|
|
comp_intra_pred
|
2012-04-07 03:38:34 +04:00
|
|
|
superblocks
|
2012-06-26 03:23:58 +04:00
|
|
|
pred_filter
|
Add lossless compression mode.
This commit adds lossless compression capability to the experimental
branch. The lossless experiment can be enabled using --enable-lossless
in configure. When the experiment is enabled, the encoder will use
lossless compression mode by command line option --lossless, and the
decoder automatically recognizes a losslessly encoded clip and decodes
accordingly.
To achieve the lossless coding, this commit has changed the following:
1. To encode at lossless mode, encoder forces the use of unit
quantizer, i.e, Q 0, where effective quantization is 1. Encoder also
disables the usage of 8x8 transform and allows only 4x4 transform;
2. At Q 0, the first order 4x4 DCT/IDCT have been switched over
to a pair of forward and inverse Walsh-Hadamard Transform
(http://goo.gl/EIsfy), with proper scaling applied to match the range
of the original 4x4 DCT/IDCT pair;
3. At Q 0, the second order remains to use the previous
walsh-hadamard transform pair. However, to maintain the reversibility
in second order transform at Q 0, scaling down is applied to first
order DC coefficients prior to forward transform, and scaling up is
applied to the second order output prior to quantization. Symmetric
upscaling and downscaling are added around inverse second order
transform;
4. At lossless mode, encoder also disables a number of minor
features to ensure no loss is introduced, these features includes:
a. Trellis quantization optimization
b. Loop filtering
c. Aggressive zero-binning, rounding and zero-bin boosting
d. Mode based zero-bin boosting
Lossless coding test was performed on all clips within the derf set,
to verify that the commit has achieved lossless compression for all
clips. The average compression ratio is around 2.57 to 1.
(http://goo.gl/dEShs)
Change-Id: Ia3aba7dd09df40dd590f93b9aba134defbc64e34
2012-06-14 06:03:31 +04:00
|
|
|
lossless
|
2012-10-30 20:43:24 +04:00
|
|
|
subpelrefmv
|
2012-08-24 18:44:01 +04:00
|
|
|
new_mvref
|
2012-10-30 08:15:42 +04:00
|
|
|
implicit_segmentation
|
2012-10-10 00:19:15 +04:00
|
|
|
newbintramodes
|
2012-11-07 18:50:25 +04:00
|
|
|
comp_interintra_pred
|
2010-06-01 19:14:25 +04:00
|
|
|
"
|
2010-05-18 19:58:33 +04:00
|
|
|
CONFIG_LIST="
|
|
|
|
external_build
|
|
|
|
install_docs
|
|
|
|
install_bins
|
|
|
|
install_libs
|
|
|
|
install_srcs
|
|
|
|
debug
|
|
|
|
gprof
|
|
|
|
gcov
|
|
|
|
rvct
|
|
|
|
gcc
|
|
|
|
msvs
|
|
|
|
pic
|
|
|
|
big_endian
|
|
|
|
|
|
|
|
codec_srcs
|
|
|
|
debug_libs
|
|
|
|
fast_unaligned
|
|
|
|
mem_manager
|
|
|
|
mem_tracker
|
|
|
|
mem_checks
|
|
|
|
md5
|
|
|
|
|
|
|
|
dequant_tokens
|
|
|
|
dc_recon
|
|
|
|
runtime_cpu_detect
|
|
|
|
postproc
|
|
|
|
multithread
|
2011-04-29 20:37:59 +04:00
|
|
|
internal_stats
|
2010-05-18 19:58:33 +04:00
|
|
|
${CODECS}
|
|
|
|
${CODEC_FAMILIES}
|
|
|
|
encoders
|
|
|
|
decoders
|
|
|
|
static_msvcrt
|
|
|
|
spatial_resampling
|
|
|
|
realtime_only
|
2012-02-09 14:37:03 +04:00
|
|
|
onthefly_bitpacking
|
2011-05-02 17:30:51 +04:00
|
|
|
error_concealment
|
2010-06-03 18:29:04 +04:00
|
|
|
shared
|
2011-07-26 02:40:36 +04:00
|
|
|
static
|
2010-09-21 18:06:41 +04:00
|
|
|
small
|
2010-11-05 02:03:36 +03:00
|
|
|
postproc_visualizer
|
2011-01-24 12:21:40 +03:00
|
|
|
os_support
|
2012-05-03 01:25:58 +04:00
|
|
|
unit_tests
|
2011-10-25 23:14:16 +04:00
|
|
|
multi_res_encoding
|
2012-03-06 13:48:18 +04:00
|
|
|
temporal_denoising
|
2010-06-01 19:14:25 +04:00
|
|
|
experimental
|
|
|
|
${EXPERIMENT_LIST}
|
2010-05-18 19:58:33 +04:00
|
|
|
"
|
|
|
|
CMDLINE_SELECT="
|
|
|
|
extra_warnings
|
|
|
|
werror
|
|
|
|
install_docs
|
|
|
|
install_bins
|
|
|
|
install_libs
|
|
|
|
install_srcs
|
|
|
|
debug
|
|
|
|
gprof
|
|
|
|
gcov
|
|
|
|
pic
|
|
|
|
optimizations
|
|
|
|
ccache
|
|
|
|
runtime_cpu_detect
|
|
|
|
|
|
|
|
libs
|
|
|
|
examples
|
2012-10-10 20:16:37 +04:00
|
|
|
docs
|
2010-05-18 19:58:33 +04:00
|
|
|
libc
|
2010-10-05 21:15:08 +04:00
|
|
|
as
|
2010-05-18 19:58:33 +04:00
|
|
|
fast_unaligned
|
|
|
|
codec_srcs
|
|
|
|
debug_libs
|
|
|
|
md5
|
|
|
|
|
|
|
|
dequant_tokens
|
|
|
|
dc_recon
|
|
|
|
postproc
|
|
|
|
multithread
|
2011-04-29 20:37:59 +04:00
|
|
|
internal_stats
|
2010-05-18 19:58:33 +04:00
|
|
|
${CODECS}
|
|
|
|
${CODEC_FAMILIES}
|
|
|
|
static_msvcrt
|
|
|
|
mem_tracker
|
|
|
|
spatial_resampling
|
|
|
|
realtime_only
|
2012-02-09 14:37:03 +04:00
|
|
|
onthefly_bitpacking
|
2011-05-02 17:30:51 +04:00
|
|
|
error_concealment
|
2010-06-03 18:29:04 +04:00
|
|
|
shared
|
2011-07-26 02:40:36 +04:00
|
|
|
static
|
2010-09-21 18:06:41 +04:00
|
|
|
small
|
2010-11-05 02:03:36 +03:00
|
|
|
postproc_visualizer
|
2012-05-03 01:25:58 +04:00
|
|
|
unit_tests
|
2011-10-25 23:14:16 +04:00
|
|
|
multi_res_encoding
|
2012-03-06 13:48:18 +04:00
|
|
|
temporal_denoising
|
2012-05-11 19:08:12 +04:00
|
|
|
experimental
|
2010-05-18 19:58:33 +04:00
|
|
|
"
|
|
|
|
|
|
|
|
process_cmdline() {
|
|
|
|
for opt do
|
|
|
|
optval="${opt#*=}"
|
|
|
|
case "$opt" in
|
|
|
|
--disable-codecs) for c in ${CODECS}; do disable $c; done ;;
|
2010-06-01 19:14:25 +04:00
|
|
|
--enable-?*|--disable-?*)
|
|
|
|
eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
|
|
|
|
if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then
|
|
|
|
if enabled experimental; then
|
|
|
|
$action $option
|
|
|
|
else
|
|
|
|
log_echo "Ignoring $opt -- not in experimental mode."
|
|
|
|
fi
|
|
|
|
else
|
2011-06-23 02:07:04 +04:00
|
|
|
process_common_cmdline $opt
|
2010-06-01 19:14:25 +04:00
|
|
|
fi
|
|
|
|
;;
|
2012-05-03 01:25:58 +04:00
|
|
|
*) process_common_cmdline "$opt"
|
2011-06-23 02:07:04 +04:00
|
|
|
;;
|
2010-05-18 19:58:33 +04:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
post_process_cmdline() {
|
|
|
|
local c
|
|
|
|
|
|
|
|
# If the codec family is disabled, disable all components of that family.
|
|
|
|
# If the codec family is enabled, enable all components of that family.
|
|
|
|
log_echo "Configuring selected codecs"
|
|
|
|
for c in ${CODECS}; do
|
|
|
|
disabled ${c%%_*} && disable ${c}
|
|
|
|
enabled ${c%%_*} && enable ${c}
|
|
|
|
done
|
|
|
|
|
|
|
|
# Enable all detected codecs, if they haven't been disabled
|
|
|
|
for c in ${CODECS}; do soft_enable $c; done
|
|
|
|
|
|
|
|
# Enable the codec family if any component of that family is enabled
|
|
|
|
for c in ${CODECS}; do
|
|
|
|
enabled $c && enable ${c%_*}
|
|
|
|
done
|
|
|
|
|
|
|
|
# Set the {en,de}coders variable if any algorithm in that class is enabled
|
|
|
|
for c in ${CODECS}; do
|
|
|
|
enabled ${c} && enable ${c##*_}s
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
process_targets() {
|
|
|
|
enabled child || write_common_config_banner
|
|
|
|
enabled universal || write_common_target_config_h ${BUILD_PFX}vpx_config.h
|
|
|
|
|
|
|
|
# TODO: add host tools target (obj_int_extract, etc)
|
|
|
|
|
|
|
|
# For fat binaries, call configure recursively to configure for each
|
|
|
|
# binary architecture to be included.
|
|
|
|
if enabled universal; then
|
|
|
|
# Call configure (ourselves) for each subarchitecture
|
|
|
|
for arch in $fat_bin_archs; do
|
|
|
|
BUILD_PFX=${arch}/ toolchain=${arch} $self --child $cmdline_args || exit $?
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The write_common_config (config.mk) logic is deferred until after the
|
|
|
|
# recursive calls to configure complete, becuase we want our universal
|
|
|
|
# targets to be executed last.
|
|
|
|
write_common_config_targets
|
|
|
|
enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk
|
|
|
|
|
|
|
|
# Calculate the default distribution name, based on the enabled features
|
|
|
|
local cf
|
|
|
|
local DIST_DIR=vpx
|
|
|
|
for cf in $CODEC_FAMILIES; do
|
|
|
|
if enabled ${cf}_encoder && enabled ${cf}_decoder; then
|
|
|
|
DIST_DIR="${DIST_DIR}-${cf}"
|
|
|
|
elif enabled ${cf}_encoder; then
|
|
|
|
DIST_DIR="${DIST_DIR}-${cf}cx"
|
|
|
|
elif enabled ${cf}_decoder; then
|
|
|
|
DIST_DIR="${DIST_DIR}-${cf}dx"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
|
|
|
|
enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
|
|
|
|
! enabled postproc && DIST_DIR="${DIST_DIR}-nopost"
|
|
|
|
! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
|
|
|
|
! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
|
|
|
|
DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
|
|
|
|
case "${tgt_os}" in
|
|
|
|
win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
|
|
|
|
DIST_DIR="${DIST_DIR}-${tgt_cc}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
if [ -f "${source_path}/build/make/version.sh" ]; then
|
|
|
|
local ver=`"$source_path/build/make/version.sh" --bare $source_path`
|
|
|
|
DIST_DIR="${DIST_DIR}-${ver}"
|
2011-03-28 22:36:53 +04:00
|
|
|
VERSION_STRING=${ver}
|
2010-06-03 18:29:04 +04:00
|
|
|
ver=${ver%%-*}
|
|
|
|
VERSION_PATCH=${ver##*.}
|
|
|
|
ver=${ver%.*}
|
|
|
|
VERSION_MINOR=${ver##*.}
|
|
|
|
ver=${ver#v}
|
|
|
|
VERSION_MAJOR=${ver%.*}
|
2010-05-18 19:58:33 +04:00
|
|
|
fi
|
2010-05-24 18:16:44 +04:00
|
|
|
enabled child || cat <<EOF >> config.mk
|
2011-03-28 23:04:51 +04:00
|
|
|
|
|
|
|
PREFIX=${prefix}
|
2010-05-24 18:16:44 +04:00
|
|
|
ifeq (\$(MAKECMDGOALS),dist)
|
2010-05-26 23:57:42 +04:00
|
|
|
DIST_DIR?=${DIST_DIR}
|
2010-05-24 18:16:44 +04:00
|
|
|
else
|
2010-05-26 23:57:42 +04:00
|
|
|
DIST_DIR?=\$(DESTDIR)${prefix}
|
2010-05-24 18:16:44 +04:00
|
|
|
endif
|
2010-05-26 23:57:42 +04:00
|
|
|
LIBSUBDIR=${libdir##${prefix}/}
|
2010-06-03 18:29:04 +04:00
|
|
|
|
2011-03-28 22:36:53 +04:00
|
|
|
VERSION_STRING=${VERSION_STRING}
|
|
|
|
|
2010-06-03 18:29:04 +04:00
|
|
|
VERSION_MAJOR=${VERSION_MAJOR}
|
|
|
|
VERSION_MINOR=${VERSION_MINOR}
|
|
|
|
VERSION_PATCH=${VERSION_PATCH}
|
|
|
|
|
2010-06-22 17:53:23 +04:00
|
|
|
CONFIGURE_ARGS=${CONFIGURE_ARGS}
|
2010-05-24 18:16:44 +04:00
|
|
|
EOF
|
2010-05-18 19:58:33 +04:00
|
|
|
enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
|
|
|
|
|
|
|
|
#
|
|
|
|
# Write makefiles for all enabled targets
|
|
|
|
#
|
|
|
|
for tgt in libs examples docs solution; do
|
|
|
|
local tgt_fn="$tgt-$toolchain.mk"
|
|
|
|
|
|
|
|
if enabled $tgt; then
|
|
|
|
echo "Creating makefiles for ${toolchain} ${tgt}"
|
|
|
|
write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
|
|
|
|
#write_${tgt}_config
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
process_detect() {
|
2010-06-03 18:29:04 +04:00
|
|
|
if enabled shared; then
|
|
|
|
# Can only build shared libs on a subset of platforms. Doing this check
|
|
|
|
# here rather than at option parse time because the target auto-detect
|
|
|
|
# magic happens after the command line has been parsed.
|
2012-08-14 22:24:28 +04:00
|
|
|
if ! enabled linux; then
|
|
|
|
if enabled gnu; then
|
|
|
|
echo "--enable-shared is only supported on ELF; assuming this is OK"
|
|
|
|
else
|
|
|
|
die "--enable-shared only supported on ELF for now"
|
|
|
|
fi
|
|
|
|
fi
|
2010-06-03 18:29:04 +04:00
|
|
|
fi
|
2010-05-18 19:58:33 +04:00
|
|
|
if [ -z "$CC" ]; then
|
|
|
|
echo "Bypassing toolchain for environment detection."
|
|
|
|
enable external_build
|
|
|
|
check_header() {
|
|
|
|
log fake_check_header "$@"
|
|
|
|
header=$1
|
|
|
|
shift
|
|
|
|
var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
|
|
|
|
disable $var
|
|
|
|
case $header in
|
|
|
|
stdio.h)
|
|
|
|
true;
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
local result=false
|
|
|
|
for d in "$@"; do
|
|
|
|
[ -f "${d##-I}/$header" ] && result=true && break
|
|
|
|
done
|
|
|
|
${result:-true}
|
|
|
|
esac && enable $var
|
|
|
|
}
|
|
|
|
check_ld() {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
|
|
|
|
check_ld <<EOF || die "Toolchain is unable to link executables"
|
|
|
|
int main(void) {return 0;}
|
|
|
|
EOF
|
|
|
|
# check system headers
|
|
|
|
check_header stdint.h
|
|
|
|
check_header pthread.h
|
|
|
|
check_header sys/mman.h
|
|
|
|
|
2010-05-24 19:39:59 +04:00
|
|
|
check_header vpx/vpx_integer.h -I${source_path} && enable vpx_ports
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
process_toolchain() {
|
|
|
|
process_common_toolchain
|
|
|
|
|
|
|
|
# Handle universal binaries for this architecture
|
|
|
|
case $toolchain in
|
|
|
|
universal-darwin*)
|
|
|
|
local darwin_ver=${tgt_os##darwin}
|
|
|
|
|
2012-04-27 22:40:04 +04:00
|
|
|
# Snow Leopard (10.6/darwin10) dropped support for PPC
|
|
|
|
# Include PPC support for all prior versions
|
|
|
|
if [ $darwin_ver -lt 10 ]; then
|
|
|
|
fat_bin_archs="$fat_bin_archs ppc32-${tgt_os}-gcc"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Tiger (10.4/darwin8) brought support for x86
|
|
|
|
if [ $darwin_ver -ge 8 ]; then
|
|
|
|
fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Leopard (10.5/darwin9) brought 64 bit support
|
|
|
|
if [ $darwin_ver -ge 9 ]; then
|
2010-05-18 19:58:33 +04:00
|
|
|
fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
|
|
# Enable some useful compiler flags
|
|
|
|
if enabled gcc; then
|
|
|
|
enabled werror && check_add_cflags -Werror
|
|
|
|
check_add_cflags -Wall
|
|
|
|
check_add_cflags -Wdeclaration-after-statement
|
|
|
|
check_add_cflags -Wdisabled-optimization
|
|
|
|
check_add_cflags -Wpointer-arith
|
|
|
|
check_add_cflags -Wtype-limits
|
|
|
|
check_add_cflags -Wcast-qual
|
2012-08-14 01:18:09 +04:00
|
|
|
check_add_cflags -Wvla
|
2012-04-27 14:41:58 +04:00
|
|
|
check_add_cflags -Wimplicit-function-declaration
|
|
|
|
check_add_cflags -Wuninitialized
|
|
|
|
check_add_cflags -Wunused-variable
|
2012-05-11 21:51:05 +04:00
|
|
|
check_add_cflags -Wunused-but-set-variable
|
2011-02-04 19:51:21 +03:00
|
|
|
enabled extra_warnings || check_add_cflags -Wno-unused-function
|
2010-05-18 19:58:33 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
if enabled icc; then
|
|
|
|
enabled werror && check_add_cflags -Werror
|
|
|
|
check_add_cflags -Wall
|
|
|
|
check_add_cflags -Wpointer-arith
|
|
|
|
|
|
|
|
# ICC has a number of floating point optimizations that we disable
|
|
|
|
# in favor of deterministic output WRT to other compilers
|
|
|
|
add_cflags -fp-model precise
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Enable extra, harmless warnings. These might provide additional insight
|
|
|
|
# to what the compiler is doing and why, but in general, but they shouldn't
|
|
|
|
# be treated as fatal, even if we're treating warnings as errors.
|
|
|
|
GCC_EXTRA_WARNINGS="
|
|
|
|
-Wdisabled-optimization
|
|
|
|
-Winline
|
|
|
|
"
|
|
|
|
enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
|
|
|
|
RVCT_EXTRA_WARNINGS="
|
|
|
|
--remarks
|
|
|
|
"
|
|
|
|
enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
|
|
|
|
if enabled extra_warnings; then
|
|
|
|
for w in ${EXTRA_WARNINGS}; do
|
|
|
|
check_add_cflags ${w}
|
|
|
|
enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
# ccache only really works on gcc toolchains
|
|
|
|
enabled gcc || soft_disable ccache
|
|
|
|
if enabled mips; then
|
|
|
|
enable dequant_tokens
|
2010-09-13 17:00:24 +04:00
|
|
|
enable dc_recon
|
2010-05-18 19:58:33 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Enable the postbuild target if building for visual studio.
|
|
|
|
case "$tgt_cc" in
|
|
|
|
vs*) enable msvs
|
|
|
|
enable solution
|
|
|
|
vs_version=${tgt_cc##vs}
|
|
|
|
all_targets="${all_targets} solution"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Other toolchain specific defaults
|
|
|
|
case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac
|
2010-11-05 02:03:36 +03:00
|
|
|
|
2010-11-11 01:51:49 +03:00
|
|
|
if enabled postproc_visualizer; then
|
|
|
|
enabled postproc || die "postproc_visualizer requires postproc to be enabled"
|
|
|
|
fi
|
2012-05-22 22:51:14 +04:00
|
|
|
|
|
|
|
# Enable unit tests if we have a working C++ compiler
|
2012-06-12 19:58:11 +04:00
|
|
|
case "$toolchain" in
|
|
|
|
*-vs*)
|
|
|
|
soft_enable unit_tests
|
|
|
|
;;
|
|
|
|
*-android-*)
|
|
|
|
# GTestLog must be modified to use Android logging utilities.
|
|
|
|
;;
|
2012-05-22 22:51:14 +04:00
|
|
|
*)
|
|
|
|
check_cxx "$@" <<EOF && soft_enable unit_tests
|
|
|
|
int z;
|
|
|
|
EOF
|
2012-06-12 19:58:11 +04:00
|
|
|
;;
|
2012-05-22 22:51:14 +04:00
|
|
|
esac
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
##
|
|
|
|
## END APPLICATION SPECIFIC CONFIGURATION
|
|
|
|
##
|
|
|
|
CONFIGURE_ARGS="$@"
|
|
|
|
process "$@"
|
2011-10-20 06:47:02 +04:00
|
|
|
print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
|
|
|
|
cat <<EOF >> ${BUILD_PFX}vpx_config.c
|
2010-05-18 19:58:33 +04:00
|
|
|
static const char* const cfg = "$CONFIGURE_ARGS";
|
|
|
|
const char *vpx_codec_build_config(void) {return cfg;}
|
|
|
|
EOF
|