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