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