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