3 # FFmpeg configure script
5 # Copyright (c) 2000-2002 Fabrice Bellard
6 # Copyright (c) 2005-2008 Diego Biurrun
7 # Copyright (c) 2005-2008 Mans Rullgard
10 # Prevent locale nonsense from breaking basic text processing.
14 # make sure we are running under a compatible shell
15 # try to make this part work with most shells
18 echo "Trying shell $1"
19 type "$1" > /dev/null 2>&1 && exec "$@"
23 (: ${foo%%bar}) 2> /dev/null
26 (: ${foo?}) 2> /dev/null
29 if test "$E1" != 0 || test "$E2" = 0; then
30 echo "Broken shell detected. Trying alternatives."
32 if test "0$FF_CONF_EXEC" -lt 1; then
34 try_exec bash "$0" "$@"
36 if test "0$FF_CONF_EXEC" -lt 2; then
38 try_exec ksh "$0" "$@"
40 if test "0$FF_CONF_EXEC" -lt 3; then
42 try_exec /usr/xpg4/bin/sh "$0" "$@"
44 echo "No compatible shell script interpreter found."
45 echo "This configure script requires a POSIX-compatible shell"
46 echo "such as bash or ksh."
47 echo "THIS IS NOT A BUG IN FFMPEG, DO NOT REPORT IT AS SUCH."
48 echo "Instead, install a working POSIX-compatible shell."
49 echo "Disabling this configure test will create a broken FFmpeg."
50 if test "$BASH_VERSION" = '2.04.0(1)-release'; then
51 echo "This bash version ($BASH_VERSION) is broken on your platform."
52 echo "Upgrade to a later version if available."
57 test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH
61 Usage: configure [options]
62 Options: [defaults in brackets after descriptions]
65 --help print this message
66 --list-decoders show all available decoders
67 --list-encoders show all available encoders
68 --list-hwaccels show all available hardware accelerators
69 --list-demuxers show all available demuxers
70 --list-muxers show all available muxers
71 --list-parsers show all available parsers
72 --list-protocols show all available protocols
73 --list-bsfs show all available bitstream filters
74 --list-indevs show all available input devices
75 --list-outdevs show all available output devices
76 --list-filters show all available filters
79 --logfile=FILE log tests and output to FILE [config.log]
80 --disable-logging do not log configure debug information
81 --fatal-warnings fail if any configure warning is generated
82 --prefix=PREFIX install in PREFIX [$prefix]
83 --bindir=DIR install binaries in DIR [PREFIX/bin]
84 --datadir=DIR install data files in DIR [PREFIX/share/ffmpeg]
85 --docdir=DIR install documentation in DIR [PREFIX/share/doc/ffmpeg]
86 --libdir=DIR install libs in DIR [PREFIX/lib]
87 --shlibdir=DIR install shared libs in DIR [PREFIX/lib]
88 --incdir=DIR install includes in DIR [PREFIX/include]
89 --mandir=DIR install man page in DIR [PREFIX/share/man]
90 --enable-rpath use rpath to allow installing libraries in paths
91 not part of the dynamic linker search path
94 --enable-gpl allow use of GPL code, the resulting libs
95 and binaries will be under GPL [no]
96 --enable-version3 upgrade (L)GPL to version 3 [no]
97 --enable-nonfree allow use of nonfree code, the resulting libs
98 and binaries will be unredistributable [no]
100 Configuration options:
101 --disable-static do not build static libraries [no]
102 --enable-shared build shared libraries [no]
103 --enable-small optimize for size instead of speed
104 --disable-runtime-cpudetect disable detecting cpu capabilities at runtime (smaller binary)
105 --enable-gray enable full grayscale support (slower color)
106 --disable-swscale-alpha disable alpha channel support in swscale
107 --disable-all disable building components, libraries and programs
108 --enable-incompatible-libav-abi enable incompatible Libav fork ABI [no]
109 --enable-raise-major increase major version numbers in sonames [no]
112 --disable-programs do not build command line programs
113 --disable-ffmpeg disable ffmpeg build
114 --disable-ffplay disable ffplay build
115 --disable-ffprobe disable ffprobe build
116 --disable-ffserver disable ffserver build
118 Documentation options:
119 --disable-doc do not build documentation
120 --disable-htmlpages do not build HTML documentation pages
121 --disable-manpages do not build man documentation pages
122 --disable-podpages do not build POD documentation pages
123 --disable-txtpages do not build text documentation pages
126 --disable-avdevice disable libavdevice build
127 --disable-avcodec disable libavcodec build
128 --disable-avformat disable libavformat build
129 --disable-avutil disable libavutil build
130 --disable-swresample disable libswresample build
131 --disable-swscale disable libswscale build
132 --disable-postproc disable libpostproc build
133 --disable-avfilter disable libavfilter build
134 --enable-avresample enable libavresample build [no]
135 --disable-pthreads disable pthreads [auto]
136 --disable-w32threads disable Win32 threads [auto]
137 --disable-os2threads disable OS/2 threads [auto]
138 --disable-network disable network support [no]
139 --disable-dct disable DCT code
140 --disable-dwt disable DWT code
141 --disable-error-resilience disable error resilience code
142 --disable-lsp disable LSP code
143 --disable-lzo disable LZO decoder code
144 --disable-mdct disable MDCT code
145 --disable-rdft disable RDFT code
146 --disable-fft disable FFT code
148 Hardware accelerators:
149 --disable-dxva2 disable DXVA2 code [autodetect]
150 --disable-vaapi disable VAAPI code [autodetect]
151 --disable-vda disable VDA code [autodetect]
152 --disable-vdpau disable VDPAU code [autodetect]
154 Individual component options:
155 --disable-everything disable all components listed below
156 --disable-encoder=NAME disable encoder NAME
157 --enable-encoder=NAME enable encoder NAME
158 --disable-encoders disable all encoders
159 --disable-decoder=NAME disable decoder NAME
160 --enable-decoder=NAME enable decoder NAME
161 --disable-decoders disable all decoders
162 --disable-hwaccel=NAME disable hwaccel NAME
163 --enable-hwaccel=NAME enable hwaccel NAME
164 --disable-hwaccels disable all hwaccels
165 --disable-muxer=NAME disable muxer NAME
166 --enable-muxer=NAME enable muxer NAME
167 --disable-muxers disable all muxers
168 --disable-demuxer=NAME disable demuxer NAME
169 --enable-demuxer=NAME enable demuxer NAME
170 --disable-demuxers disable all demuxers
171 --enable-parser=NAME enable parser NAME
172 --disable-parser=NAME disable parser NAME
173 --disable-parsers disable all parsers
174 --enable-bsf=NAME enable bitstream filter NAME
175 --disable-bsf=NAME disable bitstream filter NAME
176 --disable-bsfs disable all bitstream filters
177 --enable-protocol=NAME enable protocol NAME
178 --disable-protocol=NAME disable protocol NAME
179 --disable-protocols disable all protocols
180 --enable-indev=NAME enable input device NAME
181 --disable-indev=NAME disable input device NAME
182 --disable-indevs disable input devices
183 --enable-outdev=NAME enable output device NAME
184 --disable-outdev=NAME disable output device NAME
185 --disable-outdevs disable output devices
186 --disable-devices disable all devices
187 --enable-filter=NAME enable filter NAME
188 --disable-filter=NAME disable filter NAME
189 --disable-filters disable all filters
191 External library support:
192 --enable-avisynth enable reading of AviSynth script files [no]
193 --disable-bzlib disable bzlib [autodetect]
194 --enable-fontconfig enable fontconfig
195 --enable-frei0r enable frei0r video filtering
196 --enable-gnutls enable gnutls [no]
197 --disable-iconv disable iconv [autodetect]
198 --enable-ladspa enable LADSPA audio filtering
199 --enable-libaacplus enable AAC+ encoding via libaacplus [no]
200 --enable-libass enable libass subtitles rendering [no]
201 --enable-libbluray enable BluRay reading using libbluray [no]
202 --enable-libbs2b enable bs2b DSP library [no]
203 --enable-libcaca enable textual display using libcaca
204 --enable-libcelt enable CELT decoding via libcelt [no]
205 --enable-libcdio enable audio CD grabbing with libcdio
206 --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
208 --enable-libfaac enable AAC encoding via libfaac [no]
209 --enable-libfdk-aac enable AAC de/encoding via libfdk-aac [no]
210 --enable-libflite enable flite (voice synthesis) support via libflite [no]
211 --enable-libfreetype enable libfreetype [no]
212 --enable-libgme enable Game Music Emu via libgme [no]
213 --enable-libgsm enable GSM de/encoding via libgsm [no]
214 --enable-libiec61883 enable iec61883 via libiec61883 [no]
215 --enable-libilbc enable iLBC de/encoding via libilbc [no]
216 --enable-libmodplug enable ModPlug via libmodplug [no]
217 --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
218 --enable-libnut enable NUT (de)muxing via libnut,
219 native (de)muxer exists [no]
220 --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
221 --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
222 --enable-libopencv enable video filtering via libopencv [no]
223 --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
224 --enable-libopus enable Opus de/encoding via libopus [no]
225 --enable-libpulse enable Pulseaudio input via libpulse [no]
226 --enable-libquvi enable quvi input via libquvi [no]
227 --enable-librtmp enable RTMP[E] support via librtmp [no]
228 --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
229 --enable-libshine enable fixed-point MP3 encoding via libshine [no]
230 --enable-libsoxr enable Include libsoxr resampling [no]
231 --enable-libspeex enable Speex de/encoding via libspeex [no]
232 --enable-libssh enable SFTP protocol via libssh [no]
233 --enable-libstagefright-h264 enable H.264 decoding via libstagefright [no]
234 --enable-libtheora enable Theora encoding via libtheora [no]
235 --enable-libtwolame enable MP2 encoding via libtwolame [no]
236 --enable-libutvideo enable Ut Video encoding and decoding via libutvideo [no]
237 --enable-libv4l2 enable libv4l2/v4l-utils [no]
238 --enable-libvidstab enable video stabilization using vid.stab [no]
239 --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
240 --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
241 --enable-libvorbis enable Vorbis en/decoding via libvorbis,
242 native implementation exists [no]
243 --enable-libvpx enable VP8 and VP9 de/encoding via libvpx [no]
244 --enable-libwavpack enable wavpack encoding via libwavpack [no]
245 --enable-libwebp enable WebP encoding via libwebp [no]
246 --enable-libx264 enable H.264 encoding via x264 [no]
247 --enable-libx265 enable HEVC encoding via x265 [no]
248 --enable-libxavs enable AVS encoding via xavs [no]
249 --enable-libxvid enable Xvid encoding via xvidcore,
250 native MPEG-4/Xvid encoder exists [no]
251 --enable-libzmq enable message passing via libzmq [no]
252 --enable-libzvbi enable teletext support via libzvbi [no]
253 --enable-decklink enable Blackmagick DeckLink output [no]
254 --enable-openal enable OpenAL 1.1 capture support [no]
255 --enable-opencl enable OpenCL code
256 --enable-opengl enable OpenGL rendering [no]
257 --enable-openssl enable openssl [no]
258 --enable-x11grab enable X11 grabbing [no]
259 --disable-xlib disable xlib [autodetect]
260 --disable-zlib disable zlib [autodetect]
263 --arch=ARCH select architecture [$arch]
264 --cpu=CPU select the minimum required CPU (affects
265 instruction selection, may crash on older CPUs)
266 --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
267 --progs-suffix=SUFFIX program name suffix []
268 --enable-cross-compile assume a cross-compiler is used
269 --sysroot=PATH root of cross-build tree
270 --sysinclude=PATH location of cross-build system headers
271 --target-os=OS compiler targets OS [$target_os]
272 --target-exec=CMD command to run executables on target
273 --target-path=DIR path to view of build directory on target
274 --target-samples=DIR path to samples directory on target
275 --tempprefix=PATH force fixed dir/prefix instead of mktemp for checks
276 --toolchain=NAME set tool defaults according to NAME
277 --nm=NM use nm tool NM [$nm_default]
278 --ar=AR use archive tool AR [$ar_default]
279 --as=AS use assembler AS [$as_default]
280 --windres=WINDRES use windows resource compiler WINDRES [$windres_default]
281 --yasmexe=EXE use yasm-compatible assembler EXE [$yasmexe_default]
282 --cc=CC use C compiler CC [$cc_default]
283 --cxx=CXX use C compiler CXX [$cxx_default]
284 --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
285 --ld=LD use linker LD [$ld_default]
286 --pkg-config=PKGCONFIG use pkg-config tool PKGCONFIG [$pkg_config_default]
287 --pkg-config-flags=FLAGS pass additional flags to pkgconf []
288 --ranlib=RANLIB use ranlib RANLIB [$ranlib_default]
289 --doxygen=DOXYGEN use DOXYGEN to generate API doc [$doxygen_default]
290 --host-cc=HOSTCC use host C compiler HOSTCC
291 --host-cflags=HCFLAGS use HCFLAGS when compiling for host
292 --host-cppflags=HCPPFLAGS use HCPPFLAGS when compiling for host
293 --host-ld=HOSTLD use host linker HOSTLD
294 --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
295 --host-libs=HLIBS use libs HLIBS when linking for host
296 --host-os=OS compiler host OS [$target_os]
297 --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
298 --extra-cxxflags=ECFLAGS add ECFLAGS to CXXFLAGS [$CXXFLAGS]
299 --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
300 --extra-libs=ELIBS add ELIBS [$ELIBS]
301 --extra-version=STRING version string suffix []
302 --optflags=OPTFLAGS override optimization-related compiler flags
303 --build-suffix=SUFFIX library name suffix []
304 --enable-pic build position-independent code
305 --enable-thumb compile for Thumb instruction set
306 --enable-lto use link-time optimization
308 Advanced options (experts only):
309 --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
310 --disable-symver disable symbol versioning
311 --enable-hardcoded-tables use hardcoded tables instead of runtime generation
312 --disable-safe-bitstream-reader
313 disable buffer boundary checking in bitreaders
314 (faster, but may crash)
315 --enable-memalign-hack emulate memalign, interferes with memory debuggers
316 --enable-sram allow use of on-chip SRAM
317 --sws-max-filter-size=N the max filter size swscale uses [$sws_max_filter_size_default]
319 Optimization options (experts only):
320 --disable-asm disable all assembly optimizations
321 --disable-altivec disable AltiVec optimizations
322 --disable-amd3dnow disable 3DNow! optimizations
323 --disable-amd3dnowext disable 3DNow! extended optimizations
324 --disable-mmx disable MMX optimizations
325 --disable-mmxext disable MMXEXT optimizations
326 --disable-sse disable SSE optimizations
327 --disable-sse2 disable SSE2 optimizations
328 --disable-sse3 disable SSE3 optimizations
329 --disable-ssse3 disable SSSE3 optimizations
330 --disable-sse4 disable SSE4 optimizations
331 --disable-sse42 disable SSE4.2 optimizations
332 --disable-avx disable AVX optimizations
333 --disable-xop disable XOP optimizations
334 --disable-fma3 disable FMA3 optimizations
335 --disable-fma4 disable FMA4 optimizations
336 --disable-avx2 disable AVX2 optimizations
337 --disable-armv5te disable armv5te optimizations
338 --disable-armv6 disable armv6 optimizations
339 --disable-armv6t2 disable armv6t2 optimizations
340 --disable-vfp disable VFP optimizations
341 --disable-neon disable NEON optimizations
342 --disable-inline-asm disable use of inline assembly
343 --disable-yasm disable use of nasm/yasm assembly
344 --disable-mips32r2 disable MIPS32R2 optimizations
345 --disable-mipsdspr1 disable MIPS DSP ASE R1 optimizations
346 --disable-mipsdspr2 disable MIPS DSP ASE R2 optimizations
347 --disable-mipsfpu disable floating point MIPS optimizations
348 --disable-fast-unaligned consider unaligned accesses slow
350 Developer options (useful when working on FFmpeg itself):
351 --disable-debug disable debugging symbols
352 --enable-debug=LEVEL set the debug level [$debuglevel]
353 --disable-optimizations disable compiler optimizations
354 --enable-extra-warnings enable more compiler warnings
355 --disable-stripping disable stripping of executables and shared libraries
356 --assert-level=level 0(default), 1 or 2, amount of assertion testing,
357 2 causes a slowdown at runtime.
358 --enable-memory-poisoning fill heap uninitialized allocated space with arbitrary data
359 --valgrind=VALGRIND run "make fate" tests through valgrind to detect memory
360 leaks and errors, using the specified valgrind binary.
361 Cannot be combined with --target-exec
362 --enable-ftrapv Trap arithmetic overflows
363 --samples=PATH location of test samples for FATE, if not set use
364 \$FATE_SAMPLES at make invocation time.
365 --enable-neon-clobber-test check NEON registers for clobbering (should be
366 used only for debugging purposes)
367 --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
368 should be used only for debugging purposes)
369 --enable-random randomly enable/disable components
371 --enable-random=LIST randomly enable/disable specific components or
372 --disable-random=LIST component groups. LIST is a comma-separated list
373 of NAME[:PROB] entries where NAME is a component
374 (group) and PROB the probability associated with
376 --random-seed=VALUE seed value for --enable/disable-random
378 NOTE: Object files are built at the place where configure is launched.
386 echo "$@" >> $logfile
391 pr -n -t $1 >> $logfile
402 WARNINGS="${WARNINGS}WARNING: $*\n"
409 If you think configure made a mistake, make sure you are using the latest
410 version from Git. If the latest version fails, report the problem to the
411 ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
413 if disabled logging; then
415 Rerun configure with logging enabled (do not use --disable-logging), and
416 include the log this produces with your report.
420 Include the log file "$logfile" produced by configure as this will help
427 # Avoid locale weirdness, besides we really just want to translate ASCII.
429 echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
433 echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
437 echo "$*" | sed 's/["\\]/\\\0/g'
441 v=$(echo "$1" | sed "s/'/'\\\\''/g")
442 test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
447 echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//;s/\\r//g'
454 eval "case $v in $pat) echo $v ;; esac"
462 eval "case $v in $pat) ;; *) echo $v ;; esac"
469 for v; do eval $m; done
475 for v; do echo ${v}${suffix}; done
490 eval : \${$var:=$value}
495 echo $@ | sed 's/[^A-Za-z0-9_]/_/g'
501 eval $(sanitize_var_name "$var")='$*'
505 eval echo \$$(sanitize_var_name "$1")
510 eval level=\${${pvar}_level:=0}
511 eval ${pvar}_${level}="\$$pvar"
512 eval ${pvar}_level=$(($level+1))
518 eval level=\${${pvar}_level:-0}
519 test $level = 0 && continue
520 eval level=$(($level-1))
521 eval $pvar="\${${pvar}_${level}}"
522 eval ${pvar}_level=$level
523 eval unset ${pvar}_${level}
545 enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
551 disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
557 enabled $var && continue
558 eval sel="\$${var}_select"
559 eval sgs="\$${var}_suggest"
563 enable_deep_weak $sgs
575 disabled $var && continue
584 test "${1#!}" = "$1" && op== || op=!=
585 eval test "x\$${1#!}" $op "xyes"
589 test "${1#!}" = "$1" && op== || op=!=
590 eval test "x\$${1#!}" $op "xno"
595 enabled $opt || return 1
601 disabled $opt || return 1
607 enabled $opt && return 0
613 disabled $opt && return 0
620 eval : \${$opt:=\$${opt}_default}
628 [ $var = $value ] && return 0
636 enabled ${cfg}_checking && die "Circular dependency for $cfg."
637 disabled ${cfg}_checking && continue
638 enable ${cfg}_checking
641 eval dep_all="\$${cfg}_deps"
642 eval dep_any="\$${cfg}_deps_any"
643 eval dep_sel="\$${cfg}_select"
644 eval dep_sgs="\$${cfg}_suggest"
645 eval dep_ifa="\$${cfg}_if"
646 eval dep_ifn="\$${cfg}_if_any"
648 pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
649 do_check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
650 popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
652 [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
653 [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
654 enabled_all $dep_all || disable $cfg
655 enabled_any $dep_any || disable $cfg
656 disabled_any $dep_sel && disable $cfg
658 if enabled $cfg; then
660 enable_deep_weak $dep_sgs
663 disable ${cfg}_checking
672 for cfg in $allopts; do
673 enabled $cfg || continue
674 eval dep_extralibs="\$${cfg}_extralibs"
675 test -n "$dep_extralibs" && add_extralibs $dep_extralibs
683 map 'eval echo "$v \${$v:-no}"' "$@" |
684 awk "BEGIN { split(\"$files\", files) }
686 c = \"$pfx\" toupper(\$1);
692 if (file ~ /\\.h\$/) {
693 printf(\"#define %s %d\\n\", c, v) >>file;
694 } else if (file ~ /\\.asm\$/) {
695 printf(\"%%define %s %d\\n\", c, v) >>file;
696 } else if (file ~ /\\.mak\$/) {
697 n = -v ? \"\" : \"!\";
698 printf(\"%s%s=yes\\n\", n, c) >>file;
699 } else if (file ~ /\\.texi\$/) {
700 pre = -v ? \"\" : \"@c \";
703 gsub(/_/, \"-\", c2);
704 printf(\"%s@set %s %s\\n\", pre, c2, yesno) >>file;
714 enabled $v && printf "%s\n" ${v%$suf};
721 eval "$var=\"\$$var $*\""
727 eval "$var=\"$* \$$var\""
733 for tok in $(eval echo \$$var); do
734 uniq_list="$(filter_out $tok $uniq_list) $tok"
736 eval "$var=\"${uniq_list}\""
744 append CFLAGS $($cflags_filter "$@")
748 append CXXFLAGS $($cflags_filter "$@")
752 append ASFLAGS $($asflags_filter "$@")
756 append LDFLAGS $($ldflags_filter "$@")
760 append ASMSTRIPFLAGS "$@"
764 prepend extralibs $($ldflags_filter "$@")
768 append host_cppflags "$@"
772 append host_cflags $($host_cflags_filter "$@")
776 append host_ldflags $($host_ldflags_filter "$@")
780 append compat_objs $1
782 map 'add_cppflags -D$v' "$@"
787 "$@" >> $logfile 2>&1
792 stat "$1" >> $logfile 2>&1
796 eval printf '%s\\n' $CC_O
800 eval printf '%s\\n' $CC_E
807 check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
814 check_cmd $cxx $CPPFLAGS $CFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
821 check_cmd $cc -Werror=missing-prototypes $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPM
828 check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
832 eval printf '%s\\n' $AS_O
839 check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
843 log check_inline_asm "$@"
848 check_cc "$@" <<EOF && enable $name
849 void foo(void){ __asm__ volatile($code); }
855 check_inline_asm ${1}_inline "\"$2\""
856 echo "$2" | check_as && enable ${1}_external || disable ${1}_external
864 check_cmd $yasmexe $YASMFLAGS -Werror "$@" -o $TMPO $TMPS
868 eval printf '%s\\n' $LD_O
875 flags=$(filter_out '-l*|*.so' $@)
876 libs=$(filter '-l*|*.so' $@)
877 check_$type $($cflags_filter $flags) || return
878 flags=$($ldflags_filter $flags)
879 libs=$($ldflags_filter $libs)
880 check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
885 test "${hdr%.h}" = "${hdr}" &&
886 echo "#include $hdr" ||
887 echo "#include <$hdr>"
897 for hdr in $headers; do
900 echo "int main(void) { $code; return 0; }"
901 } | check_$check "$@"
905 log check_cppflags "$@"
906 check_cc "$@" <<EOF && append CPPFLAGS "$@"
913 set -- $($cflags_filter "$@")
920 log check_cflags "$@"
921 test_cflags "$@" && add_cflags "$@"
925 log check_cxxflags "$@"
926 set -- $($cflags_filter "$@")
927 check_cxx "$@" <<EOF && append CXXFLAGS "$@"
933 log test_ldflags "$@"
934 check_ld "cc" "$@" <<EOF
935 int main(void){ return 0; }
940 log check_ldflags "$@"
941 test_ldflags "$@" && add_ldflags "$@"
945 log test_stripflags "$@"
946 # call check_cc to get a fresh TMPO
948 int main(void) { return 0; }
950 check_cmd $strip $ASMSTRIPFLAGS "$@" $TMPO
954 log check_stripflags "$@"
955 test_stripflags "$@" && add_stripflags "$@"
959 log check_header "$@"
963 check_cpp "$@" <<EOF && enable_safe $header
970 log check_header_oc "$@"
976 echo "#include <$header>"
977 echo "int main(void) { return 0; }"
978 } | check_oc && check_stat "$TMPO" && enable_safe $headers
986 check_ld "cc" "$@" <<EOF && enable $func
988 int main(void){ $func(); }
993 log check_mathfunc "$@"
997 test $narg = 2 && args="f, g" || args="f"
999 check_ld "cc" "$@" <<EOF && enable $func
1001 float foo(float f, float g) { return $func($args); }
1002 int main(void){ return (int) foo; }
1006 check_func_headers(){
1007 log check_func_headers "$@"
1012 for hdr in $headers; do
1015 for func in $funcs; do
1016 echo "long check_$func(void) { return (long) $func; }"
1018 echo "int main(void) { return 0; }"
1019 } | check_ld "cc" "$@" && enable $funcs && enable_safe $headers
1022 check_class_headers_cpp(){
1023 log check_class_headers_cpp "$@"
1028 for hdr in $headers; do
1029 echo "#include <$hdr>"
1031 echo "int main(void) { "
1033 for class in $classes; do
1034 echo "$class obj$i;"
1038 } | check_ld "cxx" "$@" && enable $funcs && enable_safe $headers
1041 check_cpp_condition(){
1042 log check_cpp_condition "$@"
1046 check_cpp "$@" <<EOF
1049 #error "unsatisfied condition: $condition"
1059 check_header $header && check_func $func "$@" && add_extralibs "$@"
1067 check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
1071 log check_lib_cpp "$@"
1075 check_class_headers_cpp "$headers" "$classes" "$@" && add_extralibs "$@"
1079 log check_pkg_config "$@"
1085 check_cmd $pkg_config --exists --print-errors $pkgandversion || return
1086 pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
1087 pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
1088 check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
1089 set_safe ${pkg}_cflags $pkg_cflags &&
1090 set_safe ${pkg}_libs $pkg_libs
1094 check_ld "cc" "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
1100 # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
1101 # are safe but may not be available everywhere. Thus we use
1102 # raise(SIGTERM) instead. The check is run in a subshell so we
1103 # can redirect the "Terminated" message from the shell. SIGBUS
1104 # is not defined by standard C so it is used conditionally.
1106 (check_exec "$@") >> $logfile 2>&1 <<EOF
1108 static void sighandler(int sig){
1114 int (*func_ptr)(void) = foo;
1116 signal(SIGILL, sighandler);
1117 signal(SIGFPE, sighandler);
1118 signal(SIGSEGV, sighandler);
1120 signal(SIGBUS, sighandler);
1132 disable_safe "$type"
1133 check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
1137 log check_struct "$@"
1142 disable_safe "${struct}_${member}"
1143 check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
1144 enable_safe "${struct}_${member}"
1148 log check_builtin "$@"
1154 check_code ld "$headers" "$builtin" "cc" "$@" && enable "$name"
1157 check_compile_assert(){
1158 log check_compile_assert "$@"
1164 check_code cc "$headers" "char c[2 * !!($condition) - 1]" "$@" && enable "$name"
1172 check_lib $header $func "$@" || die "ERROR: $name not found"
1180 check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
1188 check_lib_cpp "$headers" "$classes" "$@" || die "ERROR: $name not found"
1191 require_pkg_config(){
1193 check_pkg_config "$@" || die "ERROR: $pkg not found"
1194 add_cflags $(get_safe ${pkg}_cflags)
1195 add_extralibs $(get_safe ${pkg}_libs)
1198 require_libfreetype(){
1199 log require_libfreetype "$@"
1201 check_cmd $pkg_config --exists --print-errors $pkg \
1202 || die "ERROR: $pkg not found"
1203 pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
1204 pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
1206 echo "#include <ft2build.h>"
1207 echo "#include FT_FREETYPE_H"
1208 echo "long check_func(void) { return (long) FT_Init_FreeType; }"
1209 echo "int main(void) { return 0; }"
1210 } | check_ld "cc" $pkg_cflags $pkg_libs \
1211 && set_safe ${pkg}_cflags $pkg_cflags \
1212 && set_safe ${pkg}_libs $pkg_libs \
1213 || die "ERROR: $pkg not found"
1214 add_cflags $(get_safe ${pkg}_cflags)
1215 add_extralibs $(get_safe ${pkg}_libs)
1219 eval printf '%s\\n' $HOSTCC_E
1223 eval printf '%s\\n' $HOSTCC_O
1227 log check_host_cc "$@"
1230 check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
1234 log check_host_cpp "$@"
1237 check_cmd $host_cc $HOSTCPPFLAGS $HOSTCFLAGS "$@" $(hostcc_e $TMPO) $TMPC
1240 check_host_cppflags(){
1241 log check_host_cppflags "$@"
1242 check_host_cc "$@" <<EOF && append host_cppflags "$@"
1247 check_host_cflags(){
1248 log check_host_cflags "$@"
1249 set -- $($host_cflags_filter "$@")
1250 check_host_cc "$@" <<EOF && append host_cflags "$@"
1255 check_host_cpp_condition(){
1256 log check_host_cpp_condition "$@"
1260 check_host_cpp "$@" <<EOF
1263 #error "unsatisfied condition: $condition"
1271 "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
1275 cmp -s "$1" "$2" && echo "$2 is unchanged" && return
1276 mkdir -p "$(dirname $2)"
1280 # CONFIG_LIST contains configurable options, while HAVE_LIST is for
1281 # system-dependent things.
1298 avio_reading_example
1299 decoding_encoding_example
1300 demuxing_decoding_example
1301 filter_audio_example
1302 filtering_audio_example
1303 filtering_video_example
1307 resampling_audio_example
1308 scaling_video_example
1309 transcode_aac_example
1313 EXTERNAL_LIBRARY_LIST="
1395 safe_bitstream_reader
1453 $EXTERNAL_LIBRARY_LIST
1461 incompatible_libav_abi
1521 ARCH_EXT_LIST_MIPS="
1528 ARCH_EXT_LIST_X86_SIMD="
1555 $ARCH_EXT_LIST_X86_SIMD
1585 sync_val_compare_and_swap
1596 incompatible_libav_abi
1605 cdio_paranoia_paranoia_h
1607 dev_bktr_ioctl_bt848_h
1608 dev_bktr_ioctl_meteor_h
1610 dev_video_bktr_ioctl_bt848_h
1611 dev_video_meteor_ioctl_meteor_h
1619 machine_ioctl_bt848_h
1620 machine_ioctl_meteor_h
1622 openjpeg_1_5_openjpeg_h
1685 GetProcessAffinityMask
1686 GetProcessMemoryInfo
1690 GetSystemTimeAsFileTime
1696 jack_port_get_latency_range
1711 SetConsoleTextAttribute
1723 TOOLCHAIN_FEATURES="
1735 inline_asm_nonlocal_labels
1736 inline_asm_direct_symbol_refs
1749 struct_group_source_req
1750 struct_ip_mreq_source
1753 struct_rusage_ru_maxrss
1754 struct_sctp_event_subscribe
1756 struct_sockaddr_sa_len
1757 struct_sockaddr_storage
1758 struct_stat_st_mtim_tv_nsec
1759 struct_v4l2_frmivalenum_discrete
1764 $(add_suffix _external $ARCH_EXT_LIST)
1765 $(add_suffix _inline $ARCH_EXT_LIST)
1794 # options emitted with CONFIG_ prefix but not available on the command line
1807 frame_thread_encoder
1925 # code dependency declarations
1927 # architecture extensions
1932 armv8_deps="aarch64"
1933 neon_deps_any="aarch64 arm"
1934 vfp_deps_any="aarch64 arm"
1937 map 'eval ${v}_inline_deps=inline_asm' $ARCH_EXT_LIST_ARM
1940 mips32r2_deps="mips"
1941 mipsdspr1_deps="mips"
1942 mipsdspr2_deps="mips"
1949 x86_64_select="i686"
1950 x86_64_suggest="fast_cmov"
1953 amd3dnowext_deps="amd3dnow"
1969 mmx_external_deps="yasm"
1970 mmx_inline_deps="inline_asm"
1971 mmx_suggest="mmx_external mmx_inline"
1973 for ext in $(filter_out mmx $ARCH_EXT_LIST_X86_SIMD); do
1974 eval dep=\$${ext}_deps
1975 eval ${ext}_external_deps='"${dep}_external"'
1976 eval ${ext}_inline_deps='"${dep}_inline"'
1977 eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
1980 aligned_stack_if_any="aarch64 ppc x86"
1981 fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
1982 fast_clz_if_any="aarch64 alpha avr32 mips ppc x86"
1983 fast_unaligned_if_any="aarch64 ppc x86"
1985 need_memalign="altivec neon sse"
1987 # system capabilities
1989 symver_if_any="symver_asm_label symver_gnu_asm"
1992 atomics_gcc_if="sync_val_compare_and_swap"
1993 atomics_suncc_if="atomic_cas_ptr machine_rw_barrier"
1994 atomics_win32_if="MemoryBarrier"
1995 atomics_native_if_any="$ATOMICS_LIST"
1996 w32threads_deps="atomics_native"
1997 threads_if_any="$THREADS_LIST"
2001 dsputil_select="fdctdsp idctdsp pixblockdsp"
2002 error_resilience_select="dsputil"
2003 frame_thread_encoder_deps="encoders threads"
2004 intrax8_select="error_resilience"
2007 mpeg_er_select="error_resilience"
2008 mpegaudio_select="mpegaudiodsp"
2009 mpegaudiodsp_select="dct"
2010 mpegvideo_select="blockdsp dsputil h264chroma hpeldsp idctdsp videodsp"
2011 mpegvideoenc_select="dsputil mpegvideo pixblockdsp qpeldsp"
2013 # decoders / encoders
2014 aac_decoder_select="mdct sinewin"
2015 aac_encoder_select="audio_frame_queue mdct sinewin"
2016 aac_latm_decoder_select="aac_decoder aac_latm_parser"
2017 ac3_decoder_select="ac3_parser ac3dsp bswapdsp mdct"
2018 ac3_fixed_decoder_select="ac3_parser ac3dsp bswapdsp mdct"
2019 ac3_encoder_select="ac3dsp audiodsp dsputil mdct"
2020 ac3_fixed_encoder_select="ac3dsp audiodsp dsputil mdct"
2021 aic_decoder_select="golomb idctdsp"
2022 alac_encoder_select="lpc"
2023 als_decoder_select="bswapdsp"
2024 amrnb_decoder_select="lsp"
2025 amrwb_decoder_select="lsp"
2026 amv_decoder_select="sp5x_decoder exif"
2027 amv_encoder_select="aandcttables mpegvideoenc"
2028 ape_decoder_select="bswapdsp llauddsp"
2029 asv1_decoder_select="blockdsp bswapdsp idctdsp"
2030 asv1_encoder_select="bswapdsp fdctdsp pixblockdsp"
2031 asv2_decoder_select="blockdsp bswapdsp idctdsp"
2032 asv2_encoder_select="bswapdsp fdctdsp pixblockdsp"
2033 atrac1_decoder_select="mdct sinewin"
2034 atrac3_decoder_select="mdct"
2035 atrac3p_decoder_select="mdct sinewin"
2036 avrn_decoder_select="exif"
2037 bink_decoder_select="blockdsp hpeldsp"
2038 binkaudio_dct_decoder_select="mdct rdft dct sinewin"
2039 binkaudio_rdft_decoder_select="mdct rdft sinewin"
2040 cavs_decoder_select="blockdsp golomb h264chroma idctdsp qpeldsp videodsp"
2041 cllc_decoder_select="bswapdsp"
2042 comfortnoise_encoder_select="lpc"
2043 cook_decoder_select="audiodsp mdct sinewin"
2044 cscd_decoder_select="lzo"
2045 cscd_decoder_suggest="zlib"
2046 dca_decoder_select="mdct"
2047 dirac_decoder_select="dsputil dwt golomb videodsp"
2048 dnxhd_decoder_select="blockdsp idctdsp"
2049 dnxhd_encoder_select="aandcttables blockdsp fdctdsp idctdsp mpegvideoenc pixblockdsp"
2050 dvvideo_decoder_select="dvprofile idctdsp"
2051 dvvideo_encoder_select="dsputil dvprofile fdctdsp pixblockdsp"
2052 dxa_decoder_select="zlib"
2053 eac3_decoder_select="ac3_decoder"
2054 eac3_encoder_select="ac3_encoder"
2055 eamad_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpegvideo"
2056 eatgq_decoder_select="aandcttables"
2057 eatqi_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpeg1video_decoder"
2058 exr_decoder_select="zlib"
2059 ffv1_decoder_select="golomb rangecoder"
2060 ffv1_encoder_select="rangecoder"
2061 ffvhuff_decoder_select="huffyuv_decoder"
2062 ffvhuff_encoder_select="huffyuv_encoder"
2063 fic_decoder_select="golomb"
2064 flac_decoder_select="golomb"
2065 flac_encoder_select="bswapdsp golomb lpc"
2066 flashsv_decoder_select="zlib"
2067 flashsv_encoder_select="zlib"
2068 flashsv2_encoder_select="zlib"
2069 flashsv2_decoder_select="zlib"
2070 flv_decoder_select="h263_decoder"
2071 flv_encoder_select="h263_encoder"
2072 fourxm_decoder_select="blockdsp bswapdsp"
2073 fraps_decoder_select="bswapdsp huffman"
2074 g2m_decoder_select="blockdsp idctdsp zlib"
2075 g729_decoder_select="audiodsp"
2076 h261_decoder_select="mpeg_er mpegvideo"
2077 h261_encoder_select="aandcttables mpegvideoenc"
2078 h263_decoder_select="error_resilience h263_parser h263dsp mpeg_er mpegvideo qpeldsp"
2079 h263_encoder_select="aandcttables h263dsp mpegvideoenc"
2080 h263i_decoder_select="h263_decoder"
2081 h263p_encoder_select="h263_encoder"
2082 h264_decoder_select="cabac golomb h264chroma h264dsp h264pred h264qpel videodsp"
2083 h264_decoder_suggest="error_resilience"
2084 hevc_decoder_select="bswapdsp cabac golomb videodsp"
2085 huffyuv_decoder_select="bswapdsp huffyuvdsp llviddsp"
2086 huffyuv_encoder_select="bswapdsp huffman huffyuvencdsp llviddsp"
2087 iac_decoder_select="imc_decoder"
2088 imc_decoder_select="bswapdsp fft mdct sinewin"
2089 indeo3_decoder_select="hpeldsp"
2090 interplay_video_decoder_select="hpeldsp"
2091 jpegls_decoder_select="golomb mjpeg_decoder"
2092 jpegls_encoder_select="golomb"
2093 jv_decoder_select="blockdsp"
2094 lagarith_decoder_select="huffyuvdsp"
2095 ljpeg_encoder_select="aandcttables idctdsp"
2096 loco_decoder_select="golomb"
2097 mdec_decoder_select="blockdsp idctdsp mpegvideo"
2098 metasound_decoder_select="lsp mdct sinewin"
2099 mimic_decoder_select="blockdsp bswapdsp hpeldsp idctdsp"
2100 mjpeg_decoder_select="blockdsp hpeldsp exif idctdsp"
2101 mjpeg_encoder_select="aandcttables mpegvideoenc"
2102 mjpegb_decoder_select="mjpeg_decoder"
2103 mlp_decoder_select="mlp_parser"
2104 motionpixels_decoder_select="bswapdsp"
2105 mp1_decoder_select="mpegaudio"
2106 mp1float_decoder_select="mpegaudio"
2107 mp2_decoder_select="mpegaudio"
2108 mp2float_decoder_select="mpegaudio"
2109 mp3_decoder_select="mpegaudio"
2110 mp3adu_decoder_select="mpegaudio"
2111 mp3adufloat_decoder_select="mpegaudio"
2112 mp3float_decoder_select="mpegaudio"
2113 mp3on4_decoder_select="mpegaudio"
2114 mp3on4float_decoder_select="mpegaudio"
2115 mpc7_decoder_select="bswapdsp mpegaudiodsp"
2116 mpc8_decoder_select="mpegaudiodsp"
2117 mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
2118 mpeg_xvmc_decoder_select="mpeg2video_decoder"
2119 mpeg1video_decoder_select="error_resilience mpeg_er mpegvideo"
2120 mpeg1video_encoder_select="aandcttables mpegvideoenc h263dsp"
2121 mpeg2video_decoder_select="error_resilience mpeg_er mpegvideo"
2122 mpeg2video_encoder_select="aandcttables mpegvideoenc h263dsp"
2123 mpeg4_decoder_select="h263_decoder mpeg4video_parser"
2124 mpeg4_encoder_select="h263_encoder"
2125 msmpeg4v1_decoder_select="h263_decoder"
2126 msmpeg4v2_decoder_select="h263_decoder"
2127 msmpeg4v2_encoder_select="h263_encoder"
2128 msmpeg4v3_decoder_select="h263_decoder"
2129 msmpeg4v3_encoder_select="h263_encoder"
2130 mss2_decoder_select="error_resilience mpeg_er qpeldsp vc1_decoder"
2131 mxpeg_decoder_select="mjpeg_decoder"
2132 nellymoser_decoder_select="mdct sinewin"
2133 nellymoser_encoder_select="audio_frame_queue mdct sinewin"
2134 nuv_decoder_select="idctdsp lzo"
2135 on2avc_decoder_select="mdct"
2136 opus_decoder_deps="swresample"
2137 png_decoder_select="zlib"
2138 png_encoder_select="huffyuvencdsp zlib"
2139 prores_decoder_select="blockdsp idctdsp"
2140 prores_encoder_select="fdctdsp"
2141 qcelp_decoder_select="lsp"
2142 qdm2_decoder_select="mdct rdft mpegaudiodsp"
2143 ra_144_encoder_select="audio_frame_queue lpc audiodsp"
2144 ra_144_decoder_select="audiodsp"
2145 ralf_decoder_select="golomb"
2146 rawvideo_decoder_select="dsputil"
2147 rtjpeg_decoder_select="dsputil"
2148 rv10_decoder_select="error_resilience h263_decoder h263dsp mpeg_er"
2149 rv10_encoder_select="h263_encoder"
2150 rv20_decoder_select="error_resilience h263_decoder h263dsp mpeg_er"
2151 rv20_encoder_select="h263_encoder"
2152 rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpeg_er mpegvideo videodsp"
2153 rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpeg_er mpegvideo videodsp"
2154 shorten_decoder_select="golomb"
2155 sipr_decoder_select="lsp"
2156 snow_decoder_select="dsputil dwt h264qpel hpeldsp rangecoder"
2157 snow_encoder_select="aandcttables dsputil dwt h264qpel hpeldsp mpegvideoenc rangecoder"
2158 sonic_decoder_select="golomb rangecoder"
2159 sonic_encoder_select="golomb rangecoder"
2160 sonic_ls_encoder_select="golomb rangecoder"
2161 sp5x_decoder_select="mjpeg_decoder"
2162 svq1_decoder_select="hpeldsp"
2163 svq1_encoder_select="aandcttables dsputil hpeldsp mpegvideoenc"
2164 svq3_decoder_select="h264_decoder hpeldsp tpeldsp"
2165 svq3_decoder_suggest="zlib"
2166 tak_decoder_select="audiodsp"
2167 theora_decoder_select="vp3_decoder"
2168 thp_decoder_select="mjpeg_decoder"
2169 tiff_decoder_suggest="zlib"
2170 tiff_encoder_suggest="zlib"
2171 truehd_decoder_select="mlp_parser"
2172 truemotion2_decoder_select="bswapdsp"
2173 truespeech_decoder_select="bswapdsp"
2174 tscc_decoder_select="zlib"
2175 twinvq_decoder_select="mdct lsp sinewin"
2176 utvideo_decoder_select="bswapdsp"
2177 utvideo_encoder_select="bswapdsp huffman huffyuvencdsp"
2178 vble_decoder_select="huffyuvdsp"
2179 vc1_decoder_select="blockdsp error_resilience h263_decoder h264chroma h264qpel intrax8 mpeg_er qpeldsp"
2180 vc1image_decoder_select="vc1_decoder"
2181 vorbis_decoder_select="mdct"
2182 vorbis_encoder_select="mdct"
2183 vp3_decoder_select="hpeldsp vp3dsp videodsp"
2184 vp5_decoder_select="h264chroma hpeldsp videodsp vp3dsp"
2185 vp6_decoder_select="h264chroma hpeldsp huffman videodsp vp3dsp"
2186 vp6a_decoder_select="vp6_decoder"
2187 vp6f_decoder_select="vp6_decoder"
2188 vp7_decoder_select="h264pred videodsp"
2189 vp8_decoder_select="h264pred videodsp"
2190 vp9_decoder_select="videodsp vp9_parser"
2191 webp_decoder_select="vp8_decoder"
2192 wmalossless_decoder_select="llauddsp"
2193 wmapro_decoder_select="mdct sinewin"
2194 wmav1_decoder_select="mdct sinewin"
2195 wmav1_encoder_select="mdct sinewin"
2196 wmav2_decoder_select="mdct sinewin"
2197 wmav2_encoder_select="mdct sinewin"
2198 wmavoice_decoder_select="lsp rdft dct mdct sinewin"
2199 wmv1_decoder_select="h263_decoder"
2200 wmv1_encoder_select="h263_encoder"
2201 wmv2_decoder_select="blockdsp h263_decoder idctdsp intrax8 videodsp"
2202 wmv2_encoder_select="h263_encoder"
2203 wmv3_decoder_select="vc1_decoder"
2204 wmv3image_decoder_select="wmv3_decoder"
2205 zerocodec_decoder_select="zlib"
2206 zlib_decoder_select="zlib"
2207 zlib_encoder_select="zlib"
2208 zmbv_decoder_select="zlib"
2209 zmbv_encoder_select="zlib"
2211 # hardware accelerators
2212 crystalhd_deps="libcrystalhd_libcrystalhd_if_h"
2213 dxva2_deps="dxva2api_h"
2214 vaapi_deps="va_va_h"
2215 vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
2216 vda_extralibs="-framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore"
2217 vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
2218 xvmc_deps="X11_extensions_XvMClib_h"
2220 h263_vaapi_hwaccel_deps="vaapi"
2221 h263_vaapi_hwaccel_select="h263_decoder"
2222 h263_vdpau_hwaccel_deps="vdpau"
2223 h263_vdpau_hwaccel_select="h263_decoder"
2224 h264_crystalhd_decoder_select="crystalhd h264_mp4toannexb_bsf h264_parser"
2225 h264_dxva2_hwaccel_deps="dxva2"
2226 h264_dxva2_hwaccel_select="h264_decoder"
2227 h264_vaapi_hwaccel_deps="vaapi"
2228 h264_vaapi_hwaccel_select="h264_decoder"
2229 h264_vda_decoder_deps="vda"
2230 h264_vda_decoder_select="h264_decoder"
2231 h264_vda_hwaccel_deps="vda"
2232 h264_vda_hwaccel_select="h264_decoder"
2233 h264_vda_old_hwaccel_deps="vda"
2234 h264_vda_old_hwaccel_select="h264_decoder"
2235 h264_vdpau_decoder_deps="vdpau"
2236 h264_vdpau_decoder_select="h264_decoder"
2237 h264_vdpau_hwaccel_deps="vdpau"
2238 h264_vdpau_hwaccel_select="h264_decoder"
2239 mpeg_vdpau_decoder_deps="vdpau"
2240 mpeg_vdpau_decoder_select="mpeg2video_decoder"
2241 mpeg_xvmc_hwaccel_deps="xvmc"
2242 mpeg_xvmc_hwaccel_select="mpeg2video_decoder"
2243 mpeg1_vdpau_decoder_deps="vdpau"
2244 mpeg1_vdpau_decoder_select="mpeg1video_decoder"
2245 mpeg1_vdpau_hwaccel_deps="vdpau"
2246 mpeg1_vdpau_hwaccel_select="mpeg1video_decoder"
2247 mpeg1_xvmc_hwaccel_deps="xvmc"
2248 mpeg1_xvmc_hwaccel_select="mpeg1video_decoder"
2249 mpeg2_crystalhd_decoder_select="crystalhd"
2250 mpeg2_dxva2_hwaccel_deps="dxva2"
2251 mpeg2_dxva2_hwaccel_select="mpeg2video_decoder"
2252 mpeg2_vaapi_hwaccel_deps="vaapi"
2253 mpeg2_vaapi_hwaccel_select="mpeg2video_decoder"
2254 mpeg2_vdpau_hwaccel_deps="vdpau"
2255 mpeg2_vdpau_hwaccel_select="mpeg2video_decoder"
2256 mpeg2_xvmc_hwaccel_deps="xvmc"
2257 mpeg2_xvmc_hwaccel_select="mpeg2video_decoder"
2258 mpeg4_crystalhd_decoder_select="crystalhd"
2259 mpeg4_vaapi_hwaccel_deps="vaapi"
2260 mpeg4_vaapi_hwaccel_select="mpeg4_decoder"
2261 mpeg4_vdpau_decoder_deps="vdpau"
2262 mpeg4_vdpau_decoder_select="mpeg4_decoder"
2263 mpeg4_vdpau_hwaccel_deps="vdpau"
2264 mpeg4_vdpau_hwaccel_select="mpeg4_decoder"
2265 msmpeg4_crystalhd_decoder_select="crystalhd"
2266 vc1_crystalhd_decoder_select="crystalhd"
2267 vc1_dxva2_hwaccel_deps="dxva2"
2268 vc1_dxva2_hwaccel_select="vc1_decoder"
2269 vc1_vaapi_hwaccel_deps="vaapi"
2270 vc1_vaapi_hwaccel_select="vc1_decoder"
2271 vc1_vdpau_decoder_deps="vdpau"
2272 vc1_vdpau_decoder_select="vc1_decoder"
2273 vc1_vdpau_hwaccel_deps="vdpau"
2274 vc1_vdpau_hwaccel_select="vc1_decoder"
2275 wmv3_crystalhd_decoder_select="crystalhd"
2276 wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
2277 wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
2278 wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
2279 wmv3_vdpau_hwaccel_select="vc1_vdpau_hwaccel"
2282 h264_parser_select="h264_decoder"
2283 hevc_parser_select="hevc_decoder"
2284 mpegvideo_parser_select="mpegvideo"
2285 mpeg4video_parser_select="error_resilience h263dsp mpeg_er mpegvideo qpeldsp"
2286 vc1_parser_select="mpegvideo vc1_decoder"
2288 # external libraries
2289 libaacplus_encoder_deps="libaacplus"
2290 libcelt_decoder_deps="libcelt"
2291 libfaac_encoder_deps="libfaac"
2292 libfaac_encoder_select="audio_frame_queue"
2293 libfdk_aac_decoder_deps="libfdk_aac"
2294 libfdk_aac_encoder_deps="libfdk_aac"
2295 libfdk_aac_encoder_select="audio_frame_queue"
2296 libgme_demuxer_deps="libgme"
2297 libgsm_decoder_deps="libgsm"
2298 libgsm_encoder_deps="libgsm"
2299 libgsm_ms_decoder_deps="libgsm"
2300 libgsm_ms_encoder_deps="libgsm"
2301 libilbc_decoder_deps="libilbc"
2302 libilbc_encoder_deps="libilbc"
2303 libmodplug_demuxer_deps="libmodplug"
2304 libmp3lame_encoder_deps="libmp3lame"
2305 libmp3lame_encoder_select="audio_frame_queue"
2306 libopencore_amrnb_decoder_deps="libopencore_amrnb"
2307 libopencore_amrnb_encoder_deps="libopencore_amrnb"
2308 libopencore_amrnb_encoder_select="audio_frame_queue"
2309 libopencore_amrwb_decoder_deps="libopencore_amrwb"
2310 libopenjpeg_decoder_deps="libopenjpeg"
2311 libopenjpeg_encoder_deps="libopenjpeg"
2312 libopus_decoder_deps="libopus"
2313 libopus_encoder_deps="libopus"
2314 libopus_encoder_select="audio_frame_queue"
2315 libquvi_demuxer_deps="libquvi"
2316 libschroedinger_decoder_deps="libschroedinger"
2317 libschroedinger_encoder_deps="libschroedinger"
2318 libshine_encoder_deps="libshine"
2319 libshine_encoder_select="audio_frame_queue"
2320 libspeex_decoder_deps="libspeex"
2321 libspeex_encoder_deps="libspeex"
2322 libspeex_encoder_select="audio_frame_queue"
2323 libstagefright_h264_decoder_deps="libstagefright_h264"
2324 libtheora_encoder_deps="libtheora"
2325 libtwolame_encoder_deps="libtwolame"
2326 libvo_aacenc_encoder_deps="libvo_aacenc"
2327 libvo_aacenc_encoder_select="audio_frame_queue"
2328 libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
2329 libvorbis_decoder_deps="libvorbis"
2330 libvorbis_encoder_deps="libvorbis"
2331 libvorbis_encoder_select="audio_frame_queue"
2332 libvpx_vp8_decoder_deps="libvpx"
2333 libvpx_vp8_encoder_deps="libvpx"
2334 libvpx_vp9_decoder_deps="libvpx"
2335 libvpx_vp9_encoder_deps="libvpx"
2336 libwavpack_encoder_deps="libwavpack"
2337 libwebp_encoder_deps="libwebp"
2338 libx264_encoder_deps="libx264"
2339 libx264rgb_encoder_deps="libx264"
2340 libx265_encoder_deps="libx265"
2341 libxavs_encoder_deps="libxavs"
2342 libxvid_encoder_deps="libxvid"
2343 libutvideo_decoder_deps="libutvideo"
2344 libutvideo_encoder_deps="libutvideo"
2345 libzvbi_teletext_decoder_deps="libzvbi"
2348 ac3_demuxer_select="ac3_parser"
2349 asf_demuxer_select="riffdec"
2350 asf_muxer_select="riffenc"
2351 asf_stream_muxer_select="asf_muxer"
2352 avi_demuxer_select="riffdec exif"
2353 avi_muxer_select="riffenc"
2354 avisynth_demuxer_deps="avisynth"
2355 avisynth_demuxer_select="riffdec"
2356 caf_demuxer_select="riffdec"
2357 dirac_demuxer_select="dirac_parser"
2358 dts_demuxer_select="dca_parser"
2359 dtshd_demuxer_select="dca_parser"
2360 dv_demuxer_select="dvprofile"
2361 dv_muxer_select="dvprofile"
2362 dxa_demuxer_select="riffdec"
2363 eac3_demuxer_select="ac3_parser"
2364 f4v_muxer_select="mov_muxer"
2365 flac_demuxer_select="flac_parser"
2366 hds_muxer_select="flv_muxer"
2367 hls_muxer_select="mpegts_muxer"
2368 image2_alias_pix_demuxer_select="image2_demuxer"
2369 image2_brender_pix_demuxer_select="image2_demuxer"
2370 ipod_muxer_select="mov_muxer"
2371 ismv_muxer_select="mov_muxer"
2372 libnut_demuxer_deps="libnut"
2373 libnut_muxer_deps="libnut"
2374 matroska_audio_muxer_select="matroska_muxer"
2375 matroska_demuxer_select="riffdec"
2376 matroska_demuxer_suggest="bzlib lzo zlib"
2377 matroska_muxer_select="riffenc"
2378 mmf_muxer_select="riffenc"
2379 mov_demuxer_select="riffdec"
2380 mov_demuxer_suggest="zlib"
2381 mov_muxer_select="riffenc rtpenc_chain"
2382 mp3_demuxer_select="mpegaudio_parser"
2383 mp4_muxer_select="mov_muxer"
2384 mpegts_muxer_select="adts_muxer latm_muxer"
2385 mpegtsraw_demuxer_select="mpegts_demuxer"
2386 mxf_d10_muxer_select="mxf_muxer"
2387 nut_muxer_select="riffenc"
2388 nuv_demuxer_select="riffdec"
2389 ogg_demuxer_select="golomb"
2390 psp_muxer_select="mov_muxer"
2391 rtp_demuxer_select="sdp_demuxer"
2392 rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
2393 rtsp_demuxer_select="http_protocol rtpdec"
2394 rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol rtpenc_chain"
2395 sap_demuxer_select="sdp_demuxer"
2396 sap_muxer_select="rtp_muxer rtp_protocol rtpenc_chain"
2397 sdp_demuxer_select="rtpdec"
2398 smoothstreaming_muxer_select="ismv_muxer"
2399 spdif_muxer_select="aac_parser"
2400 tak_demuxer_select="tak_parser"
2401 tg2_muxer_select="mov_muxer"
2402 tgp_muxer_select="mov_muxer"
2403 vobsub_demuxer_select="mpegps_demuxer"
2404 w64_demuxer_select="wav_demuxer"
2405 w64_muxer_select="wav_muxer"
2406 wav_demuxer_select="riffdec"
2407 wav_muxer_select="riffenc"
2408 webm_muxer_select="riffenc"
2409 wtv_demuxer_select="riffdec"
2410 wtv_muxer_select="riffenc"
2411 xmv_demuxer_select="riffdec"
2412 xwma_demuxer_select="riffdec"
2415 alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
2416 alsa_outdev_deps="alsa_asoundlib_h"
2417 avfoundation_indev_extralibs="-framework CoreVideo -framework Foundation -framework AVFoundation -framework CoreMedia"
2418 avfoundation_indev_select="avfoundation"
2419 bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
2420 caca_outdev_deps="libcaca"
2421 decklink_outdev_deps="decklink pthreads"
2422 decklink_outdev_extralibs="-lstdc++"
2423 dshow_indev_deps="IBaseFilter"
2424 dshow_indev_extralibs="-lpsapi -lole32 -lstrmiids -luuid"
2425 dv1394_indev_deps="dv1394"
2426 dv1394_indev_select="dv_demuxer"
2427 fbdev_indev_deps="linux_fb_h"
2428 fbdev_outdev_deps="linux_fb_h"
2429 gdigrab_indev_deps="CreateDIBSection"
2430 gdigrab_indev_extralibs="-lgdi32"
2431 gdigrab_indev_select="bmp_decoder"
2432 iec61883_indev_deps="libiec61883"
2433 jack_indev_deps="jack_jack_h sem_timedwait"
2434 lavfi_indev_deps="avfilter"
2435 libcdio_indev_deps="libcdio"
2436 libdc1394_indev_deps="libdc1394"
2437 libv4l2_indev_deps="libv4l2"
2438 openal_indev_deps="openal"
2439 opengl_outdev_deps="opengl"
2440 oss_indev_deps_any="soundcard_h sys_soundcard_h"
2441 oss_outdev_deps_any="soundcard_h sys_soundcard_h"
2442 pulse_indev_deps="libpulse"
2443 pulse_outdev_deps="libpulse"
2444 qtkit_indev_extralibs="-framework QTKit -framework Foundation -framework QuartzCore"
2445 qtkit_indev_select="qtkit"
2446 sdl_outdev_deps="sdl"
2447 sndio_indev_deps="sndio_h"
2448 sndio_outdev_deps="sndio_h"
2449 v4l_indev_deps="linux_videodev_h"
2450 v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
2451 v4l2_outdev_deps_any="linux_videodev2_h sys_videoio_h"
2452 vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
2453 vfwcap_indev_extralibs="-lavicap32"
2454 xv_outdev_deps="X11_extensions_Xvlib_h XvGetPortAttribute"
2455 xv_outdev_extralibs="-lXv -lX11 -lXext"
2456 x11grab_indev_deps="x11grab"
2459 bluray_protocol_deps="libbluray"
2460 ffrtmpcrypt_protocol_deps="!librtmp_protocol"
2461 ffrtmpcrypt_protocol_deps_any="gcrypt nettle openssl"
2462 ffrtmpcrypt_protocol_select="tcp_protocol"
2463 ffrtmphttp_protocol_deps="!librtmp_protocol"
2464 ffrtmphttp_protocol_select="http_protocol"
2465 ftp_protocol_select="tcp_protocol"
2466 gopher_protocol_select="network"
2467 http_protocol_select="tcp_protocol"
2468 httpproxy_protocol_select="tcp_protocol"
2469 https_protocol_select="tls_protocol"
2470 librtmp_protocol_deps="librtmp"
2471 librtmpe_protocol_deps="librtmp"
2472 librtmps_protocol_deps="librtmp"
2473 librtmpt_protocol_deps="librtmp"
2474 librtmpte_protocol_deps="librtmp"
2475 libssh_protocol_deps="libssh"
2476 mmsh_protocol_select="http_protocol"
2477 mmst_protocol_select="network"
2478 rtmp_protocol_deps="!librtmp_protocol"
2479 rtmp_protocol_select="tcp_protocol"
2480 rtmpe_protocol_select="ffrtmpcrypt_protocol"
2481 rtmps_protocol_deps="!librtmp_protocol"
2482 rtmps_protocol_select="tls_protocol"
2483 rtmpt_protocol_select="ffrtmphttp_protocol"
2484 rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
2485 rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
2486 rtp_protocol_select="udp_protocol"
2487 sctp_protocol_deps="struct_sctp_event_subscribe"
2488 sctp_protocol_select="network"
2489 srtp_protocol_select="rtp_protocol"
2490 tcp_protocol_select="network"
2491 tls_protocol_deps_any="openssl gnutls"
2492 tls_protocol_select="tcp_protocol"
2493 udp_protocol_select="network"
2494 unix_protocol_deps="sys_un_h"
2495 unix_protocol_select="network"
2498 aconvert_filter_deps="swresample"
2499 amovie_filter_deps="avcodec avformat"
2500 aresample_filter_deps="swresample"
2501 ass_filter_deps="libass"
2502 asyncts_filter_deps="avresample"
2503 atempo_filter_deps="avcodec"
2504 atempo_filter_select="rdft"
2505 azmq_filter_deps="libzmq"
2506 blackframe_filter_deps="gpl"
2507 boxblur_filter_deps="gpl"
2508 bs2b_filter_deps="libbs2b"
2509 colormatrix_filter_deps="gpl"
2510 cropdetect_filter_deps="gpl"
2511 dctdnoiz_filter_deps="avcodec"
2512 dctdnoiz_filter_select="dct"
2513 delogo_filter_deps="gpl"
2514 deshake_filter_deps="avcodec"
2515 deshake_filter_select="dsputil"
2516 drawtext_filter_deps="libfreetype"
2517 ebur128_filter_deps="gpl"
2518 flite_filter_deps="libflite"
2519 frei0r_filter_deps="frei0r dlopen"
2520 frei0r_filter_extralibs='$ldl'
2521 frei0r_src_filter_deps="frei0r dlopen"
2522 frei0r_src_filter_extralibs='$ldl'
2523 geq_filter_deps="gpl"
2524 histeq_filter_deps="gpl"
2525 hqdn3d_filter_deps="gpl"
2526 interlace_filter_deps="gpl"
2527 kerndeint_filter_deps="gpl"
2528 ladspa_filter_deps="ladspa dlopen"
2529 ladspa_filter_extralibs='$ldl'
2530 mcdeint_filter_deps="avcodec gpl"
2531 movie_filter_deps="avcodec avformat"
2532 mp_filter_deps="gpl avcodec swscale inline_asm"
2533 mpdecimate_filter_deps="gpl avcodec"
2534 mptestsrc_filter_deps="gpl"
2535 negate_filter_deps="lut_filter"
2536 perspective_filter_deps="gpl"
2537 ocv_filter_deps="libopencv"
2538 owdenoise_filter_deps="gpl"
2539 pan_filter_deps="swresample"
2540 phase_filter_deps="gpl"
2541 pp_filter_deps="gpl postproc"
2542 pullup_filter_deps="gpl"
2543 removelogo_filter_deps="avcodec avformat swscale"
2544 resample_filter_deps="avresample"
2545 sab_filter_deps="gpl swscale"
2546 scale_filter_deps="swscale"
2547 smartblur_filter_deps="gpl swscale"
2548 showspectrum_filter_deps="avcodec"
2549 showspectrum_filter_select="rdft"
2550 spp_filter_deps="gpl avcodec"
2551 spp_filter_select="dsputil fft idctdsp"
2552 stereo3d_filter_deps="gpl"
2553 subtitles_filter_deps="avformat avcodec libass"
2554 super2xsai_filter_deps="gpl"
2555 tinterlace_filter_deps="gpl"
2556 vidstabdetect_filter_deps="libvidstab"
2557 vidstabtransform_filter_deps="libvidstab"
2558 pixfmts_super2xsai_test_deps="super2xsai_filter"
2559 tinterlace_merge_test_deps="tinterlace_filter"
2560 tinterlace_pad_test_deps="tinterlace_filter"
2561 zmq_filter_deps="libzmq"
2562 zoompan_filter_deps="swscale"
2565 avio_reading="avformat avcodec avutil"
2566 avcodec_example_deps="avcodec avutil"
2567 demuxing_decoding_example_deps="avcodec avformat avutil"
2568 filter_audio_example_deps="avfilter avutil"
2569 filtering_audio_example_deps="avfilter avcodec avformat avutil"
2570 filtering_video_example_deps="avfilter avcodec avformat avutil"
2571 metadata_example_deps="avformat avutil"
2572 muxing_example_deps="avcodec avformat avutil swscale"
2573 remuxing_example_deps="avcodec avformat avutil"
2574 resampling_audio_example_deps="avutil swresample"
2575 scaling_video_example_deps="avutil swscale"
2576 transcode_aac_example_deps="avcodec avformat swresample"
2577 transcoding_example_deps="avfilter avcodec avformat avutil"
2579 # libraries, in linking order
2580 avcodec_deps="avutil"
2581 avdevice_deps="avformat avcodec avutil"
2582 avfilter_deps="avutil"
2583 avformat_deps="avcodec avutil"
2584 avresample_deps="avutil"
2585 postproc_deps="avutil gpl"
2586 swresample_deps="avutil"
2587 swscale_deps="avutil"
2590 ffmpeg_deps="avcodec avfilter avformat swresample"
2591 ffmpeg_select="aformat_filter anull_filter atrim_filter format_filter
2593 setpts_filter trim_filter"
2594 ffplay_deps="avcodec avformat swscale swresample sdl"
2595 ffplay_libs='$sdl_libs'
2596 ffplay_select="rdft crop_filter transpose_filter hflip_filter vflip_filter rotate_filter"
2597 ffprobe_deps="avcodec avformat"
2598 ffserver_deps="avformat fork sarestart"
2599 ffserver_select="ffm_muxer rtp_protocol rtsp_demuxer"
2602 podpages_deps="perl"
2603 manpages_deps="perl pod2man"
2604 htmlpages_deps="perl texi2html"
2605 txtpages_deps="perl makeinfo"
2606 doc_deps_any="manpages htmlpages podpages txtpages"
2608 # default parameters
2610 logfile="config.log"
2612 # installation paths
2613 prefix_default="/usr/local"
2614 bindir_default='${prefix}/bin'
2615 datadir_default='${prefix}/share/ffmpeg'
2616 docdir_default='${prefix}/share/doc/ffmpeg'
2617 incdir_default='${prefix}/include'
2618 libdir_default='${prefix}/lib'
2619 mandir_default='${prefix}/share/man'
2620 shlibdir_default="$libdir_default"
2626 host_cc_default="gcc"
2628 doxygen_default="doxygen"
2633 pkg_config_default=pkg-config
2634 ranlib_default="ranlib"
2635 strip_default="strip"
2636 yasmexe_default="yasm"
2637 windres_default="windres"
2642 target_os_default=$(tolower $(uname -s))
2643 host_os=$target_os_default
2646 if test "$target_os_default" = aix; then
2647 arch_default=$(uname -p)
2648 strip_default="strip -X32_64"
2650 arch_default=$(uname -m)
2654 # configurable options
2655 enable $PROGRAM_LIST
2656 enable $DOCUMENT_LIST
2657 enable $EXAMPLE_LIST
2658 enable $(filter_out avresample $LIBRARY_LIST)
2664 enable optimizations
2665 enable runtime_cpudetect
2666 enable safe_bitstream_reader
2668 enable swscale_alpha
2670 sws_max_filter_size_default=256
2671 set_default sws_max_filter_size
2673 # Enable hwaccels by default.
2674 enable dxva2 vaapi vda vdpau xvmc
2678 SHFLAGS='-shared -Wl,-soname,$$(@F)'
2681 FULLNAME='$(NAME)$(BUILDSUF)'
2682 LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
2685 SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
2686 SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
2687 SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
2688 LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
2689 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
2690 SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
2712 host_cflags_filter=echo
2713 host_ldflags_filter=echo
2715 target_path='$(CURDIR)'
2717 # since the object filename is not given with the -MM flag, the compiler
2718 # is only able to print the basename, and we must add the path ourselves
2719 DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
2723 if test -f configure; then
2726 source_path=$(cd $(dirname "$0"); pwd)
2727 echo "$source_path" | grep -q '[[:blank:]]' &&
2728 die "Out of tree builds are impossible with whitespace in source path."
2729 test -e "$source_path/config.h" &&
2730 die "Out of tree builds are impossible with config.h in source dir."
2737 FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
2743 file=$source_path/$3
2744 sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
2747 ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
2748 DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
2749 HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
2750 PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
2751 BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
2752 MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
2753 DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
2754 OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
2755 INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
2756 PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
2757 FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
2773 for n in $COMPONENT_LIST; do
2774 v=$(toupper ${n%s})_LIST
2776 eval ${n}_if_any="\$$v"
2779 enable $ARCH_EXT_LIST
2782 echo "Unknown option \"$1\"."
2783 echo "See $0 --help for available options."
2788 cat | tr ' ' '\n' | sort | pr -r -3 -t
2794 echo $* | sed s/$suffix//g | print_3_columns
2806 is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
2807 echo "prob ${prob:-0.5}"
2815 random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
2816 $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
2826 add_extralibs $optval
2829 disable $INDEV_LIST $OUTDEV_LIST
2832 debuglevel="$optval"
2835 disable $PROGRAM_LIST
2837 --disable-everything)
2838 map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
2841 map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
2842 disable $LIBRARY_LIST $PROGRAM_LIST doc
2844 --enable-random|--disable-random)
2845 action=${opt%%-random}
2846 do_random ${action#--} $COMPONENT_LIST
2848 --enable-random=*|--disable-random=*)
2849 action=${opt%%-random=*}
2850 do_random ${action#--} $optval
2852 --enable-*=*|--disable-*=*)
2853 eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
2854 is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
2855 eval list=\$$(toupper $thing)_LIST
2856 name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
2857 list=$(filter "$name" $list)
2858 [ "$list" = "" ] && warn "Option $opt did not match anything"
2861 --enable-?*|--disable-?*)
2862 eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
2863 if is_in $option $COMPONENT_LIST; then
2864 test $action = disable && action=unset
2865 eval $action \$$(toupper ${option%s})_LIST
2866 elif is_in $option $CMDLINE_SELECT; then
2873 NAME="${opt#--list-}"
2874 is_in $NAME $COMPONENT_LIST || die_unknown $opt
2876 eval show_list $NAME \$$(toupper $NAME)_LIST
2878 --help|-h) show_help
2880 --fatal-warnings) enable fatal_warnings
2883 optname="${opt%%=*}"
2884 optname="${optname#--}"
2885 optname=$(echo "$optname" | sed 's/-/_/g')
2886 if is_in $optname $CMDLINE_SET; then
2887 eval $optname='$optval'
2888 elif is_in $optname $CMDLINE_APPEND; then
2889 append $optname "$optval"
2897 disabled logging && logfile=/dev/null
2899 echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
2902 test -n "$cross_prefix" && enable cross_compile
2904 if enabled cross_compile; then
2905 test -n "$arch" && test -n "$target_os" ||
2906 die "Must specify target arch and OS when cross-compiling"
2909 ar_default="${cross_prefix}${ar_default}"
2910 cc_default="${cross_prefix}${cc_default}"
2911 cxx_default="${cross_prefix}${cxx_default}"
2912 nm_default="${cross_prefix}${nm_default}"
2913 pkg_config_default="${cross_prefix}${pkg_config_default}"
2914 ranlib_default="${cross_prefix}${ranlib_default}"
2915 strip_default="${cross_prefix}${strip_default}"
2916 windres_default="${cross_prefix}${windres_default}"
2918 sysinclude_default="${sysroot}/usr/include"
2920 test -n "$valgrind" && toolchain="valgrind-memcheck"
2922 case "$toolchain" in
2925 add_cflags -fsanitize=address
2926 add_ldflags -fsanitize=address
2930 add_cflags -fsanitize=thread -pie
2931 add_ldflags -fsanitize=thread -pie
2935 add_cflags -fsanitize=undefined
2936 add_ldflags -fsanitize=undefined
2940 add_cflags -fsanitize=address
2941 add_ldflags -fsanitize=address
2945 add_cflags -fsanitize=thread -pie -fPIC
2946 add_ldflags -fsanitize=thread -pie -fPIC
2950 add_cflags -fsanitize=undefined
2951 add_ldflags -fsanitize=undefined
2954 target_exec_default=${valgrind:-"valgrind"}
2955 target_exec_args="--tool=massif --alloc-fn=av_malloc --alloc-fn=av_mallocz --alloc-fn=av_calloc --alloc-fn=av_fast_padded_malloc --alloc-fn=av_fast_malloc --alloc-fn=av_realloc_f --alloc-fn=av_fast_realloc --alloc-fn=av_realloc"
2958 target_exec_default=${valgrind:-"valgrind"}
2959 target_exec_args="--error-exitcode=1 --malloc-fill=0x2a --track-origins=yes --leak-check=full --gen-suppressions=all --suppressions=$source_path/tests/fate-valgrind.supp"
2962 # Check whether the current MSVC version needs the C99 converter.
2963 # From MSVC 2013 (compiler major version 18) onwards, it does actually
2964 # support enough of C99 to build ffmpeg. Default to the new
2965 # behaviour if the regexp was unable to match anything, since this
2966 # successfully parses the version number of existing supported
2967 # versions that require the converter (MSVC 2010 and 2012).
2968 cl_major_ver=$(cl 2>&1 | sed -n 's/.*Version \([[:digit:]]\{1,\}\)\..*/\1/p')
2969 if [ -z "$cl_major_ver" ] || [ $cl_major_ver -ge 18 ]; then
2972 cc_default="c99wrap cl"
2975 nm_default="dumpbin -symbols"
2977 target_os_default="win32"
2978 # Use a relative path for TMPDIR. This makes sure all the
2979 # ffconf temp files are written with a relative path, avoiding
2980 # issues with msys/win32 path conversion for MSVC parameters
2981 # such as -Fo<file> or -out:<file>.
2987 nm_default="dumpbin -symbols"
2989 target_os_default="win32"
2993 add_cflags -fprofile-arcs -ftest-coverage
2994 add_ldflags -fprofile-arcs -ftest-coverage
2997 add_cflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all
2998 add_ldflags -Wl,-z,relro -Wl,-z,now
3001 die "Unknown toolchain $toolchain"
3005 set_default arch cc cxx doxygen pkg_config ranlib strip sysinclude \
3006 target_exec target_os yasmexe
3007 enabled cross_compile || host_cc_default=$cc
3010 if ! $pkg_config --version >/dev/null 2>&1; then
3011 warn "$pkg_config not found, library detection may fail."
3015 if test $doxygen != $doxygen_default && \
3016 ! $doxygen --version >/dev/null 2>&1; then
3017 warn "Specified doxygen \"$doxygen\" not found, API documentation will fail to build."
3022 mingw32*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
3026 EXESUF=$(exesuf $target_os)
3027 HOSTEXESUF=$(exesuf $host_os)
3029 # set temporary file name
3030 : ${TMPDIR:=$TEMPDIR}
3034 if [ -n "$tempprefix" ] ; then
3036 echo $tempprefix.${HOSTNAME}.${UID}
3038 elif ! check_cmd mktemp -u XXXXXX; then
3039 # simple replacement for missing mktemp
3040 # NOT SAFE FOR GENERAL USE
3042 echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
3047 tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
3048 (set -C; exec > $tmp) 2>/dev/null ||
3049 die "Unable to create temporary file in $TMPDIR."
3050 append TMPFILES $tmp
3054 trap 'rm -f -- $TMPFILES' EXIT
3059 tmpfile TMPE $EXESUF
3071 # make sure we can execute files in $TMPDIR
3072 cat > $TMPSH 2>> $logfile <<EOF
3075 chmod +x $TMPSH >> $logfile 2>&1
3076 if ! $TMPSH >> $logfile 2>&1; then
3078 Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
3079 variable to another directory and make sure that it is not mounted noexec.
3081 die "Sanity test failed."
3087 -std=c99) echo -c99 ;;
3088 -mcpu=*) echo -arch ${flag#*=} ;;
3089 -mieee) echo -ieee ;;
3090 -O*|-fast) echo $flag ;;
3091 -fno-math-errno) echo -assume nomath_errno ;;
3093 -Wall) echo -msg_enable level2 ;;
3094 -Wno-pointer-sign) echo -msg_disable ptrmismatch1 ;;
3095 -Wl,*) echo $flag ;;
3105 -Wno-switch) echo -Wno-switch-enum ;;
3106 -Wno-format-zero-length) ;;
3107 -Wdisabled-optimization) ;;
3108 -Wno-pointer-sign) echo -Wno-other ;;
3114 msvc_common_flags(){
3117 # In addition to specifying certain flags under the compiler
3118 # specific filters, they must be specified here as well or else the
3119 # generic catch all at the bottom will print the original flag.
3123 -fomit-frame-pointer) ;;
3127 -fno-signed-zeros) ;;
3131 -lz) echo zlib.lib ;;
3132 -lavifil32) echo vfw32.lib ;;
3133 -lavicap32) echo vfw32.lib user32.lib ;;
3134 -l*) echo ${flag#-l}.lib ;;
3141 msvc_common_flags "$@"
3144 -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
3145 -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
3146 -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
3154 msvc_common_flags "$@"
3157 # Despite what Intel's documentation says -Wall, which is supported
3158 # on Windows, does enable remarks so disable them here.
3159 -Wall) echo $flag -Qdiag-disable:remark ;;
3160 -std=c99) echo -Qstd=c99 ;;
3178 -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
3179 -fomit-frame-pointer) echo -Mnoframe ;;
3190 case "${flag#*=}" in
3191 native) echo -xtarget=native ;;
3192 v9|niagara) echo -xarch=sparc ;;
3193 ultrasparc) echo -xarch=sparcvis ;;
3194 ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
3195 i586|pentium) echo -xchip=pentium ;;
3196 i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
3197 pentium3*|c3-2) echo -xtarget=pentium3 ;;
3198 pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
3199 pentium4*) echo -xtarget=pentium4 ;;
3200 prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
3201 *-sse3) echo -xarch=sse3 ;;
3202 core2) echo -xarch=ssse3 -xchip=core2 ;;
3203 bonnell) echo -xarch=ssse3 ;;
3204 corei7|nehalem) echo -xtarget=nehalem ;;
3205 westmere) echo -xtarget=westmere ;;
3206 silvermont) echo -xarch=sse4_2 ;;
3207 corei7-avx|sandybridge) echo -xtarget=sandybridge ;;
3208 core-avx*|ivybridge|haswell|broadwell)
3210 amdfam10|barcelona) echo -xtarget=barcelona ;;
3211 btver1) echo -xarch=amdsse4a ;;
3212 btver2|bdver*) echo -xarch=avx ;;
3213 athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
3214 k8|opteron|athlon64|athlon-fx)
3215 echo -xarch=sse2a ;;
3216 athlon*) echo -xarch=pentium_proa ;;
3219 -std=c99) echo -xc99 ;;
3220 -fomit-frame-pointer) echo -xregs=frameptr ;;
3221 -fPIC) echo -KPIC -xcode=pic32 ;;
3222 -W*,*) echo $flag ;;
3223 -f*-*|-W*|-mimpure-text) ;;
3234 case "${flag#*=}" in
3235 armv7-a|cortex-a*) echo -mv=7a8 ;;
3236 armv7-r|cortex-r*) echo -mv=7r4 ;;
3237 armv7-m|cortex-m*) echo -mv=7m3 ;;
3238 armv6*|arm11*) echo -mv=6 ;;
3239 armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
3241 armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
3244 -mfpu=neon) echo --float_support=vfpv3 --neon ;;
3245 -mfpu=vfp) echo --float_support=vfpv2 ;;
3246 -mfpu=vfpv3) echo --float_support=vfpv3 ;;
3247 -mfpu=vfpv3-d16) echo --float_support=vfpv3d16 ;;
3248 -msoft-float) echo --float_support=vfplib ;;
3249 -O[0-3]|-mf=*) echo $flag ;;
3251 -pds=*) echo $flag ;;
3252 -D*|-I*) echo $flag ;;
3253 --gcc|--abi=*) echo $flag ;;
3263 unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
3264 unset _ld_o _ldflags _ld_lib _ld_path
3265 unset _depflags _DEPCMD _DEPFLAGS
3268 if $_cc --version 2>&1 | grep -q '^GNU assembler'; then
3269 true # no-op to avoid reading stdin in following checks
3270 elif $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
3272 gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
3273 _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
3274 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3277 elif $_cc -v 2>&1 | grep -qi ^gcc; then
3279 gcc_version=$($_cc --version | head -n1)
3280 gcc_basever=$($_cc -dumpversion)
3281 gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
3282 gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
3283 _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
3284 if ! $_cc -dumpversion | grep -q '^2\.'; then
3285 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3289 elif $_cc --version 2>/dev/null | grep -q ^icc; then
3291 _ident=$($_cc --version | head -n1)
3296 _flags_filter=icc_flags
3297 elif $_cc -v 2>&1 | grep -q xlc; then
3299 _ident=$($_cc -qversion 2>/dev/null | head -n1)
3301 _cflags_size='-O5 -qcompact'
3302 elif $_cc -V 2>/dev/null | grep -q Compaq; then
3304 _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
3306 _cflags_speed='-fast'
3308 _flags_filter=ccc_flags
3309 elif $_cc --vsn 2>/dev/null | grep -Eq "ARM (C/C\+\+ )?Compiler"; then
3310 test -d "$sysroot" || die "No valid sysroot specified."
3312 _ident=$($_cc --vsn | head -n1 | sed 's/.*: //')
3313 armcc_conf="$PWD/armcc.conf"
3314 $_cc --arm_linux_configure \
3315 --arm_linux_config_file="$armcc_conf" \
3316 --configure_sysroot="$sysroot" \
3317 --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
3318 die "Error creating armcc configuration file."
3319 $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
3320 _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
3321 as_default="${cross_prefix}gcc"
3325 elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
3327 _ident=$($_cc -version | head -n1 | tr -s ' ')
3328 _flags='--gcc --abi=eabi -me'
3331 _depflags='-ppa -ppd=$(@:.o=.d)'
3332 _cflags_speed='-O3 -mf=5'
3333 _cflags_size='-O3 -mf=2'
3334 _flags_filter=tms470_flags
3335 elif $_cc -v 2>&1 | grep -q clang; then
3337 _ident=$($_cc --version | head -n1)
3338 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3341 elif $_cc -V 2>&1 | grep -q Sun; then
3343 _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
3344 _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
3345 _DEPFLAGS='-xM1 -xc99'
3348 _cflags_size='-O5 -xspace'
3349 _flags_filter=suncc_flags
3350 elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
3352 _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
3353 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3356 _flags_filter='filter_out -Wdisabled-optimization'
3357 elif $_cc -v 2>&1 | grep -q Open64; then
3359 _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
3360 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3363 _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
3364 elif $_cc -V 2>&1 | grep -q Portland; then
3366 _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
3367 opt_common='-alias=ansi -Mdse -Mlre -Mpre'
3368 _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
3369 _cflags_size="-O2 -Munroll=c:1 $opt_common"
3371 _flags_filter=pgi_flags
3372 elif $_cc 2>&1 | grep -q Microsoft; then
3374 _ident=$($cc 2>&1 | head -n1)
3375 _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
3376 _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
3379 if $_cc 2>&1 | grep -q Linker; then
3386 _flags_filter=msvc_flags
3388 _ld_path='-libpath:'
3390 _cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64'
3391 if [ $pfx = hostcc ]; then
3392 append _cflags -Dsnprintf=_snprintf
3395 elif $_cc 2>&1 | grep -q Intel; then
3397 _ident=$($cc 2>&1 | head -n1)
3398 _depflags='-QMMD -QMF$(@:.o=.d) -QMT$@'
3399 # Not only is O3 broken on 13.x+ but it is slower on all previous
3400 # versions (tested) as well.
3402 _cflags_size="-O1 -Oi" # -O1 without -Oi miscompiles stuff
3403 if $_cc 2>&1 | grep -q Linker; then
3410 _flags_filter=icl_flags
3412 _ld_path='-libpath:'
3413 # -Qdiag-error to make icl error when seeing certain unknown arguments
3414 _flags='-nologo -Qdiag-error:4044,10157'
3415 # -Qvec- -Qsimd- to prevent miscompilation, -GS, fp:precise for consistency
3416 # with MSVC which enables it by default.
3417 _cflags='-D_USE_MATH_DEFINES -FIstdlib.h -Dstrtoll=_strtoi64 -Qms0 -Qvec- -Qsimd- -GS -fp:precise'
3418 if [ $pfx = hostcc ]; then
3419 append _cflags -Dsnprintf=_snprintf
3421 elif $_cc --version 2>/dev/null | grep -q ^cparser; then
3423 _ident=$($_cc --version | head -n1)
3427 _flags_filter=cparser_flags
3430 eval ${pfx}_type=\$_type
3431 eval ${pfx}_ident=\$_ident
3435 eval ${1}_C=\${_cc_c-\${${1}_C}}
3436 eval ${1}_E=\${_cc_e-\${${1}_E}}
3437 eval ${1}_O=\${_cc_o-\${${1}_O}}
3439 if [ -n "$_depflags" ]; then
3440 eval ${1}_DEPFLAGS=\$_depflags
3442 eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
3443 eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
3444 eval DEP${1}FLAGS=\$_flags
3449 cflags_filter=$_flags_filter
3450 cflags_speed=$_cflags_speed
3451 cflags_size=$_cflags_size
3452 cflags_noopt=$_cflags_noopt
3453 add_cflags $_flags $_cflags
3454 cc_ldflags=$_ldflags
3457 probe_cc hostcc "$host_cc"
3458 host_cflags_filter=$_flags_filter
3459 add_host_cflags $_flags $_cflags
3462 test -n "$cc_type" && enable $cc_type ||
3463 warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
3465 : ${as_default:=$cc}
3466 : ${dep_cc_default:=$cc}
3467 : ${ld_default:=$cc}
3468 : ${host_ld_default:=$host_cc}
3469 set_default ar as dep_cc ld host_ld windres
3472 asflags_filter=$_flags_filter
3473 add_asflags $_flags $_cflags
3477 ldflags_filter=$_flags_filter
3478 add_ldflags $_flags $_ldflags
3479 test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
3481 LD_LIB=${_ld_lib-$LD_LIB}
3482 LD_PATH=${_ld_path-$LD_PATH}
3484 probe_cc hostld "$host_ld"
3485 host_ldflags_filter=$_flags_filter
3486 add_host_ldflags $_flags $_ldflags
3487 HOSTLD_O=${_ld_o-$HOSTLD_O}
3489 if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
3490 probe_cc depcc "$dep_cc"
3491 CCDEP=${_DEPCMD:-$DEPCMD}
3492 CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
3496 if $ar 2>&1 | grep -q Microsoft; then
3499 elif $ar 2>&1 | grep -q 'Texas Instruments'; then
3502 elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
3503 arflags='-Xany -r -c'
3510 add_cflags $extra_cflags
3511 add_cxxflags $extra_cxxflags
3512 add_asflags $extra_cflags
3514 if test -n "$sysroot"; then
3517 add_cppflags --sysroot="$sysroot"
3518 add_ldflags --sysroot="$sysroot"
3519 # On Darwin --sysroot may be ignored, -isysroot always affects headers and linking
3520 add_cppflags -isysroot "$sysroot"
3521 add_ldflags -isysroot "$sysroot"
3524 add_cppflags -I"$sysinclude"
3525 add_ldflags --sysroot="$sysroot"
3530 if test "$cpu" = host; then
3531 enabled cross_compile &&
3532 die "--cpu=host makes no sense when cross-compiling."
3537 $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
3539 s/.*$1=\\([^ ]*\\).*/\\1/
3544 cpu=$(check_native -march || check_native -mcpu)
3548 test "${cpu:-host}" = host &&
3549 die "--cpu=host not supported with compiler $cc"
3552 # Deal with common $arch aliases
3566 "Power Macintosh"|ppc*|powerpc*)
3581 i[3-6]86*|i86pc|BePC|x86pc|x86_64|x86_32|amd64)
3586 is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
3589 # Add processor-specific flags
3590 if enabled aarch64; then
3594 cpuflags="-march=$cpu"
3597 cpuflags="-mcpu=$cpu"
3601 elif enabled alpha; then
3603 cpuflags="-mcpu=$cpu"
3605 elif enabled arm; then
3608 check_cpp_condition stddef.h \
3609 "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
3614 if check_arm_arch 4; then echo armv4;
3615 elif check_arm_arch 4T; then echo armv4t;
3616 elif check_arm_arch 5; then echo armv5;
3617 elif check_arm_arch 5E; then echo armv5e;
3618 elif check_arm_arch 5T; then echo armv5t;
3619 elif check_arm_arch 5TE; then echo armv5te;
3620 elif check_arm_arch 5TEJ; then echo armv5te;
3621 elif check_arm_arch 6; then echo armv6;
3622 elif check_arm_arch 6J; then echo armv6j;
3623 elif check_arm_arch 6K; then echo armv6k;
3624 elif check_arm_arch 6Z; then echo armv6z;
3625 elif check_arm_arch 6ZK; then echo armv6zk;
3626 elif check_arm_arch 6T2; then echo armv6t2;
3627 elif check_arm_arch 7; then echo armv7;
3628 elif check_arm_arch 7A 7_A; then echo armv7-a;
3629 elif check_arm_arch 7R 7_R; then echo armv7-r;
3630 elif check_arm_arch 7M 7_M; then echo armv7-m;
3631 elif check_arm_arch 7EM 7E_M; then echo armv7-m;
3632 elif check_arm_arch 8A 8_A; then echo armv8-a;
3636 [ "$cpu" = generic ] && cpu=$(probe_arm_arch)
3640 cpuflags="-march=$cpu"
3641 subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
3644 cpuflags="-mcpu=$cpu"
3646 cortex-a*) subarch=armv7a ;;
3647 cortex-r*) subarch=armv7r ;;
3648 cortex-m*) enable thumb; subarch=armv7m ;;
3649 arm11*) subarch=armv6 ;;
3650 arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
3651 armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
3652 *) subarch=$(probe_arm_arch) ;;
3658 armv5t*) enable fast_clz ;;
3661 disabled fast_unaligned || enable fast_unaligned
3665 elif enabled avr32; then
3670 cpuflags="-mpart=$cpu"
3674 cpuflags="-march=$cpu"
3678 cpuflags="-mcpu=$cpu"
3682 cpuflags="-march=$cpu"
3686 elif enabled bfin; then
3688 cpuflags="-mcpu=$cpu"
3690 elif enabled mips; then
3692 cpuflags="-march=$cpu"
3708 24kef*|34kf*|1004kf*)
3716 elif enabled ppc; then
3721 case $(tolower $cpu) in
3722 601|ppc601|powerpc601)
3723 cpuflags="-mcpu=601"
3726 603*|ppc603*|powerpc603*)
3727 cpuflags="-mcpu=603"
3730 604*|ppc604*|powerpc604*)
3731 cpuflags="-mcpu=604"
3734 g3|75*|ppc75*|powerpc75*)
3735 cpuflags="-mcpu=750"
3738 g4|745*|ppc745*|powerpc745*)
3739 cpuflags="-mcpu=7450"
3741 74*|ppc74*|powerpc74*)
3742 cpuflags="-mcpu=7400"
3744 g5|970|ppc970|powerpc970)
3745 cpuflags="-mcpu=970"
3748 cpuflags="-mcpu=$cpu"
3751 cpuflags="-mcpu=cell"
3755 cpuflags="-mcpu=e500mc"
3759 cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
3764 cpuflags="-mcpu=8540 -mhard-float"
3770 elif enabled sparc; then
3773 cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
3774 cpuflags="-mcpu=$cpu"
3776 ultrasparc*|niagara[234])
3777 cpuflags="-mcpu=$cpu"
3781 elif enabled x86; then
3785 cpuflags="-march=$cpu"
3788 # targets that do NOT support nopl and conditional mov (cmov)
3789 pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
3790 cpuflags="-march=$cpu"
3793 # targets that do support nopl and conditional mov (cmov)
3794 i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx\
3795 |core*|atom|bonnell|nehalem|westmere|silvermont|sandybridge|ivybridge|haswell|broadwell|amdfam10|barcelona|b[dt]ver*)
3796 cpuflags="-march=$cpu"
3800 # targets that do support conditional mov but on which it's slow
3801 pentium4|pentium4m|prescott|nocona)
3802 cpuflags="-march=$cpu"
3810 if [ "$cpu" != generic ]; then
3811 add_cflags $cpuflags
3812 add_asflags $cpuflags
3815 # compiler sanity check
3817 int main(void){ return 0; }
3819 if test "$?" != 0; then
3820 echo "$cc is unable to create an executable file."
3821 if test -z "$cross_prefix" && ! enabled cross_compile ; then
3822 echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
3823 echo "Only do this if you know what cross compiling means."
3825 die "C compiler test failed."
3828 add_cppflags -D_ISOC99_SOURCE
3829 add_cxxflags -D__STDC_CONSTANT_MACROS
3830 check_cflags -std=c99
3831 check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
3834 check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
3838 add_host_cppflags -D_ISOC99_SOURCE
3839 check_host_cflags -std=c99
3840 check_host_cflags -Wall
3841 check_host_cflags -O3
3847 check_code cc "" "int test[2*($expr) - 1]" &&
3848 subarch=$arch64 || subarch=$arch32
3856 check_64bit mips mips64 '_MIPS_SIM > 1'
3860 check_64bit parisc parisc64 'sizeof(void *) > 4'
3864 check_64bit ppc ppc64 'sizeof(void *) > 4'
3868 check_64bit s390 s390x 'sizeof(void *) > 4'
3872 check_64bit sparc sparc64 'sizeof(void *) > 4'
3876 check_64bit x86_32 x86_64 'sizeof(void *) > 4'
3877 if test "$subarch" = "x86_64"; then
3882 check_cc <<EOF && subarch="ppc64"
3883 int test[(int)sizeof(char*) - 7];
3889 enabled spic && enable_weak pic
3895 add_cppflags '-I\$(SRC_PATH)/compat/aix'
3896 enabled shared && add_ldflags -Wl,-brtl
3900 SLIB_INSTALL_NAME='$(SLIBNAME)'
3902 # soname not set on purpose
3906 prefix_default="/boot/common"
3907 network_extralibs="-lnetwork"
3911 SHFLAGS='-shared -Wl,-h,$$(@F)'
3912 enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
3913 network_extralibs="-lsocket -lnsl"
3914 # When using suncc to build, the Solaris linker will mark
3915 # an executable with each instruction set encountered by
3916 # the Solaris assembler. As our libraries contain their own
3917 # guards for processor-specific code, instead suppress
3918 # generation of the HWCAPS ELF section on Solaris x86 only.
3919 enabled_all suncc x86 &&
3920 echo "hwcap_1 = OVERRIDE;" > mapfile &&
3921 add_ldflags -Wl,-M,mapfile
3922 nm_default='nm -P -g'
3926 oss_indev_extralibs="-lossaudio"
3927 oss_outdev_extralibs="-lossaudio"
3928 enabled gcc || check_ldflags -Wl,-zmuldefs
3933 SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
3935 oss_indev_extralibs="-lossaudio"
3936 oss_outdev_extralibs="-lossaudio"
3944 add_extralibs -lpoll -lgnugetopt
3948 test "${as#*gas-preprocessor.pl}" != "$as" || gas="${gas:=gas-preprocessor.pl} ${as:=$cc}"
3949 enabled ppc && add_asflags -force_cpusubtype_ALL
3950 SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
3951 enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
3953 add_ldflags -Wl,-dynamic,-search_paths_first
3955 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
3956 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
3958 enabled x86_64 && objformat="macho64"
3959 enabled_any pic shared ||
3960 { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
3963 if test $target_os = "mingw32ce"; then
3969 if enabled x86_64; then
3970 LIBTARGET="i386:x86-64"
3971 elif enabled arm; then
3974 enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres
3975 check_ldflags -Wl,--nxcompat
3976 check_ldflags -Wl,--dynamicbase
3977 shlibdir_default="$bindir_default"
3980 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
3981 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
3982 dlltool="${cross_prefix}dlltool"
3983 if check_cmd lib.exe -list; then
3984 SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
3985 if enabled x86_64; then
3988 elif check_cmd $dlltool --version; then
3989 SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); $(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
3991 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
3993 SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
3994 SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
3995 SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.orig.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
4002 if enabled shared; then
4003 # Link to the import library instead of the normal static library
4006 # Cannot build both shared and static libs with MSVC or icl.
4009 shlibdir_default="$bindir_default"
4012 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4013 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4014 SLIB_CREATE_DEF_CMD='$(SRC_PATH)/compat/windows/makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
4015 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4017 SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
4018 SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
4019 SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
4026 shlibdir_default="$bindir_default"
4029 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4030 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4031 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4033 SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
4034 SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
4037 enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres
4039 *-dos|freedos|opendos)
4040 network_extralibs="-lsocket"
4043 add_cppflags -U__STRICT_ANSI__
4050 ranlib="echo ignoring ranlib"
4056 add_cppflags -D_GNU_SOURCE
4057 add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
4058 SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
4062 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
4063 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
4064 SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
4065 echo PROTMODE >> $(SUBDIR)$(NAME).def; \
4066 echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
4067 echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
4068 echo EXPORTS >> $(SUBDIR)$(NAME).def; \
4069 emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
4070 SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
4071 emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
4072 SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
4074 enable_weak os2threads
4077 add_cppflags -D_BSD_SOURCE
4082 add_cppflags -D_QNX_SOURCE
4083 network_extralibs="-lsocket"
4088 add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
4089 add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
4090 add_ldflags -Wl,--target1-abs,--no-undefined \
4091 -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
4092 -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
4093 add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
4094 -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
4095 -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
4098 add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
4103 add_cppflags -D_C99_SNPRINTF_EXTENSION \
4104 -D_REENTRANT_SOURCE \
4105 -D_RESEARCH_SOURCE \
4108 add_compat strtod.o strtod=avpriv_strtod
4109 network_extralibs='-lbsd'
4110 exeobjs=compat/plan9/main.o
4117 die "Unknown OS '$target_os'."
4121 # determine libc flavour
4126 # uclibc defines __GLIBC__, so it needs to be checked before glibc.
4127 if check_${pfx}cpp_condition features.h "defined __UCLIBC__"; then
4128 eval ${pfx}libc_type=uclibc
4129 add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
4130 elif check_${pfx}cpp_condition features.h "defined __GLIBC__"; then
4131 eval ${pfx}libc_type=glibc
4132 add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
4133 # MinGW headers can be installed on Cygwin, so check for newlib first.
4134 elif check_${pfx}cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
4135 eval ${pfx}libc_type=newlib
4136 add_${pfx}cppflags -U__STRICT_ANSI__
4137 # MinGW64 is backwards compatible with MinGW32, so check for it first.
4138 elif check_${pfx}cpp_condition _mingw.h "defined __MINGW64_VERSION_MAJOR"; then
4139 eval ${pfx}libc_type=mingw64
4140 if check_${pfx}cpp_condition _mingw.h "__MINGW64_VERSION_MAJOR < 3"; then
4141 add_compat msvcrt/snprintf.o
4142 add_cflags "-include $source_path/compat/msvcrt/snprintf.h"
4144 add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
4145 eval test \$${pfx_no_}cc_type = "gcc" &&
4146 add_${pfx}cppflags -D__printf__=__gnu_printf__
4147 elif check_${pfx}cpp_condition _mingw.h "defined __MINGW_VERSION" ||
4148 check_${pfx}cpp_condition _mingw.h "defined __MINGW32_VERSION"; then
4149 eval ${pfx}libc_type=mingw32
4150 check_${pfx}cpp_condition _mingw.h "__MINGW32_MAJOR_VERSION > 3 || \
4151 (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
4152 die "ERROR: MinGW32 runtime version must be >= 3.15."
4153 add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
4154 eval test \$${pfx_no_}cc_type = "gcc" &&
4155 add_${pfx}cppflags -D__printf__=__gnu_printf__
4156 elif check_${pfx}cpp_condition crtversion.h "defined _VC_CRT_MAJOR_VERSION"; then
4157 eval ${pfx}libc_type=msvcrt
4158 # The MSVC 2010 headers (Win 7.0 SDK) set _WIN32_WINNT to
4159 # 0x601 by default unless something else is set by the user.
4160 # This can easily lead to us detecting functions only present
4161 # in such new versions and producing binaries requiring windows 7.0.
4162 # Therefore explicitly set the default to XP unless the user has
4163 # set something else on the command line.
4164 check_${pfx}cpp_condition stdlib.h "defined(_WIN32_WINNT)" ||
4165 add_${pfx}cppflags -D_WIN32_WINNT=0x0502
4166 elif check_${pfx}cpp_condition stddef.h "defined __KLIBC__"; then
4167 eval ${pfx}libc_type=klibc
4168 elif check_${pfx}cpp_condition sys/cdefs.h "defined __BIONIC__"; then
4169 eval ${pfx}libc_type=bionic
4170 elif check_${pfx}cpp_condition sys/brand.h "defined LABELED_BRAND_NAME"; then
4171 eval ${pfx}libc_type=solaris
4172 add_${pfx}cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
4177 test -n "$libc_type" && enable libc_$libc_type
4179 test -n "$host_libc_type" && enable host_libc_$host_libc_type
4183 add_compat strtod.o strtod=avpriv_strtod
4186 add_compat strtod.o strtod=avpriv_strtod
4187 add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \
4188 _snprintf=avpriv_snprintf \
4189 vsnprintf=avpriv_vsnprintf
4193 # hacks for compiler/libc/os combinations
4195 if enabled_all tms470 libc_glibc; then
4196 CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
4197 add_cppflags -D__USER_LABEL_PREFIX__=
4198 add_cppflags -D__builtin_memset=memset
4199 add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
4200 add_cflags -pds=48 # incompatible redefinition of macro
4203 if enabled_all ccc libc_glibc; then
4204 add_ldflags -Wl,-z,now # calls to libots crash without this
4207 check_compile_assert flt_lim "float.h limits.h" "DBL_MAX == (double)DBL_MAX" ||
4208 add_cppflags '-I\$(SRC_PATH)/compat/float'
4211 echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
4214 echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $FFMPEG_CONFIGURATION)" >config.fate
4216 check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable_weak pic
4218 set_default $PATHS_LIST
4221 # we need to build at least one lib type
4222 if ! enabled_any static shared; then
4224 At least one library type must be built.
4225 Specify --enable-static to build the static libraries or --enable-shared to
4226 build the shared libraries as well. To only build the shared libraries specify
4227 --disable-static in addition to --enable-shared.
4232 die_license_disabled() {
4233 enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
4236 die_license_disabled_gpl() {
4237 enabled $1 || { enabled $2 && die "$2 is incompatible with the gpl and --enable-$1 is not specified."; }
4240 die_license_disabled gpl frei0r
4241 die_license_disabled gpl libcdio
4242 die_license_disabled gpl libutvideo
4243 die_license_disabled gpl libvidstab
4244 die_license_disabled gpl libx264
4245 die_license_disabled gpl libx265
4246 die_license_disabled gpl libxavs
4247 die_license_disabled gpl libxvid
4248 die_license_disabled gpl libzvbi
4249 die_license_disabled gpl x11grab
4251 die_license_disabled nonfree libaacplus
4252 die_license_disabled nonfree libfaac
4253 enabled gpl && die_license_disabled_gpl nonfree libfdk_aac
4254 enabled gpl && die_license_disabled_gpl nonfree openssl
4256 die_license_disabled version3 libopencore_amrnb
4257 die_license_disabled version3 libopencore_amrwb
4258 die_license_disabled version3 libvo_aacenc
4259 die_license_disabled version3 libvo_amrwbenc
4261 enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
4263 disabled optimizations || check_cflags -fomit-frame-pointer
4266 disabled pic && return
4269 case "$target_os" in
4279 enabled pic && enable_weak_pic
4281 check_cc <<EOF || die "Symbol mangling check failed."
4284 sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
4285 extern_prefix=${sym%%ff_extern*}
4287 check_cc <<EOF && enable_weak inline_asm
4288 void foo(void) { __asm__ volatile ("" ::); }
4292 for restrict_keyword in restrict __restrict__ __restrict; do
4293 check_cc <<EOF && _restrict=$restrict_keyword && break
4294 void foo(char * $restrict_keyword p);
4298 check_cc <<EOF && enable pragma_deprecated
4299 void foo(void) { _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") }
4302 check_cc <<EOF && enable attribute_packed
4303 struct { int x; } __attribute__((packed)) x;
4306 check_cc <<EOF && enable attribute_may_alias
4307 union { int x; } __attribute__((may_alias)) x;
4310 check_cc <<EOF || die "endian test failed"
4311 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
4313 od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
4315 if [ "$cpu" = "power7" ] || [ "$cpu" = "power8" ] ;then
4316 if ! enabled bigendian ;then
4322 if enabled asm; then
4323 enabled arm && nogas=die
4324 enabled_all ppc altivec && [ $target_os_default != aix ] && nogas=warn
4326 check_as <<EOF && enable gnu_as || \
4327 $nogas "GNU assembler not found, install gas-preprocessor"
4334 check_as <<EOF || $nogas "GNU assembler not found, install gas-preprocessor"
4338 check_as <<EOF && enable as_func
4344 check_inline_asm inline_asm_labels '"1:\n"'
4346 check_inline_asm inline_asm_nonlocal_labels '"Label:\n"'
4348 if enabled aarch64; then
4349 enabled armv8 && check_insn armv8 'prfm pldl1strm, [x0]'
4350 # internal assembler in clang 3.3 does not support this instruction
4351 enabled neon && check_insn neon 'ext v0.8B, v0.8B, v1.8B, #1'
4352 enabled vfp && check_insn vfp 'fmadd d0, d0, d1, d2'
4354 map 'enabled_any ${v}_external ${v}_inline || disable $v' $ARCH_EXT_LIST_ARM
4356 elif enabled alpha; then
4360 elif enabled arm; then
4362 check_cpp_condition stddef.h "defined __thumb__" && check_cc <<EOF && enable_weak thumb
4363 float func(float a, float b){ return a+b; }
4366 enabled thumb && check_cflags -mthumb || check_cflags -marm
4368 if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
4370 elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
4371 case "${cross_prefix:-$cc}" in
4372 *hardfloat*) enable vfp_args; fpabi=vfp ;;
4373 *) check_ld "cc" <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
4374 __asm__ (".eabi_attribute 28, 1");
4375 int main(void) { return 0; }
4378 warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
4381 enabled armv5te && check_insn armv5te 'qadd r0, r0, r0'
4382 enabled armv6 && check_insn armv6 'sadd16 r0, r0, r0'
4383 enabled armv6t2 && check_insn armv6t2 'movt r0, #0'
4384 enabled neon && check_insn neon 'vadd.i16 q0, q0, q0'
4385 enabled vfp && check_insn vfp 'fadds s0, s0, s0'
4386 enabled vfpv3 && check_insn vfpv3 'vmov.f32 s0, #1.0'
4388 [ $target_os = linux ] ||
4389 map 'enabled_any ${v}_external ${v}_inline || disable $v' \
4392 check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
4394 check_as <<EOF && enable as_dn_directive
4399 [ $target_os != win32 ] && enabled_all armv6t2 shared !pic && enable_weak_pic
4401 elif enabled mips; then
4403 check_inline_asm loongson '"dmult.g $1, $2, $3"'
4404 enabled mips32r2 && add_cflags "-mips32r2" && add_asflags "-mips32r2" &&
4405 check_inline_asm mips32r2 '"rotr $t0, $t1, 1"'
4406 enabled mipsdspr1 && add_cflags "-mdsp" && add_asflags "-mdsp" &&
4407 check_inline_asm mipsdspr1 '"addu.qb $t0, $t1, $t2"'
4408 enabled mipsdspr2 && add_cflags "-mdspr2" && add_asflags "-mdspr2" &&
4409 check_inline_asm mipsdspr2 '"absq_s.qb $t0, $t1"'
4410 enabled mipsfpu && add_cflags "-mhard-float" && add_asflags "-mhard-float" &&
4411 check_inline_asm mipsfpu '"madd.d $f0, $f2, $f4, $f6"'
4413 elif enabled parisc; then
4415 if enabled gcc; then
4416 case $($cc -dumpversion) in
4417 4.[3-8].*) check_cflags -fno-optimize-sibling-calls ;;
4421 elif enabled ppc; then
4423 enable local_aligned_8 local_aligned_16 local_aligned_32
4425 check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
4426 check_inline_asm ibm_asm '"add 0, 0, 0"'
4427 check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
4428 check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
4430 # AltiVec flags: The FSF version of GCC differs from the Apple version
4431 if enabled altivec; then
4432 check_cflags -maltivec -mabi=altivec &&
4433 { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
4434 check_cflags -faltivec
4436 # check if our compiler supports Motorola AltiVec C API
4437 check_cc <<EOF || disable altivec
4440 vector signed int v1 = (vector signed int) { 0 };
4441 vector signed int v2 = (vector signed int) { 1 };
4442 v1 = vec_add(v1, v2);
4447 enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
4450 if enabled vsx; then
4453 elif enabled x86; then
4455 check_builtin rdtsc intrin.h "__rdtsc()"
4456 check_builtin mm_empty mmintrin.h "_mm_empty()"
4458 enable local_aligned_8 local_aligned_16 local_aligned_32
4460 # check whether EBP is available on x86
4461 # As 'i' is stored on the stack, this program will crash
4462 # if the base pointer is used to access it because the
4463 # base pointer is cleared in the inline assembly code.
4464 check_exec_crash <<EOF && enable ebp_available
4466 __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
4470 # check whether EBX is available on x86
4471 check_inline_asm ebx_available '""::"b"(0)' &&
4472 check_inline_asm ebx_available '"":::"%ebx"'
4474 # check whether xmm clobbers are supported
4475 check_inline_asm xmm_clobbers '"":::"%xmm0"'
4477 check_inline_asm inline_asm_direct_symbol_refs '"movl '$extern_prefix'test, %eax"' ||
4478 check_inline_asm inline_asm_direct_symbol_refs '"movl '$extern_prefix'test(%rip), %eax"'
4480 # check whether binutils is new enough to compile SSSE3/MMXEXT
4481 enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
4482 enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
4484 if ! disabled_any asm mmx yasm; then
4485 if check_cmd $yasmexe --version; then
4486 enabled x86_64 && yasm_extra="-m amd64"
4487 yasm_debug="-g dwarf2"
4488 elif check_cmd nasm -v; then
4490 yasm_debug="-g -F dwarf"
4491 if enabled x86_64; then
4492 case "$objformat" in
4493 elf) objformat=elf64 ;;
4494 win32) objformat=win64 ;;
4499 YASMFLAGS="-f $objformat $yasm_extra"
4500 enabled pic && append YASMFLAGS "-DPIC"
4501 test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
4502 case "$objformat" in
4503 elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
4506 check_yasm "movbe ecx, [5]" && enable yasm ||
4507 die "yasm/nasm not found or too old. Use --disable-yasm for a crippled build."
4508 check_yasm "vextracti128 xmm0, ymm0, 0" || disable avx2_external
4509 check_yasm "vpmacsdd xmm0, xmm1, xmm2, xmm3" || disable xop_external
4510 check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
4511 check_yasm "CPU amdnop" || disable cpunop
4515 athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
4522 check_ldflags -Wl,--as-needed
4524 if check_func dlopen; then
4526 elif check_func dlopen -ldl; then
4530 if ! disabled network; then
4531 check_func getaddrinfo $network_extralibs
4532 check_func getservbyport $network_extralibs
4533 check_func inet_aton $network_extralibs
4535 check_type netdb.h "struct addrinfo"
4536 check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
4537 check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
4538 check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
4539 check_type poll.h "struct pollfd"
4540 check_type netinet/sctp.h "struct sctp_event_subscribe"
4541 check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
4542 check_type netinet/in.h "struct sockaddr_in6"
4543 check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
4544 check_type "sys/types.h sys/socket.h" socklen_t
4546 # Prefer arpa/inet.h over winsock2
4547 if check_header arpa/inet.h ; then
4548 check_func closesocket
4549 elif check_header winsock2.h ; then
4550 check_func_headers winsock2.h closesocket -lws2 &&
4551 network_extralibs="-lws2" ||
4552 { check_func_headers winsock2.h closesocket -lws2_32 &&
4553 network_extralibs="-lws2_32"; } || disable winsock2_h network
4554 check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
4556 check_type ws2tcpip.h socklen_t
4557 check_type ws2tcpip.h "struct addrinfo"
4558 check_type ws2tcpip.h "struct group_source_req"
4559 check_type ws2tcpip.h "struct ip_mreq_source"
4560 check_type ws2tcpip.h "struct ipv6_mreq"
4561 check_type winsock2.h "struct pollfd"
4562 check_struct winsock2.h "struct sockaddr" sa_len
4563 check_type ws2tcpip.h "struct sockaddr_in6"
4564 check_type ws2tcpip.h "struct sockaddr_storage"
4570 check_builtin atomic_cas_ptr atomic.h "void **ptr; void *oldval, *newval; atomic_cas_ptr(ptr, oldval, newval)"
4571 check_builtin machine_rw_barrier mbarrier.h "__machine_rw_barrier()"
4572 check_builtin MemoryBarrier windows.h "MemoryBarrier()"
4573 check_builtin sarestart signal.h "SA_RESTART"
4574 check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
4576 check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
4577 check_func ${malloc_prefix}memalign && enable memalign
4578 check_func ${malloc_prefix}posix_memalign && enable posix_memalign
4581 check_func clock_gettime || { check_func clock_gettime -lrt && add_extralibs -lrt; }
4584 check_func gethrtime
4586 check_func getrusage
4587 check_func gettimeofday
4589 check_func localtime_r
4590 check_func mach_absolute_time
4594 # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
4595 check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
4596 check_func sched_getaffinity
4597 check_func setrlimit
4598 check_struct "sys/stat.h" "struct stat" st_mtim.tv_nsec -D_BSD_SOURCE
4599 check_func strerror_r
4604 check_func_headers conio.h kbhit
4605 check_func_headers io.h setmode
4606 check_func_headers lzo/lzo1x.h lzo1x_999_compress
4607 check_func_headers stdlib.h getenv
4609 check_func_headers windows.h CoTaskMemFree -lole32
4610 check_func_headers windows.h GetProcessAffinityMask
4611 check_func_headers windows.h GetProcessTimes
4612 check_func_headers windows.h GetSystemTimeAsFileTime
4613 check_func_headers windows.h MapViewOfFile
4614 check_func_headers windows.h PeekNamedPipe
4615 check_func_headers windows.h SetConsoleTextAttribute
4616 check_func_headers windows.h Sleep
4617 check_func_headers windows.h VirtualAlloc
4618 check_func_headers glob.h glob
4620 check_func_headers "X11/Xlib.h X11/extensions/Xvlib.h" XvGetPortAttribute -lXv -lX11 -lXext
4622 check_header cl/cl.h
4623 check_header direct.h
4624 check_header dlfcn.h
4626 check_header dxva2api.h -D_WIN32_WINNT=0x0600
4628 check_header libcrystalhd/libcrystalhd_if.h
4629 check_header mach/mach_time.h
4630 check_header malloc.h
4632 check_header sys/mman.h
4633 check_header sys/param.h
4634 check_header sys/resource.h
4635 check_header sys/select.h
4636 check_header sys/time.h
4637 check_header sys/un.h
4638 check_header termios.h
4639 check_header unistd.h
4640 check_header vdpau/vdpau.h
4641 check_header vdpau/vdpau_x11.h
4642 check_header VideoDecodeAcceleration/VDADecoder.h
4643 check_header windows.h
4644 check_header X11/extensions/XvMClib.h
4645 check_header asm/types.h
4647 check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
4648 check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
4649 check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
4651 check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
4653 if ! disabled w32threads && ! enabled pthreads; then
4654 check_func_headers "windows.h process.h" _beginthreadex &&
4655 enable w32threads || disable w32threads
4658 # check for some common methods of building with pthread support
4659 # do this before the optional library checks as some of them require pthreads
4660 if ! disabled pthreads && ! enabled w32threads && ! enabled os2threads; then
4662 if check_func pthread_join -pthread && check_func pthread_create -pthread; then
4664 add_extralibs -pthread
4665 elif check_func pthread_join -pthreads && check_func pthread_create -pthreads; then
4666 add_cflags -pthreads
4667 add_extralibs -pthreads
4668 elif check_func pthread_join -ldl -pthread && check_func pthread_create -ldl -pthread; then
4669 add_cflags -ldl -pthread
4670 add_extralibs -ldl -pthread
4671 elif check_func pthread_join -lpthreadGC2 && check_func pthread_create -lpthreadGC2; then
4672 add_extralibs -lpthreadGC2
4673 elif check_lib pthread.h pthread_join -lpthread && check_lib pthread.h pthread_create -lpthread; then
4675 elif ! check_func pthread_join && ! check_func pthread_create; then
4678 check_code cc "pthread.h" "static pthread_mutex_t atomic_lock = PTHREAD_MUTEX_INITIALIZER" || disable pthreads
4682 if enabled pthreads; then
4683 check_func pthread_cancel
4686 disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
4687 disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
4689 check_lib math.h sin -lm && LIBM="-lm"
4690 disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd
4697 for func in $MATH_FUNCS; do
4698 eval check_mathfunc $func \${${func}_args:-1}
4701 # these are off by default, so fail if requested and not available
4702 enabled avfoundation_indev && { check_header_oc AVFoundation/AVFoundation.h || disable avfoundation_indev; }
4703 enabled avisynth && { { check_lib2 "windows.h" LoadLibrary; } ||
4704 { check_lib2 "dlfcn.h" dlopen -ldl; } ||
4705 die "ERROR: LoadLibrary/dlopen not found for avisynth"; }
4706 enabled decklink && { check_header DeckLinkAPI.h || die "ERROR: DeckLinkAPI.h header not found"; }
4707 enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
4708 enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
4709 enabled ladspa && { check_header ladspa.h || die "ERROR: ladspa.h header not found"; }
4710 enabled libiec61883 && require libiec61883 libiec61883/iec61883.h iec61883_cmp_connect -lraw1394 -lavc1394 -lrom1394 -liec61883
4711 enabled libaacplus && require "libaacplus >= 2.0.0" aacplus.h aacplusEncOpen -laacplus
4712 enabled libass && require_pkg_config libass ass/ass.h ass_library_init
4713 enabled libbluray && require_pkg_config libbluray libbluray/bluray.h bd_open
4714 enabled libbs2b && require_pkg_config libbs2b bs2b.h bs2b_open
4715 enabled libcelt && require libcelt celt/celt.h celt_decode -lcelt0 &&
4716 { check_lib celt/celt.h celt_decoder_create_custom -lcelt0 ||
4717 die "ERROR: libcelt must be installed and version must be >= 0.11.0."; }
4718 enabled libcaca && require_pkg_config caca caca.h caca_create_canvas
4719 enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
4720 enabled libfdk_aac && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
4721 flite_libs="-lflite_cmu_time_awb -lflite_cmu_us_awb -lflite_cmu_us_kal -lflite_cmu_us_kal16 -lflite_cmu_us_rms -lflite_cmu_us_slt -lflite_usenglish -lflite_cmulex -lflite"
4722 enabled libflite && require2 libflite "flite/flite.h" flite_init $flite_libs
4723 enabled fontconfig && enable libfontconfig
4724 enabled libfontconfig && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit
4725 enabled libfreetype && require_libfreetype
4726 enabled libgme && require libgme gme/gme.h gme_new_emu -lgme -lstdc++
4727 enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
4728 check_lib "${gsm_hdr}" gsm_create -lgsm && break;
4729 done || die "ERROR: libgsm not found"; }
4730 enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
4731 enabled libmodplug && require libmodplug libmodplug/modplug.h ModPlug_Load -lmodplug
4732 enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
4733 enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
4734 enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
4735 enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
4736 enabled libopencv && require_pkg_config opencv opencv/cxcore.h cvCreateImageHeader
4737 enabled libopenjpeg && { check_lib openjpeg-1.5/openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC ||
4738 check_lib openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC ||
4739 die "ERROR: libopenjpeg not found"; }
4740 enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
4741 enabled libpulse && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
4742 enabled libquvi && require_pkg_config libquvi quvi/quvi.h quvi_init
4743 enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
4744 enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
4745 enabled libshine && require_pkg_config shine shine/layer3.h shine_encode_buffer
4746 enabled libsoxr && require libsoxr soxr.h soxr_create -lsoxr
4747 enabled libssh && require_pkg_config libssh libssh/sftp.h sftp_init
4748 enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
4749 enabled libstagefright_h264 && require_cpp libstagefright_h264 "binder/ProcessState.h media/stagefright/MetaData.h
4750 media/stagefright/MediaBufferGroup.h media/stagefright/MediaDebug.h media/stagefright/MediaDefs.h
4751 media/stagefright/OMXClient.h media/stagefright/OMXCodec.h" android::OMXClient -lstagefright -lmedia -lutils -lbinder -lgnustl_static
4752 enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
4753 enabled libtwolame && require libtwolame twolame.h twolame_init -ltwolame &&
4754 { check_lib twolame.h twolame_encode_buffer_float32_interleaved -ltwolame ||
4755 die "ERROR: libtwolame must be installed and version must be >= 0.3.10"; }
4756 enabled libutvideo && require_cpp utvideo "stdint.h stdlib.h utvideo/utvideo.h utvideo/Codec.h" 'CCodec*' -lutvideo -lstdc++
4757 enabled libv4l2 && require_pkg_config libv4l2 libv4l2.h v4l2_ioctl
4758 enabled libvidstab && require_pkg_config "vidstab >= 0.98" vid.stab/libvidstab.h vsMotionDetectInit
4759 enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
4760 enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
4761 enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
4763 enabled libvpx_vp8_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
4764 die "ERROR: libvpx decoder version must be >=0.9.1"; }
4765 enabled libvpx_vp8_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VP8E_SET_MAX_INTRA_BITRATE_PCT" -lvpx ||
4766 die "ERROR: libvpx encoder version must be >=0.9.7"; }
4767 enabled libvpx_vp9_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_vp9_dx" -lvpx || disable libvpx_vp9_decoder; }
4768 enabled libvpx_vp9_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_vp9_cx VP9E_SET_SVC" -lvpx || disable libvpx_vp9_encoder; } }
4769 enabled libwavpack && require libwavpack wavpack/wavpack.h WavpackOpenFileOutput -lwavpack
4770 enabled libwebp && require_pkg_config libwebp webp/encode.h WebPGetEncoderVersion
4771 enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
4772 { check_cpp_condition x264.h "X264_BUILD >= 118" ||
4773 die "ERROR: libx264 must be installed and version must be >= 0.118."; }
4774 enabled libx265 && require_pkg_config x265 x265.h x265_encoder_encode &&
4775 { check_cpp_condition x265.h "X265_BUILD >= 17" ||
4776 die "ERROR: libx265 version must be >= 17."; }
4777 enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
4778 enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
4779 enabled libzmq && require_pkg_config libzmq zmq.h zmq_ctx_new
4780 enabled libzvbi && require libzvbi libzvbi.h vbi_decoder_new -lzvbi
4781 enabled openal && { { for al_libs in "${OPENAL_LIBS}" "-lopenal" "-lOpenAL32"; do
4782 check_lib 'AL/al.h' alGetError "${al_libs}" && break; done } ||
4783 die "ERROR: openal not found"; } &&
4784 { check_cpp_condition "AL/al.h" "defined(AL_VERSION_1_1)" ||
4785 die "ERROR: openal must be installed and version must be 1.1 or compatible"; }
4786 enabled opencl && { check_lib2 OpenCL/cl.h clEnqueueNDRangeKernel -Wl,-framework,OpenCL ||
4787 check_lib2 CL/cl.h clEnqueueNDRangeKernel -lOpenCL ||
4788 die "ERROR: opencl not found"; } &&
4789 { check_cpp_condition "OpenCL/cl.h" "defined(CL_VERSION_1_2)" ||
4790 check_cpp_condition "CL/cl.h" "defined(CL_VERSION_1_2)" ||
4791 die "ERROR: opencl must be installed and version must be 1.2 or compatible"; }
4792 enabled opengl && { check_lib GL/glx.h glXGetProcAddress "-lGL" ||
4793 check_lib2 windows.h wglGetProcAddress "-lopengl32 -lgdi32" ||
4794 check_lib2 OpenGL/gl3.h glGetError "-Wl,-framework,OpenGL" ||
4795 check_lib2 ES2/gl.h glGetError "-isysroot=${sysroot} -Wl,-framework,OpenGLES" ||
4796 die "ERROR: opengl not found."
4798 enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
4799 check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
4800 check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
4801 die "ERROR: openssl not found"; }
4802 enabled qtkit_indev && { check_header_oc QTKit/QTKit.h || disable qtkit_indev; }
4804 if enabled gnutls; then
4805 { check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
4806 { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
4810 if enabled libdc1394; then
4811 { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
4812 enable libdc1394_2; } ||
4813 { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
4814 enable libdc1394_1; } ||
4815 die "ERROR: No version of libdc1394 found "
4818 SDL_CONFIG="${cross_prefix}sdl-config"
4819 if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
4820 check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
4821 check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
4824 if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
4825 sdl_cflags=$("${SDL_CONFIG}" --cflags)
4826 sdl_libs=$("${SDL_CONFIG}" --libs)
4827 check_func_headers SDL_version.h SDL_Linked_Version $sdl_cflags $sdl_libs &&
4828 check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
4829 check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
4833 enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs
4835 texi2html --help 2> /dev/null | grep -q 'init-file' && enable texi2html || disable texi2html
4836 makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo
4837 perl -v > /dev/null 2>&1 && enable perl || disable perl
4838 pod2man --help > /dev/null 2>&1 && enable pod2man || disable pod2man
4839 rsync --help 2> /dev/null | grep -q 'contimeout' && enable rsync_contimeout || disable rsync_contimeout
4841 check_header linux/fb.h
4842 check_header linux/videodev.h
4843 check_header linux/videodev2.h
4844 check_code cc linux/videodev2.h "struct v4l2_frmsizeenum vfse; vfse.discrete.width = 0;" && enable_safe struct_v4l2_frmivalenum_discrete
4846 check_header sys/videoio.h
4848 check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
4849 # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
4850 # w32api 3.12 had it defined wrong
4851 check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
4853 check_type "dshow.h" IBaseFilter
4855 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
4856 { check_header dev/bktr/ioctl_meteor.h &&
4857 check_header dev/bktr/ioctl_bt848.h; } ||
4858 { check_header machine/ioctl_meteor.h &&
4859 check_header machine/ioctl_bt848.h; } ||
4860 { check_header dev/video/meteor/ioctl_meteor.h &&
4861 check_header dev/video/bktr/ioctl_bt848.h; } ||
4862 check_header dev/ic/bt8xx.h
4864 check_header sndio.h
4865 if check_struct sys/soundcard.h audio_buf_info bytes; then
4866 enable_safe sys/soundcard.h
4868 check_cc -D__BSD_VISIBLE -D__XSI_VISIBLE <<EOF && add_cppflags -D__BSD_VISIBLE -D__XSI_VISIBLE && enable_safe sys/soundcard.h
4869 #include <sys/soundcard.h>
4873 check_header soundcard.h
4875 enabled_any alsa_indev alsa_outdev &&
4876 check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
4878 enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack && check_func sem_timedwait &&
4879 check_func jack_port_get_latency_range -ljack
4881 enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
4883 if enabled libcdio; then
4884 check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
4885 check_lib2 "cdio/paranoia/cdda.h cdio/paranoia/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
4886 die "ERROR: libcdio-paranoia not found"
4890 check_lib X11/Xlib.h XOpenDisplay -lX11 || disable xlib
4893 require Xext X11/extensions/XShm.h XShmCreateImage -lXext &&
4894 require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes &&
4895 { enabled xlib || die "ERROR: Xlib not found"; }
4897 check_func_headers "windows.h" CreateDIBSection "$gdigrab_indev_extralibs"
4899 enabled dxva2api_h &&
4900 check_cc <<EOF && enable dxva2api_cobj
4901 #define _WIN32_WINNT 0x0600
4903 #include <windows.h>
4905 #include <dxva2api.h>
4906 int main(void) { IDirectXVideoDecoder *o = NULL; IDirectXVideoDecoder_Release(o); return 0; }
4910 check_lib va/va.h vaInitialize -lva ||
4914 check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
4917 enabled vdpau && enabled xlib &&
4918 check_func_headers "vdpau/vdpau.h vdpau/vdpau_x11.h" vdp_device_create_x11 -lvdpau &&
4919 prepend ffmpeg_libs $($ldflags_filter "-lvdpau") &&
4922 # Funny iconv installations are not unusual, so check it after all flags have been set
4923 disabled iconv || check_func_headers iconv.h iconv || check_lib2 iconv.h iconv -liconv || disable iconv
4925 enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
4927 # add some useful compiler flags if supported
4928 check_cflags -Wdeclaration-after-statement
4930 check_cflags -Wdisabled-optimization
4931 check_cflags -Wpointer-arith
4932 check_cflags -Wredundant-decls
4933 check_cflags -Wwrite-strings
4934 check_cflags -Wtype-limits
4935 check_cflags -Wundef
4936 check_cflags -Wmissing-prototypes
4937 check_cflags -Wno-pointer-to-int-cast
4938 check_cflags -Wstrict-prototypes
4939 check_cflags -Wempty-body
4940 enabled extra_warnings && check_cflags -Winline
4942 check_disable_warning(){
4943 warning_flag=-W${1#-Wno-}
4944 test_cflags $warning_flag && add_cflags $1
4947 check_disable_warning -Wno-parentheses
4948 check_disable_warning -Wno-switch
4949 check_disable_warning -Wno-format-zero-length
4950 check_disable_warning -Wno-pointer-sign
4952 # add some linker flags
4953 check_ldflags -Wl,--warn-common
4954 check_ldflags -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
4955 enabled rpath && add_ldflags -Wl,-rpath,$libdir
4956 test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
4958 # add some strip flags
4959 # -wN '..@*' is more selective than -x, but not available everywhere.
4960 check_stripflags -wN \'..@*\' || check_stripflags -x
4962 enabled neon_clobber_test &&
4963 check_ldflags -Wl,--wrap,avcodec_open2 \
4964 -Wl,--wrap,avcodec_decode_audio4 \
4965 -Wl,--wrap,avcodec_decode_video2 \
4966 -Wl,--wrap,avcodec_decode_subtitle2 \
4967 -Wl,--wrap,avcodec_encode_audio2 \
4968 -Wl,--wrap,avcodec_encode_video2 \
4969 -Wl,--wrap,avcodec_encode_subtitle \
4970 -Wl,--wrap,swr_convert \
4971 -Wl,--wrap,avresample_convert ||
4972 disable neon_clobber_test
4974 enabled xmm_clobber_test &&
4975 check_ldflags -Wl,--wrap,avcodec_open2 \
4976 -Wl,--wrap,avcodec_decode_audio4 \
4977 -Wl,--wrap,avcodec_decode_video2 \
4978 -Wl,--wrap,avcodec_decode_subtitle2 \
4979 -Wl,--wrap,avcodec_encode_audio2 \
4980 -Wl,--wrap,avcodec_encode_video \
4981 -Wl,--wrap,avcodec_encode_video2 \
4982 -Wl,--wrap,avcodec_encode_subtitle \
4983 -Wl,--wrap,swr_convert \
4984 -Wl,--wrap,avresample_convert \
4985 -Wl,--wrap,sws_scale ||
4986 disable xmm_clobber_test
4989 if test_ldflags -Wl,--version-script,$TMPV; then
4990 append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
4991 check_cc <<EOF && enable symver_asm_label
4992 void ff_foo(void) __asm__ ("av_foo@VERSION");
4993 void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
4995 check_cc <<EOF && enable symver_gnu_asm
4996 __asm__(".symver ff_foo,av_foo@VERSION");
4997 void ff_foo(void) {}
5001 if [ -z "$optflags" ]; then
5002 if enabled small; then
5003 optflags=$cflags_size
5004 elif enabled optimizations; then
5005 optflags=$cflags_speed
5007 optflags=$cflags_noopt
5013 enabled lto && check_ldflags "$@"
5017 if enabled lto; then
5018 test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
5020 check_ldflags -flto $cpuflags
5021 disable inline_asm_direct_symbol_refs
5024 check_optflags $optflags
5025 check_optflags -fno-math-errno
5026 check_optflags -fno-signed-zeros
5028 enabled ftrapv && check_cflags -ftrapv
5030 check_cc -mno-red-zone <<EOF && noredzone_flags="-mno-red-zone"
5035 if enabled icc; then
5036 # Just warnings, no remarks
5038 # -wd: Disable following warnings
5039 # 144, 167, 556: -Wno-pointer-sign
5040 # 188: enumerated type mixed with another type
5041 # 1292: attribute "foo" ignored
5042 # 1419: external declaration in primary source file
5043 # 10006: ignoring unknown option -fno-signed-zeros
5044 # 10148: ignoring unknown option -Wno-parentheses
5045 # 10156: ignoring option '-W'; no argument required
5046 check_cflags -wd144,167,188,556,1292,1419,10006,10148,10156
5047 # 11030: Warning unknown option --as-needed
5048 # 10156: ignoring option '-export'; no argument required
5049 check_ldflags -wd10156,11030
5050 # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
5051 enable ebp_available
5052 # The test above does not test linking
5053 enabled lto && disable symver_asm_label
5054 if enabled x86_32; then
5055 icc_version=$($cc -dumpversion)
5056 test ${icc_version%%.*} -ge 11 &&
5057 check_cflags -falign-stack=maintain-16-byte ||
5058 disable aligned_stack
5060 elif enabled ccc; then
5061 # disable some annoying warnings
5062 add_cflags -msg_disable bitnotint
5063 add_cflags -msg_disable mixfuncvoid
5064 add_cflags -msg_disable nonstandcast
5065 add_cflags -msg_disable unsupieee
5066 elif enabled gcc; then
5067 check_optflags -fno-tree-vectorize
5068 check_cflags -Werror=implicit-function-declaration
5069 check_cflags -Werror=missing-prototypes
5070 check_cflags -Werror=return-type
5071 check_cflags -Werror=vla
5072 enabled extra_warnings || check_disable_warning -Wno-maybe-uninitialized
5073 elif enabled llvm_gcc; then
5074 check_cflags -mllvm -stack-alignment=16
5075 elif enabled clang; then
5076 check_cflags -mllvm -stack-alignment=16
5077 check_cflags -Qunused-arguments
5078 check_cflags -Werror=implicit-function-declaration
5079 check_cflags -Werror=missing-prototypes
5080 check_cflags -Werror=return-type
5081 elif enabled cparser; then
5082 add_cflags -Wno-missing-variable-declarations
5083 add_cflags -Wno-empty-statement
5084 elif enabled armcc; then
5085 add_cflags -W${armcc_opt},--diag_suppress=4343 # hardfp compat
5086 add_cflags -W${armcc_opt},--diag_suppress=3036 # using . as system include dir
5087 # 2523: use of inline assembly is deprecated
5088 add_cflags -W${armcc_opt},--diag_suppress=2523
5089 add_cflags -W${armcc_opt},--diag_suppress=1207
5090 add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
5091 add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
5092 add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
5093 add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
5094 elif enabled tms470; then
5095 add_cflags -pds=824 -pds=837
5097 elif enabled pathscale; then
5098 add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
5099 elif enabled_any msvc icl; then
5100 enabled x86_32 && disable aligned_stack
5101 enabled_all x86_32 debug && add_cflags -Oy-
5102 enabled debug && add_ldflags -debug
5103 enable pragma_deprecated
5104 if enabled icl; then
5105 # -Qansi-alias is basically -fstrict-aliasing, but does not work
5106 # (correctly) on icl 13.x.
5107 check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" &&
5108 add_cflags -Qansi-alias
5109 # Some inline asm is not compilable in debug
5110 if enabled debug; then
5111 disable ebp_available
5112 disable ebx_available
5115 # msvcrt10 x64 incorrectly enables log2, only msvcrt12 onwards actually has log2.
5116 check_cpp_condition crtversion.h "_VC_CRT_MAJOR_VERSION >= 12" || disable log2
5121 add_asflags -Qunused-arguments
5127 check_ldflags -Qunused-arguments
5133 enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
5136 add_cppflags -Dmain=plan9_main
5140 enable frame_thread_encoder
5142 enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
5144 check_deps $CONFIG_LIST \
5149 enabled threads && ! enabled pthreads && ! enabled atomics_native && die "non pthread threading without atomics not supported, try adding --enable-pthreads or --cpu=i486 or higher if you are on x86"
5152 if test $target_os = "haiku"; then
5154 disable posix_memalign
5157 enabled_all dxva2 dxva2api_cobj CoTaskMemFree &&
5158 prepend ffmpeg_libs $($ldflags_filter "-lole32") &&
5161 ! enabled_any memalign posix_memalign aligned_malloc &&
5162 enabled_any $need_memalign && enable memalign_hack
5165 # -> enable ${lib}_deps_${dep}
5166 # -> add $dep to ${lib}_deps only once
5170 enabled "${lib}_deps_${dep}" && return 0
5171 enable "${lib}_deps_${dep}"
5172 prepend "${lib}_deps" $dep
5175 # merge deps lib components
5176 # merge all ${component}_deps into ${lib}_deps and ${lib}_deps_*
5181 enabled $comp || continue
5182 eval "dep=\"\$${comp}_deps\""
5189 merge_deps libavfilter $FILTER_LIST
5191 for thread in $THREADS_LIST; do
5192 if enabled $thread; then
5193 test -n "$thread_type" &&
5194 die "ERROR: Only one thread type must be selected." ||
5195 thread_type="$thread"
5199 # conditional library dependencies, in linking order
5200 enabled aconvert_filter && prepend avfilter_deps "swresample"
5201 enabled amovie_filter && prepend avfilter_deps "avformat avcodec"
5202 enabled aresample_filter && prepend avfilter_deps "swresample"
5203 enabled asyncts_filter && prepend avfilter_deps "avresample"
5204 enabled atempo_filter && prepend avfilter_deps "avcodec"
5205 enabled decimate_filter && prepend avfilter_deps "avcodec"
5206 enabled deshake_filter && prepend avfilter_deps "avcodec"
5207 enabled ebur128_filter && enabled swresample && prepend avfilter_deps "swresample"
5208 enabled elbg_filter && prepend avfilter_deps "avcodec"
5209 enabled mcdeint_filter && prepend avfilter_deps "avcodec"
5210 enabled movie_filter && prepend avfilter_deps "avformat avcodec"
5211 enabled mp_filter && prepend avfilter_deps "avcodec"
5212 enabled pan_filter && prepend avfilter_deps "swresample"
5213 enabled pp_filter && prepend avfilter_deps "postproc"
5214 enabled removelogo_filter && prepend avfilter_deps "avformat avcodec swscale"
5215 enabled resample_filter && prepend avfilter_deps "avresample"
5216 enabled sab_filter && prepend avfilter_deps "swscale"
5217 enabled scale_filter && prepend avfilter_deps "swscale"
5218 enabled showspectrum_filter && prepend avfilter_deps "avcodec"
5219 enabled smartblur_filter && prepend avfilter_deps "swscale"
5220 enabled subtitles_filter && prepend avfilter_deps "avformat avcodec"
5222 enabled lavfi_indev && prepend avdevice_deps "avfilter"
5224 enabled opus_decoder && prepend avcodec_deps "swresample"
5228 eval "deps=\$$lib_deps"
5229 append $lib_deps $(map 'eval echo \$${v}_deps' $deps)
5233 #we have to remove gpl from the deps here as some code assumes all lib deps are libs
5234 postproc_deps="$(filter_out 'gpl' $postproc_deps)"
5236 map 'expand_deps $v' $LIBRARY_LIST
5238 echo "install prefix $prefix"
5239 echo "source path $source_path"
5240 echo "C compiler $cc"
5241 echo "C library $libc_type"
5242 if test "$host_cc" != "$cc"; then
5243 echo "host C compiler $host_cc"
5244 echo "host C library $host_libc_type"
5246 echo "ARCH $arch ($cpu)"
5247 if test "$build_suffix" != ""; then
5248 echo "build suffix $build_suffix"
5250 if test "$progs_suffix" != ""; then
5251 echo "progs suffix $progs_suffix"
5253 if test "$extra_version" != ""; then
5254 echo "version string suffix $extra_version"
5256 echo "big-endian ${bigendian-no}"
5257 echo "runtime cpu detection ${runtime_cpudetect-no}"
5258 if enabled x86; then
5259 echo "${yasmexe} ${yasm-no}"
5260 echo "MMX enabled ${mmx-no}"
5261 echo "MMXEXT enabled ${mmxext-no}"
5262 echo "3DNow! enabled ${amd3dnow-no}"
5263 echo "3DNow! extended enabled ${amd3dnowext-no}"
5264 echo "SSE enabled ${sse-no}"
5265 echo "SSSE3 enabled ${ssse3-no}"
5266 echo "AVX enabled ${avx-no}"
5267 echo "XOP enabled ${xop-no}"
5268 echo "FMA3 enabled ${fma3-no}"
5269 echo "FMA4 enabled ${fma4-no}"
5270 echo "i686 features enabled ${i686-no}"
5271 echo "CMOV is fast ${fast_cmov-no}"
5272 echo "EBX available ${ebx_available-no}"
5273 echo "EBP available ${ebp_available-no}"
5275 if enabled aarch64; then
5276 echo "NEON enabled ${neon-no}"
5277 echo "VFP enabled ${vfp-no}"
5279 if enabled arm; then
5280 echo "ARMv5TE enabled ${armv5te-no}"
5281 echo "ARMv6 enabled ${armv6-no}"
5282 echo "ARMv6T2 enabled ${armv6t2-no}"
5283 echo "VFP enabled ${vfp-no}"
5284 echo "NEON enabled ${neon-no}"
5285 echo "THUMB enabled ${thumb-no}"
5287 if enabled mips; then
5288 echo "MIPS FPU enabled ${mipsfpu-no}"
5289 echo "MIPS32R2 enabled ${mips32r2-no}"
5290 echo "MIPS DSP R1 enabled ${mipsdspr1-no}"
5291 echo "MIPS DSP R2 enabled ${mipsdspr2-no}"
5293 if enabled ppc; then
5294 echo "AltiVec enabled ${altivec-no}"
5295 echo "PPC 4xx optimizations ${ppc4xx-no}"
5296 echo "PPC VSX optimizations ${vsx-no}"
5297 echo "dcbzl available ${dcbzl-no}"
5299 echo "debug symbols ${debug-no}"
5300 echo "strip symbols ${stripping-no}"
5301 echo "optimize for size ${small-no}"
5302 echo "optimizations ${optimizations-no}"
5303 echo "static ${static-no}"
5304 echo "shared ${shared-no}"
5305 echo "postprocessing support ${postproc-no}"
5306 echo "new filter support ${avfilter-no}"
5307 echo "network support ${network-no}"
5308 echo "threading support ${thread_type-no}"
5309 echo "safe bitstream reader ${safe_bitstream_reader-no}"
5310 echo "SDL support ${sdl-no}"
5311 echo "opencl enabled ${opencl-no}"
5312 echo "texi2html enabled ${texi2html-no}"
5313 echo "perl enabled ${perl-no}"
5314 echo "pod2man enabled ${pod2man-no}"
5315 echo "makeinfo enabled ${makeinfo-no}"
5316 test -n "$random_seed" &&
5317 echo "random seed ${random_seed}"
5320 echo "External libraries:"
5321 print_enabled '' $EXTERNAL_LIBRARY_LIST | print_3_columns
5324 for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
5325 echo "Enabled ${type}s:"
5326 eval list=\$$(toupper $type)_LIST
5327 print_enabled '_*' $list | print_3_columns
5331 license="LGPL version 2.1 or later"
5332 if enabled nonfree; then
5333 license="nonfree and unredistributable"
5334 elif enabled gplv3; then
5335 license="GPL version 3 or later"
5336 elif enabled lgplv3; then
5337 license="LGPL version 3 or later"
5338 elif enabled gpl; then
5339 license="GPL version 2 or later"
5342 echo "License: $license"
5344 echo "Creating config.mak, config.h, and doc/config.texi..."
5346 test -e Makefile || echo "include $source_path/Makefile" > Makefile
5348 enabled stripping || strip="echo skipping strip"
5350 config_files="$TMPH config.mak doc/config.texi"
5352 cat > config.mak <<EOF
5353 # Automatically generated by configure - do not modify!
5354 ifndef FFMPEG_CONFIG_MAK
5356 FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
5358 LIBDIR=\$(DESTDIR)$libdir
5359 SHLIBDIR=\$(DESTDIR)$shlibdir
5360 INCDIR=\$(DESTDIR)$incdir
5361 BINDIR=\$(DESTDIR)$bindir
5362 DATADIR=\$(DESTDIR)$datadir
5363 DOCDIR=\$(DESTDIR)$docdir
5364 MANDIR=\$(DESTDIR)$mandir
5365 SRC_PATH=$source_path
5366 ifndef MAIN_MAKEFILE
5367 SRC_PATH:=\$(SRC_PATH:.%=..%)
5376 DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
5378 DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
5407 SHFLAGS=$(echo $($ldflags_filter $SHFLAGS))
5408 ASMSTRIPFLAGS=$ASMSTRIPFLAGS
5409 YASMFLAGS=$YASMFLAGS
5410 BUILDSUF=$build_suffix
5411 PROGSSUF=$progs_suffix
5419 EXTRA_VERSION=$extra_version
5422 CCDEP_FLAGS=$CCDEP_FLAGS
5424 ASDEP_FLAGS=$ASDEP_FLAGS
5425 CC_DEPFLAGS=$CC_DEPFLAGS
5426 AS_DEPFLAGS=$AS_DEPFLAGS
5429 HOSTCFLAGS=$host_cflags
5430 HOSTCPPFLAGS=$host_cppflags
5431 HOSTEXESUF=$HOSTEXESUF
5432 HOSTLDFLAGS=$host_ldflags
5435 DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
5436 HOSTCCDEP=$HOSTCCDEP
5437 HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
5438 HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
5442 TARGET_EXEC=$target_exec $target_exec_args
5443 TARGET_PATH=$target_path
5444 TARGET_SAMPLES=${target_samples:-\$(SAMPLES)}
5445 CFLAGS-ffplay=$sdl_cflags
5446 ZLIB=$($ldflags_filter -lz)
5447 LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
5448 EXTRALIBS=$extralibs
5449 COMPAT_OBJS=$compat_objs
5452 LIBTARGET=${LIBTARGET}
5453 SLIBNAME=${SLIBNAME}
5454 SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
5455 SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
5456 SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
5457 SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
5458 SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
5459 SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
5460 SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
5461 SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
5462 SAMPLES:=${samples:-\$(FATE_SAMPLES)}
5463 NOREDZONE_FLAGS=$noredzone_flags
5468 name=$(toupper $lcname)
5469 file=$source_path/$lcname/version.h
5470 eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
5471 enabled raise_major && eval ${name}_VERSION_MAJOR=$((${name}_VERSION_MAJOR+100))
5472 eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
5473 eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
5474 eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
5475 eval echo "${lcname}_VERSION_MINOR=\$${name}_VERSION_MINOR" >> config.mak
5478 map 'get_version $v' $LIBRARY_LIST
5480 map 'eval echo "${v}_FFLIBS=\$${v}_deps" >> config.mak' $LIBRARY_LIST
5482 print_program_libs(){
5483 eval "program_libs=\$${1}_libs"
5484 eval echo "LIBS-${1}=${program_libs}" >> config.mak
5487 map 'print_program_libs $v' $PROGRAM_LIST
5490 /* Automatically generated by configure - do not modify! */
5491 #ifndef FFMPEG_CONFIG_H
5492 #define FFMPEG_CONFIG_H
5493 #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
5494 #define FFMPEG_LICENSE "$(c_escape $license)"
5495 #define CONFIG_THIS_YEAR 2014
5496 #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
5497 #define AVCONV_DATADIR "$(eval c_escape $datadir)"
5498 #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
5499 #define av_restrict $_restrict
5500 #define EXTERN_PREFIX "${extern_prefix}"
5501 #define EXTERN_ASM ${extern_prefix}
5502 #define BUILDSUF "$build_suffix"
5503 #define SLIBSUF "$SLIBSUF"
5504 #define HAVE_MMX2 HAVE_MMXEXT
5505 #define SWS_MAX_FILTER_SIZE $sws_max_filter_size
5508 test -n "$assert_level" &&
5509 echo "#define ASSERT_LEVEL $assert_level" >>$TMPH
5511 test -n "$malloc_prefix" &&
5512 echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
5514 if enabled yasm; then
5515 append config_files $TMPASM
5519 enabled getenv || echo "#define getenv(x) NULL" >> $TMPH
5523 echo "@c auto-generated by configure" > doc/config.texi
5525 print_config ARCH_ "$config_files" $ARCH_LIST
5526 print_config HAVE_ "$config_files" $HAVE_LIST
5527 print_config CONFIG_ "$config_files" $CONFIG_LIST \
5531 echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
5532 echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
5534 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
5535 cp_if_changed $TMPH config.h
5538 enabled yasm && cp_if_changed $TMPASM config.asm
5541 /* Generated by ffconf */
5542 #ifndef AVUTIL_AVCONFIG_H
5543 #define AVUTIL_AVCONFIG_H
5546 print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
5548 echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
5550 cp_if_changed $TMPH libavutil/avconfig.h
5552 if test -n "$WARNINGS"; then
5553 printf "\n$WARNINGS"
5554 enabled fatal_warnings && exit 1
5557 # build pkg-config files
5560 eval printf "\"lib${1}${build_suffix} >= \$LIB$(toupper ${1})_VERSION, \""
5563 pkgconfig_generate(){
5565 shortname=${name#lib}${build_suffix}
5569 requires=$(map 'lib_version $v' $(eval echo \$${name#lib}_deps))
5570 requires=${requires%, }
5571 enabled ${name#lib} || return 0
5573 cat <<EOF > $name/$name${build_suffix}.pc
5575 exec_prefix=\${prefix}
5580 Description: $comment
5582 Requires: $(enabled shared || echo $requires)
5583 Requires.private: $(enabled shared && echo $requires)
5585 Libs: -L\${libdir} $(enabled rpath && echo "-Wl,-rpath,\${libdir}") -l${shortname} $(enabled shared || echo $libs)
5586 Libs.private: $(enabled shared && echo $libs)
5587 Cflags: -I\${includedir}
5590 mkdir -p doc/examples/pc-uninstalled
5591 includedir=${source_path}
5592 [ "$includedir" = . ] && includedir="\${pcfiledir}/../../.."
5593 cat <<EOF > doc/examples/pc-uninstalled/$name.pc
5596 libdir=\${pcfiledir}/../../../$name
5597 includedir=${includedir}
5600 Description: $comment
5604 Libs: -L\${libdir} -Wl,-rpath,\${libdir} -l${shortname} $(enabled shared || echo $libs)
5605 Cflags: -I\${includedir}
5609 pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION" "$LIBM"
5610 pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs"
5611 pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs"
5612 pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs"
5613 pkgconfig_generate libavfilter "FFmpeg audio/video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
5614 pkgconfig_generate libpostproc "FFmpeg postprocessing library" "$LIBPOSTPROC_VERSION" ""
5615 pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$extralibs"
5616 pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM"
5617 pkgconfig_generate libswresample "FFmpeg audio resampling library" "$LIBSWRESAMPLE_VERSION" "$LIBM"