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