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