OSDN Git Service

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