]> git.sesse.net Git - ffmpeg/blob - configure
Merge commit 'b2bed9325dbd6be0da1d91ffed3f513c40274fd2'
[ffmpeg] / configure
1 #!/bin/sh
2 #
3 # FFmpeg configure script
4 #
5 # Copyright (c) 2000-2002 Fabrice Bellard
6 # Copyright (c) 2005-2008 Diego Biurrun
7 # Copyright (c) 2005-2008 Mans Rullgard
8 #
9
10 # Prevent locale nonsense from breaking basic text processing.
11 LC_ALL=C
12 export LC_ALL
13
14 # make sure we are running under a compatible shell
15 # try to make this part work with most shells
16
17 try_exec(){
18     echo "Trying shell $1"
19     type "$1" > /dev/null 2>&1 && exec "$@"
20 }
21
22 unset foo
23 (: ${foo%%bar}) 2> /dev/null
24 E1="$?"
25
26 (: ${foo?}) 2> /dev/null
27 E2="$?"
28
29 if test "$E1" != 0 || test "$E2" = 0; then
30     echo "Broken shell detected.  Trying alternatives."
31     export FF_CONF_EXEC
32     if test "0$FF_CONF_EXEC" -lt 1; then
33         FF_CONF_EXEC=1
34         try_exec bash "$0" "$@"
35     fi
36     if test "0$FF_CONF_EXEC" -lt 2; then
37         FF_CONF_EXEC=2
38         try_exec ksh "$0" "$@"
39     fi
40     if test "0$FF_CONF_EXEC" -lt 3; then
41         FF_CONF_EXEC=3
42         try_exec /usr/xpg4/bin/sh "$0" "$@"
43     fi
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."
53     fi
54     exit 1
55 fi
56
57 test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH
58
59 show_help(){
60     cat <<EOF
61 Usage: configure [options]
62 Options: [defaults in brackets after descriptions]
63
64 Help options:
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
77
78 Standard options:
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
91 Licensing options:
92   --enable-gpl             allow use of GPL code, the resulting libs
93                            and binaries will be under GPL [no]
94   --enable-version3        upgrade (L)GPL to version 3 [no]
95   --enable-nonfree         allow use of nonfree code, the resulting libs
96                            and binaries will be unredistributable [no]
97
98 Configuration options:
99   --disable-static         do not build static libraries [no]
100   --enable-shared          build shared libraries [no]
101   --enable-small           optimize for size instead of speed
102   --disable-runtime-cpudetect disable detecting cpu capabilities at runtime (smaller binary)
103   --enable-gray            enable full grayscale support (slower color)
104   --disable-swscale-alpha  disable alpha channel support in swscale
105   --disable-all            disable building components, libraries and programs
106   --enable-incompatible-libav-abi enable incompatible Libav fork ABI [no]
107   --enable-incompatible-fork-abi  enable incompatible Libav fork ABI (deprecated) [no]
108
109 Program options:
110   --disable-programs       do not build command line programs
111   --disable-ffmpeg         disable ffmpeg build
112   --disable-ffplay         disable ffplay build
113   --disable-ffprobe        disable ffprobe build
114   --disable-ffserver       disable ffserver build
115
116 Documentation options:
117   --disable-doc            do not build documentation
118   --disable-htmlpages      do not build HTML documentation pages
119   --disable-manpages       do not build man documentation pages
120   --disable-podpages       do not build POD documentation pages
121   --disable-txtpages       do not build text documentation pages
122
123 Component options:
124   --disable-avdevice       disable libavdevice build
125   --disable-avcodec        disable libavcodec build
126   --disable-avformat       disable libavformat build
127   --disable-avutil         disable libavutil build
128   --disable-swresample     disable libswresample build
129   --disable-swscale        disable libswscale build
130   --disable-postproc       disable libpostproc build
131   --disable-avfilter       disable libavfilter build
132   --enable-avresample      enable libavresample build [no]
133   --disable-pthreads       disable pthreads [auto]
134   --disable-w32threads     disable Win32 threads [auto]
135   --disable-os2threads     disable OS/2 threads [auto]
136   --disable-network        disable network support [no]
137   --disable-dct            disable DCT code
138   --disable-dwt            disable DWT code
139   --disable-error-resilience disable error resilience code
140   --disable-lsp            disable LSP code
141   --disable-lzo            disable LZO decoder code
142   --disable-mdct           disable MDCT code
143   --disable-rdft           disable RDFT code
144   --disable-fft            disable FFT code
145
146 Hardware accelerators:
147   --disable-dxva2          disable DXVA2 code [autodetect]
148   --disable-vaapi          disable VAAPI code [autodetect]
149   --enable-vda             enable VDA code
150   --disable-vdpau          disable VDPAU code [autodetect]
151
152 Individual component options:
153   --disable-everything     disable all components listed below
154   --disable-encoder=NAME   disable encoder NAME
155   --enable-encoder=NAME    enable encoder NAME
156   --disable-encoders       disable all encoders
157   --disable-decoder=NAME   disable decoder NAME
158   --enable-decoder=NAME    enable decoder NAME
159   --disable-decoders       disable all decoders
160   --disable-hwaccel=NAME   disable hwaccel NAME
161   --enable-hwaccel=NAME    enable hwaccel NAME
162   --disable-hwaccels       disable all hwaccels
163   --disable-muxer=NAME     disable muxer NAME
164   --enable-muxer=NAME      enable muxer NAME
165   --disable-muxers         disable all muxers
166   --disable-demuxer=NAME   disable demuxer NAME
167   --enable-demuxer=NAME    enable demuxer NAME
168   --disable-demuxers       disable all demuxers
169   --enable-parser=NAME     enable parser NAME
170   --disable-parser=NAME    disable parser NAME
171   --disable-parsers        disable all parsers
172   --enable-bsf=NAME        enable bitstream filter NAME
173   --disable-bsf=NAME       disable bitstream filter NAME
174   --disable-bsfs           disable all bitstream filters
175   --enable-protocol=NAME   enable protocol NAME
176   --disable-protocol=NAME  disable protocol NAME
177   --disable-protocols      disable all protocols
178   --enable-indev=NAME      enable input device NAME
179   --disable-indev=NAME     disable input device NAME
180   --disable-indevs         disable input devices
181   --enable-outdev=NAME     enable output device NAME
182   --disable-outdev=NAME    disable output device NAME
183   --disable-outdevs        disable output devices
184   --disable-devices        disable all devices
185   --enable-filter=NAME     enable filter NAME
186   --disable-filter=NAME    disable filter NAME
187   --disable-filters        disable all filters
188
189 External library support:
190   --enable-avisynth        enable reading of AviSynth script files [no]
191   --disable-bzlib          disable bzlib [autodetect]
192   --enable-fontconfig      enable fontconfig
193   --enable-frei0r          enable frei0r video filtering
194   --enable-gnutls          enable gnutls [no]
195   --disable-iconv          disable iconv [autodetect]
196   --enable-ladspa          enable LADSPA audio filtering
197   --enable-libaacplus      enable AAC+ encoding via libaacplus [no]
198   --enable-libass          enable libass subtitles rendering [no]
199   --enable-libbluray       enable BluRay reading using libbluray [no]
200   --enable-libcaca         enable textual display using libcaca
201   --enable-libcelt         enable CELT decoding via libcelt [no]
202   --enable-libcdio         enable audio CD grabbing with libcdio
203   --enable-libdc1394       enable IIDC-1394 grabbing using libdc1394
204                            and libraw1394 [no]
205   --enable-libfaac         enable AAC encoding via libfaac [no]
206   --enable-libfdk-aac      enable AAC de/encoding via libfdk-aac [no]
207   --enable-libflite        enable flite (voice synthesis) support via libflite [no]
208   --enable-libfreetype     enable libfreetype [no]
209   --enable-libgme          enable Game Music Emu via libgme [no]
210   --enable-libgsm          enable GSM de/encoding via libgsm [no]
211   --enable-libiec61883     enable iec61883 via libiec61883 [no]
212   --enable-libilbc         enable iLBC de/encoding via libilbc [no]
213   --enable-libmodplug      enable ModPlug via libmodplug [no]
214   --enable-libmp3lame      enable MP3 encoding via libmp3lame [no]
215   --enable-libnut          enable NUT (de)muxing via libnut,
216                            native (de)muxer exists [no]
217   --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
218   --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
219   --enable-libopencv       enable video filtering via libopencv [no]
220   --enable-libopenjpeg     enable JPEG 2000 de/encoding via OpenJPEG [no]
221   --enable-libopus         enable Opus decoding via libopus [no]
222   --enable-libpulse        enable Pulseaudio input via libpulse [no]
223   --enable-libquvi         enable quvi input via libquvi [no]
224   --enable-librtmp         enable RTMP[E] support via librtmp [no]
225   --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
226   --enable-libshine        enable fixed-point MP3 encoding via libshine [no]
227   --enable-libsoxr         enable Include libsoxr resampling [no]
228   --enable-libspeex        enable Speex de/encoding via libspeex [no]
229   --enable-libssh          enable SFTP protocol via libssh [no]
230   --enable-libstagefright-h264  enable H.264 decoding via libstagefright [no]
231   --enable-libtheora       enable Theora encoding via libtheora [no]
232   --enable-libtwolame      enable MP2 encoding via libtwolame [no]
233   --enable-libutvideo      enable Ut Video encoding and decoding via libutvideo [no]
234   --enable-libv4l2         enable libv4l2/v4l-utils [no]
235   --enable-libvidstab      enable video stabilization using vid.stab [no]
236   --enable-libvo-aacenc    enable AAC encoding via libvo-aacenc [no]
237   --enable-libvo-amrwbenc  enable AMR-WB encoding via libvo-amrwbenc [no]
238   --enable-libvorbis       enable Vorbis en/decoding via libvorbis,
239                            native implementation exists [no]
240   --enable-libvpx          enable VP8 and VP9 de/encoding via libvpx [no]
241   --enable-libwavpack      enable wavpack encoding via libwavpack [no]
242   --enable-libx264         enable H.264 encoding via x264 [no]
243   --enable-libxavs         enable AVS encoding via xavs [no]
244   --enable-libxvid         enable Xvid encoding via xvidcore,
245                            native MPEG-4/Xvid encoder exists [no]
246   --enable-libzmq          enable message passing via libzmq [no]
247   --enable-libzvbi         enable teletext support via libzvbi [no]
248   --enable-openal          enable OpenAL 1.1 capture support [no]
249   --enable-opencl          enable OpenCL code
250   --enable-openssl         enable openssl [no]
251   --enable-x11grab         enable X11 grabbing [no]
252   --disable-zlib           disable zlib [autodetect]
253
254 Advanced options (experts only):
255   --cross-prefix=PREFIX    use PREFIX for compilation tools [$cross_prefix]
256   --enable-cross-compile   assume a cross-compiler is used
257   --sysroot=PATH           root of cross-build tree
258   --sysinclude=PATH        location of cross-build system headers
259   --target-os=OS           compiler targets OS [$target_os]
260   --target-exec=CMD        command to run executables on target
261   --target-path=DIR        path to view of build directory on target
262   --target-samples=DIR     path to samples directory on target
263   --toolchain=NAME         set tool defaults according to NAME
264   --nm=NM                  use nm tool NM [$nm_default]
265   --ar=AR                  use archive tool AR [$ar_default]
266   --as=AS                  use assembler AS [$as_default]
267   --yasmexe=EXE            use yasm-compatible assembler EXE [$yasmexe_default]
268   --cc=CC                  use C compiler CC [$cc_default]
269   --cxx=CXX                use C compiler CXX [$cxx_default]
270   --dep-cc=DEPCC           use dependency generator DEPCC [$cc_default]
271   --ld=LD                  use linker LD [$ld_default]
272   --host-cc=HOSTCC         use host C compiler HOSTCC
273   --host-cflags=HCFLAGS    use HCFLAGS when compiling for host
274   --host-cppflags=HCPPFLAGS use HCPPFLAGS when compiling for host
275   --host-ld=HOSTLD         use host linker HOSTLD
276   --host-ldflags=HLDFLAGS  use HLDFLAGS when linking for host
277   --host-libs=HLIBS        use libs HLIBS when linking for host
278   --host-os=OS             compiler host OS [$target_os]
279   --extra-cflags=ECFLAGS   add ECFLAGS to CFLAGS [$CFLAGS]
280   --extra-cxxflags=ECFLAGS add ECFLAGS to CXXFLAGS [$CXXFLAGS]
281   --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
282   --extra-libs=ELIBS       add ELIBS [$ELIBS]
283   --extra-version=STRING   version string suffix []
284   --optflags=OPTFLAGS      override optimization-related compiler flags
285   --build-suffix=SUFFIX    library name suffix []
286   --malloc-prefix=PREFIX   prefix malloc and related names with PREFIX
287   --progs-suffix=SUFFIX    program name suffix []
288   --arch=ARCH              select architecture [$arch]
289   --cpu=CPU                select the minimum required CPU (affects
290                            instruction selection, may crash on older CPUs)
291   --enable-pic             build position-independent code
292   --enable-sram            allow use of on-chip SRAM
293   --enable-thumb           compile for Thumb instruction set
294   --disable-symver         disable symbol versioning
295   --enable-hardcoded-tables use hardcoded tables instead of runtime generation
296   --disable-safe-bitstream-reader
297                            disable buffer boundary checking in bitreaders
298                            (faster, but may crash)
299   --enable-memalign-hack   emulate memalign, interferes with memory debuggers
300   --enable-lto             use link-time optimization
301
302 Optimization options (experts only):
303   --disable-asm            disable all assembler optimizations
304   --disable-altivec        disable AltiVec optimizations
305   --disable-amd3dnow       disable 3DNow! optimizations
306   --disable-amd3dnowext    disable 3DNow! extended optimizations
307   --disable-mmx            disable MMX optimizations
308   --disable-mmxext         disable MMXEXT optimizations
309   --disable-sse            disable SSE optimizations
310   --disable-sse2           disable SSE2 optimizations
311   --disable-sse3           disable SSE3 optimizations
312   --disable-ssse3          disable SSSE3 optimizations
313   --disable-sse4           disable SSE4 optimizations
314   --disable-sse42          disable SSE4.2 optimizations
315   --disable-avx            disable AVX optimizations
316   --disable-fma4           disable FMA4 optimizations
317   --disable-armv5te        disable armv5te optimizations
318   --disable-armv6          disable armv6 optimizations
319   --disable-armv6t2        disable armv6t2 optimizations
320   --disable-vfp            disable VFP optimizations
321   --disable-neon           disable NEON optimizations
322   --disable-vis            disable VIS optimizations
323   --disable-inline-asm     disable use of inline assembler
324   --disable-yasm           disable use of yasm assembler
325   --disable-mips32r2       disable MIPS32R2 optimizations
326   --disable-mipsdspr1      disable MIPS DSP ASE R1 optimizations
327   --disable-mipsdspr2      disable MIPS DSP ASE R2 optimizations
328   --disable-mipsfpu        disable floating point MIPS optimizations
329   --disable-fast-unaligned consider unaligned accesses slow
330
331 Developer options (useful when working on FFmpeg itself):
332   --disable-debug          disable debugging symbols
333   --enable-debug=LEVEL     set the debug level [$debuglevel]
334   --disable-optimizations  disable compiler optimizations
335   --enable-extra-warnings  enable more compiler warnings
336   --disable-stripping      disable stripping of executables and shared libraries
337   --assert-level=level     0(default), 1 or 2, amount of assertion testing,
338                            2 causes a slowdown at runtime.
339   --enable-memory-poisoning fill heap uninitialized allocated space with arbitrary data
340   --valgrind=VALGRIND      run "make fate" tests through valgrind to detect memory
341                            leaks and errors, using the specified valgrind binary.
342                            Cannot be combined with --target-exec
343   --enable-ftrapv          Trap arithmetic overflows
344   --samples=PATH           location of test samples for FATE, if not set use
345                            \$FATE_SAMPLES at make invocation time.
346   --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
347                            should be used only for debugging purposes)
348   --enable-random          randomly enable/disable components
349   --disable-random
350   --enable-random=LIST     randomly enable/disable specific components or
351   --disable-random=LIST    component groups. LIST is a comma-separated list
352                            of NAME[:PROB] entries where NAME is a component
353                            (group) and PROB the probability associated with
354                            NAME (default 0.5).
355   --random-seed=VALUE      seed value for --enable/disable-random
356
357 NOTE: Object files are built at the place where configure is launched.
358 EOF
359   exit 0
360 }
361
362 quotes='""'
363
364 log(){
365     echo "$@" >> $logfile
366 }
367
368 log_file(){
369     log BEGIN $1
370     pr -n -t $1 >> $logfile
371     log END $1
372 }
373
374 echolog(){
375     log "$@"
376     echo "$@"
377 }
378
379 warn(){
380     log "WARNING: $*"
381     WARNINGS="${WARNINGS}WARNING: $*\n"
382 }
383
384 die(){
385     echolog "$@"
386     cat <<EOF
387
388 If you think configure made a mistake, make sure you are using the latest
389 version from Git.  If the latest version fails, report the problem to the
390 ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
391 EOF
392     if disabled logging; then
393         cat <<EOF
394 Rerun configure with logging enabled (do not use --disable-logging), and
395 include the log this produces with your report.
396 EOF
397     else
398         cat <<EOF
399 Include the log file "$logfile" produced by configure as this will help
400 solving the problem.
401 EOF
402     fi
403     exit 1
404 }
405
406 # Avoid locale weirdness, besides we really just want to translate ASCII.
407 toupper(){
408     echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
409 }
410
411 tolower(){
412     echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
413 }
414
415 c_escape(){
416     echo "$*" | sed 's/["\\]/\\\0/g'
417 }
418
419 sh_quote(){
420     v=$(echo "$1" | sed "s/'/'\\\\''/g")
421     test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
422     echo "$v"
423 }
424
425 cleanws(){
426     echo "$@" | sed 's/^ *//;s/  */ /g;s/ *$//'
427 }
428
429 filter(){
430     pat=$1
431     shift
432     for v; do
433         eval "case $v in $pat) echo $v ;; esac"
434     done
435 }
436
437 filter_out(){
438     pat=$1
439     shift
440     for v; do
441         eval "case $v in $pat) ;; *) echo $v ;; esac"
442     done
443 }
444
445 map(){
446     m=$1
447     shift
448     for v; do eval $m; done
449 }
450
451 add_suffix(){
452     suffix=$1
453     shift
454     for v; do echo ${v}${suffix}; done
455 }
456
457 set_all(){
458     value=$1
459     shift
460     for var in $*; do
461         eval $var=$value
462     done
463 }
464
465 set_weak(){
466     value=$1
467     shift
468     for var; do
469         eval : \${$var:=$value}
470     done
471 }
472
473 sanitize_var_name(){
474     echo $@ | sed 's/[^A-Za-z0-9_]/_/g'
475 }
476
477 set_safe(){
478     var=$1
479     shift
480     eval $(sanitize_var_name "$var")='$*'
481 }
482
483 get_safe(){
484     eval echo \$$(sanitize_var_name "$1")
485 }
486
487 pushvar(){
488     for pvar in $*; do
489         eval level=\${${pvar}_level:=0}
490         eval ${pvar}_${level}="\$$pvar"
491         eval ${pvar}_level=$(($level+1))
492     done
493 }
494
495 popvar(){
496     for pvar in $*; do
497         eval level=\${${pvar}_level:-0}
498         test $level = 0 && continue
499         eval level=$(($level-1))
500         eval $pvar="\${${pvar}_${level}}"
501         eval ${pvar}_level=$level
502         eval unset ${pvar}_${level}
503     done
504 }
505
506 enable(){
507     set_all yes $*
508 }
509
510 disable(){
511     set_all no $*
512 }
513
514 enable_weak(){
515     set_weak yes $*
516 }
517
518 disable_weak(){
519     set_weak no $*
520 }
521
522 enable_safe(){
523     for var; do
524         enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
525     done
526 }
527
528 disable_safe(){
529     for var; do
530         disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
531     done
532 }
533
534 do_enable_deep(){
535     for var; do
536         enabled $var && continue
537         eval sel="\$${var}_select"
538         eval sgs="\$${var}_suggest"
539         pushvar var sgs
540         enable_deep $sel
541         popvar sgs
542         enable_deep_weak $sgs
543         popvar var
544     done
545 }
546
547 enable_deep(){
548     do_enable_deep $*
549     enable $*
550 }
551
552 enable_deep_weak(){
553     for var; do
554         disabled $var && continue
555         pushvar var
556         do_enable_deep $var
557         popvar var
558         enable_weak $var
559     done
560 }
561
562 enabled(){
563     test "${1#!}" = "$1" && op== || op=!=
564     eval test "x\$${1#!}" $op "xyes"
565 }
566
567 disabled(){
568     test "${1#!}" = "$1" && op== || op=!=
569     eval test "x\$${1#!}" $op "xno"
570 }
571
572 enabled_all(){
573     for opt; do
574         enabled $opt || return 1
575     done
576 }
577
578 disabled_all(){
579     for opt; do
580         disabled $opt || return 1
581     done
582 }
583
584 enabled_any(){
585     for opt; do
586         enabled $opt && return 0
587     done
588 }
589
590 disabled_any(){
591     for opt; do
592         disabled $opt && return 0
593     done
594     return 1
595 }
596
597 set_default(){
598     for opt; do
599         eval : \${$opt:=\$${opt}_default}
600     done
601 }
602
603 is_in(){
604     value=$1
605     shift
606     for var in $*; do
607         [ $var = $value ] && return 0
608     done
609     return 1
610 }
611
612 do_check_deps(){
613     for cfg; do
614         cfg="${cfg#!}"
615         enabled ${cfg}_checking && die "Circular dependency for $cfg."
616         disabled ${cfg}_checking && continue
617         enable ${cfg}_checking
618         append allopts $cfg
619
620         eval dep_all="\$${cfg}_deps"
621         eval dep_any="\$${cfg}_deps_any"
622         eval dep_sel="\$${cfg}_select"
623         eval dep_sgs="\$${cfg}_suggest"
624         eval dep_ifa="\$${cfg}_if"
625         eval dep_ifn="\$${cfg}_if_any"
626
627         pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
628         do_check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
629         popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
630
631         [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
632         [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
633         enabled_all  $dep_all || disable $cfg
634         enabled_any  $dep_any || disable $cfg
635         disabled_any $dep_sel && disable $cfg
636
637         if enabled $cfg; then
638             enable_deep $dep_sel
639             enable_deep_weak $dep_sgs
640         fi
641
642         disable ${cfg}_checking
643     done
644 }
645
646 check_deps(){
647     unset allopts
648
649     do_check_deps "$@"
650
651     for cfg in $allopts; do
652         enabled $cfg || continue
653         eval dep_extralibs="\$${cfg}_extralibs"
654         test -n "$dep_extralibs" && add_extralibs $dep_extralibs
655     done
656 }
657
658 print_config(){
659     pfx=$1
660     files=$2
661     shift 2
662     map 'eval echo "$v \${$v:-no}"' "$@" |
663     awk "BEGIN { split(\"$files\", files) }
664         {
665             c = \"$pfx\" toupper(\$1);
666             v = \$2;
667             sub(/yes/, 1, v);
668             sub(/no/,  0, v);
669             for (f in files) {
670                 file = files[f];
671                 if (file ~ /\\.h\$/) {
672                     printf(\"#define %s %d\\n\", c, v) >>file;
673                 } else if (file ~ /\\.asm\$/) {
674                     printf(\"%%define %s %d\\n\", c, v) >>file;
675                 } else if (file ~ /\\.mak\$/) {
676                     n = -v ? \"\" : \"!\";
677                     printf(\"%s%s=yes\\n\", n, c) >>file;
678                 } else if (file ~ /\\.texi\$/) {
679                     pre = -v ? \"\" : \"@c \";
680                     yesno = \$2;
681                     c2 = tolower(c);
682                     gsub(/_/, \"-\", c2);
683                     printf(\"%s@set %s %s\\n\", pre, c2, yesno) >>file;
684                 }
685             }
686         }"
687 }
688
689 print_enabled(){
690     suf=$1
691     shift
692     for v; do
693         enabled $v && printf "%s\n" ${v%$suf};
694     done
695 }
696
697 append(){
698     var=$1
699     shift
700     eval "$var=\"\$$var $*\""
701 }
702
703 prepend(){
704     var=$1
705     shift
706     eval "$var=\"$* \$$var\""
707 }
708
709 add_cppflags(){
710     append CPPFLAGS "$@"
711 }
712
713 add_cflags(){
714     append CFLAGS $($cflags_filter "$@")
715 }
716
717 add_cxxflags(){
718     append CXXFLAGS $($cflags_filter "$@")
719 }
720
721 add_asflags(){
722     append ASFLAGS $($asflags_filter "$@")
723 }
724
725 add_ldflags(){
726     append LDFLAGS $($ldflags_filter "$@")
727 }
728
729 add_extralibs(){
730     prepend extralibs $($ldflags_filter "$@")
731 }
732
733 add_host_cppflags(){
734     append host_cppflags "$@"
735 }
736
737 add_host_cflags(){
738     append host_cflags $($host_cflags_filter "$@")
739 }
740
741 add_host_ldflags(){
742     append host_ldflags $($host_ldflags_filter "$@")
743 }
744
745 add_compat(){
746     append compat_objs $1
747     shift
748     map 'add_cppflags -D$v' "$@"
749 }
750
751 check_cmd(){
752     log "$@"
753     "$@" >> $logfile 2>&1
754 }
755
756 cc_o(){
757     eval printf '%s\\n' $CC_O
758 }
759
760 cc_e(){
761     eval printf '%s\\n' $CC_E
762 }
763
764 check_cc(){
765     log check_cc "$@"
766     cat > $TMPC
767     log_file $TMPC
768     check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
769 }
770
771 check_cxx(){
772     log check_cxx "$@"
773     cat > $TMPCPP
774     log_file $TMPCPP
775     check_cmd $cxx $CPPFLAGS $CFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
776 }
777
778 check_cpp(){
779     log check_cpp "$@"
780     cat > $TMPC
781     log_file $TMPC
782     check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
783 }
784
785 as_o(){
786     eval printf '%s\\n' $AS_O
787 }
788
789 check_as(){
790     log check_as "$@"
791     cat > $TMPS
792     log_file $TMPS
793     check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
794 }
795
796 check_inline_asm(){
797     log check_inline_asm "$@"
798     name="$1"
799     code="$2"
800     shift 2
801     disable $name
802     check_cc "$@" <<EOF && enable $name
803 void foo(void){ __asm__ volatile($code); }
804 EOF
805 }
806
807 check_insn(){
808     log check_insn "$@"
809     check_inline_asm ${1}_inline "\"$2\""
810     echo "$2" | check_as && enable ${1}_external || disable ${1}_external
811 }
812
813 check_yasm(){
814     log check_yasm "$@"
815     echo "$1" > $TMPS
816     log_file $TMPS
817     shift 1
818     check_cmd $yasmexe $YASMFLAGS -Werror "$@" -o $TMPO $TMPS
819 }
820
821 ld_o(){
822     eval printf '%s\\n' $LD_O
823 }
824
825 check_ld(){
826     log check_ld "$@"
827     type=$1
828     shift 1
829     flags=$(filter_out '-l*|*.so' $@)
830     libs=$(filter '-l*|*.so' $@)
831     check_$type $($cflags_filter $flags) || return
832     flags=$($ldflags_filter $flags)
833     libs=$($ldflags_filter $libs)
834     check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
835 }
836
837 check_code(){
838     log check_code "$@"
839     check=$1
840     headers=$2
841     code=$3
842     shift 3
843     {
844         for hdr in $headers; do
845             echo "#include <$hdr>"
846         done
847         echo "int main(void) { $code; return 0; }"
848     } | check_$check "$@"
849 }
850
851 check_cppflags(){
852     log check_cppflags "$@"
853     check_cc "$@" <<EOF && append CPPFLAGS "$@"
854 int x;
855 EOF
856 }
857
858 check_cflags(){
859     log check_cflags "$@"
860     set -- $($cflags_filter "$@")
861     check_cc "$@" <<EOF && append CFLAGS "$@"
862 int x;
863 EOF
864 }
865
866 check_cxxflags(){
867     log check_cxxflags "$@"
868     set -- $($cflags_filter "$@")
869     check_cxx "$@" <<EOF && append CXXFLAGS "$@"
870 int x;
871 EOF
872 }
873
874 test_ldflags(){
875     log test_ldflags "$@"
876     check_ld "cc" "$@" <<EOF
877 int main(void){ return 0; }
878 EOF
879 }
880
881 check_ldflags(){
882     log check_ldflags "$@"
883     test_ldflags "$@" && add_ldflags "$@"
884 }
885
886 check_header(){
887     log check_header "$@"
888     header=$1
889     shift
890     disable_safe $header
891     check_cpp "$@" <<EOF && enable_safe $header
892 #include <$header>
893 int x;
894 EOF
895 }
896
897 check_func(){
898     log check_func "$@"
899     func=$1
900     shift
901     disable $func
902     check_ld "cc" "$@" <<EOF && enable $func
903 extern int $func();
904 int main(void){ $func(); }
905 EOF
906 }
907
908 check_mathfunc(){
909     log check_mathfunc "$@"
910     func=$1
911     narg=$2
912     shift 2
913     test $narg = 2 && args="f, g" || args="f"
914     disable $func
915     check_ld "cc" "$@" <<EOF && enable $func
916 #include <math.h>
917 float foo(float f, float g) { return $func($args); }
918 int main(void){ return (int) foo; }
919 EOF
920 }
921
922 check_func_headers(){
923     log check_func_headers "$@"
924     headers=$1
925     funcs=$2
926     shift 2
927     {
928         for hdr in $headers; do
929             echo "#include <$hdr>"
930         done
931         for func in $funcs; do
932             echo "long check_$func(void) { return (long) $func; }"
933         done
934         echo "int main(void) { return 0; }"
935     } | check_ld "cc" "$@" && enable $funcs && enable_safe $headers
936 }
937
938 check_class_headers_cpp(){
939     log check_class_headers_cpp "$@"
940     headers=$1
941     classes=$2
942     shift 2
943     {
944         for hdr in $headers; do
945             echo "#include <$hdr>"
946         done
947         echo "int main(void) { "
948         i=1
949         for class in $classes; do
950             echo "$class obj$i;"
951             i=$(expr $i + 1)
952         done
953         echo "return 0; }"
954     } | check_ld "cxx" "$@" && enable $funcs && enable_safe $headers
955 }
956
957 check_cpp_condition(){
958     log check_cpp_condition "$@"
959     header=$1
960     condition=$2
961     shift 2
962     check_cpp "$@" <<EOF
963 #include <$header>
964 #if !($condition)
965 #error "unsatisfied condition: $condition"
966 #endif
967 EOF
968 }
969
970 check_lib(){
971     log check_lib "$@"
972     header="$1"
973     func="$2"
974     shift 2
975     check_header $header && check_func $func "$@" && add_extralibs "$@"
976 }
977
978 check_lib2(){
979     log check_lib2 "$@"
980     headers="$1"
981     funcs="$2"
982     shift 2
983     check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
984 }
985
986 check_lib_cpp(){
987     log check_lib_cpp "$@"
988     headers="$1"
989     classes="$2"
990     shift 2
991     check_class_headers_cpp "$headers" "$classes" "$@" && add_extralibs "$@"
992 }
993
994 check_pkg_config(){
995     log check_pkg_config "$@"
996     pkg="$1"
997     headers="$2"
998     funcs="$3"
999     shift 3
1000     check_cmd $pkg_config --exists --print-errors $pkg || return
1001     pkg_cflags=$($pkg_config --cflags $pkg)
1002     pkg_libs=$($pkg_config --libs $pkg)
1003     check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
1004         set_safe ${pkg}_cflags $pkg_cflags   &&
1005         set_safe ${pkg}_libs   $pkg_libs
1006 }
1007
1008 check_exec(){
1009     check_ld "cc" "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
1010 }
1011
1012 check_exec_crash(){
1013     code=$(cat)
1014
1015     # exit() is not async signal safe.  _Exit (C99) and _exit (POSIX)
1016     # are safe but may not be available everywhere.  Thus we use
1017     # raise(SIGTERM) instead.  The check is run in a subshell so we
1018     # can redirect the "Terminated" message from the shell.  SIGBUS
1019     # is not defined by standard C so it is used conditionally.
1020
1021     (check_exec "$@") >> $logfile 2>&1 <<EOF
1022 #include <signal.h>
1023 static void sighandler(int sig){
1024     raise(SIGTERM);
1025 }
1026 int foo(void){
1027     $code
1028 }
1029 int (*func_ptr)(void) = foo;
1030 int main(void){
1031     signal(SIGILL, sighandler);
1032     signal(SIGFPE, sighandler);
1033     signal(SIGSEGV, sighandler);
1034 #ifdef SIGBUS
1035     signal(SIGBUS, sighandler);
1036 #endif
1037     return func_ptr();
1038 }
1039 EOF
1040 }
1041
1042 check_type(){
1043     log check_type "$@"
1044     headers=$1
1045     type=$2
1046     shift 2
1047     disable_safe "$type"
1048     check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
1049 }
1050
1051 check_struct(){
1052     log check_struct "$@"
1053     headers=$1
1054     struct=$2
1055     member=$3
1056     shift 3
1057     disable_safe "${struct}_${member}"
1058     check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
1059         enable_safe "${struct}_${member}"
1060 }
1061
1062 check_builtin(){
1063     log check_builtin "$@"
1064     name=$1
1065     headers=$2
1066     builtin=$3
1067     shift 3
1068     disable "$name"
1069     check_code ld "$headers" "$builtin" "cc" "$@" && enable "$name"
1070 }
1071
1072 require(){
1073     name="$1"
1074     header="$2"
1075     func="$3"
1076     shift 3
1077     check_lib $header $func "$@" || die "ERROR: $name not found"
1078 }
1079
1080 require2(){
1081     name="$1"
1082     headers="$2"
1083     func="$3"
1084     shift 3
1085     check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
1086 }
1087
1088 require_cpp(){
1089     name="$1"
1090     headers="$2"
1091     classes="$3"
1092     shift 3
1093     check_lib_cpp "$headers" "$classes" "$@" || die "ERROR: $name not found"
1094 }
1095
1096 require_pkg_config(){
1097     pkg="$1"
1098     check_pkg_config "$@" || die "ERROR: $pkg not found"
1099     add_cflags    $(get_safe ${pkg}_cflags)
1100     add_extralibs $(get_safe ${pkg}_libs)
1101 }
1102
1103 hostcc_o(){
1104     eval printf '%s\\n' $HOSTCC_O
1105 }
1106
1107 check_host_cc(){
1108     log check_host_cc "$@"
1109     cat > $TMPC
1110     log_file $TMPC
1111     check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
1112 }
1113
1114 check_host_cppflags(){
1115     log check_host_cppflags "$@"
1116     check_host_cc "$@" <<EOF && append host_cppflags "$@"
1117 int x;
1118 EOF
1119 }
1120
1121 check_host_cflags(){
1122     log check_host_cflags "$@"
1123     set -- $($host_cflags_filter "$@")
1124     check_host_cc "$@" <<EOF && append host_cflags "$@"
1125 int x;
1126 EOF
1127 }
1128
1129 apply(){
1130     file=$1
1131     shift
1132     "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
1133 }
1134
1135 cp_if_changed(){
1136     cmp -s "$1" "$2" && echo "$2 is unchanged" && return
1137     mkdir -p "$(dirname $2)"
1138     $cp_f "$1" "$2"
1139 }
1140
1141 # CONFIG_LIST contains configurable options, while HAVE_LIST is for
1142 # system-dependent things.
1143
1144 COMPONENT_LIST="
1145     bsfs
1146     decoders
1147     demuxers
1148     encoders
1149     filters
1150     hwaccels
1151     indevs
1152     muxers
1153     outdevs
1154     parsers
1155     protocols
1156 "
1157
1158 EXTERNAL_LIBRARY_LIST="
1159     avisynth
1160     bzlib
1161     crystalhd
1162     fontconfig
1163     frei0r
1164     gnutls
1165     iconv
1166     ladspa
1167     libaacplus
1168     libass
1169     libbluray
1170     libcaca
1171     libcdio
1172     libcelt
1173     libdc1394
1174     libfaac
1175     libfdk_aac
1176     libflite
1177     libfreetype
1178     libgme
1179     libgsm
1180     libiec61883
1181     libilbc
1182     libmodplug
1183     libmp3lame
1184     libnut
1185     libopencore_amrnb
1186     libopencore_amrwb
1187     libopencv
1188     libopenjpeg
1189     libopus
1190     libpulse
1191     libquvi
1192     librtmp
1193     libschroedinger
1194     libshine
1195     libsoxr
1196     libspeex
1197     libssh
1198     libstagefright_h264
1199     libtheora
1200     libtwolame
1201     libutvideo
1202     libv4l2
1203     libvidstab
1204     libvo_aacenc
1205     libvo_amrwbenc
1206     libvorbis
1207     libvpx
1208     libwavpack
1209     libx264
1210     libxavs
1211     libxvid
1212     libzmq
1213     libzvbi
1214     openal
1215     opencl
1216     openssl
1217     x11grab
1218     zlib
1219 "
1220
1221 DOCUMENT_LIST="
1222     doc
1223     htmlpages
1224     manpages
1225     podpages
1226     txtpages
1227 "
1228
1229 HWACCEL_LIST="
1230     dxva2
1231     vaapi
1232     vda
1233     vdpau
1234 "
1235
1236 LIBRARY_LIST="
1237     avcodec
1238     avdevice
1239     avfilter
1240     avformat
1241     avresample
1242     avutil
1243     postproc
1244     swresample
1245     swscale
1246 "
1247
1248 PROGRAM_LIST="
1249     ffplay
1250     ffprobe
1251     ffserver
1252     ffmpeg
1253 "
1254
1255 CONFIG_LIST="
1256     $COMPONENT_LIST
1257     $DOCUMENT_LIST
1258     $EXTERNAL_LIBRARY_LIST
1259     $HWACCEL_LIST
1260     $LIBRARY_LIST
1261     $PROGRAM_LIST
1262     dct
1263     dwt
1264     error_resilience
1265     fast_unaligned
1266     fft
1267     ftrapv
1268     gpl
1269     gray
1270     hardcoded_tables
1271     incompatible_libav_abi
1272     incompatible_fork_abi
1273     lsp
1274     lzo
1275     mdct
1276     memalign_hack
1277     memory_poisoning
1278     network
1279     nonfree
1280     pic
1281     rdft
1282     runtime_cpudetect
1283     safe_bitstream_reader
1284     shared
1285     small
1286     sram
1287     static
1288     swscale_alpha
1289     thumb
1290     version3
1291     xmm_clobber_test
1292 "
1293
1294 THREADS_LIST='
1295     pthreads
1296     w32threads
1297     os2threads
1298 '
1299
1300 ATOMICS_LIST='
1301     atomics_gcc
1302     atomics_suncc
1303     atomics_win32
1304 '
1305
1306 ARCH_LIST='
1307     aarch64
1308     alpha
1309     arm
1310     avr32
1311     avr32_ap
1312     avr32_uc
1313     bfin
1314     ia64
1315     m68k
1316     mips
1317     mips64
1318     parisc
1319     ppc
1320     ppc64
1321     s390
1322     sh4
1323     sparc
1324     sparc64
1325     tilegx
1326     tilepro
1327     tomi
1328     x86
1329     x86_32
1330     x86_64
1331 '
1332
1333 ARCH_EXT_LIST_ARM='
1334     armv5te
1335     armv6
1336     armv6t2
1337     neon
1338     vfp
1339     vfpv3
1340 '
1341
1342 ARCH_EXT_LIST_X86='
1343     amd3dnow
1344     amd3dnowext
1345     avx
1346     fma4
1347     i686
1348     mmx
1349     mmxext
1350     sse
1351     sse2
1352     sse3
1353     sse4
1354     sse42
1355     ssse3
1356 '
1357
1358 ARCH_EXT_LIST="
1359     $ARCH_EXT_LIST_ARM
1360     $ARCH_EXT_LIST_X86
1361     altivec
1362     ppc4xx
1363     vis
1364     mipsfpu
1365     mips32r2
1366     mipsdspr1
1367     mipsdspr2
1368 "
1369
1370 HAVE_LIST_CMDLINE='
1371     inline_asm
1372     symver
1373     yasm
1374 '
1375
1376 HAVE_LIST_PUB='
1377     bigendian
1378     fast_unaligned
1379     incompatible_libav_abi
1380     incompatible_fork_abi
1381 '
1382
1383 MATH_FUNCS="
1384     atanf
1385     atan2f
1386     cbrt
1387     cbrtf
1388     cosf
1389     exp2
1390     exp2f
1391     expf
1392     isinf
1393     isnan
1394     ldexpf
1395     llrint
1396     llrintf
1397     log2
1398     log2f
1399     log10f
1400     lrint
1401     lrintf
1402     powf
1403     rint
1404     round
1405     roundf
1406     sinf
1407     trunc
1408     truncf
1409 "
1410
1411 HAVE_LIST="
1412     $ARCH_EXT_LIST
1413     $(add_suffix _external $ARCH_EXT_LIST)
1414     $(add_suffix _inline   $ARCH_EXT_LIST)
1415     $HAVE_LIST_CMDLINE
1416     $HAVE_LIST_PUB
1417     $THREADS_LIST
1418     $ATOMICS_LIST
1419     $MATH_FUNCS
1420     access
1421     aligned_malloc
1422     aligned_stack
1423     alsa_asoundlib_h
1424     altivec_h
1425     arpa_inet_h
1426     asm_mod_q
1427     asm_mod_y
1428     asm_types_h
1429     atomic_cas_ptr
1430     atomics_native
1431     attribute_may_alias
1432     attribute_packed
1433     cdio_paranoia_h
1434     cdio_paranoia_paranoia_h
1435     CL_cl_h
1436     clock_gettime
1437     closesocket
1438     CommandLineToArgvW
1439     cpunop
1440     CryptGenRandom
1441     dcbzl
1442     dev_bktr_ioctl_bt848_h
1443     dev_bktr_ioctl_meteor_h
1444     dev_ic_bt8xx_h
1445     dev_video_bktr_ioctl_bt848_h
1446     dev_video_meteor_ioctl_meteor_h
1447     direct_h
1448     dlfcn_h
1449     dlopen
1450     dos_paths
1451     dxva_h
1452     ebp_available
1453     ebx_available
1454     fast_64bit
1455     fast_clz
1456     fast_cmov
1457     fcntl
1458     fork
1459     getaddrinfo
1460     gethrtime
1461     getopt
1462     GetProcessAffinityMask
1463     GetProcessMemoryInfo
1464     GetProcessTimes
1465     GetSystemTimeAsFileTime
1466     getrusage
1467     getservbyport
1468     gettimeofday
1469     glob
1470     gnu_as
1471     gsm_h
1472     ibm_asm
1473     inet_aton
1474     io_h
1475     inline_asm_labels
1476     isatty
1477     jack_port_get_latency_range
1478     kbhit
1479     ldbrx
1480     libdc1394_1
1481     libdc1394_2
1482     local_aligned_16
1483     local_aligned_8
1484     localtime_r
1485     loongson
1486     lzo1x_999_compress
1487     machine_ioctl_bt848_h
1488     machine_ioctl_meteor_h
1489     machine_rw_barrier
1490     makeinfo
1491     malloc_h
1492     MapViewOfFile
1493     memalign
1494     MemoryBarrier
1495     mkstemp
1496     mm_empty
1497     mmap
1498     mprotect
1499     msvcrt
1500     nanosleep
1501     openjpeg_1_5_openjpeg_h
1502     PeekNamedPipe
1503     perl
1504     pod2man
1505     poll_h
1506     posix_memalign
1507     pragma_deprecated
1508     pthread_cancel
1509     rdtsc
1510     rsync_contimeout
1511     sarestart
1512     sched_getaffinity
1513     sdl
1514     SetConsoleTextAttribute
1515     setmode
1516     setrlimit
1517     Sleep
1518     sndio_h
1519     socklen_t
1520     soundcard_h
1521     strerror_r
1522     struct_addrinfo
1523     struct_group_source_req
1524     struct_ip_mreq_source
1525     struct_ipv6_mreq
1526     struct_pollfd
1527     struct_rusage_ru_maxrss
1528     struct_sctp_event_subscribe
1529     struct_sockaddr_in6
1530     struct_sockaddr_sa_len
1531     struct_sockaddr_storage
1532     struct_stat_st_mtim_tv_nsec
1533     struct_v4l2_frmivalenum_discrete
1534     symver_asm_label
1535     symver_gnu_asm
1536     sync_val_compare_and_swap
1537     sysconf
1538     sysctl
1539     sys_mman_h
1540     sys_param_h
1541     sys_resource_h
1542     sys_select_h
1543     sys_soundcard_h
1544     sys_time_h
1545     sys_un_h
1546     sys_videoio_h
1547     termios_h
1548     texi2html
1549     threads
1550     unistd_h
1551     usleep
1552     vfp_args
1553     VirtualAlloc
1554     windows_h
1555     winsock2_h
1556     xform_asm
1557     xmm_clobbers
1558 "
1559
1560 # options emitted with CONFIG_ prefix but not available on the command line
1561 CONFIG_EXTRA="
1562     aandcttables
1563     ac3dsp
1564     audio_frame_queue
1565     dsputil
1566     exif
1567     frame_thread_encoder
1568     gcrypt
1569     golomb
1570     gplv3
1571     h264chroma
1572     h264dsp
1573     h264pred
1574     h264qpel
1575     hpeldsp
1576     huffman
1577     lgplv3
1578     lpc
1579     mpegaudio
1580     mpegaudiodsp
1581     mpegvideo
1582     mpegvideoenc
1583     nettle
1584     rangecoder
1585     riffdec
1586     riffenc
1587     rtpdec
1588     rtpenc_chain
1589     sinewin
1590     videodsp
1591     vp3dsp
1592 "
1593
1594 CMDLINE_SELECT="
1595     $ARCH_EXT_LIST
1596     $CONFIG_LIST
1597     $HAVE_LIST_CMDLINE
1598     $THREADS_LIST
1599     asm
1600     cross_compile
1601     debug
1602     extra_warnings
1603     logging
1604     lto
1605     optimizations
1606     stripping
1607 "
1608
1609 PATHS_LIST='
1610     bindir
1611     datadir
1612     docdir
1613     incdir
1614     libdir
1615     mandir
1616     prefix
1617     shlibdir
1618 '
1619
1620 CMDLINE_SET="
1621     $PATHS_LIST
1622     ar
1623     arch
1624     as
1625     assert_level
1626     build_suffix
1627     cc
1628     cpu
1629     cross_prefix
1630     cxx
1631     dep_cc
1632     extra_version
1633     host_cc
1634     host_cflags
1635     host_ld
1636     host_ldflags
1637     host_libs
1638     host_os
1639     install
1640     ld
1641     logfile
1642     malloc_prefix
1643     nm
1644     optflags
1645     pkg_config
1646     progs_suffix
1647     random_seed
1648     samples
1649     strip
1650     sysinclude
1651     sysroot
1652     target_exec
1653     target_os
1654     target_path
1655     target_samples
1656     toolchain
1657     valgrind
1658     yasmexe
1659 "
1660
1661 CMDLINE_APPEND="
1662     extra_cflags
1663     extra_cxxflags
1664     host_cppflags
1665 "
1666
1667 # code dependency declarations
1668
1669 # architecture extensions
1670
1671 armv5te_deps="arm"
1672 armv6_deps="arm"
1673 armv6t2_deps="arm"
1674 neon_deps="arm"
1675 vfp_deps="arm"
1676 vfpv3_deps="vfp"
1677
1678 map 'eval ${v}_inline_deps=inline_asm' $ARCH_EXT_LIST_ARM
1679
1680 mipsfpu_deps="mips"
1681 mips32r2_deps="mips"
1682 mipsdspr1_deps="mips"
1683 mipsdspr2_deps="mips"
1684
1685 altivec_deps="ppc"
1686 ppc4xx_deps="ppc"
1687
1688 vis_deps="sparc"
1689
1690 cpunop_deps="i686"
1691 x86_64_select="i686"
1692 x86_64_suggest="fast_cmov"
1693
1694 amd3dnow_deps="mmx"
1695 amd3dnowext_deps="amd3dnow"
1696 mmx_deps="x86"
1697 mmxext_deps="mmx"
1698 sse_deps="mmxext"
1699 sse2_deps="sse"
1700 sse3_deps="sse2"
1701 ssse3_deps="sse3"
1702 sse4_deps="ssse3"
1703 sse42_deps="sse4"
1704 avx_deps="sse42"
1705 fma4_deps="avx"
1706
1707 mmx_external_deps="yasm"
1708 mmx_inline_deps="inline_asm"
1709 mmx_suggest="mmx_external mmx_inline"
1710
1711 for ext in $(filter_out mmx $ARCH_EXT_LIST_X86); do
1712     eval dep=\$${ext}_deps
1713     eval ${ext}_external_deps='"${dep}_external"'
1714     eval ${ext}_inline_deps='"${dep}_inline"'
1715     eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
1716 done
1717
1718 aligned_stack_if_any="ppc x86"
1719 fast_64bit_if_any="alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
1720 fast_clz_if_any="alpha avr32 mips ppc x86"
1721 fast_unaligned_if_any="ppc x86"
1722
1723 inline_asm_deps="!tms470"
1724 need_memalign="altivec neon sse"
1725
1726 symver_if_any="symver_asm_label symver_gnu_asm"
1727
1728 log2_deps="!msvcrt"
1729
1730 # subsystems
1731 dct_select="rdft"
1732 error_resilience_select="dsputil"
1733 frame_thread_encoder_deps="encoders threads"
1734 lpc_select="dsputil"
1735 mdct_select="fft"
1736 rdft_select="fft"
1737 mpegaudio_select="mpegaudiodsp"
1738 mpegaudiodsp_select="dct"
1739 mpegvideo_select="dsputil h264chroma hpeldsp videodsp"
1740 mpegvideoenc_select="mpegvideo"
1741
1742 # decoders / encoders
1743 aac_decoder_select="mdct sinewin"
1744 aac_encoder_select="audio_frame_queue mdct sinewin"
1745 aac_latm_decoder_select="aac_decoder aac_latm_parser"
1746 ac3_decoder_select="mdct ac3dsp ac3_parser dsputil"
1747 ac3_encoder_select="mdct ac3dsp dsputil"
1748 ac3_fixed_encoder_select="mdct ac3dsp dsputil"
1749 aic_decoder_select="dsputil golomb"
1750 alac_encoder_select="lpc"
1751 als_decoder_select="dsputil"
1752 amrnb_decoder_select="lsp"
1753 amrwb_decoder_select="lsp"
1754 amv_decoder_select="dsputil hpeldsp exif"
1755 amv_encoder_select="aandcttables"
1756 ape_decoder_select="dsputil"
1757 asv1_decoder_select="dsputil"
1758 asv1_encoder_select="dsputil"
1759 asv2_decoder_select="dsputil"
1760 asv2_encoder_select="dsputil"
1761 atrac1_decoder_select="mdct sinewin"
1762 atrac3_decoder_select="mdct"
1763 avrn_decoder_select="exif"
1764 bink_decoder_select="dsputil hpeldsp"
1765 binkaudio_dct_decoder_select="mdct rdft dct sinewin"
1766 binkaudio_rdft_decoder_select="mdct rdft sinewin"
1767 cavs_decoder_select="dsputil golomb h264chroma videodsp"
1768 cllc_decoder_select="dsputil"
1769 comfortnoise_encoder_select="lpc"
1770 cook_decoder_select="dsputil mdct sinewin"
1771 cscd_decoder_select="lzo"
1772 cscd_decoder_suggest="zlib"
1773 dca_decoder_select="mdct"
1774 dirac_decoder_select="dsputil dwt golomb videodsp"
1775 dnxhd_decoder_select="dsputil"
1776 dnxhd_encoder_select="aandcttables dsputil mpegvideoenc"
1777 dvvideo_decoder_select="dsputil"
1778 dvvideo_encoder_select="dsputil"
1779 dxa_decoder_select="zlib"
1780 eac3_decoder_select="ac3_decoder"
1781 eac3_encoder_select="ac3_encoder"
1782 eamad_decoder_select="aandcttables dsputil mpegvideo"
1783 eatgq_decoder_select="aandcttables"
1784 eatqi_decoder_select="aandcttables error_resilience mpegvideo"
1785 exr_decoder_select="zlib"
1786 ffv1_decoder_select="dsputil golomb rangecoder"
1787 ffv1_encoder_select="dsputil rangecoder"
1788 ffvhuff_decoder_select="dsputil"
1789 ffvhuff_encoder_select="dsputil huffman"
1790 flac_decoder_select="golomb"
1791 flac_encoder_select="dsputil golomb lpc"
1792 flashsv_decoder_select="zlib"
1793 flashsv_encoder_select="zlib"
1794 flashsv2_encoder_select="zlib"
1795 flashsv2_decoder_select="zlib"
1796 flv_decoder_select="h263_decoder"
1797 flv_encoder_select="h263_encoder"
1798 fourxm_decoder_select="dsputil"
1799 fraps_decoder_select="dsputil huffman"
1800 g2m_decoder_select="dsputil zlib"
1801 g729_decoder_select="dsputil"
1802 h261_decoder_select="error_resilience mpegvideo"
1803 h261_encoder_select="aandcttables mpegvideoenc"
1804 h263_decoder_select="error_resilience h263_parser mpegvideo"
1805 h263_encoder_select="aandcttables mpegvideoenc"
1806 h263i_decoder_select="h263_decoder"
1807 h263p_encoder_select="h263_encoder"
1808 h264_decoder_select="golomb h264chroma h264dsp h264pred h264qpel videodsp"
1809 h264_decoder_suggest="error_resilience"
1810 huffyuv_decoder_select="dsputil"
1811 huffyuv_encoder_select="dsputil huffman"
1812 iac_decoder_select="dsputil fft mdct sinewin"
1813 imc_decoder_select="dsputil fft mdct sinewin"
1814 indeo3_decoder_select="hpeldsp"
1815 interplay_video_decoder_select="hpeldsp"
1816 jpegls_decoder_select="dsputil golomb hpeldsp exif"
1817 jpegls_encoder_select="golomb"
1818 jv_decoder_select="dsputil"
1819 lagarith_decoder_select="dsputil"
1820 ljpeg_encoder_select="aandcttables mpegvideoenc"
1821 loco_decoder_select="golomb"
1822 mdec_decoder_select="dsputil error_resilience mpegvideo"
1823 metasound_decoder_select="lsp mdct sinewin"
1824 mimic_decoder_select="dsputil hpeldsp"
1825 mjpeg_decoder_select="dsputil hpeldsp exif"
1826 mjpegb_decoder_select="dsputil hpeldsp exif"
1827 mjpeg_encoder_select="aandcttables dsputil mpegvideoenc"
1828 mlp_decoder_select="dsputil mlp_parser"
1829 motionpixels_decoder_select="dsputil"
1830 mp1_decoder_select="mpegaudio"
1831 mp1float_decoder_select="mpegaudio"
1832 mp2_decoder_select="mpegaudio"
1833 mp2float_decoder_select="mpegaudio"
1834 mp3_decoder_select="mpegaudio"
1835 mp3adu_decoder_select="mpegaudio"
1836 mp3adufloat_decoder_select="mpegaudio"
1837 mp3float_decoder_select="mpegaudio"
1838 mp3on4_decoder_select="mpegaudio"
1839 mp3on4float_decoder_select="mpegaudio"
1840 mpc7_decoder_select="dsputil mpegaudiodsp"
1841 mpc8_decoder_select="dsputil mpegaudiodsp"
1842 mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
1843 mpeg_xvmc_decoder_select="mpeg2video_decoder"
1844 mpeg1video_decoder_select="error_resilience mpegvideo"
1845 mpeg1video_encoder_select="aandcttables mpegvideoenc"
1846 mpeg2video_decoder_select="error_resilience mpegvideo"
1847 mpeg2video_encoder_select="aandcttables mpegvideoenc"
1848 mpeg4_decoder_select="h263_decoder mpeg4video_parser"
1849 mpeg4_encoder_select="h263_encoder"
1850 msmpeg4v1_decoder_select="h263_decoder"
1851 msmpeg4v2_decoder_select="h263_decoder"
1852 msmpeg4v2_encoder_select="h263_encoder"
1853 msmpeg4v3_decoder_select="h263_decoder"
1854 msmpeg4v3_encoder_select="h263_encoder"
1855 mss2_decoder_select="error_resilience vc1_decoder"
1856 mxpeg_decoder_select="dsputil hpeldsp exif"
1857 nellymoser_decoder_select="mdct sinewin"
1858 nellymoser_encoder_select="audio_frame_queue mdct sinewin"
1859 nuv_decoder_select="dsputil lzo"
1860 png_decoder_select="zlib"
1861 png_encoder_select="dsputil zlib"
1862 prores_decoder_select="dsputil"
1863 prores_encoder_select="dsputil"
1864 qcelp_decoder_select="lsp"
1865 qdm2_decoder_select="mdct rdft mpegaudiodsp"
1866 ra_144_encoder_select="audio_frame_queue lpc"
1867 ralf_decoder_select="golomb"
1868 rtjpeg_decoder_select="dsputil"
1869 rv10_decoder_select="error_resilience h263_decoder"
1870 rv10_encoder_select="h263_encoder"
1871 rv20_decoder_select="error_resilience h263_decoder"
1872 rv20_encoder_select="h263_encoder"
1873 rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo videodsp"
1874 rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo videodsp"
1875 shorten_decoder_select="golomb"
1876 sipr_decoder_select="lsp"
1877 snow_decoder_select="dsputil dwt h264qpel hpeldsp rangecoder"
1878 snow_encoder_select="aandcttables dsputil dwt h264qpel hpeldsp mpegvideoenc rangecoder"
1879 sonic_decoder_select="golomb"
1880 sonic_encoder_select="golomb"
1881 sonic_ls_encoder_select="golomb"
1882 sp5x_decoder_select="dsputil hpeldsp exif"
1883 svq1_decoder_select="hpeldsp"
1884 svq1_encoder_select="aandcttables dsputil hpeldsp mpegvideoenc"
1885 svq3_decoder_select="golomb h264chroma h264dsp h264pred h264qpel hpeldsp mpegvideo videodsp"
1886 svq3_decoder_suggest="error_resilience zlib"
1887 tak_decoder_select="dsputil"
1888 theora_decoder_select="vp3_decoder"
1889 tiff_decoder_suggest="zlib"
1890 tiff_encoder_suggest="zlib"
1891 thp_decoder_select="dsputil hpeldsp exif"
1892 truehd_decoder_select="mlp_parser"
1893 truemotion2_decoder_select="dsputil"
1894 truespeech_decoder_select="dsputil"
1895 tscc_decoder_select="zlib"
1896 twinvq_decoder_select="mdct lsp sinewin"
1897 utvideo_decoder_select="dsputil"
1898 utvideo_encoder_select="dsputil huffman"
1899 vble_decoder_select="dsputil"
1900 vc1_decoder_select="error_resilience h263_decoder h264chroma h264qpel"
1901 vc1image_decoder_select="vc1_decoder"
1902 vorbis_decoder_select="mdct"
1903 vorbis_encoder_select="mdct"
1904 vp3_decoder_select="hpeldsp vp3dsp videodsp"
1905 vp5_decoder_select="h264chroma hpeldsp videodsp vp3dsp"
1906 vp6_decoder_select="h264chroma hpeldsp huffman videodsp vp3dsp"
1907 vp6a_decoder_select="vp6_decoder"
1908 vp6f_decoder_select="vp6_decoder"
1909 vp8_decoder_select="h264pred videodsp"
1910 vp9_decoder_select="videodsp"
1911 webp_decoder_select="vp8_decoder"
1912 wmapro_decoder_select="mdct sinewin"
1913 wmav1_decoder_select="mdct sinewin"
1914 wmav1_encoder_select="mdct sinewin"
1915 wmav2_decoder_select="mdct sinewin"
1916 wmav2_encoder_select="mdct sinewin"
1917 wmavoice_decoder_select="lsp rdft dct mdct sinewin"
1918 wmv1_decoder_select="h263_decoder"
1919 wmv1_encoder_select="h263_encoder"
1920 wmv2_decoder_select="h263_decoder videodsp"
1921 wmv2_encoder_select="h263_encoder"
1922 wmv3_decoder_select="vc1_decoder"
1923 wmv3image_decoder_select="wmv3_decoder"
1924 zerocodec_decoder_select="zlib"
1925 zlib_decoder_select="zlib"
1926 zlib_encoder_select="zlib"
1927 zmbv_decoder_select="zlib"
1928 zmbv_encoder_select="zlib"
1929
1930 # hardware accelerators
1931 crystalhd_deps="libcrystalhd_libcrystalhd_if_h"
1932 dxva2_deps="dxva2api_h"
1933 vaapi_deps="va_va_h"
1934 vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
1935 vda_extralibs="-framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore"
1936 vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
1937
1938 h263_vaapi_hwaccel_deps="vaapi"
1939 h263_vaapi_hwaccel_select="h263_decoder"
1940 h263_vdpau_hwaccel_deps="vdpau"
1941 h263_vdpau_hwaccel_select="h263_decoder"
1942 h264_crystalhd_decoder_select="crystalhd h264_mp4toannexb_bsf h264_parser"
1943 h264_dxva2_hwaccel_deps="dxva2"
1944 h264_dxva2_hwaccel_select="h264_decoder"
1945 h264_vaapi_hwaccel_deps="vaapi"
1946 h264_vaapi_hwaccel_select="h264_decoder"
1947 h264_vda_decoder_deps="vda"
1948 h264_vda_decoder_select="h264_decoder"
1949 h264_vda_hwaccel_deps="vda"
1950 h264_vda_hwaccel_select="h264_decoder"
1951 h264_vdpau_decoder_deps="vdpau"
1952 h264_vdpau_decoder_select="h264_decoder"
1953 h264_vdpau_hwaccel_deps="vdpau"
1954 h264_vdpau_hwaccel_select="h264_decoder"
1955 mpeg_vdpau_decoder_deps="vdpau"
1956 mpeg_vdpau_decoder_select="mpeg2video_decoder"
1957 mpeg1_vdpau_decoder_deps="vdpau"
1958 mpeg1_vdpau_decoder_select="mpeg1video_decoder"
1959 mpeg1_vdpau_hwaccel_deps="vdpau"
1960 mpeg1_vdpau_hwaccel_select="mpeg1video_decoder"
1961 mpeg2_crystalhd_decoder_select="crystalhd"
1962 mpeg2_dxva2_hwaccel_deps="dxva2"
1963 mpeg2_dxva2_hwaccel_select="mpeg2video_decoder"
1964 mpeg2_vaapi_hwaccel_deps="vaapi"
1965 mpeg2_vaapi_hwaccel_select="mpeg2video_decoder"
1966 mpeg2_vdpau_hwaccel_deps="vdpau"
1967 mpeg2_vdpau_hwaccel_select="mpeg2video_decoder"
1968 mpeg4_crystalhd_decoder_select="crystalhd"
1969 mpeg4_vaapi_hwaccel_deps="vaapi"
1970 mpeg4_vaapi_hwaccel_select="mpeg4_decoder"
1971 mpeg4_vdpau_decoder_deps="vdpau"
1972 mpeg4_vdpau_decoder_select="mpeg4_decoder"
1973 mpeg4_vdpau_hwaccel_deps="vdpau"
1974 mpeg4_vdpau_hwaccel_select="mpeg4_decoder"
1975 msmpeg4_crystalhd_decoder_select="crystalhd"
1976 vc1_crystalhd_decoder_select="crystalhd"
1977 vc1_dxva2_hwaccel_deps="dxva2"
1978 vc1_dxva2_hwaccel_select="vc1_decoder"
1979 vc1_vaapi_hwaccel_deps="vaapi"
1980 vc1_vaapi_hwaccel_select="vc1_decoder"
1981 vc1_vdpau_decoder_deps="vdpau"
1982 vc1_vdpau_decoder_select="vc1_decoder"
1983 vc1_vdpau_hwaccel_deps="vdpau"
1984 vc1_vdpau_hwaccel_select="vc1_decoder"
1985 wmv3_crystalhd_decoder_select="crystalhd"
1986 wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
1987 wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
1988 wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
1989 wmv3_vdpau_hwaccel_select="vc1_vdpau_hwaccel"
1990
1991 # parsers
1992 h264_parser_select="golomb h264chroma h264dsp h264pred h264qpel videodsp"
1993 mpeg4video_parser_select="error_resilience mpegvideo"
1994 mpegvideo_parser_select="error_resilience mpegvideo"
1995 vc1_parser_select="mpegvideo"
1996
1997 # external libraries
1998 libaacplus_encoder_deps="libaacplus"
1999 libcelt_decoder_deps="libcelt"
2000 libfaac_encoder_deps="libfaac"
2001 libfaac_encoder_select="audio_frame_queue"
2002 libfdk_aac_decoder_deps="libfdk_aac"
2003 libfdk_aac_encoder_deps="libfdk_aac"
2004 libfdk_aac_encoder_select="audio_frame_queue"
2005 libgme_demuxer_deps="libgme"
2006 libgsm_decoder_deps="libgsm"
2007 libgsm_encoder_deps="libgsm"
2008 libgsm_ms_decoder_deps="libgsm"
2009 libgsm_ms_encoder_deps="libgsm"
2010 libilbc_decoder_deps="libilbc"
2011 libilbc_encoder_deps="libilbc"
2012 libmodplug_demuxer_deps="libmodplug"
2013 libmp3lame_encoder_deps="libmp3lame"
2014 libmp3lame_encoder_select="audio_frame_queue"
2015 libopencore_amrnb_decoder_deps="libopencore_amrnb"
2016 libopencore_amrnb_encoder_deps="libopencore_amrnb"
2017 libopencore_amrnb_encoder_select="audio_frame_queue"
2018 libopencore_amrwb_decoder_deps="libopencore_amrwb"
2019 libopenjpeg_decoder_deps="libopenjpeg"
2020 libopenjpeg_encoder_deps="libopenjpeg"
2021 libopus_decoder_deps="libopus"
2022 libopus_encoder_deps="libopus"
2023 libopus_encoder_select="audio_frame_queue"
2024 libquvi_demuxer_deps="libquvi"
2025 libschroedinger_decoder_deps="libschroedinger"
2026 libschroedinger_encoder_deps="libschroedinger"
2027 libshine_encoder_deps="libshine"
2028 libshine_encoder_select="audio_frame_queue"
2029 libspeex_decoder_deps="libspeex"
2030 libspeex_encoder_deps="libspeex"
2031 libspeex_encoder_select="audio_frame_queue"
2032 libstagefright_h264_decoder_deps="libstagefright_h264"
2033 libtheora_encoder_deps="libtheora"
2034 libtwolame_encoder_deps="libtwolame"
2035 libvo_aacenc_encoder_deps="libvo_aacenc"
2036 libvo_aacenc_encoder_select="audio_frame_queue"
2037 libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
2038 libvorbis_decoder_deps="libvorbis"
2039 libvorbis_encoder_deps="libvorbis"
2040 libvorbis_encoder_select="audio_frame_queue"
2041 libvpx_vp8_decoder_deps="libvpx"
2042 libvpx_vp8_encoder_deps="libvpx"
2043 libvpx_vp9_decoder_deps="libvpx"
2044 libvpx_vp9_encoder_deps="libvpx"
2045 libwavpack_encoder_deps="libwavpack"
2046 libx264_encoder_deps="libx264"
2047 libx264rgb_encoder_deps="libx264"
2048 libxavs_encoder_deps="libxavs"
2049 libxvid_encoder_deps="libxvid"
2050 libutvideo_decoder_deps="libutvideo"
2051 libutvideo_encoder_deps="libutvideo"
2052 libzvbi_teletext_decoder_deps="libzvbi"
2053
2054 # demuxers / muxers
2055 ac3_demuxer_select="ac3_parser"
2056 asf_demuxer_select="riffdec"
2057 asf_muxer_select="riffenc"
2058 asf_stream_muxer_select="asf_muxer"
2059 avi_demuxer_select="riffdec"
2060 avi_muxer_select="riffenc"
2061 avisynth_demuxer_deps="avisynth"
2062 avisynth_demuxer_select="riffdec"
2063 caf_demuxer_select="riffdec"
2064 dirac_demuxer_select="dirac_parser"
2065 dts_demuxer_select="dca_parser"
2066 dtshd_demuxer_select="dca_parser"
2067 dxa_demuxer_select="riffdec"
2068 eac3_demuxer_select="ac3_parser"
2069 f4v_muxer_select="mov_muxer"
2070 flac_demuxer_select="flac_parser"
2071 hls_muxer_select="mpegts_muxer"
2072 ipod_muxer_select="mov_muxer"
2073 ismv_muxer_select="mov_muxer"
2074 libnut_demuxer_deps="libnut"
2075 libnut_muxer_deps="libnut"
2076 matroska_audio_muxer_select="matroska_muxer"
2077 matroska_demuxer_select="riffdec"
2078 matroska_demuxer_suggest="bzlib lzo zlib"
2079 matroska_muxer_select="riffenc"
2080 mmf_muxer_select="riffenc"
2081 mov_demuxer_select="riffdec"
2082 mov_demuxer_suggest="zlib"
2083 mov_muxer_select="riffenc rtpenc_chain"
2084 mp3_demuxer_select="mpegaudio_parser"
2085 mp4_muxer_select="mov_muxer"
2086 mpegts_muxer_select="adts_muxer latm_muxer"
2087 mpegtsraw_demuxer_select="mpegts_demuxer"
2088 mxf_d10_muxer_select="mxf_muxer"
2089 nut_muxer_select="riffenc"
2090 nuv_demuxer_select="riffdec"
2091 ogg_demuxer_select="golomb"
2092 psp_muxer_select="mov_muxer"
2093 rtp_demuxer_select="sdp_demuxer"
2094 rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
2095 rtsp_demuxer_select="http_protocol rtpdec"
2096 rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol rtpenc_chain"
2097 sap_demuxer_select="sdp_demuxer"
2098 sap_muxer_select="rtp_muxer rtp_protocol rtpenc_chain"
2099 sdp_demuxer_select="rtpdec"
2100 smoothstreaming_muxer_select="ismv_muxer"
2101 spdif_muxer_select="aac_parser"
2102 tak_demuxer_select="tak_parser"
2103 tg2_muxer_select="mov_muxer"
2104 tgp_muxer_select="mov_muxer"
2105 vobsub_demuxer_select="mpegps_demuxer"
2106 w64_demuxer_select="wav_demuxer"
2107 w64_muxer_select="wav_muxer"
2108 wav_demuxer_select="riffdec"
2109 wav_muxer_select="riffenc"
2110 webm_muxer_select="riffenc"
2111 wtv_demuxer_select="riffdec"
2112 xmv_demuxer_select="riffdec"
2113 xwma_demuxer_select="riffdec"
2114
2115 # indevs / outdevs
2116 alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
2117 alsa_outdev_deps="alsa_asoundlib_h"
2118 bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
2119 caca_outdev_deps="libcaca"
2120 dshow_indev_deps="IBaseFilter"
2121 dshow_indev_extralibs="-lpsapi -lole32 -lstrmiids -luuid"
2122 dv1394_indev_deps="dv1394"
2123 dv1394_indev_select="dv_demuxer"
2124 fbdev_indev_deps="linux_fb_h"
2125 iec61883_indev_deps="libiec61883"
2126 jack_indev_deps="jack_jack_h sem_timedwait"
2127 lavfi_indev_deps="avfilter"
2128 libcdio_indev_deps="libcdio"
2129 libdc1394_indev_deps="libdc1394"
2130 libv4l2_indev_deps="libv4l2"
2131 openal_indev_deps="openal"
2132 oss_indev_deps_any="soundcard_h sys_soundcard_h"
2133 oss_outdev_deps_any="soundcard_h sys_soundcard_h"
2134 pulse_indev_deps="libpulse"
2135 sdl_outdev_deps="sdl"
2136 sndio_indev_deps="sndio_h"
2137 sndio_outdev_deps="sndio_h"
2138 v4l_indev_deps="linux_videodev_h"
2139 v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
2140 v4l2_outdev_deps_any="linux_videodev2_h sys_videoio_h"
2141 vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
2142 vfwcap_indev_extralibs="-lavicap32"
2143 xv_outdev_deps="X11_extensions_Xvlib_h XvGetPortAttribute"
2144 xv_outdev_extralibs="-lXv -lX11 -lXext"
2145 x11grab_indev_deps="x11grab"
2146
2147 # protocols
2148 bluray_protocol_deps="libbluray"
2149 ffrtmpcrypt_protocol_deps="!librtmp_protocol"
2150 ffrtmpcrypt_protocol_deps_any="gcrypt nettle openssl"
2151 ffrtmpcrypt_protocol_select="tcp_protocol"
2152 ffrtmphttp_protocol_deps="!librtmp_protocol"
2153 ffrtmphttp_protocol_select="http_protocol"
2154 ftp_protocol_select="tcp_protocol"
2155 gopher_protocol_select="network"
2156 httpproxy_protocol_select="tcp_protocol"
2157 http_protocol_select="tcp_protocol"
2158 https_protocol_select="tls_protocol"
2159 librtmp_protocol_deps="librtmp"
2160 librtmpe_protocol_deps="librtmp"
2161 librtmps_protocol_deps="librtmp"
2162 librtmpt_protocol_deps="librtmp"
2163 librtmpte_protocol_deps="librtmp"
2164 libssh_protocol_deps="libssh"
2165 mmsh_protocol_select="http_protocol"
2166 mmst_protocol_select="network"
2167 rtmp_protocol_deps="!librtmp_protocol"
2168 rtmp_protocol_select="tcp_protocol"
2169 rtmpe_protocol_select="ffrtmpcrypt_protocol"
2170 rtmps_protocol_deps="!librtmp_protocol"
2171 rtmps_protocol_select="tls_protocol"
2172 rtmpt_protocol_select="ffrtmphttp_protocol"
2173 rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
2174 rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
2175 rtp_protocol_select="udp_protocol"
2176 sctp_protocol_deps="struct_sctp_event_subscribe"
2177 sctp_protocol_select="network"
2178 srtp_protocol_select="rtp_protocol"
2179 tcp_protocol_select="network"
2180 tls_protocol_deps_any="openssl gnutls"
2181 tls_protocol_select="tcp_protocol"
2182 udp_protocol_select="network"
2183 unix_protocol_deps="sys_un_h"
2184 unix_protocol_select="network"
2185
2186 # filters
2187 aconvert_filter_deps="swresample"
2188 amovie_filter_deps="avcodec avformat"
2189 aresample_filter_deps="swresample"
2190 ass_filter_deps="libass"
2191 asyncts_filter_deps="avresample"
2192 atempo_filter_deps="avcodec rdft"
2193 azmq_filter_deps="libzmq"
2194 blackframe_filter_deps="gpl"
2195 boxblur_filter_deps="gpl"
2196 colormatrix_filter_deps="gpl"
2197 cropdetect_filter_deps="gpl"
2198 dctdnoiz_filter_deps="avcodec fft"
2199 delogo_filter_deps="gpl"
2200 deshake_filter_deps="avcodec"
2201 deshake_filter_select="dsputil"
2202 drawtext_filter_deps="libfreetype"
2203 ebur128_filter_deps="gpl"
2204 flite_filter_deps="libflite"
2205 frei0r_filter_deps="frei0r dlopen"
2206 frei0r_filter_extralibs='$ldl'
2207 frei0r_src_filter_deps="frei0r dlopen"
2208 frei0r_src_filter_extralibs='$ldl'
2209 geq_filter_deps="gpl"
2210 histeq_filter_deps="gpl"
2211 hqdn3d_filter_deps="gpl"
2212 interlace_filter_deps="gpl"
2213 kerndeint_filter_deps="gpl"
2214 ladspa_filter_deps="ladspa dlopen"
2215 mcdeint_filter_deps="avcodec gpl"
2216 movie_filter_deps="avcodec avformat"
2217 mp_filter_deps="gpl avcodec swscale inline_asm"
2218 mpdecimate_filter_deps="gpl avcodec"
2219 mptestsrc_filter_deps="gpl"
2220 negate_filter_deps="lut_filter"
2221 noise_filter_deps="gpl"
2222 perspective_filter_deps="gpl"
2223 resample_filter_deps="avresample"
2224 ocv_filter_deps="libopencv"
2225 owdenoise_filter_deps="gpl"
2226 pan_filter_deps="swresample"
2227 phase_filter_deps="gpl"
2228 pp_filter_deps="gpl postproc"
2229 pullup_filter_deps="gpl"
2230 removelogo_filter_deps="avcodec avformat swscale"
2231 sab_filter_deps="gpl swscale"
2232 scale_filter_deps="swscale"
2233 smartblur_filter_deps="gpl swscale"
2234 showspectrum_filter_deps="avcodec rdft"
2235 spp_filter_deps="gpl avcodec fft"
2236 stereo3d_filter_deps="gpl"
2237 subtitles_filter_deps="avformat avcodec libass"
2238 super2xsai_filter_deps="gpl"
2239 tinterlace_filter_deps="gpl"
2240 vidstabdetect_filter_deps="libvidstab"
2241 vidstabtransform_filter_deps="libvidstab"
2242 yadif_filter_deps="gpl"
2243 pixfmts_super2xsai_test_deps="super2xsai_filter"
2244 tinterlace_merge_test_deps="tinterlace_filter"
2245 tinterlace_pad_test_deps="tinterlace_filter"
2246 zmq_filter_deps="libzmq"
2247
2248 # libraries
2249 avcodec_deps="avutil"
2250 avdevice_deps="avutil avcodec avformat"
2251 avfilter_deps="avutil"
2252 avformat_deps="avutil avcodec"
2253 avresample_deps="avutil"
2254 postproc_deps="avutil gpl"
2255 swscale_deps="avutil"
2256
2257 # programs
2258 ffmpeg_deps="avcodec avfilter avformat swscale swresample"
2259 ffmpeg_select="aformat_filter anull_filter atrim_filter format_filter
2260                null_filter
2261                setpts_filter trim_filter"
2262 ffplay_deps="avcodec avformat swscale swresample sdl"
2263 ffplay_select="rdft crop_filter"
2264 ffprobe_deps="avcodec avformat"
2265 ffserver_deps="avformat fork sarestart"
2266 ffserver_select="ffm_muxer rtp_protocol rtsp_demuxer"
2267 ffserver_extralibs='$ldl'
2268
2269 # documentation
2270 podpages_deps="perl"
2271 manpages_deps="perl pod2man"
2272 htmlpages_deps="texi2html"
2273 txtpages_deps="makeinfo"
2274 doc_deps_any="manpages htmlpages podpages txtpages"
2275
2276 # default parameters
2277
2278 logfile="config.log"
2279
2280 # installation paths
2281 prefix_default="/usr/local"
2282 bindir_default='${prefix}/bin'
2283 datadir_default='${prefix}/share/ffmpeg'
2284 docdir_default='${prefix}/share/doc/ffmpeg'
2285 incdir_default='${prefix}/include'
2286 libdir_default='${prefix}/lib'
2287 mandir_default='${prefix}/share/man'
2288 shlibdir_default="$libdir_default"
2289
2290 # toolchain
2291 ar_default="ar"
2292 cc_default="gcc"
2293 cxx_default="g++"
2294 host_cc_default="gcc"
2295 cp_f="cp -f"
2296 install="install"
2297 ln_s="ln -s -f"
2298 nm_default="nm -g"
2299 objformat="elf"
2300 pkg_config_default=pkg-config
2301 ranlib="ranlib"
2302 strip_default="strip"
2303 yasmexe_default="yasm"
2304
2305 nogas=":"
2306
2307 # machine
2308 arch_default=$(uname -m)
2309 cpu="generic"
2310
2311 # OS
2312 target_os_default=$(tolower $(uname -s))
2313 host_os=$target_os_default
2314
2315 # configurable options
2316 enable $PROGRAM_LIST
2317 enable $DOCUMENT_LIST
2318 enable $(filter_out avresample $LIBRARY_LIST)
2319 enable stripping
2320
2321 enable asm
2322 enable debug
2323 enable doc
2324 enable optimizations
2325 enable runtime_cpudetect
2326 enable safe_bitstream_reader
2327 enable static
2328 enable swscale_alpha
2329
2330 # Enable hwaccels by default.
2331 enable dxva2 vaapi vdpau
2332
2333 # build settings
2334 SHFLAGS='-shared -Wl,-soname,$$(@F)'
2335 LIBPREF="lib"
2336 LIBSUF=".a"
2337 FULLNAME='$(NAME)$(BUILDSUF)'
2338 LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
2339 SLIBPREF="lib"
2340 SLIBSUF=".so"
2341 SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
2342 SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
2343 SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
2344 LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
2345 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
2346 SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
2347
2348 asflags_filter=echo
2349 cflags_filter=echo
2350 ldflags_filter=echo
2351
2352 AS_C='-c'
2353 AS_O='-o $@'
2354 CC_C='-c'
2355 CC_E='-E -o $@'
2356 CC_O='-o $@'
2357 CXX_C='-c'
2358 CXX_O='-o $@'
2359 LD_O='-o $@'
2360 LD_LIB='-l%'
2361 LD_PATH='-L'
2362 HOSTCC_C='-c'
2363 HOSTCC_O='-o $@'
2364 HOSTLD_O='-o $@'
2365
2366 host_cflags='-O3 -g'
2367 host_cppflags='-D_ISOC99_SOURCE -D_XOPEN_SOURCE=600'
2368 host_libs='-lm'
2369 host_cflags_filter=echo
2370 host_ldflags_filter=echo
2371
2372 target_path='$(CURDIR)'
2373
2374 # since the object filename is not given with the -MM flag, the compiler
2375 # is only able to print the basename, and we must add the path ourselves
2376 DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
2377 DEPFLAGS='-MM'
2378
2379 # find source path
2380 if test -f configure; then
2381     source_path=.
2382 else
2383     source_path=$(cd $(dirname "$0"); pwd)
2384     echo "$source_path" | grep -q '[[:blank:]]' &&
2385         die "Out of tree builds are impossible with whitespace in source path."
2386     test -e "$source_path/config.h" &&
2387         die "Out of tree builds are impossible with config.h in source dir."
2388 fi
2389
2390 for v in "$@"; do
2391     r=${v#*=}
2392     l=${v%"$r"}
2393     r=$(sh_quote "$r")
2394     FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
2395 done
2396
2397 find_things(){
2398     thing=$1
2399     pattern=$2
2400     file=$source_path/$3
2401     sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
2402 }
2403
2404 ENCODER_LIST=$(find_things  encoder  ENC      libavcodec/allcodecs.c)
2405 DECODER_LIST=$(find_things  decoder  DEC      libavcodec/allcodecs.c)
2406 HWACCEL_LIST=$(find_things  hwaccel  HWACCEL  libavcodec/allcodecs.c)
2407 PARSER_LIST=$(find_things   parser   PARSER   libavcodec/allcodecs.c)
2408 BSF_LIST=$(find_things      bsf      BSF      libavcodec/allcodecs.c)
2409 MUXER_LIST=$(find_things    muxer    _MUX     libavformat/allformats.c)
2410 DEMUXER_LIST=$(find_things  demuxer  DEMUX    libavformat/allformats.c)
2411 OUTDEV_LIST=$(find_things   outdev   OUTDEV   libavdevice/alldevices.c)
2412 INDEV_LIST=$(find_things    indev    _IN      libavdevice/alldevices.c)
2413 PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
2414 FILTER_LIST=$(find_things   filter   FILTER   libavfilter/allfilters.c)
2415
2416 ALL_COMPONENTS="
2417     $BSF_LIST
2418     $DECODER_LIST
2419     $DEMUXER_LIST
2420     $ENCODER_LIST
2421     $FILTER_LIST
2422     $HWACCEL_LIST
2423     $INDEV_LIST
2424     $MUXER_LIST
2425     $OUTDEV_LIST
2426     $PARSER_LIST
2427     $PROTOCOL_LIST
2428 "
2429
2430 for n in $COMPONENT_LIST; do
2431     v=$(toupper ${n%s})_LIST
2432     eval enable \$$v
2433     eval ${n}_if_any="\$$v"
2434 done
2435
2436 enable $ARCH_EXT_LIST
2437
2438 die_unknown(){
2439     echo "Unknown option \"$1\"."
2440     echo "See $0 --help for available options."
2441     exit 1
2442 }
2443
2444 print_3_columns() {
2445     cat | tr ' ' '\n' | sort | pr -r -3 -t
2446 }
2447
2448 show_list() {
2449     suffix=_$1
2450     shift
2451     echo $* | sed s/$suffix//g | print_3_columns
2452     exit 0
2453 }
2454
2455 rand_list(){
2456     IFS=', '
2457     set -- $*
2458     unset IFS
2459     for thing; do
2460         comp=${thing%:*}
2461         prob=${thing#$comp}
2462         prob=${prob#:}
2463         is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
2464         echo "prob ${prob:-0.5}"
2465         printf '%s\n' $comp
2466     done
2467 }
2468
2469 do_random(){
2470     action=$1
2471     shift
2472     random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
2473     $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
2474 }
2475
2476 for opt do
2477     optval="${opt#*=}"
2478     case "$opt" in
2479         --extra-ldflags=*)
2480             add_ldflags $optval
2481         ;;
2482         --extra-libs=*)
2483             add_extralibs $optval
2484         ;;
2485         --disable-devices)
2486             disable $INDEV_LIST $OUTDEV_LIST
2487         ;;
2488         --enable-debug=*)
2489             debuglevel="$optval"
2490         ;;
2491         --disable-programs)
2492             disable $PROGRAM_LIST
2493         ;;
2494         --disable-everything)
2495             map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
2496         ;;
2497         --disable-all)
2498             map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
2499             disable $LIBRARY_LIST $PROGRAM_LIST doc
2500         ;;
2501         --enable-random|--disable-random)
2502             action=${opt%%-random}
2503             do_random ${action#--} $COMPONENT_LIST
2504         ;;
2505         --enable-random=*|--disable-random=*)
2506             action=${opt%%-random=*}
2507             do_random ${action#--} $optval
2508         ;;
2509         --enable-*=*|--disable-*=*)
2510             eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
2511             is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
2512             eval list=\$$(toupper $thing)_LIST
2513             name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
2514             list=$(filter "$name" $list)
2515             [ "$list" = "" ] && warn "Option $opt did not match anything"
2516             $action $list
2517         ;;
2518         --enable-?*|--disable-?*)
2519             eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
2520             if is_in $option $COMPONENT_LIST; then
2521                 test $action = disable && action=unset
2522                 eval $action \$$(toupper ${option%s})_LIST
2523             elif is_in $option $CMDLINE_SELECT; then
2524                 $action $option
2525             else
2526                 die_unknown $opt
2527             fi
2528         ;;
2529         --list-*)
2530             NAME="${opt#--list-}"
2531             is_in $NAME $COMPONENT_LIST || die_unknown $opt
2532             NAME=${NAME%s}
2533             eval show_list $NAME \$$(toupper $NAME)_LIST
2534         ;;
2535         --help|-h) show_help
2536         ;;
2537         --fatal-warnings) enable fatal_warnings
2538         ;;
2539         *)
2540             optname="${opt%%=*}"
2541             optname="${optname#--}"
2542             optname=$(echo "$optname" | sed 's/-/_/g')
2543             if is_in $optname $CMDLINE_SET; then
2544                 eval $optname='$optval'
2545             elif is_in $optname $CMDLINE_APPEND; then
2546                 append $optname "$optval"
2547             else
2548                 die_unknown $opt
2549             fi
2550         ;;
2551     esac
2552 done
2553
2554 disabled logging && logfile=/dev/null
2555
2556 echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
2557 set >> $logfile
2558
2559 test -n "$cross_prefix" && enable cross_compile
2560
2561 if enabled cross_compile; then
2562     test -n "$arch" && test -n "$target_os" ||
2563         die "Must specify target arch and OS when cross-compiling"
2564 fi
2565
2566 ar_default="${cross_prefix}${ar_default}"
2567 cc_default="${cross_prefix}${cc_default}"
2568 cxx_default="${cross_prefix}${cxx_default}"
2569 nm_default="${cross_prefix}${nm_default}"
2570 pkg_config_default="${cross_prefix}${pkg_config_default}"
2571 ranlib="${cross_prefix}${ranlib}"
2572 strip_default="${cross_prefix}${strip_default}"
2573
2574 sysinclude_default="${sysroot}/usr/include"
2575
2576 test -n "$valgrind" && toolchain="valgrind-memcheck"
2577
2578 case "$toolchain" in
2579     clang-asan)
2580         cc_default="clang"
2581         add_cflags  -fsanitize=address
2582         add_ldflags -fsanitize=address
2583     ;;
2584     clang-tsan)
2585         cc_default="clang"
2586         add_cflags  -fsanitize=thread -pie
2587         add_ldflags -fsanitize=thread -pie
2588     ;;
2589     gcc-asan)
2590         cc_default="gcc"
2591         add_cflags  -fsanitize=address
2592         add_ldflags -fsanitize=address
2593     ;;
2594     gcc-tsan)
2595         cc_default="gcc"
2596         add_cflags  -fsanitize=thread -pie -fPIC
2597         add_ldflags -fsanitize=thread -pie -fPIC
2598     ;;
2599     valgrind-massif)
2600         target_exec_default=${valgrind:-"valgrind"}
2601         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"
2602     ;;
2603     valgrind-memcheck)
2604         target_exec_default=${valgrind:-"valgrind"}
2605         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"
2606     ;;
2607     msvc)
2608         cc_default="c99wrap cl"
2609         ld_default="c99wrap link"
2610         nm_default="dumpbin -symbols"
2611         ar_default="lib"
2612         target_os_default="win32"
2613     ;;
2614     icl)
2615         cc_default="c99wrap -noconv icl"
2616         ld_default="c99wrap xilink"
2617         nm_default="dumpbin -symbols"
2618         ar_default="xilib"
2619         target_os_default="win32"
2620     ;;
2621     gcov)
2622         add_cflags  -fprofile-arcs -ftest-coverage
2623         add_ldflags -fprofile-arcs -ftest-coverage
2624     ;;
2625     ?*)
2626         die "Unknown toolchain $toolchain"
2627     ;;
2628 esac
2629
2630 set_default arch cc cxx pkg_config strip sysinclude target_exec target_os yasmexe
2631 enabled cross_compile || host_cc_default=$cc
2632 set_default host_cc
2633
2634 if ! $pkg_config --version >/dev/null 2>&1; then
2635     warn "$pkg_config not found, library detection may fail."
2636     pkg_config=false
2637 fi
2638
2639 exesuf() {
2640     case $1 in
2641         mingw32*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
2642     esac
2643 }
2644
2645 EXESUF=$(exesuf $target_os)
2646 HOSTEXESUF=$(exesuf $host_os)
2647
2648 # set temporary file name
2649 : ${TMPDIR:=$TEMPDIR}
2650 : ${TMPDIR:=$TMP}
2651 : ${TMPDIR:=/tmp}
2652
2653 if ! check_cmd mktemp -u XXXXXX; then
2654     # simple replacement for missing mktemp
2655     # NOT SAFE FOR GENERAL USE
2656     mktemp(){
2657         echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
2658     }
2659 fi
2660
2661 tmpfile(){
2662     tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
2663         (set -C; exec > $tmp) 2>/dev/null ||
2664         die "Unable to create temporary file in $TMPDIR."
2665     append TMPFILES $tmp
2666     eval $1=$tmp
2667 }
2668
2669 trap 'rm -f -- $TMPFILES' EXIT
2670
2671 tmpfile TMPASM .asm
2672 tmpfile TMPC   .c
2673 tmpfile TMPCPP .cpp
2674 tmpfile TMPE   $EXESUF
2675 tmpfile TMPH   .h
2676 tmpfile TMPO   .o
2677 tmpfile TMPS   .S
2678 tmpfile TMPSH  .sh
2679 tmpfile TMPV   .ver
2680
2681 unset -f mktemp
2682
2683 chmod +x $TMPE
2684
2685 # make sure we can execute files in $TMPDIR
2686 cat > $TMPSH 2>> $logfile <<EOF
2687 #! /bin/sh
2688 EOF
2689 chmod +x $TMPSH >> $logfile 2>&1
2690 if ! $TMPSH >> $logfile 2>&1; then
2691     cat <<EOF
2692 Unable to create and execute files in $TMPDIR.  Set the TMPDIR environment
2693 variable to another directory and make sure that it is not mounted noexec.
2694 EOF
2695     die "Sanity test failed."
2696 fi
2697
2698 ccc_flags(){
2699     for flag; do
2700         case $flag in
2701             -std=c99)           echo -c99                       ;;
2702             -mcpu=*)            echo -arch ${flag#*=}           ;;
2703             -mieee)             echo -ieee                      ;;
2704             -O*|-fast)          echo $flag                      ;;
2705             -fno-math-errno)    echo -assume nomath_errno       ;;
2706             -g)                 echo -g3                        ;;
2707             -Wall)              echo -msg_enable level2         ;;
2708             -Wno-pointer-sign)  echo -msg_disable ptrmismatch1  ;;
2709             -Wl,*)              echo $flag                      ;;
2710             -f*|-W*)                                            ;;
2711             *)                  echo $flag                      ;;
2712         esac
2713    done
2714 }
2715
2716 cparser_flags(){
2717     for flag; do
2718         case $flag in
2719             -Wno-switch)             echo -Wno-switch-enum ;;
2720             -Wno-format-zero-length) ;;
2721             -Wdisabled-optimization) ;;
2722             -Wno-pointer-sign)       echo -Wno-other ;;
2723             *)                       echo $flag ;;
2724         esac
2725     done
2726 }
2727
2728 msvc_common_flags(){
2729     for flag; do
2730         case $flag in
2731             # In addition to specifying certain flags under the compiler
2732             # specific filters, they must be specified here as well or else the
2733             # generic catch all at the bottom will print the original flag.
2734             -Wall)                ;;
2735             -std=c99)             ;;
2736             # Common flags
2737             -fomit-frame-pointer) ;;
2738             -g)                   echo -Z7 ;;
2739             -fno-math-errno)      ;;
2740             -fno-common)          ;;
2741             -fno-signed-zeros)    ;;
2742             -fPIC)                ;;
2743             -mthumb)              ;;
2744             -march=*)             ;;
2745             -lz)                  echo zlib.lib ;;
2746             -lavifil32)           echo vfw32.lib ;;
2747             -lavicap32)           echo vfw32.lib user32.lib ;;
2748             -l*)                  echo ${flag#-l}.lib ;;
2749             *)                    echo $flag ;;
2750         esac
2751     done
2752 }
2753
2754 msvc_flags(){
2755     msvc_common_flags "$@"
2756     for flag; do
2757         case $flag in
2758             -Wall)                echo -W4 -wd4244 -wd4127 -wd4018 -wd4389     \
2759                                        -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
2760                                        -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
2761                                        -wd4554 \
2762                                        -wd4273 ;;
2763         esac
2764     done
2765 }
2766
2767 icl_flags(){
2768     msvc_common_flags "$@"
2769     for flag; do
2770         case $flag in
2771             # Despite what Intel's documentation says -Wall, which is supported
2772             # on Windows, does enable remarks so disable them here.
2773             -Wall)                echo $flag -Qdiag-disable:remark ;;
2774             -std=c99)             echo -Qstd=c99 ;;
2775         esac
2776     done
2777 }
2778
2779 pgi_flags(){
2780     for flag; do
2781         case $flag in
2782             -flto)                echo -Mipa=fast,libopt,libinline,vestigial ;;
2783             -fomit-frame-pointer) echo -Mnoframe ;;
2784             -g)                   echo -gopt ;;
2785             *)                    echo $flag ;;
2786         esac
2787     done
2788 }
2789
2790 suncc_flags(){
2791     for flag; do
2792         case $flag in
2793             -march=*|-mcpu=*)
2794                 case "${flag#*=}" in
2795                     native)                   echo -xtarget=native       ;;
2796                     v9|niagara)               echo -xarch=sparc          ;;
2797                     ultrasparc)               echo -xarch=sparcvis       ;;
2798                     ultrasparc3|niagara2)     echo -xarch=sparcvis2      ;;
2799                     i586|pentium)             echo -xchip=pentium        ;;
2800                     i686|pentiumpro|pentium2) echo -xtarget=pentium_pro  ;;
2801                     pentium3*|c3-2)           echo -xtarget=pentium3     ;;
2802                     pentium-m)          echo -xarch=sse2 -xchip=pentium3 ;;
2803                     pentium4*)          echo -xtarget=pentium4           ;;
2804                     prescott|nocona)    echo -xarch=sse3 -xchip=pentium4 ;;
2805                     *-sse3)             echo -xarch=sse3                 ;;
2806                     core2)              echo -xarch=ssse3 -xchip=core2   ;;
2807                     corei7)           echo -xarch=sse4_2 -xchip=nehalem  ;;
2808                     corei7-avx)       echo -xarch=avx -xchip=sandybridge ;;
2809                     amdfam10|barcelona)        echo -xtarget=barcelona   ;;
2810                     bdver*)                    echo -xarch=avx           ;;
2811                     athlon-4|athlon-[mx]p)     echo -xarch=ssea          ;;
2812                     k8|opteron|athlon64|athlon-fx)
2813                                                echo -xarch=sse2a         ;;
2814                     athlon*)                   echo -xarch=pentium_proa  ;;
2815                 esac
2816                 ;;
2817             -std=c99)             echo -xc99              ;;
2818             -fomit-frame-pointer) echo -xregs=frameptr    ;;
2819             -fPIC)                echo -KPIC -xcode=pic32 ;;
2820             -W*,*)                echo $flag              ;;
2821             -f*-*|-W*|-mimpure-text)                      ;;
2822             -shared)              echo -G                 ;;
2823             *)                    echo $flag              ;;
2824         esac
2825     done
2826 }
2827
2828 tms470_flags(){
2829     for flag; do
2830         case $flag in
2831             -march=*|-mcpu=*)
2832                 case "${flag#*=}" in
2833                     armv7-a|cortex-a*)      echo -mv=7a8 ;;
2834                     armv7-r|cortex-r*)      echo -mv=7r4 ;;
2835                     armv7-m|cortex-m*)      echo -mv=7m3 ;;
2836                     armv6*|arm11*)          echo -mv=6   ;;
2837                     armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
2838                                             echo -mv=5e  ;;
2839                     armv4*|arm7*|arm9[24]*) echo -mv=4   ;;
2840                 esac
2841                 ;;
2842             -mfpu=neon)     echo --float_support=vfpv3 --neon ;;
2843             -mfpu=vfp)      echo --float_support=vfpv2        ;;
2844             -mfpu=vfpv3)    echo --float_support=vfpv3        ;;
2845             -mfpu=vfpv3-d16) echo --float_support=vfpv3d16    ;;
2846             -msoft-float)   echo --float_support=vfplib       ;;
2847             -O[0-3]|-mf=*)  echo $flag                        ;;
2848             -g)             echo -g -mn                       ;;
2849             -pds=*)         echo $flag                        ;;
2850             -D*|-I*)        echo $flag                        ;;
2851             --gcc|--abi=*)  echo $flag                        ;;
2852             -me)            echo $flag                        ;;
2853         esac
2854     done
2855 }
2856
2857 probe_cc(){
2858     pfx=$1
2859     _cc=$2
2860
2861     unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
2862     unset _ld_o _ldflags _ld_lib _ld_path
2863     unset _depflags _DEPCMD _DEPFLAGS
2864     _flags_filter=echo
2865
2866     if $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
2867         _type=llvm_gcc
2868         gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
2869         _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
2870         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
2871         _cflags_speed='-O3'
2872         _cflags_size='-Os'
2873     elif $_cc -v 2>&1 | grep -qi ^gcc; then
2874         _type=gcc
2875         gcc_version=$($_cc --version | head -n1)
2876         gcc_basever=$($_cc -dumpversion)
2877         gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
2878         gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
2879         _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
2880         if ! $_cc -dumpversion | grep -q '^2\.'; then
2881             _depflags='-MMD -MF $(@:.o=.d) -MT $@'
2882         fi
2883         _cflags_speed='-O3'
2884         _cflags_size='-Os'
2885     elif $_cc --version 2>/dev/null | grep -q ^icc; then
2886         _type=icc
2887         _ident=$($_cc --version | head -n1)
2888         _depflags='-MMD'
2889         _cflags_speed='-O3'
2890         _cflags_size='-Os'
2891         _cflags_noopt='-O1'
2892     elif $_cc -v 2>&1 | grep -q xlc; then
2893         _type=xlc
2894         _ident=$($_cc -qversion 2>/dev/null | head -n1)
2895         _cflags_speed='-O5'
2896         _cflags_size='-O5 -qcompact'
2897     elif $_cc -V 2>/dev/null | grep -q Compaq; then
2898         _type=ccc
2899         _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
2900         _DEPFLAGS='-M'
2901         _cflags_speed='-fast'
2902         _cflags_size='-O1'
2903         _flags_filter=ccc_flags
2904     elif $_cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
2905         test -d "$sysroot" || die "No valid sysroot specified."
2906         _type=armcc
2907         _ident=$($_cc --vsn | head -n1)
2908         armcc_conf="$PWD/armcc.conf"
2909         $_cc --arm_linux_configure                 \
2910              --arm_linux_config_file="$armcc_conf" \
2911              --configure_sysroot="$sysroot"        \
2912              --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
2913              die "Error creating armcc configuration file."
2914         $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
2915         _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
2916         as_default="${cross_prefix}gcc"
2917         _depflags='-MMD'
2918         _cflags_speed='-O3'
2919         _cflags_size='-Os'
2920     elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
2921         _type=tms470
2922         _ident=$($_cc -version | head -n1 | tr -s ' ')
2923         _flags='--gcc --abi=eabi -me'
2924         _cc_e='-ppl -fe=$@'
2925         _cc_o='-fe=$@'
2926         _depflags='-ppa -ppd=$(@:.o=.d)'
2927         _cflags_speed='-O3 -mf=5'
2928         _cflags_size='-O3 -mf=2'
2929         _flags_filter=tms470_flags
2930     elif $_cc -v 2>&1 | grep -q clang; then
2931         _type=clang
2932         _ident=$($_cc --version | head -n1)
2933         _depflags='-MMD'
2934         _cflags_speed='-O3'
2935         _cflags_size='-Os'
2936     elif $_cc -V 2>&1 | grep -q Sun; then
2937         _type=suncc
2938         _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
2939         _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
2940         _DEPFLAGS='-xM1 -xc99'
2941         _ldflags='-std=c99'
2942         _cflags_speed='-O5'
2943         _cflags_size='-O5 -xspace'
2944         _flags_filter=suncc_flags
2945     elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
2946         _type=pathscale
2947         _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
2948         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
2949         _cflags_speed='-O2'
2950         _cflags_size='-Os'
2951         _flags_filter='filter_out -Wdisabled-optimization'
2952     elif $_cc -v 2>&1 | grep -q Open64; then
2953         _type=open64
2954         _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
2955         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
2956         _cflags_speed='-O2'
2957         _cflags_size='-Os'
2958         _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
2959     elif $_cc -V 2>&1 | grep -q Portland; then
2960         _type=pgi
2961         _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
2962         opt_common='-alias=ansi -Mdse -Mlre -Mpre'
2963         _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
2964         _cflags_size="-O2 -Munroll=c:1 $opt_common"
2965         _cflags_noopt="-O"
2966         _flags_filter=pgi_flags
2967     elif $_cc 2>&1 | grep -q Microsoft; then
2968         _type=msvc
2969         _ident=$($cc 2>&1 | head -n1)
2970         _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
2971         _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
2972         _cflags_speed="-O2"
2973         _cflags_size="-O1"
2974         # Nonstandard output options, to avoid msys path conversion issues.
2975         # Relies on wrapper to remap it.
2976         if $_cc 2>&1 | grep -q Linker; then
2977             _ld_o='-out $@'
2978         else
2979             _ld_o='-Fe$@'
2980         fi
2981         _cc_o='-Fo $@'
2982         _cc_e='-P -Fi $@'
2983         _flags_filter=msvc_flags
2984         _ld_lib='lib%.a'
2985         _ld_path='-libpath:'
2986         _flags='-nologo'
2987         _cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64'
2988         if [ $pfx = hostcc ]; then
2989             append _cflags -Dsnprintf=_snprintf
2990         fi
2991         disable stripping
2992     elif $_cc 2>&1 | grep -q Intel; then
2993         _type=icl
2994         _ident=$($cc 2>&1 | head -n1)
2995         _depflags='-QMMD -QMF$(@:.o=.d) -QMT$@'
2996         # Not only is O3 broken on 13.x+ but it is slower on all previous
2997         # versions (tested) as well.
2998         _cflags_speed="-O2"
2999         _cflags_size="-O1 -Oi" # -O1 without -Oi miscompiles stuff
3000         # Nonstandard output options, to avoid msys path conversion issues.
3001         # Relies on wrapper to remap it.
3002         if $_cc 2>&1 | grep -q Linker; then
3003             _ld_o='-out $@'
3004         else
3005             _ld_o='-Fe$@'
3006         fi
3007         _cc_o='-Fo $@'
3008         _cc_e='-P'
3009         _flags_filter=icl_flags
3010         _ld_lib='lib%.a'
3011         _ld_path='-libpath:'
3012         # -Qdiag-error to make icl error when seeing certain unknown arguments
3013         _flags='-nologo -Qdiag-error:4044,10157'
3014         # -Qvec- -Qsimd- to prevent miscompilation, -GS for consistency
3015         # with MSVC which enables it by default.
3016         _cflags='-D_USE_MATH_DEFINES -FIstdlib.h -Dstrtoll=_strtoi64 -Qms0 -Qvec- -Qsimd- -GS'
3017         if [ $pfx = hostcc ]; then
3018             append _cflags -Dsnprintf=_snprintf
3019         fi
3020     elif $_cc --version 2>/dev/null | grep -q ^cparser; then
3021         _type=cparser
3022         _ident=$($_cc --version | head -n1)
3023         _depflags='-MMD'
3024         _cflags_speed='-O4'
3025         _cflags_size='-O2'
3026         _flags_filter=cparser_flags
3027     fi
3028
3029     eval ${pfx}_type=\$_type
3030     eval ${pfx}_ident=\$_ident
3031 }
3032
3033 set_ccvars(){
3034     eval ${1}_C=\${_cc_c-\${${1}_C}}
3035     eval ${1}_E=\${_cc_e-\${${1}_E}}
3036     eval ${1}_O=\${_cc_o-\${${1}_O}}
3037
3038     if [ -n "$_depflags" ]; then
3039         eval ${1}_DEPFLAGS=\$_depflags
3040     else
3041         eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
3042         eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
3043         eval DEP${1}FLAGS=\$_flags
3044     fi
3045 }
3046
3047 probe_cc cc "$cc"
3048 cflags_filter=$_flags_filter
3049 cflags_speed=$_cflags_speed
3050 cflags_size=$_cflags_size
3051 cflags_noopt=$_cflags_noopt
3052 add_cflags $_flags $_cflags
3053 cc_ldflags=$_ldflags
3054 set_ccvars CC
3055
3056 probe_cc hostcc "$host_cc"
3057 host_cflags_filter=$_flags_filter
3058 add_host_cflags  $_flags $_cflags
3059 set_ccvars HOSTCC
3060
3061 test -n "$cc_type" && enable $cc_type ||
3062     warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
3063
3064 : ${as_default:=$cc}
3065 : ${dep_cc_default:=$cc}
3066 : ${ld_default:=$cc}
3067 : ${host_ld_default:=$host_cc}
3068 set_default ar as dep_cc ld host_ld
3069
3070 probe_cc as "$as"
3071 asflags_filter=$_flags_filter
3072 add_asflags $_flags $_cflags
3073 set_ccvars AS
3074
3075 probe_cc ld "$ld"
3076 ldflags_filter=$_flags_filter
3077 add_ldflags $_flags $_ldflags
3078 test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
3079 LD_O=${_ld_o-$LD_O}
3080 LD_LIB=${_ld_lib-$LD_LIB}
3081 LD_PATH=${_ld_path-$LD_PATH}
3082
3083 probe_cc hostld "$host_ld"
3084 host_ldflags_filter=$_flags_filter
3085 add_host_ldflags $_flags $_ldflags
3086 HOSTLD_O=${_ld_o-$HOSTLD_O}
3087
3088 if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
3089     probe_cc depcc "$dep_cc"
3090     CCDEP=${_DEPCMD:-$DEPCMD}
3091     CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
3092     DEPCCFLAGS=$_flags
3093 fi
3094
3095 if $ar 2>&1 | grep -q Microsoft; then
3096     arflags="-nologo"
3097     ar_o='-out:$@'
3098 elif $ar 2>&1 | grep -q 'Texas Instruments'; then
3099     arflags="rq"
3100     ar_o='$@'
3101 elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
3102     arflags='-Xany -r -c'
3103     ar_o='$@'
3104 else
3105     arflags="rc"
3106     ar_o='$@'
3107 fi
3108
3109 add_cflags $extra_cflags
3110 add_cxxflags $extra_cxxflags
3111 add_asflags $extra_cflags
3112
3113 if test -n "$sysroot"; then
3114     case "$cc_type" in
3115         gcc|llvm_gcc|clang)
3116             add_cppflags --sysroot="$sysroot"
3117             add_ldflags --sysroot="$sysroot"
3118         ;;
3119         tms470)
3120             add_cppflags -I"$sysinclude"
3121             add_ldflags  --sysroot="$sysroot"
3122         ;;
3123     esac
3124 fi
3125
3126 if test "$cpu" = host; then
3127     enabled cross_compile &&
3128         die "--cpu=host makes no sense when cross-compiling."
3129
3130     case "$cc_type" in
3131         gcc|llvm_gcc)
3132             check_native(){
3133                 $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
3134                 sed -n "/cc1.*$1=/{
3135                             s/.*$1=\\([^ ]*\\).*/\\1/
3136                             p
3137                             q
3138                         }" $TMPE
3139             }
3140             cpu=$(check_native -march || check_native -mcpu)
3141         ;;
3142     esac
3143
3144     test "${cpu:-host}" = host &&
3145         die "--cpu=host not supported with compiler $cc"
3146 fi
3147
3148 # Deal with common $arch aliases
3149 case "$arch" in
3150     aarch64|arm64)
3151         arch="aarch64"
3152     ;;
3153     arm*|iPad*|iPhone*)
3154         arch="arm"
3155     ;;
3156     mips*|IP*)
3157         arch="mips"
3158     ;;
3159     parisc*|hppa*)
3160         arch="parisc"
3161     ;;
3162     "Power Macintosh"|ppc*|powerpc*)
3163         arch="ppc"
3164     ;;
3165     s390|s390x)
3166         arch="s390"
3167     ;;
3168     sh4|sh)
3169         arch="sh4"
3170     ;;
3171     sun4u|sparc*)
3172         arch="sparc"
3173     ;;
3174     tilegx|tile-gx)
3175         arch="tilegx"
3176     ;;
3177     i[3-6]86|i86pc|BePC|x86pc|x86_64|x86_32|amd64)
3178         arch="x86"
3179     ;;
3180 esac
3181
3182 is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
3183 enable $arch
3184
3185 # Add processor-specific flags
3186 if enabled aarch64; then
3187
3188     case $cpu in
3189         armv*)
3190             cpuflags="-march=$cpu"
3191         ;;
3192         *)
3193             cpuflags="-mcpu=$cpu"
3194         ;;
3195     esac
3196
3197 elif enabled alpha; then
3198
3199     cpuflags="-mcpu=$cpu"
3200
3201 elif enabled arm; then
3202
3203     check_arm_arch() {
3204         check_cpp_condition stddef.h \
3205             "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
3206             $cpuflags
3207     }
3208
3209     probe_arm_arch() {
3210         if   check_arm_arch 4;        then echo armv4;
3211         elif check_arm_arch 4T;       then echo armv4t;
3212         elif check_arm_arch 5;        then echo armv5;
3213         elif check_arm_arch 5E;       then echo armv5e;
3214         elif check_arm_arch 5T;       then echo armv5t;
3215         elif check_arm_arch 5TE;      then echo armv5te;
3216         elif check_arm_arch 5TEJ;     then echo armv5te;
3217         elif check_arm_arch 6;        then echo armv6;
3218         elif check_arm_arch 6J;       then echo armv6j;
3219         elif check_arm_arch 6K;       then echo armv6k;
3220         elif check_arm_arch 6Z;       then echo armv6z;
3221         elif check_arm_arch 6ZK;      then echo armv6zk;
3222         elif check_arm_arch 6T2;      then echo armv6t2;
3223         elif check_arm_arch 7;        then echo armv7;
3224         elif check_arm_arch 7A  7_A;  then echo armv7-a;
3225         elif check_arm_arch 7R  7_R;  then echo armv7-r;
3226         elif check_arm_arch 7M  7_M;  then echo armv7-m;
3227         elif check_arm_arch 7EM 7E_M; then echo armv7-m;
3228         elif check_arm_arch 8A  8_A;  then echo armv8-a;
3229         fi
3230     }
3231
3232     [ "$cpu" = generic ] && cpu=$(probe_arm_arch)
3233
3234     case $cpu in
3235         armv*)
3236             cpuflags="-march=$cpu"
3237             subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
3238         ;;
3239         *)
3240             cpuflags="-mcpu=$cpu"
3241             case $cpu in
3242                 cortex-a*)                               subarch=armv7a  ;;
3243                 cortex-r*)                               subarch=armv7r  ;;
3244                 cortex-m*)                 enable thumb; subarch=armv7m  ;;
3245                 arm11*)                                  subarch=armv6   ;;
3246                 arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
3247                 armv4*|arm7*|arm9[24]*)                  subarch=armv4   ;;
3248                 *)                             subarch=$(probe_arm_arch) ;;
3249             esac
3250         ;;
3251     esac
3252
3253     case "$subarch" in
3254         armv5t*)    enable fast_clz                ;;
3255         armv[6-8]*) enable fast_clz fast_unaligned ;;
3256     esac
3257
3258 elif enabled avr32; then
3259
3260     case $cpu in
3261         ap7[02]0[0-2])
3262             subarch="avr32_ap"
3263             cpuflags="-mpart=$cpu"
3264         ;;
3265         ap)
3266             subarch="avr32_ap"
3267             cpuflags="-march=$cpu"
3268         ;;
3269         uc3[ab]*)
3270             subarch="avr32_uc"
3271             cpuflags="-mcpu=$cpu"
3272         ;;
3273         uc)
3274             subarch="avr32_uc"
3275             cpuflags="-march=$cpu"
3276         ;;
3277     esac
3278
3279 elif enabled bfin; then
3280
3281     cpuflags="-mcpu=$cpu"
3282
3283 elif enabled mips; then
3284
3285     cpuflags="-march=$cpu"
3286
3287     case $cpu in
3288         24kc)
3289             disable mipsfpu
3290             disable mipsdspr1
3291             disable mipsdspr2
3292         ;;
3293         24kf*)
3294             disable mipsdspr1
3295             disable mipsdspr2
3296         ;;
3297         24kec|34kc|1004kc)
3298             disable mipsfpu
3299             disable mipsdspr2
3300         ;;
3301         24kef*|34kf*|1004kf*)
3302             disable mipsdspr2
3303         ;;
3304         74kc)
3305             disable mipsfpu
3306         ;;
3307     esac
3308
3309 elif enabled ppc; then
3310
3311     case $(tolower $cpu) in
3312         601|ppc601|powerpc601)
3313             cpuflags="-mcpu=601"
3314             disable altivec
3315         ;;
3316         603*|ppc603*|powerpc603*)
3317             cpuflags="-mcpu=603"
3318             disable altivec
3319         ;;
3320         604*|ppc604*|powerpc604*)
3321             cpuflags="-mcpu=604"
3322             disable altivec
3323         ;;
3324         g3|75*|ppc75*|powerpc75*)
3325             cpuflags="-mcpu=750"
3326             disable altivec
3327         ;;
3328         g4|745*|ppc745*|powerpc745*)
3329             cpuflags="-mcpu=7450"
3330         ;;
3331         74*|ppc74*|powerpc74*)
3332             cpuflags="-mcpu=7400"
3333         ;;
3334         g5|970|ppc970|powerpc970)
3335             cpuflags="-mcpu=970"
3336         ;;
3337         power[3-7]*)
3338             cpuflags="-mcpu=$cpu"
3339         ;;
3340         cell)
3341             cpuflags="-mcpu=cell"
3342             enable ldbrx
3343         ;;
3344         e500mc)
3345             cpuflags="-mcpu=e500mc"
3346             disable altivec
3347         ;;
3348         e500v2)
3349             cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
3350             disable altivec
3351         ;;
3352         e500)
3353             cpuflags="-mcpu=8540 -mhard-float"
3354             disable altivec
3355         ;;
3356     esac
3357
3358 elif enabled sparc; then
3359
3360     case $cpu in
3361         cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
3362             cpuflags="-mcpu=$cpu"
3363             disable vis
3364         ;;
3365         ultrasparc*|niagara[234])
3366             cpuflags="-mcpu=$cpu"
3367         ;;
3368     esac
3369
3370 elif enabled x86; then
3371
3372     case $cpu in
3373         i[345]86|pentium)
3374             cpuflags="-march=$cpu"
3375             disable mmx
3376         ;;
3377         # targets that do NOT support nopl and conditional mov (cmov)
3378         pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
3379             cpuflags="-march=$cpu"
3380             disable i686
3381         ;;
3382         # targets that do support nopl and conditional mov (cmov)
3383         i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|corei7*|amdfam10|barcelona|atom|bdver*)
3384             cpuflags="-march=$cpu"
3385             enable i686
3386             enable fast_cmov
3387         ;;
3388         # targets that do support conditional mov but on which it's slow
3389         pentium4|pentium4m|prescott|nocona)
3390             cpuflags="-march=$cpu"
3391             enable i686
3392             disable fast_cmov
3393         ;;
3394     esac
3395
3396 fi
3397
3398 if [ "$cpu" != generic ]; then
3399     add_cflags  $cpuflags
3400     add_asflags $cpuflags
3401 fi
3402
3403 # compiler sanity check
3404 check_exec <<EOF
3405 int main(void){ return 0; }
3406 EOF
3407 if test "$?" != 0; then
3408     echo "$cc is unable to create an executable file."
3409     if test -z "$cross_prefix" && ! enabled cross_compile ; then
3410         echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
3411         echo "Only do this if you know what cross compiling means."
3412     fi
3413     die "C compiler test failed."
3414 fi
3415
3416 add_cppflags -D_ISOC99_SOURCE
3417 add_cxxflags -D__STDC_CONSTANT_MACROS
3418 check_cflags -std=c99
3419 check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
3420 #include <stdlib.h>
3421 EOF
3422 check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
3423 #include <stdlib.h>
3424 EOF
3425
3426 check_host_cflags -std=c99
3427 check_host_cflags -Wall
3428
3429 check_64bit(){
3430     arch32=$1
3431     arch64=$2
3432     expr=$3
3433     check_code cc "" "int test[2*($expr) - 1]" &&
3434         subarch=$arch64 || subarch=$arch32
3435 }
3436
3437 case "$arch" in
3438     aarch64|alpha|ia64)
3439         spic=$shared
3440     ;;
3441     mips)
3442         check_64bit mips mips64 '_MIPS_SIM > 1'
3443         spic=$shared
3444     ;;
3445     parisc)
3446         check_64bit parisc parisc64 'sizeof(void *) > 4'
3447         spic=$shared
3448     ;;
3449     ppc)
3450         check_64bit ppc ppc64 'sizeof(void *) > 4'
3451         spic=$shared
3452     ;;
3453     sparc)
3454         check_64bit sparc sparc64 'sizeof(void *) > 4'
3455         spic=$shared
3456     ;;
3457     x86)
3458         check_64bit x86_32 x86_64 'sizeof(void *) > 4'
3459         if test "$subarch" = "x86_64"; then
3460             spic=$shared
3461         fi
3462     ;;
3463     ppc)
3464         check_cc <<EOF && subarch="ppc64"
3465         int test[(int)sizeof(char*) - 7];
3466 EOF
3467     ;;
3468 esac
3469
3470 enable $subarch
3471 enabled spic && enable_weak pic
3472
3473 # OS specific
3474 case $target_os in
3475     aix)
3476         SHFLAGS=-shared
3477         add_cppflags '-I\$(SRC_PATH)/compat/aix'
3478         enabled shared && add_ldflags -Wl,-brtl
3479         ;;
3480     haiku)
3481         prefix_default="/boot/common"
3482         network_extralibs="-lnetwork"
3483         host_libs=
3484         ;;
3485     sunos)
3486         SHFLAGS='-shared -Wl,-h,$$(@F)'
3487         enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
3488         network_extralibs="-lsocket -lnsl"
3489         add_cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
3490         # When using suncc to build, the Solaris linker will mark
3491         # an executable with each instruction set encountered by
3492         # the Solaris assembler.  As our libraries contain their own
3493         # guards for processor-specific code, instead suppress
3494         # generation of the HWCAPS ELF section on Solaris x86 only.
3495         enabled_all suncc x86 &&
3496             echo "hwcap_1 = OVERRIDE;" > mapfile &&
3497             add_ldflags -Wl,-M,mapfile
3498         nm_default='nm -P -g'
3499         ;;
3500     netbsd)
3501         disable symver
3502         oss_indev_extralibs="-lossaudio"
3503         oss_outdev_extralibs="-lossaudio"
3504         enabled gcc || check_ldflags -Wl,-zmuldefs
3505         ;;
3506     openbsd|bitrig)
3507         disable symver
3508         SHFLAGS='-shared'
3509         SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
3510         SLIB_INSTALL_LINKS=
3511         oss_indev_extralibs="-lossaudio"
3512         oss_outdev_extralibs="-lossaudio"
3513         ;;
3514     dragonfly)
3515         disable symver
3516         ;;
3517     freebsd)
3518         ;;
3519     bsd/os)
3520         add_extralibs -lpoll -lgnugetopt
3521         strip="strip -d"
3522         ;;
3523     darwin)
3524         gas="gas-preprocessor.pl $cc"
3525         enabled ppc && add_asflags -force_cpusubtype_ALL
3526         SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
3527         enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
3528         strip="${strip} -x"
3529         add_ldflags -Wl,-dynamic,-search_paths_first
3530         SLIBSUF=".dylib"
3531         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
3532         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
3533         objformat="macho"
3534         enabled x86_64 && objformat="macho64"
3535         enabled_any pic shared ||
3536             { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
3537         ;;
3538     mingw32*)
3539         if test $target_os = "mingw32ce"; then
3540             disable network
3541         else
3542             target_os=mingw32
3543         fi
3544         LIBTARGET=i386
3545         if enabled x86_64; then
3546             LIBTARGET="i386:x86-64"
3547         elif enabled arm; then
3548             LIBTARGET=arm-wince
3549         fi
3550         check_ldflags -Wl,--nxcompat
3551         check_ldflags -Wl,--dynamicbase
3552         shlibdir_default="$bindir_default"
3553         SLIBPREF=""
3554         SLIBSUF=".dll"
3555         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
3556         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
3557         dlltool="${cross_prefix}dlltool"
3558         if check_cmd lib.exe -list; then
3559             SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
3560             if enabled x86_64; then
3561                 LIBTARGET=x64
3562             fi
3563         elif check_cmd $dlltool --version; then
3564             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)'
3565         fi
3566         SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
3567         SLIB_INSTALL_LINKS=
3568         SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
3569         SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
3570         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'
3571         objformat="win32"
3572         ranlib=:
3573         enable dos_paths
3574         ;;
3575     win32|win64)
3576         if enabled shared; then
3577             # Link to the import library instead of the normal static library
3578             # for shared libs.
3579             LD_LIB='%.lib'
3580             # Cannot build both shared and static libs with MSVC or icl.
3581             disable static
3582         fi
3583         shlibdir_default="$bindir_default"
3584         SLIBPREF=""
3585         SLIBSUF=".dll"
3586         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
3587         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
3588         SLIB_CREATE_DEF_CMD='makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
3589         SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
3590         SLIB_INSTALL_LINKS=
3591         SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
3592         SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
3593         SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
3594         objformat="win32"
3595         ranlib=:
3596         enable dos_paths
3597         ;;
3598     cygwin*)
3599         target_os=cygwin
3600         shlibdir_default="$bindir_default"
3601         SLIBPREF="cyg"
3602         SLIBSUF=".dll"
3603         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
3604         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
3605         SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
3606         SLIB_INSTALL_LINKS=
3607         SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
3608         SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
3609         objformat="win32"
3610         enable dos_paths
3611         ;;
3612     *-dos|freedos|opendos)
3613         network_extralibs="-lsocket"
3614         objformat="coff"
3615         enable dos_paths
3616         add_cppflags -U__STRICT_ANSI__
3617         ;;
3618     linux)
3619         enable dv1394
3620         ;;
3621     irix*)
3622         target_os=irix
3623         ranlib="echo ignoring ranlib"
3624         ;;
3625     os/2*)
3626         strip="lxlite -CS"
3627         ln_s="cp -f"
3628         objformat="aout"
3629         add_cppflags -D_GNU_SOURCE
3630         add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
3631         SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
3632         LIBSUF="_s.a"
3633         SLIBPREF=""
3634         SLIBSUF=".dll"
3635         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
3636         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
3637         SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
3638             echo PROTMODE >> $(SUBDIR)$(NAME).def; \
3639             echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
3640             echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
3641             echo EXPORTS >> $(SUBDIR)$(NAME).def; \
3642             emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
3643         SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
3644             emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
3645         SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
3646         enable dos_paths
3647         enable_weak os2threads
3648         ;;
3649     gnu/kfreebsd)
3650         add_cppflags -D_BSD_SOURCE
3651         ;;
3652     gnu)
3653         ;;
3654     qnx)
3655         add_cppflags -D_QNX_SOURCE
3656         network_extralibs="-lsocket"
3657         ;;
3658     symbian)
3659         SLIBSUF=".dll"
3660         enable dos_paths
3661         add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
3662         add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
3663         add_ldflags -Wl,--target1-abs,--no-undefined \
3664                     -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
3665                     -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
3666         add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
3667                       -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
3668                       -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
3669         ;;
3670     osf1)
3671         add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
3672         ;;
3673     minix)
3674         ;;
3675     plan9)
3676         add_cppflags -D_C99_SNPRINTF_EXTENSION  \
3677                      -D_REENTRANT_SOURCE        \
3678                      -D_RESEARCH_SOURCE         \
3679                      -DFD_SETSIZE=96            \
3680                      -DHAVE_SOCK_OPTS
3681         add_compat strtod.o strtod=avpriv_strtod
3682         network_extralibs='-lbsd'
3683         exeobjs=compat/plan9/main.o
3684         disable ffserver
3685         cp_f='cp'
3686         ;;
3687     none)
3688         ;;
3689     *)
3690         die "Unknown OS '$target_os'."
3691         ;;
3692 esac
3693
3694 # determine libc flavour
3695
3696 # uclibc defines __GLIBC__, so it needs to be checked before glibc.
3697 if check_cpp_condition features.h "defined __UCLIBC__"; then
3698     libc_type=uclibc
3699     add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
3700 elif check_cpp_condition features.h "defined __GLIBC__"; then
3701     libc_type=glibc
3702     add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
3703 # MinGW headers can be installed on Cygwin, so check for newlib first.
3704 elif check_cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
3705     libc_type=newlib
3706     add_cppflags -U__STRICT_ANSI__
3707 elif check_header _mingw.h; then
3708     libc_type=mingw
3709     check_cpp_condition _mingw.h \
3710         "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) || \
3711             (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
3712         die "ERROR: MinGW runtime version must be >= 3.15."
3713     add_cppflags -U__STRICT_ANSI__
3714     if check_cpp_condition _mingw.h "defined(__MINGW64_VERSION_MAJOR) && \
3715             __MINGW64_VERSION_MAJOR < 3"; then
3716         add_compat msvcrt/snprintf.o
3717         add_cflags "-include $source_path/compat/msvcrt/snprintf.h"
3718     else
3719         add_cppflags -D__USE_MINGW_ANSI_STDIO=1
3720     fi
3721 elif check_func_headers stdlib.h _get_doserrno; then
3722     libc_type=msvcrt
3723     add_compat strtod.o strtod=avpriv_strtod
3724     add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf   \
3725                                  _snprintf=avpriv_snprintf  \
3726                                  vsnprintf=avpriv_vsnprintf
3727     # The MSVC 2010 headers (Win 7.0 SDK) set _WIN32_WINNT to
3728     # 0x601 by default unless something else is set by the user.
3729     # This can easily lead to us detecting functions only present
3730     # in such new versions and producing binaries requiring windows 7.0.
3731     # Therefore explicitly set the default to XP unless the user has
3732     # set something else on the command line.
3733     check_cpp_condition stdlib.h "defined(_WIN32_WINNT)" || add_cppflags -D_WIN32_WINNT=0x0502
3734 elif check_cpp_condition stddef.h "defined __KLIBC__"; then
3735     libc_type=klibc
3736 elif check_cpp_condition sys/cdefs.h "defined __BIONIC__"; then
3737     libc_type=bionic
3738     add_compat strtod.o strtod=avpriv_strtod
3739 fi
3740
3741 test -n "$libc_type" && enable $libc_type
3742
3743 # hacks for compiler/libc/os combinations
3744
3745 if enabled_all tms470 glibc; then
3746     CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
3747     add_cppflags -D__USER_LABEL_PREFIX__=
3748     add_cppflags -D__builtin_memset=memset
3749     add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
3750     add_cflags   -pds=48    # incompatible redefinition of macro
3751 fi
3752
3753 if enabled_all ccc glibc; then
3754     add_ldflags -Wl,-z,now  # calls to libots crash without this
3755 fi
3756
3757 esc(){
3758     echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
3759 }
3760
3761 echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $FFMPEG_CONFIGURATION)" >config.fate
3762
3763 check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable_weak pic
3764
3765 set_default $PATHS_LIST
3766 set_default nm
3767
3768 # we need to build at least one lib type
3769 if ! enabled_any static shared; then
3770     cat <<EOF
3771 At least one library type must be built.
3772 Specify --enable-static to build the static libraries or --enable-shared to
3773 build the shared libraries as well. To only build the shared libraries specify
3774 --disable-static in addition to --enable-shared.
3775 EOF
3776     exit 1;
3777 fi
3778
3779 # backward compatibility layer for incompatible_libav/fork_abi
3780 enabled incompatible_fork_abi  && enable incompatible_libav_abi
3781 enabled incompatible_libav_abi && enable incompatible_fork_abi
3782
3783 die_license_disabled() {
3784     enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
3785 }
3786
3787 die_license_disabled_gpl() {
3788     enabled $1 || { enabled $2 && die "$2 is incompatible with the gpl and --enable-$1 is not specified."; }
3789 }
3790
3791 die_license_disabled gpl frei0r
3792 die_license_disabled gpl libcdio
3793 die_license_disabled gpl libutvideo
3794 die_license_disabled gpl libvidstab
3795 die_license_disabled gpl libx264
3796 die_license_disabled gpl libxavs
3797 die_license_disabled gpl libxvid
3798 die_license_disabled gpl libzvbi
3799 die_license_disabled gpl x11grab
3800
3801 die_license_disabled nonfree libaacplus
3802 die_license_disabled nonfree libfaac
3803 enabled gpl && die_license_disabled_gpl nonfree libfdk_aac
3804 enabled gpl && die_license_disabled_gpl nonfree openssl
3805
3806 die_license_disabled version3 libopencore_amrnb
3807 die_license_disabled version3 libopencore_amrwb
3808 die_license_disabled version3 libvo_aacenc
3809 die_license_disabled version3 libvo_amrwbenc
3810
3811 enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
3812
3813 disabled optimizations || check_cflags -fomit-frame-pointer
3814
3815 enable_weak_pic() {
3816     disabled pic && return
3817     enable pic
3818     add_cppflags -DPIC
3819     case "$target_os" in
3820     mingw*|cygwin*)
3821         ;;
3822     *)
3823         add_cflags -fPIC
3824         ;;
3825     esac
3826     add_asflags  -fPIC
3827 }
3828
3829 enabled pic && enable_weak_pic
3830
3831 check_cc <<EOF || die "Symbol mangling check failed."
3832 int ff_extern;
3833 EOF
3834 sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
3835 extern_prefix=${sym%%ff_extern*}
3836
3837 check_cc <<EOF && enable_weak inline_asm
3838 void foo(void) { __asm__ volatile ("" ::); }
3839 EOF
3840
3841 _restrict=
3842 for restrict_keyword in restrict __restrict__ __restrict; do
3843     check_cc <<EOF && _restrict=$restrict_keyword && break
3844 void foo(char * $restrict_keyword p);
3845 EOF
3846 done
3847
3848 check_cc <<EOF && enable pragma_deprecated
3849 void foo(void) { _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") }
3850 EOF
3851
3852 check_cc <<EOF && enable attribute_packed
3853 struct { int x; } __attribute__((packed)) x;
3854 EOF
3855
3856 check_cc <<EOF && enable attribute_may_alias
3857 union { int x; } __attribute__((may_alias)) x;
3858 EOF
3859
3860 check_cc <<EOF || die "endian test failed"
3861 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
3862 EOF
3863 od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
3864
3865 check_inline_asm inline_asm_labels '"1:\n"'
3866
3867 if enabled alpha; then
3868
3869     check_cflags -mieee
3870
3871 elif enabled arm; then
3872
3873     check_cpp_condition stddef.h "defined __thumb__" && check_cc <<EOF && enable_weak thumb
3874 float func(float a, float b){ return a+b; }
3875 EOF
3876
3877     enabled thumb && check_cflags -mthumb || check_cflags -marm
3878     nogas=die
3879
3880     if     check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
3881         enable vfp_args
3882     elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
3883         case "${cross_prefix:-$cc}" in
3884             *hardfloat*)         enable vfp_args;   fpabi=vfp ;;
3885             *) check_ld "cc" <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
3886 __asm__ (".eabi_attribute 28, 1");
3887 int main(void) { return 0; }
3888 EOF
3889         esac
3890         warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
3891     fi
3892
3893     enabled armv5te && check_insn armv5te 'qadd r0, r0, r0'
3894     enabled armv6   && check_insn armv6   'sadd16 r0, r0, r0'
3895     enabled armv6t2 && check_insn armv6t2 'movt r0, #0'
3896     enabled neon    && check_insn neon    'vadd.i16 q0, q0, q0'
3897     enabled vfp     && check_insn vfp     'fadds s0, s0, s0'
3898     enabled vfpv3   && check_insn vfpv3   'vmov.f32 s0, #1.0'
3899
3900     [ $target_os = linux ] ||
3901         map 'enabled_any ${v}_external ${v}_inline || disable $v' \
3902             $ARCH_EXT_LIST_ARM
3903
3904     check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
3905     check_inline_asm asm_mod_y '"vmul.i32 d0, d0, %y0" :: "x"(0)'
3906
3907     [ $target_os != win32 ] && enabled_all armv6t2 shared !pic && enable_weak_pic
3908
3909 elif enabled mips; then
3910
3911     check_inline_asm loongson '"dmult.g $1, $2, $3"'
3912     enabled mips32r2  && add_cflags "-mips32r2" && add_asflags "-mips32r2" &&
3913      check_inline_asm mips32r2  '"rotr $t0, $t1, 1"'
3914     enabled mipsdspr1 && add_cflags "-mdsp" && add_asflags "-mdsp" &&
3915      check_inline_asm mipsdspr1 '"addu.qb $t0, $t1, $t2"'
3916     enabled mipsdspr2 && add_cflags "-mdspr2" && add_asflags "-mdspr2" &&
3917      check_inline_asm mipsdspr2 '"absq_s.qb $t0, $t1"'
3918     enabled mipsfpu   && add_cflags "-mhard-float" && add_asflags "-mhard-float" &&
3919      check_inline_asm mipsfpu   '"madd.d $f0, $f2, $f4, $f6"'
3920
3921 elif enabled parisc; then
3922
3923     if enabled gcc; then
3924         case $($cc -dumpversion) in
3925             4.[3-8].*) check_cflags -fno-optimize-sibling-calls ;;
3926         esac
3927     fi
3928
3929 elif enabled ppc; then
3930
3931     enable local_aligned_8 local_aligned_16
3932
3933     check_inline_asm dcbzl     '"dcbzl 0, %0" :: "r"(0)'
3934     check_inline_asm ibm_asm   '"add 0, 0, 0"'
3935     check_inline_asm ppc4xx    '"maclhw r10, r11, r12"'
3936     check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
3937
3938     # AltiVec flags: The FSF version of GCC differs from the Apple version
3939     if enabled altivec; then
3940         if ! enabled_any pic ppc64; then
3941             nogas=warn
3942         fi
3943         check_cflags -maltivec -mabi=altivec &&
3944         { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
3945         check_cflags -faltivec
3946
3947         # check if our compiler supports Motorola AltiVec C API
3948         check_cc <<EOF || disable altivec
3949 $inc_altivec_h
3950 int main(void) {
3951     vector signed int v1 = (vector signed int) { 0 };
3952     vector signed int v2 = (vector signed int) { 1 };
3953     v1 = vec_add(v1, v2);
3954     return 0;
3955 }
3956 EOF
3957
3958         enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
3959     fi
3960
3961 elif enabled sparc; then
3962
3963     enabled vis && check_inline_asm vis '"pdist %f0, %f0, %f0"'
3964
3965 elif enabled x86; then
3966
3967     check_builtin rdtsc    intrin.h   "__rdtsc()"
3968     check_builtin mm_empty mmintrin.h "_mm_empty()"
3969
3970     enable local_aligned_8 local_aligned_16
3971
3972     # check whether EBP is available on x86
3973     # As 'i' is stored on the stack, this program will crash
3974     # if the base pointer is used to access it because the
3975     # base pointer is cleared in the inline assembly code.
3976     check_exec_crash <<EOF && enable ebp_available
3977 volatile int i=0;
3978 __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
3979 return i;
3980 EOF
3981
3982     # check whether EBX is available on x86
3983     check_inline_asm ebx_available '""::"b"(0)' &&
3984         check_inline_asm ebx_available '"":::"%ebx"'
3985
3986     # check whether xmm clobbers are supported
3987     check_inline_asm xmm_clobbers '"":::"%xmm0"'
3988
3989     # check whether binutils is new enough to compile SSSE3/MMXEXT
3990     enabled ssse3  && check_inline_asm ssse3_inline  '"pabsw %xmm0, %xmm0"'
3991     enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
3992
3993     if ! disabled_any asm mmx yasm; then
3994         if check_cmd $yasmexe --version; then
3995             enabled x86_64 && yasm_extra="-m amd64"
3996             yasm_debug="-g dwarf2"
3997         elif check_cmd nasm -v; then
3998             yasmexe=nasm
3999             yasm_debug="-g -F dwarf"
4000             enabled x86_64 && test "$objformat" = elf && objformat=elf64
4001         fi
4002
4003         YASMFLAGS="-f $objformat $yasm_extra"
4004         enabled pic               && append YASMFLAGS "-DPIC"
4005         test -n "$extern_prefix"  && append YASMFLAGS "-DPREFIX"
4006         case "$objformat" in
4007             elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
4008         esac
4009
4010         check_yasm "pextrd [eax], xmm0, 1" && enable yasm ||
4011             die "yasm not found, use --disable-yasm for a crippled build"
4012         check_yasm "vextractf128 xmm0, ymm0, 0"      || disable avx_external avresample
4013         check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
4014         check_yasm "CPU amdnop" && enable cpunop
4015     fi
4016
4017     case "$cpu" in
4018         athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
4019             disable fast_clz
4020         ;;
4021     esac
4022
4023 fi
4024
4025 if enabled asm; then
4026     as=${gas:=$as}
4027     check_as <<EOF && enable gnu_as || \
4028         $nogas "GNU assembler not found, install gas-preprocessor"
4029 .macro m n
4030 \n: .int 0
4031 .endm
4032 m x
4033 EOF
4034 fi
4035
4036 check_ldflags -Wl,--as-needed
4037
4038 if check_func dlopen; then
4039     ldl=
4040 elif check_func dlopen -ldl; then
4041     ldl=-ldl
4042 fi
4043
4044 if ! disabled network; then
4045     check_type "sys/types.h sys/socket.h" socklen_t
4046     check_type netdb.h "struct addrinfo"
4047     check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
4048     check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
4049     check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
4050     check_type netinet/in.h "struct sockaddr_in6"
4051     check_type poll.h "struct pollfd"
4052     check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
4053     check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
4054     check_type netinet/sctp.h "struct sctp_event_subscribe"
4055     check_func getaddrinfo $network_extralibs
4056     check_func getservbyport $network_extralibs
4057     # Prefer arpa/inet.h over winsock2
4058     if check_header arpa/inet.h ; then
4059         check_func closesocket
4060     elif check_header winsock2.h ; then
4061         check_func_headers winsock2.h closesocket -lws2 &&
4062             network_extralibs="-lws2" ||
4063         { check_func_headers winsock2.h closesocket -lws2_32 &&
4064             network_extralibs="-lws2_32"; }
4065         check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
4066         check_type ws2tcpip.h socklen_t
4067         check_type ws2tcpip.h "struct addrinfo"
4068         check_type ws2tcpip.h "struct group_source_req"
4069         check_type ws2tcpip.h "struct ip_mreq_source"
4070         check_type ws2tcpip.h "struct ipv6_mreq"
4071         check_type winsock2.h "struct pollfd"
4072         check_type ws2tcpip.h "struct sockaddr_in6"
4073         check_type ws2tcpip.h "struct sockaddr_storage"
4074         check_struct winsock2.h "struct sockaddr" sa_len
4075     else
4076         disable network
4077     fi
4078 fi
4079
4080 # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
4081 check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
4082
4083 check_func  access
4084 check_func  clock_gettime || { check_func clock_gettime -lrt && add_extralibs -lrt; }
4085 check_func  fcntl
4086 check_func  fork
4087 check_func_headers stdlib.h getenv
4088 check_func  gethrtime
4089 check_func  getopt
4090 check_func  getrusage
4091 check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
4092 check_func  gettimeofday
4093 check_func  inet_aton $network_extralibs
4094 check_func  isatty
4095 check_func  localtime_r
4096 check_func  ${malloc_prefix}memalign            && enable memalign
4097 check_func  mkstemp
4098 check_func  mmap
4099 check_func  mprotect
4100 check_func  ${malloc_prefix}posix_memalign      && enable posix_memalign
4101 check_func_headers malloc.h _aligned_malloc     && enable aligned_malloc
4102 check_func  setrlimit
4103 check_struct "sys/stat.h" "struct stat" st_mtim.tv_nsec -D_BSD_SOURCE
4104 check_func  strerror_r
4105 check_func  sched_getaffinity
4106 check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
4107 check_builtin machine_rw_barrier mbarrier.h "__machine_rw_barrier()"
4108 check_builtin atomic_cas_ptr atomic.h "void **ptr; void *oldval, *newval; atomic_cas_ptr(ptr, oldval, newval)"
4109 check_builtin MemoryBarrier windows.h "MemoryBarrier()"
4110 check_builtin sarestart signal.h "SA_RESTART"
4111 check_func  sysconf
4112 check_func  sysctl
4113 check_func  usleep
4114 check_func_headers conio.h kbhit
4115 check_func_headers windows.h PeekNamedPipe
4116 check_func_headers io.h setmode
4117 check_func_headers lzo/lzo1x.h lzo1x_999_compress
4118 check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
4119 check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
4120 check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
4121 check_func_headers windows.h GetProcessAffinityMask
4122 check_func_headers windows.h GetProcessTimes
4123 check_func_headers windows.h GetSystemTimeAsFileTime
4124 check_func_headers windows.h MapViewOfFile
4125 check_func_headers windows.h SetConsoleTextAttribute
4126 check_func_headers windows.h Sleep
4127 check_func_headers windows.h VirtualAlloc
4128 check_func_headers glob.h glob
4129 check_func_headers "X11/Xlib.h X11/extensions/Xvlib.h" XvGetPortAttribute -lXv -lX11 -lXext
4130
4131 check_header cl/cl.h
4132 check_header direct.h
4133 check_header dlfcn.h
4134 check_header dxva.h
4135 check_header dxva2api.h -D_WIN32_WINNT=0x0600
4136 check_header io.h
4137 check_header libcrystalhd/libcrystalhd_if.h
4138 check_header malloc.h
4139 check_header poll.h
4140 check_header sys/mman.h
4141 check_header sys/param.h
4142 check_header sys/resource.h
4143 check_header sys/select.h
4144 check_header sys/time.h
4145 check_header sys/un.h
4146 check_header termios.h
4147 check_header unistd.h
4148 check_header vdpau/vdpau.h
4149 check_header vdpau/vdpau_x11.h
4150 check_header VideoDecodeAcceleration/VDADecoder.h
4151 check_header windows.h
4152 check_header X11/extensions/XvMClib.h
4153 check_header asm/types.h
4154
4155 disabled  zlib || check_lib   zlib.h      zlibVersion -lz   || disable  zlib
4156 disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
4157
4158 if ! disabled w32threads && ! enabled pthreads; then
4159     check_func_headers "windows.h process.h" _beginthreadex && enable w32threads
4160 fi
4161
4162 # check for some common methods of building with pthread support
4163 # do this before the optional library checks as some of them require pthreads
4164 if ! disabled pthreads && ! enabled w32threads && ! enabled os2threads; then
4165     enable pthreads
4166     if check_func pthread_create; then
4167         :
4168     elif check_func pthread_create -pthread; then
4169         add_cflags -pthread
4170         add_extralibs -pthread
4171     elif check_func pthread_create -pthreads; then
4172         add_cflags -pthreads
4173         add_extralibs -pthreads
4174     elif check_func pthread_create -lpthreadGC2; then
4175         add_extralibs -lpthreadGC2
4176     elif ! check_lib pthread.h pthread_create -lpthread; then
4177         disable pthreads
4178     fi
4179 fi
4180
4181 for thread in $THREADS_LIST; do
4182     if enabled $thread; then
4183         test -n "$thread_type" &&
4184             die "ERROR: Only one thread type must be selected." ||
4185             thread_type="$thread"
4186     fi
4187 done
4188
4189 if enabled pthreads; then
4190   check_func pthread_cancel
4191 fi
4192
4193 enabled sync_val_compare_and_swap && enable atomics_gcc
4194 enabled_all atomic_cas_ptr machine_rw_barrier && enable atomics_suncc
4195 enabled MemoryBarrier && enable atomics_win32
4196
4197 check_lib math.h sin -lm && LIBM="-lm"
4198 disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd
4199
4200 atan2f_args=2
4201 ldexpf_args=2
4202 powf_args=2
4203
4204 for func in $MATH_FUNCS; do
4205     eval check_mathfunc $func \${${func}_args:-1}
4206 done
4207
4208 # these are off by default, so fail if requested and not available
4209 enabled avisynth          && { { check_lib2 "windows.h" LoadLibrary; } ||
4210                                { check_lib2 "dlfcn.h" dlopen -ldl; } ||
4211                                die "ERROR: LoadLibrary/dlopen not found for avisynth"; }
4212 enabled fontconfig        && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit
4213 enabled frei0r            && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
4214 enabled gnutls            && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
4215 enabled ladspa            && { check_header ladspa.h || die "ERROR: ladspa.h header not found"; }
4216 enabled libiec61883       && require libiec61883 libiec61883/iec61883.h iec61883_cmp_connect -lraw1394 -lavc1394 -lrom1394 -liec61883
4217 enabled libaacplus        && require "libaacplus >= 2.0.0" aacplus.h aacplusEncOpen -laacplus
4218 enabled libass            && require_pkg_config libass ass/ass.h ass_library_init
4219 enabled libbluray         && require libbluray libbluray/bluray.h bd_open -lbluray
4220 enabled libcelt           && require libcelt celt/celt.h celt_decode -lcelt0 &&
4221                              { check_lib celt/celt.h celt_decoder_create_custom -lcelt0 ||
4222                                die "ERROR: libcelt must be installed and version must be >= 0.11.0."; }
4223 enabled libcaca           && require_pkg_config caca caca.h caca_create_canvas
4224 enabled libfaac           && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
4225 enabled libfdk_aac        && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
4226 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"
4227 enabled libflite          && require2 libflite "flite/flite.h" flite_init $flite_libs
4228 enabled libfreetype       && require_pkg_config freetype2 "ft2build.h freetype/freetype.h" FT_Init_FreeType
4229 enabled libgme            && require  libgme gme/gme.h gme_new_emu -lgme -lstdc++
4230 enabled libgsm            && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
4231                                    check_lib "${gsm_hdr}" gsm_create -lgsm && break;
4232                                done || die "ERROR: libgsm not found"; }
4233 enabled libilbc           && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
4234 enabled libmodplug        && require libmodplug libmodplug/modplug.h ModPlug_Load -lmodplug
4235 enabled libmp3lame        && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
4236 enabled libnut            && require libnut libnut.h nut_demuxer_init -lnut
4237 enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
4238 enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
4239 enabled libopencv         && require_pkg_config opencv opencv/cxcore.h cvCreateImageHeader
4240 enabled libopenjpeg       && { check_lib openjpeg-1.5/openjpeg.h opj_version -lopenjpeg ||
4241                                check_lib openjpeg.h opj_version -lopenjpeg ||
4242                                die "ERROR: libopenjpeg not found"; }
4243 enabled libopus           && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
4244 enabled libpulse          && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
4245 enabled libquvi           && require_pkg_config libquvi quvi/quvi.h quvi_init
4246 enabled librtmp           && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
4247 enabled libschroedinger   && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
4248 enabled libshine          && require_pkg_config shine shine/layer3.h shine_encode_buffer
4249 enabled libsoxr           && require libsoxr soxr.h soxr_create -lsoxr
4250 enabled libssh            && require_pkg_config libssh libssh/sftp.h sftp_init
4251 enabled libspeex          && require libspeex speex/speex.h speex_decoder_init -lspeex
4252 enabled libstagefright_h264 && require_cpp libstagefright_h264 "binder/ProcessState.h media/stagefright/MetaData.h
4253     media/stagefright/MediaBufferGroup.h media/stagefright/MediaDebug.h media/stagefright/MediaDefs.h
4254     media/stagefright/OMXClient.h media/stagefright/OMXCodec.h" android::OMXClient -lstagefright -lmedia -lutils -lbinder -lgnustl_static
4255 enabled libtheora         && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
4256 enabled libtwolame        && require libtwolame twolame.h twolame_init -ltwolame &&
4257                              { check_lib twolame.h twolame_encode_buffer_float32_interleaved -ltwolame ||
4258                                die "ERROR: libtwolame must be installed and version must be >= 0.3.10"; }
4259 enabled libutvideo        && require_cpp utvideo "stdint.h stdlib.h utvideo/utvideo.h utvideo/Codec.h" 'CCodec*' -lutvideo -lstdc++
4260 enabled libv4l2           && require_pkg_config libv4l2 libv4l2.h v4l2_ioctl
4261 enabled libvidstab        && require_pkg_config vidstab vid.stab/libvidstab.h vsMotionDetectInit
4262 enabled libvo_aacenc      && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
4263 enabled libvo_amrwbenc    && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
4264 enabled libvorbis         && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
4265 enabled libvpx            && {
4266     enabled libvpx_vp8_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
4267                                     die "ERROR: libvpx decoder version must be >=0.9.1"; }
4268     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 ||
4269                                     die "ERROR: libvpx encoder version must be >=0.9.7"; }
4270     enabled libvpx_vp9_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_vp9_dx" -lvpx || disable libvpx_vp9_decoder; }
4271     enabled libvpx_vp9_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_vp9_cx" -lvpx || disable libvpx_vp9_encoder; } }
4272 enabled libwavpack        && require libwavpack wavpack/wavpack.h WavpackOpenFileOutput  -lwavpack
4273 enabled libx264           && require libx264 x264.h x264_encoder_encode -lx264 &&
4274                              { check_cpp_condition x264.h "X264_BUILD >= 118" ||
4275                                die "ERROR: libx264 must be installed and version must be >= 0.118."; }
4276 enabled libxavs           && require libxavs xavs.h xavs_encoder_encode -lxavs
4277 enabled libxvid           && require libxvid xvid.h xvid_global -lxvidcore
4278 enabled libzmq            && require_pkg_config libzmq zmq.h zmq_ctx_new
4279 enabled libzvbi           && require libzvbi libzvbi.h vbi_decoder_new -lzvbi
4280 enabled openal            && { { for al_libs in "${OPENAL_LIBS}" "-lopenal" "-lOpenAL32"; do
4281                                check_lib 'AL/al.h' alGetError "${al_libs}" && break; done } ||
4282                                die "ERROR: openal not found"; } &&
4283                              { check_cpp_condition "AL/al.h" "defined(AL_VERSION_1_1)" ||
4284                                die "ERROR: openal must be installed and version must be 1.1 or compatible"; }
4285 enabled opencl            && { check_lib2 OpenCL/cl.h clEnqueueNDRangeKernel -Wl,-framework,OpenCL ||
4286                                check_lib2 CL/cl.h clEnqueueNDRangeKernel -lOpenCL ||
4287                                die "ERROR: opencl not found"; } &&
4288                              { ! enabled_any w32threads os2threads ||
4289                                die "opencl currently needs --enable-pthreads or --disable-w32threads"; } &&
4290                              { check_cpp_condition "OpenCL/cl.h" "defined(CL_VERSION_1_2)" ||
4291                                check_cpp_condition "CL/cl.h" "defined(CL_VERSION_1_2)" ||
4292                                die "ERROR: opencl must be installed and version must be 1.2 or compatible"; }
4293 enabled openssl           && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
4294                                check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
4295                                check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
4296                                die "ERROR: openssl not found"; }
4297
4298 if enabled gnutls; then
4299     { check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
4300     { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
4301 fi
4302
4303 # libdc1394 check
4304 if enabled libdc1394; then
4305     { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
4306         enable libdc1394_2; } ||
4307     { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
4308         enable libdc1394_1; } ||
4309     die "ERROR: No version of libdc1394 found "
4310 fi
4311
4312 SDL_CONFIG="${cross_prefix}sdl-config"
4313 if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
4314     check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
4315     check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
4316     enable sdl
4317 else
4318   if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
4319     sdl_cflags=$("${SDL_CONFIG}" --cflags)
4320     sdl_libs=$("${SDL_CONFIG}" --libs)
4321     check_func_headers SDL_version.h SDL_Linked_Version $sdl_cflags $sdl_libs &&
4322     check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
4323     check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
4324     enable sdl
4325   fi
4326 fi
4327 enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs
4328
4329 texi2html --help 2> /dev/null | grep -q 'init-file' && enable texi2html || disable texi2html
4330 makeinfo --version > /dev/null 2>&1 && enable makeinfo  || disable makeinfo
4331 perl --version > /dev/null 2>&1 && enable perl || disable perl
4332 pod2man --help > /dev/null 2>&1 && enable pod2man || disable pod2man
4333 rsync --help 2> /dev/null | grep -q 'contimeout' && enable rsync_contimeout || disable rsync_contimeout
4334
4335 check_header linux/fb.h
4336 check_header linux/videodev.h
4337 check_header linux/videodev2.h
4338 check_code cc linux/videodev2.h "struct v4l2_frmsizeenum vfse; vfse.discrete.width = 0;" && enable_safe struct_v4l2_frmivalenum_discrete
4339
4340 check_header sys/videoio.h
4341
4342 check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
4343 # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
4344 # w32api 3.12 had it defined wrong
4345 check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
4346
4347 check_type "dshow.h" IBaseFilter
4348
4349 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
4350 { check_header dev/bktr/ioctl_meteor.h &&
4351   check_header dev/bktr/ioctl_bt848.h; } ||
4352 { check_header machine/ioctl_meteor.h &&
4353   check_header machine/ioctl_bt848.h; } ||
4354 { check_header dev/video/meteor/ioctl_meteor.h &&
4355   check_header dev/video/bktr/ioctl_bt848.h; } ||
4356 check_header dev/ic/bt8xx.h
4357
4358 check_header sndio.h
4359 if check_struct sys/soundcard.h audio_buf_info bytes; then
4360     enable_safe sys/soundcard.h
4361 else
4362     check_cc -D__BSD_VISIBLE -D__XSI_VISIBLE <<EOF && add_cppflags -D__BSD_VISIBLE -D__XSI_VISIBLE && enable_safe sys/soundcard.h
4363     #include <sys/soundcard.h>
4364     audio_buf_info abc;
4365 EOF
4366 fi
4367 check_header soundcard.h
4368
4369 enabled_any alsa_indev alsa_outdev &&
4370     check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
4371
4372 enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack && check_func sem_timedwait &&
4373     check_func jack_port_get_latency_range -ljack
4374
4375 enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
4376
4377 if enabled libcdio; then
4378     check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
4379     check_lib2 "cdio/paranoia/cdda.h cdio/paranoia/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
4380     die "ERROR: libcdio-paranoia not found"
4381 fi
4382
4383 enabled x11grab                                           &&
4384 require X11 X11/Xlib.h XOpenDisplay -lX11                 &&
4385 require Xext X11/extensions/XShm.h XShmCreateImage -lXext &&
4386 require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
4387
4388 enabled vaapi &&
4389     check_lib va/va.h vaInitialize -lva ||
4390     disable vaapi
4391
4392 enabled vdpau &&
4393     check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
4394     disable vdpau
4395
4396 # Funny iconv installations are not unusual, so check it after all flags have been set
4397 disabled iconv || check_func_headers iconv.h iconv || check_lib2 iconv.h iconv -liconv || disable iconv
4398
4399 enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
4400
4401 # add some useful compiler flags if supported
4402 check_cflags -Wdeclaration-after-statement
4403 check_cflags -Wall
4404 check_cflags -Wno-parentheses
4405 check_cflags -Wno-switch
4406 check_cflags -Wno-format-zero-length
4407 check_cflags -Wdisabled-optimization
4408 check_cflags -Wpointer-arith
4409 check_cflags -Wredundant-decls
4410 check_cflags -Wno-pointer-sign
4411 check_cflags -Wwrite-strings
4412 check_cflags -Wtype-limits
4413 check_cflags -Wundef
4414 check_cflags -Wmissing-prototypes
4415 check_cflags -Wno-pointer-to-int-cast
4416 check_cflags -Wstrict-prototypes
4417 enabled extra_warnings && check_cflags -Winline
4418
4419 # add some linker flags
4420 check_ldflags -Wl,--warn-common
4421 check_ldflags -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
4422 test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
4423
4424 enabled xmm_clobber_test &&
4425     check_ldflags -Wl,--wrap,avcodec_open2              \
4426                   -Wl,--wrap,avcodec_decode_audio4      \
4427                   -Wl,--wrap,avcodec_decode_video2      \
4428                   -Wl,--wrap,avcodec_decode_subtitle2   \
4429                   -Wl,--wrap,avcodec_encode_audio2      \
4430                   -Wl,--wrap,avcodec_encode_video       \
4431                   -Wl,--wrap,avcodec_encode_video2      \
4432                   -Wl,--wrap,avcodec_encode_subtitle    \
4433                   -Wl,--wrap,sws_scale ||
4434     disable xmm_clobber_test
4435
4436 echo "X{};" > $TMPV
4437 if test_ldflags -Wl,--version-script,$TMPV; then
4438     append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
4439     check_cc <<EOF && enable symver_asm_label
4440 void ff_foo(void) __asm__ ("av_foo@VERSION");
4441 void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
4442 EOF
4443     check_cc <<EOF && enable symver_gnu_asm
4444 __asm__(".symver ff_foo,av_foo@VERSION");
4445 void ff_foo(void) {}
4446 EOF
4447 fi
4448
4449 if [ -z "$optflags" ]; then
4450     if enabled small; then
4451         optflags=$cflags_size
4452     elif enabled optimizations; then
4453         optflags=$cflags_speed
4454     else
4455         optflags=$cflags_noopt
4456     fi
4457 fi
4458
4459 check_optflags(){
4460     check_cflags "$@"
4461     enabled lto && check_ldflags "$@"
4462 }
4463
4464
4465 if enabled lto; then
4466     test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
4467     check_cflags  -flto
4468     check_ldflags -flto $cpuflags
4469 fi
4470
4471 check_optflags $optflags
4472 check_optflags -fno-math-errno
4473 check_optflags -fno-signed-zeros
4474
4475 enabled ftrapv && check_cflags -ftrapv
4476
4477 check_cc -mno-red-zone <<EOF && noredzone_flags="-mno-red-zone"
4478 int x;
4479 EOF
4480
4481
4482 if enabled icc; then
4483     # Just warnings, no remarks
4484     check_cflags -w1
4485     # -wd: Disable following warnings
4486     # 144, 167, 556: -Wno-pointer-sign
4487     # 188: enumerated type mixed with another type
4488     # 1292: attribute "foo" ignored
4489     # 1419: external declaration in primary source file
4490     # 10006: ignoring unknown option -fno-signed-zeros
4491     # 10148: ignoring unknown option -Wno-parentheses
4492     # 10156: ignoring option '-W'; no argument required
4493     check_cflags -wd144,167,188,556,1292,1419,10006,10148,10156
4494     # 11030: Warning unknown option --as-needed
4495     # 10156: ignoring option '-export'; no argument required
4496     check_ldflags -wd10156,11030
4497     # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
4498     enable ebp_available
4499     if enabled x86_32; then
4500         icc_version=$($cc -dumpversion)
4501         test ${icc_version%%.*} -ge 11 &&
4502             check_cflags -falign-stack=maintain-16-byte ||
4503             disable aligned_stack
4504     fi
4505 elif enabled ccc; then
4506     # disable some annoying warnings
4507     add_cflags -msg_disable bitnotint
4508     add_cflags -msg_disable mixfuncvoid
4509     add_cflags -msg_disable nonstandcast
4510     add_cflags -msg_disable unsupieee
4511 elif enabled gcc; then
4512     check_optflags -fno-tree-vectorize
4513     check_cflags -Werror=implicit-function-declaration
4514     check_cflags -Werror=missing-prototypes
4515     check_cflags -Werror=return-type
4516     check_cflags -Werror=vla
4517 elif enabled llvm_gcc; then
4518     check_cflags -mllvm -stack-alignment=16
4519 elif enabled clang; then
4520     check_cflags -mllvm -stack-alignment=16
4521     check_cflags -Qunused-arguments
4522     check_cflags -Werror=implicit-function-declaration
4523     check_cflags -Werror=missing-prototypes
4524     check_cflags -Werror=return-type
4525 elif enabled cparser; then
4526     add_cflags -Wno-missing-variable-declarations
4527     add_cflags -Wno-empty-statement
4528 elif enabled armcc; then
4529     # 2523: use of inline assembler is deprecated
4530     add_cflags -W${armcc_opt},--diag_suppress=2523
4531     add_cflags -W${armcc_opt},--diag_suppress=1207
4532     add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
4533     add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
4534     add_cflags -W${armcc_opt},--diag_suppress=167  # pointer sign
4535     add_cflags -W${armcc_opt},--diag_suppress=513  # pointer sign
4536 elif enabled tms470; then
4537     add_cflags -pds=824 -pds=837
4538 elif enabled pathscale; then
4539     add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
4540 elif enabled_any msvc icl; then
4541     enabled x86_32 && disable aligned_stack
4542     enabled_all x86_32 debug && add_cflags -Oy-
4543     enabled debug && add_ldflags -debug
4544     enable pragma_deprecated
4545     if enabled icl; then
4546         # -Qansi-alias is basically -fstrict-aliasing, but does not work
4547         # (correctly) on icl 13.x.
4548         check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" &&
4549             add_cflags -Qansi-alias
4550         # icl will pass the inline asm tests but inline asm is currently
4551         # not supported (build will fail)
4552         disable inline_asm
4553     fi
4554 fi
4555
4556 case $target_os in
4557     osf1)
4558         enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
4559     ;;
4560     plan9)
4561         add_cppflags -Dmain=plan9_main
4562     ;;
4563 esac
4564
4565 enable frame_thread_encoder
4566 enabled_any $THREADS_LIST      && enable threads
4567 enabled_any $ATOMICS_LIST      && enable atomics_native
4568
4569 enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
4570
4571 check_deps $CONFIG_LIST       \
4572            $CONFIG_EXTRA      \
4573            $HAVE_LIST         \
4574            $ALL_COMPONENTS    \
4575
4576
4577 if test $target_os = "haiku"; then
4578     disable memalign
4579     disable posix_memalign
4580 fi
4581
4582 ! enabled_any memalign posix_memalign aligned_malloc &&
4583     enabled_any $need_memalign && enable memalign_hack
4584
4585 # add_dep lib dep
4586 # -> enable ${lib}_deps_${dep}
4587 # -> add $dep to ${lib}_deps only once
4588 add_dep() {
4589     lib=$1
4590     dep=$2
4591     enabled "${lib}_deps_${dep}" && return 0
4592     enable  "${lib}_deps_${dep}"
4593     prepend "${lib}_deps" $dep
4594 }
4595
4596 # merge deps lib components
4597 # merge all ${component}_deps into ${lib}_deps and ${lib}_deps_*
4598 merge_deps() {
4599     lib=$1
4600     shift
4601     for comp in $*; do
4602         enabled $comp || continue
4603         eval "dep=\"\$${comp}_deps\""
4604         for d in $dep; do
4605             add_dep $lib $d
4606         done
4607     done
4608 }
4609
4610 merge_deps libavfilter $FILTER_LIST
4611
4612 echo "install prefix            $prefix"
4613 echo "source path               $source_path"
4614 echo "C compiler                $cc"
4615 echo "ARCH                      $arch ($cpu)"
4616 if test "$build_suffix" != ""; then
4617     echo "build suffix              $build_suffix"
4618 fi
4619 if test "$progs_suffix" != ""; then
4620     echo "progs suffix              $progs_suffix"
4621 fi
4622 if test "$extra_version" != ""; then
4623     echo "version string suffix     $extra_version"
4624 fi
4625 echo "big-endian                ${bigendian-no}"
4626 echo "runtime cpu detection     ${runtime_cpudetect-no}"
4627 if enabled x86; then
4628     echo "${yasmexe}                      ${yasm-no}"
4629     echo "MMX enabled               ${mmx-no}"
4630     echo "MMXEXT enabled            ${mmxext-no}"
4631     echo "3DNow! enabled            ${amd3dnow-no}"
4632     echo "3DNow! extended enabled   ${amd3dnowext-no}"
4633     echo "SSE enabled               ${sse-no}"
4634     echo "SSSE3 enabled             ${ssse3-no}"
4635     echo "AVX enabled               ${avx-no}"
4636     echo "FMA4 enabled              ${fma4-no}"
4637     echo "i686 features enabled     ${i686-no}"
4638     echo "CMOV is fast              ${fast_cmov-no}"
4639     echo "EBX available             ${ebx_available-no}"
4640     echo "EBP available             ${ebp_available-no}"
4641 fi
4642 if enabled arm; then
4643     echo "ARMv5TE enabled           ${armv5te-no}"
4644     echo "ARMv6 enabled             ${armv6-no}"
4645     echo "ARMv6T2 enabled           ${armv6t2-no}"
4646     echo "VFP enabled               ${vfp-no}"
4647     echo "NEON enabled              ${neon-no}"
4648     echo "THUMB enabled             ${thumb-no}"
4649 fi
4650 if enabled mips; then
4651     echo "MIPS FPU enabled          ${mipsfpu-no}"
4652     echo "MIPS32R2 enabled          ${mips32r2-no}"
4653     echo "MIPS DSP R1 enabled       ${mipsdspr1-no}"
4654     echo "MIPS DSP R2 enabled       ${mipsdspr2-no}"
4655 fi
4656 if enabled ppc; then
4657     echo "AltiVec enabled           ${altivec-no}"
4658     echo "PPC 4xx optimizations     ${ppc4xx-no}"
4659     echo "dcbzl available           ${dcbzl-no}"
4660 fi
4661 if enabled sparc; then
4662     echo "VIS enabled               ${vis-no}"
4663 fi
4664 echo "debug symbols             ${debug-no}"
4665 echo "strip symbols             ${stripping-no}"
4666 echo "optimize for size         ${small-no}"
4667 echo "optimizations             ${optimizations-no}"
4668 echo "static                    ${static-no}"
4669 echo "shared                    ${shared-no}"
4670 echo "postprocessing support    ${postproc-no}"
4671 echo "new filter support        ${avfilter-no}"
4672 echo "network support           ${network-no}"
4673 echo "threading support         ${thread_type-no}"
4674 echo "safe bitstream reader     ${safe_bitstream_reader-no}"
4675 echo "SDL support               ${sdl-no}"
4676 echo "opencl enabled            ${opencl-no}"
4677 echo "libzvbi enabled           ${libzvbi-no}"
4678 echo "texi2html enabled         ${texi2html-no}"
4679 echo "perl enabled              ${perl-no}"
4680 echo "pod2man enabled           ${pod2man-no}"
4681 echo "makeinfo enabled          ${makeinfo-no}"
4682 test -n "$random_seed" &&
4683     echo "random seed               ${random_seed}"
4684 echo
4685
4686 echo "External libraries:"
4687 print_enabled '' $EXTERNAL_LIBRARY_LIST | print_3_columns
4688 echo
4689
4690 for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
4691     echo "Enabled ${type}s:"
4692     eval list=\$$(toupper $type)_LIST
4693     print_enabled '_*' $list | print_3_columns
4694     echo
4695 done
4696
4697 license="LGPL version 2.1 or later"
4698 if enabled nonfree; then
4699     license="nonfree and unredistributable"
4700 elif enabled gplv3; then
4701     license="GPL version 3 or later"
4702 elif enabled lgplv3; then
4703     license="LGPL version 3 or later"
4704 elif enabled gpl; then
4705     license="GPL version 2 or later"
4706 fi
4707
4708 echo "License: $license"
4709
4710 echo "Creating config.mak, config.h, and doc/config.texi..."
4711
4712 test -e Makefile || $ln_s "$source_path/Makefile" .
4713
4714 enabled stripping || strip="echo skipping strip"
4715
4716 config_files="$TMPH config.mak doc/config.texi"
4717
4718 cat > config.mak <<EOF
4719 # Automatically generated by configure - do not modify!
4720 ifndef FFMPEG_CONFIG_MAK
4721 FFMPEG_CONFIG_MAK=1
4722 FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
4723 prefix=$prefix
4724 LIBDIR=\$(DESTDIR)$libdir
4725 SHLIBDIR=\$(DESTDIR)$shlibdir
4726 INCDIR=\$(DESTDIR)$incdir
4727 BINDIR=\$(DESTDIR)$bindir
4728 DATADIR=\$(DESTDIR)$datadir
4729 DOCDIR=\$(DESTDIR)$docdir
4730 MANDIR=\$(DESTDIR)$mandir
4731 SRC_PATH=$source_path
4732 ifndef MAIN_MAKEFILE
4733 SRC_PATH:=\$(SRC_PATH:.%=..%)
4734 endif
4735 CC_IDENT=$cc_ident
4736 ARCH=$arch
4737 CC=$cc
4738 CXX=$cxx
4739 AS=$as
4740 LD=$ld
4741 DEPCC=$dep_cc
4742 DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
4743 DEPAS=$as
4744 DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
4745 YASM=$yasmexe
4746 DEPYASM=$yasmexe
4747 AR=$ar
4748 ARFLAGS=$arflags
4749 AR_O=$ar_o
4750 RANLIB=$ranlib
4751 CP=cp -p
4752 LN_S=$ln_s
4753 STRIP=$strip
4754 CPPFLAGS=$CPPFLAGS
4755 CFLAGS=$CFLAGS
4756 CXXFLAGS=$CXXFLAGS
4757 ASFLAGS=$ASFLAGS
4758 AS_C=$AS_C
4759 AS_O=$AS_O
4760 CC_C=$CC_C
4761 CC_E=$CC_E
4762 CC_O=$CC_O
4763 CXX_C=$CXX_C
4764 CXX_O=$CXX_O
4765 LD_O=$LD_O
4766 LD_LIB=$LD_LIB
4767 LD_PATH=$LD_PATH
4768 DLLTOOL=$dlltool
4769 LDFLAGS=$LDFLAGS
4770 SHFLAGS=$(echo $($ldflags_filter $SHFLAGS))
4771 YASMFLAGS=$YASMFLAGS
4772 BUILDSUF=$build_suffix
4773 PROGSSUF=$progs_suffix
4774 FULLNAME=$FULLNAME
4775 LIBPREF=$LIBPREF
4776 LIBSUF=$LIBSUF
4777 LIBNAME=$LIBNAME
4778 SLIBPREF=$SLIBPREF
4779 SLIBSUF=$SLIBSUF
4780 EXESUF=$EXESUF
4781 EXTRA_VERSION=$extra_version
4782 CCDEP=$CCDEP
4783 CXXDEP=$CXXDEP
4784 CCDEP_FLAGS=$CCDEP_FLAGS
4785 ASDEP=$ASDEP
4786 ASDEP_FLAGS=$ASDEP_FLAGS
4787 CC_DEPFLAGS=$CC_DEPFLAGS
4788 AS_DEPFLAGS=$AS_DEPFLAGS
4789 HOSTCC=$host_cc
4790 HOSTLD=$host_ld
4791 HOSTCFLAGS=$host_cflags
4792 HOSTCPPFLAGS=$host_cppflags
4793 HOSTEXESUF=$HOSTEXESUF
4794 HOSTLDFLAGS=$host_ldflags
4795 HOSTLIBS=$host_libs
4796 DEPHOSTCC=$host_cc
4797 DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
4798 HOSTCCDEP=$HOSTCCDEP
4799 HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
4800 HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
4801 HOSTCC_C=$HOSTCC_C
4802 HOSTCC_O=$HOSTCC_O
4803 HOSTLD_O=$HOSTLD_O
4804 TARGET_EXEC=$target_exec $target_exec_args
4805 TARGET_PATH=$target_path
4806 TARGET_SAMPLES=${target_samples:-\$(SAMPLES)}
4807 LIBS-ffplay=$sdl_libs
4808 CFLAGS-ffplay=$sdl_cflags
4809 ZLIB=$($ldflags_filter -lz)
4810 LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
4811 EXTRALIBS=$extralibs
4812 COMPAT_OBJS=$compat_objs
4813 EXEOBJS=$exeobjs
4814 INSTALL=$install
4815 LIBTARGET=${LIBTARGET}
4816 SLIBNAME=${SLIBNAME}
4817 SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
4818 SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
4819 SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
4820 SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
4821 SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
4822 SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
4823 SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
4824 SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
4825 SAMPLES:=${samples:-\$(FATE_SAMPLES)}
4826 NOREDZONE_FLAGS=$noredzone_flags
4827 EOF
4828
4829 get_version(){
4830     lcname=lib${1}
4831     name=$(toupper $lcname)
4832     file=$source_path/$lcname/version.h
4833     eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
4834     eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
4835     eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
4836     eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
4837     eval echo "${lcname}_VERSION_MINOR=\$${name}_VERSION_MINOR" >> config.mak
4838 }
4839
4840 map 'get_version $v' $LIBRARY_LIST
4841
4842 cat > $TMPH <<EOF
4843 /* Automatically generated by configure - do not modify! */
4844 #ifndef FFMPEG_CONFIG_H
4845 #define FFMPEG_CONFIG_H
4846 #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
4847 #define FFMPEG_LICENSE "$(c_escape $license)"
4848 #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
4849 #define AVCONV_DATADIR "$(eval c_escape $datadir)"
4850 #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
4851 #define av_restrict $_restrict
4852 #define EXTERN_PREFIX "${extern_prefix}"
4853 #define EXTERN_ASM ${extern_prefix}
4854 #define SLIBSUF "$SLIBSUF"
4855 #define HAVE_MMX2 HAVE_MMXEXT
4856 EOF
4857
4858 test -n "$assert_level" &&
4859     echo "#define ASSERT_LEVEL $assert_level" >>$TMPH
4860
4861 test -n "$malloc_prefix" &&
4862     echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
4863
4864 if enabled yasm; then
4865     append config_files $TMPASM
4866     printf '' >$TMPASM
4867 fi
4868
4869 enabled getenv || echo "#define getenv(x) NULL" >> $TMPH
4870
4871
4872 mkdir -p doc
4873 echo "@c auto-generated by configure" > doc/config.texi
4874
4875 print_config ARCH_   "$config_files" $ARCH_LIST
4876 print_config HAVE_   "$config_files" $HAVE_LIST
4877 print_config CONFIG_ "$config_files" $CONFIG_LIST       \
4878                                      $CONFIG_EXTRA      \
4879                                      $ALL_COMPONENTS    \
4880
4881 echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
4882 echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
4883
4884 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
4885 cp_if_changed $TMPH config.h
4886 touch .config
4887
4888 enabled yasm && cp_if_changed $TMPASM config.asm
4889
4890 cat > $TMPH <<EOF
4891 /* Generated by ffconf */
4892 #ifndef AVUTIL_AVCONFIG_H
4893 #define AVUTIL_AVCONFIG_H
4894 EOF
4895
4896 print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
4897
4898 echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
4899
4900 cp_if_changed $TMPH libavutil/avconfig.h
4901
4902 if test -n "$WARNINGS"; then
4903     printf "\n$WARNINGS"
4904     enabled fatal_warnings && exit 1
4905 fi
4906
4907 # build pkg-config files
4908
4909 pkgconfig_generate(){
4910     name=$1
4911     shortname=${name#lib}${build_suffix}
4912     comment=$2
4913     version=$3
4914     libs=$4
4915     requires=$5
4916     enabled ${name#lib} || return 0
4917     mkdir -p $name
4918     cat <<EOF > $name/$name${build_suffix}.pc
4919 prefix=$prefix
4920 exec_prefix=\${prefix}
4921 libdir=$libdir
4922 includedir=$incdir
4923
4924 Name: $name
4925 Description: $comment
4926 Version: $version
4927 Requires: $(enabled shared || echo $requires)
4928 Requires.private: $(enabled shared && echo $requires)
4929 Conflicts:
4930 Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
4931 Libs.private: $(enabled shared && echo $libs)
4932 Cflags: -I\${includedir}
4933 EOF
4934
4935 mkdir -p doc/examples/pc-uninstalled
4936 includedir=${source_path}
4937 [ "$includedir" = . ] && includedir="\${pcfiledir}/../../.."
4938     cat <<EOF > doc/examples/pc-uninstalled/$name.pc
4939 prefix=
4940 exec_prefix=
4941 libdir=\${pcfiledir}/../../../$name
4942 includedir=${includedir}
4943
4944 Name: $name
4945 Description: $comment
4946 Version: $version
4947 Requires: $requires
4948 Conflicts:
4949 Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
4950 Cflags: -I\${includedir}
4951 EOF
4952 }
4953
4954 lavfi_libs="libavutil${build_suffix} = $LIBAVUTIL_VERSION"
4955 enabled libavfilter_deps_avcodec    && prepend lavfi_libs "libavcodec${build_suffix} = $LIBAVCODEC_VERSION,"
4956 enabled libavfilter_deps_avformat   && prepend lavfi_libs "libavformat${build_suffix} = $LIBAVFORMAT_VERSION,"
4957 enabled libavfilter_deps_avresample && prepend lavfi_libs "libavresample${build_suffix} = $LIBAVRESAMPLE_VERSION,"
4958 enabled libavfilter_deps_swscale    && prepend lavfi_libs "libswscale${build_suffix} = $LIBSWSCALE_VERSION,"
4959 enabled libavfilter_deps_swresample && prepend lavfi_libs "libswresample${build_suffix} = $LIBSWRESAMPLE_VERSION,"
4960 enabled libavfilter_deps_postproc   && prepend lavfi_libs "libpostproc${build_suffix} = $LIBPOSTPROC_VERSION,"
4961 lavfi_libs=${lavfi_libs%, }
4962
4963 lavd_libs="libavformat${build_suffix} = $LIBAVFORMAT_VERSION"
4964 enabled lavfi_indev && prepend lavd_libs "libavfilter${build_suffix} = $LIBAVFILTER_VERSION,"
4965
4966 pkgconfig_generate libavutil     "FFmpeg utility library"               "$LIBAVUTIL_VERSION"     "$LIBM"
4967 pkgconfig_generate libavcodec    "FFmpeg codec library"                 "$LIBAVCODEC_VERSION"    "$extralibs" "libavutil${build_suffix} = $LIBAVUTIL_VERSION"
4968 pkgconfig_generate libavformat   "FFmpeg container format library"      "$LIBAVFORMAT_VERSION"   "$extralibs" "libavcodec${build_suffix} = $LIBAVCODEC_VERSION"
4969 pkgconfig_generate libavdevice   "FFmpeg device handling library"       "$LIBAVDEVICE_VERSION"   "$extralibs" "$lavd_libs"
4970 pkgconfig_generate libavfilter   "FFmpeg audio/video filtering library" "$LIBAVFILTER_VERSION"   "$extralibs" "$lavfi_libs"
4971 pkgconfig_generate libpostproc   "FFmpeg postprocessing library"        "$LIBPOSTPROC_VERSION"   ""           "libavutil${build_suffix} = $LIBAVUTIL_VERSION"
4972 pkgconfig_generate libavresample "Libav audio resampling library"       "$LIBAVRESAMPLE_VERSION" "$extralibs" "libavutil${build_suffix} = $LIBAVUTIL_VERSION"
4973 pkgconfig_generate libswscale    "FFmpeg image rescaling library"       "$LIBSWSCALE_VERSION"    "$LIBM"      "libavutil${build_suffix} = $LIBAVUTIL_VERSION"
4974 pkgconfig_generate libswresample "FFmpeg audio resampling library"      "$LIBSWRESAMPLE_VERSION" "$LIBM"      "libavutil${build_suffix} = $LIBAVUTIL_VERSION"
4975
4976 fix_ffmpeg_remote(){
4977     git_remote_from=$1
4978     git_remote_to=$2
4979     fixme_remote=$(git --git-dir=$source_path/.git --work-tree=$source_path remote -v | grep $git_remote_from | cut -f 1 | sort | uniq)
4980     if [ "$fixme_remote" != "" ]; then
4981         echolog "
4982 Outdated domain in git config, the official domain for ffmpeg git is since
4983 November 2011, source.ffmpeg.org, both the old and the new point to the same
4984 repository and server. To update it enter the following commands:
4985 "
4986         for remote in $fixme_remote; do
4987             echolog "git remote set-url $remote $git_remote_to"
4988         done
4989     fi
4990 }
4991
4992 if test -f "$source_path/.git/config"; then
4993     remote_from=git.videolan.org
4994     remote_to=source.ffmpeg.org
4995     fix_ffmpeg_remote git@$remote_from:ffmpeg   git@$remote_to:ffmpeg
4996     fix_ffmpeg_remote git://$remote_from/ffmpeg git://$remote_to/ffmpeg
4997 fi