]> git.sesse.net Git - ffmpeg/blob - configure
Merge commit 'fe66671bd5f446f8d0a9c70968ba8fe891efe028'
[ffmpeg] / configure
1 #!/bin/sh
2 #
3 # FFmpeg configure script
4 #
5 # Copyright (c) 2000-2002 Fabrice Bellard
6 # Copyright (c) 2005-2008 Diego Biurrun
7 # Copyright (c) 2005-2008 Mans Rullgard
8 #
9
10 # Prevent locale nonsense from breaking basic text processing.
11 LC_ALL=C
12 export LC_ALL
13
14 # make sure we are running under a compatible shell
15 # try to make this part work with most shells
16
17 try_exec(){
18     echo "Trying shell $1"
19     type "$1" > /dev/null 2>&1 && exec "$@"
20 }
21
22 unset foo
23 (: ${foo%%bar}) 2> /dev/null
24 E1="$?"
25
26 (: ${foo?}) 2> /dev/null
27 E2="$?"
28
29 if test "$E1" != 0 || test "$E2" = 0; then
30     echo "Broken shell detected.  Trying alternatives."
31     export FF_CONF_EXEC
32     if test "0$FF_CONF_EXEC" -lt 1; then
33         FF_CONF_EXEC=1
34         try_exec bash "$0" "$@"
35     fi
36     if test "0$FF_CONF_EXEC" -lt 2; then
37         FF_CONF_EXEC=2
38         try_exec ksh "$0" "$@"
39     fi
40     if test "0$FF_CONF_EXEC" -lt 3; then
41         FF_CONF_EXEC=3
42         try_exec /usr/xpg4/bin/sh "$0" "$@"
43     fi
44     echo "No compatible shell script interpreter found."
45     echo "This configure script requires a POSIX-compatible shell"
46     echo "such as bash or ksh."
47     echo "THIS IS NOT A BUG IN FFMPEG, DO NOT REPORT IT AS SUCH."
48     echo "Instead, install a working POSIX-compatible shell."
49     echo "Disabling this configure test will create a broken FFmpeg."
50     if test "$BASH_VERSION" = '2.04.0(1)-release'; then
51         echo "This bash version ($BASH_VERSION) is broken on your platform."
52         echo "Upgrade to a later version if available."
53     fi
54     exit 1
55 fi
56
57 test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH
58
59 show_help(){
60     cat <<EOF
61 Usage: configure [options]
62 Options: [defaults in brackets after descriptions]
63
64 Help options:
65   --help                   print this message
66   --list-decoders          show all available decoders
67   --list-encoders          show all available encoders
68   --list-hwaccels          show all available hardware accelerators
69   --list-demuxers          show all available demuxers
70   --list-muxers            show all available muxers
71   --list-parsers           show all available parsers
72   --list-protocols         show all available protocols
73   --list-bsfs              show all available bitstream filters
74   --list-indevs            show all available input devices
75   --list-outdevs           show all available output devices
76   --list-filters           show all available filters
77
78 Standard options:
79   --logfile=FILE           log tests and output to FILE [config.log]
80   --disable-logging        do not log configure debug information
81   --fatal-warnings         fail if any configure warning is generated
82   --prefix=PREFIX          install in PREFIX [$prefix]
83   --bindir=DIR             install binaries in DIR [PREFIX/bin]
84   --datadir=DIR            install data files in DIR [PREFIX/share/ffmpeg]
85   --docdir=DIR             install documentation in DIR [PREFIX/share/doc/ffmpeg]
86   --libdir=DIR             install libs in DIR [PREFIX/lib]
87   --shlibdir=DIR           install shared libs in DIR [LIBDIR]
88   --incdir=DIR             install includes in DIR [PREFIX/include]
89   --mandir=DIR             install man page in DIR [PREFIX/share/man]
90   --pkgconfigdir=DIR       install pkg-config files in DIR [LIBDIR/pkgconfig]
91   --enable-rpath           use rpath to allow installing libraries in paths
92                            not part of the dynamic linker search path
93                            use rpath when linking programs [USE WITH CARE]
94
95 Licensing options:
96   --enable-gpl             allow use of GPL code, the resulting libs
97                            and binaries will be under GPL [no]
98   --enable-version3        upgrade (L)GPL to version 3 [no]
99   --enable-nonfree         allow use of nonfree code, the resulting libs
100                            and binaries will be unredistributable [no]
101
102 Configuration options:
103   --disable-static         do not build static libraries [no]
104   --enable-shared          build shared libraries [no]
105   --enable-small           optimize for size instead of speed
106   --disable-runtime-cpudetect disable detecting cpu capabilities at runtime (smaller binary)
107   --enable-gray            enable full grayscale support (slower color)
108   --disable-swscale-alpha  disable alpha channel support in swscale
109   --disable-all            disable building components, libraries and programs
110   --enable-incompatible-libav-abi enable incompatible Libav fork ABI [no]
111   --enable-raise-major     increase major version numbers in sonames [no]
112
113 Program options:
114   --disable-programs       do not build command line programs
115   --disable-ffmpeg         disable ffmpeg build
116   --disable-ffplay         disable ffplay build
117   --disable-ffprobe        disable ffprobe build
118   --disable-ffserver       disable ffserver build
119
120 Documentation options:
121   --disable-doc            do not build documentation
122   --disable-htmlpages      do not build HTML documentation pages
123   --disable-manpages       do not build man documentation pages
124   --disable-podpages       do not build POD documentation pages
125   --disable-txtpages       do not build text documentation pages
126
127 Component options:
128   --disable-avdevice       disable libavdevice build
129   --disable-avcodec        disable libavcodec build
130   --disable-avformat       disable libavformat build
131   --disable-swresample     disable libswresample build
132   --disable-swscale        disable libswscale build
133   --disable-postproc       disable libpostproc build
134   --disable-avfilter       disable libavfilter build
135   --enable-avresample      enable libavresample build [no]
136   --disable-pthreads       disable pthreads [autodetect]
137   --disable-w32threads     disable Win32 threads [autodetect]
138   --disable-os2threads     disable OS/2 threads [autodetect]
139   --disable-network        disable network support [no]
140   --disable-dct            disable DCT code
141   --disable-dwt            disable DWT code
142   --disable-error-resilience disable error resilience code
143   --disable-lsp            disable LSP code
144   --disable-lzo            disable LZO decoder code
145   --disable-mdct           disable MDCT code
146   --disable-rdft           disable RDFT code
147   --disable-fft            disable FFT code
148   --disable-faan           disable floating point AAN (I)DCT code
149   --disable-pixelutils     disable pixel utils in libavutil
150
151 Hardware accelerators:
152   --disable-d3d11va        disable D3D11VA code [autodetect]
153   --disable-dxva2          disable DXVA2 code [autodetect]
154   --disable-vaapi          disable VAAPI code [autodetect]
155   --disable-vda            disable VDA code [autodetect]
156   --disable-vdpau          disable VDPAU code [autodetect]
157   --enable-videotoolbox    enable VideoToolbox code [autodetect]
158
159 Individual component options:
160   --disable-everything     disable all components listed below
161   --disable-encoder=NAME   disable encoder NAME
162   --enable-encoder=NAME    enable encoder NAME
163   --disable-encoders       disable all encoders
164   --disable-decoder=NAME   disable decoder NAME
165   --enable-decoder=NAME    enable decoder NAME
166   --disable-decoders       disable all decoders
167   --disable-hwaccel=NAME   disable hwaccel NAME
168   --enable-hwaccel=NAME    enable hwaccel NAME
169   --disable-hwaccels       disable all hwaccels
170   --disable-muxer=NAME     disable muxer NAME
171   --enable-muxer=NAME      enable muxer NAME
172   --disable-muxers         disable all muxers
173   --disable-demuxer=NAME   disable demuxer NAME
174   --enable-demuxer=NAME    enable demuxer NAME
175   --disable-demuxers       disable all demuxers
176   --enable-parser=NAME     enable parser NAME
177   --disable-parser=NAME    disable parser NAME
178   --disable-parsers        disable all parsers
179   --enable-bsf=NAME        enable bitstream filter NAME
180   --disable-bsf=NAME       disable bitstream filter NAME
181   --disable-bsfs           disable all bitstream filters
182   --enable-protocol=NAME   enable protocol NAME
183   --disable-protocol=NAME  disable protocol NAME
184   --disable-protocols      disable all protocols
185   --enable-indev=NAME      enable input device NAME
186   --disable-indev=NAME     disable input device NAME
187   --disable-indevs         disable input devices
188   --enable-outdev=NAME     enable output device NAME
189   --disable-outdev=NAME    disable output device NAME
190   --disable-outdevs        disable output devices
191   --disable-devices        disable all devices
192   --enable-filter=NAME     enable filter NAME
193   --disable-filter=NAME    disable filter NAME
194   --disable-filters        disable all filters
195
196 External library support:
197   --enable-avisynth        enable reading of AviSynth script files [no]
198   --disable-bzlib          disable bzlib [autodetect]
199   --enable-chromaprint     enable audio fingerprinting with chromaprint [no]
200   --enable-fontconfig      enable fontconfig, useful for drawtext filter [no]
201   --enable-frei0r          enable frei0r video filtering [no]
202   --enable-gnutls          enable gnutls, needed for https support
203                            if openssl is not used [no]
204   --disable-iconv          disable iconv [autodetect]
205   --enable-ladspa          enable LADSPA audio filtering [no]
206   --enable-libaacplus      enable AAC+ encoding via libaacplus [no]
207   --enable-libass          enable libass subtitles rendering,
208                            needed for subtitles and ass filter [no]
209   --enable-libbluray       enable BluRay reading using libbluray [no]
210   --enable-libbs2b         enable bs2b DSP library [no]
211   --enable-libcaca         enable textual display using libcaca [no]
212   --enable-libcelt         enable CELT decoding via libcelt [no]
213   --enable-libcdio         enable audio CD grabbing with libcdio [no]
214   --enable-libdc1394       enable IIDC-1394 grabbing using libdc1394
215                            and libraw1394 [no]
216   --enable-libdcadec       enable DCA decoding via libdcadec [no]
217   --enable-libfaac         enable AAC encoding via libfaac [no]
218   --enable-libfdk-aac      enable AAC de/encoding via libfdk-aac [no]
219   --enable-libflite        enable flite (voice synthesis) support via libflite [no]
220   --enable-libfreetype     enable libfreetype, needed for drawtext filter [no]
221   --enable-libfribidi      enable libfribidi, improves drawtext filter [no]
222   --enable-libgme          enable Game Music Emu via libgme [no]
223   --enable-libgsm          enable GSM de/encoding via libgsm [no]
224   --enable-libiec61883     enable iec61883 via libiec61883 [no]
225   --enable-libilbc         enable iLBC de/encoding via libilbc [no]
226   --enable-libkvazaar      enable HEVC encoding via libkvazaar [no]
227   --enable-libmfx          enable HW acceleration through libmfx
228   --enable-libmodplug      enable ModPlug via libmodplug [no]
229   --enable-libmp3lame      enable MP3 encoding via libmp3lame [no]
230   --enable-libnut          enable NUT (de)muxing via libnut,
231                            native (de)muxer exists [no]
232   --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
233   --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
234   --enable-libopencv       enable video filtering via libopencv [no]
235   --enable-libopenh264     enable H.264 encoding via OpenH264 [no]
236   --enable-libopenjpeg     enable JPEG 2000 de/encoding via OpenJPEG [no]
237   --enable-libopus         enable Opus de/encoding via libopus [no]
238   --enable-libpulse        enable Pulseaudio input via libpulse [no]
239   --enable-librubberband   enable rubberband needed for rubberband filter [no]
240   --enable-libquvi         enable quvi input via libquvi [no]
241   --enable-librtmp         enable RTMP[E] support via librtmp [no]
242   --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
243   --enable-libshine        enable fixed-point MP3 encoding via libshine [no]
244   --enable-libsmbclient    enable Samba protocol via libsmbclient [no]
245   --enable-libsnappy       enable Snappy compression, needed for hap encoding [no]
246   --enable-libsoxr         enable Include libsoxr resampling [no]
247   --enable-libspeex        enable Speex de/encoding via libspeex [no]
248   --enable-libssh          enable SFTP protocol via libssh [no]
249   --enable-libstagefright-h264  enable H.264 decoding via libstagefright [no]
250   --enable-libtesseract    enable Tesseract, needed for ocr filter [no]
251   --enable-libtheora       enable Theora encoding via libtheora [no]
252   --enable-libtwolame      enable MP2 encoding via libtwolame [no]
253   --enable-libutvideo      enable Ut Video encoding and decoding via libutvideo [no]
254   --enable-libv4l2         enable libv4l2/v4l-utils [no]
255   --enable-libvidstab      enable video stabilization using vid.stab [no]
256   --enable-libvo-aacenc    enable AAC encoding via libvo-aacenc [no]
257   --enable-libvo-amrwbenc  enable AMR-WB encoding via libvo-amrwbenc [no]
258   --enable-libvorbis       enable Vorbis en/decoding via libvorbis,
259                            native implementation exists [no]
260   --enable-libvpx          enable VP8 and VP9 de/encoding via libvpx [no]
261   --enable-libwavpack      enable wavpack encoding via libwavpack [no]
262   --enable-libwebp         enable WebP encoding via libwebp [no]
263   --enable-libx264         enable H.264 encoding via x264 [no]
264   --enable-libx265         enable HEVC encoding via x265 [no]
265   --enable-libxavs         enable AVS encoding via xavs [no]
266   --enable-libxcb          enable X11 grabbing using XCB [autodetect]
267   --enable-libxcb-shm      enable X11 grabbing shm communication [autodetect]
268   --enable-libxcb-xfixes   enable X11 grabbing mouse rendering [autodetect]
269   --enable-libxcb-shape    enable X11 grabbing shape rendering [autodetect]
270   --enable-libxvid         enable Xvid encoding via xvidcore,
271                            native MPEG-4/Xvid encoder exists [no]
272   --enable-libzimg         enable z.lib, needed for zscale filter [no]
273   --enable-libzmq          enable message passing via libzmq [no]
274   --enable-libzvbi         enable teletext support via libzvbi [no]
275   --disable-lzma           disable lzma [autodetect]
276   --enable-decklink        enable Blackmagick DeckLink I/O support [no]
277   --enable-mmal            enable decoding via MMAL [no]
278   --enable-nvenc           enable NVIDIA NVENC support [no]
279   --enable-openal          enable OpenAL 1.1 capture support [no]
280   --enable-opencl          enable OpenCL code
281   --enable-opengl          enable OpenGL rendering [no]
282   --enable-openssl         enable openssl, needed for https support
283                            if gnutls is not used [no]
284   --disable-sdl            disable sdl [autodetect]
285   --disable-securetransport disable Secure Transport, needed for TLS support
286                            on OSX if openssl and gnutls are not used [autodetect]
287   --enable-x11grab         enable X11 grabbing (legacy) [no]
288   --disable-xlib           disable xlib [autodetect]
289   --disable-zlib           disable zlib [autodetect]
290
291 Toolchain options:
292   --arch=ARCH              select architecture [$arch]
293   --cpu=CPU                select the minimum required CPU (affects
294                            instruction selection, may crash on older CPUs)
295   --cross-prefix=PREFIX    use PREFIX for compilation tools [$cross_prefix]
296   --progs-suffix=SUFFIX    program name suffix []
297   --enable-cross-compile   assume a cross-compiler is used
298   --sysroot=PATH           root of cross-build tree
299   --sysinclude=PATH        location of cross-build system headers
300   --target-os=OS           compiler targets OS [$target_os]
301   --target-exec=CMD        command to run executables on target
302   --target-path=DIR        path to view of build directory on target
303   --target-samples=DIR     path to samples directory on target
304   --tempprefix=PATH        force fixed dir/prefix instead of mktemp for checks
305   --toolchain=NAME         set tool defaults according to NAME
306   --nm=NM                  use nm tool NM [$nm_default]
307   --ar=AR                  use archive tool AR [$ar_default]
308   --as=AS                  use assembler AS [$as_default]
309   --windres=WINDRES        use windows resource compiler WINDRES [$windres_default]
310   --yasmexe=EXE            use yasm-compatible assembler EXE [$yasmexe_default]
311   --cc=CC                  use C compiler CC [$cc_default]
312   --cxx=CXX                use C compiler CXX [$cxx_default]
313   --dep-cc=DEPCC           use dependency generator DEPCC [$cc_default]
314   --ld=LD                  use linker LD [$ld_default]
315   --pkg-config=PKGCONFIG   use pkg-config tool PKGCONFIG [$pkg_config_default]
316   --pkg-config-flags=FLAGS pass additional flags to pkgconf []
317   --ranlib=RANLIB          use ranlib RANLIB [$ranlib_default]
318   --doxygen=DOXYGEN        use DOXYGEN to generate API doc [$doxygen_default]
319   --host-cc=HOSTCC         use host C compiler HOSTCC
320   --host-cflags=HCFLAGS    use HCFLAGS when compiling for host
321   --host-cppflags=HCPPFLAGS use HCPPFLAGS when compiling for host
322   --host-ld=HOSTLD         use host linker HOSTLD
323   --host-ldflags=HLDFLAGS  use HLDFLAGS when linking for host
324   --host-libs=HLIBS        use libs HLIBS when linking for host
325   --host-os=OS             compiler host OS [$target_os]
326   --extra-cflags=ECFLAGS   add ECFLAGS to CFLAGS [$CFLAGS]
327   --extra-cxxflags=ECFLAGS add ECFLAGS to CXXFLAGS [$CXXFLAGS]
328   --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
329   --extra-ldexeflags=ELDFLAGS add ELDFLAGS to LDEXEFLAGS [$LDEXEFLAGS]
330   --extra-ldlibflags=ELDFLAGS add ELDFLAGS to LDLIBFLAGS [$LDLIBFLAGS]
331   --extra-libs=ELIBS       add ELIBS [$ELIBS]
332   --extra-version=STRING   version string suffix []
333   --optflags=OPTFLAGS      override optimization-related compiler flags
334   --build-suffix=SUFFIX    library name suffix []
335   --enable-pic             build position-independent code
336   --enable-thumb           compile for Thumb instruction set
337   --enable-lto             use link-time optimization
338   --env="ENV=override"     override the environment variables
339
340 Advanced options (experts only):
341   --malloc-prefix=PREFIX   prefix malloc and related names with PREFIX
342   --custom-allocator=NAME  use a supported custom allocator
343   --disable-symver         disable symbol versioning
344   --enable-hardcoded-tables use hardcoded tables instead of runtime generation
345   --disable-safe-bitstream-reader
346                            disable buffer boundary checking in bitreaders
347                            (faster, but may crash)
348   --enable-memalign-hack   emulate memalign, interferes with memory debuggers
349   --sws-max-filter-size=N  the max filter size swscale uses [$sws_max_filter_size_default]
350
351 Optimization options (experts only):
352   --disable-asm            disable all assembly optimizations
353   --disable-altivec        disable AltiVec optimizations
354   --disable-vsx            disable VSX optimizations
355   --disable-power8         disable POWER8 optimizations
356   --disable-amd3dnow       disable 3DNow! optimizations
357   --disable-amd3dnowext    disable 3DNow! extended optimizations
358   --disable-mmx            disable MMX optimizations
359   --disable-mmxext         disable MMXEXT optimizations
360   --disable-sse            disable SSE optimizations
361   --disable-sse2           disable SSE2 optimizations
362   --disable-sse3           disable SSE3 optimizations
363   --disable-ssse3          disable SSSE3 optimizations
364   --disable-sse4           disable SSE4 optimizations
365   --disable-sse42          disable SSE4.2 optimizations
366   --disable-avx            disable AVX optimizations
367   --disable-xop            disable XOP optimizations
368   --disable-fma3           disable FMA3 optimizations
369   --disable-fma4           disable FMA4 optimizations
370   --disable-avx2           disable AVX2 optimizations
371   --disable-armv5te        disable armv5te optimizations
372   --disable-armv6          disable armv6 optimizations
373   --disable-armv6t2        disable armv6t2 optimizations
374   --disable-vfp            disable VFP optimizations
375   --disable-neon           disable NEON optimizations
376   --disable-inline-asm     disable use of inline assembly
377   --disable-yasm           disable use of nasm/yasm assembly
378   --disable-mips32r5       disable MIPS32R5 optimizations
379   --disable-mips64r6       disable MIPS64R6 optimizations
380   --disable-mipsdspr1      disable MIPS DSP ASE R1 optimizations
381   --disable-mipsdspr2      disable MIPS DSP ASE R2 optimizations
382   --disable-msa            disable MSA optimizations
383   --disable-mipsfpu        disable floating point MIPS optimizations
384   --disable-mmi            disable Loongson SIMD optimizations
385   --disable-fast-unaligned consider unaligned accesses slow
386
387 Developer options (useful when working on FFmpeg itself):
388   --disable-debug          disable debugging symbols
389   --enable-debug=LEVEL     set the debug level [$debuglevel]
390   --disable-optimizations  disable compiler optimizations
391   --enable-extra-warnings  enable more compiler warnings
392   --disable-stripping      disable stripping of executables and shared libraries
393   --assert-level=level     0(default), 1 or 2, amount of assertion testing,
394                            2 causes a slowdown at runtime.
395   --enable-memory-poisoning fill heap uninitialized allocated space with arbitrary data
396   --valgrind=VALGRIND      run "make fate" tests through valgrind to detect memory
397                            leaks and errors, using the specified valgrind binary.
398                            Cannot be combined with --target-exec
399   --enable-ftrapv          Trap arithmetic overflows
400   --samples=PATH           location of test samples for FATE, if not set use
401                            \$FATE_SAMPLES at make invocation time.
402   --enable-neon-clobber-test check NEON registers for clobbering (should be
403                            used only for debugging purposes)
404   --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
405                            should be used only for debugging purposes)
406   --enable-random          randomly enable/disable components
407   --disable-random
408   --enable-random=LIST     randomly enable/disable specific components or
409   --disable-random=LIST    component groups. LIST is a comma-separated list
410                            of NAME[:PROB] entries where NAME is a component
411                            (group) and PROB the probability associated with
412                            NAME (default 0.5).
413   --random-seed=VALUE      seed value for --enable/disable-random
414   --disable-valgrind-backtrace do not print a backtrace under Valgrind
415                            (only applies to --disable-optimizations builds)
416
417 NOTE: Object files are built at the place where configure is launched.
418 EOF
419   exit 0
420 }
421
422 quotes='""'
423 if test -t 1 && which tput >/dev/null 2>&1; then
424     ncolors=$(tput colors)
425     if test -n "$ncolors" && test $ncolors -ge 8; then
426         bold_color=$(tput bold)
427         warn_color=$(tput setaf 3)
428         error_color=$(tput setaf 1)
429         reset_color=$(tput sgr0)
430     fi
431     # 72 used instead of 80 since that's the default of pr
432     ncols=$(tput cols)
433 fi
434 : ${ncols:=72}
435
436 log(){
437     echo "$@" >> $logfile
438 }
439
440 log_file(){
441     log BEGIN $1
442     pr -n -t $1 >> $logfile
443     log END $1
444 }
445
446 warn(){
447     log "WARNING: $*"
448     WARNINGS="${WARNINGS}WARNING: $*\n"
449 }
450
451 die(){
452     log "$@"
453     echo "$error_color$bold_color$@$reset_color"
454     cat <<EOF
455
456 If you think configure made a mistake, make sure you are using the latest
457 version from Git.  If the latest version fails, report the problem to the
458 ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
459 EOF
460     if disabled logging; then
461         cat <<EOF
462 Rerun configure with logging enabled (do not use --disable-logging), and
463 include the log this produces with your report.
464 EOF
465     else
466         cat <<EOF
467 Include the log file "$logfile" produced by configure as this will help
468 solve the problem.
469 EOF
470     fi
471     exit 1
472 }
473
474 # Avoid locale weirdness, besides we really just want to translate ASCII.
475 toupper(){
476     echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
477 }
478
479 tolower(){
480     echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
481 }
482
483 c_escape(){
484     echo "$*" | sed 's/["\\]/\\\0/g'
485 }
486
487 sh_quote(){
488     v=$(echo "$1" | sed "s/'/'\\\\''/g")
489     test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
490     echo "$v"
491 }
492
493 cleanws(){
494     echo "$@" | sed 's/^ *//;s/[[:space:]][[:space:]]*/ /g;s/ *$//'
495 }
496
497 filter(){
498     pat=$1
499     shift
500     for v; do
501         eval "case $v in $pat) echo $v ;; esac"
502     done
503 }
504
505 filter_out(){
506     pat=$1
507     shift
508     for v; do
509         eval "case $v in $pat) ;; *) echo $v ;; esac"
510     done
511 }
512
513 map(){
514     m=$1
515     shift
516     for v; do eval $m; done
517 }
518
519 add_suffix(){
520     suffix=$1
521     shift
522     for v; do echo ${v}${suffix}; done
523 }
524
525 set_all(){
526     value=$1
527     shift
528     for var in $*; do
529         eval $var=$value
530     done
531 }
532
533 set_weak(){
534     value=$1
535     shift
536     for var; do
537         eval : \${$var:=$value}
538     done
539 }
540
541 sanitize_var_name(){
542     echo $@ | sed 's/[^A-Za-z0-9_]/_/g'
543 }
544
545 set_safe(){
546     var=$1
547     shift
548     eval $(sanitize_var_name "$var")='$*'
549 }
550
551 get_safe(){
552     eval echo \$$(sanitize_var_name "$1")
553 }
554
555 pushvar(){
556     for pvar in $*; do
557         eval level=\${${pvar}_level:=0}
558         eval ${pvar}_${level}="\$$pvar"
559         eval ${pvar}_level=$(($level+1))
560     done
561 }
562
563 popvar(){
564     for pvar in $*; do
565         eval level=\${${pvar}_level:-0}
566         test $level = 0 && continue
567         eval level=$(($level-1))
568         eval $pvar="\${${pvar}_${level}}"
569         eval ${pvar}_level=$level
570         eval unset ${pvar}_${level}
571     done
572 }
573
574 enable(){
575     set_all yes $*
576 }
577
578 disable(){
579     set_all no $*
580 }
581
582 enable_weak(){
583     set_weak yes $*
584 }
585
586 disable_weak(){
587     set_weak no $*
588 }
589
590 enable_safe(){
591     for var; do
592         enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
593     done
594 }
595
596 disable_safe(){
597     for var; do
598         disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
599     done
600 }
601
602 do_enable_deep(){
603     for var; do
604         enabled $var && continue
605         eval sel="\$${var}_select"
606         eval sgs="\$${var}_suggest"
607         pushvar var sgs
608         enable_deep $sel
609         popvar sgs
610         enable_deep_weak $sgs
611         popvar var
612     done
613 }
614
615 enable_deep(){
616     do_enable_deep $*
617     enable $*
618 }
619
620 enable_deep_weak(){
621     for var; do
622         disabled $var && continue
623         pushvar var
624         do_enable_deep $var
625         popvar var
626         enable_weak $var
627     done
628 }
629
630 enabled(){
631     test "${1#!}" = "$1" && op='=' || op=!=
632     eval test "x\$${1#!}" $op "xyes"
633 }
634
635 disabled(){
636     test "${1#!}" = "$1" && op='=' || op=!=
637     eval test "x\$${1#!}" $op "xno"
638 }
639
640 enabled_all(){
641     for opt; do
642         enabled $opt || return 1
643     done
644 }
645
646 disabled_all(){
647     for opt; do
648         disabled $opt || return 1
649     done
650 }
651
652 enabled_any(){
653     for opt; do
654         enabled $opt && return 0
655     done
656 }
657
658 disabled_any(){
659     for opt; do
660         disabled $opt && return 0
661     done
662     return 1
663 }
664
665 set_default(){
666     for opt; do
667         eval : \${$opt:=\$${opt}_default}
668     done
669 }
670
671 is_in(){
672     value=$1
673     shift
674     for var in $*; do
675         [ $var = $value ] && return 0
676     done
677     return 1
678 }
679
680 do_check_deps(){
681     for cfg; do
682         cfg="${cfg#!}"
683         enabled ${cfg}_checking && die "Circular dependency for $cfg."
684         disabled ${cfg}_checking && continue
685         enable ${cfg}_checking
686         append allopts $cfg
687
688         eval dep_all="\$${cfg}_deps"
689         eval dep_any="\$${cfg}_deps_any"
690         eval dep_sel="\$${cfg}_select"
691         eval dep_sgs="\$${cfg}_suggest"
692         eval dep_ifa="\$${cfg}_if"
693         eval dep_ifn="\$${cfg}_if_any"
694
695         pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
696         do_check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
697         popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
698
699         [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
700         [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
701         enabled_all  $dep_all || disable $cfg
702         enabled_any  $dep_any || disable $cfg
703         disabled_any $dep_sel && disable $cfg
704
705         if enabled $cfg; then
706             enable_deep $dep_sel
707             enable_deep_weak $dep_sgs
708         fi
709
710         disable ${cfg}_checking
711     done
712 }
713
714 check_deps(){
715     unset allopts
716
717     do_check_deps "$@"
718
719     for cfg in $allopts; do
720         enabled $cfg || continue
721         eval dep_extralibs="\$${cfg}_extralibs"
722         test -n "$dep_extralibs" && add_extralibs $dep_extralibs
723     done
724 }
725
726 print_config(){
727     pfx=$1
728     files=$2
729     shift 2
730     map 'eval echo "$v \${$v:-no}"' "$@" |
731     awk "BEGIN { split(\"$files\", files) }
732         {
733             c = \"$pfx\" toupper(\$1);
734             v = \$2;
735             sub(/yes/, 1, v);
736             sub(/no/,  0, v);
737             for (f in files) {
738                 file = files[f];
739                 if (file ~ /\\.h\$/) {
740                     printf(\"#define %s %d\\n\", c, v) >>file;
741                 } else if (file ~ /\\.asm\$/) {
742                     printf(\"%%define %s %d\\n\", c, v) >>file;
743                 } else if (file ~ /\\.mak\$/) {
744                     n = -v ? \"\" : \"!\";
745                     printf(\"%s%s=yes\\n\", n, c) >>file;
746                 } else if (file ~ /\\.texi\$/) {
747                     pre = -v ? \"\" : \"@c \";
748                     yesno = \$2;
749                     c2 = tolower(c);
750                     gsub(/_/, \"-\", c2);
751                     printf(\"%s@set %s %s\\n\", pre, c2, yesno) >>file;
752                 }
753             }
754         }"
755 }
756
757 print_enabled(){
758     suf=$1
759     shift
760     for v; do
761         enabled $v && printf "%s\n" ${v%$suf};
762     done
763 }
764
765 append(){
766     var=$1
767     shift
768     eval "$var=\"\$$var $*\""
769 }
770
771 prepend(){
772     var=$1
773     shift
774     eval "$var=\"$* \$$var\""
775 }
776
777 unique(){
778     var=$1
779     uniq_list=""
780     for tok in $(eval echo \$$var); do
781         uniq_list="$(filter_out $tok $uniq_list) $tok"
782     done
783     eval "$var=\"${uniq_list}\""
784 }
785
786 add_cppflags(){
787     append CPPFLAGS "$@"
788 }
789
790 add_cflags(){
791     append CFLAGS $($cflags_filter "$@")
792 }
793
794 add_cxxflags(){
795     append CXXFLAGS $($cflags_filter "$@")
796 }
797
798 add_asflags(){
799     append ASFLAGS $($asflags_filter "$@")
800 }
801
802 add_ldflags(){
803     append LDFLAGS $($ldflags_filter "$@")
804 }
805
806 add_ldexeflags(){
807     append LDEXEFLAGS $($ldflags_filter "$@")
808 }
809
810 add_ldlibflags(){
811     append LDLIBFLAGS $($ldflags_filter "$@")
812 }
813
814 add_stripflags(){
815     append ASMSTRIPFLAGS "$@"
816 }
817
818 add_extralibs(){
819     prepend extralibs $($ldflags_filter "$@")
820 }
821
822 add_host_cppflags(){
823     append host_cppflags "$@"
824 }
825
826 add_host_cflags(){
827     append host_cflags $($host_cflags_filter "$@")
828 }
829
830 add_host_ldflags(){
831     append host_ldflags $($host_ldflags_filter "$@")
832 }
833
834 add_compat(){
835     append compat_objs $1
836     shift
837     map 'add_cppflags -D$v' "$@"
838 }
839
840 check_cmd(){
841     log "$@"
842     "$@" >> $logfile 2>&1
843 }
844
845 check_stat(){
846     log check_stat "$@"
847     stat "$1" >> $logfile 2>&1
848 }
849
850 cc_o(){
851     eval printf '%s\\n' $CC_O
852 }
853
854 cc_e(){
855     eval printf '%s\\n' $CC_E
856 }
857
858 check_cc(){
859     log check_cc "$@"
860     cat > $TMPC
861     log_file $TMPC
862     check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
863 }
864
865 check_cxx(){
866     log check_cxx "$@"
867     cat > $TMPCPP
868     log_file $TMPCPP
869     check_cmd $cxx $CPPFLAGS $CFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
870 }
871
872 check_oc(){
873     log check_oc "$@"
874     cat > $TMPM
875     log_file $TMPM
876     check_cmd $cc -Werror=missing-prototypes $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPM
877 }
878
879 check_cpp(){
880     log check_cpp "$@"
881     cat > $TMPC
882     log_file $TMPC
883     check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
884 }
885
886 as_o(){
887     eval printf '%s\\n' $AS_O
888 }
889
890 check_as(){
891     log check_as "$@"
892     cat > $TMPS
893     log_file $TMPS
894     check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
895 }
896
897 check_inline_asm(){
898     log check_inline_asm "$@"
899     name="$1"
900     code="$2"
901     shift 2
902     disable $name
903     check_cc "$@" <<EOF && enable $name
904 void foo(void){ __asm__ volatile($code); }
905 EOF
906 }
907
908 check_insn(){
909     log check_insn "$@"
910     check_inline_asm ${1}_inline "\"$2\""
911     echo "$2" | check_as && enable ${1}_external || disable ${1}_external
912 }
913
914 check_yasm(){
915     log check_yasm "$@"
916     echo "$1" > $TMPS
917     log_file $TMPS
918     shift 1
919     check_cmd $yasmexe $YASMFLAGS -Werror "$@" -o $TMPO $TMPS
920 }
921
922 ld_o(){
923     eval printf '%s\\n' $LD_O
924 }
925
926 check_ld(){
927     log check_ld "$@"
928     type=$1
929     shift 1
930     flags=$(filter_out '-l*|*.so' $@)
931     libs=$(filter '-l*|*.so' $@)
932     check_$type $($cflags_filter $flags) || return
933     flags=$($ldflags_filter $flags)
934     libs=$($ldflags_filter $libs)
935     check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
936 }
937
938 print_include(){
939     hdr=$1
940     test "${hdr%.h}" = "${hdr}" &&
941         echo "#include $hdr"    ||
942         echo "#include <$hdr>"
943 }
944
945 check_code(){
946     log check_code "$@"
947     check=$1
948     headers=$2
949     code=$3
950     shift 3
951     {
952         for hdr in $headers; do
953             print_include $hdr
954         done
955         echo "int main(void) { $code; return 0; }"
956     } | check_$check "$@"
957 }
958
959 check_cppflags(){
960     log check_cppflags "$@"
961     check_cc "$@" <<EOF && append CPPFLAGS "$@"
962 int x;
963 EOF
964 }
965
966 test_cflags(){
967     log test_cflags "$@"
968     set -- $($cflags_filter "$@")
969     check_cc "$@" <<EOF
970 int x;
971 EOF
972 }
973
974 check_cflags(){
975     log check_cflags "$@"
976     test_cflags "$@" && add_cflags "$@"
977 }
978
979 check_cxxflags(){
980     log check_cxxflags "$@"
981     set -- $($cflags_filter "$@")
982     check_cxx "$@" <<EOF && append CXXFLAGS "$@"
983 int x;
984 EOF
985 }
986
987 test_ldflags(){
988     log test_ldflags "$@"
989     check_ld "cc" "$@" <<EOF
990 int main(void){ return 0; }
991 EOF
992 }
993
994 check_ldflags(){
995     log check_ldflags "$@"
996     test_ldflags "$@" && add_ldflags "$@"
997 }
998
999 test_stripflags(){
1000     log test_stripflags "$@"
1001     # call check_cc to get a fresh TMPO
1002     check_cc <<EOF
1003 int main(void) { return 0; }
1004 EOF
1005     check_cmd $strip $ASMSTRIPFLAGS "$@" $TMPO
1006 }
1007
1008 check_stripflags(){
1009     log check_stripflags "$@"
1010     test_stripflags "$@" && add_stripflags "$@"
1011 }
1012
1013 check_header(){
1014     log check_header "$@"
1015     header=$1
1016     shift
1017     disable_safe $header
1018     check_cpp "$@" <<EOF && enable_safe $header
1019 #include <$header>
1020 int x;
1021 EOF
1022 }
1023
1024 check_header_oc(){
1025     log check_header_oc "$@"
1026     rm -f -- "$TMPO"
1027     header=$1
1028     shift
1029     disable_safe $header
1030     {
1031        echo "#include <$header>"
1032        echo "int main(void) { return 0; }"
1033     } | check_oc && check_stat "$TMPO" && enable_safe $headers
1034 }
1035
1036 check_func(){
1037     log check_func "$@"
1038     func=$1
1039     shift
1040     disable $func
1041     check_ld "cc" "$@" <<EOF && enable $func
1042 extern int $func();
1043 int main(void){ $func(); }
1044 EOF
1045 }
1046
1047 check_mathfunc(){
1048     log check_mathfunc "$@"
1049     func=$1
1050     narg=$2
1051     shift 2
1052     test $narg = 2 && args="f, g" || args="f"
1053     disable $func
1054     check_ld "cc" "$@" <<EOF && enable $func
1055 #include <math.h>
1056 float foo(float f, float g) { return $func($args); }
1057 int main(void){ return (int) foo; }
1058 EOF
1059 }
1060
1061 check_func_headers(){
1062     log check_func_headers "$@"
1063     headers=$1
1064     funcs=$2
1065     shift 2
1066     {
1067         for hdr in $headers; do
1068             print_include $hdr
1069         done
1070         for func in $funcs; do
1071             echo "long check_$func(void) { return (long) $func; }"
1072         done
1073         echo "int main(void) { return 0; }"
1074     } | check_ld "cc" "$@" && enable $funcs && enable_safe $headers
1075 }
1076
1077 check_class_headers_cpp(){
1078     log check_class_headers_cpp "$@"
1079     headers=$1
1080     classes=$2
1081     shift 2
1082     {
1083         for hdr in $headers; do
1084             echo "#include <$hdr>"
1085         done
1086         echo "int main(void) { "
1087         i=1
1088         for class in $classes; do
1089             echo "$class obj$i;"
1090             i=$(expr $i + 1)
1091         done
1092         echo "return 0; }"
1093     } | check_ld "cxx" "$@" && enable $funcs && enable_safe $headers
1094 }
1095
1096 check_cpp_condition(){
1097     log check_cpp_condition "$@"
1098     header=$1
1099     condition=$2
1100     shift 2
1101     check_cpp "$@" <<EOF
1102 #include <$header>
1103 #if !($condition)
1104 #error "unsatisfied condition: $condition"
1105 #endif
1106 EOF
1107 }
1108
1109 check_lib(){
1110     log check_lib "$@"
1111     header="$1"
1112     func="$2"
1113     shift 2
1114     check_header $header && check_func $func "$@" && add_extralibs "$@"
1115 }
1116
1117 check_lib2(){
1118     log check_lib2 "$@"
1119     headers="$1"
1120     funcs="$2"
1121     shift 2
1122     check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
1123 }
1124
1125 check_lib_cpp(){
1126     log check_lib_cpp "$@"
1127     headers="$1"
1128     classes="$2"
1129     shift 2
1130     check_class_headers_cpp "$headers" "$classes" "$@" && add_extralibs "$@"
1131 }
1132
1133 check_pkg_config(){
1134     log check_pkg_config "$@"
1135     pkgandversion="$1"
1136     pkg="${1%% *}"
1137     headers="$2"
1138     funcs="$3"
1139     shift 3
1140     check_cmd $pkg_config --exists --print-errors $pkgandversion || return
1141     pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
1142     pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
1143     check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
1144         set_safe "${pkg}_cflags" $pkg_cflags   &&
1145         set_safe "${pkg}_libs"   $pkg_libs
1146 }
1147
1148 check_exec(){
1149     check_ld "cc" "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
1150 }
1151
1152 check_exec_crash(){
1153     code=$(cat)
1154
1155     # exit() is not async signal safe.  _Exit (C99) and _exit (POSIX)
1156     # are safe but may not be available everywhere.  Thus we use
1157     # raise(SIGTERM) instead.  The check is run in a subshell so we
1158     # can redirect the "Terminated" message from the shell.  SIGBUS
1159     # is not defined by standard C so it is used conditionally.
1160
1161     (check_exec "$@") >> $logfile 2>&1 <<EOF
1162 #include <signal.h>
1163 static void sighandler(int sig){
1164     raise(SIGTERM);
1165 }
1166 int foo(void){
1167     $code
1168 }
1169 int (*func_ptr)(void) = foo;
1170 int main(void){
1171     signal(SIGILL, sighandler);
1172     signal(SIGFPE, sighandler);
1173     signal(SIGSEGV, sighandler);
1174 #ifdef SIGBUS
1175     signal(SIGBUS, sighandler);
1176 #endif
1177     return func_ptr();
1178 }
1179 EOF
1180 }
1181
1182 check_type(){
1183     log check_type "$@"
1184     headers=$1
1185     type=$2
1186     shift 2
1187     disable_safe "$type"
1188     check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
1189 }
1190
1191 check_struct(){
1192     log check_struct "$@"
1193     headers=$1
1194     struct=$2
1195     member=$3
1196     shift 3
1197     disable_safe "${struct}_${member}"
1198     check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
1199         enable_safe "${struct}_${member}"
1200 }
1201
1202 check_builtin(){
1203     log check_builtin "$@"
1204     name=$1
1205     headers=$2
1206     builtin=$3
1207     shift 3
1208     disable "$name"
1209     check_code ld "$headers" "$builtin" "cc" "$@" && enable "$name"
1210 }
1211
1212 check_compile_assert(){
1213     log check_compile_assert "$@"
1214     name=$1
1215     headers=$2
1216     condition=$3
1217     shift 3
1218     disable "$name"
1219     check_code cc "$headers" "char c[2 * !!($condition) - 1]" "$@" && enable "$name"
1220 }
1221
1222 require(){
1223     name="$1"
1224     header="$2"
1225     func="$3"
1226     shift 3
1227     check_lib $header $func "$@" || die "ERROR: $name not found"
1228 }
1229
1230 require2(){
1231     name="$1"
1232     headers="$2"
1233     func="$3"
1234     shift 3
1235     check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
1236 }
1237
1238 require_cpp(){
1239     name="$1"
1240     headers="$2"
1241     classes="$3"
1242     shift 3
1243     check_lib_cpp "$headers" "$classes" "$@" || die "ERROR: $name not found"
1244 }
1245
1246 use_pkg_config(){
1247     pkg="$1"
1248     check_pkg_config "$@" || return 1
1249     add_cflags    $(get_safe "${pkg}_cflags")
1250     add_extralibs $(get_safe "${pkg}_libs")
1251 }
1252
1253 require_pkg_config(){
1254     use_pkg_config "$@" || die "ERROR: $pkg not found using pkg-config$pkg_config_fail_message"
1255 }
1256
1257 require_libfreetype(){
1258     log require_libfreetype "$@"
1259     pkg="freetype2"
1260     check_cmd $pkg_config --exists --print-errors $pkg \
1261       || die "ERROR: $pkg not found"
1262     pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
1263     pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
1264     {
1265         echo "#include <ft2build.h>"
1266         echo "#include FT_FREETYPE_H"
1267         echo "long check_func(void) { return (long) FT_Init_FreeType; }"
1268         echo "int main(void) { return 0; }"
1269     } | check_ld "cc" $pkg_cflags $pkg_libs \
1270       && set_safe "${pkg}_cflags" $pkg_cflags \
1271       && set_safe "${pkg}_libs"   $pkg_libs \
1272       || die "ERROR: $pkg not found"
1273     add_cflags    $(get_safe "${pkg}_cflags")
1274     add_extralibs $(get_safe "${pkg}_libs")
1275 }
1276
1277 hostcc_e(){
1278     eval printf '%s\\n' $HOSTCC_E
1279 }
1280
1281 hostcc_o(){
1282     eval printf '%s\\n' $HOSTCC_O
1283 }
1284
1285 check_host_cc(){
1286     log check_host_cc "$@"
1287     cat > $TMPC
1288     log_file $TMPC
1289     check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
1290 }
1291
1292 check_host_cpp(){
1293     log check_host_cpp "$@"
1294     cat > $TMPC
1295     log_file $TMPC
1296     check_cmd $host_cc $host_cppflags $host_cflags "$@" $(hostcc_e $TMPO) $TMPC
1297 }
1298
1299 check_host_cppflags(){
1300     log check_host_cppflags "$@"
1301     check_host_cc "$@" <<EOF && append host_cppflags "$@"
1302 int x;
1303 EOF
1304 }
1305
1306 check_host_cflags(){
1307     log check_host_cflags "$@"
1308     set -- $($host_cflags_filter "$@")
1309     check_host_cc "$@" <<EOF && append host_cflags "$@"
1310 int x;
1311 EOF
1312 }
1313
1314 check_host_cpp_condition(){
1315     log check_host_cpp_condition "$@"
1316     header=$1
1317     condition=$2
1318     shift 2
1319     check_host_cpp "$@" <<EOF
1320 #include <$header>
1321 #if !($condition)
1322 #error "unsatisfied condition: $condition"
1323 #endif
1324 EOF
1325 }
1326
1327 cp_if_changed(){
1328     cmp -s "$1" "$2" && echo "$2 is unchanged" && return
1329     mkdir -p "$(dirname $2)"
1330     $cp_f "$1" "$2"
1331 }
1332
1333 # CONFIG_LIST contains configurable options, while HAVE_LIST is for
1334 # system-dependent things.
1335
1336 AVCODEC_COMPONENTS="
1337     bsfs
1338     decoders
1339     encoders
1340     hwaccels
1341     parsers
1342 "
1343
1344 AVDEVICE_COMPONENTS="
1345     indevs
1346     outdevs
1347 "
1348 AVFILTER_COMPONENTS="
1349     filters
1350 "
1351 AVFORMAT_COMPONENTS="
1352     demuxers
1353     muxers
1354     protocols
1355 "
1356
1357 AVRESAMPLE_COMPONENTS=""
1358 AVUTIL_COMPONENTS=""
1359
1360 COMPONENT_LIST="
1361     $AVCODEC_COMPONENTS
1362     $AVDEVICE_COMPONENTS
1363     $AVFILTER_COMPONENTS
1364     $AVFORMAT_COMPONENTS
1365     $AVRESAMPLE_COMPONENTS
1366     $AVUTIL_COMPONENTS
1367 "
1368
1369 EXAMPLE_LIST="
1370     avio_reading_example
1371     avio_dir_cmd_example
1372     decoding_encoding_example
1373     demuxing_decoding_example
1374     extract_mvs_example
1375     filter_audio_example
1376     filtering_audio_example
1377     filtering_video_example
1378     metadata_example
1379     muxing_example
1380     qsvdec_example
1381     remuxing_example
1382     resampling_audio_example
1383     scaling_video_example
1384     transcode_aac_example
1385     transcoding_example
1386 "
1387
1388 EXTERNAL_LIBRARY_LIST="
1389     avisynth
1390     bzlib
1391     chromaprint
1392     crystalhd
1393     decklink
1394     frei0r
1395     gnutls
1396     iconv
1397     ladspa
1398     libaacplus
1399     libass
1400     libbluray
1401     libbs2b
1402     libcaca
1403     libcdio
1404     libcelt
1405     libdc1394
1406     libdcadec
1407     libfaac
1408     libfdk_aac
1409     libflite
1410     libfontconfig
1411     libfreetype
1412     libfribidi
1413     libgme
1414     libgsm
1415     libiec61883
1416     libilbc
1417     libkvazaar
1418     libmfx
1419     libmodplug
1420     libmp3lame
1421     libnut
1422     libopencore_amrnb
1423     libopencore_amrwb
1424     libopencv
1425     libopenh264
1426     libopenjpeg
1427     libopus
1428     libpulse
1429     libquvi
1430     librtmp
1431     librubberband
1432     libschroedinger
1433     libshine
1434     libsmbclient
1435     libsnappy
1436     libsoxr
1437     libspeex
1438     libssh
1439     libstagefright_h264
1440     libtesseract
1441     libtheora
1442     libtwolame
1443     libutvideo
1444     libv4l2
1445     libvidstab
1446     libvo_aacenc
1447     libvo_amrwbenc
1448     libvorbis
1449     libvpx
1450     libwavpack
1451     libwebp
1452     libx264
1453     libx265
1454     libxavs
1455     libxcb
1456     libxcb_shm
1457     libxcb_shape
1458     libxcb_xfixes
1459     libxvid
1460     libzimg
1461     libzmq
1462     libzvbi
1463     lzma
1464     mmal
1465     nvenc
1466     openal
1467     opencl
1468     opengl
1469     openssl
1470     sdl
1471     securetransport
1472     x11grab
1473     xlib
1474     zlib
1475 "
1476
1477 DOCUMENT_LIST="
1478     doc
1479     htmlpages
1480     manpages
1481     podpages
1482     txtpages
1483 "
1484
1485 FEATURE_LIST="
1486     ftrapv
1487     gray
1488     hardcoded_tables
1489     runtime_cpudetect
1490     safe_bitstream_reader
1491     shared
1492     small
1493     static
1494     swscale_alpha
1495 "
1496
1497 HWACCEL_LIST="
1498     d3d11va
1499     dxva2
1500     vaapi
1501     vda
1502     vdpau
1503     videotoolbox
1504     xvmc
1505 "
1506
1507 LIBRARY_LIST="
1508     avcodec
1509     avdevice
1510     avfilter
1511     avformat
1512     avresample
1513     avutil
1514     postproc
1515     swresample
1516     swscale
1517 "
1518
1519 LICENSE_LIST="
1520     gpl
1521     nonfree
1522     version3
1523 "
1524
1525 PROGRAM_LIST="
1526     ffplay
1527     ffprobe
1528     ffserver
1529     ffmpeg
1530 "
1531
1532 SUBSYSTEM_LIST="
1533     dct
1534     dwt
1535     error_resilience
1536     faan
1537     fast_unaligned
1538     fft
1539     lsp
1540     lzo
1541     mdct
1542     pixelutils
1543     network
1544     rdft
1545 "
1546
1547 CONFIG_LIST="
1548     $COMPONENT_LIST
1549     $DOCUMENT_LIST
1550     $EXAMPLE_LIST
1551     $EXTERNAL_LIBRARY_LIST
1552     $FEATURE_LIST
1553     $HWACCEL_LIST
1554     $LICENSE_LIST
1555     $LIBRARY_LIST
1556     $PROGRAM_LIST
1557     $SUBSYSTEM_LIST
1558     fontconfig
1559     incompatible_libav_abi
1560     memalign_hack
1561     memory_poisoning
1562     neon_clobber_test
1563     pic
1564     pod2man
1565     raise_major
1566     thumb
1567     valgrind_backtrace
1568     xmm_clobber_test
1569 "
1570
1571 THREADS_LIST="
1572     pthreads
1573     os2threads
1574     w32threads
1575 "
1576
1577 ATOMICS_LIST="
1578     atomics_gcc
1579     atomics_suncc
1580     atomics_win32
1581 "
1582
1583 ARCH_LIST="
1584     aarch64
1585     alpha
1586     arm
1587     avr32
1588     avr32_ap
1589     avr32_uc
1590     bfin
1591     ia64
1592     m68k
1593     mips
1594     mips64
1595     parisc
1596     ppc
1597     ppc64
1598     s390
1599     sh4
1600     sparc
1601     sparc64
1602     tilegx
1603     tilepro
1604     tomi
1605     x86
1606     x86_32
1607     x86_64
1608 "
1609
1610 ARCH_EXT_LIST_ARM="
1611     armv5te
1612     armv6
1613     armv6t2
1614     armv8
1615     neon
1616     vfp
1617     vfpv3
1618     setend
1619 "
1620
1621 ARCH_EXT_LIST_MIPS="
1622     mipsfpu
1623     mips32r2
1624     mips32r5
1625     mips64r6
1626     mipsdspr1
1627     mipsdspr2
1628     msa
1629 "
1630
1631 ARCH_EXT_LIST_LOONGSON="
1632     loongson2
1633     loongson3
1634     mmi
1635 "
1636
1637 ARCH_EXT_LIST_X86_SIMD="
1638     amd3dnow
1639     amd3dnowext
1640     avx
1641     avx2
1642     fma3
1643     fma4
1644     mmx
1645     mmxext
1646     sse
1647     sse2
1648     sse3
1649     sse4
1650     sse42
1651     ssse3
1652     xop
1653 "
1654
1655 ARCH_EXT_LIST_PPC="
1656     altivec
1657     dcbzl
1658     ldbrx
1659     power8
1660     ppc4xx
1661     vsx
1662 "
1663
1664 ARCH_EXT_LIST_X86="
1665     $ARCH_EXT_LIST_X86_SIMD
1666     cpunop
1667     i686
1668 "
1669
1670 ARCH_EXT_LIST="
1671     $ARCH_EXT_LIST_ARM
1672     $ARCH_EXT_LIST_PPC
1673     $ARCH_EXT_LIST_X86
1674     $ARCH_EXT_LIST_MIPS
1675     $ARCH_EXT_LIST_LOONGSON
1676 "
1677
1678 ARCH_FEATURES="
1679     aligned_stack
1680     fast_64bit
1681     fast_clz
1682     fast_cmov
1683     local_aligned_8
1684     local_aligned_16
1685     local_aligned_32
1686     simd_align_16
1687 "
1688
1689 BUILTIN_LIST="
1690     atomic_cas_ptr
1691     atomic_compare_exchange
1692     machine_rw_barrier
1693     MemoryBarrier
1694     mm_empty
1695     rdtsc
1696     sarestart
1697     sync_val_compare_and_swap
1698 "
1699 HAVE_LIST_CMDLINE="
1700     inline_asm
1701     symver
1702     yasm
1703 "
1704
1705 HAVE_LIST_PUB="
1706     bigendian
1707     fast_unaligned
1708     incompatible_libav_abi
1709 "
1710
1711 HEADERS_LIST="
1712     alsa_asoundlib_h
1713     altivec_h
1714     arpa_inet_h
1715     asm_types_h
1716     cdio_paranoia_h
1717     cdio_paranoia_paranoia_h
1718     dev_bktr_ioctl_bt848_h
1719     dev_bktr_ioctl_meteor_h
1720     dev_ic_bt8xx_h
1721     dev_video_bktr_ioctl_bt848_h
1722     dev_video_meteor_ioctl_meteor_h
1723     direct_h
1724     dirent_h
1725     dlfcn_h
1726     d3d11_h
1727     dxva_h
1728     ES2_gl_h
1729     gsm_h
1730     io_h
1731     mach_mach_time_h
1732     machine_ioctl_bt848_h
1733     machine_ioctl_meteor_h
1734     malloc_h
1735     openjpeg_1_5_openjpeg_h
1736     OpenGL_gl3_h
1737     poll_h
1738     sndio_h
1739     soundcard_h
1740     sys_mman_h
1741     sys_param_h
1742     sys_resource_h
1743     sys_select_h
1744     sys_soundcard_h
1745     sys_time_h
1746     sys_un_h
1747     sys_videoio_h
1748     termios_h
1749     udplite_h
1750     unistd_h
1751     valgrind_valgrind_h
1752     windows_h
1753     winsock2_h
1754 "
1755
1756 INTRINSICS_LIST="
1757     intrinsics_neon
1758 "
1759
1760 MATH_FUNCS="
1761     atanf
1762     atan2f
1763     cbrt
1764     cbrtf
1765     copysign
1766     cosf
1767     erf
1768     exp2
1769     exp2f
1770     expf
1771     isinf
1772     isnan
1773     ldexpf
1774     llrint
1775     llrintf
1776     log2
1777     log2f
1778     log10f
1779     lrint
1780     lrintf
1781     powf
1782     rint
1783     round
1784     roundf
1785     sinf
1786     trunc
1787     truncf
1788 "
1789
1790 SYSTEM_FUNCS="
1791     access
1792     aligned_malloc
1793     clock_gettime
1794     closesocket
1795     CommandLineToArgvW
1796     CoTaskMemFree
1797     CryptGenRandom
1798     dlopen
1799     fcntl
1800     flt_lim
1801     fork
1802     getaddrinfo
1803     gethrtime
1804     getopt
1805     GetProcessAffinityMask
1806     GetProcessMemoryInfo
1807     GetProcessTimes
1808     getrusage
1809     getservbyport
1810     GetSystemTimeAsFileTime
1811     gettimeofday
1812     glob
1813     glXGetProcAddress
1814     gmtime_r
1815     inet_aton
1816     isatty
1817     jack_port_get_latency_range
1818     kbhit
1819     localtime_r
1820     lstat
1821     lzo1x_999_compress
1822     mach_absolute_time
1823     MapViewOfFile
1824     memalign
1825     mkstemp
1826     mmap
1827     mprotect
1828     nanosleep
1829     PeekNamedPipe
1830     posix_memalign
1831     pthread_cancel
1832     sched_getaffinity
1833     SetConsoleTextAttribute
1834     SetConsoleCtrlHandler
1835     setmode
1836     setrlimit
1837     Sleep
1838     strerror_r
1839     sysconf
1840     sysctl
1841     usleep
1842     UTGetOSTypeFromString
1843     VirtualAlloc
1844     wglGetProcAddress
1845 "
1846
1847 TOOLCHAIN_FEATURES="
1848     as_dn_directive
1849     as_func
1850     as_object_arch
1851     asm_mod_q
1852     attribute_may_alias
1853     attribute_packed
1854     ebp_available
1855     ebx_available
1856     gnu_as
1857     gnu_windres
1858     ibm_asm
1859     inline_asm_labels
1860     inline_asm_nonlocal_labels
1861     inline_asm_direct_symbol_refs
1862     pragma_deprecated
1863     rsync_contimeout
1864     symver_asm_label
1865     symver_gnu_asm
1866     vfp_args
1867     xform_asm
1868     xmm_clobbers
1869 "
1870
1871 TYPES_LIST="
1872     CONDITION_VARIABLE_Ptr
1873     socklen_t
1874     struct_addrinfo
1875     struct_dcadec_exss_info_matrix_encoding
1876     struct_group_source_req
1877     struct_ip_mreq_source
1878     struct_ipv6_mreq
1879     struct_pollfd
1880     struct_rusage_ru_maxrss
1881     struct_sctp_event_subscribe
1882     struct_sockaddr_in6
1883     struct_sockaddr_sa_len
1884     struct_sockaddr_storage
1885     struct_stat_st_mtim_tv_nsec
1886     struct_v4l2_frmivalenum_discrete
1887 "
1888
1889 HAVE_LIST="
1890     $ARCH_EXT_LIST
1891     $(add_suffix _external $ARCH_EXT_LIST)
1892     $(add_suffix _inline   $ARCH_EXT_LIST)
1893     $ARCH_FEATURES
1894     $ATOMICS_LIST
1895     $BUILTIN_LIST
1896     $HAVE_LIST_CMDLINE
1897     $HAVE_LIST_PUB
1898     $HEADERS_LIST
1899     $INTRINSICS_LIST
1900     $MATH_FUNCS
1901     $SYSTEM_FUNCS
1902     $THREADS_LIST
1903     $TOOLCHAIN_FEATURES
1904     $TYPES_LIST
1905     atomics_native
1906     dos_paths
1907     dxva2api_cobj
1908     dxva2_lib
1909     winrt
1910     libc_msvcrt
1911     libdc1394_1
1912     libdc1394_2
1913     makeinfo
1914     makeinfo_html
1915     perl
1916     pod2man
1917     sdl
1918     section_data_rel_ro
1919     texi2html
1920     threads
1921     vaapi_x11
1922     vdpau_x11
1923     xlib
1924 "
1925
1926 # options emitted with CONFIG_ prefix but not available on the command line
1927 CONFIG_EXTRA="
1928     aandcttables
1929     ac3dsp
1930     audio_frame_queue
1931     audiodsp
1932     blockdsp
1933     bswapdsp
1934     cabac
1935     dvprofile
1936     exif
1937     faandct
1938     faanidct
1939     fdctdsp
1940     flacdsp
1941     fmtconvert
1942     frame_thread_encoder
1943     g722dsp
1944     gcrypt
1945     gmp
1946     golomb
1947     gplv3
1948     h263dsp
1949     h264chroma
1950     h264dsp
1951     h264pred
1952     h264qpel
1953     hpeldsp
1954     huffman
1955     huffyuvdsp
1956     huffyuvencdsp
1957     idctdsp
1958     iirfilter
1959     imdct15
1960     intrax8
1961     ividsp
1962     jpegtables
1963     libx262
1964     lgplv3
1965     llauddsp
1966     llviddsp
1967     lpc
1968     lzf
1969     me_cmp
1970     mpeg_er
1971     mpegaudio
1972     mpegaudiodsp
1973     mpegvideo
1974     mpegvideoenc
1975     mss34dsp
1976     pixblockdsp
1977     qpeldsp
1978     qsv
1979     qsvdec
1980     qsvenc
1981     rangecoder
1982     riffdec
1983     riffenc
1984     rtpdec
1985     rtpenc_chain
1986     rv34dsp
1987     sinewin
1988     snappy
1989     startcode
1990     texturedsp
1991     texturedspenc
1992     tpeldsp
1993     videodsp
1994     vp3dsp
1995     vp56dsp
1996     vp8dsp
1997     wma_freqs
1998     wmv2dsp
1999 "
2000
2001 CMDLINE_SELECT="
2002     $ARCH_EXT_LIST
2003     $CONFIG_LIST
2004     $HAVE_LIST_CMDLINE
2005     $THREADS_LIST
2006     asm
2007     cross_compile
2008     debug
2009     extra_warnings
2010     logging
2011     lto
2012     optimizations
2013     rpath
2014     stripping
2015 "
2016
2017 PATHS_LIST="
2018     bindir
2019     datadir
2020     docdir
2021     incdir
2022     libdir
2023     mandir
2024     pkgconfigdir
2025     prefix
2026     shlibdir
2027 "
2028
2029 CMDLINE_SET="
2030     $PATHS_LIST
2031     ar
2032     arch
2033     as
2034     assert_level
2035     build_suffix
2036     cc
2037     cpu
2038     cross_prefix
2039     custom_allocator
2040     cxx
2041     dep_cc
2042     doxygen
2043     env
2044     extra_version
2045     gas
2046     host_cc
2047     host_cflags
2048     host_ld
2049     host_ldflags
2050     host_libs
2051     host_os
2052     install
2053     ld
2054     logfile
2055     malloc_prefix
2056     nm
2057     optflags
2058     pkg_config
2059     pkg_config_flags
2060     progs_suffix
2061     random_seed
2062     ranlib
2063     samples
2064     strip
2065     sws_max_filter_size
2066     sysinclude
2067     sysroot
2068     target_exec
2069     target_os
2070     target_path
2071     target_samples
2072     tempprefix
2073     toolchain
2074     valgrind
2075     yasmexe
2076 "
2077
2078 CMDLINE_APPEND="
2079     extra_cflags
2080     extra_cxxflags
2081     host_cppflags
2082 "
2083
2084 # code dependency declarations
2085
2086 # architecture extensions
2087
2088 armv5te_deps="arm"
2089 armv6_deps="arm"
2090 armv6t2_deps="arm"
2091 armv8_deps="aarch64"
2092 neon_deps_any="aarch64 arm"
2093 intrinsics_neon_deps="neon"
2094 vfp_deps_any="aarch64 arm"
2095 vfpv3_deps="vfp"
2096 setend_deps="arm"
2097
2098 map 'eval ${v}_inline_deps=inline_asm' $ARCH_EXT_LIST_ARM
2099
2100 mipsfpu_deps="mips"
2101 mipsdspr1_deps="mips"
2102 mipsdspr2_deps="mips"
2103 mips32r2_deps="mips"
2104 mips32r5_deps="mips"
2105 mips64r6_deps="mips"
2106 msa_deps="mips"
2107 mmi_deps="mips"
2108
2109 altivec_deps="ppc"
2110 dcbzl_deps="ppc"
2111 ldbrx_deps="ppc"
2112 ppc4xx_deps="ppc"
2113 vsx_deps="altivec"
2114 power8_deps="vsx"
2115
2116 cpunop_deps="i686"
2117 x86_64_select="i686"
2118 x86_64_suggest="fast_cmov"
2119
2120 amd3dnow_deps="mmx"
2121 amd3dnowext_deps="amd3dnow"
2122 i686_deps="x86"
2123 mmx_deps="x86"
2124 mmxext_deps="mmx"
2125 sse_deps="mmxext"
2126 sse2_deps="sse"
2127 sse3_deps="sse2"
2128 ssse3_deps="sse3"
2129 sse4_deps="ssse3"
2130 sse42_deps="sse4"
2131 avx_deps="sse42"
2132 xop_deps="avx"
2133 fma3_deps="avx"
2134 fma4_deps="avx"
2135 avx2_deps="avx"
2136
2137 mmx_external_deps="yasm"
2138 mmx_inline_deps="inline_asm"
2139 mmx_suggest="mmx_external mmx_inline"
2140
2141 for ext in $(filter_out mmx $ARCH_EXT_LIST_X86_SIMD); do
2142     eval dep=\$${ext}_deps
2143     eval ${ext}_external_deps='"${dep}_external"'
2144     eval ${ext}_inline_deps='"${dep}_inline"'
2145     eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
2146 done
2147
2148 aligned_stack_if_any="aarch64 ppc x86"
2149 fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
2150 fast_clz_if_any="aarch64 alpha avr32 mips ppc x86"
2151 fast_unaligned_if_any="aarch64 ppc x86"
2152 simd_align_16_if_any="altivec neon sse"
2153
2154 # system capabilities
2155 symver_if_any="symver_asm_label symver_gnu_asm"
2156 valgrind_backtrace_deps="!optimizations valgrind_valgrind_h"
2157
2158 # threading support
2159 atomics_gcc_if_any="sync_val_compare_and_swap atomic_compare_exchange"
2160 atomics_suncc_if="atomic_cas_ptr machine_rw_barrier"
2161 atomics_win32_if="MemoryBarrier"
2162 atomics_native_if_any="$ATOMICS_LIST"
2163 w32threads_deps="atomics_native"
2164 threads_if_any="$THREADS_LIST"
2165
2166 # subsystems
2167 dct_select="rdft"
2168 error_resilience_select="me_cmp"
2169 faandct_deps="faan fdctdsp"
2170 faanidct_deps="faan idctdsp"
2171 frame_thread_encoder_deps="encoders threads"
2172 intrax8_select="error_resilience"
2173 mdct_select="fft"
2174 rdft_select="fft"
2175 me_cmp_select="fdctdsp idctdsp pixblockdsp"
2176 mpeg_er_select="error_resilience"
2177 mpegaudio_select="mpegaudiodsp"
2178 mpegaudiodsp_select="dct"
2179 mpegvideo_select="blockdsp h264chroma hpeldsp idctdsp me_cmp mpeg_er videodsp"
2180 mpegvideoenc_select="me_cmp mpegvideo pixblockdsp qpeldsp"
2181 qsvdec_select="qsv"
2182 qsvenc_select="qsv"
2183
2184 # decoders / encoders
2185 aac_decoder_select="imdct15 mdct sinewin"
2186 aac_fixed_decoder_select="mdct sinewin"
2187 aac_encoder_select="audio_frame_queue iirfilter lpc mdct sinewin"
2188 aac_latm_decoder_select="aac_decoder aac_latm_parser"
2189 ac3_decoder_select="ac3_parser ac3dsp bswapdsp fmtconvert mdct"
2190 ac3_fixed_decoder_select="ac3_parser ac3dsp bswapdsp mdct"
2191 ac3_encoder_select="ac3dsp audiodsp mdct me_cmp"
2192 ac3_fixed_encoder_select="ac3dsp audiodsp mdct me_cmp"
2193 adpcm_g722_decoder_select="g722dsp"
2194 adpcm_g722_encoder_select="g722dsp"
2195 aic_decoder_select="golomb idctdsp"
2196 alac_encoder_select="lpc"
2197 als_decoder_select="bswapdsp"
2198 amrnb_decoder_select="lsp"
2199 amrwb_decoder_select="lsp"
2200 amv_decoder_select="sp5x_decoder exif"
2201 amv_encoder_select="aandcttables jpegtables mpegvideoenc"
2202 ape_decoder_select="bswapdsp llauddsp"
2203 apng_decoder_select="zlib"
2204 apng_encoder_select="huffyuvencdsp zlib"
2205 asv1_decoder_select="blockdsp bswapdsp idctdsp"
2206 asv1_encoder_select="bswapdsp fdctdsp pixblockdsp"
2207 asv2_decoder_select="blockdsp bswapdsp idctdsp"
2208 asv2_encoder_select="bswapdsp fdctdsp pixblockdsp"
2209 atrac1_decoder_select="mdct sinewin"
2210 atrac3_decoder_select="mdct"
2211 atrac3p_decoder_select="mdct sinewin"
2212 avrn_decoder_select="exif jpegtables"
2213 bink_decoder_select="blockdsp hpeldsp"
2214 binkaudio_dct_decoder_select="mdct rdft dct sinewin wma_freqs"
2215 binkaudio_rdft_decoder_select="mdct rdft sinewin wma_freqs"
2216 cavs_decoder_select="blockdsp golomb h264chroma idctdsp qpeldsp videodsp"
2217 cllc_decoder_select="bswapdsp"
2218 comfortnoise_encoder_select="lpc"
2219 cook_decoder_select="audiodsp mdct sinewin"
2220 cscd_decoder_select="lzo"
2221 cscd_decoder_suggest="zlib"
2222 dca_decoder_select="fmtconvert mdct"
2223 dds_decoder_select="texturedsp"
2224 dirac_decoder_select="dwt golomb videodsp mpegvideoenc"
2225 dnxhd_decoder_select="blockdsp idctdsp"
2226 dnxhd_encoder_select="aandcttables blockdsp fdctdsp idctdsp mpegvideoenc pixblockdsp"
2227 dvvideo_decoder_select="dvprofile idctdsp"
2228 dvvideo_encoder_select="dvprofile fdctdsp me_cmp pixblockdsp"
2229 dxa_decoder_select="zlib"
2230 dxv_decoder_select="lzf texturedsp"
2231 eac3_decoder_select="ac3_decoder"
2232 eac3_encoder_select="ac3_encoder"
2233 eamad_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpegvideo"
2234 eatgq_decoder_select="aandcttables"
2235 eatqi_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpeg1video_decoder"
2236 exr_decoder_select="zlib"
2237 ffv1_decoder_select="golomb rangecoder"
2238 ffv1_encoder_select="rangecoder"
2239 ffvhuff_decoder_select="huffyuv_decoder"
2240 ffvhuff_encoder_select="huffyuv_encoder"
2241 fic_decoder_select="golomb"
2242 flac_decoder_select="flacdsp golomb"
2243 flac_encoder_select="bswapdsp flacdsp golomb lpc"
2244 flashsv_decoder_select="zlib"
2245 flashsv_encoder_select="zlib"
2246 flashsv2_encoder_select="zlib"
2247 flashsv2_decoder_select="zlib"
2248 flv_decoder_select="h263_decoder"
2249 flv_encoder_select="h263_encoder"
2250 fourxm_decoder_select="blockdsp bswapdsp"
2251 fraps_decoder_select="bswapdsp huffman"
2252 g2m_decoder_select="blockdsp idctdsp jpegtables zlib"
2253 g729_decoder_select="audiodsp"
2254 h261_decoder_select="mpegvideo"
2255 h261_encoder_select="aandcttables mpegvideoenc"
2256 h263_decoder_select="h263_parser h263dsp mpegvideo qpeldsp"
2257 h263_encoder_select="aandcttables h263dsp mpegvideoenc"
2258 h263i_decoder_select="h263_decoder"
2259 h263p_decoder_select="h263_decoder"
2260 h263p_encoder_select="h263_encoder"
2261 h264_decoder_select="cabac golomb h264chroma h264dsp h264pred h264qpel startcode videodsp"
2262 h264_decoder_suggest="error_resilience"
2263 h264_qsv_decoder_deps="libmfx"
2264 h264_qsv_decoder_select="h264_mp4toannexb_bsf h264_parser qsvdec h264_qsv_hwaccel"
2265 h264_qsv_encoder_deps="libmfx"
2266 h264_qsv_encoder_select="qsvenc"
2267 hap_decoder_select="snappy texturedsp"
2268 hap_encoder_deps="libsnappy"
2269 hap_encoder_select="texturedspenc"
2270 hevc_decoder_select="bswapdsp cabac golomb videodsp"
2271 hevc_qsv_encoder_deps="libmfx"
2272 hevc_qsv_decoder_deps="libmfx"
2273 hevc_qsv_decoder_select="hevc_mp4toannexb_bsf hevc_parser qsvdec hevc_qsv_hwaccel"
2274 hevc_qsv_encoder_select="qsvenc"
2275 huffyuv_decoder_select="bswapdsp huffyuvdsp llviddsp"
2276 huffyuv_encoder_select="bswapdsp huffman huffyuvencdsp llviddsp"
2277 iac_decoder_select="imc_decoder"
2278 imc_decoder_select="bswapdsp fft mdct sinewin"
2279 indeo3_decoder_select="hpeldsp"
2280 indeo4_decoder_select="ividsp"
2281 indeo5_decoder_select="ividsp"
2282 interplay_video_decoder_select="hpeldsp"
2283 jpegls_decoder_select="golomb mjpeg_decoder"
2284 jpegls_encoder_select="golomb"
2285 jv_decoder_select="blockdsp"
2286 lagarith_decoder_select="huffyuvdsp"
2287 ljpeg_encoder_select="aandcttables idctdsp jpegtables"
2288 loco_decoder_select="golomb"
2289 mdec_decoder_select="blockdsp idctdsp mpegvideo"
2290 metasound_decoder_select="lsp mdct sinewin"
2291 mimic_decoder_select="blockdsp bswapdsp hpeldsp idctdsp"
2292 mjpeg_decoder_select="blockdsp hpeldsp exif idctdsp jpegtables"
2293 mjpeg_encoder_select="aandcttables jpegtables mpegvideoenc"
2294 mjpegb_decoder_select="mjpeg_decoder"
2295 mlp_decoder_select="mlp_parser"
2296 motionpixels_decoder_select="bswapdsp"
2297 mp1_decoder_select="mpegaudio"
2298 mp1float_decoder_select="mpegaudio"
2299 mp2_decoder_select="mpegaudio"
2300 mp2float_decoder_select="mpegaudio"
2301 mp3_decoder_select="mpegaudio"
2302 mp3adu_decoder_select="mpegaudio"
2303 mp3adufloat_decoder_select="mpegaudio"
2304 mp3float_decoder_select="mpegaudio"
2305 mp3on4_decoder_select="mpegaudio"
2306 mp3on4float_decoder_select="mpegaudio"
2307 mpc7_decoder_select="bswapdsp mpegaudiodsp"
2308 mpc8_decoder_select="mpegaudiodsp"
2309 mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
2310 mpeg_xvmc_decoder_select="mpeg2video_decoder"
2311 mpegvideo_decoder_select="mpegvideo"
2312 mpeg1video_decoder_select="mpegvideo"
2313 mpeg1video_encoder_select="aandcttables mpegvideoenc h263dsp"
2314 mpeg2video_decoder_select="mpegvideo"
2315 mpeg2video_encoder_select="aandcttables mpegvideoenc h263dsp"
2316 mpeg2_qsv_decoder_deps="libmfx"
2317 mpeg2_qsv_decoder_select="qsvdec mpeg2_qsv_hwaccel"
2318 mpeg2_qsv_encoder_deps="libmfx"
2319 mpeg2_qsv_encoder_select="qsvenc"
2320 mpeg4_decoder_select="h263_decoder mpeg4video_parser"
2321 mpeg4_encoder_select="h263_encoder"
2322 msa1_decoder_select="mss34dsp"
2323 msmpeg4v1_decoder_select="h263_decoder"
2324 msmpeg4v2_decoder_select="h263_decoder"
2325 msmpeg4v2_encoder_select="h263_encoder"
2326 msmpeg4v3_decoder_select="h263_decoder"
2327 msmpeg4v3_encoder_select="h263_encoder"
2328 mss2_decoder_select="vc1_decoder"
2329 mts2_decoder_select="mss34dsp"
2330 mxpeg_decoder_select="mjpeg_decoder"
2331 nellymoser_decoder_select="mdct sinewin"
2332 nellymoser_encoder_select="audio_frame_queue mdct sinewin"
2333 nuv_decoder_select="idctdsp lzo"
2334 on2avc_decoder_select="mdct"
2335 opus_decoder_deps="swresample"
2336 opus_decoder_select="imdct15"
2337 png_decoder_select="zlib"
2338 png_encoder_select="huffyuvencdsp zlib"
2339 prores_decoder_select="blockdsp idctdsp"
2340 prores_encoder_select="fdctdsp"
2341 qcelp_decoder_select="lsp"
2342 qdm2_decoder_select="mdct rdft mpegaudiodsp"
2343 ra_144_encoder_select="audio_frame_queue lpc audiodsp"
2344 ra_144_decoder_select="audiodsp"
2345 ralf_decoder_select="golomb"
2346 rawvideo_decoder_select="bswapdsp"
2347 rscc_decoder_select="zlib"
2348 rtjpeg_decoder_select="me_cmp"
2349 rv10_decoder_select="h263_decoder"
2350 rv10_encoder_select="h263_encoder"
2351 rv20_decoder_select="h263_decoder"
2352 rv20_encoder_select="h263_encoder"
2353 rv30_decoder_select="golomb h264pred h264qpel mpegvideo rv34dsp"
2354 rv40_decoder_select="golomb h264pred h264qpel mpegvideo rv34dsp"
2355 screenpresso_decoder_select="zlib"
2356 shorten_decoder_select="golomb"
2357 sipr_decoder_select="lsp"
2358 snow_decoder_select="dwt h264qpel hpeldsp me_cmp rangecoder videodsp"
2359 snow_encoder_select="aandcttables dwt h264qpel hpeldsp me_cmp mpegvideoenc rangecoder"
2360 sonic_decoder_select="golomb rangecoder"
2361 sonic_encoder_select="golomb rangecoder"
2362 sonic_ls_encoder_select="golomb rangecoder"
2363 sp5x_decoder_select="mjpeg_decoder"
2364 svq1_decoder_select="hpeldsp"
2365 svq1_encoder_select="aandcttables hpeldsp me_cmp mpegvideoenc"
2366 svq3_decoder_select="h264_decoder hpeldsp tpeldsp"
2367 svq3_decoder_suggest="zlib"
2368 tak_decoder_select="audiodsp"
2369 tdsc_decoder_select="zlib mjpeg_decoder"
2370 theora_decoder_select="vp3_decoder"
2371 thp_decoder_select="mjpeg_decoder"
2372 tiff_decoder_suggest="zlib lzma"
2373 tiff_encoder_suggest="zlib"
2374 truehd_decoder_select="mlp_parser"
2375 truemotion2_decoder_select="bswapdsp"
2376 truespeech_decoder_select="bswapdsp"
2377 tscc_decoder_select="zlib"
2378 twinvq_decoder_select="mdct lsp sinewin"
2379 txd_decoder_select="texturedsp"
2380 utvideo_decoder_select="bswapdsp"
2381 utvideo_encoder_select="bswapdsp huffman huffyuvencdsp"
2382 vble_decoder_select="huffyuvdsp"
2383 vc1_decoder_select="blockdsp h263_decoder h264qpel intrax8 qpeldsp startcode"
2384 vc1image_decoder_select="vc1_decoder"
2385 vc1_qsv_decoder_deps="libmfx"
2386 vc1_qsv_decoder_select="qsvdec vc1_qsv_hwaccel"
2387 vorbis_decoder_select="mdct"
2388 vorbis_encoder_select="mdct"
2389 vp3_decoder_select="hpeldsp vp3dsp videodsp"
2390 vp5_decoder_select="h264chroma hpeldsp videodsp vp3dsp vp56dsp"
2391 vp6_decoder_select="h264chroma hpeldsp huffman videodsp vp3dsp vp56dsp"
2392 vp6a_decoder_select="vp6_decoder"
2393 vp6f_decoder_select="vp6_decoder"
2394 vp7_decoder_select="h264pred videodsp vp8dsp"
2395 vp8_decoder_select="h264pred videodsp vp8dsp"
2396 vp9_decoder_select="videodsp vp9_parser"
2397 webp_decoder_select="vp8_decoder"
2398 wmalossless_decoder_select="llauddsp"
2399 wmapro_decoder_select="mdct sinewin wma_freqs"
2400 wmav1_decoder_select="mdct sinewin wma_freqs"
2401 wmav1_encoder_select="mdct sinewin wma_freqs"
2402 wmav2_decoder_select="mdct sinewin wma_freqs"
2403 wmav2_encoder_select="mdct sinewin wma_freqs"
2404 wmavoice_decoder_select="lsp rdft dct mdct sinewin"
2405 wmv1_decoder_select="h263_decoder"
2406 wmv1_encoder_select="h263_encoder"
2407 wmv2_decoder_select="blockdsp h263_decoder idctdsp intrax8 videodsp wmv2dsp"
2408 wmv2_encoder_select="h263_encoder wmv2dsp"
2409 wmv3_decoder_select="vc1_decoder"
2410 wmv3image_decoder_select="wmv3_decoder"
2411 zerocodec_decoder_select="zlib"
2412 zlib_decoder_select="zlib"
2413 zlib_encoder_select="zlib"
2414 zmbv_decoder_select="zlib"
2415 zmbv_encoder_select="zlib"
2416
2417 # hardware accelerators
2418 crystalhd_deps="libcrystalhd_libcrystalhd_if_h"
2419 d3d11va_deps="d3d11_h dxva_h ID3D11VideoDecoder ID3D11VideoContext"
2420 dxva2_deps="dxva2api_h DXVA2_ConfigPictureDecode"
2421 vaapi_deps="va_va_h"
2422 vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
2423 vda_extralibs="-framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore"
2424 vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
2425 videotoolbox_deps="VideoToolbox_VideoToolbox_h pthreads"
2426 videotoolbox_extralibs="-framework CoreFoundation -framework VideoToolbox -framework CoreMedia -framework QuartzCore -framework CoreVideo"
2427 xvmc_deps="X11_extensions_XvMClib_h"
2428
2429 h263_vaapi_hwaccel_deps="vaapi"
2430 h263_vaapi_hwaccel_select="h263_decoder"
2431 h263_vdpau_hwaccel_deps="vdpau"
2432 h263_vdpau_hwaccel_select="h263_decoder"
2433 h263_videotoolbox_hwaccel_deps="videotoolbox"
2434 h263_videotoolbox_hwaccel_select="h263_decoder"
2435 h264_crystalhd_decoder_select="crystalhd h264_mp4toannexb_bsf h264_parser"
2436 h264_d3d11va_hwaccel_deps="d3d11va"
2437 h264_d3d11va_hwaccel_select="h264_decoder"
2438 h264_dxva2_hwaccel_deps="dxva2"
2439 h264_dxva2_hwaccel_select="h264_decoder"
2440 h264_mmal_decoder_deps="mmal"
2441 h264_mmal_hwaccel_deps="mmal"
2442 h264_mmal_decoder_select="h264_decoder"
2443 h264_mmal_encoder_deps="mmal"
2444 h264_qsv_hwaccel_deps="libmfx"
2445 h264_vaapi_hwaccel_deps="vaapi"
2446 h264_vaapi_hwaccel_select="h264_decoder"
2447 h264_vda_decoder_deps="vda"
2448 h264_vda_decoder_select="h264_decoder"
2449 h264_vda_hwaccel_deps="vda"
2450 h264_vda_hwaccel_select="h264_decoder"
2451 h264_vda_old_hwaccel_deps="vda"
2452 h264_vda_old_hwaccel_select="h264_decoder"
2453 h264_vdpau_decoder_deps="vdpau"
2454 h264_vdpau_decoder_select="h264_decoder"
2455 h264_vdpau_hwaccel_deps="vdpau"
2456 h264_vdpau_hwaccel_select="h264_decoder"
2457 h264_videotoolbox_hwaccel_deps="videotoolbox"
2458 h264_videotoolbox_hwaccel_select="h264_decoder"
2459 hevc_d3d11va_hwaccel_deps="d3d11va DXVA_PicParams_HEVC"
2460 hevc_d3d11va_hwaccel_select="hevc_decoder"
2461 hevc_dxva2_hwaccel_deps="dxva2 DXVA_PicParams_HEVC"
2462 hevc_dxva2_hwaccel_select="hevc_decoder"
2463 hevc_qsv_hwaccel_deps="libmfx"
2464 hevc_vaapi_hwaccel_deps="vaapi VAPictureParameterBufferHEVC"
2465 hevc_vaapi_hwaccel_select="hevc_decoder"
2466 hevc_vdpau_hwaccel_deps="vdpau VdpPictureInfoHEVC"
2467 hevc_vdpau_hwaccel_select="hevc_decoder"
2468 mpeg_vdpau_decoder_deps="vdpau"
2469 mpeg_vdpau_decoder_select="mpeg2video_decoder"
2470 mpeg_xvmc_hwaccel_deps="xvmc"
2471 mpeg_xvmc_hwaccel_select="mpeg2video_decoder"
2472 mpeg1_vdpau_decoder_deps="vdpau"
2473 mpeg1_vdpau_decoder_select="mpeg1video_decoder"
2474 mpeg1_vdpau_hwaccel_deps="vdpau"
2475 mpeg1_vdpau_hwaccel_select="mpeg1video_decoder"
2476 mpeg1_videotoolbox_hwaccel_deps="videotoolbox"
2477 mpeg1_videotoolbox_hwaccel_select="mpeg1video_decoder"
2478 mpeg1_xvmc_hwaccel_deps="xvmc"
2479 mpeg1_xvmc_hwaccel_select="mpeg1video_decoder"
2480 mpeg2_crystalhd_decoder_select="crystalhd"
2481 mpeg2_d3d11va_hwaccel_deps="d3d11va"
2482 mpeg2_d3d11va_hwaccel_select="mpeg2video_decoder"
2483 mpeg2_dxva2_hwaccel_deps="dxva2"
2484 mpeg2_dxva2_hwaccel_select="mpeg2video_decoder"
2485 mpeg2_mmal_decoder_deps="mmal"
2486 mpeg2_mmal_hwaccel_deps="mmal"
2487 mpeg2_mmal_decoder_select="mpeg2video_decoder"
2488 mpeg2_qsv_hwaccel_deps="libmfx"
2489 mpeg2_qsv_hwaccel_select="qsvdec_mpeg2"
2490 mpeg2_vaapi_hwaccel_deps="vaapi"
2491 mpeg2_vaapi_hwaccel_select="mpeg2video_decoder"
2492 mpeg2_vdpau_hwaccel_deps="vdpau"
2493 mpeg2_vdpau_hwaccel_select="mpeg2video_decoder"
2494 mpeg2_videotoolbox_hwaccel_deps="videotoolbox"
2495 mpeg2_videotoolbox_hwaccel_select="mpeg2video_decoder"
2496 mpeg2_xvmc_hwaccel_deps="xvmc"
2497 mpeg2_xvmc_hwaccel_select="mpeg2video_decoder"
2498 mpeg4_crystalhd_decoder_select="crystalhd"
2499 mpeg4_vaapi_hwaccel_deps="vaapi"
2500 mpeg4_vaapi_hwaccel_select="mpeg4_decoder"
2501 mpeg4_vdpau_decoder_deps="vdpau"
2502 mpeg4_vdpau_decoder_select="mpeg4_decoder"
2503 mpeg4_vdpau_hwaccel_deps="vdpau"
2504 mpeg4_vdpau_hwaccel_select="mpeg4_decoder"
2505 mpeg4_videotoolbox_hwaccel_deps="videotoolbox"
2506 mpeg4_videotoolbox_hwaccel_select="mpeg4_decoder"
2507 msmpeg4_crystalhd_decoder_select="crystalhd"
2508 vc1_crystalhd_decoder_select="crystalhd"
2509 vc1_d3d11va_hwaccel_deps="d3d11va"
2510 vc1_d3d11va_hwaccel_select="vc1_decoder"
2511 vc1_dxva2_hwaccel_deps="dxva2"
2512 vc1_dxva2_hwaccel_select="vc1_decoder"
2513 vc1_vaapi_hwaccel_deps="vaapi"
2514 vc1_vaapi_hwaccel_select="vc1_decoder"
2515 vc1_vdpau_decoder_deps="vdpau"
2516 vc1_vdpau_decoder_select="vc1_decoder"
2517 vc1_vdpau_hwaccel_deps="vdpau"
2518 vc1_vdpau_hwaccel_select="vc1_decoder"
2519 vc1_qsv_hwaccel_deps="libmfx"
2520 vc1_qsv_hwaccel_select="qsvdec_vc1"
2521 wmv3_crystalhd_decoder_select="crystalhd"
2522 wmv3_d3d11va_hwaccel_select="vc1_d3d11va_hwaccel"
2523 wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
2524 wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
2525 wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
2526 wmv3_vdpau_hwaccel_select="vc1_vdpau_hwaccel"
2527
2528 # parsers
2529 h264_parser_select="h264_decoder"
2530 hevc_parser_select="golomb"
2531 mpegvideo_parser_select="mpegvideo"
2532 mpeg4video_parser_select="h263dsp mpegvideo qpeldsp"
2533 vc1_parser_select="mpegvideo startcode vc1_decoder"
2534
2535 # bitstream_filters
2536 mjpeg2jpeg_bsf_select="jpegtables"
2537
2538 # external libraries
2539 chromaprint_muxer_deps="chromaprint"
2540 libaacplus_encoder_deps="libaacplus"
2541 libcelt_decoder_deps="libcelt"
2542 libdcadec_decoder_deps="libdcadec"
2543 libfaac_encoder_deps="libfaac"
2544 libfaac_encoder_select="audio_frame_queue"
2545 libfdk_aac_decoder_deps="libfdk_aac"
2546 libfdk_aac_encoder_deps="libfdk_aac"
2547 libfdk_aac_encoder_select="audio_frame_queue"
2548 libgme_demuxer_deps="libgme"
2549 libgsm_decoder_deps="libgsm"
2550 libgsm_encoder_deps="libgsm"
2551 libgsm_ms_decoder_deps="libgsm"
2552 libgsm_ms_encoder_deps="libgsm"
2553 libilbc_decoder_deps="libilbc"
2554 libilbc_encoder_deps="libilbc"
2555 libkvazaar_encoder_deps="libkvazaar"
2556 libmodplug_demuxer_deps="libmodplug"
2557 libmp3lame_encoder_deps="libmp3lame"
2558 libmp3lame_encoder_select="audio_frame_queue"
2559 libopencore_amrnb_decoder_deps="libopencore_amrnb"
2560 libopencore_amrnb_encoder_deps="libopencore_amrnb"
2561 libopencore_amrnb_encoder_select="audio_frame_queue"
2562 libopencore_amrwb_decoder_deps="libopencore_amrwb"
2563 libopenh264_encoder_deps="libopenh264"
2564 libopenjpeg_decoder_deps="libopenjpeg"
2565 libopenjpeg_encoder_deps="libopenjpeg"
2566 libopus_decoder_deps="libopus"
2567 libopus_encoder_deps="libopus"
2568 libopus_encoder_select="audio_frame_queue"
2569 libquvi_demuxer_deps="libquvi"
2570 libschroedinger_decoder_deps="libschroedinger"
2571 libschroedinger_encoder_deps="libschroedinger"
2572 libshine_encoder_deps="libshine"
2573 libshine_encoder_select="audio_frame_queue"
2574 libspeex_decoder_deps="libspeex"
2575 libspeex_encoder_deps="libspeex"
2576 libspeex_encoder_select="audio_frame_queue"
2577 libstagefright_h264_decoder_deps="libstagefright_h264"
2578 libtheora_encoder_deps="libtheora"
2579 libtwolame_encoder_deps="libtwolame"
2580 libvo_aacenc_encoder_deps="libvo_aacenc"
2581 libvo_aacenc_encoder_select="audio_frame_queue"
2582 libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
2583 libvorbis_decoder_deps="libvorbis"
2584 libvorbis_encoder_deps="libvorbis"
2585 libvorbis_encoder_select="audio_frame_queue"
2586 libvpx_vp8_decoder_deps="libvpx"
2587 libvpx_vp8_encoder_deps="libvpx"
2588 libvpx_vp9_decoder_deps="libvpx"
2589 libvpx_vp9_encoder_deps="libvpx"
2590 libwavpack_encoder_deps="libwavpack"
2591 libwebp_encoder_deps="libwebp"
2592 libwebp_anim_encoder_deps="libwebp"
2593 libx262_encoder_deps="libx262"
2594 libx264_encoder_deps="libx264"
2595 libx264rgb_encoder_deps="libx264"
2596 libx264rgb_encoder_select="libx264_encoder"
2597 libx265_encoder_deps="libx265"
2598 libxavs_encoder_deps="libxavs"
2599 libxvid_encoder_deps="libxvid"
2600 libutvideo_decoder_deps="libutvideo"
2601 libutvideo_encoder_deps="libutvideo"
2602 libzvbi_teletext_decoder_deps="libzvbi"
2603 nvenc_encoder_deps="nvenc"
2604 nvenc_h264_encoder_deps="nvenc"
2605 nvenc_hevc_encoder_deps="nvenc"
2606
2607 # demuxers / muxers
2608 ac3_demuxer_select="ac3_parser"
2609 asf_demuxer_select="riffdec"
2610 asf_o_demuxer_select="riffdec"
2611 asf_muxer_select="riffenc"
2612 asf_stream_muxer_select="asf_muxer"
2613 avi_demuxer_select="riffdec exif"
2614 avi_muxer_select="riffenc"
2615 avisynth_demuxer_deps="avisynth"
2616 avisynth_demuxer_select="riffdec"
2617 caf_demuxer_select="riffdec"
2618 dash_muxer_select="mp4_muxer"
2619 dirac_demuxer_select="dirac_parser"
2620 dts_demuxer_select="dca_parser"
2621 dtshd_demuxer_select="dca_parser"
2622 dv_demuxer_select="dvprofile"
2623 dv_muxer_select="dvprofile"
2624 dxa_demuxer_select="riffdec"
2625 eac3_demuxer_select="ac3_parser"
2626 f4v_muxer_select="mov_muxer"
2627 flac_demuxer_select="flac_parser"
2628 hds_muxer_select="flv_muxer"
2629 hls_muxer_select="mpegts_muxer"
2630 image2_alias_pix_demuxer_select="image2_demuxer"
2631 image2_brender_pix_demuxer_select="image2_demuxer"
2632 ipod_muxer_select="mov_muxer"
2633 ismv_muxer_select="mov_muxer"
2634 libnut_demuxer_deps="libnut"
2635 libnut_muxer_deps="libnut"
2636 matroska_audio_muxer_select="matroska_muxer"
2637 matroska_demuxer_select="riffdec"
2638 matroska_demuxer_suggest="bzlib lzo zlib"
2639 matroska_muxer_select="riffenc"
2640 mmf_muxer_select="riffenc"
2641 mov_demuxer_select="riffdec"
2642 mov_demuxer_suggest="zlib"
2643 mov_muxer_select="riffenc rtpenc_chain"
2644 mp3_demuxer_select="mpegaudio_parser"
2645 mp4_muxer_select="mov_muxer"
2646 mpegts_muxer_select="adts_muxer latm_muxer"
2647 mpegtsraw_demuxer_select="mpegts_demuxer"
2648 mxf_d10_muxer_select="mxf_muxer"
2649 mxf_opatom_muxer_select="mxf_muxer"
2650 nut_muxer_select="riffenc"
2651 nuv_demuxer_select="riffdec"
2652 oga_muxer_select="ogg_muxer"
2653 ogg_demuxer_select="golomb"
2654 opus_muxer_select="ogg_muxer"
2655 psp_muxer_select="mov_muxer"
2656 rtp_demuxer_select="sdp_demuxer"
2657 rtpdec_select="asf_demuxer jpegtables mov_demuxer mpegts_demuxer rm_demuxer rtp_protocol"
2658 rtsp_demuxer_select="http_protocol rtpdec"
2659 rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol rtpenc_chain"
2660 sap_demuxer_select="sdp_demuxer"
2661 sap_muxer_select="rtp_muxer rtp_protocol rtpenc_chain"
2662 sdp_demuxer_select="rtpdec"
2663 smoothstreaming_muxer_select="ismv_muxer"
2664 spdif_muxer_select="aac_parser"
2665 spx_muxer_select="ogg_muxer"
2666 tak_demuxer_select="tak_parser"
2667 tg2_muxer_select="mov_muxer"
2668 tgp_muxer_select="mov_muxer"
2669 vobsub_demuxer_select="mpegps_demuxer"
2670 w64_demuxer_select="wav_demuxer"
2671 w64_muxer_select="wav_muxer"
2672 wav_demuxer_select="riffdec"
2673 wav_muxer_select="riffenc"
2674 webm_muxer_select="riffenc"
2675 wtv_demuxer_select="riffdec"
2676 wtv_muxer_select="riffenc"
2677 xmv_demuxer_select="riffdec"
2678 xwma_demuxer_select="riffdec"
2679
2680 # indevs / outdevs
2681 alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
2682 alsa_outdev_deps="alsa_asoundlib_h"
2683 avfoundation_indev_extralibs="-framework CoreVideo -framework Foundation -framework AVFoundation -framework CoreMedia"
2684 avfoundation_indev_select="avfoundation"
2685 bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
2686 caca_outdev_deps="libcaca"
2687 decklink_outdev_deps="decklink pthreads"
2688 decklink_outdev_extralibs="-lstdc++"
2689 decklink_indev_deps="decklink pthreads"
2690 decklink_indev_extralibs="-lstdc++"
2691 dshow_indev_deps="IBaseFilter"
2692 dshow_indev_extralibs="-lpsapi -lole32 -lstrmiids -luuid -loleaut32 -lshlwapi"
2693 dv1394_indev_deps="dv1394"
2694 dv1394_indev_select="dv_demuxer"
2695 fbdev_indev_deps="linux_fb_h"
2696 fbdev_outdev_deps="linux_fb_h"
2697 gdigrab_indev_deps="CreateDIBSection"
2698 gdigrab_indev_extralibs="-lgdi32"
2699 gdigrab_indev_select="bmp_decoder"
2700 iec61883_indev_deps="libiec61883"
2701 jack_indev_deps="jack_jack_h sem_timedwait"
2702 lavfi_indev_deps="avfilter"
2703 libcdio_indev_deps="libcdio"
2704 libdc1394_indev_deps="libdc1394"
2705 libv4l2_indev_deps="libv4l2"
2706 openal_indev_deps="openal"
2707 opengl_outdev_deps="opengl"
2708 oss_indev_deps_any="soundcard_h sys_soundcard_h"
2709 oss_outdev_deps_any="soundcard_h sys_soundcard_h"
2710 pulse_indev_deps="libpulse"
2711 pulse_outdev_deps="libpulse"
2712 qtkit_indev_extralibs="-framework QTKit -framework Foundation -framework QuartzCore"
2713 qtkit_indev_select="qtkit"
2714 sdl_outdev_deps="sdl"
2715 sndio_indev_deps="sndio_h"
2716 sndio_outdev_deps="sndio_h"
2717 v4l_indev_deps="linux_videodev_h"
2718 v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
2719 v4l2_outdev_deps_any="linux_videodev2_h sys_videoio_h"
2720 vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
2721 vfwcap_indev_extralibs="-lavicap32"
2722 xv_outdev_deps="X11_extensions_Xvlib_h XvGetPortAttribute"
2723 xv_outdev_extralibs="-lXv -lX11 -lXext"
2724 x11grab_indev_deps="x11grab"
2725 x11grab_xcb_indev_deps="libxcb"
2726
2727 # protocols
2728 async_protocol_deps="threads"
2729 bluray_protocol_deps="libbluray"
2730 ffrtmpcrypt_protocol_deps="!librtmp_protocol"
2731 ffrtmpcrypt_protocol_deps_any="gcrypt gmp openssl"
2732 ffrtmpcrypt_protocol_select="tcp_protocol"
2733 ffrtmphttp_protocol_deps="!librtmp_protocol"
2734 ffrtmphttp_protocol_select="http_protocol"
2735 ftp_protocol_select="tcp_protocol"
2736 gopher_protocol_select="network"
2737 http_protocol_select="tcp_protocol"
2738 httpproxy_protocol_select="tcp_protocol"
2739 https_protocol_select="tls_protocol"
2740 icecast_protocol_select="http_protocol"
2741 librtmp_protocol_deps="librtmp"
2742 librtmpe_protocol_deps="librtmp"
2743 librtmps_protocol_deps="librtmp"
2744 librtmpt_protocol_deps="librtmp"
2745 librtmpte_protocol_deps="librtmp"
2746 libsmbclient_protocol_deps="libsmbclient gplv3"
2747 libssh_protocol_deps="libssh"
2748 mmsh_protocol_select="http_protocol"
2749 mmst_protocol_select="network"
2750 rtmp_protocol_deps="!librtmp_protocol"
2751 rtmp_protocol_select="tcp_protocol"
2752 rtmpe_protocol_select="ffrtmpcrypt_protocol"
2753 rtmps_protocol_deps="!librtmp_protocol"
2754 rtmps_protocol_select="tls_protocol"
2755 rtmpt_protocol_select="ffrtmphttp_protocol"
2756 rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
2757 rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
2758 rtp_protocol_select="udp_protocol"
2759 sctp_protocol_deps="struct_sctp_event_subscribe"
2760 sctp_protocol_select="network"
2761 srtp_protocol_select="rtp_protocol"
2762 tcp_protocol_select="network"
2763 tls_gnutls_protocol_deps="gnutls !tls_securetransport_protocol"
2764 tls_gnutls_protocol_select="tcp_protocol"
2765 tls_openssl_protocol_deps="openssl !tls_securetransport_protocol !tls_gnutls_protocol"
2766 tls_openssl_protocol_select="tcp_protocol"
2767 tls_securetransport_protocol_deps="securetransport"
2768 tls_securetransport_protocol_select="tcp_protocol"
2769 tls_protocol_deps_any="tls_securetransport_protocol tls_gnutls_protocol tls_openssl_protocol"
2770 udp_protocol_select="network"
2771 udplite_protocol_select="network"
2772 unix_protocol_deps="sys_un_h"
2773 unix_protocol_select="network"
2774
2775 # filters
2776 amovie_filter_deps="avcodec avformat"
2777 aresample_filter_deps="swresample"
2778 ass_filter_deps="libass"
2779 asyncts_filter_deps="avresample"
2780 atempo_filter_deps="avcodec"
2781 atempo_filter_select="rdft"
2782 azmq_filter_deps="libzmq"
2783 blackframe_filter_deps="gpl"
2784 boxblur_filter_deps="gpl"
2785 bs2b_filter_deps="libbs2b"
2786 colormatrix_filter_deps="gpl"
2787 cover_rect_filter_deps="avcodec avformat gpl"
2788 cropdetect_filter_deps="gpl"
2789 delogo_filter_deps="gpl"
2790 deshake_filter_select="pixelutils"
2791 drawtext_filter_deps="libfreetype"
2792 dynaudnorm_filter_deps="copysign erf"
2793 ebur128_filter_deps="gpl"
2794 eq_filter_deps="gpl"
2795 fftfilt_filter_deps="avcodec"
2796 fftfilt_filter_select="rdft"
2797 flite_filter_deps="libflite"
2798 find_rect_filter_deps="avcodec avformat gpl"
2799 frei0r_filter_deps="frei0r dlopen"
2800 frei0r_src_filter_deps="frei0r dlopen"
2801 fspp_filter_deps="gpl"
2802 geq_filter_deps="gpl"
2803 histeq_filter_deps="gpl"
2804 hqdn3d_filter_deps="gpl"
2805 interlace_filter_deps="gpl"
2806 kerndeint_filter_deps="gpl"
2807 ladspa_filter_deps="ladspa dlopen"
2808 mcdeint_filter_deps="avcodec gpl"
2809 movie_filter_deps="avcodec avformat"
2810 mpdecimate_filter_deps="gpl"
2811 mpdecimate_filter_select="pixelutils"
2812 mptestsrc_filter_deps="gpl"
2813 negate_filter_deps="lut_filter"
2814 perspective_filter_deps="gpl"
2815 pp7_filter_deps="gpl"
2816 ocr_filter_deps="libtesseract"
2817 ocv_filter_deps="libopencv"
2818 owdenoise_filter_deps="gpl"
2819 pan_filter_deps="swresample"
2820 phase_filter_deps="gpl"
2821 pp_filter_deps="gpl postproc"
2822 pullup_filter_deps="gpl"
2823 removelogo_filter_deps="avcodec avformat swscale"
2824 repeatfields_filter_deps="gpl"
2825 resample_filter_deps="avresample"
2826 rubberband_filter_deps="librubberband"
2827 sab_filter_deps="gpl swscale"
2828 scale_filter_deps="swscale"
2829 scale2ref_filter_deps="swscale"
2830 select_filter_select="pixelutils"
2831 smartblur_filter_deps="gpl swscale"
2832 showcqt_filter_deps="avcodec"
2833 showcqt_filter_select="fft"
2834 showfreqs_filter_deps="avcodec"
2835 showfreqs_filter_select="fft"
2836 showspectrum_filter_deps="avcodec"
2837 showspectrum_filter_select="rdft"
2838 spp_filter_deps="gpl avcodec"
2839 spp_filter_select="fft idctdsp fdctdsp me_cmp pixblockdsp"
2840 stereo3d_filter_deps="gpl"
2841 subtitles_filter_deps="avformat avcodec libass"
2842 super2xsai_filter_deps="gpl"
2843 tinterlace_filter_deps="gpl"
2844 vidstabdetect_filter_deps="libvidstab"
2845 vidstabtransform_filter_deps="libvidstab"
2846 pixfmts_super2xsai_test_deps="super2xsai_filter"
2847 tinterlace_merge_test_deps="tinterlace_filter"
2848 tinterlace_pad_test_deps="tinterlace_filter"
2849 uspp_filter_deps="gpl avcodec"
2850 zmq_filter_deps="libzmq"
2851 zoompan_filter_deps="swscale"
2852 zscale_filter_deps="libzimg"
2853
2854 # examples
2855 avio_reading="avformat avcodec avutil"
2856 avio_dir_cmd="avformat avutil"
2857 avcodec_example_deps="avcodec avutil"
2858 decoding_encoding_example_deps="avcodec avformat avutil"
2859 demuxing_decoding_example_deps="avcodec avformat avutil"
2860 extract_mvs_example_deps="avcodec avformat avutil"
2861 filter_audio_example_deps="avfilter avutil"
2862 filtering_audio_example_deps="avfilter avcodec avformat avutil"
2863 filtering_video_example_deps="avfilter avcodec avformat avutil"
2864 metadata_example_deps="avformat avutil"
2865 muxing_example_deps="avcodec avformat avutil swscale"
2866 qsvdec_example_deps="avcodec avutil libmfx h264_qsv_decoder vaapi_x11"
2867 remuxing_example_deps="avcodec avformat avutil"
2868 resampling_audio_example_deps="avutil swresample"
2869 scaling_video_example_deps="avutil swscale"
2870 transcode_aac_example_deps="avcodec avformat swresample"
2871 transcoding_example_deps="avfilter avcodec avformat avutil"
2872
2873 # libraries, in linking order
2874 avcodec_deps="avutil"
2875 avdevice_deps="avformat avcodec avutil"
2876 avfilter_deps="avutil"
2877 avformat_deps="avcodec avutil"
2878 avresample_deps="avutil"
2879 postproc_deps="avutil gpl"
2880 swresample_deps="avutil"
2881 swscale_deps="avutil"
2882
2883 # programs
2884 ffmpeg_deps="avcodec avfilter avformat swresample"
2885 ffmpeg_select="aformat_filter anull_filter atrim_filter format_filter
2886                null_filter
2887                setpts_filter trim_filter"
2888 ffplay_deps="avcodec avformat swscale swresample sdl"
2889 ffplay_libs='$sdl_libs'
2890 ffplay_select="rdft crop_filter transpose_filter hflip_filter vflip_filter rotate_filter"
2891 ffprobe_deps="avcodec avformat"
2892 ffserver_deps="avformat fork sarestart"
2893 ffserver_select="ffm_muxer rtp_protocol rtsp_demuxer"
2894
2895 # documentation
2896 podpages_deps="perl"
2897 manpages_deps="perl pod2man"
2898 htmlpages_deps="perl"
2899 htmlpages_deps_any="makeinfo_html texi2html"
2900 txtpages_deps="perl makeinfo"
2901 doc_deps_any="manpages htmlpages podpages txtpages"
2902
2903 # default parameters
2904
2905 logfile="config.log"
2906
2907 # installation paths
2908 prefix_default="/usr/local"
2909 bindir_default='${prefix}/bin'
2910 datadir_default='${prefix}/share/ffmpeg'
2911 docdir_default='${prefix}/share/doc/ffmpeg'
2912 incdir_default='${prefix}/include'
2913 libdir_default='${prefix}/lib'
2914 mandir_default='${prefix}/share/man'
2915
2916 # toolchain
2917 ar_default="ar"
2918 cc_default="gcc"
2919 cxx_default="g++"
2920 host_cc_default="gcc"
2921 cp_f="cp -f"
2922 doxygen_default="doxygen"
2923 install="install"
2924 ln_s="ln -s -f"
2925 nm_default="nm -g"
2926 objformat="elf"
2927 pkg_config_default=pkg-config
2928 ranlib_default="ranlib"
2929 strip_default="strip"
2930 yasmexe_default="yasm"
2931 windres_default="windres"
2932
2933 # OS
2934 target_os_default=$(tolower $(uname -s))
2935 host_os=$target_os_default
2936
2937 # machine
2938 if test "$target_os_default" = aix; then
2939     arch_default=$(uname -p)
2940     strip_default="strip -X32_64"
2941 else
2942     arch_default=$(uname -m)
2943 fi
2944 cpu="generic"
2945 intrinsics="none"
2946
2947 # configurable options
2948 enable $PROGRAM_LIST
2949 enable $DOCUMENT_LIST
2950 enable $EXAMPLE_LIST
2951 enable $(filter_out avresample $LIBRARY_LIST)
2952 enable stripping
2953
2954 enable asm
2955 enable debug
2956 enable doc
2957 enable faan faandct faanidct
2958 enable optimizations
2959 enable runtime_cpudetect
2960 enable safe_bitstream_reader
2961 enable static
2962 enable swscale_alpha
2963 enable valgrind_backtrace
2964
2965 sws_max_filter_size_default=256
2966 set_default sws_max_filter_size
2967
2968 # Enable hwaccels by default.
2969 enable d3d11va dxva2 vaapi vda vdpau videotoolbox xvmc
2970 enable xlib
2971
2972 # build settings
2973 SHFLAGS='-shared -Wl,-soname,$$(@F)'
2974 LIBPREF="lib"
2975 LIBSUF=".a"
2976 FULLNAME='$(NAME)$(BUILDSUF)'
2977 LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
2978 SLIBPREF="lib"
2979 SLIBSUF=".so"
2980 SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
2981 SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
2982 SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
2983 LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
2984 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
2985 SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
2986
2987 asflags_filter=echo
2988 cflags_filter=echo
2989 ldflags_filter=echo
2990
2991 AS_C='-c'
2992 AS_O='-o $@'
2993 CC_C='-c'
2994 CC_E='-E -o $@'
2995 CC_O='-o $@'
2996 CXX_C='-c'
2997 CXX_O='-o $@'
2998 LD_O='-o $@'
2999 LD_LIB='-l%'
3000 LD_PATH='-L'
3001 HOSTCC_C='-c'
3002 HOSTCC_E='-E -o $@'
3003 HOSTCC_O='-o $@'
3004 HOSTLD_O='-o $@'
3005
3006 host_libs='-lm'
3007 host_cflags_filter=echo
3008 host_ldflags_filter=echo
3009
3010 target_path='$(CURDIR)'
3011
3012 # since the object filename is not given with the -MM flag, the compiler
3013 # is only able to print the basename, and we must add the path ourselves
3014 DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>/dev/null | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(@F),$(@D)/$(@F)," > $(@:.o=.d)'
3015 DEPFLAGS='-MM'
3016
3017 # find source path
3018 if test -f configure; then
3019     source_path=.
3020 else
3021     source_path=$(cd $(dirname "$0"); pwd)
3022     case "$source_path" in
3023         *[[:blank:]]*) die "Out of tree builds are impossible with whitespace in source path." ;;
3024     esac
3025     test -e "$source_path/config.h" &&
3026         die "Out of tree builds are impossible with config.h in source dir."
3027 fi
3028
3029 for v in "$@"; do
3030     r=${v#*=}
3031     l=${v%"$r"}
3032     r=$(sh_quote "$r")
3033     FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
3034 done
3035
3036 find_things(){
3037     thing=$1
3038     pattern=$2
3039     file=$source_path/$3
3040     sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
3041 }
3042
3043 ENCODER_LIST=$(find_things  encoder  ENC      libavcodec/allcodecs.c)
3044 DECODER_LIST=$(find_things  decoder  DEC      libavcodec/allcodecs.c)
3045 HWACCEL_LIST=$(find_things  hwaccel  HWACCEL  libavcodec/allcodecs.c)
3046 PARSER_LIST=$(find_things   parser   PARSER   libavcodec/allcodecs.c)
3047 BSF_LIST=$(find_things      bsf      BSF      libavcodec/allcodecs.c)
3048 MUXER_LIST=$(find_things    muxer    _MUX     libavformat/allformats.c)
3049 DEMUXER_LIST=$(find_things  demuxer  DEMUX    libavformat/allformats.c)
3050 OUTDEV_LIST=$(find_things   outdev   OUTDEV   libavdevice/alldevices.c)
3051 INDEV_LIST=$(find_things    indev    _IN      libavdevice/alldevices.c)
3052 PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
3053 FILTER_LIST=$(find_things   filter   FILTER   libavfilter/allfilters.c)
3054
3055 ALL_COMPONENTS="
3056     $BSF_LIST
3057     $DECODER_LIST
3058     $DEMUXER_LIST
3059     $ENCODER_LIST
3060     $FILTER_LIST
3061     $HWACCEL_LIST
3062     $INDEV_LIST
3063     $MUXER_LIST
3064     $OUTDEV_LIST
3065     $PARSER_LIST
3066     $PROTOCOL_LIST
3067 "
3068
3069 for n in $COMPONENT_LIST; do
3070     v=$(toupper ${n%s})_LIST
3071     eval enable \$$v
3072     eval ${n}_if_any="\$$v"
3073 done
3074
3075 enable $ARCH_EXT_LIST
3076
3077 die_unknown(){
3078     echo "Unknown option \"$1\"."
3079     echo "See $0 --help for available options."
3080     exit 1
3081 }
3082
3083 print_in_columns() {
3084     cols=$(expr $ncols / 24)
3085     cat | tr ' ' '\n' | sort | pr -r "-$cols" -w $ncols -t
3086 }
3087
3088 show_list() {
3089     suffix=_$1
3090     shift
3091     echo $* | sed s/$suffix//g | print_in_columns
3092     exit 0
3093 }
3094
3095 rand_list(){
3096     IFS=', '
3097     set -- $*
3098     unset IFS
3099     for thing; do
3100         comp=${thing%:*}
3101         prob=${thing#$comp}
3102         prob=${prob#:}
3103         is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
3104         echo "prob ${prob:-0.5}"
3105         printf '%s\n' $comp
3106     done
3107 }
3108
3109 do_random(){
3110     action=$1
3111     shift
3112     random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
3113     $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
3114 }
3115
3116 for opt do
3117     optval="${opt#*=}"
3118     case "$opt" in
3119         --extra-ldflags=*)
3120             add_ldflags $optval
3121         ;;
3122         --extra-ldexeflags=*)
3123             add_ldexeflags $optval
3124         ;;
3125         --extra-ldlibflags=*)
3126             add_ldlibflags $optval
3127         ;;
3128         --extra-libs=*)
3129             add_extralibs $optval
3130         ;;
3131         --disable-devices)
3132             disable $INDEV_LIST $OUTDEV_LIST
3133         ;;
3134         --enable-debug=*)
3135             debuglevel="$optval"
3136         ;;
3137         --disable-programs)
3138             disable $PROGRAM_LIST
3139         ;;
3140         --disable-everything)
3141             map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
3142         ;;
3143         --disable-all)
3144             map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
3145             disable $LIBRARY_LIST $PROGRAM_LIST doc
3146             enable avutil
3147         ;;
3148         --enable-random|--disable-random)
3149             action=${opt%%-random}
3150             do_random ${action#--} $COMPONENT_LIST
3151         ;;
3152         --enable-random=*|--disable-random=*)
3153             action=${opt%%-random=*}
3154             do_random ${action#--} $optval
3155         ;;
3156         --enable-*=*|--disable-*=*)
3157             eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
3158             is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
3159             eval list=\$$(toupper $thing)_LIST
3160             name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
3161             list=$(filter "$name" $list)
3162             [ "$list" = "" ] && warn "Option $opt did not match anything"
3163             $action $list
3164         ;;
3165         --enable-?*|--disable-?*)
3166             eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
3167             if is_in $option $COMPONENT_LIST; then
3168                 test $action = disable && action=unset
3169                 eval $action \$$(toupper ${option%s})_LIST
3170             elif is_in $option $CMDLINE_SELECT; then
3171                 $action $option
3172             else
3173                 die_unknown $opt
3174             fi
3175         ;;
3176         --list-*)
3177             NAME="${opt#--list-}"
3178             is_in $NAME $COMPONENT_LIST || die_unknown $opt
3179             NAME=${NAME%s}
3180             eval show_list $NAME \$$(toupper $NAME)_LIST
3181         ;;
3182         --help|-h) show_help
3183         ;;
3184         --fatal-warnings) enable fatal_warnings
3185         ;;
3186         *)
3187             optname="${opt%%=*}"
3188             optname="${optname#--}"
3189             optname=$(echo "$optname" | sed 's/-/_/g')
3190             if is_in $optname $CMDLINE_SET; then
3191                 eval $optname='$optval'
3192             elif is_in $optname $CMDLINE_APPEND; then
3193                 append $optname "$optval"
3194             else
3195                 die_unknown $opt
3196             fi
3197         ;;
3198     esac
3199 done
3200
3201 for e in $env; do
3202     eval "export $e"
3203 done
3204
3205 disabled logging && logfile=/dev/null
3206
3207 # Disable all the library-specific components if the library itself
3208 # is disabled, see AVCODEC_LIST and following _LIST variables.
3209
3210 disable_components(){
3211     disabled ${1} && disable $(
3212         eval components="\$$(toupper ${1})_COMPONENTS"
3213         map 'eval echo \${$(toupper ${v%s})_LIST}' $components
3214     )
3215 }
3216
3217 map 'disable_components $v' $LIBRARY_LIST
3218
3219 echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
3220 set >> $logfile
3221
3222 test -n "$valgrind" && toolchain="valgrind-memcheck"
3223
3224 case "$toolchain" in
3225     clang-asan)
3226         cc_default="clang"
3227         add_cflags  -fsanitize=address
3228         add_ldflags -fsanitize=address
3229     ;;
3230     clang-tsan)
3231         cc_default="clang"
3232         add_cflags  -fsanitize=thread -pie
3233         add_ldflags -fsanitize=thread -pie
3234     ;;
3235     clang-usan)
3236         cc_default="clang"
3237         add_cflags  -fsanitize=undefined
3238         add_ldflags -fsanitize=undefined
3239     ;;
3240     gcc-asan)
3241         cc_default="gcc"
3242         add_cflags  -fsanitize=address
3243         add_ldflags -fsanitize=address
3244     ;;
3245     gcc-tsan)
3246         cc_default="gcc"
3247         add_cflags  -fsanitize=thread -pie -fPIC
3248         add_ldflags -fsanitize=thread -pie -fPIC
3249     ;;
3250     gcc-usan)
3251         cc_default="gcc"
3252         add_cflags  -fsanitize=undefined
3253         add_ldflags -fsanitize=undefined
3254     ;;
3255     valgrind-massif)
3256         target_exec_default=${valgrind:-"valgrind"}
3257         target_exec_args="--tool=massif --alloc-fn=av_malloc --alloc-fn=av_mallocz --alloc-fn=av_calloc --alloc-fn=av_fast_padded_malloc --alloc-fn=av_fast_malloc --alloc-fn=av_realloc_f --alloc-fn=av_fast_realloc --alloc-fn=av_realloc"
3258     ;;
3259     valgrind-memcheck)
3260         target_exec_default=${valgrind:-"valgrind"}
3261         target_exec_args="--error-exitcode=1 --malloc-fill=0x2a --track-origins=yes --leak-check=full --gen-suppressions=all --suppressions=$source_path/tests/fate-valgrind.supp"
3262     ;;
3263     msvc)
3264         # Check whether the current MSVC version needs the C99 converter.
3265         # From MSVC 2013 (compiler major version 18) onwards, it does actually
3266         # support enough of C99 to build ffmpeg. Default to the new
3267         # behaviour if the regexp was unable to match anything, since this
3268         # successfully parses the version number of existing supported
3269         # versions that require the converter (MSVC 2010 and 2012).
3270         cl_major_ver=$(cl 2>&1 | sed -n 's/.*Version \([[:digit:]]\{1,\}\)\..*/\1/p')
3271         if [ -z "$cl_major_ver" ] || [ $cl_major_ver -ge 18 ]; then
3272             cc_default="cl"
3273         else
3274             cc_default="c99wrap cl"
3275         fi
3276         ld_default="$source_path/compat/windows/mslink"
3277         nm_default="dumpbin -symbols"
3278         ar_default="lib"
3279         case "$arch" in
3280         arm*)
3281             as_default="armasm"
3282             ;;
3283         esac
3284         target_os_default="win32"
3285         # Use a relative path for TMPDIR. This makes sure all the
3286         # ffconf temp files are written with a relative path, avoiding
3287         # issues with msys/win32 path conversion for MSVC parameters
3288         # such as -Fo<file> or -out:<file>.
3289         TMPDIR=.
3290     ;;
3291     icl)
3292         cc_default="icl"
3293         ld_default="xilink"
3294         nm_default="dumpbin -symbols"
3295         ar_default="xilib"
3296         target_os_default="win32"
3297         TMPDIR=.
3298     ;;
3299     gcov)
3300         add_cflags  -fprofile-arcs -ftest-coverage
3301         add_ldflags -fprofile-arcs -ftest-coverage
3302     ;;
3303     hardened)
3304         add_cppflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
3305         add_cflags   -fno-strict-overflow -fstack-protector-all
3306         add_ldflags  -Wl,-z,relro -Wl,-z,now
3307     ;;
3308     ?*)
3309         die "Unknown toolchain $toolchain"
3310     ;;
3311 esac
3312
3313 test -n "$cross_prefix" && enable cross_compile
3314
3315 if enabled cross_compile; then
3316     test -n "$arch" && test -n "$target_os" ||
3317         die "Must specify target arch and OS when cross-compiling"
3318 fi
3319
3320 ar_default="${cross_prefix}${ar_default}"
3321 cc_default="${cross_prefix}${cc_default}"
3322 cxx_default="${cross_prefix}${cxx_default}"
3323 nm_default="${cross_prefix}${nm_default}"
3324 pkg_config_default="${cross_prefix}${pkg_config_default}"
3325 if ${cross_prefix}${ranlib_default} 2>&1 | grep -q "\-D "; then
3326     ranlib_default="${cross_prefix}${ranlib_default} -D"
3327 else
3328     ranlib_default="${cross_prefix}${ranlib_default}"
3329 fi
3330 strip_default="${cross_prefix}${strip_default}"
3331 windres_default="${cross_prefix}${windres_default}"
3332
3333 sysinclude_default="${sysroot}/usr/include"
3334
3335 set_default arch cc cxx doxygen pkg_config ranlib strip sysinclude \
3336     target_exec target_os yasmexe
3337 enabled cross_compile || host_cc_default=$cc
3338 set_default host_cc
3339
3340 pkg_config_fail_message=""
3341 if ! $pkg_config --version >/dev/null 2>&1; then
3342     warn "$pkg_config not found, library detection may fail."
3343     pkg_config=false
3344 elif is_in -static $cc $LDFLAGS && ! is_in --static $pkg_config $pkg_config_flags; then
3345     pkg_config_fail_message="
3346 Note: When building a static binary, add --pkg-config-flags=\"--static\"."
3347 fi
3348
3349 if test $doxygen != $doxygen_default && \
3350   ! $doxygen --version >/dev/null 2>&1; then
3351     warn "Specified doxygen \"$doxygen\" not found, API documentation will fail to build."
3352 fi
3353
3354 exesuf() {
3355     case $1 in
3356         mingw32*|mingw64*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
3357     esac
3358 }
3359
3360 EXESUF=$(exesuf $target_os)
3361 HOSTEXESUF=$(exesuf $host_os)
3362
3363 # set temporary file name
3364 : ${TMPDIR:=$TEMPDIR}
3365 : ${TMPDIR:=$TMP}
3366 : ${TMPDIR:=/tmp}
3367
3368 if [ -n "$tempprefix" ] ; then
3369     mktemp(){
3370         echo $tempprefix.${HOSTNAME}.${UID}
3371     }
3372 elif ! check_cmd mktemp -u XXXXXX; then
3373     # simple replacement for missing mktemp
3374     # NOT SAFE FOR GENERAL USE
3375     mktemp(){
3376         echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
3377     }
3378 fi
3379
3380 tmpfile(){
3381     tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
3382         (set -C; exec > $tmp) 2>/dev/null ||
3383         die "Unable to create temporary file in $TMPDIR."
3384     append TMPFILES $tmp
3385     eval $1=$tmp
3386 }
3387
3388 trap 'rm -f -- $TMPFILES' EXIT
3389
3390 tmpfile TMPASM .asm
3391 tmpfile TMPC   .c
3392 tmpfile TMPCPP .cpp
3393 tmpfile TMPE   $EXESUF
3394 tmpfile TMPH   .h
3395 tmpfile TMPM   .m
3396 tmpfile TMPO   .o
3397 tmpfile TMPS   .S
3398 tmpfile TMPSH  .sh
3399 tmpfile TMPV   .ver
3400
3401 unset -f mktemp
3402
3403 chmod +x $TMPE
3404
3405 # make sure we can execute files in $TMPDIR
3406 cat > $TMPSH 2>> $logfile <<EOF
3407 #! /bin/sh
3408 EOF
3409 chmod +x $TMPSH >> $logfile 2>&1
3410 if ! $TMPSH >> $logfile 2>&1; then
3411     cat <<EOF
3412 Unable to create and execute files in $TMPDIR.  Set the TMPDIR environment
3413 variable to another directory and make sure that it is not mounted noexec.
3414 EOF
3415     die "Sanity test failed."
3416 fi
3417
3418 armasm_flags(){
3419     for flag; do
3420         case $flag in
3421             # Filter out MSVC cl.exe options from cflags that shouldn't
3422             # be passed to gas-preprocessor
3423             -M[TD]*)                                            ;;
3424             *)                  echo $flag                      ;;
3425         esac
3426    done
3427 }
3428
3429 ccc_flags(){
3430     for flag; do
3431         case $flag in
3432             -std=c99)           echo -c99                       ;;
3433             -mcpu=*)            echo -arch ${flag#*=}           ;;
3434             -mieee)             echo -ieee                      ;;
3435             -O*|-fast)          echo $flag                      ;;
3436             -fno-math-errno)    echo -assume nomath_errno       ;;
3437             -g)                 echo -g3                        ;;
3438             -Wall)              echo -msg_enable level2         ;;
3439             -Wno-pointer-sign)  echo -msg_disable ptrmismatch1  ;;
3440             -Wl,*)              echo $flag                      ;;
3441             -f*|-W*)                                            ;;
3442             *)                  echo $flag                      ;;
3443         esac
3444    done
3445 }
3446
3447 cparser_flags(){
3448     for flag; do
3449         case $flag in
3450             -Wno-switch)             echo -Wno-switch-enum ;;
3451             -Wno-format-zero-length) ;;
3452             -Wdisabled-optimization) ;;
3453             -Wno-pointer-sign)       echo -Wno-other ;;
3454             *)                       echo $flag ;;
3455         esac
3456     done
3457 }
3458
3459 msvc_common_flags(){
3460     for flag; do
3461         case $flag in
3462             # In addition to specifying certain flags under the compiler
3463             # specific filters, they must be specified here as well or else the
3464             # generic catch all at the bottom will print the original flag.
3465             -Wall)                ;;
3466             -std=c99)             ;;
3467             # Common flags
3468             -fomit-frame-pointer) ;;
3469             -g)                   echo -Z7 ;;
3470             -fno-math-errno)      ;;
3471             -fno-common)          ;;
3472             -fno-signed-zeros)    ;;
3473             -fPIC)                ;;
3474             -mthumb)              ;;
3475             -march=*)             ;;
3476             -lz)                  echo zlib.lib ;;
3477             -lavifil32)           echo vfw32.lib ;;
3478             -lavicap32)           echo vfw32.lib user32.lib ;;
3479             -l*)                  echo ${flag#-l}.lib ;;
3480             -LARGEADDRESSAWARE)   echo $flag ;;
3481             -L*)                  echo -libpath:${flag#-L} ;;
3482             *)                    echo $flag ;;
3483         esac
3484     done
3485 }
3486
3487 msvc_flags(){
3488     msvc_common_flags "$@"
3489     for flag; do
3490         case $flag in
3491             -Wall)                echo -W4 -wd4244 -wd4127 -wd4018 -wd4389     \
3492                                        -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
3493                                        -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
3494                                        -wd4307 \
3495                                        -wd4273 -wd4554 -wd4701 ;;
3496         esac
3497     done
3498 }
3499
3500 icl_flags(){
3501     msvc_common_flags "$@"
3502     for flag; do
3503         case $flag in
3504             # Despite what Intel's documentation says -Wall, which is supported
3505             # on Windows, does enable remarks so disable them here.
3506             -Wall)                echo $flag -Qdiag-disable:remark ;;
3507             -std=c99)             echo -Qstd=c99 ;;
3508             -flto)                echo -ipo ;;
3509         esac
3510     done
3511 }
3512
3513 icc_flags(){
3514     for flag; do
3515         case $flag in
3516             -flto)                echo -ipo ;;
3517             *)                    echo $flag ;;
3518         esac
3519     done
3520 }
3521
3522 pgi_flags(){
3523     for flag; do
3524         case $flag in
3525             -flto)                echo -Mipa=fast,libopt,libinline,vestigial ;;
3526             -fomit-frame-pointer) echo -Mnoframe ;;
3527             -g)                   echo -gopt ;;
3528             *)                    echo $flag ;;
3529         esac
3530     done
3531 }
3532
3533 suncc_flags(){
3534     for flag; do
3535         case $flag in
3536             -march=*|-mcpu=*)
3537                 case "${flag#*=}" in
3538                     native)                   echo -xtarget=native       ;;
3539                     v9|niagara)               echo -xarch=sparc          ;;
3540                     ultrasparc)               echo -xarch=sparcvis       ;;
3541                     ultrasparc3|niagara2)     echo -xarch=sparcvis2      ;;
3542                     i586|pentium)             echo -xchip=pentium        ;;
3543                     i686|pentiumpro|pentium2) echo -xtarget=pentium_pro  ;;
3544                     pentium3*|c3-2)           echo -xtarget=pentium3     ;;
3545                     pentium-m)          echo -xarch=sse2 -xchip=pentium3 ;;
3546                     pentium4*)          echo -xtarget=pentium4           ;;
3547                     prescott|nocona)    echo -xarch=sse3 -xchip=pentium4 ;;
3548                     *-sse3)             echo -xarch=sse3                 ;;
3549                     core2)              echo -xarch=ssse3 -xchip=core2   ;;
3550                     bonnell)                   echo -xarch=ssse3         ;;
3551                     corei7|nehalem)            echo -xtarget=nehalem     ;;
3552                     westmere)                  echo -xtarget=westmere    ;;
3553                     silvermont)                echo -xarch=sse4_2        ;;
3554                     corei7-avx|sandybridge)    echo -xtarget=sandybridge ;;
3555                     core-avx*|ivybridge|haswell|broadwell)
3556                                                echo -xarch=avx           ;;
3557                     amdfam10|barcelona)        echo -xtarget=barcelona   ;;
3558                     btver1)                    echo -xarch=amdsse4a      ;;
3559                     btver2|bdver*)             echo -xarch=avx           ;;
3560                     athlon-4|athlon-[mx]p)     echo -xarch=ssea          ;;
3561                     k8|opteron|athlon64|athlon-fx)
3562                                                echo -xarch=sse2a         ;;
3563                     athlon*)                   echo -xarch=pentium_proa  ;;
3564                 esac
3565                 ;;
3566             -std=c99)             echo -xc99              ;;
3567             -fomit-frame-pointer) echo -xregs=frameptr    ;;
3568             -fPIC)                echo -KPIC -xcode=pic32 ;;
3569             -W*,*)                echo $flag              ;;
3570             -f*-*|-W*|-mimpure-text)                      ;;
3571             -shared)              echo -G                 ;;
3572             *)                    echo $flag              ;;
3573         esac
3574     done
3575 }
3576
3577 tms470_flags(){
3578     for flag; do
3579         case $flag in
3580             -march=*|-mcpu=*)
3581                 case "${flag#*=}" in
3582                     armv7-a|cortex-a*)      echo -mv=7a8 ;;
3583                     armv7-r|cortex-r*)      echo -mv=7r4 ;;
3584                     armv7-m|cortex-m*)      echo -mv=7m3 ;;
3585                     armv6*|arm11*)          echo -mv=6   ;;
3586                     armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
3587                                             echo -mv=5e  ;;
3588                     armv4*|arm7*|arm9[24]*) echo -mv=4   ;;
3589                 esac
3590                 ;;
3591             -mfpu=neon)     echo --float_support=vfpv3 --neon ;;
3592             -mfpu=vfp)      echo --float_support=vfpv2        ;;
3593             -mfpu=vfpv3)    echo --float_support=vfpv3        ;;
3594             -mfpu=vfpv3-d16) echo --float_support=vfpv3d16    ;;
3595             -msoft-float)   echo --float_support=vfplib       ;;
3596             -O[0-3]|-mf=*)  echo $flag                        ;;
3597             -g)             echo -g -mn                       ;;
3598             -pds=*)         echo $flag                        ;;
3599             -D*|-I*)        echo $flag                        ;;
3600             --gcc|--abi=*)  echo $flag                        ;;
3601             -me)            echo $flag                        ;;
3602         esac
3603     done
3604 }
3605
3606 probe_cc(){
3607     pfx=$1
3608     _cc=$2
3609     first=$3
3610
3611     unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
3612     unset _ld_o _ldflags _ld_lib _ld_path
3613     unset _depflags _DEPCMD _DEPFLAGS
3614     _flags_filter=echo
3615
3616     if $_cc --version 2>&1 | grep -q '^GNU assembler'; then
3617         true # no-op to avoid reading stdin in following checks
3618     elif $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
3619         _type=llvm_gcc
3620         gcc_extra_ver=$(expr "$($_cc --version 2>/dev/null | head -n1)" : '.*\((.*)\)')
3621         _ident="llvm-gcc $($_cc -dumpversion 2>/dev/null) $gcc_extra_ver"
3622         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3623         _cflags_speed='-O3'
3624         _cflags_size='-Os'
3625     elif $_cc -v 2>&1 | grep -qi ^gcc; then
3626         _type=gcc
3627         gcc_version=$($_cc --version | head -n1)
3628         gcc_basever=$($_cc -dumpversion)
3629         gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
3630         gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
3631         _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
3632         case $gcc_basever in
3633             2*) ;;
3634             *) _depflags='-MMD -MF $(@:.o=.d) -MT $@' ;;
3635         esac
3636         if [ "$first" = true ]; then
3637             case $gcc_basever in
3638                 4.2*)
3639                 warn "gcc 4.2 is outdated and may miscompile FFmpeg. Please use a newer compiler." ;;
3640             esac
3641         fi
3642         _cflags_speed='-O3'
3643         _cflags_size='-Os'
3644     elif $_cc --version 2>/dev/null | grep -q ^icc; then
3645         _type=icc
3646         _ident=$($_cc --version | head -n1)
3647         _depflags='-MMD'
3648         _cflags_speed='-O3'
3649         _cflags_size='-Os'
3650         _cflags_noopt='-O1'
3651         _flags_filter=icc_flags
3652     elif $_cc -v 2>&1 | grep -q xlc; then
3653         _type=xlc
3654         _ident=$($_cc -qversion 2>/dev/null | head -n1)
3655         _cflags_speed='-O5'
3656         _cflags_size='-O5 -qcompact'
3657     elif $_cc -V 2>/dev/null | grep -q Compaq; then
3658         _type=ccc
3659         _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
3660         _DEPFLAGS='-M'
3661         _cflags_speed='-fast'
3662         _cflags_size='-O1'
3663         _flags_filter=ccc_flags
3664     elif $_cc --vsn 2>/dev/null | grep -Eq "ARM (C/C\+\+ )?Compiler"; then
3665         test -d "$sysroot" || die "No valid sysroot specified."
3666         _type=armcc
3667         _ident=$($_cc --vsn | grep -i build | head -n1 | sed 's/.*: //')
3668         armcc_conf="$PWD/armcc.conf"
3669         $_cc --arm_linux_configure                 \
3670              --arm_linux_config_file="$armcc_conf" \
3671              --configure_sysroot="$sysroot"        \
3672              --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
3673              die "Error creating armcc configuration file."
3674         $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
3675         _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
3676         as_default="${cross_prefix}gcc"
3677         _depflags='-MMD'
3678         _cflags_speed='-O3'
3679         _cflags_size='-Os'
3680     elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
3681         _type=tms470
3682         _ident=$($_cc -version | head -n1 | tr -s ' ')
3683         _flags='--gcc --abi=eabi -me'
3684         _cc_e='-ppl -fe=$@'
3685         _cc_o='-fe=$@'
3686         _depflags='-ppa -ppd=$(@:.o=.d)'
3687         _cflags_speed='-O3 -mf=5'
3688         _cflags_size='-O3 -mf=2'
3689         _flags_filter=tms470_flags
3690     elif $_cc -v 2>&1 | grep -q clang; then
3691         _type=clang
3692         _ident=$($_cc --version 2>/dev/null | head -n1)
3693         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3694         _cflags_speed='-O3'
3695         _cflags_size='-Os'
3696     elif $_cc -V 2>&1 | grep -q Sun; then
3697         _type=suncc
3698         _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
3699         _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
3700         _DEPFLAGS='-xM1 -xc99'
3701         _ldflags='-std=c99'
3702         _cflags_speed='-O5'
3703         _cflags_size='-O5 -xspace'
3704         _flags_filter=suncc_flags
3705     elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
3706         _type=pathscale
3707         _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
3708         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3709         _cflags_speed='-O2'
3710         _cflags_size='-Os'
3711         _flags_filter='filter_out -Wdisabled-optimization'
3712     elif $_cc -v 2>&1 | grep -q Open64; then
3713         _type=open64
3714         _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
3715         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3716         _cflags_speed='-O2'
3717         _cflags_size='-Os'
3718         _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
3719     elif $_cc -V 2>&1 | grep -q Portland; then
3720         _type=pgi
3721         _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
3722         opt_common='-alias=ansi -Mdse -Mlre -Mpre'
3723         _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
3724         _cflags_size="-O2 -Munroll=c:1 $opt_common"
3725         _cflags_noopt="-O"
3726         _flags_filter=pgi_flags
3727     elif $_cc 2>&1 | grep -q 'Microsoft.*ARM.*Assembler'; then
3728         _type=armasm
3729         _ident=$($_cc | head -n1)
3730         # 4509: "This form of conditional instruction is deprecated"
3731         _flags="-nologo -ignore 4509"
3732         _flags_filter=armasm_flags
3733     elif $_cc 2>&1 | grep -q Intel; then
3734         _type=icl
3735         _ident=$($_cc 2>&1 | head -n1)
3736         _depflags='-QMMD -QMF$(@:.o=.d) -QMT$@'
3737         # Not only is O3 broken on 13.x+ but it is slower on all previous
3738         # versions (tested) as well.
3739         _cflags_speed="-O2"
3740         _cflags_size="-O1 -Oi" # -O1 without -Oi miscompiles stuff
3741         if $_cc 2>&1 | grep -q Linker; then
3742             _ld_o='-out:$@'
3743         else
3744             _ld_o='-Fe$@'
3745         fi
3746         _cc_o='-Fo$@'
3747         _cc_e='-P'
3748         _flags_filter=icl_flags
3749         _ld_lib='lib%.a'
3750         _ld_path='-libpath:'
3751         # -Qdiag-error to make icl error when seeing certain unknown arguments
3752         _flags='-nologo -Qdiag-error:4044,10157'
3753         # -Qvec- -Qsimd- to prevent miscompilation, -GS, fp:precise for consistency
3754         # with MSVC which enables it by default.
3755         _cflags='-D_USE_MATH_DEFINES -Qms0 -Qvec- -Qsimd- -GS -fp:precise'
3756         disable stripping
3757     elif $_cc -nologo- 2>&1 | grep -q Microsoft; then
3758         _type=msvc
3759         _ident=$($_cc 2>&1 | head -n1)
3760         _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
3761         _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
3762         _cflags_speed="-O2"
3763         _cflags_size="-O1"
3764         if $_cc -nologo- 2>&1 | grep -q Linker; then
3765             _ld_o='-out:$@'
3766         else
3767             _ld_o='-Fe$@'
3768         fi
3769         _cc_o='-Fo$@'
3770         _cc_e='-P -Fi$@'
3771         _flags_filter=msvc_flags
3772         _ld_lib='lib%.a'
3773         _ld_path='-libpath:'
3774         _flags='-nologo'
3775         _cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS'
3776         disable stripping
3777     elif $_cc --version 2>/dev/null | grep -q ^cparser; then
3778         _type=cparser
3779         _ident=$($_cc --version | head -n1)
3780         _depflags='-MMD'
3781         _cflags_speed='-O4'
3782         _cflags_size='-O2'
3783         _flags_filter=cparser_flags
3784     fi
3785
3786     eval ${pfx}_type=\$_type
3787     eval ${pfx}_ident=\$_ident
3788 }
3789
3790 set_ccvars(){
3791     eval ${1}_C=\${_cc_c-\${${1}_C}}
3792     eval ${1}_E=\${_cc_e-\${${1}_E}}
3793     eval ${1}_O=\${_cc_o-\${${1}_O}}
3794
3795     if [ -n "$_depflags" ]; then
3796         eval ${1}_DEPFLAGS=\$_depflags
3797     else
3798         eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
3799         eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
3800         eval DEP${1}FLAGS=\$_flags
3801     fi
3802 }
3803
3804 probe_cc cc "$cc" "true"
3805 cflags_filter=$_flags_filter
3806 cflags_speed=$_cflags_speed
3807 cflags_size=$_cflags_size
3808 cflags_noopt=$_cflags_noopt
3809 add_cflags $_flags $_cflags
3810 cc_ldflags=$_ldflags
3811 set_ccvars CC
3812
3813 probe_cc hostcc "$host_cc"
3814 host_cflags_filter=$_flags_filter
3815 add_host_cflags  $_flags $_cflags
3816 set_ccvars HOSTCC
3817
3818 test -n "$cc_type" && enable $cc_type ||
3819     warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
3820
3821 : ${as_default:=$cc}
3822 : ${dep_cc_default:=$cc}
3823 : ${ld_default:=$cc}
3824 : ${host_ld_default:=$host_cc}
3825 set_default ar as dep_cc ld host_ld windres
3826
3827 probe_cc as "$as"
3828 asflags_filter=$_flags_filter
3829 add_asflags $_flags $_cflags
3830 set_ccvars AS
3831
3832 probe_cc ld "$ld"
3833 ldflags_filter=$_flags_filter
3834 add_ldflags $_flags $_ldflags
3835 test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
3836 LD_O=${_ld_o-$LD_O}
3837 LD_LIB=${_ld_lib-$LD_LIB}
3838 LD_PATH=${_ld_path-$LD_PATH}
3839
3840 probe_cc hostld "$host_ld"
3841 host_ldflags_filter=$_flags_filter
3842 add_host_ldflags $_flags $_ldflags
3843 HOSTLD_O=${_ld_o-$HOSTLD_O}
3844
3845 if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
3846     probe_cc depcc "$dep_cc"
3847     CCDEP=${_DEPCMD:-$DEPCMD}
3848     CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
3849     DEPCCFLAGS=$_flags
3850 fi
3851
3852 if $ar 2>&1 | grep -q Microsoft; then
3853     arflags="-nologo"
3854     ar_o='-out:$@'
3855 elif $ar 2>&1 | grep -q 'Texas Instruments'; then
3856     arflags="rq"
3857     ar_o='$@'
3858 elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
3859     arflags='-Xany -r -c'
3860     ar_o='$@'
3861 elif $ar 2>&1 | grep -q "\[D\] "; then
3862     arflags="rcD"
3863     ar_o='$@'
3864 else
3865     arflags="rc"
3866     ar_o='$@'
3867 fi
3868
3869 add_cflags $extra_cflags
3870 add_cxxflags $extra_cxxflags
3871 add_asflags $extra_cflags
3872
3873 if test -n "$sysroot"; then
3874     case "$cc_type" in
3875         gcc|llvm_gcc|clang)
3876             add_cppflags --sysroot="$sysroot"
3877             add_ldflags --sysroot="$sysroot"
3878 # On Darwin --sysroot may be ignored, -isysroot always affects headers and linking
3879             add_cppflags -isysroot "$sysroot"
3880             add_ldflags -isysroot "$sysroot"
3881         ;;
3882         tms470)
3883             add_cppflags -I"$sysinclude"
3884             add_ldflags  --sysroot="$sysroot"
3885         ;;
3886     esac
3887 fi
3888
3889 if test "$cpu" = host; then
3890     enabled cross_compile &&
3891         die "--cpu=host makes no sense when cross-compiling."
3892
3893     case "$cc_type" in
3894         gcc|llvm_gcc)
3895             check_native(){
3896                 $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
3897                 sed -n "/cc1.*$1=/{
3898                             s/.*$1=\\([^ ]*\\).*/\\1/
3899                             p
3900                             q
3901                         }" $TMPE
3902             }
3903             cpu=$(check_native -march || check_native -mcpu)
3904         ;;
3905     esac
3906
3907     test "${cpu:-host}" = host &&
3908         die "--cpu=host not supported with compiler $cc"
3909 fi
3910
3911 # Deal with common $arch aliases
3912 case "$arch" in
3913     aarch64|arm64)
3914         arch="aarch64"
3915     ;;
3916     arm*|iPad*|iPhone*)
3917         arch="arm"
3918     ;;
3919     mips*|IP*)
3920         arch="mips"
3921     ;;
3922     parisc*|hppa*)
3923         arch="parisc"
3924     ;;
3925     "Power Macintosh"|ppc*|powerpc*)
3926         arch="ppc"
3927     ;;
3928     s390|s390x)
3929         arch="s390"
3930     ;;
3931     sh4|sh)
3932         arch="sh4"
3933     ;;
3934     sun4u|sparc*)
3935         arch="sparc"
3936     ;;
3937     tilegx|tile-gx)
3938         arch="tilegx"
3939     ;;
3940     i[3-6]86*|i86pc|BePC|x86pc|x86_64|x86_32|amd64)
3941         arch="x86"
3942     ;;
3943 esac
3944
3945 is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
3946 enable $arch
3947
3948 # Add processor-specific flags
3949 if enabled aarch64; then
3950
3951     case $cpu in
3952         armv*)
3953             cpuflags="-march=$cpu"
3954         ;;
3955         *)
3956             cpuflags="-mcpu=$cpu"
3957         ;;
3958     esac
3959
3960 elif enabled alpha; then
3961
3962     cpuflags="-mcpu=$cpu"
3963
3964 elif enabled arm; then
3965
3966     check_arm_arch() {
3967         check_cpp_condition stddef.h \
3968             "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
3969             $cpuflags
3970     }
3971
3972     probe_arm_arch() {
3973         if   check_arm_arch 4;        then echo armv4;
3974         elif check_arm_arch 4T;       then echo armv4t;
3975         elif check_arm_arch 5;        then echo armv5;
3976         elif check_arm_arch 5E;       then echo armv5e;
3977         elif check_arm_arch 5T;       then echo armv5t;
3978         elif check_arm_arch 5TE;      then echo armv5te;
3979         elif check_arm_arch 5TEJ;     then echo armv5te;
3980         elif check_arm_arch 6;        then echo armv6;
3981         elif check_arm_arch 6J;       then echo armv6j;
3982         elif check_arm_arch 6K;       then echo armv6k;
3983         elif check_arm_arch 6Z;       then echo armv6z;
3984         elif check_arm_arch 6ZK;      then echo armv6zk;
3985         elif check_arm_arch 6T2;      then echo armv6t2;
3986         elif check_arm_arch 7;        then echo armv7;
3987         elif check_arm_arch 7A  7_A;  then echo armv7-a;
3988         elif check_arm_arch 7S;       then echo armv7-a;
3989         elif check_arm_arch 7R  7_R;  then echo armv7-r;
3990         elif check_arm_arch 7M  7_M;  then echo armv7-m;
3991         elif check_arm_arch 7EM 7E_M; then echo armv7-m;
3992         elif check_arm_arch 8A  8_A;  then echo armv8-a;
3993         fi
3994     }
3995
3996     [ "$cpu" = generic ] && cpu=$(probe_arm_arch)
3997
3998     case $cpu in
3999         armv*)
4000             cpuflags="-march=$cpu"
4001             subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
4002         ;;
4003         *)
4004             cpuflags="-mcpu=$cpu"
4005             case $cpu in
4006                 cortex-a*)                               subarch=armv7a  ;;
4007                 cortex-r*)                               subarch=armv7r  ;;
4008                 cortex-m*)                 enable thumb; subarch=armv7m  ;;
4009                 arm11*)                                  subarch=armv6   ;;
4010                 arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
4011                 armv4*|arm7*|arm9[24]*)                  subarch=armv4   ;;
4012                 *)                             subarch=$(probe_arm_arch) ;;
4013             esac
4014         ;;
4015     esac
4016
4017     case "$subarch" in
4018         armv5t*)    enable fast_clz                ;;
4019         armv[6-8]*)
4020             enable fast_clz
4021             disabled fast_unaligned || enable fast_unaligned
4022             ;;
4023     esac
4024
4025 elif enabled avr32; then
4026
4027     case $cpu in
4028         ap7[02]0[0-2])
4029             subarch="avr32_ap"
4030             cpuflags="-mpart=$cpu"
4031         ;;
4032         ap)
4033             subarch="avr32_ap"
4034             cpuflags="-march=$cpu"
4035         ;;
4036         uc3[ab]*)
4037             subarch="avr32_uc"
4038             cpuflags="-mcpu=$cpu"
4039         ;;
4040         uc)
4041             subarch="avr32_uc"
4042             cpuflags="-march=$cpu"
4043         ;;
4044     esac
4045
4046 elif enabled bfin; then
4047
4048     cpuflags="-mcpu=$cpu"
4049
4050 elif enabled mips; then
4051
4052     cpuflags="-march=$cpu"
4053
4054     case $cpu in
4055         24kc)
4056             disable mips32r5
4057             disable mips64r6
4058             disable mipsfpu
4059             disable mipsdspr1
4060             disable mipsdspr2
4061             disable msa
4062         ;;
4063         24kf*)
4064             disable mips32r5
4065             disable mips64r6
4066             disable mipsdspr1
4067             disable mipsdspr2
4068             disable msa
4069         ;;
4070         24kec|34kc|1004kc)
4071             disable mips32r5
4072             disable mips64r6
4073             disable mipsfpu
4074             disable mipsdspr2
4075             disable msa
4076         ;;
4077         24kef*|34kf*|1004kf*)
4078             disable mips32r5
4079             disable mips64r6
4080             disable mipsdspr2
4081             disable msa
4082         ;;
4083         74kc)
4084             disable mips32r5
4085             disable mips64r6
4086             disable mipsfpu
4087             disable msa
4088         ;;
4089         74kf)
4090             disable mips32r5
4091             disable mips64r6
4092             disable msa
4093         ;;
4094         p5600)
4095             disable mips64r6
4096             disable mipsdspr1
4097             disable mipsdspr2
4098
4099             check_cflags "-mtune=p5600"
4100         ;;
4101         i6400)
4102             disable mips32r5
4103             disable mipsdspr1
4104             disable mipsdspr2
4105             disable mipsfpu
4106
4107             check_cflags "-mtune=i6400 -mabi=64"
4108             check_ldflags "-mabi=64"
4109         ;;
4110         loongson*)
4111             disable mipsfpu
4112             disable mips32r2
4113             disable mips32r5
4114             disable mips64r6
4115             disable mipsdspr1
4116             disable mipsdspr2
4117             disable msa
4118             enable local_aligned_8 local_aligned_16 local_aligned_32
4119             enable simd_align_16
4120             enable fast_64bit
4121             enable fast_clz
4122             enable fast_cmov
4123             enable fast_unaligned
4124             disable aligned_stack
4125             case $cpu in
4126                 loongson3*)
4127                     cpuflags="-march=loongson3a -mhard-float -fno-expensive-optimizations"
4128                 ;;
4129                 loongson2e)
4130                     cpuflags="-march=loongson2e -mhard-float -fno-expensive-optimizations"
4131                 ;;
4132                 loongson2f)
4133                     cpuflags="-march=loongson2f -mhard-float -fno-expensive-optimizations"
4134                 ;;
4135             esac
4136         ;;
4137         generic)
4138             disable mips32r5
4139             disable mips64r6
4140             disable msa
4141         ;;
4142         *)
4143             disable mipsfpu
4144             disable mips32r2
4145             disable mips32r5
4146             disable mips64r6
4147             disable mipsdspr1
4148             disable mipsdspr2
4149             disable msa
4150         ;;
4151     esac
4152
4153 elif enabled ppc; then
4154
4155     disable ldbrx
4156
4157     case $(tolower $cpu) in
4158         601|ppc601|powerpc601)
4159             cpuflags="-mcpu=601"
4160             disable altivec
4161         ;;
4162         603*|ppc603*|powerpc603*)
4163             cpuflags="-mcpu=603"
4164             disable altivec
4165         ;;
4166         604*|ppc604*|powerpc604*)
4167             cpuflags="-mcpu=604"
4168             disable altivec
4169         ;;
4170         g3|75*|ppc75*|powerpc75*)
4171             cpuflags="-mcpu=750"
4172             disable altivec
4173         ;;
4174         g4|745*|ppc745*|powerpc745*)
4175             cpuflags="-mcpu=7450"
4176             disable vsx
4177         ;;
4178         74*|ppc74*|powerpc74*)
4179             cpuflags="-mcpu=7400"
4180             disable vsx
4181         ;;
4182         g5|970|ppc970|powerpc970)
4183             cpuflags="-mcpu=970"
4184             disable vsx
4185         ;;
4186         power[3-6]*)
4187             cpuflags="-mcpu=$cpu"
4188             disable vsx
4189         ;;
4190         power[7-8]*)
4191             cpuflags="-mcpu=$cpu"
4192         ;;
4193         cell)
4194             cpuflags="-mcpu=cell"
4195             enable ldbrx
4196             disable vsx
4197         ;;
4198         e500mc)
4199             cpuflags="-mcpu=e500mc"
4200             disable altivec
4201         ;;
4202         e500v2)
4203             cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
4204             disable altivec
4205             disable dcbzl
4206         ;;
4207         e500)
4208             cpuflags="-mcpu=8540 -mhard-float"
4209             disable altivec
4210             disable dcbzl
4211         ;;
4212     esac
4213
4214 elif enabled sparc; then
4215
4216     case $cpu in
4217         cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
4218             cpuflags="-mcpu=$cpu"
4219         ;;
4220         ultrasparc*|niagara[234])
4221             cpuflags="-mcpu=$cpu"
4222         ;;
4223     esac
4224
4225 elif enabled x86; then
4226
4227     case $cpu in
4228         i[345]86|pentium)
4229             cpuflags="-march=$cpu"
4230             disable i686
4231             disable mmx
4232         ;;
4233         # targets that do NOT support nopl and conditional mov (cmov)
4234         pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
4235             cpuflags="-march=$cpu"
4236             disable i686
4237         ;;
4238         # targets that do support nopl and conditional mov (cmov)
4239         i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx\
4240         |core*|atom|bonnell|nehalem|westmere|silvermont|sandybridge|ivybridge|haswell|broadwell|amdfam10|barcelona|b[dt]ver*)
4241             cpuflags="-march=$cpu"
4242             enable i686
4243             enable fast_cmov
4244         ;;
4245         # targets that do support conditional mov but on which it's slow
4246         pentium4|pentium4m|prescott|nocona)
4247             cpuflags="-march=$cpu"
4248             enable i686
4249             disable fast_cmov
4250         ;;
4251     esac
4252
4253 fi
4254
4255 if [ "$cpu" != generic ]; then
4256     add_cflags  $cpuflags
4257     add_asflags $cpuflags
4258     test "$cc_type" = "$ld_type" && add_ldflags $cpuflags
4259 fi
4260
4261 # compiler sanity check
4262 check_exec <<EOF
4263 int main(void){ return 0; }
4264 EOF
4265 if test "$?" != 0; then
4266     echo "$cc is unable to create an executable file."
4267     if test -z "$cross_prefix" && ! enabled cross_compile ; then
4268         echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
4269         echo "Only do this if you know what cross compiling means."
4270     fi
4271     die "C compiler test failed."
4272 fi
4273
4274 add_cppflags -D_ISOC99_SOURCE
4275 add_cxxflags -D__STDC_CONSTANT_MACROS
4276 check_cflags -std=c99
4277 check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
4278 #include <stdlib.h>
4279 EOF
4280 check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
4281 #include <stdlib.h>
4282 EOF
4283
4284 add_host_cppflags -D_ISOC99_SOURCE
4285 check_host_cflags -std=c99
4286 check_host_cflags -Wall
4287 check_host_cflags -O3
4288
4289 check_64bit(){
4290     arch32=$1
4291     arch64=$2
4292     expr=$3
4293     check_code cc "" "int test[2*($expr) - 1]" &&
4294         subarch=$arch64 || subarch=$arch32
4295 }
4296
4297 case "$arch" in
4298     aarch64|alpha|ia64)
4299         spic=$shared
4300     ;;
4301     mips)
4302         check_64bit mips mips64 '_MIPS_SIM > 1'
4303         spic=$shared
4304     ;;
4305     parisc)
4306         check_64bit parisc parisc64 'sizeof(void *) > 4'
4307         spic=$shared
4308     ;;
4309     ppc)
4310         check_64bit ppc ppc64 'sizeof(void *) > 4'
4311         spic=$shared
4312     ;;
4313     s390)
4314         check_64bit s390 s390x 'sizeof(void *) > 4'
4315         spic=$shared
4316     ;;
4317     sparc)
4318         check_64bit sparc sparc64 'sizeof(void *) > 4'
4319         spic=$shared
4320     ;;
4321     x86)
4322         check_64bit x86_32 x86_64 'sizeof(void *) > 4'
4323         # Treat x32 as x64 for now. Note it also needs spic=$shared
4324         test "$subarch" = "x86_32" && check_cpp_condition stddef.h 'defined(__x86_64__)' &&
4325             subarch=x86_64
4326         if test "$subarch" = "x86_64"; then
4327             spic=$shared
4328         fi
4329     ;;
4330     ppc)
4331         check_cc <<EOF && subarch="ppc64"
4332         int test[(int)sizeof(char*) - 7];
4333 EOF
4334     ;;
4335 esac
4336
4337 enable $subarch
4338 enabled spic && enable_weak pic
4339
4340 # OS specific
4341 case $target_os in
4342     aix)
4343         SHFLAGS=-shared
4344         add_cppflags '-I\$(SRC_PATH)/compat/aix'
4345         enabled shared && add_ldflags -Wl,-brtl
4346         ;;
4347     android)
4348         disable symver
4349         enable section_data_rel_ro
4350         SLIB_INSTALL_NAME='$(SLIBNAME)'
4351         SLIB_INSTALL_LINKS=
4352         # soname not set on purpose
4353         SHFLAGS=-shared
4354         ;;
4355     haiku)
4356         prefix_default="/boot/common"
4357         network_extralibs="-lnetwork"
4358         host_libs=
4359         ;;
4360     sunos)
4361         SHFLAGS='-shared -Wl,-h,$$(@F)'
4362         enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
4363         network_extralibs="-lsocket -lnsl"
4364         add_cppflags -D__EXTENSIONS__
4365         # When using suncc to build, the Solaris linker will mark
4366         # an executable with each instruction set encountered by
4367         # the Solaris assembler.  As our libraries contain their own
4368         # guards for processor-specific code, instead suppress
4369         # generation of the HWCAPS ELF section on Solaris x86 only.
4370         enabled_all suncc x86 &&
4371             echo "hwcap_1 = OVERRIDE;" > mapfile &&
4372             add_ldflags -Wl,-M,mapfile
4373         nm_default='nm -P -g'
4374         SLIB_CREATE_DEF_CMD='$(Q)perl $(SRC_PATH)/compat/solaris/make_sunver.pl $$(filter %.ver,$$^) $(OBJS) | grep -v @ > $(SUBDIR)lib$(NAME).ver-sol2'
4375         ;;
4376     netbsd)
4377         disable symver
4378         oss_indev_extralibs="-lossaudio"
4379         oss_outdev_extralibs="-lossaudio"
4380         enabled gcc || check_ldflags -Wl,-zmuldefs
4381         ;;
4382     openbsd|bitrig)
4383         disable symver
4384         SHFLAGS='-shared'
4385         SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
4386         SLIB_INSTALL_LINKS=
4387         oss_indev_extralibs="-lossaudio"
4388         oss_outdev_extralibs="-lossaudio"
4389         ;;
4390     dragonfly)
4391         disable symver
4392         ;;
4393     freebsd)
4394         ;;
4395     bsd/os)
4396         add_extralibs -lpoll -lgnugetopt
4397         strip="strip -d"
4398         ;;
4399     darwin)
4400         enabled ppc && add_asflags -force_cpusubtype_ALL
4401         SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
4402         enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
4403         strip="${strip} -x"
4404         add_ldflags -Wl,-dynamic,-search_paths_first
4405         SLIBSUF=".dylib"
4406         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
4407         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
4408         objformat="macho"
4409         enabled x86_64 && objformat="macho64"
4410         enabled_any pic shared x86_64 ||
4411             { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
4412         ;;
4413     mingw32*|mingw64*)
4414         if test $target_os = "mingw32ce"; then
4415             disable network
4416         else
4417             target_os=mingw32
4418         fi
4419         decklink_outdev_extralibs="$decklink_outdev_extralibs -lole32 -loleaut32"
4420         decklink_indev_extralibs="$decklink_indev_extralibs -lole32 -loleaut32"
4421         LIBTARGET=i386
4422         if enabled x86_64; then
4423             LIBTARGET="i386:x86-64"
4424         elif enabled arm; then
4425             LIBTARGET=arm-wince
4426         fi
4427         enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres
4428         enabled x86_32 && check_ldflags -Wl,--large-address-aware
4429         shlibdir_default="$bindir_default"
4430         SLIBPREF=""
4431         SLIBSUF=".dll"
4432         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4433         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4434         dlltool="${cross_prefix}dlltool"
4435         if check_cmd lib.exe -list; then
4436             SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
4437             if enabled x86_64; then
4438                 LIBTARGET=x64
4439             fi
4440         elif check_cmd $dlltool --version; then
4441             SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); $(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
4442         fi
4443         SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4444         SLIB_INSTALL_LINKS=
4445         SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
4446         SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
4447         SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.orig.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--disable-auto-image-base'
4448         objformat="win32"
4449         ranlib=:
4450         enable dos_paths
4451         check_ldflags -Wl,--nxcompat,--dynamicbase
4452         # Lets work around some stupidity in binutils.
4453         # ld will strip relocations from executables even though we need them
4454         # for dynamicbase (ASLR).  Using -pie does retain the reloc section
4455         # however ld then forgets what the entry point should be (oops) so we
4456         # have to manually (re)set it.
4457         if enabled x86_32; then
4458             add_ldexeflags -Wl,--pic-executable,-e,_mainCRTStartup
4459         elif enabled x86_64; then
4460             add_ldexeflags -Wl,--pic-executable,-e,mainCRTStartup
4461             check_ldflags -Wl,--high-entropy-va # binutils 2.25
4462             # Set image base >4GB for extra entropy with HEASLR
4463             add_ldexeflags -Wl,--image-base,0x140000000
4464             append SHFLAGS -Wl,--image-base,0x180000000
4465         fi
4466         ;;
4467     win32|win64)
4468         disable symver
4469         if enabled shared; then
4470             # Link to the import library instead of the normal static library
4471             # for shared libs.
4472             LD_LIB='%.lib'
4473             # Cannot build both shared and static libs with MSVC or icl.
4474             disable static
4475         fi
4476         enabled x86_32 && check_ldflags -LARGEADDRESSAWARE
4477         shlibdir_default="$bindir_default"
4478         SLIBPREF=""
4479         SLIBSUF=".dll"
4480         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4481         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4482         SLIB_CREATE_DEF_CMD='$(SRC_PATH)/compat/windows/makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
4483         SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4484         SLIB_INSTALL_LINKS=
4485         SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
4486         SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
4487         SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
4488         objformat="win32"
4489         ranlib=:
4490         enable dos_paths
4491         ;;
4492     cygwin*)
4493         target_os=cygwin
4494         shlibdir_default="$bindir_default"
4495         SLIBPREF="cyg"
4496         SLIBSUF=".dll"
4497         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4498         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4499         SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4500         SLIB_INSTALL_LINKS=
4501         SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
4502         SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
4503         objformat="win32"
4504         enable dos_paths
4505         enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres
4506         ;;
4507     *-dos|freedos|opendos)
4508         network_extralibs="-lsocket"
4509         objformat="coff"
4510         enable dos_paths
4511         add_cppflags -U__STRICT_ANSI__
4512         ;;
4513     linux)
4514         enable dv1394
4515         enable section_data_rel_ro
4516         ;;
4517     irix*)
4518         target_os=irix
4519         ranlib="echo ignoring ranlib"
4520         ;;
4521     os/2*)
4522         strip="lxlite -CS"
4523         ln_s="cp -f"
4524         objformat="aout"
4525         add_cppflags -D_GNU_SOURCE
4526         add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
4527         SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
4528         LIBSUF="_s.a"
4529         SLIBPREF=""
4530         SLIBSUF=".dll"
4531         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
4532         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
4533         SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
4534             echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
4535             echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
4536             echo EXPORTS >> $(SUBDIR)$(NAME).def; \
4537             emxexp $(OBJS) >> $(SUBDIR)$(NAME).def'
4538         SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
4539             emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
4540         SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
4541         enable dos_paths
4542         enable_weak os2threads
4543         ;;
4544     gnu/kfreebsd)
4545         add_cppflags -D_BSD_SOURCE
4546         ;;
4547     gnu)
4548         ;;
4549     qnx)
4550         add_cppflags -D_QNX_SOURCE
4551         network_extralibs="-lsocket"
4552         ;;
4553     symbian)
4554         SLIBSUF=".dll"
4555         enable dos_paths
4556         add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
4557         add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
4558         add_ldflags -Wl,--target1-abs,--no-undefined \
4559                     -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
4560                     -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
4561         add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
4562                       -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
4563                       -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
4564         ;;
4565     osf1)
4566         add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
4567         ;;
4568     minix)
4569         ;;
4570     plan9)
4571         add_cppflags -D_C99_SNPRINTF_EXTENSION  \
4572                      -D_REENTRANT_SOURCE        \
4573                      -D_RESEARCH_SOURCE         \
4574                      -DFD_SETSIZE=96            \
4575                      -DHAVE_SOCK_OPTS
4576         add_compat strtod.o strtod=avpriv_strtod
4577         network_extralibs='-lbsd'
4578         exeobjs=compat/plan9/main.o
4579         disable ffserver
4580         cp_f='cp'
4581         ;;
4582     none)
4583         ;;
4584     *)
4585         die "Unknown OS '$target_os'."
4586         ;;
4587 esac
4588
4589 # determine libc flavour
4590
4591 probe_libc(){
4592     pfx=$1
4593     pfx_no_=${pfx%_}
4594     # uclibc defines __GLIBC__, so it needs to be checked before glibc.
4595     if check_${pfx}cpp_condition features.h "defined __UCLIBC__"; then
4596         eval ${pfx}libc_type=uclibc
4597         add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
4598     elif check_${pfx}cpp_condition features.h "defined __GLIBC__"; then
4599         eval ${pfx}libc_type=glibc
4600         add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
4601     # MinGW headers can be installed on Cygwin, so check for newlib first.
4602     elif check_${pfx}cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
4603         eval ${pfx}libc_type=newlib
4604         add_${pfx}cppflags -U__STRICT_ANSI__
4605     # MinGW64 is backwards compatible with MinGW32, so check for it first.
4606     elif check_${pfx}cpp_condition _mingw.h "defined __MINGW64_VERSION_MAJOR"; then
4607         eval ${pfx}libc_type=mingw64
4608         if check_${pfx}cpp_condition _mingw.h "__MINGW64_VERSION_MAJOR < 3"; then
4609             add_compat msvcrt/snprintf.o
4610             add_cflags "-include $source_path/compat/msvcrt/snprintf.h"
4611         fi
4612         add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
4613         eval test \$${pfx_no_}cc_type = "gcc" &&
4614             add_${pfx}cppflags -D__printf__=__gnu_printf__
4615     elif check_${pfx}cpp_condition _mingw.h "defined __MINGW_VERSION"  ||
4616          check_${pfx}cpp_condition _mingw.h "defined __MINGW32_VERSION"; then
4617         eval ${pfx}libc_type=mingw32
4618         check_${pfx}cpp_condition _mingw.h "__MINGW32_MAJOR_VERSION > 3 || \
4619             (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
4620             die "ERROR: MinGW32 runtime version must be >= 3.15."
4621         add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
4622         eval test \$${pfx_no_}cc_type = "gcc" &&
4623             add_${pfx}cppflags -D__printf__=__gnu_printf__
4624     elif check_${pfx}cpp_condition crtversion.h "defined _VC_CRT_MAJOR_VERSION"; then
4625         eval ${pfx}libc_type=msvcrt
4626         if check_${pfx}cpp_condition crtversion.h "_VC_CRT_MAJOR_VERSION < 14"; then
4627             if [ "$pfx" = host_ ]; then
4628                 add_host_cppflags -Dsnprintf=_snprintf
4629             else
4630                 add_compat strtod.o strtod=avpriv_strtod
4631                 add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf   \
4632                                              _snprintf=avpriv_snprintf  \
4633                                              vsnprintf=avpriv_vsnprintf
4634             fi
4635         fi
4636         # The MSVC 2010 headers (Win 7.0 SDK) set _WIN32_WINNT to
4637         # 0x601 by default unless something else is set by the user.
4638         # This can easily lead to us detecting functions only present
4639         # in such new versions and producing binaries requiring windows 7.0.
4640         # Therefore explicitly set the default to XP unless the user has
4641         # set something else on the command line.
4642         # Don't do this if WINAPI_FAMILY is set and is set to a non-desktop
4643         # family. For these cases, configure is free to use any functions
4644         # found in the SDK headers by default. (Alternatively, we could force
4645         # _WIN32_WINNT to 0x0602 in that case.)
4646         check_${pfx}cpp_condition stdlib.h "defined(_WIN32_WINNT)" ||
4647             { check_${pfx}cpp <<EOF && add_${pfx}cppflags -D_WIN32_WINNT=0x0502; }
4648 #ifdef WINAPI_FAMILY
4649 #include <winapifamily.h>
4650 #if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
4651 #error not desktop
4652 #endif
4653 #endif
4654 EOF
4655     elif check_${pfx}cpp_condition stddef.h "defined __KLIBC__"; then
4656         eval ${pfx}libc_type=klibc
4657     elif check_${pfx}cpp_condition sys/cdefs.h "defined __BIONIC__"; then
4658         eval ${pfx}libc_type=bionic
4659     elif check_${pfx}cpp_condition sys/brand.h "defined LABELED_BRAND_NAME"; then
4660         eval ${pfx}libc_type=solaris
4661         add_${pfx}cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
4662     fi
4663     check_${pfx}cc <<EOF
4664 #include <time.h>
4665 void *v = localtime_r;
4666 EOF
4667 test "$?" != 0 && check_${pfx}cc -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 <<EOF && add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
4668 #include <time.h>
4669 void *v = localtime_r;
4670 EOF
4671
4672 }
4673
4674 probe_libc
4675 test -n "$libc_type" && enable libc_$libc_type
4676 probe_libc host_
4677 test -n "$host_libc_type" && enable host_libc_$host_libc_type
4678
4679 case $libc_type in
4680     bionic)
4681         add_compat strtod.o strtod=avpriv_strtod
4682         ;;
4683 esac
4684
4685 # hacks for compiler/libc/os combinations
4686
4687 if enabled_all tms470 libc_glibc; then
4688     CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
4689     add_cppflags -D__USER_LABEL_PREFIX__=
4690     add_cppflags -D__builtin_memset=memset
4691     add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
4692     add_cflags   -pds=48    # incompatible redefinition of macro
4693 fi
4694
4695 if enabled_all ccc libc_glibc; then
4696     add_ldflags -Wl,-z,now  # calls to libots crash without this
4697 fi
4698
4699 check_compile_assert flt_lim "float.h limits.h" "DBL_MAX == (double)DBL_MAX" ||
4700     add_cppflags '-I\$(SRC_PATH)/compat/float'
4701
4702 esc(){
4703     echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
4704 }
4705
4706 echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $FFMPEG_CONFIGURATION)" >config.fate
4707
4708 check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable_weak pic
4709
4710 set_default libdir
4711 : ${shlibdir_default:="$libdir"}
4712 : ${pkgconfigdir_default:="$libdir/pkgconfig"}
4713
4714 set_default $PATHS_LIST
4715 set_default nm
4716
4717 # we need to build at least one lib type
4718 if ! enabled_any static shared; then
4719     cat <<EOF
4720 At least one library type must be built.
4721 Specify --enable-static to build the static libraries or --enable-shared to
4722 build the shared libraries as well. To only build the shared libraries specify
4723 --disable-static in addition to --enable-shared.
4724 EOF
4725     exit 1;
4726 fi
4727
4728 die_license_disabled() {
4729     enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
4730 }
4731
4732 die_license_disabled_gpl() {
4733     enabled $1 || { enabled $2 && die "$2 is incompatible with the gpl and --enable-$1 is not specified."; }
4734 }
4735
4736 die_license_disabled gpl frei0r
4737 die_license_disabled gpl libcdio
4738 die_license_disabled gpl librubberband
4739 die_license_disabled gpl libsmbclient
4740 die_license_disabled gpl libutvideo
4741 die_license_disabled gpl libvidstab
4742 die_license_disabled gpl libx264
4743 die_license_disabled gpl libx265
4744 die_license_disabled gpl libxavs
4745 die_license_disabled gpl libxvid
4746 die_license_disabled gpl libzvbi
4747 die_license_disabled gpl x11grab
4748
4749 die_license_disabled nonfree libaacplus
4750 die_license_disabled nonfree libfaac
4751 die_license_disabled nonfree nvenc
4752 enabled gpl && die_license_disabled_gpl nonfree libfdk_aac
4753 enabled gpl && die_license_disabled_gpl nonfree openssl
4754
4755 die_license_disabled version3 libopencore_amrnb
4756 die_license_disabled version3 libopencore_amrwb
4757 die_license_disabled version3 libsmbclient
4758 die_license_disabled version3 libvo_aacenc
4759 die_license_disabled version3 libvo_amrwbenc
4760
4761 enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
4762
4763 disabled optimizations || check_cflags -fomit-frame-pointer
4764
4765 enable_weak_pic() {
4766     disabled pic && return
4767     enable pic
4768     add_cppflags -DPIC
4769     case "$target_os" in
4770     mingw*|cygwin*)
4771         ;;
4772     *)
4773         add_cflags -fPIC
4774         ;;
4775     esac
4776     add_asflags  -fPIC
4777 }
4778
4779 enabled pic && enable_weak_pic
4780
4781 check_cc <<EOF || die "Symbol mangling check failed."
4782 int ff_extern;
4783 EOF
4784 sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
4785 extern_prefix=${sym%%ff_extern*}
4786
4787 check_cc <<EOF && enable_weak inline_asm
4788 void foo(void) { __asm__ volatile ("" ::); }
4789 EOF
4790
4791 _restrict=
4792 for restrict_keyword in restrict __restrict__ __restrict; do
4793     check_cc <<EOF && _restrict=$restrict_keyword && break
4794 void foo(char * $restrict_keyword p);
4795 EOF
4796 done
4797
4798 check_cc <<EOF && enable pragma_deprecated
4799 void foo(void) { _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") }
4800 EOF
4801
4802 check_cc <<EOF && enable attribute_packed
4803 struct { int x; } __attribute__((packed)) x;
4804 EOF
4805
4806 check_cc <<EOF && enable attribute_may_alias
4807 union { int x; } __attribute__((may_alias)) x;
4808 EOF
4809
4810 check_cc <<EOF || die "endian test failed"
4811 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
4812 EOF
4813 od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
4814
4815 if ! enabled ppc64 || enabled bigendian; then
4816     disable vsx
4817 fi
4818
4819 check_gas() {
4820     log "check_gas using '$as' as AS"
4821     # :vararg is used on aarch64, arm and ppc altivec
4822     check_as <<EOF || return 1
4823 .macro m n, y:vararg=0
4824 \n: .int \y
4825 .endm
4826 m x
4827 EOF
4828     # .altmacro is only used in arm asm
4829     ! enabled arm || check_as <<EOF || return 1
4830 .altmacro
4831 EOF
4832     enable gnu_as
4833     return 0
4834 }
4835
4836 if enabled_any arm aarch64 || enabled_all ppc altivec && enabled asm; then
4837     nogas=:
4838     enabled_any arm aarch64 && nogas=die
4839     enabled_all ppc altivec && [ $target_os_default != aix ] && nogas=warn
4840     as_noop=-v
4841
4842     case $as_type in
4843         arm*) gaspp_as_type=armasm; as_noop=-h ;;
4844         gcc)  gaspp_as_type=gas ;;
4845         *)    gaspp_as_type=$as_type ;;
4846     esac
4847
4848     [ $target_os = "darwin" ] && gaspp_as_type="apple-$gaspp_as_type"
4849
4850     test "${as#*gas-preprocessor.pl}" != "$as" ||
4851     check_cmd gas-preprocessor.pl -arch $arch -as-type $gaspp_as_type -- ${as:=$cc} $as_noop &&
4852         gas="${gas:=gas-preprocessor.pl} -arch $arch -as-type $gaspp_as_type -- ${as:=$cc}"
4853
4854     if ! check_gas ; then
4855         as=${gas:=$as}
4856         check_gas || \
4857             $nogas "GNU assembler not found, install/update gas-preprocessor"
4858     fi
4859
4860     check_as <<EOF && enable as_func
4861 .func test
4862 .endfunc
4863 EOF
4864 fi
4865
4866 check_inline_asm inline_asm_labels '"1:\n"'
4867
4868 check_inline_asm inline_asm_nonlocal_labels '"Label:\n"'
4869
4870 if enabled aarch64; then
4871     enabled armv8 && check_insn armv8 'prfm   pldl1strm, [x0]'
4872     # internal assembler in clang 3.3 does not support this instruction
4873     enabled neon && check_insn neon 'ext   v0.8B, v0.8B, v1.8B, #1'
4874     enabled vfp  && check_insn vfp  'fmadd d0,    d0,    d1,    d2'
4875
4876     map 'enabled_any ${v}_external ${v}_inline || disable $v' $ARCH_EXT_LIST_ARM
4877
4878 elif enabled alpha; then
4879
4880     check_cflags -mieee
4881
4882 elif enabled arm; then
4883
4884     enabled msvc && check_cpp_condition stddef.h "defined _M_ARMT" && enable thumb
4885
4886     check_cpp_condition stddef.h "defined __thumb__" && check_cc <<EOF && enable_weak thumb
4887 float func(float a, float b){ return a+b; }
4888 EOF
4889
4890     enabled thumb && check_cflags -mthumb || check_cflags -marm
4891
4892     if     check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
4893         enable vfp_args
4894     elif check_cpp_condition stddef.h "defined _M_ARM_FP && _M_ARM_FP >= 30"; then
4895         enable vfp_args
4896     elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__" && [ $target_os != darwin ]; then
4897         case "${cross_prefix:-$cc}" in
4898             *hardfloat*)         enable vfp_args;   fpabi=vfp ;;
4899             *) check_ld "cc" <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
4900 __asm__ (".eabi_attribute 28, 1");
4901 int main(void) { return 0; }
4902 EOF
4903         esac
4904         warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
4905     fi
4906
4907     enabled armv5te && check_insn armv5te 'qadd r0, r0, r0'
4908     enabled armv6   && check_insn armv6   'sadd16 r0, r0, r0'
4909     enabled armv6t2 && check_insn armv6t2 'movt r0, #0'
4910     enabled neon    && check_insn neon    'vadd.i16 q0, q0, q0'
4911     enabled vfp     && check_insn vfp     'fadds s0, s0, s0'
4912     enabled vfpv3   && check_insn vfpv3   'vmov.f32 s0, #1.0'
4913     enabled setend  && check_insn setend  'setend be'
4914
4915     [ $target_os = linux ] || [ $target_os = android ] ||
4916         map 'enabled_any ${v}_external ${v}_inline || disable $v' \
4917             $ARCH_EXT_LIST_ARM
4918
4919     check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
4920
4921     check_as <<EOF && enable as_dn_directive
4922 ra .dn d0.i16
4923 .unreq ra
4924 EOF
4925
4926     # llvm's integrated assembler supports .object_arch from llvm 3.5
4927     [ "$objformat" = elf ] && check_as <<EOF && enable as_object_arch
4928 .object_arch armv4
4929 EOF
4930
4931     [ $target_os != win32 ] && enabled_all armv6t2 shared !pic && enable_weak_pic
4932
4933 elif enabled mips; then
4934
4935     enabled loongson2 && check_inline_asm loongson2 '"dmult.g $8, $9, $10"'
4936     enabled loongson3 && check_inline_asm loongson3 '"gsldxc1 $f0, 0($2, $3)"'
4937     enabled mmi && check_inline_asm mmi '"punpcklhw $f0, $f0, $f0"'
4938
4939     # Enable minimum ISA based on selected options
4940     if enabled mips64 && (enabled mipsdspr1 || enabled mipsdspr2); then
4941         add_cflags "-mips64r2"
4942         add_asflags "-mips64r2"
4943     elif enabled mips64 && enabled mipsfpu && disabled loongson2 && disabled loongson3; then
4944         add_cflags "-mips64"
4945         add_asflags "-mips64"
4946     elif enabled mipsdspr1 || enabled mipsdspr2; then
4947         add_cflags "-mips32r2 -mfp32"
4948         add_asflags "-mips32r2 -mfp32"
4949     elif enabled mips32r5 || enabled mips64r6; then
4950         check_cflags "-mfp64"
4951         check_ldflags "-mfp64"
4952     fi
4953
4954     enabled mips32r5  && check_cflags "-mips32r5 -msched-weight -mload-store-pairs -funroll-loops" &&
4955      check_ldflags "-mips32r5" &&
4956      check_inline_asm mips32r5  '"ulw $t0, ($t1)"'
4957     enabled mips64r6  && check_cflags "-mips64r6 -msched-weight -mload-store-pairs -funroll-loops" &&
4958      check_ldflags "-mips64r6" &&
4959      check_inline_asm mips64r6  '"aui $t0, $t1, 1"'
4960     enabled mipsdspr1 && add_cflags "-mdsp" && add_asflags "-mdsp" &&
4961      check_inline_asm mipsdspr1 '"addu.qb $t0, $t1, $t2"'
4962     enabled mipsdspr2 && add_cflags "-mdspr2" && add_asflags "-mdspr2" &&
4963      check_inline_asm mipsdspr2 '"absq_s.qb $t0, $t1"'
4964     enabled mipsfpu   && add_cflags "-mhard-float" && add_asflags "-mhard-float" &&
4965      check_inline_asm mipsfpu   '"madd.d $f0, $f2, $f4, $f6"'
4966     enabled msa       && check_cflags "-mmsa" && check_ldflags "-mmsa" &&
4967      check_inline_asm msa       '"addvi.b $w0, $w1, 1"'
4968
4969     enabled mips32r5 && add_asflags "-mips32r5 -mfp64"
4970     enabled mips64r6 && add_asflags "-mips64r6 -mfp64"
4971     enabled msa && add_asflags "-mmsa"
4972
4973 elif enabled parisc; then
4974
4975     if enabled gcc; then
4976         case $($cc -dumpversion) in
4977             4.[3-9].*) check_cflags -fno-optimize-sibling-calls ;;
4978         esac
4979     fi
4980
4981 elif enabled ppc; then
4982
4983     enable local_aligned_8 local_aligned_16 local_aligned_32
4984
4985     check_inline_asm dcbzl     '"dcbzl 0, %0" :: "r"(0)'
4986     check_inline_asm ibm_asm   '"add 0, 0, 0"'
4987     check_inline_asm ppc4xx    '"maclhw r10, r11, r12"'
4988     check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
4989
4990     # AltiVec flags: The FSF version of GCC differs from the Apple version
4991     if enabled altivec; then
4992         check_cflags -maltivec -mabi=altivec &&
4993         { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
4994         check_cflags -faltivec
4995
4996         # check if our compiler supports Motorola AltiVec C API
4997         check_cc <<EOF || disable altivec
4998 $inc_altivec_h
4999 int main(void) {
5000     vector signed int v1 = (vector signed int) { 0 };
5001     vector signed int v2 = (vector signed int) { 1 };
5002     v1 = vec_add(v1, v2);
5003     return 0;
5004 }
5005 EOF
5006
5007         enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
5008     fi
5009
5010     if enabled vsx; then
5011         check_cflags -mvsx &&
5012         check_builtin vec_vsx_ld "altivec.h" "__builtin_vec_vsx_ld" || disable vsx
5013     fi
5014
5015     if enabled power8; then
5016         check_cpp_condition "altivec.h" "defined(_ARCH_PWR8)" || disable power8
5017     fi
5018
5019 elif enabled x86; then
5020
5021     check_builtin rdtsc    intrin.h   "__rdtsc()"
5022     check_builtin mm_empty mmintrin.h "_mm_empty()"
5023
5024     enable local_aligned_8 local_aligned_16 local_aligned_32
5025
5026     # check whether EBP is available on x86
5027     # As 'i' is stored on the stack, this program will crash
5028     # if the base pointer is used to access it because the
5029     # base pointer is cleared in the inline assembly code.
5030     check_exec_crash <<EOF && enable ebp_available
5031 volatile int i=0;
5032 __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
5033 return i;
5034 EOF
5035
5036     # check whether EBX is available on x86
5037     check_inline_asm ebx_available '""::"b"(0)' &&
5038         check_inline_asm ebx_available '"":::"%ebx"'
5039
5040     # check whether xmm clobbers are supported
5041     check_inline_asm xmm_clobbers '"":::"%xmm0"'
5042
5043     check_inline_asm inline_asm_direct_symbol_refs '"movl '$extern_prefix'test, %eax"' ||
5044         check_inline_asm inline_asm_direct_symbol_refs '"movl '$extern_prefix'test(%rip), %eax"'
5045
5046     # check whether binutils is new enough to compile SSSE3/MMXEXT
5047     enabled ssse3  && check_inline_asm ssse3_inline  '"pabsw %xmm0, %xmm0"'
5048     enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
5049
5050     if ! disabled_any asm mmx yasm; then
5051         if check_cmd $yasmexe --version; then
5052             enabled x86_64 && yasm_extra="-m amd64"
5053             yasm_debug="-g dwarf2"
5054         elif check_cmd nasm -v; then
5055             yasmexe=nasm
5056             yasm_debug="-g -F dwarf"
5057             if enabled x86_64; then
5058                 case "$objformat" in
5059                     elf)   objformat=elf64 ;;
5060                     win32) objformat=win64 ;;
5061                 esac
5062             fi
5063         fi
5064
5065         YASMFLAGS="-f $objformat $yasm_extra"
5066         enabled pic               && append YASMFLAGS "-DPIC"
5067         test -n "$extern_prefix"  && append YASMFLAGS "-DPREFIX"
5068         case "$objformat" in
5069             elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
5070         esac
5071
5072         check_yasm "movbe ecx, [5]" && enable yasm ||
5073             die "yasm/nasm not found or too old. Use --disable-yasm for a crippled build."
5074         check_yasm "vextracti128 xmm0, ymm0, 0"      || disable avx2_external
5075         check_yasm "vpmacsdd xmm0, xmm1, xmm2, xmm3" || disable xop_external
5076         check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
5077         check_yasm "CPU amdnop" || disable cpunop
5078     fi
5079
5080     case "$cpu" in
5081         athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
5082             disable fast_clz
5083         ;;
5084     esac
5085
5086 fi
5087
5088 check_code cc arm_neon.h "int16x8_t test = vdupq_n_s16(0)" && enable intrinsics_neon
5089
5090 check_ldflags -Wl,--as-needed
5091 check_ldflags -Wl,-z,noexecstack
5092
5093 if check_func dlopen; then
5094     ldl=
5095 elif check_func dlopen -ldl; then
5096     ldl=-ldl
5097 fi
5098
5099 frei0r_filter_extralibs='$ldl'
5100 frei0r_src_filter_extralibs='$ldl'
5101 ladspa_filter_extralibs='$ldl'
5102 nvenc_encoder_extralibs='$ldl'
5103
5104 if ! disabled network; then
5105     check_func getaddrinfo $network_extralibs
5106     check_func getservbyport $network_extralibs
5107     check_func inet_aton $network_extralibs
5108
5109     check_type netdb.h "struct addrinfo"
5110     check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
5111     check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
5112     check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
5113     check_type poll.h "struct pollfd"
5114     check_type netinet/sctp.h "struct sctp_event_subscribe"
5115     check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
5116     check_type netinet/in.h "struct sockaddr_in6"
5117     check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
5118     check_type "sys/types.h sys/socket.h" socklen_t
5119
5120     # Prefer arpa/inet.h over winsock2
5121     if check_header arpa/inet.h ; then
5122         check_func closesocket
5123     elif check_header winsock2.h ; then
5124         check_func_headers winsock2.h closesocket -lws2 &&
5125             network_extralibs="-lws2" ||
5126         { check_func_headers winsock2.h closesocket -lws2_32 &&
5127             network_extralibs="-lws2_32"; } || disable winsock2_h network
5128         check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
5129
5130         check_type ws2tcpip.h socklen_t
5131         check_type ws2tcpip.h "struct addrinfo"
5132         check_type ws2tcpip.h "struct group_source_req"
5133         check_type ws2tcpip.h "struct ip_mreq_source"
5134         check_type ws2tcpip.h "struct ipv6_mreq"
5135         check_type winsock2.h "struct pollfd"
5136         check_struct winsock2.h "struct sockaddr" sa_len
5137         check_type ws2tcpip.h "struct sockaddr_in6"
5138         check_type ws2tcpip.h "struct sockaddr_storage"
5139     else
5140         disable network
5141     fi
5142 fi
5143
5144 check_builtin atomic_cas_ptr atomic.h "void **ptr; void *oldval, *newval; atomic_cas_ptr(ptr, oldval, newval)"
5145 check_builtin atomic_compare_exchange "" "int *ptr, *oldval; int newval; __atomic_compare_exchange_n(ptr, oldval, newval, 0, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)"
5146 check_builtin machine_rw_barrier mbarrier.h "__machine_rw_barrier()"
5147 check_builtin MemoryBarrier windows.h "MemoryBarrier()"
5148 check_builtin sarestart signal.h "SA_RESTART"
5149 check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
5150 check_builtin gmtime_r time.h "time_t *time; struct tm *tm; gmtime_r(time, tm)"
5151 check_builtin localtime_r time.h "time_t *time; struct tm *tm; localtime_r(time, tm)"
5152
5153 case "$custom_allocator" in
5154     jemalloc)
5155         # jemalloc by default does not use a prefix
5156         require libjemalloc jemalloc/jemalloc.h malloc -ljemalloc
5157     ;;
5158     tcmalloc)
5159         require_pkg_config libtcmalloc gperftools/tcmalloc.h tc_malloc
5160         malloc_prefix=tc_
5161     ;;
5162 esac
5163
5164 check_func_headers malloc.h _aligned_malloc     && enable aligned_malloc
5165 check_func  ${malloc_prefix}memalign            && enable memalign
5166 check_func  ${malloc_prefix}posix_memalign      && enable posix_memalign
5167
5168 check_func  access
5169 check_func_headers time.h clock_gettime || { check_func_headers time.h clock_gettime -lrt && add_extralibs -lrt && LIBRT="-lrt"; }
5170 check_func  fcntl
5171 check_func  fork
5172 check_func  gethrtime
5173 check_func  getopt
5174 check_func  getrusage
5175 check_func  gettimeofday
5176 check_func  isatty
5177 check_func  mach_absolute_time
5178 check_func  mkstemp
5179 check_func  mmap
5180 check_func  mprotect
5181 # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
5182 check_func_headers time.h nanosleep || { check_func_headers time.h nanosleep -lrt && add_extralibs -lrt && LIBRT="-lrt"; }
5183 check_func  sched_getaffinity
5184 check_func  setrlimit
5185 check_struct "sys/stat.h" "struct stat" st_mtim.tv_nsec -D_BSD_SOURCE
5186 check_func  strerror_r
5187 check_func  sysconf
5188 check_func  sysctl
5189 check_func  usleep
5190
5191 check_func_headers conio.h kbhit
5192 check_func_headers io.h setmode
5193 check_func_headers lzo/lzo1x.h lzo1x_999_compress
5194 check_func_headers stdlib.h getenv
5195 check_func_headers sys/stat.h lstat
5196
5197 check_func_headers windows.h CoTaskMemFree -lole32
5198 check_func_headers windows.h GetProcessAffinityMask
5199 check_func_headers windows.h GetProcessTimes
5200 check_func_headers windows.h GetSystemTimeAsFileTime
5201 check_func_headers windows.h MapViewOfFile
5202 check_func_headers windows.h PeekNamedPipe
5203 check_func_headers windows.h SetConsoleTextAttribute
5204 check_func_headers windows.h SetConsoleCtrlHandler
5205 check_func_headers windows.h Sleep
5206 check_func_headers windows.h VirtualAlloc
5207 check_struct windows.h "CONDITION_VARIABLE" Ptr
5208 check_func_headers glob.h glob
5209 enabled xlib &&
5210     check_func_headers "X11/Xlib.h X11/extensions/Xvlib.h" XvGetPortAttribute -lXv -lX11 -lXext
5211
5212 check_header direct.h
5213 check_header dirent.h
5214 check_header dlfcn.h
5215 check_header d3d11.h
5216 check_header dxva.h
5217 check_header dxva2api.h -D_WIN32_WINNT=0x0600
5218 check_header io.h
5219 check_header libcrystalhd/libcrystalhd_if.h
5220 check_header mach/mach_time.h
5221 check_header malloc.h
5222 check_header net/udplite.h
5223 check_header poll.h
5224 check_header sys/mman.h
5225 check_header sys/param.h
5226 check_header sys/resource.h
5227 check_header sys/select.h
5228 check_header sys/time.h
5229 check_header sys/un.h
5230 check_header termios.h
5231 check_header unistd.h
5232 check_header valgrind/valgrind.h
5233 check_header vdpau/vdpau.h
5234 check_header vdpau/vdpau_x11.h
5235 check_header VideoDecodeAcceleration/VDADecoder.h
5236 check_header VideoToolbox/VideoToolbox.h
5237 check_header windows.h
5238 check_header X11/extensions/XvMClib.h
5239 check_header asm/types.h
5240
5241 check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
5242 check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
5243 check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
5244 check_lib "CoreServices/CoreServices.h" UTGetOSTypeFromString "-framework CoreServices"
5245
5246 check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
5247
5248 check_type "windows.h dxva.h" "DXVA_PicParams_HEVC" -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP -D_CRT_BUILD_DESKTOP_APP=0
5249 check_type "windows.h d3d11.h" "ID3D11VideoDecoder"
5250 check_type "windows.h d3d11.h" "ID3D11VideoContext"
5251 check_type "d3d9.h dxva2api.h" DXVA2_ConfigPictureDecode -D_WIN32_WINNT=0x0602
5252
5253 check_type "va/va.h" "VAPictureParameterBufferHEVC"
5254
5255 check_type "vdpau/vdpau.h" "VdpPictureInfoHEVC"
5256
5257 check_cpp_condition windows.h "!WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)" && enable winrt || disable winrt
5258
5259 if ! disabled w32threads && ! enabled pthreads; then
5260     check_func_headers "windows.h process.h" _beginthreadex &&
5261         enable w32threads || disable w32threads
5262     if ! enabled w32threads && enabled winrt; then
5263         check_func_headers "windows.h" CreateThread &&
5264             enable w32threads || disable w32threads
5265     fi
5266 fi
5267
5268 # check for some common methods of building with pthread support
5269 # do this before the optional library checks as some of them require pthreads
5270 if ! disabled pthreads && ! enabled w32threads && ! enabled os2threads; then
5271     enable pthreads
5272     if check_func pthread_join -pthread && check_func pthread_create -pthread; then
5273         add_cflags -pthread
5274         add_extralibs -pthread
5275     elif check_func pthread_join -pthreads && check_func pthread_create -pthreads; then
5276         add_cflags -pthreads
5277         add_extralibs -pthreads
5278     elif check_func pthread_join -ldl -pthread && check_func pthread_create -ldl -pthread; then
5279         add_cflags -ldl -pthread
5280         add_extralibs -ldl -pthread
5281     elif check_func pthread_join -lpthreadGC2 && check_func pthread_create -lpthreadGC2; then
5282         add_extralibs -lpthreadGC2
5283     elif check_lib pthread.h pthread_join -lpthread && check_lib pthread.h pthread_create -lpthread; then
5284         :
5285     elif ! check_func pthread_join && ! check_func pthread_create; then
5286         disable pthreads
5287     fi
5288     check_code cc "pthread.h" "static pthread_mutex_t atomic_lock = PTHREAD_MUTEX_INITIALIZER" || disable pthreads
5289 fi
5290
5291
5292 if enabled pthreads; then
5293   check_func pthread_cancel
5294 fi
5295
5296 disabled  zlib || check_lib   zlib.h      zlibVersion -lz   || disable  zlib
5297 disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
5298 disabled  lzma || check_lib2  lzma.h lzma_version_number -llzma || disable lzma
5299
5300 check_lib math.h sin -lm && LIBM="-lm"
5301 disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd
5302
5303 atan2f_args=2
5304 copysign_args=2
5305 ldexpf_args=2
5306 powf_args=2
5307
5308 for func in $MATH_FUNCS; do
5309     eval check_mathfunc $func \${${func}_args:-1}
5310 done
5311
5312 # these are off by default, so fail if requested and not available
5313 enabled avfoundation_indev && { check_header_oc AVFoundation/AVFoundation.h || disable avfoundation_indev; }
5314 enabled avfoundation_indev && { check_lib2 CoreGraphics/CoreGraphics.h CGGetActiveDisplayList -framework CoreGraphics ||
5315                                 check_lib2 ApplicationServices/ApplicationServices.h CGGetActiveDisplayList -framework ApplicationServices; }
5316 enabled avisynth          && { { check_lib2 "windows.h" LoadLibrary; } ||
5317                                { check_lib2 "dlfcn.h" dlopen -ldl; } ||
5318                                die "ERROR: LoadLibrary/dlopen not found for avisynth"; }
5319 enabled chromaprint       && require chromaprint chromaprint.h chromaprint_get_version -lchromaprint
5320 enabled decklink          && { check_header DeckLinkAPI.h || die "ERROR: DeckLinkAPI.h header not found"; }
5321 enabled frei0r            && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
5322 enabled gnutls            && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
5323 enabled ladspa            && { check_header ladspa.h || die "ERROR: ladspa.h header not found"; }
5324 enabled libiec61883       && require libiec61883 libiec61883/iec61883.h iec61883_cmp_connect -lraw1394 -lavc1394 -lrom1394 -liec61883
5325 enabled libaacplus        && require "libaacplus >= 2.0.0" aacplus.h aacplusEncOpen -laacplus
5326 enabled libass            && require_pkg_config libass ass/ass.h ass_library_init
5327 enabled libbluray         && require_pkg_config libbluray libbluray/bluray.h bd_open
5328 enabled libbs2b           && require_pkg_config libbs2b bs2b.h bs2b_open
5329 enabled libcelt           && require libcelt celt/celt.h celt_decode -lcelt0 &&
5330                              { check_lib celt/celt.h celt_decoder_create_custom -lcelt0 ||
5331                                die "ERROR: libcelt must be installed and version must be >= 0.11.0."; }
5332 enabled libcaca           && require_pkg_config caca caca.h caca_create_canvas
5333 enabled libdcadec         && require_pkg_config dcadec libdcadec/dca_context.h dcadec_context_create &&
5334                              check_struct libdcadec/dca_context.h "struct dcadec_exss_info" matrix_encoding
5335 enabled libfaac           && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
5336 enabled libfdk_aac        && { use_pkg_config fdk-aac "fdk-aac/aacenc_lib.h" aacEncOpen ||
5337                                { require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac &&
5338                                  warn "using libfdk without pkg-config"; } }
5339 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"
5340 enabled libflite          && require2 libflite "flite/flite.h" flite_init $flite_libs
5341 enabled fontconfig        && enable libfontconfig
5342 enabled libfontconfig     && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit
5343 enabled libfreetype       && require_libfreetype
5344 enabled libfribidi        && require_pkg_config fribidi fribidi.h fribidi_version_info
5345 enabled libgme            && require  libgme gme/gme.h gme_new_emu -lgme -lstdc++
5346 enabled libgsm            && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
5347                                    check_lib "${gsm_hdr}" gsm_create -lgsm && break;
5348                                done || die "ERROR: libgsm not found"; }
5349 enabled libilbc           && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
5350 enabled libkvazaar        && require_pkg_config "kvazaar >= 0.7.1" kvazaar.h kvz_api_get
5351 enabled libmfx            && require_pkg_config libmfx "mfx/mfxvideo.h" MFXInit
5352 enabled libmodplug        && require_pkg_config libmodplug libmodplug/modplug.h ModPlug_Load
5353 enabled libmp3lame        && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
5354 enabled libnut            && require libnut libnut.h nut_demuxer_init -lnut
5355 enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
5356 enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
5357 enabled libopencv         && require_pkg_config opencv opencv/cxcore.h cvCreateImageHeader
5358 enabled libopenh264       && require_pkg_config openh264 wels/codec_api.h WelsGetCodecVersion
5359 enabled libopenjpeg       && { check_lib openjpeg.h opj_version -lopenmj2 -DOPJ_STATIC ||
5360                                check_lib openjpeg-1.5/openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC ||
5361                                check_lib openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC ||
5362                                die "ERROR: libopenjpeg not found"; }
5363 enabled libopus           && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
5364 enabled libpulse          && require_pkg_config libpulse pulse/pulseaudio.h pa_context_new
5365 enabled libquvi           && require_pkg_config libquvi quvi/quvi.h quvi_init
5366 enabled librtmp           && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
5367 enabled librubberband     && require_pkg_config "rubberband >= 1.8.1" rubberband/rubberband-c.h rubberband_new
5368 enabled libschroedinger   && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
5369 enabled libshine          && require_pkg_config shine shine/layer3.h shine_encode_buffer
5370 enabled libsmbclient      && { use_pkg_config smbclient libsmbclient.h smbc_init ||
5371                                require smbclient libsmbclient.h smbc_init -lsmbclient; }
5372 enabled libsnappy         && require snappy snappy-c.h snappy_compress -lsnappy
5373 enabled libsoxr           && require libsoxr soxr.h soxr_create -lsoxr && LIBSOXR="-lsoxr"
5374 enabled libssh            && require_pkg_config libssh libssh/sftp.h sftp_init
5375 enabled libspeex          && require_pkg_config speex speex/speex.h speex_decoder_init -lspeex
5376 enabled libstagefright_h264 && require_cpp libstagefright_h264 "binder/ProcessState.h media/stagefright/MetaData.h
5377     media/stagefright/MediaBufferGroup.h media/stagefright/MediaDebug.h media/stagefright/MediaDefs.h
5378     media/stagefright/OMXClient.h media/stagefright/OMXCodec.h" android::OMXClient -lstagefright -lmedia -lutils -lbinder -lgnustl_static
5379 enabled libtesseract      && require_pkg_config tesseract tesseract/capi.h TessBaseAPICreate
5380 enabled libtheora         && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
5381 enabled libtwolame        && require libtwolame twolame.h twolame_init -ltwolame &&
5382                              { check_lib twolame.h twolame_encode_buffer_float32_interleaved -ltwolame ||
5383                                die "ERROR: libtwolame must be installed and version must be >= 0.3.10"; }
5384 enabled libutvideo        && require_cpp utvideo "stdint.h stdlib.h utvideo/utvideo.h utvideo/Codec.h" 'CCodec*' -lutvideo -lstdc++
5385 enabled libv4l2           && require_pkg_config libv4l2 libv4l2.h v4l2_ioctl
5386 enabled libvidstab        && require_pkg_config "vidstab >= 0.98" vid.stab/libvidstab.h vsMotionDetectInit
5387 enabled libvo_aacenc      && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
5388 enabled libvo_amrwbenc    && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
5389 enabled libvorbis         && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
5390
5391 enabled libvpx            && {
5392     enabled libvpx_vp8_decoder && {
5393         use_pkg_config "vpx >= 0.9.1" "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_vp8_dx ||
5394             check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
5395                 die "ERROR: libvpx decoder version must be >=0.9.1";
5396     }
5397     enabled libvpx_vp8_encoder && {
5398         use_pkg_config "vpx >= 0.9.7" "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_vp8_cx ||
5399             check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VP8E_SET_MAX_INTRA_BITRATE_PCT" -lvpx ||
5400                 die "ERROR: libvpx encoder version must be >=0.9.7";
5401     }
5402     enabled libvpx_vp9_decoder && {
5403         use_pkg_config "vpx >= 1.3.0" "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_vp9_dx ||
5404             check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_vp9_dx" -lvpx ||
5405                 disable libvpx_vp9_decoder;
5406     }
5407     enabled libvpx_vp9_encoder && {
5408         use_pkg_config "vpx >= 1.3.0" "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_vp9_cx ||
5409             check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_vp9_cx VP9E_SET_AQ_MODE" -lvpx ||
5410                 disable libvpx_vp9_encoder;
5411     }
5412     if disabled_all libvpx_vp8_decoder libvpx_vp9_decoder libvpx_vp8_encoder libvpx_vp9_encoder; then
5413         die "libvpx enabled but no supported decoders found"
5414     fi
5415 }
5416
5417 enabled libwavpack        && require libwavpack wavpack/wavpack.h WavpackOpenFileOutput  -lwavpack
5418 enabled libwebp           && {
5419     enabled libwebp_encoder      && require_pkg_config "libwebp >= 0.2.0" webp/encode.h WebPGetEncoderVersion
5420     enabled libwebp_anim_encoder && { use_pkg_config "libwebpmux >= 0.4.0" webp/mux.h WebPAnimEncoderOptionsInit || disable libwebp_anim_encoder; } }
5421 enabled libx264           && { use_pkg_config x264 "stdint.h x264.h" x264_encoder_encode ||
5422                                { require libx264 x264.h x264_encoder_encode -lx264 &&
5423                                  warn "using libx264 without pkg-config"; } } &&
5424                              { check_cpp_condition x264.h "X264_BUILD >= 118" ||
5425                                die "ERROR: libx264 must be installed and version must be >= 0.118."; } &&
5426                              { check_cpp_condition x264.h "X264_MPEG2" &&
5427                                enable libx262; }
5428 enabled libx265           && require_pkg_config x265 x265.h x265_api_get &&
5429                              { check_cpp_condition x265.h "X265_BUILD >= 57" ||
5430                                die "ERROR: libx265 version must be >= 57."; }
5431 enabled libxavs           && require libxavs xavs.h xavs_encoder_encode -lxavs
5432 enabled libxvid           && require libxvid xvid.h xvid_global -lxvidcore
5433 enabled libzimg           && require_pkg_config zimg zimg.h zimg_get_api_version
5434 enabled libzmq            && require_pkg_config libzmq zmq.h zmq_ctx_new
5435 enabled libzvbi           && require libzvbi libzvbi.h vbi_decoder_new -lzvbi
5436 enabled mmal              && { check_lib interface/mmal/mmal.h mmal_port_connect -lmmal_core -lmmal_util -lmmal_vc_client -lbcm_host ||
5437                                 { ! enabled cross_compile && {
5438                                     add_cflags -isystem/opt/vc/include/ -isystem/opt/vc/include/interface/vmcs_host/linux -isystem/opt/vc/include/interface/vcos/pthreads -fgnu89-inline ;
5439                                     add_extralibs -L/opt/vc/lib/ -lmmal_core -lmmal_util -lmmal_vc_client -lbcm_host ;
5440                                     check_lib interface/mmal/mmal.h mmal_port_connect ; }
5441                                 check_lib interface/mmal/mmal.h mmal_port_connect ; } ||
5442                                die "ERROR: mmal not found"; }
5443 enabled nvenc             && { check_header nvEncodeAPI.h || die "ERROR: nvEncodeAPI.h not found."; } &&
5444                              { check_cpp_condition nvEncodeAPI.h "NVENCAPI_MAJOR_VERSION >= 5" ||
5445                                die "ERROR: NVENC API version 4 or older is not supported"; } &&
5446                              { [ $target_os != cygwin ] || die "ERROR: NVENC is not supported on Cygwin currently."; }
5447 enabled openal            && { { for al_libs in "${OPENAL_LIBS}" "-lopenal" "-lOpenAL32"; do
5448                                check_lib 'AL/al.h' alGetError "${al_libs}" && break; done } ||
5449                                die "ERROR: openal not found"; } &&
5450                              { check_cpp_condition "AL/al.h" "defined(AL_VERSION_1_1)" ||
5451                                die "ERROR: openal must be installed and version must be 1.1 or compatible"; }
5452 enabled opencl            && { check_lib2 OpenCL/cl.h clEnqueueNDRangeKernel -Wl,-framework,OpenCL ||
5453                                check_lib2 CL/cl.h clEnqueueNDRangeKernel -lOpenCL ||
5454                                die "ERROR: opencl not found"; } &&
5455                              { check_cpp_condition "OpenCL/cl.h" "defined(CL_VERSION_1_2)" ||
5456                                check_cpp_condition "CL/cl.h" "defined(CL_VERSION_1_2)" ||
5457                                die "ERROR: opencl must be installed and version must be 1.2 or compatible"; }
5458 enabled opengl            && { check_lib GL/glx.h glXGetProcAddress "-lGL" ||
5459                                check_lib2 windows.h wglGetProcAddress "-lopengl32 -lgdi32" ||
5460                                check_lib2 OpenGL/gl3.h glGetError "-Wl,-framework,OpenGL" ||
5461                                check_lib2 ES2/gl.h glGetError "-isysroot=${sysroot} -Wl,-framework,OpenGLES" ||
5462                                die "ERROR: opengl not found."
5463                              }
5464 enabled openssl           && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
5465                                check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
5466                                check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
5467                                die "ERROR: openssl not found"; }
5468 enabled qtkit_indev      && { check_header_oc QTKit/QTKit.h || disable qtkit_indev; }
5469
5470 if enabled gnutls; then
5471     { check_lib2 gmp.h mpz_export -lgmp && enable gmp; } ||
5472     { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
5473 fi
5474
5475 # libdc1394 check
5476 if enabled libdc1394; then
5477     { require_pkg_config libdc1394-2 dc1394/dc1394.h dc1394_new &&
5478         enable libdc1394_2; } ||
5479     { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
5480         enable libdc1394_1; } ||
5481     die "ERROR: No version of libdc1394 found "
5482 fi
5483 if ! disabled sdl; then
5484     SDL_CONFIG="${cross_prefix}sdl-config"
5485     if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
5486         check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
5487         check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
5488         enable sdl
5489     else
5490         if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
5491             sdl_cflags=$("${SDL_CONFIG}" --cflags)
5492             sdl_libs=$("${SDL_CONFIG}" --libs)
5493             check_func_headers SDL_version.h SDL_Linked_Version $sdl_cflags $sdl_libs &&
5494             check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
5495             check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
5496             enable sdl
5497         elif enabled sdl ; then
5498             die "ERROR: SDL not found"
5499         else
5500             disable sdl
5501         fi
5502     fi
5503     if test $target_os = "mingw32"; then
5504         sdl_libs="$sdl_libs -mconsole"
5505     fi
5506 fi
5507 enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs
5508
5509 disabled securetransport || { check_func SecIdentityCreate "-Wl,-framework,CoreFoundation -Wl,-framework,Security" &&
5510     check_lib2 "Security/SecureTransport.h Security/Security.h" "SSLCreateContext SecItemImport" "-Wl,-framework,CoreFoundation -Wl,-framework,Security" &&
5511     enable securetransport; }
5512
5513 makeinfo --version > /dev/null 2>&1 && enable makeinfo  || disable makeinfo
5514 enabled makeinfo \
5515     && [ 0$(makeinfo --version | grep "texinfo" | sed 's/.*texinfo[^0-9]*\([0-9]*\)\..*/\1/') -ge 5 ] \
5516     && enable makeinfo_html || disable makeinfo_html
5517 disabled makeinfo_html && texi2html --help 2> /dev/null | grep -q 'init-file' && enable texi2html || disable texi2html
5518 perl -v            > /dev/null 2>&1 && enable perl      || disable perl
5519 pod2man --help     > /dev/null 2>&1 && enable pod2man   || disable pod2man
5520 rsync --help 2> /dev/null | grep -q 'contimeout' && enable rsync_contimeout || disable rsync_contimeout
5521
5522 check_header linux/fb.h
5523 check_header linux/videodev.h
5524 check_header linux/videodev2.h
5525 check_code cc linux/videodev2.h "struct v4l2_frmsizeenum vfse; vfse.discrete.width = 0;" && enable_safe struct_v4l2_frmivalenum_discrete
5526
5527 check_header sys/videoio.h
5528 check_code cc sys/videoio.h "struct v4l2_frmsizeenum vfse; vfse.discrete.width = 0;" && enable_safe struct_v4l2_frmivalenum_discrete
5529
5530 check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
5531 # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
5532 # w32api 3.12 had it defined wrong
5533 check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
5534
5535 check_type "dshow.h" IBaseFilter
5536
5537 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
5538 { check_header dev/bktr/ioctl_meteor.h &&
5539   check_header dev/bktr/ioctl_bt848.h; } ||
5540 { check_header machine/ioctl_meteor.h &&
5541   check_header machine/ioctl_bt848.h; } ||
5542 { check_header dev/video/meteor/ioctl_meteor.h &&
5543   check_header dev/video/bktr/ioctl_bt848.h; } ||
5544 check_header dev/ic/bt8xx.h
5545
5546 check_header sndio.h
5547 if check_struct sys/soundcard.h audio_buf_info bytes; then
5548     enable_safe sys/soundcard.h
5549 else
5550     check_cc -D__BSD_VISIBLE -D__XSI_VISIBLE <<EOF && add_cppflags -D__BSD_VISIBLE -D__XSI_VISIBLE && enable_safe sys/soundcard.h
5551     #include <sys/soundcard.h>
5552     audio_buf_info abc;
5553 EOF
5554 fi
5555 check_header soundcard.h
5556
5557 enabled_any alsa_indev alsa_outdev &&
5558     check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
5559
5560 enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack && check_func sem_timedwait &&
5561     check_func jack_port_get_latency_range -ljack
5562
5563 enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
5564
5565 if enabled libcdio; then
5566     check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
5567     check_lib2 "cdio/paranoia/cdda.h cdio/paranoia/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
5568     die "ERROR: No usable libcdio/cdparanoia found"
5569 fi
5570
5571 enabled xlib &&
5572     check_lib X11/Xlib.h XOpenDisplay -lX11 || disable xlib
5573
5574 if ! disabled libxcb; then
5575     check_pkg_config "xcb >= 1.4" xcb/xcb.h xcb_connect || {
5576         enabled libxcb && die "ERROR: libxcb >= 1.4 not found";
5577     } && disable x11grab && enable libxcb
5578
5579 if enabled libxcb; then
5580     disabled libxcb_shm || {
5581         check_pkg_config xcb-shm xcb/shm.h xcb_shm_attach || {
5582             enabled libxcb_shm && die "ERROR: libxcb_shm not found";
5583         } && check_header sys/shm.h && enable libxcb_shm; }
5584
5585     disabled libxcb_xfixes || {
5586         check_pkg_config xcb-xfixes xcb/xfixes.h xcb_xfixes_get_cursor_image || {
5587             enabled libxcb_xfixes && die "ERROR: libxcb_xfixes not found";
5588         } && enable libxcb_xfixes; }
5589
5590     disabled libxcb_shape || {
5591         check_pkg_config xcb-shape xcb/shape.h xcb_shape_get_rectangles || {
5592             enabled libxcb_shape && die "ERROR: libxcb_shape not found";
5593         } && enable libxcb_shape; }
5594
5595     add_cflags $xcb_cflags $xcb_shm_cflags $xcb_xfixes_cflags $xcb_shape_cflags
5596     add_extralibs $xcb_libs $xcb_shm_libs $xcb_xfixes_libs $xcb_shape_libs
5597 fi
5598 fi
5599
5600 if enabled x11grab; then
5601     enabled xlib || die "ERROR: Xlib not found"
5602     require Xext X11/extensions/XShm.h XShmCreateImage -lXext
5603     require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
5604 fi
5605
5606 check_func_headers "windows.h" CreateDIBSection "$gdigrab_indev_extralibs"
5607
5608 enabled dxva2api_h &&
5609     check_cc <<EOF && enable dxva2api_cobj
5610 #define _WIN32_WINNT 0x0600
5611 #define COBJMACROS
5612 #include <windows.h>
5613 #include <d3d9.h>
5614 #include <dxva2api.h>
5615 int main(void) { IDirectXVideoDecoder *o = NULL; IDirectXVideoDecoder_Release(o); return 0; }
5616 EOF
5617
5618 enabled vaapi &&
5619     check_lib va/va.h vaInitialize -lva ||
5620     disable vaapi
5621
5622 enabled vaapi && enabled xlib &&
5623     check_lib2 "va/va.h va/va_x11.h" vaGetDisplay -lva -lva-x11 &&
5624     enable vaapi_x11
5625
5626 enabled vdpau &&
5627     check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
5628     disable vdpau
5629
5630 enabled vdpau && enabled xlib &&
5631     check_func_headers "vdpau/vdpau.h vdpau/vdpau_x11.h" vdp_device_create_x11 -lvdpau &&
5632     prepend ffmpeg_libs $($ldflags_filter "-lvdpau") &&
5633     enable vdpau_x11
5634
5635 # Funny iconv installations are not unusual, so check it after all flags have been set
5636 disabled iconv || check_func_headers iconv.h iconv || check_lib2 iconv.h iconv -liconv || disable iconv
5637
5638 enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
5639
5640 # add some useful compiler flags if supported
5641 check_cflags -Wdeclaration-after-statement
5642 check_cflags -Wall
5643 check_cflags -Wdisabled-optimization
5644 check_cflags -Wpointer-arith
5645 check_cflags -Wredundant-decls
5646 check_cflags -Wwrite-strings
5647 check_cflags -Wtype-limits
5648 check_cflags -Wundef
5649 check_cflags -Wmissing-prototypes
5650 check_cflags -Wno-pointer-to-int-cast
5651 check_cflags -Wstrict-prototypes
5652 check_cflags -Wempty-body
5653 enabled extra_warnings && check_cflags -Winline
5654
5655 check_disable_warning(){
5656     warning_flag=-W${1#-Wno-}
5657     test_cflags $warning_flag && add_cflags $1
5658 }
5659
5660 check_disable_warning -Wno-parentheses
5661 check_disable_warning -Wno-switch
5662 check_disable_warning -Wno-format-zero-length
5663 check_disable_warning -Wno-pointer-sign
5664
5665 # add some linker flags
5666 check_ldflags -Wl,--warn-common
5667 check_ldflags -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
5668 enabled rpath && add_ldexeflags -Wl,-rpath,$libdir
5669 enabled rpath && add_ldlibflags -Wl,-rpath,$libdir
5670 test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
5671
5672 # add some strip flags
5673 # -wN '..@*' is more selective than -x, but not available everywhere.
5674 check_stripflags -wN \'..@*\' || check_stripflags -x
5675
5676 enabled neon_clobber_test &&
5677     check_ldflags -Wl,--wrap,avcodec_open2              \
5678                   -Wl,--wrap,avcodec_decode_audio4      \
5679                   -Wl,--wrap,avcodec_decode_video2      \
5680                   -Wl,--wrap,avcodec_decode_subtitle2   \
5681                   -Wl,--wrap,avcodec_encode_audio2      \
5682                   -Wl,--wrap,avcodec_encode_video2      \
5683                   -Wl,--wrap,avcodec_encode_subtitle    \
5684                   -Wl,--wrap,swr_convert                \
5685                   -Wl,--wrap,avresample_convert ||
5686     disable neon_clobber_test
5687
5688 enabled xmm_clobber_test &&
5689     check_ldflags -Wl,--wrap,avcodec_open2              \
5690                   -Wl,--wrap,avcodec_decode_audio4      \
5691                   -Wl,--wrap,avcodec_decode_video2      \
5692                   -Wl,--wrap,avcodec_decode_subtitle2   \
5693                   -Wl,--wrap,avcodec_encode_audio2      \
5694                   -Wl,--wrap,avcodec_encode_video2      \
5695                   -Wl,--wrap,avcodec_encode_subtitle    \
5696                   -Wl,--wrap,swr_convert                \
5697                   -Wl,--wrap,avresample_convert         \
5698                   -Wl,--wrap,sws_scale ||
5699     disable xmm_clobber_test
5700
5701 echo "X { local: *; };" > $TMPV
5702 if test_ldflags -Wl,--version-script,$TMPV; then
5703     append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
5704 elif test_ldflags -Wl,-M,$TMPV; then
5705     append SHFLAGS '-Wl,-M,\$(SUBDIR)lib\$(NAME).ver-sol2'
5706 fi
5707
5708 check_cc <<EOF && enable symver_asm_label
5709 void ff_foo(void) __asm__ ("av_foo@VERSION");
5710 void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
5711 EOF
5712     check_cc <<EOF && enable symver_gnu_asm
5713 __asm__(".symver ff_foo,av_foo@VERSION");
5714 void ff_foo(void) {}
5715 EOF
5716
5717 if [ -z "$optflags" ]; then
5718     if enabled small; then
5719         optflags=$cflags_size
5720     elif enabled optimizations; then
5721         optflags=$cflags_speed
5722     else
5723         optflags=$cflags_noopt
5724     fi
5725 fi
5726
5727 check_optflags(){
5728     check_cflags "$@"
5729     enabled lto && check_ldflags "$@"
5730 }
5731
5732
5733 if enabled lto; then
5734     test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
5735     check_cflags  -flto
5736     check_ldflags -flto $cpuflags
5737     disable inline_asm_direct_symbol_refs
5738 fi
5739
5740 check_optflags $optflags
5741 check_optflags -fno-math-errno
5742 check_optflags -fno-signed-zeros
5743
5744 enabled ftrapv && check_cflags -ftrapv
5745
5746 check_cc -mno-red-zone <<EOF && noredzone_flags="-mno-red-zone"
5747 int x;
5748 EOF
5749
5750
5751 if enabled icc; then
5752     # Just warnings, no remarks
5753     check_cflags -w1
5754     # -wd: Disable following warnings
5755     # 144, 167, 556: -Wno-pointer-sign
5756     # 188: enumerated type mixed with another type
5757     # 1292: attribute "foo" ignored
5758     # 1419: external declaration in primary source file
5759     # 10006: ignoring unknown option -fno-signed-zeros
5760     # 10148: ignoring unknown option -Wno-parentheses
5761     # 10156: ignoring option '-W'; no argument required
5762     # 13200: No EMMS instruction before call to function
5763     # 13203: No EMMS instruction before return from function
5764     check_cflags -wd144,167,188,556,1292,1419,10006,10148,10156,13200,13203
5765     # 11030: Warning unknown option --as-needed
5766     # 10156: ignoring option '-export'; no argument required
5767     check_ldflags -wd10156,11030
5768     # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
5769     enable ebp_available
5770     # The test above does not test linking
5771     enabled lto && disable symver_asm_label
5772     if enabled x86_32; then
5773         icc_version=$($cc -dumpversion)
5774         test ${icc_version%%.*} -ge 11 &&
5775             check_cflags -falign-stack=maintain-16-byte ||
5776             disable aligned_stack
5777     fi
5778 elif enabled ccc; then
5779     # disable some annoying warnings
5780     add_cflags -msg_disable bitnotint
5781     add_cflags -msg_disable mixfuncvoid
5782     add_cflags -msg_disable nonstandcast
5783     add_cflags -msg_disable unsupieee
5784 elif enabled gcc; then
5785     check_optflags -fno-tree-vectorize
5786     check_cflags -Werror=format-security
5787     check_cflags -Werror=implicit-function-declaration
5788     check_cflags -Werror=missing-prototypes
5789     check_cflags -Werror=return-type
5790     check_cflags -Werror=vla
5791     check_cflags -Wformat
5792     check_cflags -fdiagnostics-color=auto
5793     enabled extra_warnings || check_disable_warning -Wno-maybe-uninitialized
5794 elif enabled llvm_gcc; then
5795     check_cflags -mllvm -stack-alignment=16
5796 elif enabled clang; then
5797     check_cflags -mllvm -stack-alignment=16
5798     check_cflags -Qunused-arguments
5799     check_cflags -Werror=implicit-function-declaration
5800     check_cflags -Werror=missing-prototypes
5801     check_cflags -Werror=return-type
5802 elif enabled cparser; then
5803     add_cflags -Wno-missing-variable-declarations
5804     add_cflags -Wno-empty-statement
5805 elif enabled armcc; then
5806     add_cflags -W${armcc_opt},--diag_suppress=4343 # hardfp compat
5807     add_cflags -W${armcc_opt},--diag_suppress=3036 # using . as system include dir
5808     # 2523: use of inline assembly is deprecated
5809     add_cflags -W${armcc_opt},--diag_suppress=2523
5810     add_cflags -W${armcc_opt},--diag_suppress=1207
5811     add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
5812     add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
5813     add_cflags -W${armcc_opt},--diag_suppress=167  # pointer sign
5814     add_cflags -W${armcc_opt},--diag_suppress=513  # pointer sign
5815 elif enabled tms470; then
5816     add_cflags -pds=824 -pds=837
5817     disable inline_asm
5818 elif enabled pathscale; then
5819     add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
5820 elif enabled_any msvc icl; then
5821     enabled x86_32 && disable aligned_stack
5822     enabled_all x86_32 debug && add_cflags -Oy-
5823     enabled debug && add_ldflags -debug
5824     enable pragma_deprecated
5825     if enabled icl; then
5826         # -Qansi-alias is basically -fstrict-aliasing, but does not work
5827         # (correctly) on icl 13.x.
5828         check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" &&
5829             add_cflags -Qansi-alias
5830         # Some inline asm is not compilable in debug
5831         if enabled debug; then
5832             disable ebp_available
5833             disable ebx_available
5834         fi
5835     fi
5836     # msvcrt10 x64 incorrectly enables log2, only msvcrt12 (MSVC 2013) onwards actually has log2.
5837     check_cpp_condition crtversion.h "_VC_CRT_MAJOR_VERSION >= 12" || disable log2
5838     # The CRT headers contain __declspec(restrict) in a few places, but if redefining
5839     # restrict, this might break. MSVC 2010 and 2012 fail with __declspec(__restrict)
5840     # (as it ends up if the restrict redefine is done before including stdlib.h), while
5841     # MSVC 2013 and newer can handle it fine.
5842     # If this declspec fails, force including stdlib.h before the restrict redefinition
5843     # happens in config.h.
5844     if [ $_restrict != restrict ]; then
5845         check_cc <<EOF || add_cflags -FIstdlib.h
5846 __declspec($_restrict) void* foo(int);
5847 EOF
5848     fi
5849     check_func strtoll || add_cflags -Dstrtoll=_strtoi64
5850 fi
5851
5852 for pfx in "" host_; do
5853     varname=${pfx%_}cc_type
5854     eval "type=\$$varname"
5855     if [ $type = "msvc" ]; then
5856         check_${pfx}cc <<EOF || add_${pfx}cflags -Dinline=__inline
5857 static inline int foo(int a) { return a; }
5858 EOF
5859     fi
5860 done
5861
5862 case $as_type in
5863     clang)
5864         add_asflags -Qunused-arguments
5865     ;;
5866 esac
5867
5868 case $ld_type in
5869     clang)
5870         check_ldflags -Qunused-arguments
5871     ;;
5872 esac
5873
5874 case $target_os in
5875     osf1)
5876         enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
5877     ;;
5878     plan9)
5879         add_cppflags -Dmain=plan9_main
5880     ;;
5881 esac
5882
5883 enable frame_thread_encoder
5884
5885 enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
5886
5887 check_deps $CONFIG_LIST       \
5888            $CONFIG_EXTRA      \
5889            $HAVE_LIST         \
5890            $ALL_COMPONENTS    \
5891
5892 enabled threads && ! enabled pthreads && ! enabled atomics_native && die "non pthread threading without atomics not supported, try adding --enable-pthreads or --cpu=i486 or higher if you are on x86"
5893
5894
5895 if test $target_os = "haiku"; then
5896     disable memalign
5897     disable posix_memalign
5898 fi
5899
5900 enabled_all dxva2 dxva2api_cobj CoTaskMemFree &&
5901     prepend ffmpeg_libs $($ldflags_filter "-lole32" "-luser32") &&
5902     enable dxva2_lib
5903
5904 ! enabled_any memalign posix_memalign aligned_malloc &&
5905     enabled simd_align_16 && enable memalign_hack
5906
5907 # add_dep lib dep
5908 # -> enable ${lib}_deps_${dep}
5909 # -> add $dep to ${lib}_deps only once
5910 add_dep() {
5911     lib=$1
5912     dep=$2
5913     enabled "${lib}_deps_${dep}" && return 0
5914     enable  "${lib}_deps_${dep}"
5915     prepend "${lib}_deps" $dep
5916 }
5917
5918 # merge deps lib components
5919 # merge all ${component}_deps into ${lib}_deps and ${lib}_deps_*
5920 merge_deps() {
5921     lib=$1
5922     shift
5923     for comp in $*; do
5924         enabled $comp || continue
5925         eval "dep=\"\$${comp}_deps\""
5926         for d in $dep; do
5927             add_dep $lib $d
5928         done
5929     done
5930 }
5931
5932 merge_deps libavfilter $FILTER_LIST
5933
5934 map 'enabled $v && intrinsics=${v#intrinsics_}' $INTRINSICS_LIST
5935
5936 for thread in $THREADS_LIST; do
5937     if enabled $thread; then
5938         test -n "$thread_type" &&
5939             die "ERROR: Only one thread type must be selected." ||
5940             thread_type="$thread"
5941     fi
5942 done
5943
5944 enabled zlib && add_cppflags -DZLIB_CONST
5945
5946 # conditional library dependencies, in linking order
5947 enabled amovie_filter       && prepend avfilter_deps "avformat avcodec"
5948 enabled aresample_filter    && prepend avfilter_deps "swresample"
5949 enabled asyncts_filter      && prepend avfilter_deps "avresample"
5950 enabled atempo_filter       && prepend avfilter_deps "avcodec"
5951 enabled cover_rect_filter   && prepend avfilter_deps "avformat avcodec"
5952 enabled ebur128_filter && enabled swresample && prepend avfilter_deps "swresample"
5953 enabled elbg_filter         && prepend avfilter_deps "avcodec"
5954 enabled fftfilt_filter      && prepend avfilter_deps "avcodec"
5955 enabled find_rect_filter    && prepend avfilter_deps "avformat avcodec"
5956 enabled mcdeint_filter      && prepend avfilter_deps "avcodec"
5957 enabled movie_filter    && prepend avfilter_deps "avformat avcodec"
5958 enabled pan_filter          && prepend avfilter_deps "swresample"
5959 enabled pp_filter           && prepend avfilter_deps "postproc"
5960 enabled removelogo_filter   && prepend avfilter_deps "avformat avcodec swscale"
5961 enabled resample_filter && prepend avfilter_deps "avresample"
5962 enabled sab_filter          && prepend avfilter_deps "swscale"
5963 enabled scale_filter    && prepend avfilter_deps "swscale"
5964 enabled scale2ref_filter    && prepend avfilter_deps "swscale"
5965 enabled showspectrum_filter && prepend avfilter_deps "avcodec"
5966 enabled smartblur_filter    && prepend avfilter_deps "swscale"
5967 enabled subtitles_filter    && prepend avfilter_deps "avformat avcodec"
5968 enabled uspp_filter         && prepend avfilter_deps "avcodec"
5969
5970 enabled lavfi_indev         && prepend avdevice_deps "avfilter"
5971
5972 enabled opus_decoder    && prepend avcodec_deps "swresample"
5973
5974 expand_deps(){
5975     lib_deps=${1}_deps
5976     eval "deps=\$$lib_deps"
5977     append $lib_deps $(map 'eval echo \$${v}_deps' $deps)
5978     unique $lib_deps
5979 }
5980
5981 #we have to remove gpl from the deps here as some code assumes all lib deps are libs
5982 postproc_deps="$(filter_out 'gpl' $postproc_deps)"
5983
5984 map 'expand_deps $v' $LIBRARY_LIST
5985
5986 echo "install prefix            $prefix"
5987 echo "source path               $source_path"
5988 echo "C compiler                $cc"
5989 echo "C library                 $libc_type"
5990 if test "$host_cc" != "$cc"; then
5991     echo "host C compiler           $host_cc"
5992     echo "host C library            $host_libc_type"
5993 fi
5994 echo "ARCH                      $arch ($cpu)"
5995 if test "$build_suffix" != ""; then
5996     echo "build suffix              $build_suffix"
5997 fi
5998 if test "$progs_suffix" != ""; then
5999     echo "progs suffix              $progs_suffix"
6000 fi
6001 if test "$extra_version" != ""; then
6002     echo "version string suffix     $extra_version"
6003 fi
6004 echo "big-endian                ${bigendian-no}"
6005 echo "runtime cpu detection     ${runtime_cpudetect-no}"
6006 if enabled x86; then
6007     echo "${yasmexe}                      ${yasm-no}"
6008     echo "MMX enabled               ${mmx-no}"
6009     echo "MMXEXT enabled            ${mmxext-no}"
6010     echo "3DNow! enabled            ${amd3dnow-no}"
6011     echo "3DNow! extended enabled   ${amd3dnowext-no}"
6012     echo "SSE enabled               ${sse-no}"
6013     echo "SSSE3 enabled             ${ssse3-no}"
6014     echo "AVX enabled               ${avx-no}"
6015     echo "XOP enabled               ${xop-no}"
6016     echo "FMA3 enabled              ${fma3-no}"
6017     echo "FMA4 enabled              ${fma4-no}"
6018     echo "i686 features enabled     ${i686-no}"
6019     echo "CMOV is fast              ${fast_cmov-no}"
6020     echo "EBX available             ${ebx_available-no}"
6021     echo "EBP available             ${ebp_available-no}"
6022 fi
6023 if enabled aarch64; then
6024     echo "NEON enabled              ${neon-no}"
6025     echo "VFP enabled               ${vfp-no}"
6026 fi
6027 if enabled arm; then
6028     echo "ARMv5TE enabled           ${armv5te-no}"
6029     echo "ARMv6 enabled             ${armv6-no}"
6030     echo "ARMv6T2 enabled           ${armv6t2-no}"
6031     echo "VFP enabled               ${vfp-no}"
6032     echo "NEON enabled              ${neon-no}"
6033     echo "THUMB enabled             ${thumb-no}"
6034 fi
6035 if enabled mips; then
6036     echo "MIPS FPU enabled          ${mipsfpu-no}"
6037     echo "MIPS32R5 enabled          ${mips32r5-no}"
6038     echo "MIPS64R6 enabled          ${mips64r6-no}"
6039     echo "MIPS DSP R1 enabled       ${mipsdspr1-no}"
6040     echo "MIPS DSP R2 enabled       ${mipsdspr2-no}"
6041     echo "MIPS MSA enabled          ${msa-no}"
6042     echo "LOONGSON MMI enabled      ${mmi-no}"
6043 fi
6044 if enabled ppc; then
6045     echo "AltiVec enabled           ${altivec-no}"
6046     echo "VSX enabled               ${vsx-no}"
6047     echo "POWER8 enabled            ${power8-no}"
6048     echo "PPC 4xx optimizations     ${ppc4xx-no}"
6049     echo "dcbzl available           ${dcbzl-no}"
6050 fi
6051 echo "debug symbols             ${debug-no}"
6052 echo "strip symbols             ${stripping-no}"
6053 echo "optimize for size         ${small-no}"
6054 echo "optimizations             ${optimizations-no}"
6055 echo "static                    ${static-no}"
6056 echo "shared                    ${shared-no}"
6057 echo "postprocessing support    ${postproc-no}"
6058 echo "new filter support        ${avfilter-no}"
6059 echo "network support           ${network-no}"
6060 echo "threading support         ${thread_type-no}"
6061 echo "safe bitstream reader     ${safe_bitstream_reader-no}"
6062 echo "SDL support               ${sdl-no}"
6063 echo "opencl enabled            ${opencl-no}"
6064 echo "texi2html enabled         ${texi2html-no}"
6065 echo "perl enabled              ${perl-no}"
6066 echo "pod2man enabled           ${pod2man-no}"
6067 echo "makeinfo enabled          ${makeinfo-no}"
6068 echo "makeinfo supports HTML    ${makeinfo_html-no}"
6069 test -n "$random_seed" &&
6070     echo "random seed               ${random_seed}"
6071 echo
6072
6073 echo "Enabled programs:"
6074 print_enabled '' $PROGRAM_LIST | print_in_columns
6075 echo
6076
6077 echo "External libraries:"
6078 print_enabled '' $EXTERNAL_LIBRARY_LIST | print_in_columns
6079 echo
6080
6081 for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
6082     echo "Enabled ${type}s:"
6083     eval list=\$$(toupper $type)_LIST
6084     print_enabled '_*' $list | print_in_columns
6085     echo
6086 done
6087
6088 license="LGPL version 2.1 or later"
6089 if enabled nonfree; then
6090     license="nonfree and unredistributable"
6091 elif enabled gplv3; then
6092     license="GPL version 3 or later"
6093 elif enabled lgplv3; then
6094     license="LGPL version 3 or later"
6095 elif enabled gpl; then
6096     license="GPL version 2 or later"
6097 fi
6098
6099 echo "License: $license"
6100
6101 echo "Creating config.mak, config.h, and doc/config.texi..."
6102
6103 test -e Makefile || echo "include $source_path/Makefile" > Makefile
6104
6105 enabled stripping || strip="echo skipping strip"
6106
6107 config_files="$TMPH config.mak doc/config.texi"
6108
6109 cat > config.mak <<EOF
6110 # Automatically generated by configure - do not modify!
6111 ifndef FFMPEG_CONFIG_MAK
6112 FFMPEG_CONFIG_MAK=1
6113 FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
6114 prefix=$prefix
6115 LIBDIR=\$(DESTDIR)$libdir
6116 SHLIBDIR=\$(DESTDIR)$shlibdir
6117 INCDIR=\$(DESTDIR)$incdir
6118 BINDIR=\$(DESTDIR)$bindir
6119 DATADIR=\$(DESTDIR)$datadir
6120 DOCDIR=\$(DESTDIR)$docdir
6121 MANDIR=\$(DESTDIR)$mandir
6122 PKGCONFIGDIR=\$(DESTDIR)$pkgconfigdir
6123 SRC_PATH=$source_path
6124 ifndef MAIN_MAKEFILE
6125 SRC_PATH:=\$(SRC_PATH:.%=..%)
6126 endif
6127 CC_IDENT=$cc_ident
6128 ARCH=$arch
6129 INTRINSICS=$intrinsics
6130 CC=$cc
6131 CXX=$cxx
6132 AS=$as
6133 LD=$ld
6134 DEPCC=$dep_cc
6135 DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
6136 DEPAS=$as
6137 DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
6138 YASM=$yasmexe
6139 DEPYASM=$yasmexe
6140 AR=$ar
6141 ARFLAGS=$arflags
6142 AR_O=$ar_o
6143 RANLIB=$ranlib
6144 STRIP=$strip
6145 CP=cp -p
6146 LN_S=$ln_s
6147 CPPFLAGS=$CPPFLAGS
6148 CFLAGS=$CFLAGS
6149 CXXFLAGS=$CXXFLAGS
6150 ASFLAGS=$ASFLAGS
6151 AS_C=$AS_C
6152 AS_O=$AS_O
6153 CC_C=$CC_C
6154 CC_E=$CC_E
6155 CC_O=$CC_O
6156 CXX_C=$CXX_C
6157 CXX_O=$CXX_O
6158 LD_O=$LD_O
6159 LD_LIB=$LD_LIB
6160 LD_PATH=$LD_PATH
6161 DLLTOOL=$dlltool
6162 WINDRES=$windres
6163 DEPWINDRES=$dep_cc
6164 DOXYGEN=$doxygen
6165 LDFLAGS=$LDFLAGS
6166 LDEXEFLAGS=$LDEXEFLAGS
6167 LDLIBFLAGS=$LDLIBFLAGS
6168 SHFLAGS=$(echo $($ldflags_filter $SHFLAGS))
6169 ASMSTRIPFLAGS=$ASMSTRIPFLAGS
6170 YASMFLAGS=$YASMFLAGS
6171 BUILDSUF=$build_suffix
6172 PROGSSUF=$progs_suffix
6173 FULLNAME=$FULLNAME
6174 LIBPREF=$LIBPREF
6175 LIBSUF=$LIBSUF
6176 LIBNAME=$LIBNAME
6177 SLIBPREF=$SLIBPREF
6178 SLIBSUF=$SLIBSUF
6179 EXESUF=$EXESUF
6180 EXTRA_VERSION=$extra_version
6181 CCDEP=$CCDEP
6182 CXXDEP=$CXXDEP
6183 CCDEP_FLAGS=$CCDEP_FLAGS
6184 ASDEP=$ASDEP
6185 ASDEP_FLAGS=$ASDEP_FLAGS
6186 CC_DEPFLAGS=$CC_DEPFLAGS
6187 AS_DEPFLAGS=$AS_DEPFLAGS
6188 HOSTCC=$host_cc
6189 HOSTLD=$host_ld
6190 HOSTCFLAGS=$host_cflags
6191 HOSTCPPFLAGS=$host_cppflags
6192 HOSTEXESUF=$HOSTEXESUF
6193 HOSTLDFLAGS=$host_ldflags
6194 HOSTLIBS=$host_libs
6195 DEPHOSTCC=$host_cc
6196 DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
6197 HOSTCCDEP=$HOSTCCDEP
6198 HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
6199 HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
6200 HOSTCC_C=$HOSTCC_C
6201 HOSTCC_O=$HOSTCC_O
6202 HOSTLD_O=$HOSTLD_O
6203 TARGET_EXEC=$target_exec $target_exec_args
6204 TARGET_PATH=$target_path
6205 TARGET_SAMPLES=${target_samples:-\$(SAMPLES)}
6206 CFLAGS-ffplay=$sdl_cflags
6207 ZLIB=$($ldflags_filter -lz)
6208 LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
6209 EXTRALIBS=$extralibs
6210 COMPAT_OBJS=$compat_objs
6211 EXEOBJS=$exeobjs
6212 INSTALL=$install
6213 LIBTARGET=${LIBTARGET}
6214 SLIBNAME=${SLIBNAME}
6215 SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
6216 SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
6217 SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
6218 SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
6219 SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
6220 SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
6221 SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
6222 SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
6223 SAMPLES:=${samples:-\$(FATE_SAMPLES)}
6224 NOREDZONE_FLAGS=$noredzone_flags
6225 EOF
6226
6227 get_version(){
6228     lcname=lib${1}
6229     name=$(toupper $lcname)
6230     file=$source_path/$lcname/version.h
6231     eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
6232     enabled raise_major && eval ${name}_VERSION_MAJOR=$((${name}_VERSION_MAJOR+100))
6233     eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
6234     eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
6235     eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
6236     eval echo "${lcname}_VERSION_MINOR=\$${name}_VERSION_MINOR" >> config.mak
6237 }
6238
6239 map 'get_version $v' $LIBRARY_LIST
6240
6241 map 'eval echo "${v}_FFLIBS=\$${v}_deps" >> config.mak' $LIBRARY_LIST
6242
6243 print_program_libs(){
6244     eval "program_libs=\$${1}_libs"
6245     eval echo "LIBS-${1}=${program_libs}" >> config.mak
6246 }
6247
6248 map 'print_program_libs $v' $PROGRAM_LIST
6249
6250 cat > $TMPH <<EOF
6251 /* Automatically generated by configure - do not modify! */
6252 #ifndef FFMPEG_CONFIG_H
6253 #define FFMPEG_CONFIG_H
6254 #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
6255 #define FFMPEG_LICENSE "$(c_escape $license)"
6256 #define CONFIG_THIS_YEAR 2015
6257 #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
6258 #define AVCONV_DATADIR "$(eval c_escape $datadir)"
6259 #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
6260 #define av_restrict $_restrict
6261 #define EXTERN_PREFIX "${extern_prefix}"
6262 #define EXTERN_ASM ${extern_prefix}
6263 #define BUILDSUF "$build_suffix"
6264 #define SLIBSUF "$SLIBSUF"
6265 #define HAVE_MMX2 HAVE_MMXEXT
6266 #define SWS_MAX_FILTER_SIZE $sws_max_filter_size
6267 EOF
6268
6269 test -n "$assert_level" &&
6270     echo "#define ASSERT_LEVEL $assert_level" >>$TMPH
6271
6272 test -n "$malloc_prefix" &&
6273     echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
6274
6275 if enabled yasm; then
6276     append config_files $TMPASM
6277     printf '' >$TMPASM
6278 fi
6279
6280 enabled getenv || echo "#define getenv(x) NULL" >> $TMPH
6281
6282
6283 mkdir -p doc
6284 mkdir -p tests
6285 mkdir -p tests/api
6286 echo "@c auto-generated by configure - do not modify! " > doc/config.texi
6287
6288 print_config ARCH_   "$config_files" $ARCH_LIST
6289 print_config HAVE_   "$config_files" $HAVE_LIST
6290 print_config CONFIG_ "$config_files" $CONFIG_LIST       \
6291                                      $CONFIG_EXTRA      \
6292                                      $ALL_COMPONENTS    \
6293
6294 echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
6295 echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
6296
6297 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
6298 cp_if_changed $TMPH config.h
6299 touch .config
6300
6301 enabled yasm && cp_if_changed $TMPASM config.asm
6302
6303 cat > $TMPH <<EOF
6304 /* Generated by ffconf */
6305 #ifndef AVUTIL_AVCONFIG_H
6306 #define AVUTIL_AVCONFIG_H
6307 EOF
6308
6309 print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
6310
6311 echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
6312
6313 cp_if_changed $TMPH libavutil/avconfig.h
6314
6315 if test -n "$WARNINGS"; then
6316     printf "\n%s%s$WARNINGS%s" "$warn_color" "$bold_color" "$reset_color"
6317     enabled fatal_warnings && exit 1
6318 fi
6319
6320 # build pkg-config files
6321
6322 lib_version(){
6323     eval printf "\"lib${1}${build_suffix} >= \$LIB$(toupper ${1})_VERSION, \""
6324 }
6325
6326 pkgconfig_generate(){
6327     name=$1
6328     shortname=${name#lib}${build_suffix}
6329     comment=$2
6330     version=$3
6331     libs=$4
6332     requires=$(map 'lib_version $v' $(eval echo \$${name#lib}_deps))
6333     requires=${requires%, }
6334     enabled ${name#lib} || return 0
6335     mkdir -p $name
6336     cat <<EOF > $name/$name${build_suffix}.pc
6337 prefix=$prefix
6338 exec_prefix=\${prefix}
6339 libdir=$libdir
6340 includedir=$incdir
6341
6342 Name: $name
6343 Description: $comment
6344 Version: $version
6345 Requires: $(enabled shared || echo $requires)
6346 Requires.private: $(enabled shared && echo $requires)
6347 Conflicts:
6348 Libs: -L\${libdir} $(enabled rpath && echo "-Wl,-rpath,\${libdir}") -l${shortname} $(enabled shared || echo $libs)
6349 Libs.private: $(enabled shared && echo $libs)
6350 Cflags: -I\${includedir}
6351 EOF
6352
6353 mkdir -p doc/examples/pc-uninstalled
6354 includedir=${source_path}
6355 [ "$includedir" = . ] && includedir="\${pcfiledir}/../../.."
6356     cat <<EOF > doc/examples/pc-uninstalled/$name.pc
6357 prefix=
6358 exec_prefix=
6359 libdir=\${pcfiledir}/../../../$name
6360 includedir=${includedir}
6361
6362 Name: $name
6363 Description: $comment
6364 Version: $version
6365 Requires: $requires
6366 Conflicts:
6367 Libs: -L\${libdir} -Wl,-rpath,\${libdir} -l${shortname} $(enabled shared || echo $libs)
6368 Cflags: -I\${includedir}
6369 EOF
6370 }
6371
6372 pkgconfig_generate libavutil     "FFmpeg utility library"               "$LIBAVUTIL_VERSION"     "$LIBRT $LIBM"
6373 pkgconfig_generate libavcodec    "FFmpeg codec library"                 "$LIBAVCODEC_VERSION"    "$extralibs"
6374 pkgconfig_generate libavformat   "FFmpeg container format library"      "$LIBAVFORMAT_VERSION"   "$extralibs"
6375 pkgconfig_generate libavdevice   "FFmpeg device handling library"       "$LIBAVDEVICE_VERSION"   "$extralibs"
6376 pkgconfig_generate libavfilter   "FFmpeg audio/video filtering library" "$LIBAVFILTER_VERSION"   "$extralibs"
6377 pkgconfig_generate libpostproc   "FFmpeg postprocessing library"        "$LIBPOSTPROC_VERSION"   ""
6378 pkgconfig_generate libavresample "Libav audio resampling library"       "$LIBAVRESAMPLE_VERSION" "$LIBM"
6379 pkgconfig_generate libswscale    "FFmpeg image rescaling library"       "$LIBSWSCALE_VERSION"    "$LIBM"
6380 pkgconfig_generate libswresample "FFmpeg audio resampling library"      "$LIBSWRESAMPLE_VERSION" "$LIBM $LIBSOXR"