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