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