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