OSDN Git Service

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