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