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