]> git.sesse.net Git - ffmpeg/blob - configure
94993d7e86c11df4ff29e5c4eb853888dd1fd990
[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 show_help(){
58 cat <<EOF
59 Usage: configure [options]
60 Options: [defaults in brackets after descriptions]
61
62 Standard options:
63   --help                   print this message
64   --logfile=FILE           log tests and output to FILE [config.log]
65   --disable-logging        do not log configure debug information
66   --prefix=PREFIX          install in PREFIX [$prefix]
67   --bindir=DIR             install binaries in DIR [PREFIX/bin]
68   --datadir=DIR            install data files in DIR [PREFIX/share/ffmpeg]
69   --libdir=DIR             install libs in DIR [PREFIX/lib]
70   --shlibdir=DIR           install shared libs in DIR [PREFIX/lib]
71   --incdir=DIR             install includes in DIR [PREFIX/include]
72   --mandir=DIR             install man page in DIR [PREFIX/share/man]
73
74 Configuration options:
75   --disable-static         do not build static libraries [no]
76   --enable-shared          build shared libraries [no]
77   --enable-gpl             allow use of GPL code, the resulting libs
78                            and binaries will be under GPL [no]
79   --enable-version3        upgrade (L)GPL to version 3 [no]
80   --enable-nonfree         allow use of nonfree code, the resulting libs
81                            and binaries will be unredistributable [no]
82   --disable-doc            do not build documentation
83   --disable-ffmpeg         disable ffmpeg build
84   --disable-ffplay         disable ffplay build
85   --disable-ffprobe        disable ffprobe build
86   --disable-ffserver       disable ffserver build
87   --disable-avdevice       disable libavdevice build
88   --disable-avcodec        disable libavcodec build
89   --disable-avcore         disable libavcore build
90   --disable-avformat       disable libavformat build
91   --disable-swscale        disable libswscale build
92   --enable-postproc        enable GPLed postprocessing support [no]
93   --disable-avfilter       disable video filter support [no]
94   --disable-pthreads       disable pthreads [auto]
95   --enable-w32threads      use Win32 threads [no]
96   --enable-x11grab         enable X11 grabbing [no]
97   --disable-network        disable network support [no]
98   --disable-mpegaudio-hp   faster (but less accurate) MPEG audio decoding [no]
99   --enable-gray            enable full grayscale support (slower color)
100   --disable-swscale-alpha  disable alpha channel support in swscale
101   --disable-fastdiv        disable table-based division
102   --enable-small           optimize for size instead of speed
103   --disable-aandct         disable AAN DCT code
104   --disable-dct            disable DCT code
105   --disable-fft            disable FFT code
106   --disable-golomb         disable Golomb code
107   --disable-huffman        disable Huffman code
108   --disable-lpc            disable LPC code
109   --disable-mdct           disable MDCT code
110   --disable-rdft           disable RDFT code
111   --disable-vaapi          disable VAAPI code
112   --disable-vdpau          disable VDPAU code
113   --disable-dxva2          disable DXVA2 code
114   --enable-runtime-cpudetect detect cpu capabilities at runtime (bigger binary)
115   --enable-hardcoded-tables use hardcoded tables instead of runtime generation
116   --enable-memalign-hack   emulate memalign, interferes with memory debuggers
117   --disable-everything     disable all components listed below
118   --disable-encoder=NAME   disable encoder NAME
119   --enable-encoder=NAME    enable encoder NAME
120   --disable-encoders       disable all encoders
121   --disable-decoder=NAME   disable decoder NAME
122   --enable-decoder=NAME    enable decoder NAME
123   --disable-decoders       disable all decoders
124   --disable-hwaccel=NAME   disable hwaccel NAME
125   --enable-hwaccel=NAME    enable hwaccel NAME
126   --disable-hwaccels       disable all hwaccels
127   --disable-muxer=NAME     disable muxer NAME
128   --enable-muxer=NAME      enable muxer NAME
129   --disable-muxers         disable all muxers
130   --disable-demuxer=NAME   disable demuxer NAME
131   --enable-demuxer=NAME    enable demuxer NAME
132   --disable-demuxers       disable all demuxers
133   --enable-parser=NAME     enable parser NAME
134   --disable-parser=NAME    disable parser NAME
135   --disable-parsers        disable all parsers
136   --enable-bsf=NAME        enable bitstream filter NAME
137   --disable-bsf=NAME       disable bitstream filter NAME
138   --disable-bsfs           disable all bitstream filters
139   --enable-protocol=NAME   enable protocol NAME
140   --disable-protocol=NAME  disable protocol NAME
141   --disable-protocols      disable all protocols
142   --disable-indev=NAME     disable input device NAME
143   --disable-outdev=NAME    disable output device NAME
144   --disable-indevs         disable input devices
145   --disable-outdevs        disable output devices
146   --disable-devices        disable all devices
147   --enable-filter=NAME     enable filter NAME
148   --disable-filter=NAME    disable filter NAME
149   --disable-filters        disable all filters
150   --list-decoders          show all available decoders
151   --list-encoders          show all available encoders
152   --list-hwaccels          show all available hardware accelerators
153   --list-muxers            show all available muxers
154   --list-demuxers          show all available demuxers
155   --list-parsers           show all available parsers
156   --list-protocols         show all available protocols
157   --list-bsfs              show all available bitstream filters
158   --list-indevs            show all available input devices
159   --list-outdevs           show all available output devices
160   --list-filters           show all available filters
161
162 External library support:
163   --enable-avisynth        enable reading of AVISynth script files [no]
164   --enable-bzlib           enable bzlib [autodetect]
165   --enable-frei0r          enable frei0r video filtering
166   --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
167   --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
168   --enable-libopencv       enable video filtering via libopencv [no]
169   --enable-libdc1394       enable IIDC-1394 grabbing using libdc1394
170                            and libraw1394 [no]
171   --enable-libdirac        enable Dirac support via libdirac [no]
172   --enable-libfaac         enable FAAC support via libfaac [no]
173   --enable-libgsm          enable GSM support via libgsm [no]
174   --enable-libmp3lame      enable MP3 encoding via libmp3lame [no]
175   --enable-libnut          enable NUT (de)muxing via libnut,
176                            native (de)muxer exists [no]
177   --enable-libopenjpeg     enable JPEG 2000 decoding via OpenJPEG [no]
178   --enable-librtmp         enable RTMP[E] support via librtmp [no]
179   --enable-libschroedinger enable Dirac support via libschroedinger [no]
180   --enable-libspeex        enable Speex decoding via libspeex [no]
181   --enable-libtheora       enable Theora encoding via libtheora [no]
182   --enable-libvorbis       enable Vorbis encoding via libvorbis,
183                            native implementation exists [no]
184   --enable-libvpx          enable VP8 support via libvpx [no]
185   --enable-libx264         enable H.264 encoding via x264 [no]
186   --enable-libxavs         enable AVS encoding via xavs [no]
187   --enable-libxvid         enable Xvid encoding via xvidcore,
188                            native MPEG-4/Xvid encoder exists [no]
189   --enable-mlib            enable Sun medialib [no]
190   --enable-zlib            enable zlib [autodetect]
191
192 Advanced options (experts only):
193   --source-path=PATH       path to source code [$source_path]
194   --cross-prefix=PREFIX    use PREFIX for compilation tools [$cross_prefix]
195   --enable-cross-compile   assume a cross-compiler is used
196   --sysroot=PATH           root of cross-build tree
197   --sysinclude=PATH        location of cross-build system headers
198   --target-os=OS           compiler targets OS [$target_os]
199   --target-exec=CMD        command to run executables on target
200   --target-path=DIR        path to view of build directory on target
201   --nm=NM                  use nm tool
202   --ar=AR                  use archive tool AR [$ar_default]
203   --as=AS                  use assembler AS [$as_default]
204   --cc=CC                  use C compiler CC [$cc_default]
205   --ld=LD                  use linker LD
206   --host-cc=HOSTCC         use host C compiler HOSTCC
207   --host-cflags=HCFLAGS    use HCFLAGS when compiling for host
208   --host-ldflags=HLDFLAGS  use HLDFLAGS when linking for host
209   --host-libs=HLIBS        use libs HLIBS when linking for host
210   --extra-cflags=ECFLAGS   add ECFLAGS to CFLAGS [$CFLAGS]
211   --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
212   --extra-libs=ELIBS       add ELIBS [$ELIBS]
213   --extra-version=STRING   version string suffix []
214   --build-suffix=SUFFIX    library name suffix []
215   --arch=ARCH              select architecture [$arch]
216   --cpu=CPU                select the minimum required CPU (affects
217                            instruction selection, may crash on older CPUs)
218   --disable-asm            disable all assembler optimizations
219   --disable-altivec        disable AltiVec optimizations
220   --disable-amd3dnow       disable 3DNow! optimizations
221   --disable-amd3dnowext    disable 3DNow! extended optimizations
222   --disable-mmx            disable MMX optimizations
223   --disable-mmx2           disable MMX2 optimizations
224   --disable-sse            disable SSE optimizations
225   --disable-ssse3          disable SSSE3 optimizations
226   --disable-armv5te        disable armv5te optimizations
227   --disable-armv6          disable armv6 optimizations
228   --disable-armv6t2        disable armv6t2 optimizations
229   --disable-armvfp         disable ARM VFP optimizations
230   --disable-iwmmxt         disable iwmmxt optimizations
231   --disable-mmi            disable MMI optimizations
232   --disable-neon           disable neon optimizations
233   --disable-vis            disable VIS optimizations
234   --disable-yasm           disable use of yasm assembler
235   --enable-pic             build position-independent code
236   --malloc-prefix=PFX      prefix malloc and related names with PFX
237   --enable-sram            allow use of on-chip SRAM
238   --disable-symver         disable symbol versioning
239
240 Developer options (useful when working on FFmpeg itself):
241   --disable-debug          disable debugging symbols
242   --enable-debug=LEVEL     set the debug level [$debuglevel]
243   --disable-optimizations  disable compiler optimizations
244   --enable-extra-warnings  enable more compiler warnings
245   --disable-stripping      disable stripping of executables and shared libraries
246   --samples=PATH           location of test samples for FATE
247
248 NOTE: Object files are built at the place where configure is launched.
249 EOF
250   exit 0
251 }
252
253 quotes='""'
254
255 log(){
256     echo "$@" >> $logfile
257 }
258
259 log_file(){
260     log BEGIN $1
261     pr -n -t $1 >> $logfile
262     log END $1
263 }
264
265 echolog(){
266     log "$@"
267     echo "$@"
268 }
269
270 warn(){
271     log "WARNING: $*"
272     WARNINGS="${WARNINGS}WARNING: $*\n"
273 }
274
275 die(){
276     echolog "$@"
277     cat <<EOF
278
279 If you think configure made a mistake, make sure you are using the latest
280 version from Git.  If the latest version fails, report the problem to the
281 ffmpeg-user@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net.
282 EOF
283     if disabled logging; then
284         cat <<EOF
285 Rerun configure with logging enabled (do not use --disable-logging), and
286 include the log this produces with your report.
287 EOF
288     else
289 cat <<EOF
290 Include the log file "$logfile" produced by configure as this will help
291 solving the problem.
292 EOF
293     fi
294     exit 1
295 }
296
297 # Avoid locale weirdness, besides we really just want to translate ASCII.
298 toupper(){
299     echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
300 }
301
302 tolower(){
303     echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
304 }
305
306 c_escape(){
307     echo "$*" | sed 's/["\\]/\\\0/g'
308 }
309
310 sh_quote(){
311     v=$(echo "$1" | sed "s/'/'\\\\''/g")
312     test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
313     echo "$v"
314 }
315
316 filter(){
317     pat=$1
318     shift
319     for v; do
320         eval "case $v in $pat) echo $v ;; esac"
321     done
322 }
323
324 filter_out(){
325     pat=$1
326     shift
327     for v; do
328         eval "case $v in $pat) ;; *) echo $v ;; esac"
329     done
330 }
331
332 map(){
333     m=$1
334     shift
335     for v; do eval $m; done
336 }
337
338 set_all(){
339     value=$1
340     shift
341     for var in $*; do
342         eval $var=$value
343     done
344 }
345
346 set_weak(){
347     value=$1
348     shift
349     for var; do
350         eval : \${$var:=$value}
351     done
352 }
353
354 pushvar(){
355     for var in $*; do
356         eval level=\${${var}_level:=0}
357         eval ${var}_${level}="\$$var"
358         eval ${var}_level=$(($level+1))
359     done
360 }
361
362 popvar(){
363     for var in $*; do
364         eval level=\${${var}_level:-0}
365         test $level = 0 && continue
366         eval level=$(($level-1))
367         eval $var="\${${var}_${level}}"
368         eval ${var}_level=$level
369         eval unset ${var}_${level}
370     done
371 }
372
373 enable(){
374     set_all yes $*
375 }
376
377 disable(){
378     set_all no $*
379 }
380
381 enable_weak(){
382     set_weak yes $*
383 }
384
385 disable_weak(){
386     set_weak no $*
387 }
388
389 enable_safe(){
390     for var; do
391         enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
392     done
393 }
394
395 disable_safe(){
396     for var; do
397         disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
398     done
399 }
400
401 do_enable_deep(){
402     for var; do
403         enabled $var && continue
404         eval sel="\$${var}_select"
405         eval sgs="\$${var}_suggest"
406         pushvar var sgs
407         enable_deep $sel
408         popvar sgs
409         enable_deep_weak $sgs
410         popvar var
411     done
412 }
413
414 enable_deep(){
415     do_enable_deep $*
416     enable $*
417 }
418
419 enable_deep_weak(){
420     do_enable_deep $*
421     enable_weak $*
422 }
423
424 enabled(){
425     test "${1#!}" = "$1" && op== || op=!=
426     eval test "x\$${1#!}" $op "xyes"
427 }
428
429 disabled(){
430     test "${1#!}" = "$1" && op== || op=!=
431     eval test "x\$${1#!}" $op "xno"
432 }
433
434 enabled_all(){
435     for opt; do
436         enabled $opt || return 1
437     done
438 }
439
440 disabled_all(){
441     for opt; do
442         disabled $opt || return 1
443     done
444 }
445
446 enabled_any(){
447     for opt; do
448         enabled $opt && return 0
449     done
450 }
451
452 disabled_any(){
453     for opt; do
454         disabled $opt && return 0
455     done
456     return 1
457 }
458
459 set_default(){
460     for opt; do
461         eval : \${$opt:=\$${opt}_default}
462     done
463 }
464
465 is_in(){
466     value=$1
467     shift
468     for var in $*; do
469         [ $var = $value ] && return 0
470     done
471     return 1
472 }
473
474 check_deps(){
475     for cfg; do
476         cfg="${cfg#!}"
477         enabled ${cfg}_checking && die "Circular dependency for $cfg."
478         disabled ${cfg}_checking && continue
479         enable ${cfg}_checking
480
481         eval dep_all="\$${cfg}_deps"
482         eval dep_any="\$${cfg}_deps_any"
483         eval dep_sel="\$${cfg}_select"
484         eval dep_sgs="\$${cfg}_suggest"
485         eval dep_ifa="\$${cfg}_if"
486         eval dep_ifn="\$${cfg}_if_any"
487
488         pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
489         check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
490         popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
491
492         [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
493         [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
494         enabled_all  $dep_all || disable $cfg
495         enabled_any  $dep_any || disable $cfg
496         disabled_any $dep_sel && disable $cfg
497
498         if enabled $cfg; then
499             eval dep_extralibs="\$${cfg}_extralibs"
500             test -n "$dep_extralibs" && add_extralibs $dep_extralibs
501             enable_deep $dep_sel
502             enable_deep_weak $dep_sgs
503         fi
504
505         disable ${cfg}_checking
506     done
507 }
508
509 print_config_h(){
510     enabled $1 && v=1 || v=0
511     echo "#define $2 $v"
512 }
513
514 print_config_mak(){
515     enabled $1 && v= || v=!
516     echo "$v$2=yes"
517 }
518
519 print_config_asm(){
520     enabled $1 && echo "%define $2"
521 }
522
523 print_config(){
524     pfx=$1
525     files=$2
526     shift 2
527     for cfg; do
528         ucname="$(toupper $cfg)"
529         for f in $files; do
530             "print_config_${f##*.}" $cfg ${pfx}${ucname} >>$f
531         done
532     done
533 }
534
535 print_enabled(){
536     test "$1" = -n && end=" " && shift || end="\n"
537     suf=$1
538     shift
539     for v; do
540         enabled $v && printf "%s$end" ${v%$suf};
541     done
542 }
543
544 append(){
545     var=$1
546     shift
547     eval "$var=\"\$$var $*\""
548 }
549
550 prepend(){
551     var=$1
552     shift
553     eval "$var=\"$* \$$var\""
554 }
555
556 add_cppflags(){
557     append CPPFLAGS $($filter_cppflags "$@")
558 }
559
560 add_cflags(){
561     append CFLAGS $($filter_cflags "$@")
562 }
563
564 add_asflags(){
565     append ASFLAGS $($filter_asflags "$@")
566 }
567
568 add_ldflags(){
569     append LDFLAGS "$@"
570 }
571
572 add_extralibs(){
573     prepend extralibs "$@"
574 }
575
576 check_cmd(){
577     log "$@"
578     "$@" >> $logfile 2>&1
579 }
580
581 check_cc(){
582     log check_cc "$@"
583     cat > $TMPC
584     log_file $TMPC
585     check_cmd $cc $CPPFLAGS $CFLAGS "$@" -c -o $TMPO $TMPC
586 }
587
588 check_cpp(){
589     log check_cpp "$@"
590     cat > $TMPC
591     log_file $TMPC
592     check_cmd $cc $CPPFLAGS $CFLAGS "$@" -E -o $TMPO $TMPC
593 }
594
595 check_as(){
596     log check_as "$@"
597     cat > $TMPC
598     log_file $TMPC
599     check_cmd $as $CPPFLAGS $ASFLAGS "$@" -c -o $TMPO $TMPC
600 }
601
602 check_asm(){
603     log check_asm "$@"
604     name="$1"
605     code="$2"
606     shift 2
607     disable $name
608     check_as "$@" <<EOF && enable $name
609 void foo(void){ __asm__ volatile($code); }
610 EOF
611 }
612
613 check_yasm(){
614     log check_yasm "$@"
615     echo "$1" > $TMPS
616     log_file $TMPS
617     shift 1
618     check_cmd $yasmexe $YASMFLAGS "$@" -o $TMPO $TMPS
619 }
620
621 check_ld(){
622     log check_ld "$@"
623     flags=''
624     libs=''
625     for f; do
626         test "${f}" = "${f#-l}" && flags="$flags $f" || libs="$libs $f"
627     done
628     check_cc $($filter_cflags $flags) || return
629     check_cmd $ld $LDFLAGS $flags -o $TMPE $TMPO $extralibs $libs
630 }
631
632 check_cppflags(){
633     log check_cppflags "$@"
634     set -- $($filter_cppflags "$@")
635     check_cc "$@" <<EOF && append CPPFLAGS "$@"
636 int x;
637 EOF
638 }
639
640 check_cflags(){
641     log check_cflags "$@"
642     set -- $($filter_cflags "$@")
643     check_cc "$@" <<EOF && append CFLAGS "$@"
644 int x;
645 EOF
646 }
647
648 test_ldflags(){
649     log test_ldflags "$@"
650     check_ld "$@" <<EOF
651 int main(void){ return 0; }
652 EOF
653 }
654
655 check_ldflags(){
656     log check_ldflags "$@"
657     test_ldflags "$@" && add_ldflags "$@"
658 }
659
660 check_header(){
661     log check_header "$@"
662     header=$1
663     shift
664     disable_safe $header
665     check_cpp "$@" <<EOF && enable_safe $header
666 #include <$header>
667 int x;
668 EOF
669 }
670
671 check_func(){
672     log check_func "$@"
673     func=$1
674     shift
675     disable $func
676     check_ld "$@" <<EOF && enable $func
677 extern int $func();
678 int main(void){ $func(); }
679 EOF
680 }
681
682 check_mathfunc(){
683     log check_mathfunc "$@"
684     func=$1
685     shift
686     disable $func
687     check_ld "$@" <<EOF && enable $func
688 #include <math.h>
689 float foo(float f) { return $func(f); }
690 int main(void){ return 0; }
691 EOF
692 }
693
694 check_func_headers(){
695     log check_func_headers "$@"
696     headers=$1
697     func=$2
698     shift 2
699     disable $func
700     incs=""
701     for hdr in $headers; do
702         incs="$incs
703 #include <$hdr>"
704     done
705     check_ld "$@" <<EOF && enable $func && enable_safe $headers
706 $incs
707 int main(int argc, char **argv){
708     return (long) $func;
709 }
710 EOF
711 }
712
713 check_cpp_condition(){
714     log check_cpp_condition "$@"
715     header=$1
716     condition=$2
717     shift 2
718     check_cpp $($filter_cppflags "$@") <<EOF
719 #include <$header>
720 #if !($condition)
721 #error "unsatisfied condition: $condition"
722 #endif
723 EOF
724 }
725
726 check_lib(){
727     log check_lib "$@"
728     header="$1"
729     func="$2"
730     shift 2
731     check_header $header && check_func $func "$@" && add_extralibs "$@"
732 }
733
734 check_lib2(){
735     log check_lib2 "$@"
736     headers="$1"
737     func="$2"
738     shift 2
739     check_func_headers "$headers" $func "$@" && add_extralibs "$@"
740 }
741
742 check_exec(){
743     check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
744 }
745
746 check_exec_crash(){
747     code=$(cat)
748
749     # exit() is not async signal safe.  _Exit (C99) and _exit (POSIX)
750     # are safe but may not be available everywhere.  Thus we use
751     # raise(SIGTERM) instead.  The check is run in a subshell so we
752     # can redirect the "Terminated" message from the shell.  SIGBUS
753     # is not defined by standard C so it is used conditionally.
754
755     (check_exec "$@") >> $logfile 2>&1 <<EOF
756 #include <signal.h>
757 static void sighandler(int sig){
758     raise(SIGTERM);
759 }
760 int main(void){
761     signal(SIGILL, sighandler);
762     signal(SIGFPE, sighandler);
763     signal(SIGSEGV, sighandler);
764 #ifdef SIGBUS
765     signal(SIGBUS, sighandler);
766 #endif
767     { $code }
768 }
769 EOF
770 }
771
772 check_type(){
773     log check_type "$@"
774     headers=$1
775     type=$2
776     shift 2
777     disable_safe "$type"
778     incs=""
779     for hdr in $headers; do
780         incs="$incs
781 #include <$hdr>"
782     done
783     check_cc "$@" <<EOF && enable_safe "$type"
784 $incs
785 $type v;
786 EOF
787 }
788
789 check_struct(){
790     log check_type "$@"
791     headers=$1
792     struct=$2
793     member=$3
794     shift 3
795     disable_safe "${struct}_${member}"
796     incs=""
797     for hdr in $headers; do
798         incs="$incs
799 #include <$hdr>"
800     done
801     check_cc "$@" <<EOF && enable_safe "${struct}_${member}"
802 $incs
803 const void *p = &(($struct *)0)->$member;
804 EOF
805 }
806
807 require(){
808     name="$1"
809     header="$2"
810     func="$3"
811     shift 3
812     check_lib $header $func "$@" || die "ERROR: $name not found"
813 }
814
815 require2(){
816     name="$1"
817     headers="$2"
818     func="$3"
819     shift 3
820     check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
821 }
822
823 check_host_cc(){
824     log check_host_cc "$@"
825     cat > $TMPC
826     log_file $TMPC
827     check_cmd $host_cc $host_cflags "$@" -c -o $TMPO $TMPC
828 }
829
830 check_host_cflags(){
831     log check_host_cflags "$@"
832     check_host_cc "$@" <<EOF && append host_cflags "$@"
833 int x;
834 EOF
835 }
836
837 apply(){
838     file=$1
839     shift
840     "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
841 }
842
843 cp_if_changed(){
844     cmp -s "$1" "$2" &&
845         echo "$2 is unchanged" ||
846         cp -f "$1" "$2"
847 }
848
849 # CONFIG_LIST contains configurable options, while HAVE_LIST is for
850 # system-dependent things.
851
852 COMPONENT_LIST="
853     bsfs
854     decoders
855     demuxers
856     encoders
857     filters
858     hwaccels
859     indevs
860     muxers
861     outdevs
862     parsers
863     protocols
864 "
865
866 CONFIG_LIST="
867     $COMPONENT_LIST
868     aandct
869     avcodec
870     avcore
871     avdevice
872     avfilter
873     avformat
874     avisynth
875     bzlib
876     dct
877     doc
878     dwt
879     dxva2
880     fastdiv
881     ffmpeg
882     ffplay
883     ffprobe
884     ffserver
885     fft
886     frei0r
887     golomb
888     gpl
889     gray
890     h264dsp
891     h264pred
892     hardcoded_tables
893     huffman
894     libdc1394
895     libdirac
896     libfaac
897     libgsm
898     libmp3lame
899     libnut
900     libopencore_amrnb
901     libopencore_amrwb
902     libopencv
903     libopenjpeg
904     librtmp
905     libschroedinger
906     libspeex
907     libtheora
908     libvorbis
909     libvpx
910     libx264
911     libxavs
912     libxvid
913     lpc
914     lsp
915     mdct
916     memalign_hack
917     mlib
918     mpegaudio_hp
919     network
920     nonfree
921     pic
922     postproc
923     rdft
924     rtpdec
925     runtime_cpudetect
926     shared
927     small
928     sram
929     static
930     swscale
931     swscale_alpha
932     vaapi
933     vdpau
934     version3
935     x11grab
936     zlib
937 "
938
939 THREADS_LIST='
940     pthreads
941     w32threads
942 '
943
944 ARCH_LIST='
945     alpha
946     arm
947     avr32
948     avr32_ap
949     avr32_uc
950     bfin
951     ia64
952     m68k
953     mips
954     mips64
955     parisc
956     ppc
957     ppc64
958     s390
959     sh4
960     sparc
961     sparc64
962     tomi
963     x86
964     x86_32
965     x86_64
966 '
967
968 ARCH_EXT_LIST='
969     altivec
970     amd3dnow
971     amd3dnowext
972     armv5te
973     armv6
974     armv6t2
975     armvfp
976     iwmmxt
977     mmi
978     mmx
979     mmx2
980     neon
981     ppc4xx
982     sse
983     ssse3
984     vis
985 '
986
987 HAVE_LIST_PUB='
988     bigendian
989     fast_unaligned
990 '
991
992 HAVE_LIST="
993     $ARCH_EXT_LIST
994     $HAVE_LIST_PUB
995     $THREADS_LIST
996     aligned_stack
997     alsa_asoundlib_h
998     altivec_h
999     arpa_inet_h
1000     attribute_may_alias
1001     attribute_packed
1002     bswap
1003     closesocket
1004     cmov
1005     conio_h
1006     dcbzl
1007     dev_bktr_ioctl_bt848_h
1008     dev_bktr_ioctl_meteor_h
1009     dev_ic_bt8xx_h
1010     dev_video_meteor_ioctl_meteor_h
1011     dev_video_bktr_ioctl_bt848_h
1012     dlfcn_h
1013     dlopen
1014     dos_paths
1015     ebp_available
1016     ebx_available
1017     exp2
1018     exp2f
1019     fast_64bit
1020     fast_clz
1021     fast_cmov
1022     fcntl
1023     fork
1024     getaddrinfo
1025     gethrtime
1026     GetProcessMemoryInfo
1027     GetProcessTimes
1028     getrusage
1029     gnu_as
1030     struct_rusage_ru_maxrss
1031     ibm_asm
1032     inet_aton
1033     inline_asm
1034     isatty
1035     ldbrx
1036     libdc1394_1
1037     libdc1394_2
1038     llrint
1039     llrintf
1040     local_aligned_16
1041     local_aligned_8
1042     log2
1043     log2f
1044     loongson
1045     lrint
1046     lrintf
1047     lzo1x_999_compress
1048     machine_ioctl_bt848_h
1049     machine_ioctl_meteor_h
1050     malloc_h
1051     MapViewOfFile
1052     memalign
1053     mkstemp
1054     mmap
1055     pld
1056     posix_memalign
1057     round
1058     roundf
1059     sdl
1060     sdl_video_size
1061     setmode
1062     socklen_t
1063     soundcard_h
1064     poll_h
1065     setrlimit
1066     strerror_r
1067     strtok_r
1068     struct_addrinfo
1069     struct_ipv6_mreq
1070     struct_sockaddr_in6
1071     struct_sockaddr_sa_len
1072     struct_sockaddr_storage
1073     symver
1074     symver_gnu_asm
1075     symver_asm_label
1076     sys_mman_h
1077     sys_resource_h
1078     sys_select_h
1079     sys_soundcard_h
1080     sys_videoio_h
1081     ten_operands
1082     termios_h
1083     threads
1084     truncf
1085     vfp_args
1086     VirtualAlloc
1087     winsock2_h
1088     xform_asm
1089     xmm_clobbers
1090     yasm
1091 "
1092
1093 # options emitted with CONFIG_ prefix but not available on command line
1094 CONFIG_EXTRA="
1095     avutil
1096     gplv3
1097     lgplv3
1098 "
1099
1100 CMDLINE_SELECT="
1101     $ARCH_EXT_LIST
1102     $CONFIG_LIST
1103     $THREADS_LIST
1104     asm
1105     cross_compile
1106     debug
1107     extra_warnings
1108     logging
1109     optimizations
1110     stripping
1111     symver
1112     yasm
1113 "
1114
1115 PATHS_LIST='
1116     bindir
1117     datadir
1118     incdir
1119     libdir
1120     mandir
1121     prefix
1122     shlibdir
1123 '
1124
1125 CMDLINE_SET="
1126     $PATHS_LIST
1127     ar
1128     arch
1129     as
1130     build_suffix
1131     cc
1132     cpu
1133     cross_prefix
1134     dep_cc
1135     extra_version
1136     host_cc
1137     host_cflags
1138     host_ldflags
1139     host_libs
1140     host_os
1141     ld
1142     logfile
1143     malloc_prefix
1144     nm
1145     samples
1146     source_path
1147     strip
1148     sysinclude
1149     sysroot
1150     target_exec
1151     target_os
1152     target_path
1153 "
1154
1155 CMDLINE_APPEND="
1156     extra_cflags
1157 "
1158
1159 # code dependency declarations
1160
1161 # architecture extensions
1162
1163 armv5te_deps="arm"
1164 armv6_deps="arm"
1165 armv6t2_deps="arm"
1166 armvfp_deps="arm"
1167 iwmmxt_deps="arm"
1168 neon_deps="arm"
1169
1170 mmi_deps="mips"
1171
1172 altivec_deps="ppc"
1173 ppc4xx_deps="ppc"
1174
1175 vis_deps="sparc"
1176
1177 x86_64_suggest="cmov fast_cmov"
1178 amd3dnow_deps="mmx"
1179 amd3dnowext_deps="amd3dnow"
1180 mmx_deps="x86"
1181 mmx2_deps="mmx"
1182 sse_deps="mmx"
1183 ssse3_deps="sse"
1184
1185 aligned_stack_if_any="ppc x86"
1186 fast_64bit_if_any="alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
1187 fast_clz_if_any="alpha armv5te avr32 mips ppc x86"
1188 fast_unaligned_if_any="armv6 ppc x86"
1189
1190 need_memalign="altivec neon sse"
1191 inline_asm_deps="!tms470"
1192
1193 symver_if_any="symver_asm_label symver_gnu_asm"
1194
1195 # subsystems
1196 dct_select="rdft"
1197 mdct_select="fft"
1198 rdft_select="fft"
1199
1200 # decoders / encoders / hardware accelerators
1201 aac_decoder_select="mdct rdft"
1202 aac_encoder_select="mdct"
1203 aac_latm_decoder_select="aac_decoder aac_latm_parser"
1204 ac3_decoder_select="mdct ac3_parser"
1205 ac3_encoder_select="mdct"
1206 alac_encoder_select="lpc"
1207 amrnb_decoder_select="lsp"
1208 amrwb_decoder_select="lsp"
1209 atrac1_decoder_select="mdct"
1210 atrac3_decoder_select="mdct"
1211 binkaudio_dct_decoder_select="mdct rdft dct"
1212 binkaudio_rdft_decoder_select="mdct rdft"
1213 cavs_decoder_select="golomb"
1214 cook_decoder_select="mdct"
1215 cscd_decoder_suggest="zlib"
1216 dca_decoder_select="mdct"
1217 dnxhd_encoder_select="aandct"
1218 dxa_decoder_select="zlib"
1219 eac3_decoder_select="ac3_decoder"
1220 eamad_decoder_select="aandct"
1221 eatgq_decoder_select="aandct"
1222 eatqi_decoder_select="aandct"
1223 ffv1_decoder_select="golomb"
1224 flac_decoder_select="golomb"
1225 flac_encoder_select="golomb lpc"
1226 flashsv_decoder_select="zlib"
1227 flashsv_encoder_select="zlib"
1228 flv_decoder_select="h263_decoder"
1229 flv_encoder_select="h263_encoder"
1230 fraps_decoder_select="huffman"
1231 h261_encoder_select="aandct"
1232 h263_decoder_select="h263_parser"
1233 h263_encoder_select="aandct"
1234 h263_vaapi_hwaccel_select="vaapi h263_decoder"
1235 h263i_decoder_select="h263_decoder"
1236 h263p_encoder_select="h263_encoder"
1237 h264_decoder_select="golomb h264dsp h264pred"
1238 h264_dxva2_hwaccel_deps="dxva2api_h"
1239 h264_dxva2_hwaccel_select="dxva2 h264_decoder"
1240 h264_vaapi_hwaccel_select="vaapi"
1241 h264_vdpau_decoder_select="vdpau h264_decoder"
1242 imc_decoder_select="fft mdct"
1243 jpegls_decoder_select="golomb"
1244 jpegls_encoder_select="golomb"
1245 ljpeg_encoder_select="aandct"
1246 loco_decoder_select="golomb"
1247 mjpeg_encoder_select="aandct"
1248 mlp_decoder_select="mlp_parser"
1249 mp1float_decoder_select="dct"
1250 mp2float_decoder_select="dct"
1251 mp3adufloat_decoder_select="dct"
1252 mp3float_decoder_select="dct"
1253 mp3on4float_decoder_select="dct"
1254 mpeg1video_encoder_select="aandct"
1255 mpeg2video_encoder_select="aandct"
1256 mpeg4_decoder_select="h263_decoder mpeg4video_parser"
1257 mpeg4_encoder_select="h263_encoder"
1258 mpeg_vdpau_decoder_select="vdpau mpegvideo_decoder"
1259 mpeg1_vdpau_decoder_select="vdpau mpeg1video_decoder"
1260 mpeg2_dxva2_hwaccel_deps="dxva2api_h"
1261 mpeg2_dxva2_hwaccel_select="dxva2 mpeg2video_decoder"
1262 mpeg2_vaapi_hwaccel_select="vaapi mpeg2video_decoder"
1263 mpeg4_vaapi_hwaccel_select="vaapi mpeg4_decoder"
1264 mpeg4_vdpau_decoder_select="vdpau mpeg4_decoder"
1265 mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
1266 mpeg_xvmc_decoder_select="mpegvideo_decoder"
1267 msmpeg4v1_decoder_select="h263_decoder"
1268 msmpeg4v1_encoder_select="h263_encoder"
1269 msmpeg4v2_decoder_select="h263_decoder"
1270 msmpeg4v2_encoder_select="h263_encoder"
1271 msmpeg4v3_decoder_select="h263_decoder"
1272 msmpeg4v3_encoder_select="h263_encoder"
1273 nellymoser_decoder_select="mdct"
1274 nellymoser_encoder_select="mdct"
1275 png_decoder_select="zlib"
1276 png_encoder_select="zlib"
1277 qcelp_decoder_select="lsp"
1278 qdm2_decoder_select="mdct rdft"
1279 ra_144_encoder_select="lpc"
1280 rv10_decoder_select="h263_decoder"
1281 rv10_encoder_select="h263_encoder"
1282 rv20_decoder_select="h263_decoder"
1283 rv20_encoder_select="h263_encoder"
1284 rv30_decoder_select="golomb h264pred"
1285 rv40_decoder_select="golomb h264pred"
1286 shorten_decoder_select="golomb"
1287 sipr_decoder_select="lsp"
1288 snow_decoder_select="dwt"
1289 snow_encoder_select="aandct dwt"
1290 sonic_decoder_select="golomb"
1291 sonic_encoder_select="golomb"
1292 sonic_ls_encoder_select="golomb"
1293 svq1_encoder_select="aandct"
1294 svq3_decoder_select="golomb h264dsp h264pred"
1295 svq3_decoder_suggest="zlib"
1296 theora_decoder_select="vp3_decoder"
1297 tiff_decoder_suggest="zlib"
1298 tiff_encoder_suggest="zlib"
1299 truehd_decoder_select="mlp_decoder"
1300 tscc_decoder_select="zlib"
1301 twinvq_decoder_select="mdct lsp"
1302 vc1_decoder_select="h263_decoder"
1303 vc1_dxva2_hwaccel_deps="dxva2api_h DXVA_PictureParameters_wDecodedPictureIndex"
1304 vc1_dxva2_hwaccel_select="dxva2 vc1_decoder"
1305 vc1_vaapi_hwaccel_select="vaapi vc1_decoder"
1306 vc1_vdpau_decoder_select="vdpau vc1_decoder"
1307 vorbis_decoder_select="mdct"
1308 vorbis_encoder_select="mdct"
1309 vp6_decoder_select="huffman"
1310 vp6a_decoder_select="vp6_decoder"
1311 vp6f_decoder_select="vp6_decoder"
1312 vp8_decoder_select="h264pred"
1313 wmapro_decoder_select="mdct"
1314 wmav1_decoder_select="mdct"
1315 wmav1_encoder_select="mdct"
1316 wmav2_decoder_select="mdct"
1317 wmav2_encoder_select="mdct"
1318 wmavoice_decoder_select="lsp rdft dct mdct"
1319 wmv1_decoder_select="h263_decoder"
1320 wmv1_encoder_select="h263_encoder"
1321 wmv2_decoder_select="h263_decoder"
1322 wmv2_encoder_select="h263_encoder"
1323 wmv3_decoder_select="vc1_decoder"
1324 wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
1325 wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
1326 wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
1327 zlib_decoder_select="zlib"
1328 zlib_encoder_select="zlib"
1329 zmbv_decoder_select="zlib"
1330 zmbv_encoder_select="zlib"
1331
1332 vaapi_deps="va_va_h"
1333 vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
1334
1335 # parsers
1336 h264_parser_select="golomb h264dsp h264pred"
1337
1338 # external libraries
1339 libdirac_decoder_deps="libdirac !libschroedinger"
1340 libdirac_encoder_deps="libdirac"
1341 libfaac_encoder_deps="libfaac"
1342 libgsm_decoder_deps="libgsm"
1343 libgsm_encoder_deps="libgsm"
1344 libgsm_ms_decoder_deps="libgsm"
1345 libgsm_ms_encoder_deps="libgsm"
1346 libmp3lame_encoder_deps="libmp3lame"
1347 libopencore_amrnb_decoder_deps="libopencore_amrnb"
1348 libopencore_amrnb_encoder_deps="libopencore_amrnb"
1349 libopencore_amrwb_decoder_deps="libopencore_amrwb"
1350 libopenjpeg_decoder_deps="libopenjpeg"
1351 libschroedinger_decoder_deps="libschroedinger"
1352 libschroedinger_encoder_deps="libschroedinger"
1353 libspeex_decoder_deps="libspeex"
1354 libtheora_encoder_deps="libtheora"
1355 libvorbis_encoder_deps="libvorbis"
1356 libvpx_decoder_deps="libvpx"
1357 libvpx_encoder_deps="libvpx"
1358 libx264_encoder_deps="libx264"
1359 libxavs_encoder_deps="libxavs"
1360 libxvid_encoder_deps="libxvid"
1361
1362 # demuxers / muxers
1363 ac3_demuxer_select="ac3_parser"
1364 asf_stream_muxer_select="asf_muxer"
1365 avisynth_demuxer_deps="avisynth"
1366 dirac_demuxer_select="dirac_parser"
1367 eac3_demuxer_select="ac3_parser"
1368 flac_demuxer_select="flac_parser"
1369 ipod_muxer_select="mov_muxer"
1370 libnut_demuxer_deps="libnut"
1371 libnut_muxer_deps="libnut"
1372 matroska_audio_muxer_select="matroska_muxer"
1373 matroska_demuxer_suggest="zlib bzlib"
1374 mov_demuxer_suggest="zlib"
1375 mp3_demuxer_select="mpegaudio_parser"
1376 mp4_muxer_select="mov_muxer"
1377 mpegtsraw_demuxer_select="mpegts_demuxer"
1378 mxf_d10_muxer_select="mxf_muxer"
1379 ogg_demuxer_select="golomb"
1380 psp_muxer_select="mov_muxer"
1381 rtp_demuxer_select="sdp_demuxer"
1382 rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
1383 rtsp_demuxer_select="http_protocol rtpdec"
1384 rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol"
1385 sap_demuxer_select="sdp_demuxer"
1386 sap_muxer_select="rtp_muxer rtp_protocol"
1387 sdp_demuxer_select="rtpdec"
1388 spdif_muxer_select="aac_parser"
1389 tg2_muxer_select="mov_muxer"
1390 tgp_muxer_select="mov_muxer"
1391 w64_demuxer_deps="wav_demuxer"
1392
1393 # indevs / outdevs
1394 alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
1395 alsa_outdev_deps="alsa_asoundlib_h"
1396 bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
1397 dv1394_indev_deps="dv1394 dv_demuxer"
1398 jack_indev_deps="jack_jack_h"
1399 libdc1394_indev_deps="libdc1394"
1400 oss_indev_deps_any="soundcard_h sys_soundcard_h"
1401 oss_outdev_deps_any="soundcard_h sys_soundcard_h"
1402 v4l_indev_deps="linux_videodev_h"
1403 v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
1404 vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
1405 vfwcap_indev_extralibs="-lavicap32"
1406 x11_grab_device_indev_deps="x11grab XShmCreateImage"
1407 x11_grab_device_indev_extralibs="-lX11 -lXext -lXfixes"
1408
1409 # protocols
1410 gopher_protocol_deps="network"
1411 http_protocol_deps="network"
1412 http_protocol_select="tcp_protocol"
1413 mmsh_protocol_select="http_protocol"
1414 mmst_protocol_deps="network"
1415 rtmp_protocol_select="tcp_protocol"
1416 rtp_protocol_select="udp_protocol"
1417 tcp_protocol_deps="network"
1418 udp_protocol_deps="network"
1419
1420 # filters
1421 blackframe_filter_deps="gpl"
1422 cropdetect_filter_deps="gpl"
1423 frei0r_filter_deps="frei0r dlopen strtok_r"
1424 frei0r_src_filter_deps="frei0r dlopen strtok_r"
1425 hqdn3d_filter_deps="gpl"
1426 scale_filter_deps="swscale"
1427 ocv_filter_deps="libopencv"
1428 yadif_filter_deps="gpl"
1429
1430 # libraries
1431 avdevice_deps="avcodec avformat"
1432 avformat_deps="avcodec"
1433
1434 # programs
1435 ffmpeg_deps="avcodec avformat swscale"
1436 ffmpeg_select="buffer_filter"
1437 ffplay_deps="avcodec avformat swscale sdl"
1438 ffplay_select="rdft"
1439 ffprobe_deps="avcodec avformat"
1440 ffserver_deps="avformat ffm_muxer rtp_protocol rtsp_demuxer"
1441 ffserver_extralibs='$ldl'
1442
1443 doc_deps="texi2html"
1444
1445 # tests
1446
1447 test_deps(){
1448     suf1=$1
1449     suf2=$2
1450     shift 2
1451     for v; do
1452         dep=${v%=*}
1453         tests=${v#*=}
1454         for name in ${tests}; do
1455             eval ${name}_test_deps="'${dep}$suf1 ${dep}$suf2'"
1456         done
1457     done
1458 }
1459
1460 set_ne_test_deps(){
1461     eval ${1}_be_test_deps="bigendian"
1462     eval ${1}_le_test_deps="!bigendian"
1463 }
1464
1465 test_deps _encoder _decoder                                             \
1466     adpcm_g726=g726                                                     \
1467     adpcm_ima_qt                                                        \
1468     adpcm_ima_wav                                                       \
1469     adpcm_ms                                                            \
1470     adpcm_swf                                                           \
1471     adpcm_yamaha=adpcm_yam                                              \
1472     alac                                                                \
1473     asv1                                                                \
1474     asv2                                                                \
1475     bmp                                                                 \
1476     dnxhd="dnxhd_1080i dnxhd_720p dnxhd_720p_rd"                        \
1477     dvvideo="dv dv50"                                                   \
1478     ffv1                                                                \
1479     flac                                                                \
1480     flashsv                                                             \
1481     flv                                                                 \
1482     gif                                                                 \
1483     h261                                                                \
1484     h263="h263 h263p"                                                   \
1485     huffyuv                                                             \
1486     jpegls                                                              \
1487     mjpeg="jpg mjpeg ljpeg"                                             \
1488     mp2                                                                 \
1489     mpeg1video="mpeg mpeg1b"                                            \
1490     mpeg2video="mpeg2 mpeg2thread"                                      \
1491     mpeg4="mpeg4 mpeg4adv mpeg4nr mpeg4thread error rc"                 \
1492     msmpeg4v3=msmpeg4                                                   \
1493     msmpeg4v2                                                           \
1494     pbm=pbmpipe                                                         \
1495     pcx                                                                 \
1496     pgm="pgm pgmpipe"                                                   \
1497     png                                                                 \
1498     ppm="ppm ppmpipe"                                                   \
1499     rawvideo="rgb yuv"                                                  \
1500     roq                                                                 \
1501     rv10                                                                \
1502     rv20                                                                \
1503     sgi                                                                 \
1504     snow="snow snowll"                                                  \
1505     svq1                                                                \
1506     targa=tga                                                           \
1507     tiff                                                                \
1508     wmav1                                                               \
1509     wmav2                                                               \
1510     wmv1                                                                \
1511     wmv2                                                                \
1512
1513 test_deps _muxer _demuxer                                               \
1514     aiff                                                                \
1515     pcm_alaw=alaw                                                       \
1516     asf                                                                 \
1517     au                                                                  \
1518     avi                                                                 \
1519     dv=dv_fmt                                                           \
1520     ffm                                                                 \
1521     flv=flv_fmt                                                         \
1522     gxf                                                                 \
1523     matroska=mkv                                                        \
1524     mmf                                                                 \
1525     mov                                                                 \
1526     pcm_mulaw=mulaw                                                     \
1527     mxf                                                                 \
1528     nut                                                                 \
1529     ogg                                                                 \
1530     rawvideo=pixfmt                                                     \
1531     rm                                                                  \
1532     swf                                                                 \
1533     mpegts=ts                                                           \
1534     voc                                                                 \
1535     wav                                                                 \
1536     yuv4mpegpipe=yuv4mpeg                                               \
1537
1538 ac3_fixed_test_deps="ac3_fixed_encoder ac3_decoder rm_muxer rm_demuxer"
1539 mpg_test_deps="mpeg1system_muxer mpegps_demuxer"
1540
1541 set_ne_test_deps pixdesc
1542 set_ne_test_deps pixfmts_copy
1543 set_ne_test_deps pixfmts_crop
1544 set_ne_test_deps pixfmts_hflip
1545 set_ne_test_deps pixfmts_null
1546 set_ne_test_deps pixfmts_pad
1547 set_ne_test_deps pixfmts_scale
1548 set_ne_test_deps pixfmts_vflip
1549
1550 # default parameters
1551
1552 logfile="config.log"
1553
1554 # installation paths
1555 prefix_default="/usr/local"
1556 bindir_default='${prefix}/bin'
1557 datadir_default='${prefix}/share/ffmpeg'
1558 incdir_default='${prefix}/include'
1559 libdir_default='${prefix}/lib'
1560 mandir_default='${prefix}/share/man'
1561 shlibdir_default="$libdir_default"
1562
1563 # toolchain
1564 ar_default="ar"
1565 cc_default="gcc"
1566 cc_version=\"unknown\"
1567 host_cc_default="gcc"
1568 ln_s="ln -sf"
1569 nm_default="nm"
1570 objformat="elf"
1571 ranlib="ranlib"
1572 strip_default="strip"
1573 yasmexe="yasm"
1574 nogas=":"
1575
1576 nm_opts='-g'
1577
1578 # machine
1579 arch_default=$(uname -m)
1580 cpu="generic"
1581
1582 # OS
1583 target_os_default=$(tolower $(uname -s))
1584 host_os=$target_os_default
1585
1586 # configurable options
1587 enable avcodec
1588 enable avcore
1589 enable avdevice
1590 enable avfilter
1591 enable avformat
1592 enable avutil
1593 enable asm
1594 enable debug
1595 enable doc
1596 enable fastdiv
1597 enable ffmpeg
1598 enable ffplay
1599 enable ffprobe
1600 enable ffserver
1601 enable mpegaudio_hp
1602 enable network
1603 enable optimizations
1604 enable protocols
1605 enable static
1606 enable stripping
1607 enable swscale
1608 enable swscale_alpha
1609
1610 # build settings
1611 SHFLAGS='-shared -Wl,-soname,$$(@F)'
1612 FFSERVERLDFLAGS=-Wl,-E
1613 LIBPREF="lib"
1614 LIBSUF=".a"
1615 FULLNAME='$(NAME)$(BUILDSUF)'
1616 LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
1617 SLIBPREF="lib"
1618 SLIBSUF=".so"
1619 SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
1620 SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
1621 SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
1622 LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
1623
1624 CC_O='-o $@'
1625
1626 host_cflags='-D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112 -O3 -g -Wall'
1627 host_libs='-lm'
1628
1629 target_path='$(CURDIR)'
1630
1631 # since the object filename is not given with the -MM flag, the compiler
1632 # is only able to print the basename, and we must add the path ourselves
1633 DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
1634 DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -MM'
1635
1636 # find source path
1637 source_path="$(dirname "$0")"
1638 enable source_path_used
1639 if test -f configure; then
1640     source_path="$(pwd)"
1641     disable source_path_used
1642 else
1643     source_path="$(cd "$source_path"; pwd)"
1644     echo "$source_path" | grep -q '[[:blank:]]' &&
1645         die "Out of tree builds are impossible with whitespace in source path."
1646     test -e "$source_path/config.h" &&
1647         die "Out of tree builds are impossible with config.h in source dir."
1648 fi
1649
1650 for v in "$@"; do
1651     r=${v#*=}
1652     l=${v%"$r"}
1653     r=$(sh_quote "$r")
1654     FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
1655 done
1656
1657 find_things(){
1658     thing=$1
1659     pattern=$2
1660     file=$source_path/$3
1661     sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
1662 }
1663
1664 ENCODER_LIST=$(find_things  encoder  ENC      libavcodec/allcodecs.c)
1665 DECODER_LIST=$(find_things  decoder  DEC      libavcodec/allcodecs.c)
1666 HWACCEL_LIST=$(find_things  hwaccel  HWACCEL  libavcodec/allcodecs.c)
1667 PARSER_LIST=$(find_things   parser   PARSER   libavcodec/allcodecs.c)
1668 BSF_LIST=$(find_things      bsf      BSF      libavcodec/allcodecs.c)
1669 MUXER_LIST=$(find_things    muxer    _MUX     libavformat/allformats.c)
1670 DEMUXER_LIST=$(find_things  demuxer  DEMUX    libavformat/allformats.c)
1671 OUTDEV_LIST=$(find_things   outdev   OUTDEV   libavdevice/alldevices.c)
1672 INDEV_LIST=$(find_things    indev    _IN      libavdevice/alldevices.c)
1673 PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
1674 FILTER_LIST=$(find_things   filter   FILTER   libavfilter/allfilters.c)
1675
1676 find_tests(){
1677     map "echo ${2}\${v}_test" $(ls "$source_path"/tests/ref/$1 | grep -v '[^-a-z0-9_]')
1678 }
1679
1680 ACODEC_TESTS=$(find_tests acodec)
1681 VCODEC_TESTS=$(find_tests vsynth1)
1682 LAVF_TESTS=$(find_tests lavf)
1683 LAVFI_TESTS=$(find_tests lavfi)
1684 SEEK_TESTS=$(find_tests seek seek_)
1685
1686 pcm_test_deps=$(map 'echo ${v%_*}_decoder $v' $(filter pcm_* $ENCODER_LIST))
1687
1688 for n in $COMPONENT_LIST; do
1689     v=$(toupper ${n%s})_LIST
1690     eval enable \$$v
1691     eval ${n}_if_any="\$$v"
1692 done
1693
1694 enable $ARCH_EXT_LIST $ACODEC_TESTS $VCODEC_TESTS $LAVF_TESTS $LAVFI_TESTS $SEEK_TESTS
1695
1696 die_unknown(){
1697     echo "Unknown option \"$1\"."
1698     echo "See $0 --help for available options."
1699     exit 1
1700 }
1701
1702 show_list() {
1703     suffix=_$1
1704     shift
1705     echo $* | sed s/$suffix//g | tr ' ' '\n' | sort | pr -3 -t
1706     exit 0
1707 }
1708
1709 for opt do
1710     optval="${opt#*=}"
1711     case "$opt" in
1712     --extra-ldflags=*) add_ldflags $optval
1713     ;;
1714     --extra-libs=*) add_extralibs $optval
1715     ;;
1716     --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
1717     ;;
1718     --enable-debug=*) debuglevel="$optval"
1719     ;;
1720     --disable-everything)
1721     map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
1722     ;;
1723     --enable-*=*|--disable-*=*)
1724     eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
1725     is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
1726     eval list=\$$(toupper $thing)_LIST
1727     name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
1728     $action $(filter "$name" $list)
1729     ;;
1730     --enable-?*|--disable-?*)
1731     eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
1732     if is_in $option $COMPONENT_LIST; then
1733         test $action = disable && action=unset
1734         eval $action \$$(toupper ${option%s})_LIST
1735     elif is_in $option $CMDLINE_SELECT; then
1736         $action $option
1737     else
1738         die_unknown $opt
1739     fi
1740     ;;
1741     --list-*)
1742         NAME="${opt#--list-}"
1743         is_in $NAME $COMPONENT_LIST || die_unknown $opt
1744         NAME=${NAME%s}
1745         eval show_list $NAME \$$(toupper $NAME)_LIST
1746     ;;
1747     --help|-h) show_help
1748     ;;
1749     *)
1750     optname="${opt%%=*}"
1751     optname="${optname#--}"
1752     optname=$(echo "$optname" | sed 's/-/_/g')
1753     if is_in $optname $CMDLINE_SET; then
1754         eval $optname='$optval'
1755     elif is_in $optname $CMDLINE_APPEND; then
1756         append $optname "$optval"
1757     else
1758          die_unknown $opt
1759     fi
1760     ;;
1761     esac
1762 done
1763
1764 disabled logging && logfile=/dev/null
1765
1766 echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
1767 set >> $logfile
1768
1769 test -n "$cross_prefix" && enable cross_compile
1770
1771 if enabled cross_compile; then
1772     test -n "$arch" && test -n "$target_os" ||
1773         die "Must specify target arch and OS when cross-compiling"
1774 fi
1775
1776 set_default arch target_os
1777
1778 ar_default="${cross_prefix}${ar_default}"
1779 cc_default="${cross_prefix}${cc_default}"
1780 nm_default="${cross_prefix}${nm_default}"
1781 ranlib="${cross_prefix}${ranlib}"
1782 strip_default="${cross_prefix}${strip_default}"
1783
1784 sysinclude_default="${sysroot}/usr/include"
1785
1786 set_default cc nm strip sysinclude
1787 enabled cross_compile || host_cc_default=$cc
1788 set_default host_cc
1789
1790 exesuf() {
1791     case $1 in
1792         mingw32*|cygwin*|*-dos|freedos|opendos|os/2*) echo .exe ;;
1793     esac
1794 }
1795
1796 EXESUF=$(exesuf $target_os)
1797 HOSTEXESUF=$(exesuf $host_os)
1798
1799 # set temporary file name
1800 : ${TMPDIR:=$TEMPDIR}
1801 : ${TMPDIR:=$TMP}
1802 : ${TMPDIR:=/tmp}
1803
1804 if ! check_cmd mktemp -u XXXXXX; then
1805     # simple replacement for missing mktemp
1806     # NOT SAFE FOR GENERAL USE
1807     mktemp(){
1808         echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
1809     }
1810 fi
1811
1812 tmpfile(){
1813     tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
1814         (set -C; exec > $tmp) 2>/dev/null ||
1815         die "Unable to create temporary file in $TMPDIR."
1816     append TMPFILES $tmp
1817     eval $1=$tmp
1818 }
1819
1820 trap 'rm -f -- $TMPFILES' EXIT
1821
1822 tmpfile TMPC  .c
1823 tmpfile TMPE  $EXESUF
1824 tmpfile TMPH  .h
1825 tmpfile TMPO  .o
1826 tmpfile TMPS  .S
1827 tmpfile TMPV  .ver
1828 tmpfile TMPSH .sh
1829 tmpfile TMPASM .asm
1830
1831 unset -f mktemp
1832
1833 chmod +x $TMPE
1834
1835 # make sure we can execute files in $TMPDIR
1836 cat > $TMPSH 2>> $logfile <<EOF
1837 #! /bin/sh
1838 EOF
1839 chmod +x $TMPSH >> $logfile 2>&1
1840 if ! $TMPSH >> $logfile 2>&1; then
1841     cat <<EOF
1842 Unable to create and execute files in $TMPDIR.  Set the TMPDIR environment
1843 variable to another directory and make sure that it is not mounted noexec.
1844 EOF
1845     die "Sanity test failed."
1846 fi
1847
1848 filter_cflags=echo
1849 filter_cppflags=echo
1850 filter_asflags=echo
1851
1852 if   $cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
1853     cc_type=llvm_gcc
1854     cc_version=__VERSION__
1855     gcc_extra_ver=$(expr "$($cc --version | head -n1)" : '.*\((.*)\)')
1856     cc_ident="llvm-gcc $($cc -dumpversion) $gcc_extra_ver"
1857     CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
1858     AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
1859     speed_cflags='-O3'
1860     size_cflags='-Os'
1861 elif $cc -v 2>&1 | grep -qi ^gcc; then
1862     cc_type=gcc
1863     cc_version=__VERSION__
1864     gcc_extra_ver=$(expr "$($cc --version | head -n1)" : '.*\((.*)\)')
1865     cc_ident="gcc $($cc -dumpversion) $gcc_extra_ver"
1866     if ! $cc -dumpversion | grep -q '^2\.'; then
1867         CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
1868         AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
1869     fi
1870     speed_cflags='-O3'
1871     size_cflags='-Os'
1872 elif $cc --version 2>/dev/null | grep -q Intel; then
1873     cc_type=icc
1874     cc_version="AV_STRINGIFY(__INTEL_COMPILER)"
1875     cc_ident=$($cc --version | head -n1)
1876     icc_version=$($cc -dumpversion)
1877     CC_DEPFLAGS='-MMD'
1878     AS_DEPFLAGS='-MMD'
1879     speed_cflags='-O3'
1880     size_cflags='-Os'
1881     noopt_cflags='-O1'
1882 elif $cc -v 2>&1 | grep -q xlc; then
1883     cc_type=xlc
1884     cc_version="AV_STRINGIFY(__IBMC__)"
1885     cc_ident=$($cc -qversion 2>/dev/null | head -n1)
1886     speed_cflags='-O5'
1887     size_cflags='-O5 -qcompact'
1888 elif $cc -V 2>/dev/null | grep -q Compaq; then
1889     cc_type=ccc
1890     cc_version="AV_STRINGIFY(__DECC_VER)"
1891     cc_ident=$($cc -V | head -n1 | cut -d' ' -f1-3)
1892     DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -M'
1893     debuglevel=3
1894     add_ldflags -Wl,-z,now # calls to libots crash without this
1895     speed_cflags='-fast'
1896     size_cflags='-O1'
1897 elif $cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
1898     test -d "$sysroot" || die "No valid sysroot specified."
1899     cc_type=armcc
1900     cc_version="AV_STRINGIFY(__ARMCC_VERSION)"
1901     cc_ident=$($cc --vsn | head -n1)
1902     armcc_conf="$PWD/armcc.conf"
1903     $cc --arm_linux_configure                 \
1904         --arm_linux_config_file="$armcc_conf" \
1905         --configure_sysroot="$sysroot"        \
1906         --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
1907         die "Error creating armcc configuration file."
1908     $cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
1909     cc="$cc --arm_linux_config_file=$armcc_conf --translate_gcc"
1910     as_default="${cross_prefix}gcc"
1911     CC_DEPFLAGS='-MMD'
1912     AS_DEPFLAGS='-MMD'
1913     speed_cflags='-O3'
1914     size_cflags='-Os'
1915     filter_asflags="filter_out -W${armcc_opt}*"
1916 elif $cc -version 2>/dev/null | grep -q TMS470; then
1917     cc_type=tms470
1918     cc_version="AV_STRINGIFY(__TI_COMPILER_VERSION__)"
1919     cc_ident=$($cc -version | head -n1 | tr -s ' ')
1920     cc="$cc --gcc --abi=eabi -eo=.o -mc -me"
1921     CC_O='-fr=$(@D)'
1922     as_default="${cross_prefix}gcc"
1923     ld_default="${cross_prefix}gcc"
1924     TMPO=$(basename $TMPC .c).o
1925     append TMPFILES $TMPO
1926     add_cflags -D__gnuc_va_list=va_list -D__USER_LABEL_PREFIX__=
1927     CC_DEPFLAGS='-ppa -ppd=$(@:.o=.d)'
1928     AS_DEPFLAGS='-MMD'
1929     speed_cflags='-O3 -mf=5'
1930     size_cflags='-O3 -mf=2'
1931     filter_cflags=tms470_flags
1932     tms470_flags(){
1933         for flag; do
1934             case $flag in
1935                 -march=*|-mcpu=*)
1936                     case "${flag#*=}" in
1937                         armv7-a|cortex-a*)      echo -mv=7a8 ;;
1938                         armv7-r|cortex-r*)      echo -mv=7r4 ;;
1939                         armv7-m|cortex-m*)      echo -mv=7m3 ;;
1940                         armv6*|arm11*)          echo -mv=6   ;;
1941                         armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
1942                                                 echo -mv=5e  ;;
1943                         armv4*|arm7*|arm9[24]*) echo -mv=4   ;;
1944                     esac
1945                     ;;
1946                 -mfpu=neon)     echo --float_support=vfpv3 --neon ;;
1947                 -mfpu=vfp)      echo --float_support=vfpv2        ;;
1948                 -mfpu=vfpv3)    echo --float_support=vfpv3        ;;
1949                 -msoft-float)   echo --float_support=vfplib       ;;
1950                 -O[0-3]|-mf=*)  echo $flag                        ;;
1951                 -g)             echo -g -mn                       ;;
1952                 -pds=*)         echo $flag                        ;;
1953             esac
1954         done
1955     }
1956 elif $cc -v 2>&1 | grep -q clang; then
1957     cc_type=clang
1958     $cc -dM -E $TMPC | grep -q __clang_version__ &&
1959         cc_version=__clang_version__ || cc_version=__VERSION__
1960     cc_ident=$($cc --version | head -n1)
1961     CC_DEPFLAGS='-MMD'
1962     AS_DEPFLAGS='-MMD'
1963     speed_cflags='-O3'
1964     size_cflags='-Os'
1965 elif $cc -V 2>&1 | grep -q Sun; then
1966     cc_type=suncc
1967     cc_version="AV_STRINGIFY(__SUNPRO_C)"
1968     cc_ident=$($cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
1969     DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
1970     DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -xM1'
1971     speed_cflags='-O5'
1972     size_cflags='-O5 -xspace'
1973     filter_cflags=suncc_flags
1974     suncc_flags(){
1975         for flag; do
1976             case $flag in
1977                 -march=*|-mcpu=*)
1978                     case "${flag#*=}" in
1979                         native)                   echo -xtarget=native       ;;
1980                         v9|niagara)               echo -xarch=sparc          ;;
1981                         ultrasparc)               echo -xarch=sparcvis       ;;
1982                         ultrasparc3|niagara2)     echo -xarch=sparcvis2      ;;
1983                         i586|pentium)             echo -xchip=pentium        ;;
1984                         i686|pentiumpro|pentium2) echo -xtarget=pentium_pro  ;;
1985                         pentium3*|c3-2)           echo -xtarget=pentium3     ;;
1986                         pentium-m)          echo -xarch=sse2 -xchip=pentium3 ;;
1987                         pentium4*)          echo -xtarget=pentium4           ;;
1988                         prescott|nocona)    echo -xarch=sse3 -xchip=pentium4 ;;
1989                         *-sse3)             echo -xarch=sse3                 ;;
1990                         core2)              echo -xarch=ssse3 -xchip=core2   ;;
1991                         amdfam10|barcelona)       echo -xarch=sse4_1         ;;
1992                         athlon-4|athlon-[mx]p)    echo -xarch=ssea           ;;
1993                         k8|opteron|athlon64|athlon-fx)
1994                                                   echo -xarch=sse2a          ;;
1995                         athlon*)                  echo -xarch=pentium_proa   ;;
1996                     esac
1997                     ;;
1998                 -std=c99)             echo -xc99              ;;
1999                 -fomit-frame-pointer) echo -xregs=frameptr    ;;
2000                 -fPIC)                echo -KPIC -xcode=pic32 ;;
2001                 -W*,*)                echo $flag              ;;
2002                 -f*-*|-W*)                                    ;;
2003                 *)                    echo $flag              ;;
2004             esac
2005         done
2006     }
2007 elif $cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
2008     cc_type=pathscale
2009     cc_version=__PATHSCALE__
2010     cc_ident=$($cc -v 2>&1 | head -n1 | tr -d :)
2011     CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
2012     AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
2013     speed_cflags='-O2'
2014     size_cflags='-Os'
2015 elif $cc -v 2>&1 | grep -q Open64; then
2016     cc_type=open64
2017     cc_version=__OPEN64__
2018     cc_ident=$($cc -v 2>&1 | head -n1 | tr -d :)
2019     CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
2020     AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
2021     speed_cflags='-O2'
2022     size_cflags='-Os'
2023 fi
2024
2025 test -n "$cc_type" && enable $cc_type ||
2026     warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
2027
2028 : ${as_default:=$cc}
2029 : ${dep_cc_default:=$cc}
2030 : ${ld_default:=$cc}
2031 set_default ar as dep_cc ld
2032
2033 test -n "$CC_DEPFLAGS" || CCDEP=$DEPEND_CMD
2034 test -n "$AS_DEPFLAGS" || ASDEP=$DEPEND_CMD
2035
2036 add_cflags $extra_cflags
2037 add_asflags $extra_cflags
2038
2039 if test -n "$sysroot"; then
2040     case "$cc_type" in
2041         gcc|llvm_gcc)
2042             add_cppflags --sysroot="$sysroot"
2043             add_ldflags --sysroot="$sysroot"
2044         ;;
2045         tms470)
2046             add_cppflags -I"$sysinclude"
2047             add_ldflags  --sysroot="$sysroot"
2048         ;;
2049         clang)
2050             add_cppflags -isysroot "$sysroot"
2051             add_ldflags -isysroot "$sysroot"
2052         ;;
2053     esac
2054 fi
2055
2056 if test "$cpu" = host; then
2057     enabled cross_compile && die "--cpu=host makes no sense when cross-compiling."
2058
2059     case "$cc_type" in
2060         gcc|llvm_gcc)
2061             check_native(){
2062                 $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
2063                 sed -n "/$1=/{
2064                             s/.*$1=\\([^ ]*\\).*/\\1/
2065                             p
2066                             q
2067                         }" $TMPE
2068             }
2069             cpu=$(check_native -march || check_native -mcpu)
2070         ;;
2071     esac
2072
2073     test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc"
2074 fi
2075
2076 # Deal with common $arch aliases
2077 case "$arch" in
2078     arm*)
2079         arch="arm"
2080     ;;
2081     mips|mipsel|IP*)
2082         arch="mips"
2083     ;;
2084     mips64*)
2085         arch="mips"
2086         subarch="mips64"
2087     ;;
2088     parisc|hppa)
2089         arch="parisc"
2090     ;;
2091     parisc64|hppa64)
2092         arch="parisc"
2093         subarch="parisc64"
2094     ;;
2095     "Power Macintosh"|ppc|powerpc)
2096         arch="ppc"
2097     ;;
2098     ppc64|powerpc64)
2099         arch="ppc"
2100         subarch="ppc64"
2101     ;;
2102     s390|s390x)
2103         arch="s390"
2104     ;;
2105     sh4|sh)
2106         arch="sh4"
2107     ;;
2108     sun4u|sparc64)
2109         arch="sparc"
2110         subarch="sparc64"
2111     ;;
2112     i[3-6]86|i86pc|BePC|x86_64|amd64)
2113         arch="x86"
2114     ;;
2115 esac
2116
2117 is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
2118 enable $arch
2119
2120 # Add processor-specific flags
2121 if test "$cpu" = generic; then
2122     : do nothing
2123 elif enabled ppc; then
2124
2125     case $(tolower $cpu) in
2126         601|ppc601|powerpc601)
2127             cpuflags="-mcpu=601"
2128             disable altivec
2129         ;;
2130         603*|ppc603*|powerpc603*)
2131             cpuflags="-mcpu=603"
2132             disable altivec
2133         ;;
2134         604*|ppc604*|powerpc604*)
2135             cpuflags="-mcpu=604"
2136             disable altivec
2137         ;;
2138         g3|75*|ppc75*|powerpc75*)
2139             cpuflags="-mcpu=750 -mpowerpc-gfxopt"
2140             disable altivec
2141         ;;
2142         g4|745*|ppc745*|powerpc745*)
2143             cpuflags="-mcpu=7450 -mpowerpc-gfxopt"
2144         ;;
2145         74*|ppc74*|powerpc74*)
2146             cpuflags="-mcpu=7400 -mpowerpc-gfxopt"
2147         ;;
2148         g5|970|ppc970|powerpc970|power4*)
2149             cpuflags="-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
2150         ;;
2151         cell)
2152             cpuflags="-mcpu=cell"
2153             enable ldbrx
2154         ;;
2155         e500v2)
2156             cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
2157             disable altivec
2158         ;;
2159         e500)
2160             cpuflags="-mcpu=8540 -mhard-float"
2161             disable altivec
2162         ;;
2163     esac
2164
2165 elif enabled x86; then
2166
2167     case $cpu in
2168         i[345]86|pentium)
2169             cpuflags="-march=$cpu"
2170             disable mmx
2171         ;;
2172         # targets that do NOT support conditional mov (cmov)
2173         pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
2174             cpuflags="-march=$cpu"
2175             disable cmov
2176         ;;
2177         # targets that do support conditional mov (cmov)
2178         i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2|amdfam10|barcelona|atom)
2179             cpuflags="-march=$cpu"
2180             enable cmov
2181             enable fast_cmov
2182         ;;
2183         # targets that do support conditional mov but on which it's slow
2184         pentium4|pentium4m|prescott|nocona)
2185             cpuflags="-march=$cpu"
2186             enable cmov
2187             disable fast_cmov
2188         ;;
2189     esac
2190
2191 elif enabled sparc; then
2192
2193     case $cpu in
2194         niagara)
2195             cpuflags="-mcpu=$cpu"
2196             disable vis
2197         ;;
2198         sparc64)
2199             cpuflags="-mcpu=v9"
2200         ;;
2201     esac
2202
2203 elif enabled arm; then
2204
2205     case $cpu in
2206         armv*)
2207             cpuflags="-march=$cpu"
2208             subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
2209         ;;
2210         *)
2211             cpuflags="-mcpu=$cpu"
2212             case $cpu in
2213                 cortex-a*)                               subarch=armv7a  ;;
2214                 cortex-r*)                               subarch=armv7r  ;;
2215                 cortex-m*)                               subarch=armv7m  ;;
2216                 arm11*)                                  subarch=armv6   ;;
2217                 arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
2218                 armv4*|arm7*|arm9[24]*)                  subarch=armv4   ;;
2219             esac
2220         ;;
2221     esac
2222
2223 elif enabled alpha; then
2224
2225     enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
2226
2227 elif enabled bfin; then
2228
2229     cpuflags="-mcpu=$cpu"
2230
2231 elif enabled mips; then
2232
2233     cpuflags="-march=$cpu"
2234
2235 elif enabled avr32; then
2236
2237     case $cpu in
2238         ap7[02]0[0-2])
2239             subarch="avr32_ap"
2240             cpuflags="-mpart=$cpu"
2241         ;;
2242         ap)
2243             subarch="avr32_ap"
2244             cpuflags="-march=$cpu"
2245         ;;
2246         uc3[ab]*)
2247             subarch="avr32_uc"
2248             cpuflags="-mcpu=$cpu"
2249         ;;
2250         uc)
2251             subarch="avr32_uc"
2252             cpuflags="-march=$cpu"
2253         ;;
2254     esac
2255
2256 fi
2257
2258 add_cflags $cpuflags
2259 add_asflags $cpuflags
2260
2261 # compiler sanity check
2262 check_exec <<EOF
2263 int main(void){ return 0; }
2264 EOF
2265 if test "$?" != 0; then
2266     echo "$cc is unable to create an executable file."
2267     if test -z "$cross_prefix" && ! enabled cross_compile ; then
2268         echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
2269         echo "Only do this if you know what cross compiling means."
2270     fi
2271     die "C compiler test failed."
2272 fi
2273
2274 add_cppflags -D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112
2275 check_cflags -std=c99
2276 check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
2277 #include <stdlib.h>
2278 EOF
2279 check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
2280 #include <stdlib.h>
2281 EOF
2282
2283 check_host_cflags -std=c99
2284
2285 case "$arch" in
2286     alpha|ia64|mips|parisc|sparc)
2287         spic=$shared
2288     ;;
2289     x86)
2290         subarch="x86_32"
2291         check_cc <<EOF && subarch="x86_64"
2292         int test[(int)sizeof(char*) - 7];
2293 EOF
2294         if test "$subarch" = "x86_64"; then
2295             spic=$shared
2296         fi
2297     ;;
2298 esac
2299
2300 enable $subarch
2301 enabled spic && enable pic
2302
2303 # OS specific
2304 case $target_os in
2305     haiku)
2306         prefix_default="/boot/common"
2307         network_extralibs="-lnetwork"
2308         ;;
2309     sunos)
2310         FFSERVERLDFLAGS=""
2311         SHFLAGS='-shared -Wl,-h,$$(@F)'
2312         enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
2313         network_extralibs="-lsocket -lnsl"
2314         add_cppflags -D__EXTENSIONS__
2315         nm_opts='-P -g'
2316         ;;
2317     netbsd)
2318         disable symver
2319         oss_indev_extralibs="-lossaudio"
2320         oss_outdev_extralibs="-lossaudio"
2321         add_cppflags -D_XOPEN_SOURCE=600
2322         ;;
2323     openbsd)
2324         enable malloc_aligned
2325         # On OpenBSD 4.5. the compiler does not use PIC unless
2326         # explicitly using -fPIC. FFmpeg builds fine without PIC,
2327         # however the generated executable will not do anything
2328         # (simply quits with exit-code 1, no crash, no output).
2329         # Thus explicitly enable PIC here.
2330         enable pic
2331         disable symver
2332         SHFLAGS='-shared'
2333         oss_indev_extralibs="-lossaudio"
2334         oss_outdev_extralibs="-lossaudio"
2335         ;;
2336     dragonfly)
2337         enable malloc_aligned
2338         disable symver
2339         ;;
2340     freebsd)
2341         enable malloc_aligned
2342         ;;
2343     bsd/os)
2344         add_extralibs -lpoll -lgnugetopt
2345         strip="strip -d"
2346         ;;
2347     darwin)
2348         enable malloc_aligned
2349         gas="gas-preprocessor.pl $cc"
2350         enabled ppc && add_asflags -force_cpusubtype_ALL
2351         SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR) -Wl,-read_only_relocs,suppress'
2352         strip="${strip} -x"
2353         add_ldflags -Wl,-dynamic,-search_paths_first
2354         SLIBSUF=".dylib"
2355         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
2356         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
2357         FFSERVERLDFLAGS=-Wl,-bind_at_load
2358         objformat="macho"
2359         enabled x86_64 && objformat="macho64"
2360         enabled_any pic shared ||
2361             { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
2362         ;;
2363     mingw32*)
2364         if test $target_os = "mingw32ce"; then
2365             disable network
2366         else
2367             target_os=mingw32
2368         fi
2369         LIBTARGET=i386
2370         if enabled x86_64; then
2371             enable malloc_aligned
2372             LIBTARGET=x64
2373         elif enabled arm; then
2374             LIBTARGET=arm
2375         fi
2376         shlibdir_default="$bindir_default"
2377         disable ffserver
2378         SLIBPREF=""
2379         SLIBSUF=".dll"
2380         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
2381         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
2382         SLIB_EXTRA_CMD='-lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)'
2383         SLIB_INSTALL_EXTRA_CMD='-install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"; \
2384             install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)"; \
2385             install -d "$(LIBDIR)"; \
2386             install -m 644 $(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) "$(LIBDIR)/lib$(SLIBNAME:$(SLIBSUF)=.dll.a)"'
2387         SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"'
2388         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'
2389         objformat="win32"
2390         enable dos_paths
2391         check_cflags -fno-common
2392         check_cpp_condition _mingw.h "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) \
2393                                       || (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
2394                 die "ERROR: MinGW runtime version must be >= 3.15."
2395         ;;
2396     cygwin*)
2397         target_os=cygwin
2398         shlibdir_default="$bindir_default"
2399         SLIBPREF="cyg"
2400         SLIBSUF=".dll"
2401         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
2402         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
2403         SHFLAGS='-shared -Wl,--enable-auto-image-base'
2404         objformat="win32"
2405         enable dos_paths
2406         check_cflags -fno-common
2407         ;;
2408     *-dos|freedos|opendos)
2409         disable ffplay ffserver
2410         disable $INDEV_LIST $OUTDEV_LIST
2411         network_extralibs="-lsocket"
2412         objformat="coff"
2413         enable dos_paths
2414         ;;
2415     linux)
2416         enable dv1394
2417         ;;
2418     irix*)
2419         target_os=irix
2420         ranlib="echo ignoring ranlib"
2421         ;;
2422     os/2*)
2423         strip="lxlite"
2424         ln_s="cp -f"
2425         add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
2426         SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
2427         FFSERVERLDFLAGS=""
2428         LIBSUF="_s.a"
2429         SLIBPREF=""
2430         SLIBSUF=".dll"
2431         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
2432         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
2433         SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
2434           echo PROTMODE >> $(SUBDIR)$(NAME).def; \
2435           echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
2436           echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
2437           echo EXPORTS >> $(SUBDIR)$(NAME).def; \
2438           emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
2439         SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
2440           emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
2441         SLIB_INSTALL_EXTRA_CMD='install -m 644 $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib "$(LIBDIR)"'
2442         SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.a "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.lib'
2443         enable dos_paths
2444         ;;
2445     gnu/kfreebsd)
2446         ;;
2447     gnu)
2448         ;;
2449     none)
2450         ;;
2451     *)
2452         die "Unknown OS '$target_os'."
2453         ;;
2454 esac
2455
2456 echo "config:$arch:$subarch:$cpu:$target_os:$cc_ident:$FFMPEG_CONFIGURATION" >config.fate
2457
2458 check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
2459
2460 set_default $PATHS_LIST
2461
2462 # we need to build at least one lib type
2463 if ! enabled_any static shared; then
2464     cat <<EOF
2465 At least one library type must be built.
2466 Specify --enable-static to build the static libraries or --enable-shared to
2467 build the shared libraries as well. To only build the shared libraries specify
2468 --disable-static in addition to --enable-shared.
2469 EOF
2470     exit 1;
2471 fi
2472
2473 disabled static && LIBNAME=""
2474
2475 die_license_disabled() {
2476     enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
2477 }
2478
2479 die_license_disabled gpl libx264
2480 die_license_disabled gpl libxavs
2481 die_license_disabled gpl libxvid
2482 die_license_disabled gpl postproc
2483 die_license_disabled gpl x11grab
2484
2485 die_license_disabled nonfree libfaac
2486
2487 die_license_disabled version3 libopencore_amrnb
2488 die_license_disabled version3 libopencore_amrwb
2489
2490 enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
2491
2492 check_deps $ARCH_EXT_LIST
2493
2494 disabled optimizations || check_cflags -fomit-frame-pointer
2495
2496 enable_pic() {
2497     enable pic
2498     add_cppflags -DPIC
2499     add_cflags   -fPIC
2500     add_asflags  -fPIC
2501 }
2502
2503 enabled pic && enable_pic
2504
2505 check_cc <<EOF || die "Symbol mangling check failed."
2506 int ff_extern;
2507 EOF
2508 sym=$($nm $nm_opts $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
2509 extern_prefix=${sym%%ff_extern*}
2510
2511 check_cc <<EOF && enable inline_asm
2512 void foo(void) { __asm__ volatile ("" ::); }
2513 EOF
2514
2515 _restrict=
2516 for restrict_keyword in restrict __restrict__ __restrict; do
2517     check_cc <<EOF && _restrict=$restrict_keyword && break
2518 void foo(char * $restrict_keyword p);
2519 EOF
2520 done
2521
2522 check_cc <<EOF && enable attribute_packed
2523 struct { int x; } __attribute__((packed)) x;
2524 EOF
2525
2526 check_cc <<EOF && enable attribute_may_alias
2527 union { int x; } __attribute__((may_alias)) x;
2528 EOF
2529
2530 check_cc <<EOF || die "endian test failed"
2531 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
2532 EOF
2533 od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
2534
2535 if enabled alpha; then
2536
2537     check_cflags -mieee
2538
2539 elif enabled arm; then
2540
2541     check_cflags -marm
2542     nogas=die
2543
2544     if     check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
2545         enable vfp_args
2546     elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
2547         case "${cross_prefix:-$cc}" in
2548             *hardfloat*)         enable vfp_args;   fpabi=vfp ;;
2549             *) check_ld <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
2550 __asm__ (".eabi_attribute 28, 1");
2551 int main(void) { return 0; }
2552 EOF
2553         esac
2554         warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
2555     fi
2556
2557     # We have to check if pld is a nop and disable it.
2558     check_asm pld '"pld [r0]"'
2559
2560     enabled armv5te && check_asm armv5te '"qadd r0, r0, r0"'
2561     enabled armv6   && check_asm armv6   '"sadd16 r0, r0, r0"'
2562     enabled armv6t2 && check_asm armv6t2 '"movt r0, #0"'
2563     enabled armvfp  && check_asm armvfp  '"fadds s0, s0, s0"'
2564     enabled iwmmxt  && check_asm iwmmxt  '"wunpckelub wr6, wr4"'
2565     enabled neon    && check_asm neon    '"vadd.i16 q0, q0, q0"'
2566
2567     enabled_all armv6t2 shared !pic && enable_pic
2568
2569 elif enabled mips; then
2570
2571     check_asm loongson '"dmult.g $1, $2, $3"'
2572     enabled mmi     && check_asm mmi     '"lq $2, 0($2)"'
2573
2574 elif enabled ppc; then
2575
2576     enable local_aligned_8 local_aligned_16
2577
2578     check_asm dcbzl     '"dcbzl 0, %0" :: "r"(0)'
2579     check_asm ibm_asm   '"add 0, 0, 0"'
2580     check_asm ppc4xx    '"maclhw r10, r11, r12"'
2581     check_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
2582
2583     # AltiVec flags: The FSF version of GCC differs from the Apple version
2584     if enabled altivec; then
2585         nogas=warn
2586         check_cflags -maltivec -mabi=altivec &&
2587         { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
2588         check_cflags -faltivec
2589
2590         # check if our compiler supports Motorola AltiVec C API
2591         check_cc <<EOF || disable altivec
2592 $inc_altivec_h
2593 int main(void) {
2594     vector signed int v1, v2, v3;
2595     v1 = vec_add(v2,v3);
2596     return 0;
2597 }
2598 EOF
2599
2600         # check if our compiler supports braces for vector declarations
2601         check_cc <<EOF || die "You need a compiler that supports {} in AltiVec vector declarations."
2602 $inc_altivec_h
2603 int main (void) { (vector int) {1}; return 0; }
2604 EOF
2605     fi
2606
2607 elif enabled sparc; then
2608
2609     enabled vis && check_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc &&
2610         add_cflags -mcpu=ultrasparc -mtune=ultrasparc
2611
2612 elif enabled x86; then
2613
2614     enable local_aligned_8 local_aligned_16
2615
2616     # check whether EBP is available on x86
2617     # As 'i' is stored on the stack, this program will crash
2618     # if the base pointer is used to access it because the
2619     # base pointer is cleared in the inline assembly code.
2620     check_exec_crash <<EOF && enable ebp_available
2621     volatile int i=0;
2622     __asm__ volatile (
2623         "xorl %%ebp, %%ebp"
2624     ::: "%ebp");
2625     return i;
2626 EOF
2627
2628     # check whether EBX is available on x86
2629     check_asm ebx_available '""::"b"(0)' &&
2630         check_asm ebx_available '"":::"%ebx"'
2631
2632     # check whether xmm clobbers are supported
2633     check_asm xmm_clobbers '"":::"%xmm0"'
2634
2635     # check whether more than 10 operands are supported
2636     check_cc <<EOF && enable ten_operands
2637 int main(void) {
2638     int x=0;
2639     __asm__ volatile(
2640         ""
2641         :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2642     );
2643     return 0;
2644 }
2645 EOF
2646
2647     # check whether binutils is new enough to compile SSSE3/MMX2
2648     enabled ssse3 && check_asm ssse3 '"pabsw %xmm0, %xmm0"'
2649     enabled mmx2  && check_asm mmx2  '"pmaxub %mm0, %mm1"'
2650
2651     check_asm bswap '"bswap %%eax" ::: "%eax"'
2652
2653     if ! disabled_any asm mmx yasm; then
2654         if check_cmd $yasmexe --version; then
2655             enabled x86_64 && yasm_extra="-m amd64"
2656             yasm_debug="-g dwarf2"
2657         elif check_cmd nasm -v; then
2658             yasmexe=nasm
2659             yasm_debug="-g -F dwarf"
2660             enabled x86_64 && test "$objformat" = elf && objformat=elf64
2661         fi
2662
2663         YASMFLAGS="-f $objformat $yasm_extra"
2664         enabled pic               && append YASMFLAGS "-DPIC"
2665         test -n "$extern_prefix"  && append YASMFLAGS "-DPREFIX"
2666         case "$objformat" in
2667             elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
2668         esac
2669
2670         check_yasm "pabsw xmm0, xmm0" && enable yasm ||
2671             die "yasm not found, use --disable-yasm for a crippled build"
2672     fi
2673
2674     case "$cpu" in
2675         athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
2676             disable fast_clz
2677         ;;
2678     esac
2679
2680 fi
2681
2682 if enabled asm; then
2683     as=${gas:=$as}
2684     check_asm gnu_as '".macro m n\n\\n:.int 0\n.endm\nm x"' ||
2685         $nogas "GNU assembler not found, install gas-preprocessor"
2686 fi
2687
2688 if check_func dlopen; then
2689     ldl=
2690 elif check_func dlopen -ldl; then
2691     ldl=-ldl
2692 fi
2693
2694 if enabled network; then
2695     check_type "sys/types.h sys/socket.h" socklen_t
2696     check_type netdb.h "struct addrinfo"
2697     check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
2698     check_type netinet/in.h "struct sockaddr_in6"
2699     check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
2700     check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
2701     # Prefer arpa/inet.h over winsock2
2702     if check_header arpa/inet.h ; then
2703         check_func closesocket
2704     elif check_header winsock2.h ; then
2705         check_func_headers winsock2.h closesocket -lws2 && \
2706             network_extralibs="-lws2" || \
2707         { check_func_headers winsock2.h closesocket -lws2_32 && \
2708             network_extralibs="-lws2_32"; }
2709         check_type ws2tcpip.h socklen_t
2710         check_type ws2tcpip.h "struct addrinfo"
2711         check_type ws2tcpip.h "struct ipv6_mreq"
2712         check_type ws2tcpip.h "struct sockaddr_in6"
2713         check_type ws2tcpip.h "struct sockaddr_storage"
2714         check_struct winsock2.h "struct sockaddr" sa_len
2715     else
2716         disable network
2717     fi
2718 fi
2719
2720 # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
2721 check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
2722
2723 check_func  fcntl
2724 check_func  fork
2725 check_func  getaddrinfo $network_extralibs
2726 check_func  gethrtime
2727 check_func  getrusage
2728 check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
2729 check_func  inet_aton $network_extralibs
2730 check_func  isatty
2731 check_func  ${malloc_prefix}memalign            && enable memalign
2732 check_func  mkstemp
2733 check_func  mmap
2734 check_func  ${malloc_prefix}posix_memalign      && enable posix_memalign
2735 check_func  setrlimit
2736 check_func  strerror_r
2737 check_func  strtok_r
2738 check_func_headers io.h setmode
2739 check_func_headers lzo/lzo1x.h lzo1x_999_compress
2740 check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
2741 check_func_headers windows.h GetProcessTimes
2742 check_func_headers windows.h MapViewOfFile
2743 check_func_headers windows.h VirtualAlloc
2744
2745 check_header conio.h
2746 check_header dlfcn.h
2747 check_header dxva2api.h
2748 check_header malloc.h
2749 check_header poll.h
2750 check_header sys/mman.h
2751 check_header sys/resource.h
2752 check_header sys/select.h
2753 check_header termios.h
2754 check_header vdpau/vdpau.h
2755 check_header vdpau/vdpau_x11.h
2756 check_header X11/extensions/XvMClib.h
2757
2758 check_struct dxva2api.h DXVA_PictureParameters wDecodedPictureIndex
2759
2760 if ! enabled_any memalign memalign_hack posix_memalign malloc_aligned &&
2761      enabled_any $need_memalign ; then
2762     die "Error, no aligned memory allocator but SSE enabled, disable it or use --enable-memalign-hack."
2763 fi
2764
2765 disabled  zlib || check_lib   zlib.h      zlibVersion -lz   || disable  zlib
2766 disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
2767
2768 # check for some common methods of building with pthread support
2769 # do this before the optional library checks as some of them require pthreads
2770 if ! disabled pthreads && ! enabled w32threads; then
2771     enable pthreads
2772     if check_func pthread_create; then
2773         :
2774     elif check_func pthread_create -pthread; then
2775         add_cflags -pthread
2776         add_extralibs -pthread
2777     elif check_func pthread_create -pthreads; then
2778         add_cflags -pthreads
2779         add_extralibs -pthreads
2780     elif check_func pthread_create -lpthreadGC2; then
2781         add_extralibs -lpthreadGC2
2782     elif ! check_lib pthread.h pthread_create -lpthread; then
2783         disable pthreads
2784     fi
2785 fi
2786
2787 for thread in $THREADS_LIST; do
2788     if enabled $thread; then
2789         test -n "$thread_type" &&
2790             die "ERROR: Only one thread type must be selected." ||
2791             thread_type="$thread"
2792     fi
2793 done
2794
2795 check_lib math.h sin -lm
2796 disabled vaapi || check_lib va/va.h vaInitialize -lva
2797
2798 check_mathfunc exp2
2799 check_mathfunc exp2f
2800 check_mathfunc llrint
2801 check_mathfunc llrintf
2802 check_mathfunc log2
2803 check_mathfunc log2f
2804 check_mathfunc lrint
2805 check_mathfunc lrintf
2806 check_mathfunc round
2807 check_mathfunc roundf
2808 check_mathfunc truncf
2809
2810 # these are off by default, so fail if requested and not available
2811 enabled avisynth   && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
2812 enabled frei0r     && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
2813 enabled libdirac   && add_cflags $(pkg-config --cflags dirac) &&
2814                       require  libdirac libdirac_decoder/dirac_parser.h dirac_decoder_init $(pkg-config --libs dirac) &&
2815                       require  libdirac libdirac_encoder/dirac_encoder.h dirac_encoder_init $(pkg-config --libs dirac)
2816 enabled libfaac    && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
2817 enabled libgsm     && require  libgsm gsm/gsm.h gsm_create -lgsm
2818 enabled libmp3lame && require  "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
2819 enabled libnut     && require  libnut libnut.h nut_demuxer_init -lnut
2820 enabled libopencore_amrnb  && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
2821 enabled libopencore_amrwb  && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
2822 enabled libopencv  && { check_lib opencv/cv.h cvCreateImageHeader $(pkg-config --libs opencv) ||
2823                         die "ERROR: libopencv not found"; }
2824 enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
2825 enabled librtmp    && { check_lib librtmp/rtmp.h RTMP_Socket $(pkg-config --libs librtmp) ||
2826                         die "ERROR: librtmp not found or RTMP_Socket() missing, librtmp version must be >= 2.2.f"; }
2827 enabled libschroedinger && add_cflags $(pkg-config --cflags schroedinger-1.0) &&
2828                            require libschroedinger schroedinger/schro.h schro_init $(pkg-config --libs schroedinger-1.0)
2829 enabled libspeex   && require  libspeex speex/speex.h speex_decoder_init -lspeex
2830 enabled libtheora  && require  libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
2831 enabled libvorbis  && require  libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
2832 enabled libvpx     && {
2833     enabled libvpx_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
2834                                 die "ERROR: libvpx decoder version must be >=0.9.1"; }
2835     enabled libvpx_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_enc_init_ver -lvpx ||
2836                                 die "ERROR: libvpx encoder version must be >=0.9.1"; } }
2837 enabled libx264    && require  libx264 x264.h x264_encoder_encode -lx264 &&
2838                       { check_cpp_condition x264.h "X264_BUILD >= 99" ||
2839                         die "ERROR: libx264 version must be >= 0.99."; }
2840 enabled libxavs    && require  libxavs xavs.h xavs_encoder_encode -lxavs
2841 enabled libxvid    && require  libxvid xvid.h xvid_global -lxvidcore
2842 enabled mlib       && require  mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib
2843
2844 # libdc1394 check
2845 if enabled libdc1394; then
2846     { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
2847         enable libdc1394_2; } ||
2848     { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
2849         enable libdc1394_1; } ||
2850     die "ERROR: No version of libdc1394 found "
2851 fi
2852
2853 SDL_CONFIG="${cross_prefix}sdl-config"
2854 if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
2855     sdl_cflags=$("${SDL_CONFIG}" --cflags)
2856     sdl_libs=$("${SDL_CONFIG}" --libs)
2857     check_func_headers SDL.h SDL_Init $sdl_cflags $sdl_libs &&
2858     check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
2859     enable sdl &&
2860     check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
2861 fi
2862
2863 texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
2864
2865 check_header linux/videodev.h
2866 check_header linux/videodev2.h
2867 check_header sys/videoio.h
2868
2869 check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
2870 # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
2871 # w32api 3.12 had it defined wrong
2872 check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
2873
2874 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
2875 { check_header dev/bktr/ioctl_meteor.h &&
2876   check_header dev/bktr/ioctl_bt848.h; } ||
2877 { check_header machine/ioctl_meteor.h &&
2878   check_header machine/ioctl_bt848.h; } ||
2879 { check_header dev/video/meteor/ioctl_meteor.h &&
2880   check_header dev/video/bktr/ioctl_bt848.h; } ||
2881 check_header dev/ic/bt8xx.h
2882
2883 check_header sys/soundcard.h
2884 check_header soundcard.h
2885
2886 enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
2887
2888 enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack
2889
2890 enabled x11grab                         &&
2891 check_header X11/Xlib.h                 &&
2892 check_header X11/extensions/XShm.h      &&
2893 check_header X11/extensions/Xfixes.h    &&
2894 check_func XOpenDisplay -lX11           &&
2895 check_func XShmCreateImage -lX11 -lXext &&
2896 check_func XFixesGetCursorImage -lX11 -lXext -lXfixes
2897
2898 if ! disabled vdpau && enabled vdpau_vdpau_h; then
2899 check_cpp_condition \
2900     vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
2901     { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." &&
2902       disable vdpau; }
2903 fi
2904
2905 enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
2906
2907 # add some useful compiler flags if supported
2908 check_cflags -Wdeclaration-after-statement
2909 check_cflags -Wall
2910 check_cflags -Wno-parentheses
2911 check_cflags -Wno-switch
2912 check_cflags -Wdisabled-optimization
2913 check_cflags -Wpointer-arith
2914 check_cflags -Wredundant-decls
2915 check_cflags -Wno-pointer-sign
2916 check_cflags -Wcast-qual
2917 check_cflags -Wwrite-strings
2918 check_cflags -Wtype-limits
2919 check_cflags -Wundef
2920 check_cflags -Wmissing-prototypes
2921 enabled extra_warnings && check_cflags -Winline
2922
2923 # add some linker flags
2924 check_ldflags -Wl,--warn-common
2925 check_ldflags -Wl,--as-needed
2926 check_ldflags '-Wl,-rpath-link,\$(BUILD_ROOT)/libpostproc -Wl,-rpath-link,\$(BUILD_ROOT)/libswscale -Wl,-rpath-link,\$(BUILD_ROOT)/libavfilter -Wl,-rpath-link,\$(BUILD_ROOT)/libavdevice -Wl,-rpath-link,\$(BUILD_ROOT)/libavformat -Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec -Wl,-rpath-link,\$(BUILD_ROOT)/libavcore -Wl,-rpath-link,\$(BUILD_ROOT)/libavutil'
2927 test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
2928
2929 echo "X{};" > $TMPV
2930 if test_ldflags -Wl,--version-script,$TMPV; then
2931     append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
2932     check_cc <<EOF && enable symver_asm_label
2933 void ff_foo(void) __asm__ ("av_foo@VERSION");
2934 void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
2935 EOF
2936     check_cc <<EOF && enable symver_gnu_asm
2937 __asm__(".symver ff_foo,av_foo@VERSION");
2938 void ff_foo(void) {}
2939 EOF
2940 fi
2941
2942 if enabled small; then
2943     add_cflags $size_cflags
2944     optimizations="small"
2945 elif enabled optimizations; then
2946     add_cflags $speed_cflags
2947 else
2948     add_cflags $noopt_cflags
2949 fi
2950 check_cflags -fno-math-errno
2951 check_cflags -fno-signed-zeros
2952
2953 if enabled icc; then
2954     # Just warnings, no remarks
2955     check_cflags -w1
2956     # -wd: Disable following warnings
2957     # 144, 167, 556: -Wno-pointer-sign
2958     # 10006: ignoring unknown option -fno-signed-zeros
2959     # 10148: ignoring unknown option -Wno-parentheses
2960     # 10156: ignoring option '-W'; no argument required
2961     check_cflags -wd144,167,556,10006,10148,10156
2962     # 11030: Warning unknown option --as-needed
2963     # 10156: ignoring option '-export'; no argument required
2964     check_ldflags -wd10156,11030
2965     # Allow to compile with optimizations
2966     check_ldflags -march=$cpu
2967     # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
2968     enable ebp_available
2969     if enabled x86_32; then
2970         test ${icc_version%%.*} -ge 11 && \
2971             check_cflags -falign-stack=maintain-16-byte || \
2972             disable aligned_stack
2973     fi
2974 elif enabled ccc; then
2975     # disable some annoying warnings
2976     add_cflags -msg_disable cvtu32to64
2977     add_cflags -msg_disable embedcomment
2978     add_cflags -msg_disable needconstext
2979     add_cflags -msg_disable nomainieee
2980     add_cflags -msg_disable ptrmismatch1
2981     add_cflags -msg_disable unreachcode
2982 elif enabled gcc; then
2983     check_cflags -fno-tree-vectorize
2984     check_cflags -Werror=implicit-function-declaration
2985     check_cflags -Werror=missing-prototypes
2986 elif enabled llvm_gcc; then
2987     check_cflags -mllvm -stack-alignment=16
2988 elif enabled clang; then
2989     check_cflags -mllvm -stack-alignment=16
2990     check_cflags -Qunused-arguments
2991 elif enabled armcc; then
2992     # 2523: use of inline assembler is deprecated
2993     add_cflags -W${armcc_opt},--diag_suppress=2523
2994     add_cflags -W${armcc_opt},--diag_suppress=1207
2995     add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
2996     add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
2997 elif enabled tms470; then
2998     add_cflags -pds=824 -pds=837
2999 elif enabled pathscale; then
3000     add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
3001 fi
3002
3003 enabled_any $THREADS_LIST      && enable threads
3004
3005 check_deps $CONFIG_LIST       \
3006            $CONFIG_EXTRA      \
3007            $HAVE_LIST         \
3008            $DECODER_LIST      \
3009            $ENCODER_LIST      \
3010            $HWACCEL_LIST      \
3011            $PARSER_LIST       \
3012            $BSF_LIST          \
3013            $DEMUXER_LIST      \
3014            $MUXER_LIST        \
3015            $FILTER_LIST       \
3016            $INDEV_LIST        \
3017            $OUTDEV_LIST       \
3018            $PROTOCOL_LIST     \
3019            $ACODEC_TESTS      \
3020            $VCODEC_TESTS      \
3021            $LAVF_TESTS        \
3022            $LAVFI_TESTS       \
3023            $SEEK_TESTS        \
3024
3025 enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
3026
3027 echo "install prefix            $prefix"
3028 echo "source path               $source_path"
3029 echo "C compiler                $cc"
3030 echo "ARCH                      $arch ($cpu)"
3031 if test "$build_suffix" != ""; then
3032     echo "build suffix              $build_suffix"
3033 fi
3034 if test "$extra_version" != ""; then
3035     echo "version string suffix     $extra_version"
3036 fi
3037 echo "big-endian                ${bigendian-no}"
3038 echo "runtime cpu detection     ${runtime_cpudetect-no}"
3039 if enabled x86; then
3040     echo "yasm                      ${yasm-no}"
3041     echo "MMX enabled               ${mmx-no}"
3042     echo "MMX2 enabled              ${mmx2-no}"
3043     echo "3DNow! enabled            ${amd3dnow-no}"
3044     echo "3DNow! extended enabled   ${amd3dnowext-no}"
3045     echo "SSE enabled               ${sse-no}"
3046     echo "SSSE3 enabled             ${ssse3-no}"
3047     echo "CMOV enabled              ${cmov-no}"
3048     echo "CMOV is fast              ${fast_cmov-no}"
3049     echo "EBX available             ${ebx_available-no}"
3050     echo "EBP available             ${ebp_available-no}"
3051     echo "10 operands supported     ${ten_operands-no}"
3052 fi
3053 if enabled arm; then
3054     echo "ARMv5TE enabled           ${armv5te-no}"
3055     echo "ARMv6 enabled             ${armv6-no}"
3056     echo "ARMv6T2 enabled           ${armv6t2-no}"
3057     echo "ARM VFP enabled           ${armvfp-no}"
3058     echo "IWMMXT enabled            ${iwmmxt-no}"
3059     echo "NEON enabled              ${neon-no}"
3060 fi
3061 if enabled mips; then
3062     echo "MMI enabled               ${mmi-no}"
3063 fi
3064 if enabled ppc; then
3065     echo "AltiVec enabled           ${altivec-no}"
3066     echo "PPC 4xx optimizations     ${ppc4xx-no}"
3067     echo "dcbzl available           ${dcbzl-no}"
3068 fi
3069 if enabled sparc; then
3070     echo "VIS enabled               ${vis-no}"
3071 fi
3072 echo "debug symbols             ${debug-no}"
3073 echo "strip symbols             ${stripping-no}"
3074 echo "optimizations             ${optimizations-no}"
3075 echo "static                    ${static-no}"
3076 echo "shared                    ${shared-no}"
3077 echo "postprocessing support    ${postproc-no}"
3078 echo "new filter support        ${avfilter-no}"
3079 echo "network support           ${network-no}"
3080 echo "threading support         ${thread_type-no}"
3081 echo "SDL support               ${sdl-no}"
3082 echo "Sun medialib support      ${mlib-no}"
3083 echo "AVISynth enabled          ${avisynth-no}"
3084 echo "frei0r enabled            ${frei0r-no}"
3085 echo "libdc1394 support         ${libdc1394-no}"
3086 echo "libdirac enabled          ${libdirac-no}"
3087 echo "libfaac enabled           ${libfaac-no}"
3088 echo "libgsm enabled            ${libgsm-no}"
3089 echo "libmp3lame enabled        ${libmp3lame-no}"
3090 echo "libnut enabled            ${libnut-no}"
3091 echo "libopencore-amrnb support ${libopencore_amrnb-no}"
3092 echo "libopencore-amrwb support ${libopencore_amrwb-no}"
3093 echo "libopencv support         ${libopencv-no}"
3094 echo "libopenjpeg enabled       ${libopenjpeg-no}"
3095 echo "librtmp enabled           ${librtmp-no}"
3096 echo "libschroedinger enabled   ${libschroedinger-no}"
3097 echo "libspeex enabled          ${libspeex-no}"
3098 echo "libtheora enabled         ${libtheora-no}"
3099 echo "libvorbis enabled         ${libvorbis-no}"
3100 echo "libvpx enabled            ${libvpx-no}"
3101 echo "libx264 enabled           ${libx264-no}"
3102 echo "libxavs enabled           ${libxavs-no}"
3103 echo "libxvid enabled           ${libxvid-no}"
3104 echo "zlib enabled              ${zlib-no}"
3105 echo "bzlib enabled             ${bzlib-no}"
3106 echo
3107
3108 for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
3109     echo "Enabled ${type}s:"
3110     eval list=\$$(toupper $type)_LIST
3111     print_enabled '_*' $list | sort | pr -3 -t
3112     echo
3113 done
3114
3115 license="LGPL version 2.1 or later"
3116 if enabled nonfree; then
3117     license="nonfree and unredistributable"
3118 elif enabled gplv3; then
3119     license="GPL version 3 or later"
3120 elif enabled lgplv3; then
3121     license="LGPL version 3 or later"
3122 elif enabled gpl; then
3123     license="GPL version 2 or later"
3124 fi
3125
3126 echo "License: $license"
3127
3128 echo "Creating config.mak and config.h..."
3129
3130 # build tree in object directory if source path is different from current one
3131 if enabled source_path_used; then
3132     DIRS="
3133         doc
3134         libavcodec
3135         libavcodec/$arch
3136         libavcore
3137         libavdevice
3138         libavfilter
3139         libavfilter/$arch
3140         libavformat
3141         libavutil
3142         libavutil/$arch
3143         libpostproc
3144         libswscale
3145         libswscale/$arch
3146         tests
3147         tools
3148     "
3149     FILES="
3150         Makefile
3151         common.mak
3152         subdir.mak
3153         doc/texi2pod.pl
3154         libavcodec/Makefile
3155         libavcodec/${arch}/Makefile
3156         libavcore/Makefile
3157         libavdevice/Makefile
3158         libavfilter/Makefile
3159         libavfilter/${arch}/Makefile
3160         libavformat/Makefile
3161         libavutil/Makefile
3162         libpostproc/Makefile
3163         libswscale/Makefile
3164     "
3165     map 'mkdir -p $v' $DIRS;
3166     map 'test -f "$source_path/$v" && $ln_s "$source_path/$v" $v' $FILES
3167 fi
3168
3169 enabled stripping || strip="echo skipping strip"
3170
3171 config_files="$TMPH config.mak"
3172
3173 cat > config.mak <<EOF
3174 # Automatically generated by configure - do not modify!
3175 ifndef FFMPEG_CONFIG_MAK
3176 FFMPEG_CONFIG_MAK=1
3177 FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
3178 prefix=$prefix
3179 LIBDIR=\$(DESTDIR)$libdir
3180 SHLIBDIR=\$(DESTDIR)$shlibdir
3181 INCDIR=\$(DESTDIR)$incdir
3182 BINDIR=\$(DESTDIR)$bindir
3183 DATADIR=\$(DESTDIR)$datadir
3184 MANDIR=\$(DESTDIR)$mandir
3185 SRC_PATH="$source_path"
3186 SRC_PATH_BARE=$source_path
3187 BUILD_ROOT="$PWD"
3188 CC_IDENT=$cc_ident
3189 ARCH=$arch
3190 CC=$cc
3191 AS=$as
3192 LD=$ld
3193 DEPCC=$dep_cc
3194 YASM=$yasmexe
3195 YASMDEP=$yasmexe
3196 AR=$ar
3197 RANLIB=$ranlib
3198 CP=cp -p
3199 LN_S=$ln_s
3200 STRIP=$strip
3201 CPPFLAGS=$CPPFLAGS
3202 CFLAGS=$CFLAGS
3203 ASFLAGS=$ASFLAGS
3204 CC_O=$CC_O
3205 LDFLAGS=$LDFLAGS
3206 FFSERVERLDFLAGS=$FFSERVERLDFLAGS
3207 SHFLAGS=$SHFLAGS
3208 YASMFLAGS=$YASMFLAGS
3209 BUILDSUF=$build_suffix
3210 FULLNAME=$FULLNAME
3211 LIBPREF=$LIBPREF
3212 LIBSUF=$LIBSUF
3213 LIBNAME=$LIBNAME
3214 SLIBPREF=$SLIBPREF
3215 SLIBSUF=$SLIBSUF
3216 EXESUF=$EXESUF
3217 EXTRA_VERSION=$extra_version
3218 DEPFLAGS=$DEPFLAGS
3219 CCDEP=$CCDEP
3220 ASDEP=$ASDEP
3221 CC_DEPFLAGS=$CC_DEPFLAGS
3222 AS_DEPFLAGS=$AS_DEPFLAGS
3223 HOSTCC=$host_cc
3224 HOSTCFLAGS=$host_cflags
3225 HOSTEXESUF=$HOSTEXESUF
3226 HOSTLDFLAGS=$host_ldflags
3227 HOSTLIBS=$host_libs
3228 TARGET_EXEC=$target_exec
3229 TARGET_PATH=$target_path
3230 SDL_LIBS=$sdl_libs
3231 SDL_CFLAGS=$sdl_cflags
3232 LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
3233 EXTRALIBS=$extralibs
3234 INSTALL=install
3235 LIBTARGET=${LIBTARGET}
3236 SLIBNAME=${SLIBNAME}
3237 SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
3238 SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
3239 SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
3240 SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
3241 SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD}
3242 SLIB_UNINSTALL_EXTRA_CMD=${SLIB_UNINSTALL_EXTRA_CMD}
3243 SAMPLES=$samples
3244 EOF
3245
3246 get_version(){
3247     name=$1
3248     file=$source_path/$2
3249     eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
3250     eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
3251     lcname=$(tolower $name)
3252     eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
3253     eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
3254 }
3255
3256 get_version LIBSWSCALE  libswscale/swscale.h
3257 get_version LIBPOSTPROC libpostproc/postprocess.h
3258 get_version LIBAVCODEC  libavcodec/avcodec.h
3259 get_version LIBAVCORE   libavcore/avcore.h
3260 get_version LIBAVDEVICE libavdevice/avdevice.h
3261 get_version LIBAVFORMAT libavformat/version.h
3262 get_version LIBAVUTIL   libavutil/avutil.h
3263 get_version LIBAVFILTER libavfilter/avfilter.h
3264
3265 cat > $TMPH <<EOF
3266 /* Automatically generated by configure - do not modify! */
3267 #ifndef FFMPEG_CONFIG_H
3268 #define FFMPEG_CONFIG_H
3269 #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
3270 #define FFMPEG_LICENSE "$(c_escape $license)"
3271 #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
3272 #define CC_TYPE "$cc_type"
3273 #define CC_VERSION $cc_version
3274 #define restrict $_restrict
3275 #define EXTERN_PREFIX "${extern_prefix}"
3276 #define EXTERN_ASM ${extern_prefix}
3277 #define SLIBSUF "$SLIBSUF"
3278 EOF
3279
3280 test -n "$malloc_prefix" &&
3281     echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
3282
3283 if enabled small || disabled optimizations; then
3284     echo "#undef  av_always_inline"  >> $TMPH
3285     if enabled small; then
3286         echo "#define av_always_inline inline"  >> $TMPH
3287     else
3288         echo "#define av_always_inline av_unused"  >> $TMPH
3289     fi
3290 fi
3291
3292 if enabled yasm; then
3293     append config_files $TMPASM
3294     printf '' >$TMPASM
3295 fi
3296
3297 print_config ARCH_   "$config_files" $ARCH_LIST
3298 print_config HAVE_   "$config_files" $HAVE_LIST
3299 print_config CONFIG_ "$config_files" $CONFIG_LIST       \
3300                                      $CONFIG_EXTRA      \
3301                                      $DECODER_LIST      \
3302                                      $ENCODER_LIST      \
3303                                      $HWACCEL_LIST      \
3304                                      $PARSER_LIST       \
3305                                      $BSF_LIST          \
3306                                      $DEMUXER_LIST      \
3307                                      $MUXER_LIST        \
3308                                      $FILTER_LIST       \
3309                                      $PROTOCOL_LIST     \
3310                                      $INDEV_LIST        \
3311                                      $OUTDEV_LIST       \
3312
3313 cat >>config.mak <<EOF
3314 ACODEC_TESTS=$(print_enabled -n _test $ACODEC_TESTS)
3315 VCODEC_TESTS=$(print_enabled -n _test $VCODEC_TESTS)
3316 LAVF_TESTS=$(print_enabled   -n _test $LAVF_TESTS)
3317 LAVFI_TESTS=$(print_enabled  -n _test $LAVFI_TESTS)
3318 SEEK_TESTS=$(print_enabled   -n _test $SEEK_TESTS)
3319 EOF
3320
3321 echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
3322 echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
3323
3324 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
3325 cp_if_changed $TMPH config.h
3326 touch .config
3327
3328 enabled yasm && cp_if_changed $TMPASM config.asm
3329
3330 cat > $TMPH <<EOF
3331 /* Generated by ffconf */
3332 #ifndef AVUTIL_AVCONFIG_H
3333 #define AVUTIL_AVCONFIG_H
3334 EOF
3335
3336 print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
3337
3338 echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
3339
3340 cp_if_changed $TMPH libavutil/avconfig.h
3341
3342 test -n "$WARNINGS" && printf "\n$WARNINGS"
3343
3344 # build pkg-config files
3345
3346 pkgconfig_generate(){
3347 name=$1
3348 shortname=${name#lib}${build_suffix}
3349 comment=$2
3350 version=$3
3351 libs=$4
3352 requires=$5
3353 enabled ${name#lib} || return 0
3354 cat <<EOF > $name/$name.pc
3355 prefix=$prefix
3356 exec_prefix=\${prefix}
3357 libdir=$libdir
3358 includedir=$incdir
3359
3360 Name: $name
3361 Description: $comment
3362 Version: $version
3363 Requires: $(enabled shared || echo $requires)
3364 Requires.private: $(enabled shared && echo $requires)
3365 Conflicts:
3366 Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
3367 Libs.private: $(enabled shared && echo $libs)
3368 Cflags: -I\${includedir}
3369 EOF
3370 cat <<EOF > $name/$name-uninstalled.pc
3371 prefix=
3372 exec_prefix=
3373 libdir=\${pcfiledir}
3374 includedir=${source_path}
3375
3376 Name: $name
3377 Description: $comment
3378 Version: $version
3379 Requires: $requires
3380 Conflicts:
3381 Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
3382 Cflags: -I\${includedir}
3383 EOF
3384 }
3385
3386 pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION"
3387 pkgconfig_generate libavcore "FFmpeg multimedia shared core utilities library" "$LIBAVCORE_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
3388 pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavcore = $LIBAVCORE_VERSION"
3389 pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
3390 pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
3391 pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "libavcore = $LIBAVCORE_VERSION"
3392 pkgconfig_generate libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION"
3393 pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"