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