3 # FFmpeg configure script
5 # Copyright (c) 2000-2002 Fabrice Bellard
6 # Copyright (c) 2005-2008 Diego Biurrun
7 # Copyright (c) 2005-2008 Mans Rullgard
10 # Prevent locale nonsense from breaking basic text processing.
14 # make sure we are running under a compatible shell
15 # try to make this part work with most shells
18 echo "Trying shell $1"
19 type "$1" > /dev/null 2>&1 && exec "$@"
23 (: ${foo%%bar}) 2> /dev/null
26 (: ${foo?}) 2> /dev/null
29 if test "$E1" != 0 || test "$E2" = 0; then
30 echo "Broken shell detected. Trying alternatives."
32 if test "0$FF_CONF_EXEC" -lt 1; then
34 try_exec bash "$0" "$@"
36 if test "0$FF_CONF_EXEC" -lt 2; then
38 try_exec ksh "$0" "$@"
40 if test "0$FF_CONF_EXEC" -lt 3; then
42 try_exec /usr/xpg4/bin/sh "$0" "$@"
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."
57 test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH
61 Usage: configure [options]
62 Options: [defaults in brackets after descriptions]
65 --help print this message
66 --list-decoders show all available decoders
67 --list-encoders show all available encoders
68 --list-hwaccels show all available hardware accelerators
69 --list-demuxers show all available demuxers
70 --list-muxers show all available muxers
71 --list-parsers show all available parsers
72 --list-protocols show all available protocols
73 --list-bsfs show all available bitstream filters
74 --list-indevs show all available input devices
75 --list-outdevs show all available output devices
76 --list-filters show all available filters
79 --logfile=FILE log tests and output to FILE [config.log]
80 --disable-logging do not log configure debug information
81 --fatal-warnings fail if any configure warning is generated
82 --prefix=PREFIX install in PREFIX [$prefix]
83 --bindir=DIR install binaries in DIR [PREFIX/bin]
84 --datadir=DIR install data files in DIR [PREFIX/share/ffmpeg]
85 --docdir=DIR install documentation in DIR [PREFIX/share/doc/ffmpeg]
86 --libdir=DIR install libs in DIR [PREFIX/lib]
87 --shlibdir=DIR install shared libs in DIR [LIBDIR]
88 --incdir=DIR install includes in DIR [PREFIX/include]
89 --mandir=DIR install man page in DIR [PREFIX/share/man]
90 --pkgconfigdir=DIR install pkg-config files in DIR [LIBDIR/pkgconfig]
91 --enable-rpath use rpath to allow installing libraries in paths
92 not part of the dynamic linker search path
93 use rpath when linking programs [USE WITH CARE]
94 --install-name-dir=DIR Darwin directory name for installed targets
97 --enable-gpl allow use of GPL code, the resulting libs
98 and binaries will be under GPL [no]
99 --enable-version3 upgrade (L)GPL to version 3 [no]
100 --enable-nonfree allow use of nonfree code, the resulting libs
101 and binaries will be unredistributable [no]
103 Configuration options:
104 --disable-static do not build static libraries [no]
105 --enable-shared build shared libraries [no]
106 --enable-small optimize for size instead of speed
107 --disable-runtime-cpudetect disable detecting cpu capabilities at runtime (smaller binary)
108 --enable-gray enable full grayscale support (slower color)
109 --disable-swscale-alpha disable alpha channel support in swscale
110 --disable-all disable building components, libraries and programs
111 --enable-raise-major increase major version numbers in sonames [no]
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
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
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
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
188 External library support:
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.
197 Note that only the system libraries are auto-detected. All the other external
198 libraries must be explicitly enabled.
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.
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
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-librubberband enable rubberband needed for rubberband filter [no]
248 --enable-librtmp enable RTMP[E] support via librtmp [no]
249 --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
250 --enable-libshine enable fixed-point MP3 encoding via libshine [no]
251 --enable-libsmbclient enable Samba protocol via libsmbclient [no]
252 --enable-libsnappy enable Snappy compression, needed for hap encoding [no]
253 --enable-libsoxr enable Include libsoxr resampling [no]
254 --enable-libspeex enable Speex de/encoding via libspeex [no]
255 --enable-libssh enable SFTP protocol via libssh [no]
256 --enable-libtesseract enable Tesseract, needed for ocr filter [no]
257 --enable-libtheora enable Theora encoding via libtheora [no]
258 --enable-libtwolame enable MP2 encoding via libtwolame [no]
259 --enable-libv4l2 enable libv4l2/v4l-utils [no]
260 --enable-libvidstab enable video stabilization using vid.stab [no]
261 --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
262 --enable-libvorbis enable Vorbis en/decoding via libvorbis,
263 native implementation exists [no]
264 --enable-libvpx enable VP8 and VP9 de/encoding via libvpx [no]
265 --enable-libwavpack enable wavpack encoding via libwavpack [no]
266 --enable-libwebp enable WebP encoding via libwebp [no]
267 --enable-libx264 enable H.264 encoding via x264 [no]
268 --enable-libx265 enable HEVC encoding via x265 [no]
269 --enable-libxavs enable AVS encoding via xavs [no]
270 --enable-libxcb enable X11 grabbing using XCB [autodetect]
271 --enable-libxcb-shm enable X11 grabbing shm communication [autodetect]
272 --enable-libxcb-xfixes enable X11 grabbing mouse rendering [autodetect]
273 --enable-libxcb-shape enable X11 grabbing shape rendering [autodetect]
274 --enable-libxvid enable Xvid encoding via xvidcore,
275 native MPEG-4/Xvid encoder exists [no]
276 --enable-libzimg enable z.lib, needed for zscale filter [no]
277 --enable-libzmq enable message passing via libzmq [no]
278 --enable-libzvbi enable teletext support via libzvbi [no]
279 --disable-lzma disable lzma [autodetect]
280 --enable-decklink enable Blackmagic DeckLink I/O support [no]
281 --enable-mediacodec enable Android MediaCodec support [no]
282 --enable-netcdf enable NetCDF, needed for sofalizer filter [no]
283 --enable-openal enable OpenAL 1.1 capture support [no]
284 --enable-opencl enable OpenCL code
285 --enable-opengl enable OpenGL rendering [no]
286 --enable-openssl enable openssl, needed for https support
287 if gnutls is not used [no]
288 --disable-schannel disable SChannel SSP, needed for TLS support on
289 Windows if openssl and gnutls are not used [autodetect]
290 --disable-sdl2 disable sdl2 [autodetect]
291 --disable-securetransport disable Secure Transport, needed for TLS support
292 on OSX if openssl and gnutls are not used [autodetect]
293 --enable-x11grab enable X11 grabbing (legacy) [no]
294 --disable-xlib disable xlib [autodetect]
295 --disable-zlib disable zlib [autodetect]
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 --disable-cuvid disable Nvidia CUVID support [autodetect]
301 --disable-d3d11va disable Microsoft Direct3D 11 video acceleration code [autodetect]
302 --disable-dxva2 disable Microsoft DirectX 9 video acceleration code [autodetect]
303 --enable-libmfx enable Intel MediaSDK (AKA Quick Sync Video) code via libmfx [no]
304 --enable-libnpp enable Nvidia Performance Primitives-based code [no]
305 --enable-mmal enable Broadcom Multi-Media Abstraction Layer (Raspberry Pi) via MMAL [no]
306 --disable-nvenc disable Nvidia video encoding code [autodetect]
307 --enable-omx enable OpenMAX IL code [no]
308 --enable-omx-rpi enable OpenMAX IL code for Raspberry Pi [no]
309 --disable-vaapi disable Video Acceleration API (mainly Unix/Intel) code [autodetect]
310 --disable-vda disable Apple Video Decode Acceleration code [autodetect]
311 --disable-vdpau disable Nvidia Video Decode and Presentation API for Unix code [autodetect]
312 --disable-videotoolbox disable VideoToolbox code [autodetect]
315 --arch=ARCH select architecture [$arch]
316 --cpu=CPU select the minimum required CPU (affects
317 instruction selection, may crash on older CPUs)
318 --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
319 --progs-suffix=SUFFIX program name suffix []
320 --enable-cross-compile assume a cross-compiler is used
321 --sysroot=PATH root of cross-build tree
322 --sysinclude=PATH location of cross-build system headers
323 --target-os=OS compiler targets OS [$target_os]
324 --target-exec=CMD command to run executables on target
325 --target-path=DIR path to view of build directory on target
326 --target-samples=DIR path to samples directory on target
327 --tempprefix=PATH force fixed dir/prefix instead of mktemp for checks
328 --toolchain=NAME set tool defaults according to NAME
329 --nm=NM use nm tool NM [$nm_default]
330 --ar=AR use archive tool AR [$ar_default]
331 --as=AS use assembler AS [$as_default]
332 --ln_s=LN_S use symbolic link tool LN_S [$ln_s_default]
333 --strip=STRIP use strip tool STRIP [$strip_default]
334 --windres=WINDRES use windows resource compiler WINDRES [$windres_default]
335 --yasmexe=EXE use yasm-compatible assembler EXE [$yasmexe_default]
336 --cc=CC use C compiler CC [$cc_default]
337 --cxx=CXX use C compiler CXX [$cxx_default]
338 --objcc=OCC use ObjC compiler OCC [$cc_default]
339 --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
340 --ld=LD use linker LD [$ld_default]
341 --pkg-config=PKGCONFIG use pkg-config tool PKGCONFIG [$pkg_config_default]
342 --pkg-config-flags=FLAGS pass additional flags to pkgconf []
343 --ranlib=RANLIB use ranlib RANLIB [$ranlib_default]
344 --doxygen=DOXYGEN use DOXYGEN to generate API doc [$doxygen_default]
345 --host-cc=HOSTCC use host C compiler HOSTCC
346 --host-cflags=HCFLAGS use HCFLAGS when compiling for host
347 --host-cppflags=HCPPFLAGS use HCPPFLAGS when compiling for host
348 --host-ld=HOSTLD use host linker HOSTLD
349 --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
350 --host-libs=HLIBS use libs HLIBS when linking for host
351 --host-os=OS compiler host OS [$target_os]
352 --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
353 --extra-cxxflags=ECFLAGS add ECFLAGS to CXXFLAGS [$CXXFLAGS]
354 --extra-objcflags=FLAGS add FLAGS to OBJCFLAGS [$CFLAGS]
355 --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
356 --extra-ldexeflags=ELDFLAGS add ELDFLAGS to LDEXEFLAGS [$LDEXEFLAGS]
357 --extra-ldlibflags=ELDFLAGS add ELDFLAGS to LDLIBFLAGS [$LDLIBFLAGS]
358 --extra-libs=ELIBS add ELIBS [$ELIBS]
359 --extra-version=STRING version string suffix []
360 --optflags=OPTFLAGS override optimization-related compiler flags
361 --build-suffix=SUFFIX library name suffix []
362 --enable-pic build position-independent code
363 --enable-thumb compile for Thumb instruction set
364 --enable-lto use link-time optimization
365 --env="ENV=override" override the environment variables
367 Advanced options (experts only):
368 --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
369 --custom-allocator=NAME use a supported custom allocator
370 --disable-symver disable symbol versioning
371 --enable-hardcoded-tables use hardcoded tables instead of runtime generation
372 --disable-safe-bitstream-reader
373 disable buffer boundary checking in bitreaders
374 (faster, but may crash)
375 --enable-memalign-hack emulate memalign, interferes with memory debuggers
376 --sws-max-filter-size=N the max filter size swscale uses [$sws_max_filter_size_default]
378 Optimization options (experts only):
379 --disable-asm disable all assembly optimizations
380 --disable-altivec disable AltiVec optimizations
381 --disable-vsx disable VSX optimizations
382 --disable-power8 disable POWER8 optimizations
383 --disable-amd3dnow disable 3DNow! optimizations
384 --disable-amd3dnowext disable 3DNow! extended optimizations
385 --disable-mmx disable MMX optimizations
386 --disable-mmxext disable MMXEXT optimizations
387 --disable-sse disable SSE optimizations
388 --disable-sse2 disable SSE2 optimizations
389 --disable-sse3 disable SSE3 optimizations
390 --disable-ssse3 disable SSSE3 optimizations
391 --disable-sse4 disable SSE4 optimizations
392 --disable-sse42 disable SSE4.2 optimizations
393 --disable-avx disable AVX optimizations
394 --disable-xop disable XOP optimizations
395 --disable-fma3 disable FMA3 optimizations
396 --disable-fma4 disable FMA4 optimizations
397 --disable-avx2 disable AVX2 optimizations
398 --disable-aesni disable AESNI optimizations
399 --disable-armv5te disable armv5te optimizations
400 --disable-armv6 disable armv6 optimizations
401 --disable-armv6t2 disable armv6t2 optimizations
402 --disable-vfp disable VFP optimizations
403 --disable-neon disable NEON optimizations
404 --disable-inline-asm disable use of inline assembly
405 --disable-yasm disable use of nasm/yasm assembly
406 --disable-mipsdsp disable MIPS DSP ASE R1 optimizations
407 --disable-mipsdspr2 disable MIPS DSP ASE R2 optimizations
408 --disable-msa disable MSA optimizations
409 --disable-mipsfpu disable floating point MIPS optimizations
410 --disable-mmi disable Loongson SIMD optimizations
411 --disable-fast-unaligned consider unaligned accesses slow
413 Developer options (useful when working on FFmpeg itself):
414 --disable-debug disable debugging symbols
415 --enable-debug=LEVEL set the debug level [$debuglevel]
416 --disable-optimizations disable compiler optimizations
417 --enable-extra-warnings enable more compiler warnings
418 --disable-stripping disable stripping of executables and shared libraries
419 --assert-level=level 0(default), 1 or 2, amount of assertion testing,
420 2 causes a slowdown at runtime.
421 --enable-memory-poisoning fill heap uninitialized allocated space with arbitrary data
422 --valgrind=VALGRIND run "make fate" tests through valgrind to detect memory
423 leaks and errors, using the specified valgrind binary.
424 Cannot be combined with --target-exec
425 --enable-ftrapv Trap arithmetic overflows
426 --samples=PATH location of test samples for FATE, if not set use
427 \$FATE_SAMPLES at make invocation time.
428 --enable-neon-clobber-test check NEON registers for clobbering (should be
429 used only for debugging purposes)
430 --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
431 should be used only for debugging purposes)
432 --enable-random randomly enable/disable components
434 --enable-random=LIST randomly enable/disable specific components or
435 --disable-random=LIST component groups. LIST is a comma-separated list
436 of NAME[:PROB] entries where NAME is a component
437 (group) and PROB the probability associated with
439 --random-seed=VALUE seed value for --enable/disable-random
440 --disable-valgrind-backtrace do not print a backtrace under Valgrind
441 (only applies to --disable-optimizations builds)
443 NOTE: Object files are built at the place where configure is launched.
449 if test -t 1 && which tput >/dev/null 2>&1; then
450 ncolors=$(tput colors)
451 if test -n "$ncolors" && test $ncolors -ge 8; then
452 bold_color=$(tput bold)
453 warn_color=$(tput setaf 3)
454 error_color=$(tput setaf 1)
455 reset_color=$(tput sgr0)
457 # 72 used instead of 80 since that's the default of pr
463 echo "$@" >> $logfile
468 pr -n -t $1 >> $logfile
474 WARNINGS="${WARNINGS}WARNING: $*\n"
479 echo "$error_color$bold_color$@$reset_color"
482 If you think configure made a mistake, make sure you are using the latest
483 version from Git. If the latest version fails, report the problem to the
484 ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
486 if disabled logging; then
488 Rerun configure with logging enabled (do not use --disable-logging), and
489 include the log this produces with your report.
493 Include the log file "$logfile" produced by configure as this will help
500 # Avoid locale weirdness, besides we really just want to translate ASCII.
502 echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
506 echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
510 echo "$*" | sed 's/["\\]/\\\0/g'
514 v=$(echo "$1" | sed "s/'/'\\\\''/g")
515 test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
520 echo "$@" | sed 's/^ *//;s/[[:space:]][[:space:]]*/ /g;s/ *$//'
527 eval "case $v in $pat) echo $v ;; esac"
535 eval "case $v in $pat) ;; *) echo $v ;; esac"
542 for v; do eval $m; done
548 for v; do echo ${v}${suffix}; done
563 eval : \${$var:=$value}
568 echo $@ | sed 's/[^A-Za-z0-9_]/_/g'
574 eval $(sanitize_var_name "$var")='$*'
578 eval echo \$$(sanitize_var_name "$1")
583 eval level=\${${pvar}_level:=0}
584 eval ${pvar}_${level}="\$$pvar"
585 eval ${pvar}_level=$(($level+1))
591 eval level=\${${pvar}_level:-0}
592 test $level = 0 && continue
593 eval level=$(($level-1))
594 eval $pvar="\${${pvar}_${level}}"
595 eval ${pvar}_level=$level
596 eval unset ${pvar}_${level}
602 eval ${var}_requested=yes
625 enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
631 disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
637 enabled $var && continue
638 eval sel="\$${var}_select"
639 eval sgs="\$${var}_suggest"
643 enable_deep_weak $sgs
655 disabled $var && continue
664 test "${1#!}" = "$1" && op='=' || op=!=
665 eval test "x\$${1#!}_requested" $op "xyes"
669 test "${1#!}" = "$1" && op='=' || op=!=
670 eval test "x\$${1#!}" $op "xyes"
674 test "${1#!}" = "$1" && op='=' || op=!=
675 eval test "x\$${1#!}" $op "xno"
680 enabled $opt || return 1
686 disabled $opt || return 1
692 enabled $opt && return 0
698 disabled $opt && return 0
705 eval : \${$opt:=\$${opt}_default}
713 [ $var = $value ] && return 0
721 enabled ${cfg}_checking && die "Circular dependency for $cfg."
722 disabled ${cfg}_checking && continue
723 enable ${cfg}_checking
726 eval dep_all="\$${cfg}_deps"
727 eval dep_any="\$${cfg}_deps_any"
728 eval dep_sel="\$${cfg}_select"
729 eval dep_sgs="\$${cfg}_suggest"
730 eval dep_ifa="\$${cfg}_if"
731 eval dep_ifn="\$${cfg}_if_any"
733 pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
734 do_check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
735 popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
737 [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
738 [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
739 enabled_all $dep_all || { disable $cfg && requested $cfg && die "ERROR: $cfg requested, but not all dependencies are satisfied: $dep_all"; }
740 enabled_any $dep_any || { disable $cfg && requested $cfg && die "ERROR: $cfg requested, but not any dependency is satisfied: $dep_any"; }
741 disabled_any $dep_sel && { disable $cfg && requested $cfg && die "ERROR: $cfg requested, but some selected dependency is unsatisfied: $dep_sel"; }
743 if enabled $cfg; then
745 enable_deep_weak $dep_sgs
748 disable ${cfg}_checking
757 for cfg in $allopts; do
758 enabled $cfg || continue
759 eval dep_extralibs="\$${cfg}_extralibs"
760 test -n "$dep_extralibs" && add_extralibs $dep_extralibs
768 map 'eval echo "$v \${$v:-no}"' "$@" |
769 awk "BEGIN { split(\"$files\", files) }
771 c = \"$pfx\" toupper(\$1);
777 if (file ~ /\\.h\$/) {
778 printf(\"#define %s %d\\n\", c, v) >>file;
779 } else if (file ~ /\\.asm\$/) {
780 printf(\"%%define %s %d\\n\", c, v) >>file;
781 } else if (file ~ /\\.mak\$/) {
782 n = -v ? \"\" : \"!\";
783 printf(\"%s%s=yes\\n\", n, c) >>file;
784 } else if (file ~ /\\.texi\$/) {
785 pre = -v ? \"\" : \"@c \";
788 gsub(/_/, \"-\", c2);
789 printf(\"%s@set %s %s\\n\", pre, c2, yesno) >>file;
799 enabled $v && printf "%s\n" ${v%$suf}
806 eval "$var=\"\$$var $*\""
812 eval "$var=\"$* \$$var\""
818 for tok in $(eval echo \$$var); do
819 uniq_list="$(filter_out $tok $uniq_list) $tok"
821 eval "$var=\"${uniq_list}\""
829 append CFLAGS $($cflags_filter "$@")
833 append CXXFLAGS $($cflags_filter "$@")
837 append ASFLAGS $($asflags_filter "$@")
841 append OBJCFLAGS $($objcflags_filter "$@")
845 append LDFLAGS $($ldflags_filter "$@")
849 append LDEXEFLAGS $($ldflags_filter "$@")
853 append LDLIBFLAGS $($ldflags_filter "$@")
857 append ASMSTRIPFLAGS "$@"
861 prepend extralibs $($ldflags_filter "$@")
865 append host_cppflags "$@"
869 append host_cflags $($host_cflags_filter "$@")
873 append host_ldflags $($host_ldflags_filter "$@")
877 append compat_objs $1
879 map 'add_cppflags -D$v' "$@"
884 "$@" >> $logfile 2>&1
889 stat "$1" >> $logfile 2>&1
893 eval printf '%s\\n' $CC_O
897 eval printf '%s\\n' $CC_E
904 check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
911 check_cmd $cxx $CPPFLAGS $CFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
918 check_cmd $objcc -Werror=missing-prototypes $CPPFLAGS $CFLAGS $OBJCFLAGS "$@" $OBJCC_C $(cc_o $TMPO) $TMPM
925 check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
929 eval printf '%s\\n' $AS_O
936 check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
940 log check_inline_asm "$@"
945 check_cc "$@" <<EOF && enable $name
946 void foo(void){ __asm__ volatile($code); }
950 check_inline_asm_flags(){
951 log check_inline_asm_flags "$@"
956 while [ "$1" != "" ]; do
962 void foo(void){ __asm__ volatile($code); }
965 check_cmd $cc $CPPFLAGS $CFLAGS $flags "$@" $CC_C $(cc_o $TMPO) $TMPC &&
966 enable $name && add_cflags $flags && add_asflags $flags && add_ldflags $flags
971 check_inline_asm ${1}_inline "\"$2\""
972 echo "$2" | check_as && enable ${1}_external || disable ${1}_external
980 check_cmd $yasmexe $YASMFLAGS -Werror "$@" -o $TMPO $TMPS
984 eval printf '%s\\n' $LD_O
991 flags=$(filter_out '-l*|*.so' $@)
992 libs=$(filter '-l*|*.so' $@)
993 check_$type $($cflags_filter $flags) || return
994 flags=$($ldflags_filter $flags)
995 libs=$($ldflags_filter $libs)
996 check_cmd $ld $LDFLAGS $LDEXEFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
1001 test "${hdr%.h}" = "${hdr}" &&
1002 echo "#include $hdr" ||
1003 echo "#include <$hdr>"
1013 for hdr in $headers; do
1016 echo "int main(void) { $code; return 0; }"
1017 } | check_$check "$@"
1021 log check_cppflags "$@"
1022 check_cc "$@" <<EOF && append CPPFLAGS "$@"
1028 log test_cflags "$@"
1029 set -- $($cflags_filter "$@")
1036 log check_cflags "$@"
1037 test_cflags "$@" && add_cflags "$@"
1041 log check_cxxflags "$@"
1042 set -- $($cflags_filter "$@")
1043 check_cxx "$@" <<EOF && append CXXFLAGS "$@"
1049 log test_cflags "$@"
1050 set -- $($cflags_filter "$@")
1051 check_objcc "$@" <<EOF
1057 log check_cflags "$@"
1058 test_objcflags "$@" && add_objcflags "$@"
1062 log test_ldflags "$@"
1063 check_ld "cc" "$@" <<EOF
1064 int main(void){ return 0; }
1069 log check_ldflags "$@"
1070 test_ldflags "$@" && add_ldflags "$@"
1074 log test_stripflags "$@"
1075 # call check_cc to get a fresh TMPO
1077 int main(void) { return 0; }
1079 check_cmd $strip $ASMSTRIPFLAGS "$@" $TMPO
1083 log check_stripflags "$@"
1084 test_stripflags "$@" && add_stripflags "$@"
1088 log check_header "$@"
1091 disable_safe $header
1092 check_cpp "$@" <<EOF && enable_safe $header
1098 check_header_objcc(){
1099 log check_header_objcc "$@"
1103 disable_safe $header
1105 echo "#include <$header>"
1106 echo "int main(void) { return 0; }"
1107 } | check_objcc && check_stat "$TMPO" && enable_safe $headers
1115 check_ld "cc" "$@" <<EOF && enable $func
1117 int main(void){ $func(); }
1121 check_complexfunc(){
1122 log check_complexfunc "$@"
1126 test $narg = 2 && args="f, g" || args="f * I"
1128 check_ld "cc" "$@" <<EOF && enable $func
1129 #include <complex.h>
1131 float foo(complex float f, complex float g) { return $func($args); }
1132 int main(void){ return (int) foo; }
1137 log check_mathfunc "$@"
1141 test $narg = 2 && args="f, g" || args="f"
1143 check_ld "cc" "$@" <<EOF && enable $func
1145 float foo(float f, float g) { return $func($args); }
1146 int main(void){ return (int) foo; }
1150 check_func_headers(){
1151 log check_func_headers "$@"
1156 for hdr in $headers; do
1159 echo "#include <stdint.h>"
1160 for func in $funcs; do
1161 echo "long check_$func(void) { return (long) $func; }"
1163 echo "int main(void) { int ret = 0;"
1164 # LTO could optimize out the test functions without this
1165 for func in $funcs; do
1166 echo " ret |= ((intptr_t)check_$func) & 0xFFFF;"
1168 echo "return ret; }"
1169 } | check_ld "cc" "$@" && enable $funcs && enable_safe $headers
1172 check_class_headers_cpp(){
1173 log check_class_headers_cpp "$@"
1178 for hdr in $headers; do
1179 echo "#include <$hdr>"
1181 echo "int main(void) { "
1183 for class in $classes; do
1184 echo "$class obj$i;"
1188 } | check_ld "cxx" "$@" && enable $funcs && enable_safe $headers
1191 check_cpp_condition(){
1192 log check_cpp_condition "$@"
1196 check_cpp "$@" <<EOF
1199 #error "unsatisfied condition: $condition"
1205 log test_cflags_cc "$@"
1210 set -- $($cflags_filter "$flags")
1214 #error "unsatisfied condition: $condition"
1224 check_header $header && check_func $func "$@" && add_extralibs "$@"
1232 check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
1236 log check_lib_cpp "$@"
1240 check_class_headers_cpp "$headers" "$classes" "$@" && add_extralibs "$@"
1244 log check_pkg_config "$@"
1250 check_cmd $pkg_config --exists --print-errors $pkgandversion || return
1251 pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
1252 pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
1253 check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
1254 set_safe "${pkg}_cflags" $pkg_cflags &&
1255 set_safe "${pkg}_libs" $pkg_libs
1259 check_ld "cc" "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
1265 # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
1266 # are safe but may not be available everywhere. Thus we use
1267 # raise(SIGTERM) instead. The check is run in a subshell so we
1268 # can redirect the "Terminated" message from the shell. SIGBUS
1269 # is not defined by standard C so it is used conditionally.
1271 (check_exec "$@") >> $logfile 2>&1 <<EOF
1273 static void sighandler(int sig){
1279 int (*func_ptr)(void) = foo;
1281 signal(SIGILL, sighandler);
1282 signal(SIGFPE, sighandler);
1283 signal(SIGSEGV, sighandler);
1285 signal(SIGBUS, sighandler);
1297 disable_safe "$type"
1298 check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
1302 log check_struct "$@"
1307 disable_safe "${struct}_${member}"
1308 check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
1309 enable_safe "${struct}_${member}"
1313 log check_builtin "$@"
1319 check_code ld "$headers" "$builtin" "cc" "$@" && enable "$name"
1322 check_compile_assert(){
1323 log check_compile_assert "$@"
1329 check_code cc "$headers" "char c[2 * !!($condition) - 1]" "$@" && enable "$name"
1337 check_lib $header $func "$@" || die "ERROR: $name not found"
1345 check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
1353 check_lib_cpp "$headers" "$classes" "$@" || die "ERROR: $name not found"
1358 check_pkg_config "$@" || return 1
1359 add_cflags $(get_safe "${pkg}_cflags")
1360 add_extralibs $(get_safe "${pkg}_libs")
1363 require_pkg_config(){
1364 use_pkg_config "$@" || die "ERROR: $pkg not found using pkg-config$pkg_config_fail_message"
1367 require_libfreetype(){
1368 log require_libfreetype "$@"
1370 check_cmd $pkg_config --exists --print-errors $pkg \
1371 || die "ERROR: $pkg not found"
1372 pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
1373 pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
1375 echo "#include <ft2build.h>"
1376 echo "#include FT_FREETYPE_H"
1377 echo "long check_func(void) { return (long) FT_Init_FreeType; }"
1378 echo "int main(void) { return 0; }"
1379 } | check_ld "cc" $pkg_cflags $pkg_libs \
1380 && set_safe "${pkg}_cflags" $pkg_cflags \
1381 && set_safe "${pkg}_libs" $pkg_libs \
1382 || die "ERROR: $pkg not found"
1383 add_cflags $(get_safe "${pkg}_cflags")
1384 add_extralibs $(get_safe "${pkg}_libs")
1388 eval printf '%s\\n' $HOSTCC_E
1392 eval printf '%s\\n' $HOSTCC_O
1396 log check_host_cc "$@"
1399 check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
1403 log check_host_cpp "$@"
1406 check_cmd $host_cc $host_cppflags $host_cflags "$@" $(hostcc_e $TMPO) $TMPC
1409 check_host_cppflags(){
1410 log check_host_cppflags "$@"
1411 check_host_cc "$@" <<EOF && append host_cppflags "$@"
1416 check_host_cflags(){
1417 log check_host_cflags "$@"
1418 set -- $($host_cflags_filter "$@")
1419 check_host_cc "$@" <<EOF && append host_cflags "$@"
1424 check_host_cpp_condition(){
1425 log check_host_cpp_condition "$@"
1429 check_host_cpp "$@" <<EOF
1432 #error "unsatisfied condition: $condition"
1438 cmp -s "$1" "$2" && echo "$2 is unchanged" && return
1439 mkdir -p "$(dirname $2)"
1443 # CONFIG_LIST contains configurable options, while HAVE_LIST is for
1444 # system-dependent things.
1446 AVCODEC_COMPONENTS="
1454 AVDEVICE_COMPONENTS="
1458 AVFILTER_COMPONENTS="
1461 AVFORMAT_COMPONENTS="
1467 AVRESAMPLE_COMPONENTS=""
1468 AVUTIL_COMPONENTS=""
1472 $AVDEVICE_COMPONENTS
1473 $AVFILTER_COMPONENTS
1474 $AVFORMAT_COMPONENTS
1475 $AVRESAMPLE_COMPONENTS
1480 avio_dir_cmd_example
1481 avio_reading_example
1482 decoding_encoding_example
1483 demuxing_decoding_example
1485 filter_audio_example
1486 filtering_audio_example
1487 filtering_video_example
1488 http_multiclient_example
1493 resampling_audio_example
1494 scaling_video_example
1495 transcode_aac_example
1498 EXTERNAL_AUTODETECT_LIBRARY_LIST="
1514 EXTERNAL_LIBRARY_LIST="
1515 $EXTERNAL_AUTODETECT_LIBRARY_LIST
1589 HWACCEL_AUTODETECT_LIBRARY_LIST="
1599 videotoolbox_hwaccel
1603 HWACCEL_LIBRARY_LIST="
1604 $HWACCEL_AUTODETECT_LIBRARY_LIST
1625 safe_bitstream_reader
1676 $EXTERNAL_LIBRARY_LIST
1677 $HWACCEL_LIBRARY_LIST
1708 $EXTERNAL_AUTODETECT_LIBRARY_LIST
1709 $HWACCEL_AUTODETECT_LIBRARY_LIST
1751 ARCH_EXT_LIST_MIPS="
1763 ARCH_EXT_LIST_LOONGSON="
1769 ARCH_EXT_LIST_X86_SIMD="
1798 $ARCH_EXT_LIST_X86_SIMD
1808 $ARCH_EXT_LIST_LOONGSON
1830 sync_val_compare_and_swap
1849 cdio_paranoia_paranoia_h
1852 dev_bktr_ioctl_bt848_h
1853 dev_bktr_ioctl_meteor_h
1855 dev_video_bktr_ioctl_bt848_h
1856 dev_video_meteor_ioctl_meteor_h
1866 machine_ioctl_bt848_h
1867 machine_ioctl_meteor_h
1869 opencv2_core_core_c_h
1870 openjpeg_2_1_openjpeg_h
1871 openjpeg_2_0_openjpeg_h
1872 openjpeg_1_5_openjpeg_h
1951 GetProcessAffinityMask
1952 GetProcessMemoryInfo
1955 GetSystemTimeAsFileTime
1962 jack_port_get_latency_range
1979 SetConsoleTextAttribute
1980 SetConsoleCtrlHandler
1988 UTGetOSTypeFromString
1993 TOOLCHAIN_FEATURES="
2006 inline_asm_direct_symbol_refs
2008 inline_asm_nonlocal_labels
2019 CONDITION_VARIABLE_Ptr
2022 struct_group_source_req
2023 struct_ip_mreq_source
2025 struct_msghdr_msg_flags
2027 struct_rusage_ru_maxrss
2028 struct_sctp_event_subscribe
2030 struct_sockaddr_sa_len
2031 struct_sockaddr_storage
2032 struct_stat_st_mtim_tv_nsec
2033 struct_v4l2_frmivalenum_discrete
2038 $(add_suffix _external $ARCH_EXT_LIST)
2039 $(add_suffix _inline $ARCH_EXT_LIST)
2062 MMAL_PARAMETER_VIDEO_MAX_NUM_CALLBACKS
2076 # options emitted with CONFIG_ prefix but not available on the command line
2093 frame_thread_encoder
2244 # code dependency declarations
2246 # architecture extensions
2251 armv8_deps="aarch64"
2252 neon_deps_any="aarch64 arm"
2253 intrinsics_neon_deps="neon"
2254 vfp_deps_any="aarch64 arm"
2258 map 'eval ${v}_inline_deps=inline_asm' $ARCH_EXT_LIST_ARM
2260 loongson2_deps="mips"
2261 loongson3_deps="mips"
2264 mipsdspr2_deps="mips"
2265 mips32r2_deps="mips"
2266 mips32r5_deps="mips"
2267 mips32r6_deps="mips"
2268 mips64r2_deps="mips"
2269 mips64r6_deps="mips"
2281 x86_64_select="i686"
2282 x86_64_suggest="fast_cmov"
2285 amd3dnowext_deps="amd3dnow"
2302 mmx_external_deps="yasm"
2303 mmx_inline_deps="inline_asm"
2304 mmx_suggest="mmx_external mmx_inline"
2306 for ext in $(filter_out mmx $ARCH_EXT_LIST_X86_SIMD); do
2307 eval dep=\$${ext}_deps
2308 eval ${ext}_external_deps='"${dep}_external"'
2309 eval ${ext}_inline_deps='"${dep}_inline"'
2310 eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
2313 aligned_stack_if_any="aarch64 ppc x86"
2314 fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
2315 fast_clz_if_any="aarch64 alpha avr32 mips ppc x86"
2316 fast_unaligned_if_any="aarch64 ppc x86"
2317 simd_align_16_if_any="altivec neon sse"
2319 # system capabilities
2320 symver_if_any="symver_asm_label symver_gnu_asm"
2321 valgrind_backtrace_deps="!optimizations valgrind_valgrind_h"
2324 atomics_gcc_if="sync_val_compare_and_swap"
2325 atomics_suncc_if="atomic_cas_ptr machine_rw_barrier"
2326 atomics_win32_if="MemoryBarrier"
2327 atomics_native_if_any="$ATOMICS_LIST"
2328 w32threads_deps="atomics_native"
2329 threads_if_any="$THREADS_LIST"
2333 dirac_parse_select="golomb"
2334 error_resilience_select="me_cmp"
2335 faandct_deps="faan fdctdsp"
2336 faanidct_deps="faan idctdsp"
2337 h264dsp_select="startcode"
2338 frame_thread_encoder_deps="encoders threads"
2339 intrax8_select="blockdsp idctdsp"
2342 me_cmp_select="fdctdsp idctdsp pixblockdsp"
2343 mpeg_er_select="error_resilience"
2344 mpegaudio_select="mpegaudiodsp"
2345 mpegaudiodsp_select="dct"
2346 mpegvideo_select="blockdsp h264chroma hpeldsp idctdsp me_cmp mpeg_er videodsp"
2347 mpegvideoenc_select="me_cmp mpegvideo pixblockdsp qpeldsp"
2348 vc1dsp_select="h264chroma qpeldsp startcode"
2351 # decoders / encoders
2352 aac_decoder_select="mdct15 mdct sinewin"
2353 aac_fixed_decoder_select="mdct sinewin"
2354 aac_encoder_select="audio_frame_queue iirfilter lpc mdct sinewin"
2355 aac_latm_decoder_select="aac_decoder aac_latm_parser"
2356 ac3_decoder_select="ac3_parser ac3dsp bswapdsp fmtconvert mdct"
2357 ac3_fixed_decoder_select="ac3_parser ac3dsp bswapdsp mdct"
2358 ac3_encoder_select="ac3dsp audiodsp mdct me_cmp"
2359 ac3_fixed_encoder_select="ac3dsp audiodsp mdct me_cmp"
2360 adpcm_g722_decoder_select="g722dsp"
2361 adpcm_g722_encoder_select="g722dsp"
2362 aic_decoder_select="golomb idctdsp"
2363 alac_encoder_select="lpc"
2364 als_decoder_select="bswapdsp"
2365 amrnb_decoder_select="lsp"
2366 amrwb_decoder_select="lsp"
2367 amv_decoder_select="sp5x_decoder exif"
2368 amv_encoder_select="aandcttables jpegtables mpegvideoenc"
2369 ape_decoder_select="bswapdsp llauddsp"
2370 apng_decoder_select="zlib"
2371 apng_encoder_select="llvidencdsp zlib"
2372 asv1_decoder_select="blockdsp bswapdsp idctdsp"
2373 asv1_encoder_select="bswapdsp fdctdsp pixblockdsp"
2374 asv2_decoder_select="blockdsp bswapdsp idctdsp"
2375 asv2_encoder_select="bswapdsp fdctdsp pixblockdsp"
2376 atrac1_decoder_select="mdct sinewin"
2377 atrac3_decoder_select="mdct"
2378 atrac3p_decoder_select="mdct sinewin"
2379 avrn_decoder_select="exif jpegtables"
2380 bink_decoder_select="blockdsp hpeldsp"
2381 binkaudio_dct_decoder_select="mdct rdft dct sinewin wma_freqs"
2382 binkaudio_rdft_decoder_select="mdct rdft sinewin wma_freqs"
2383 cavs_decoder_select="blockdsp golomb h264chroma idctdsp qpeldsp videodsp"
2384 cllc_decoder_select="bswapdsp"
2385 comfortnoise_encoder_select="lpc"
2386 cook_decoder_select="audiodsp mdct sinewin"
2387 cscd_decoder_select="lzo"
2388 cscd_decoder_suggest="zlib"
2389 dca_decoder_select="mdct"
2390 dds_decoder_select="texturedsp"
2391 dirac_decoder_select="dirac_parse dwt golomb videodsp mpegvideoenc"
2392 dnxhd_decoder_select="blockdsp idctdsp"
2393 dnxhd_encoder_select="aandcttables blockdsp fdctdsp idctdsp mpegvideoenc pixblockdsp"
2394 dvvideo_decoder_select="dvprofile idctdsp"
2395 dvvideo_encoder_select="dvprofile fdctdsp me_cmp pixblockdsp"
2396 dxa_decoder_select="zlib"
2397 dxv_decoder_select="lzf texturedsp"
2398 eac3_decoder_select="ac3_decoder"
2399 eac3_encoder_select="ac3_encoder"
2400 eamad_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpegvideo"
2401 eatgq_decoder_select="aandcttables"
2402 eatqi_decoder_select="aandcttables blockdsp bswapdsp idctdsp"
2403 exr_decoder_select="zlib"
2404 ffv1_decoder_select="golomb rangecoder"
2405 ffv1_encoder_select="rangecoder"
2406 ffvhuff_decoder_select="huffyuv_decoder"
2407 ffvhuff_encoder_select="huffyuv_encoder"
2408 fic_decoder_select="golomb"
2409 flac_decoder_select="flacdsp golomb"
2410 flac_encoder_select="bswapdsp flacdsp golomb lpc"
2411 flashsv2_decoder_select="zlib"
2412 flashsv2_encoder_select="zlib"
2413 flashsv_decoder_select="zlib"
2414 flashsv_encoder_select="zlib"
2415 flv_decoder_select="h263_decoder"
2416 flv_encoder_select="h263_encoder"
2417 fourxm_decoder_select="blockdsp bswapdsp"
2418 fraps_decoder_select="bswapdsp huffman"
2419 g2m_decoder_select="blockdsp idctdsp jpegtables zlib"
2420 g729_decoder_select="audiodsp"
2421 h261_decoder_select="mpegvideo"
2422 h261_encoder_select="aandcttables mpegvideoenc"
2423 h263_decoder_select="h263_parser h263dsp mpegvideo qpeldsp"
2424 h263_encoder_select="aandcttables h263dsp mpegvideoenc"
2425 h263i_decoder_select="h263_decoder"
2426 h263p_decoder_select="h263_decoder"
2427 h263p_encoder_select="h263_encoder"
2428 h264_decoder_select="cabac golomb h264chroma h264dsp h264parse h264pred h264qpel videodsp"
2429 h264_decoder_suggest="error_resilience"
2430 hap_decoder_select="snappy texturedsp"
2431 hap_encoder_deps="libsnappy"
2432 hap_encoder_select="texturedspenc"
2433 hevc_decoder_select="bswapdsp cabac golomb videodsp"
2434 huffyuv_decoder_select="bswapdsp huffyuvdsp llviddsp"
2435 huffyuv_encoder_select="bswapdsp huffman huffyuvencdsp llvidencdsp"
2436 iac_decoder_select="imc_decoder"
2437 imc_decoder_select="bswapdsp fft mdct sinewin"
2438 indeo3_decoder_select="hpeldsp"
2439 indeo4_decoder_select="ividsp"
2440 indeo5_decoder_select="ividsp"
2441 interplay_video_decoder_select="hpeldsp"
2442 jpegls_decoder_select="golomb mjpeg_decoder"
2443 jpegls_encoder_select="golomb"
2444 jv_decoder_select="blockdsp"
2445 lagarith_decoder_select="llviddsp"
2446 ljpeg_encoder_select="aandcttables idctdsp jpegtables mpegvideoenc"
2447 loco_decoder_select="golomb"
2448 magicyuv_decoder_select="llviddsp"
2449 mdec_decoder_select="blockdsp idctdsp mpegvideo"
2450 metasound_decoder_select="lsp mdct sinewin"
2451 mimic_decoder_select="blockdsp bswapdsp hpeldsp idctdsp"
2452 mjpeg_decoder_select="blockdsp hpeldsp exif idctdsp jpegtables"
2453 mjpeg_encoder_select="aandcttables jpegtables mpegvideoenc"
2454 mjpegb_decoder_select="mjpeg_decoder"
2455 mjpeg_vaapi_encoder_deps="VAEncPictureParameterBufferJPEG"
2456 mjpeg_vaapi_encoder_select="vaapi_encode jpegtables"
2457 mlp_decoder_select="mlp_parser"
2458 motionpixels_decoder_select="bswapdsp"
2459 mp1_decoder_select="mpegaudio"
2460 mp1float_decoder_select="mpegaudio"
2461 mp2_decoder_select="mpegaudio"
2462 mp2float_decoder_select="mpegaudio"
2463 mp3_decoder_select="mpegaudio"
2464 mp3adu_decoder_select="mpegaudio"
2465 mp3adufloat_decoder_select="mpegaudio"
2466 mp3float_decoder_select="mpegaudio"
2467 mp3on4_decoder_select="mpegaudio"
2468 mp3on4float_decoder_select="mpegaudio"
2469 mpc7_decoder_select="bswapdsp mpegaudiodsp"
2470 mpc8_decoder_select="mpegaudiodsp"
2471 mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
2472 mpeg_xvmc_decoder_select="mpeg2video_decoder"
2473 mpegvideo_decoder_select="mpegvideo"
2474 mpeg1video_decoder_select="mpegvideo"
2475 mpeg1video_encoder_select="aandcttables mpegvideoenc h263dsp"
2476 mpeg2video_decoder_select="mpegvideo"
2477 mpeg2video_encoder_select="aandcttables mpegvideoenc h263dsp"
2478 mpeg4_decoder_select="h263_decoder mpeg4video_parser"
2479 mpeg4_encoder_select="h263_encoder"
2480 msa1_decoder_select="mss34dsp"
2481 msmpeg4v1_decoder_select="h263_decoder"
2482 msmpeg4v2_decoder_select="h263_decoder"
2483 msmpeg4v2_encoder_select="h263_encoder"
2484 msmpeg4v3_decoder_select="h263_decoder"
2485 msmpeg4v3_encoder_select="h263_encoder"
2486 mss2_decoder_select="vc1_decoder mpegvideo"
2487 mts2_decoder_select="mss34dsp"
2488 mxpeg_decoder_select="mjpeg_decoder"
2489 nellymoser_decoder_select="mdct sinewin"
2490 nellymoser_encoder_select="audio_frame_queue mdct sinewin"
2491 nuv_decoder_select="idctdsp lzo"
2492 on2avc_decoder_select="mdct"
2493 opus_decoder_deps="swresample"
2494 opus_decoder_select="mdct15"
2495 opus_encoder_select="audio_frame_queue mdct15"
2496 png_decoder_select="zlib"
2497 png_encoder_select="llvidencdsp zlib"
2498 prores_decoder_select="blockdsp idctdsp"
2499 prores_encoder_select="fdctdsp"
2500 qcelp_decoder_select="lsp"
2501 qdm2_decoder_select="mdct rdft mpegaudiodsp"
2502 ra_144_decoder_select="audiodsp"
2503 ra_144_encoder_select="audio_frame_queue lpc audiodsp"
2504 ralf_decoder_select="golomb"
2505 rawvideo_decoder_select="bswapdsp"
2506 rscc_decoder_select="zlib"
2507 rtjpeg_decoder_select="me_cmp"
2508 rv10_decoder_select="h263_decoder"
2509 rv10_encoder_select="h263_encoder"
2510 rv20_decoder_select="h263_decoder"
2511 rv20_encoder_select="h263_encoder"
2512 rv30_decoder_select="golomb h264pred h264qpel mpegvideo rv34dsp"
2513 rv40_decoder_select="golomb h264pred h264qpel mpegvideo rv34dsp"
2514 screenpresso_decoder_select="zlib"
2515 shorten_decoder_select="golomb bswapdsp"
2516 sipr_decoder_select="lsp"
2517 snow_decoder_select="dwt h264qpel hpeldsp me_cmp rangecoder videodsp"
2518 snow_encoder_select="aandcttables dwt h264qpel hpeldsp me_cmp mpegvideoenc rangecoder"
2519 sonic_decoder_select="golomb rangecoder"
2520 sonic_encoder_select="golomb rangecoder"
2521 sonic_ls_encoder_select="golomb rangecoder"
2522 sp5x_decoder_select="mjpeg_decoder"
2523 svq1_decoder_select="hpeldsp"
2524 svq1_encoder_select="aandcttables hpeldsp me_cmp mpegvideoenc"
2525 svq3_decoder_select="golomb h264dsp h264parse h264pred hpeldsp tpeldsp videodsp"
2526 svq3_decoder_suggest="zlib"
2527 tak_decoder_select="audiodsp"
2528 tdsc_decoder_select="zlib mjpeg_decoder"
2529 theora_decoder_select="vp3_decoder"
2530 thp_decoder_select="mjpeg_decoder"
2531 tiff_decoder_suggest="zlib lzma"
2532 tiff_encoder_suggest="zlib"
2533 truehd_decoder_select="mlp_parser"
2534 truemotion2_decoder_select="bswapdsp"
2535 truespeech_decoder_select="bswapdsp"
2536 tscc_decoder_select="zlib"
2537 twinvq_decoder_select="mdct lsp sinewin"
2538 txd_decoder_select="texturedsp"
2539 utvideo_decoder_select="bswapdsp llviddsp"
2540 utvideo_encoder_select="bswapdsp huffman llvidencdsp"
2541 vble_decoder_select="llviddsp"
2542 vc1_decoder_select="blockdsp h263_decoder h264qpel intrax8 mpegvideo vc1dsp"
2543 vc1_qsv_decoder_deps="libmfx"
2544 vc1_qsv_decoder_select="qsvdec vc1_qsv_hwaccel"
2545 vc1image_decoder_select="vc1_decoder"
2546 vorbis_decoder_select="mdct"
2547 vorbis_encoder_select="mdct"
2548 vp3_decoder_select="hpeldsp vp3dsp videodsp"
2549 vp5_decoder_select="h264chroma hpeldsp videodsp vp3dsp vp56dsp"
2550 vp6_decoder_select="h264chroma hpeldsp huffman videodsp vp3dsp vp56dsp"
2551 vp6a_decoder_select="vp6_decoder"
2552 vp6f_decoder_select="vp6_decoder"
2553 vp7_decoder_select="h264pred videodsp vp8dsp"
2554 vp8_decoder_select="h264pred videodsp vp8dsp"
2555 vp9_decoder_select="videodsp vp9_parser"
2556 webp_decoder_select="vp8_decoder exif"
2557 wmalossless_decoder_select="llauddsp"
2558 wmapro_decoder_select="mdct sinewin wma_freqs"
2559 wmav1_decoder_select="mdct sinewin wma_freqs"
2560 wmav1_encoder_select="mdct sinewin wma_freqs"
2561 wmav2_decoder_select="mdct sinewin wma_freqs"
2562 wmav2_encoder_select="mdct sinewin wma_freqs"
2563 wmavoice_decoder_select="lsp rdft dct mdct sinewin"
2564 wmv1_decoder_select="h263_decoder"
2565 wmv1_encoder_select="h263_encoder"
2566 wmv2_decoder_select="blockdsp error_resilience h263_decoder idctdsp intrax8 videodsp wmv2dsp"
2567 wmv2_encoder_select="h263_encoder wmv2dsp"
2568 wmv3_decoder_select="vc1_decoder"
2569 wmv3image_decoder_select="wmv3_decoder"
2570 xma1_decoder_select="wmapro_decoder"
2571 xma2_decoder_select="wmapro_decoder"
2572 zerocodec_decoder_select="zlib"
2573 zlib_decoder_select="zlib"
2574 zlib_encoder_select="zlib"
2575 zmbv_decoder_select="zlib"
2576 zmbv_encoder_select="zlib"
2579 audiotoolbox_deps="AudioToolbox_AudioToolbox_h"
2580 audiotoolbox_extralibs="-framework CoreFoundation -framework AudioToolbox -framework CoreMedia"
2582 # hardware accelerators
2583 crystalhd_deps="libcrystalhd_libcrystalhd_if_h"
2584 cuda_deps_any="dlopen LoadLibrary"
2586 d3d11va_deps="d3d11_h dxva_h ID3D11VideoDecoder ID3D11VideoContext"
2587 dxva2_deps="dxva2api_h DXVA2_ConfigPictureDecode"
2588 dxva2_extralibs="-luser32"
2589 vaapi_deps="va_va_h"
2590 vda_framework_deps="VideoDecodeAcceleration_VDADecoder_h"
2591 vda_framework_extralibs="-framework VideoDecodeAcceleration"
2592 vda_deps="vda_framework pthreads"
2593 vda_extralibs="-framework CoreFoundation -framework QuartzCore"
2594 vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
2595 videotoolbox_hwaccel_deps="videotoolbox pthreads"
2596 videotoolbox_hwaccel_extralibs="-framework QuartzCore"
2597 xvmc_deps="X11_extensions_XvMClib_h"
2599 h263_vaapi_hwaccel_deps="vaapi"
2600 h263_vaapi_hwaccel_select="h263_decoder"
2601 h263_videotoolbox_hwaccel_deps="videotoolbox"
2602 h263_videotoolbox_hwaccel_select="h263_decoder"
2603 h264_crystalhd_decoder_select="crystalhd h264_mp4toannexb_bsf h264_parser"
2604 h264_cuvid_hwaccel_deps="cuda cuvid"
2605 h264_d3d11va_hwaccel_deps="d3d11va"
2606 h264_d3d11va_hwaccel_select="h264_decoder"
2607 h264_dxva2_hwaccel_deps="dxva2"
2608 h264_dxva2_hwaccel_select="h264_decoder"
2609 h264_mediacodec_decoder_deps="mediacodec"
2610 h264_mediacodec_hwaccel_deps="mediacodec"
2611 h264_mediacodec_decoder_select="h264_mp4toannexb_bsf h264_parser"
2612 h264_mmal_decoder_deps="mmal"
2613 h264_mmal_decoder_select="mmal"
2614 h264_mmal_hwaccel_deps="mmal"
2615 h264_omx_encoder_deps="omx"
2616 h264_qsv_hwaccel_deps="libmfx"
2617 h264_vaapi_hwaccel_deps="vaapi"
2618 h264_vaapi_hwaccel_select="h264_decoder"
2619 h264_vda_decoder_deps="vda"
2620 h264_vda_decoder_select="h264_decoder"
2621 h264_vda_hwaccel_deps="vda"
2622 h264_vda_hwaccel_select="h264_decoder"
2623 h264_vda_old_hwaccel_deps="vda"
2624 h264_vda_old_hwaccel_select="h264_decoder"
2625 h264_vdpau_decoder_deps="vdpau"
2626 h264_vdpau_decoder_select="h264_decoder"
2627 h264_vdpau_hwaccel_deps="vdpau"
2628 h264_vdpau_hwaccel_select="h264_decoder"
2629 h264_videotoolbox_hwaccel_deps="videotoolbox"
2630 h264_videotoolbox_hwaccel_select="h264_decoder"
2631 hevc_cuvid_hwaccel_deps="cuda cuvid"
2632 hevc_d3d11va_hwaccel_deps="d3d11va DXVA_PicParams_HEVC"
2633 hevc_d3d11va_hwaccel_select="hevc_decoder"
2634 hevc_mediacodec_decoder_deps="mediacodec"
2635 hevc_mediacodec_hwaccel_deps="mediacodec"
2636 hevc_mediacodec_decoder_select="hevc_mp4toannexb_bsf hevc_parser"
2637 hevc_dxva2_hwaccel_deps="dxva2 DXVA_PicParams_HEVC"
2638 hevc_dxva2_hwaccel_select="hevc_decoder"
2639 hevc_qsv_hwaccel_deps="libmfx"
2640 hevc_vaapi_hwaccel_deps="vaapi VAPictureParameterBufferHEVC"
2641 hevc_vaapi_hwaccel_select="hevc_decoder"
2642 hevc_vdpau_hwaccel_deps="vdpau VdpPictureInfoHEVC"
2643 hevc_vdpau_hwaccel_select="hevc_decoder"
2644 mjpeg_cuvid_hwaccel_deps="cuda cuvid"
2645 mpeg_vdpau_decoder_deps="vdpau"
2646 mpeg_vdpau_decoder_select="mpeg2video_decoder"
2647 mpeg_xvmc_hwaccel_deps="xvmc"
2648 mpeg_xvmc_hwaccel_select="mpeg2video_decoder"
2649 mpeg1_cuvid_hwaccel_deps="cuda cuvid"
2650 mpeg1_vdpau_decoder_deps="vdpau"
2651 mpeg1_vdpau_decoder_select="mpeg1video_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_crystalhd_decoder_select="crystalhd"
2659 mpeg2_cuvid_hwaccel_deps="cuda cuvid"
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_decoder_deps="mmal"
2665 mpeg2_mmal_decoder_select="mmal"
2666 mpeg2_mmal_hwaccel_deps="mmal"
2667 mpeg2_qsv_hwaccel_deps="libmfx"
2668 mpeg2_qsv_hwaccel_select="qsvdec_mpeg2"
2669 mpeg2_vaapi_hwaccel_deps="vaapi"
2670 mpeg2_vaapi_hwaccel_select="mpeg2video_decoder"
2671 mpeg2_vdpau_hwaccel_deps="vdpau"
2672 mpeg2_vdpau_hwaccel_select="mpeg2video_decoder"
2673 mpeg2_videotoolbox_hwaccel_deps="videotoolbox"
2674 mpeg2_videotoolbox_hwaccel_select="mpeg2video_decoder"
2675 mpeg2_xvmc_hwaccel_deps="xvmc"
2676 mpeg2_xvmc_hwaccel_select="mpeg2video_decoder"
2677 mpeg4_crystalhd_decoder_select="crystalhd"
2678 mpeg4_cuvid_hwaccel_deps="cuda cuvid"
2679 mpeg4_mediacodec_decoder_deps="mediacodec"
2680 mpeg4_mediacodec_hwaccel_deps="mediacodec"
2681 mpeg4_mmal_decoder_deps="mmal"
2682 mpeg4_mmal_decoder_select="mmal"
2683 mpeg4_mmal_hwaccel_deps="mmal"
2684 mpeg4_omx_encoder_deps="omx"
2685 mpeg4_vaapi_hwaccel_deps="vaapi"
2686 mpeg4_vaapi_hwaccel_select="mpeg4_decoder"
2687 mpeg4_vdpau_decoder_deps="vdpau"
2688 mpeg4_vdpau_decoder_select="mpeg4_decoder"
2689 mpeg4_vdpau_hwaccel_deps="vdpau"
2690 mpeg4_vdpau_hwaccel_select="mpeg4_decoder"
2691 mpeg4_videotoolbox_hwaccel_deps="videotoolbox"
2692 mpeg4_videotoolbox_hwaccel_select="mpeg4_decoder"
2693 msmpeg4_crystalhd_decoder_select="crystalhd"
2694 vc1_crystalhd_decoder_select="crystalhd"
2695 vc1_cuvid_hwaccel_deps="cuda cuvid"
2696 vc1_d3d11va_hwaccel_deps="d3d11va"
2697 vc1_d3d11va_hwaccel_select="vc1_decoder"
2698 vc1_dxva2_hwaccel_deps="dxva2"
2699 vc1_dxva2_hwaccel_select="vc1_decoder"
2700 vc1_mmal_decoder_deps="mmal"
2701 vc1_mmal_decoder_select="mmal"
2702 vc1_mmal_hwaccel_deps="mmal"
2703 vc1_qsv_hwaccel_deps="libmfx"
2704 vc1_qsv_hwaccel_select="qsvdec_vc1"
2705 vc1_vaapi_hwaccel_deps="vaapi"
2706 vc1_vaapi_hwaccel_select="vc1_decoder"
2707 vc1_vdpau_decoder_deps="vdpau"
2708 vc1_vdpau_decoder_select="vc1_decoder"
2709 vc1_vdpau_hwaccel_deps="vdpau"
2710 vc1_vdpau_hwaccel_select="vc1_decoder"
2711 vp8_cuvid_hwaccel_deps="cuda cuvid"
2712 vp9_cuvid_hwaccel_deps="cuda cuvid"
2713 vp8_mediacodec_decoder_deps="mediacodec"
2714 vp8_mediacodec_hwaccel_deps="mediacodec"
2715 vp9_d3d11va_hwaccel_deps="d3d11va DXVA_PicParams_VP9"
2716 vp9_d3d11va_hwaccel_select="vp9_decoder"
2717 vp9_dxva2_hwaccel_deps="dxva2 DXVA_PicParams_VP9"
2718 vp9_dxva2_hwaccel_select="vp9_decoder"
2719 vp9_mediacodec_decoder_deps="mediacodec"
2720 vp9_mediacodec_hwaccel_deps="mediacodec"
2721 vp9_vaapi_hwaccel_deps="vaapi VADecPictureParameterBufferVP9_bit_depth"
2722 vp9_vaapi_hwaccel_select="vp9_decoder"
2723 wmv3_crystalhd_decoder_select="crystalhd"
2724 wmv3_d3d11va_hwaccel_select="vc1_d3d11va_hwaccel"
2725 wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
2726 wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
2727 wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
2728 wmv3_vdpau_hwaccel_select="vc1_vdpau_hwaccel"
2730 # hardware-accelerated codecs
2731 omx_deps="dlopen pthreads"
2732 omx_extralibs='$ldl'
2735 vaapi_encode_deps="vaapi"
2737 hwupload_cuda_filter_deps="cuda"
2738 scale_npp_filter_deps="cuda libnpp"
2741 nvenc_deps_any="dlopen LoadLibrary"
2742 nvenc_encoder_deps="nvenc"
2743 h264_cuvid_decoder_deps="cuda cuvid"
2744 h264_cuvid_decoder_select="h264_mp4toannexb_bsf h264_cuvid_hwaccel"
2745 h264_nvenc_encoder_deps="nvenc"
2746 h264_qsv_decoder_deps="libmfx"
2747 h264_qsv_decoder_select="h264_mp4toannexb_bsf h264_parser qsvdec h264_qsv_hwaccel"
2748 h264_qsv_encoder_deps="libmfx"
2749 h264_qsv_encoder_select="qsvenc"
2750 h264_vaapi_encoder_deps="VAEncPictureParameterBufferH264"
2751 h264_vaapi_encoder_select="vaapi_encode golomb"
2753 hevc_cuvid_decoder_deps="cuda cuvid"
2754 hevc_cuvid_decoder_select="hevc_mp4toannexb_bsf hevc_cuvid_hwaccel"
2755 hevc_nvenc_encoder_deps="nvenc"
2756 hevc_qsv_decoder_deps="libmfx"
2757 hevc_qsv_decoder_select="hevc_mp4toannexb_bsf hevc_parser qsvdec hevc_qsv_hwaccel"
2758 hevc_qsv_encoder_deps="libmfx"
2759 hevc_qsv_encoder_select="qsvenc"
2760 hevc_vaapi_encoder_deps="VAEncPictureParameterBufferHEVC"
2761 hevc_vaapi_encoder_select="vaapi_encode golomb"
2762 mjpeg_cuvid_decoder_deps="cuda cuvid"
2763 mjpeg_cuvid_decoder_select="mjpeg_cuvid_hwaccel"
2764 mpeg1_cuvid_decoder_deps="cuda cuvid"
2765 mpeg1_cuvid_decoder_select="mpeg1_cuvid_hwaccel"
2766 mpeg2_cuvid_decoder_deps="cuda cuvid"
2767 mpeg2_cuvid_decoder_select="mpeg2_cuvid_hwaccel"
2768 mpeg2_qsv_decoder_deps="libmfx"
2769 mpeg2_qsv_decoder_select="qsvdec mpeg2_qsv_hwaccel"
2770 mpeg2_qsv_encoder_deps="libmfx"
2771 mpeg2_qsv_encoder_select="qsvenc"
2772 mpeg2_vaapi_encoder_deps="VAEncPictureParameterBufferMPEG2"
2773 mpeg2_vaapi_encoder_select="vaapi_encode"
2774 mpeg4_cuvid_decoder_deps="cuda cuvid"
2775 mpeg4_cuvid_decoder_select="mpeg4_cuvid_hwaccel"
2776 nvenc_h264_encoder_deps="nvenc"
2777 nvenc_hevc_encoder_deps="nvenc"
2779 vc1_cuvid_decoder_deps="cuda cuvid"
2780 vc1_cuvid_decoder_select="vc1_cuvid_hwaccel"
2781 vp8_cuvid_decoder_deps="cuda cuvid"
2782 vp8_cuvid_decoder_select="vp8_cuvid_hwaccel"
2783 vp8_vaapi_encoder_deps="VAEncPictureParameterBufferVP8"
2784 vp8_vaapi_encoder_select="vaapi_encode"
2785 vp9_cuvid_decoder_deps="cuda cuvid"
2786 vp9_cuvid_decoder_select="vp9_cuvid_hwaccel"
2789 h264_parser_select="golomb h264dsp h264parse"
2790 hevc_parser_select="golomb"
2791 mpegvideo_parser_select="mpegvideo"
2792 mpeg4video_parser_select="h263dsp mpegvideo qpeldsp"
2793 vc1_parser_select="vc1dsp"
2796 mjpeg2jpeg_bsf_select="jpegtables"
2798 # external libraries
2799 aac_at_decoder_deps="audiotoolbox"
2800 ac3_at_decoder_deps="audiotoolbox"
2801 ac3_at_decoder_select="ac3_parser"
2802 adpcm_ima_qt_at_decoder_deps="audiotoolbox"
2803 alac_at_decoder_deps="audiotoolbox"
2804 amr_nb_at_decoder_deps="audiotoolbox"
2805 avisynth_deps_any="dlopen LoadLibrary"
2806 avisynth_demuxer_deps="avisynth"
2807 avisynth_demuxer_select="riffdec"
2808 eac3_at_decoder_deps="audiotoolbox"
2809 eac3_at_decoder_select="ac3_parser"
2810 gsm_ms_at_decoder_deps="audiotoolbox"
2811 ilbc_at_decoder_deps="audiotoolbox"
2812 mp1_at_decoder_deps="audiotoolbox"
2813 mp2_at_decoder_deps="audiotoolbox"
2814 mp3_at_decoder_deps="audiotoolbox"
2815 pcm_alaw_at_decoder_deps="audiotoolbox"
2816 pcm_mulaw_at_decoder_deps="audiotoolbox"
2817 qdmc_at_decoder_deps="audiotoolbox"
2818 qdm2_at_decoder_deps="audiotoolbox"
2819 aac_at_encoder_deps="audiotoolbox"
2820 aac_at_encoder_select="audio_frame_queue"
2821 alac_at_encoder_deps="audiotoolbox"
2822 alac_at_encoder_select="audio_frame_queue"
2823 ilbc_at_encoder_deps="audiotoolbox"
2824 ilbc_at_encoder_select="audio_frame_queue"
2825 pcm_alaw_at_encoder_deps="audiotoolbox"
2826 pcm_alaw_at_encoder_select="audio_frame_queue"
2827 pcm_mulaw_at_encoder_deps="audiotoolbox"
2828 pcm_mulaw_at_encoder_select="audio_frame_queue"
2829 chromaprint_muxer_deps="chromaprint"
2830 h264_videotoolbox_encoder_deps="videotoolbox_encoder pthreads"
2831 libcelt_decoder_deps="libcelt"
2832 libfdk_aac_decoder_deps="libfdk_aac"
2833 libfdk_aac_encoder_deps="libfdk_aac"
2834 libfdk_aac_encoder_select="audio_frame_queue"
2835 libgme_demuxer_deps="libgme"
2836 libgsm_decoder_deps="libgsm"
2837 libgsm_encoder_deps="libgsm"
2838 libgsm_ms_decoder_deps="libgsm"
2839 libgsm_ms_encoder_deps="libgsm"
2840 libilbc_decoder_deps="libilbc"
2841 libilbc_encoder_deps="libilbc"
2842 libkvazaar_encoder_deps="libkvazaar"
2843 libmodplug_demuxer_deps="libmodplug"
2844 libmp3lame_encoder_deps="libmp3lame"
2845 libmp3lame_encoder_select="audio_frame_queue"
2846 libopencore_amrnb_decoder_deps="libopencore_amrnb"
2847 libopencore_amrnb_encoder_deps="libopencore_amrnb"
2848 libopencore_amrnb_encoder_select="audio_frame_queue"
2849 libopencore_amrwb_decoder_deps="libopencore_amrwb"
2850 libopenh264_decoder_deps="libopenh264"
2851 libopenh264_decoder_select="h264_mp4toannexb_bsf"
2852 libopenh264_encoder_deps="libopenh264"
2853 libopenjpeg_decoder_deps="libopenjpeg"
2854 libopenjpeg_encoder_deps="libopenjpeg"
2855 libopenmpt_demuxer_deps="libopenmpt"
2856 libopus_decoder_deps="libopus"
2857 libopus_encoder_deps="libopus"
2858 libopus_encoder_select="audio_frame_queue"
2859 libschroedinger_decoder_deps="libschroedinger"
2860 libschroedinger_encoder_deps="libschroedinger"
2861 libshine_encoder_deps="libshine"
2862 libshine_encoder_select="audio_frame_queue"
2863 libspeex_decoder_deps="libspeex"
2864 libspeex_encoder_deps="libspeex"
2865 libspeex_encoder_select="audio_frame_queue"
2866 libtheora_encoder_deps="libtheora"
2867 libtwolame_encoder_deps="libtwolame"
2868 libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
2869 libvorbis_decoder_deps="libvorbis"
2870 libvorbis_encoder_deps="libvorbis"
2871 libvorbis_encoder_select="audio_frame_queue"
2872 libvpx_vp8_decoder_deps="libvpx"
2873 libvpx_vp8_encoder_deps="libvpx"
2874 libvpx_vp9_decoder_deps="libvpx"
2875 libvpx_vp9_encoder_deps="libvpx"
2876 libwavpack_encoder_deps="libwavpack"
2877 libwebp_encoder_deps="libwebp"
2878 libwebp_anim_encoder_deps="libwebp"
2879 libx262_encoder_deps="libx262"
2880 libx264_encoder_deps="libx264"
2881 libx264rgb_encoder_deps="libx264 x264_csp_bgr"
2882 libx264rgb_encoder_select="libx264_encoder"
2883 libx265_encoder_deps="libx265"
2884 libxavs_encoder_deps="libxavs"
2885 libxvid_encoder_deps="libxvid"
2886 libzvbi_teletext_decoder_deps="libzvbi"
2887 videotoolbox_deps="VideoToolbox_VideoToolbox_h"
2888 videotoolbox_extralibs="-framework CoreFoundation -framework VideoToolbox -framework CoreMedia -framework CoreVideo"
2889 videotoolbox_encoder_deps="videotoolbox VTCompressionSessionPrepareToEncodeFrames"
2890 videotoolbox_encoder_suggest="vda_framework vt_bt2020"
2891 vt_bt2020_deps="kCVImageBufferColorPrimaries_ITU_R_2020"
2894 ac3_demuxer_select="ac3_parser"
2895 aiff_muxer_select="iso_media"
2896 asf_demuxer_select="riffdec"
2897 asf_o_demuxer_select="riffdec"
2898 asf_muxer_select="riffenc"
2899 asf_stream_muxer_select="asf_muxer"
2900 avi_demuxer_select="iso_media riffdec exif"
2901 avi_muxer_select="riffenc"
2902 caf_demuxer_select="iso_media riffdec"
2903 caf_muxer_select="iso_media"
2904 dash_muxer_select="mp4_muxer"
2905 dirac_demuxer_select="dirac_parser"
2906 dts_demuxer_select="dca_parser"
2907 dtshd_demuxer_select="dca_parser"
2908 dv_demuxer_select="dvprofile"
2909 dv_muxer_select="dvprofile"
2910 dxa_demuxer_select="riffdec"
2911 eac3_demuxer_select="ac3_parser"
2912 f4v_muxer_select="mov_muxer"
2913 fifo_muxer_deps="threads"
2914 flac_demuxer_select="flac_parser"
2915 hds_muxer_select="flv_muxer"
2916 hls_muxer_select="mpegts_muxer"
2917 image2_alias_pix_demuxer_select="image2_demuxer"
2918 image2_brender_pix_demuxer_select="image2_demuxer"
2919 ipod_muxer_select="mov_muxer"
2920 ismv_muxer_select="mov_muxer"
2921 libnut_demuxer_deps="libnut"
2922 libnut_muxer_deps="libnut"
2923 matroska_audio_muxer_select="matroska_muxer"
2924 matroska_demuxer_select="iso_media riffdec"
2925 matroska_demuxer_suggest="bzlib lzo zlib"
2926 matroska_muxer_select="iso_media riffenc"
2927 mmf_muxer_select="riffenc"
2928 mov_demuxer_select="iso_media riffdec"
2929 mov_demuxer_suggest="zlib"
2930 mov_muxer_select="iso_media riffenc rtpenc_chain"
2931 mp3_demuxer_select="mpegaudio_parser"
2932 mp4_muxer_select="mov_muxer"
2933 mpegts_demuxer_select="iso_media"
2934 mpegts_muxer_select="adts_muxer latm_muxer"
2935 mpegtsraw_demuxer_select="mpegts_demuxer"
2936 mxf_d10_muxer_select="mxf_muxer"
2937 mxf_opatom_muxer_select="mxf_muxer"
2938 nut_muxer_select="riffenc"
2939 nuv_demuxer_select="riffdec"
2940 oga_muxer_select="ogg_muxer"
2941 ogg_demuxer_select="dirac_parse"
2942 ogv_muxer_select="ogg_muxer"
2943 opus_muxer_select="ogg_muxer"
2944 psp_muxer_select="mov_muxer"
2945 rtp_demuxer_select="sdp_demuxer"
2946 rtp_muxer_select="golomb"
2947 rtpdec_select="asf_demuxer jpegtables mov_demuxer mpegts_demuxer rm_demuxer rtp_protocol srtp"
2948 rtsp_demuxer_select="http_protocol rtpdec"
2949 rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol rtpenc_chain"
2950 sap_demuxer_select="sdp_demuxer"
2951 sap_muxer_select="rtp_muxer rtp_protocol rtpenc_chain"
2952 sdp_demuxer_select="rtpdec"
2953 smoothstreaming_muxer_select="ismv_muxer"
2954 spdif_muxer_select="aac_parser"
2955 spx_muxer_select="ogg_muxer"
2956 swf_demuxer_suggest="zlib"
2957 tak_demuxer_select="tak_parser"
2958 tg2_muxer_select="mov_muxer"
2959 tgp_muxer_select="mov_muxer"
2960 vobsub_demuxer_select="mpegps_demuxer"
2961 w64_demuxer_select="wav_demuxer"
2962 w64_muxer_select="wav_muxer"
2963 wav_demuxer_select="riffdec"
2964 wav_muxer_select="riffenc"
2965 webm_muxer_select="iso_media riffenc"
2966 webm_dash_manifest_demuxer_select="matroska_demuxer"
2967 wtv_demuxer_select="mpegts_demuxer riffdec"
2968 wtv_muxer_select="mpegts_muxer riffenc"
2969 xmv_demuxer_select="riffdec"
2970 xwma_demuxer_select="riffdec"
2973 alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
2974 alsa_outdev_deps="alsa_asoundlib_h"
2975 avfoundation_indev_extralibs="-framework CoreVideo -framework Foundation -framework AVFoundation -framework CoreMedia"
2976 avfoundation_indev_select="avfoundation"
2977 bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
2978 caca_outdev_deps="libcaca"
2979 decklink_indev_deps="decklink pthreads"
2980 decklink_indev_extralibs="-lstdc++"
2981 decklink_outdev_deps="decklink pthreads"
2982 decklink_outdev_extralibs="-lstdc++"
2983 dshow_indev_deps="IBaseFilter"
2984 dshow_indev_extralibs="-lpsapi -lole32 -lstrmiids -luuid -loleaut32 -lshlwapi"
2985 dv1394_indev_deps="dv1394"
2986 dv1394_indev_select="dv_demuxer"
2987 fbdev_indev_deps="linux_fb_h"
2988 fbdev_outdev_deps="linux_fb_h"
2989 gdigrab_indev_deps="CreateDIBSection"
2990 gdigrab_indev_extralibs="-lgdi32"
2991 gdigrab_indev_select="bmp_decoder"
2992 iec61883_indev_deps="libiec61883"
2993 jack_indev_deps="jack_jack_h"
2994 jack_indev_deps_any="sem_timedwait dispatch_dispatch_h"
2995 lavfi_indev_deps="avfilter"
2996 libcdio_indev_deps="libcdio"
2997 libdc1394_indev_deps="libdc1394"
2998 libv4l2_indev_deps="libv4l2"
2999 openal_indev_deps="openal"
3000 opengl_outdev_deps="opengl"
3001 oss_indev_deps_any="soundcard_h sys_soundcard_h"
3002 oss_outdev_deps_any="soundcard_h sys_soundcard_h"
3003 pulse_indev_deps="libpulse"
3004 pulse_outdev_deps="libpulse"
3005 qtkit_indev_extralibs="-framework QTKit -framework Foundation -framework QuartzCore"
3006 qtkit_indev_select="qtkit"
3007 sdl2_outdev_deps="sdl2"
3008 sndio_indev_deps="sndio_h"
3009 sndio_outdev_deps="sndio_h"
3010 v4l_indev_deps="linux_videodev_h"
3011 v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
3012 v4l2_outdev_deps_any="linux_videodev2_h sys_videoio_h"
3013 vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
3014 vfwcap_indev_extralibs="-lavicap32"
3015 x11grab_indev_deps="x11grab"
3016 x11grab_xcb_indev_deps="libxcb"
3017 xv_outdev_deps="X11_extensions_Xvlib_h XvGetPortAttribute"
3018 xv_outdev_extralibs="-lXv -lX11 -lXext"
3021 async_protocol_deps="threads"
3022 bluray_protocol_deps="libbluray"
3023 ffrtmpcrypt_protocol_deps="!librtmp_protocol"
3024 ffrtmpcrypt_protocol_deps_any="gcrypt gmp openssl"
3025 ffrtmpcrypt_protocol_select="tcp_protocol"
3026 ffrtmphttp_protocol_deps="!librtmp_protocol"
3027 ffrtmphttp_protocol_select="http_protocol"
3028 ftp_protocol_select="tcp_protocol"
3029 gopher_protocol_select="network"
3030 http_protocol_select="tcp_protocol"
3031 httpproxy_protocol_select="tcp_protocol"
3032 https_protocol_select="tls_protocol"
3033 icecast_protocol_select="http_protocol"
3034 librtmp_protocol_deps="librtmp"
3035 librtmpe_protocol_deps="librtmp"
3036 librtmps_protocol_deps="librtmp"
3037 librtmpt_protocol_deps="librtmp"
3038 librtmpte_protocol_deps="librtmp"
3039 libsmbclient_protocol_deps="libsmbclient gplv3"
3040 libssh_protocol_deps="libssh"
3041 mmsh_protocol_select="http_protocol"
3042 mmst_protocol_select="network"
3043 rtmp_protocol_deps="!librtmp_protocol"
3044 rtmp_protocol_select="tcp_protocol"
3045 rtmpe_protocol_select="ffrtmpcrypt_protocol"
3046 rtmps_protocol_deps="!librtmp_protocol"
3047 rtmps_protocol_select="tls_protocol"
3048 rtmpt_protocol_select="ffrtmphttp_protocol"
3049 rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
3050 rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
3051 rtp_protocol_select="udp_protocol"
3052 sctp_protocol_deps="struct_sctp_event_subscribe struct_msghdr_msg_flags"
3053 sctp_protocol_select="network"
3054 srtp_protocol_select="rtp_protocol srtp"
3055 tcp_protocol_select="network"
3056 tls_gnutls_protocol_deps="gnutls !tls_schannel_protocol !tls_securetransport_protocol"
3057 tls_gnutls_protocol_select="tcp_protocol"
3058 tls_openssl_protocol_deps="openssl !tls_schannel_protocol !tls_securetransport_protocol !tls_gnutls_protocol"
3059 tls_openssl_protocol_select="tcp_protocol"
3060 tls_schannel_protocol_deps="schannel"
3061 tls_schannel_protocol_select="tcp_protocol"
3062 tls_securetransport_protocol_deps="securetransport"
3063 tls_securetransport_protocol_select="tcp_protocol"
3064 tls_protocol_deps_any="tls_schannel_protocol tls_securetransport_protocol tls_gnutls_protocol tls_openssl_protocol"
3065 udp_protocol_select="network"
3066 udplite_protocol_select="network"
3067 unix_protocol_deps="sys_un_h"
3068 unix_protocol_select="network"
3071 afftfilt_filter_deps="avcodec"
3072 afftfilt_filter_select="fft"
3073 amovie_filter_deps="avcodec avformat"
3074 aresample_filter_deps="swresample"
3075 ass_filter_deps="libass"
3076 asyncts_filter_deps="avresample"
3077 atempo_filter_deps="avcodec"
3078 atempo_filter_select="rdft"
3079 azmq_filter_deps="libzmq"
3080 blackframe_filter_deps="gpl"
3081 boxblur_filter_deps="gpl"
3082 bs2b_filter_deps="libbs2b"
3083 colormatrix_filter_deps="gpl"
3084 cover_rect_filter_deps="avcodec avformat gpl"
3085 cropdetect_filter_deps="gpl"
3086 deinterlace_qsv_filter_deps="libmfx"
3087 deinterlace_vaapi_filter_deps="vaapi"
3088 delogo_filter_deps="gpl"
3089 deshake_filter_select="pixelutils"
3090 drawtext_filter_deps="libfreetype"
3091 eq_filter_deps="gpl"
3092 fftfilt_filter_deps="avcodec"
3093 fftfilt_filter_select="rdft"
3094 find_rect_filter_deps="avcodec avformat gpl"
3095 firequalizer_filter_deps="avcodec"
3096 firequalizer_filter_select="rdft"
3097 flite_filter_deps="libflite"
3098 framerate_filter_select="pixelutils"
3099 frei0r_filter_deps="frei0r dlopen"
3100 frei0r_src_filter_deps="frei0r dlopen"
3101 fspp_filter_deps="gpl"
3102 geq_filter_deps="gpl"
3103 histeq_filter_deps="gpl"
3104 hqdn3d_filter_deps="gpl"
3105 interlace_filter_deps="gpl"
3106 kerndeint_filter_deps="gpl"
3107 ladspa_filter_deps="ladspa dlopen"
3108 mcdeint_filter_deps="avcodec gpl"
3109 movie_filter_deps="avcodec avformat"
3110 mpdecimate_filter_deps="gpl"
3111 mpdecimate_filter_select="pixelutils"
3112 mptestsrc_filter_deps="gpl"
3113 negate_filter_deps="lut_filter"
3114 nnedi_filter_deps="gpl"
3115 ocr_filter_deps="libtesseract"
3116 ocv_filter_deps="libopencv"
3117 owdenoise_filter_deps="gpl"
3118 pan_filter_deps="swresample"
3119 perspective_filter_deps="gpl"
3120 phase_filter_deps="gpl"
3121 pp7_filter_deps="gpl"
3122 pp_filter_deps="gpl postproc"
3123 pullup_filter_deps="gpl"
3124 removelogo_filter_deps="avcodec avformat swscale"
3125 repeatfields_filter_deps="gpl"
3126 resample_filter_deps="avresample"
3127 rubberband_filter_deps="librubberband"
3128 sab_filter_deps="gpl swscale"
3129 scale2ref_filter_deps="swscale"
3130 scale_filter_deps="swscale"
3131 scale_qsv_filter_deps="libmfx"
3132 select_filter_select="pixelutils"
3133 showcqt_filter_deps="avcodec avformat swscale"
3134 showcqt_filter_select="fft"
3135 showfreqs_filter_deps="avcodec"
3136 showfreqs_filter_select="fft"
3137 showspectrum_filter_deps="avcodec"
3138 showspectrum_filter_select="fft"
3139 showspectrumpic_filter_deps="avcodec"
3140 showspectrumpic_filter_select="fft"
3141 smartblur_filter_deps="gpl swscale"
3142 sofalizer_filter_deps="netcdf avcodec"
3143 sofalizer_filter_select="fft"
3144 spectrumsynth_filter_deps="avcodec"
3145 spectrumsynth_filter_select="fft"
3146 spp_filter_deps="gpl avcodec"
3147 spp_filter_select="fft idctdsp fdctdsp me_cmp pixblockdsp"
3148 stereo3d_filter_deps="gpl"
3149 subtitles_filter_deps="avformat avcodec libass"
3150 super2xsai_filter_deps="gpl"
3151 pixfmts_super2xsai_test_deps="super2xsai_filter"
3152 tinterlace_filter_deps="gpl"
3153 tinterlace_merge_test_deps="tinterlace_filter"
3154 tinterlace_pad_test_deps="tinterlace_filter"
3155 uspp_filter_deps="gpl avcodec"
3156 vaguedenoiser_filter_deps="gpl"
3157 vidstabdetect_filter_deps="libvidstab"
3158 vidstabtransform_filter_deps="libvidstab"
3159 zmq_filter_deps="libzmq"
3160 zoompan_filter_deps="swscale"
3161 zscale_filter_deps="libzimg"
3162 scale_vaapi_filter_deps="vaapi VAProcPipelineParameterBuffer"
3165 avio_dir_cmd_deps="avformat avutil"
3166 avio_reading_deps="avformat avcodec avutil"
3167 decoding_encoding_example_deps="avcodec avformat avutil"
3168 demuxing_decoding_example_deps="avcodec avformat avutil"
3169 extract_mvs_example_deps="avcodec avformat avutil"
3170 filter_audio_example_deps="avfilter avutil"
3171 filtering_audio_example_deps="avfilter avcodec avformat avutil"
3172 filtering_video_example_deps="avfilter avcodec avformat avutil"
3173 http_multiclient_example_deps="avformat avutil fork"
3174 metadata_example_deps="avformat avutil"
3175 muxing_example_deps="avcodec avformat avutil swscale"
3176 qsvdec_example_deps="avcodec avutil libmfx h264_qsv_decoder vaapi_x11"
3177 remuxing_example_deps="avcodec avformat avutil"
3178 resampling_audio_example_deps="avutil swresample"
3179 scaling_video_example_deps="avutil swscale"
3180 transcode_aac_example_deps="avcodec avformat swresample"
3181 transcoding_example_deps="avfilter avcodec avformat avutil"
3183 # libraries, in linking order
3184 avcodec_deps="avutil"
3185 avdevice_deps="avformat avcodec avutil"
3186 avfilter_deps="avutil"
3187 avformat_deps="avcodec avutil"
3188 avresample_deps="avutil"
3189 postproc_deps="avutil gpl"
3190 swresample_deps="avutil"
3191 swscale_deps="avutil"
3194 ffmpeg_deps="avcodec avfilter avformat swresample"
3195 ffmpeg_select="aformat_filter anull_filter atrim_filter format_filter
3198 ffplay_deps="avcodec avformat swscale swresample sdl2"
3199 ffplay_libs='$sdl2_libs'
3200 ffplay_select="rdft crop_filter transpose_filter hflip_filter vflip_filter rotate_filter"
3201 ffprobe_deps="avcodec avformat"
3202 ffserver_deps="avformat fork sarestart"
3203 ffserver_select="ffm_muxer rtp_protocol rtsp_demuxer"
3206 podpages_deps="perl"
3207 manpages_deps="perl pod2man"
3208 htmlpages_deps="perl"
3209 htmlpages_deps_any="makeinfo_html texi2html"
3210 txtpages_deps="perl makeinfo"
3211 doc_deps_any="manpages htmlpages podpages txtpages"
3213 # default parameters
3215 logfile="config.log"
3217 # installation paths
3218 prefix_default="/usr/local"
3219 bindir_default='${prefix}/bin'
3220 datadir_default='${prefix}/share/ffmpeg'
3221 docdir_default='${prefix}/share/doc/ffmpeg'
3222 incdir_default='${prefix}/include'
3223 libdir_default='${prefix}/lib'
3224 mandir_default='${prefix}/share/man'
3230 host_cc_default="gcc"
3232 doxygen_default="doxygen"
3234 ln_s_default="ln -s -f"
3237 pkg_config_default=pkg-config
3238 ranlib_default="ranlib"
3239 strip_default="strip"
3240 version_script='--version-script'
3241 yasmexe_default="yasm"
3242 windres_default="windres"
3245 target_os_default=$(tolower $(uname -s))
3246 host_os=$target_os_default
3249 if test "$target_os_default" = aix; then
3250 arch_default=$(uname -p)
3251 strip_default="strip -X32_64"
3253 arch_default=$(uname -m)
3258 # configurable options
3259 enable $PROGRAM_LIST
3260 enable $DOCUMENT_LIST
3261 enable $EXAMPLE_LIST
3262 enable $(filter_out avresample $LIBRARY_LIST)
3268 enable faan faandct faanidct
3269 enable optimizations
3270 enable runtime_cpudetect
3271 enable safe_bitstream_reader
3273 enable swscale_alpha
3274 enable valgrind_backtrace
3276 sws_max_filter_size_default=256
3277 set_default sws_max_filter_size
3280 SHFLAGS='-shared -Wl,-soname,$$(@F)'
3283 FULLNAME='$(NAME)$(BUILDSUF)'
3284 LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
3287 SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
3288 SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
3289 SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
3290 LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
3291 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
3292 SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
3293 VERSION_SCRIPT_POSTPROCESS_CMD="cat"
3318 host_cflags_filter=echo
3319 host_ldflags_filter=echo
3321 target_path='$(CURDIR)'
3323 # since the object filename is not given with the -MM flag, the compiler
3324 # is only able to print the basename, and we must add the path ourselves
3325 DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>/dev/null | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(@F),$(@D)/$(@F)," > $(@:.o=.d)'
3329 if test -f configure; then
3332 source_path=$(cd $(dirname "$0"); pwd)
3333 case "$source_path" in
3334 *[[:blank:]]*) die "Out of tree builds are impossible with whitespace in source path." ;;
3336 test -e "$source_path/config.h" &&
3337 die "Out of tree builds are impossible with config.h in source dir."
3344 FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
3350 file=$source_path/$3
3351 sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
3354 ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
3355 DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
3356 HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
3357 PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
3358 MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
3359 DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
3360 OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
3361 INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
3362 FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
3364 find_things_extern(){
3367 file=$source_path/$3
3368 sed -n "s/^[^#]*extern.*$pattern *ff_\([^ ]*\)_$thing;/\1_$thing/p" "$file"
3371 BSF_LIST=$(find_things_extern bsf AVBitStreamFilter libavcodec/bitstream_filters.c)
3372 PROTOCOL_LIST=$(find_things_extern protocol URLProtocol libavformat/protocols.c)
3388 for n in $COMPONENT_LIST; do
3389 v=$(toupper ${n%s})_LIST
3391 eval ${n}_if_any="\$$v"
3394 enable $ARCH_EXT_LIST
3397 echo "Unknown option \"$1\"."
3398 echo "See $0 --help for available options."
3402 print_in_columns() {
3403 cols=$(expr $ncols / 24)
3404 cat | tr ' ' '\n' | sort | pr -r "-$cols" -w $ncols -t
3410 echo $* | sed s/$suffix//g | print_in_columns
3422 is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
3423 echo "prob ${prob:-0.5}"
3431 random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
3432 $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
3441 --extra-ldexeflags=*)
3442 add_ldexeflags $optval
3444 --extra-ldlibflags=*)
3445 add_ldlibflags $optval
3448 add_extralibs $optval
3451 disable $INDEV_LIST $OUTDEV_LIST
3454 debuglevel="$optval"
3457 disable $PROGRAM_LIST
3459 --disable-everything)
3460 map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
3463 map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
3464 disable $LIBRARY_LIST $PROGRAM_LIST doc
3467 --enable-random|--disable-random)
3468 action=${opt%%-random}
3469 do_random ${action#--} $COMPONENT_LIST
3471 --enable-random=*|--disable-random=*)
3472 action=${opt%%-random=*}
3473 do_random ${action#--} $optval
3475 --enable-*=*|--disable-*=*)
3476 eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
3477 is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
3478 eval list=\$$(toupper $thing)_LIST
3479 name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
3480 list=$(filter "$name" $list)
3481 [ "$list" = "" ] && warn "Option $opt did not match anything"
3484 --enable-?*|--disable-?*)
3485 eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
3486 if is_in $option $COMPONENT_LIST; then
3487 test $action = disable && action=unset
3488 eval $action \$$(toupper ${option%s})_LIST
3489 elif is_in $option $CMDLINE_SELECT; then
3496 NAME="${opt#--list-}"
3497 is_in $NAME $COMPONENT_LIST || die_unknown $opt
3499 eval show_list $NAME \$$(toupper $NAME)_LIST
3501 --help|-h) show_help
3503 --fatal-warnings) enable fatal_warnings
3506 optname="${opt%%=*}"
3507 optname="${optname#--}"
3508 optname=$(echo "$optname" | sed 's/-/_/g')
3509 if is_in $optname $CMDLINE_SET; then
3510 eval $optname='$optval'
3511 elif is_in $optname $CMDLINE_APPEND; then
3512 append $optname "$optval"
3524 # Mark specifically enabled, but normally autodetected libraries as requested.
3525 for lib in $AUTODETECT_LIBS; do
3526 enabled $lib && request $lib
3529 # Enable platform codecs by default.
3530 enable_weak audiotoolbox
3532 # Enable hwaccels by default.
3533 enable_weak d3d11va dxva2 vaapi vda vdpau videotoolbox_hwaccel xvmc
3536 enable_weak cuda cuvid nvenc vda_framework videotoolbox videotoolbox_encoder
3538 disabled logging && logfile=/dev/null
3540 # Disable all the library-specific components if the library itself
3541 # is disabled, see AVCODEC_LIST and following _LIST variables.
3543 disable_components(){
3544 disabled ${1} && disable $(
3545 eval components="\$$(toupper ${1})_COMPONENTS"
3546 map 'eval echo \${$(toupper ${v%s})_LIST}' $components
3550 map 'disable_components $v' $LIBRARY_LIST
3552 echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
3555 test -n "$valgrind" && toolchain="valgrind-memcheck"
3557 case "$toolchain" in
3559 cc_default="${toolchain%-asan}"
3560 add_cflags -fsanitize=address
3561 add_ldflags -fsanitize=address
3564 cc_default="${toolchain%-msan}"
3565 add_cflags -fsanitize=memory -fsanitize-memory-track-origins
3566 add_ldflags -fsanitize=memory
3569 cc_default="${toolchain%-tsan}"
3570 add_cflags -fsanitize=thread -fPIE
3571 add_ldflags -fsanitize=thread -pie
3572 case "$toolchain" in
3580 cc_default="${toolchain%-usan}"
3581 add_cflags -fsanitize=undefined
3582 add_ldflags -fsanitize=undefined
3585 target_exec_default="valgrind"
3586 case "$toolchain" in
3588 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"
3591 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"
3596 # Check whether the current MSVC version needs the C99 converter.
3597 # From MSVC 2013 (compiler major version 18) onwards, it does actually
3598 # support enough of C99 to build ffmpeg. Default to the new
3599 # behaviour if the regexp was unable to match anything, since this
3600 # successfully parses the version number of existing supported
3601 # versions that require the converter (MSVC 2010 and 2012).
3602 cl_major_ver=$(cl 2>&1 | sed -n 's/.*Version \([[:digit:]]\{1,\}\)\..*/\1/p')
3603 if [ -z "$cl_major_ver" ] || [ $cl_major_ver -ge 18 ]; then
3606 cc_default="c99wrap cl"
3608 ld_default="$source_path/compat/windows/mslink"
3609 nm_default="dumpbin -symbols"
3616 target_os_default="win32"
3617 # Use a relative path for TMPDIR. This makes sure all the
3618 # ffconf temp files are written with a relative path, avoiding
3619 # issues with msys/win32 path conversion for MSVC parameters
3620 # such as -Fo<file> or -out:<file>.
3626 nm_default="dumpbin -symbols"
3628 target_os_default="win32"
3632 add_cflags -fprofile-arcs -ftest-coverage
3633 add_ldflags -fprofile-arcs -ftest-coverage
3636 add_cflags -fprofile-arcs -ftest-coverage
3637 add_ldflags --coverage
3640 add_cppflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
3641 add_cflags -fno-strict-overflow -fstack-protector-all
3642 add_ldflags -Wl,-z,relro -Wl,-z,now
3644 add_ldexeflags -fPIE -pie
3647 die "Unknown toolchain $toolchain"
3651 test -n "$cross_prefix" && enable cross_compile
3653 if enabled cross_compile; then
3654 test -n "$arch" && test -n "$target_os" ||
3655 die "Must specify target arch and OS when cross-compiling"
3658 ar_default="${cross_prefix}${ar_default}"
3659 cc_default="${cross_prefix}${cc_default}"
3660 cxx_default="${cross_prefix}${cxx_default}"
3661 nm_default="${cross_prefix}${nm_default}"
3662 pkg_config_default="${cross_prefix}${pkg_config_default}"
3663 if ${cross_prefix}${ranlib_default} 2>&1 | grep -q "\-D "; then
3664 ranlib_default="${cross_prefix}${ranlib_default} -D"
3666 ranlib_default="${cross_prefix}${ranlib_default}"
3668 strip_default="${cross_prefix}${strip_default}"
3669 windres_default="${cross_prefix}${windres_default}"
3671 sysinclude_default="${sysroot}/usr/include"
3673 set_default arch cc cxx doxygen pkg_config ranlib strip sysinclude \
3674 target_exec target_os yasmexe
3675 enabled cross_compile || host_cc_default=$cc
3678 pkg_config_fail_message=""
3679 if ! $pkg_config --version >/dev/null 2>&1; then
3680 warn "$pkg_config not found, library detection may fail."
3682 elif is_in -static $cc $LDFLAGS && ! is_in --static $pkg_config $pkg_config_flags; then
3683 pkg_config_fail_message="
3684 Note: When building a static binary, add --pkg-config-flags=\"--static\"."
3687 if test $doxygen != $doxygen_default && \
3688 ! $doxygen --version >/dev/null 2>&1; then
3689 warn "Specified doxygen \"$doxygen\" not found, API documentation will fail to build."
3694 mingw32*|mingw64*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
3698 EXESUF=$(exesuf $target_os)
3699 HOSTEXESUF=$(exesuf $host_os)
3701 # set temporary file name
3702 : ${TMPDIR:=$TEMPDIR}
3706 if [ -n "$tempprefix" ] ; then
3708 echo $tempprefix.${HOSTNAME}.${UID}
3710 elif ! check_cmd mktemp -u XXXXXX; then
3711 # simple replacement for missing mktemp
3712 # NOT SAFE FOR GENERAL USE
3714 echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
3719 tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
3720 (set -C; exec > $tmp) 2>/dev/null ||
3721 die "Unable to create temporary file in $TMPDIR."
3722 append TMPFILES $tmp
3726 trap 'rm -f -- $TMPFILES' EXIT
3731 tmpfile TMPE $EXESUF
3743 # make sure we can execute files in $TMPDIR
3744 cat > $TMPSH 2>> $logfile <<EOF
3747 chmod +x $TMPSH >> $logfile 2>&1
3748 if ! $TMPSH >> $logfile 2>&1; then
3750 Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
3751 variable to another directory and make sure that it is not mounted noexec.
3753 die "Sanity test failed."
3759 # Filter out MSVC cl.exe options from cflags that shouldn't
3760 # be passed to gas-preprocessor
3770 -std=c99) echo -c99 ;;
3771 -mcpu=*) echo -arch ${flag#*=} ;;
3772 -mieee) echo -ieee ;;
3773 -O*|-fast) echo $flag ;;
3774 -fno-math-errno) echo -assume nomath_errno ;;
3776 -Wall) echo -msg_enable level2 ;;
3777 -Wno-pointer-sign) echo -msg_disable ptrmismatch1 ;;
3778 -Wl,*) echo $flag ;;
3788 -Wno-switch) echo -Wno-switch-enum ;;
3789 -Wno-format-zero-length) ;;
3790 -Wdisabled-optimization) ;;
3791 -Wno-pointer-sign) echo -Wno-other ;;
3797 msvc_common_flags(){
3800 # In addition to specifying certain flags under the compiler
3801 # specific filters, they must be specified here as well or else the
3802 # generic catch all at the bottom will print the original flag.
3806 -fomit-frame-pointer) ;;
3810 -fno-signed-zeros) ;;
3814 -lz) echo zlib.lib ;;
3815 -lavifil32) echo vfw32.lib ;;
3816 -lavicap32) echo vfw32.lib user32.lib ;;
3817 -lx264) echo libx264.lib ;;
3818 -l*) echo ${flag#-l}.lib ;;
3819 -LARGEADDRESSAWARE) echo $flag ;;
3820 -L*) echo -libpath:${flag#-L} ;;
3827 msvc_common_flags "$@"
3830 -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
3831 -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
3832 -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
3834 -wd4273 -wd4554 -wd4701 ;;
3840 msvc_common_flags "$@"
3843 # Despite what Intel's documentation says -Wall, which is supported
3844 # on Windows, does enable remarks so disable them here.
3845 -Wall) echo $flag -Qdiag-disable:remark ;;
3846 -std=c99) echo -Qstd=c99 ;;
3864 -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
3865 -fomit-frame-pointer) echo -Mnoframe ;;
3876 case "${flag#*=}" in
3877 native) echo -xtarget=native ;;
3878 v9|niagara) echo -xarch=sparc ;;
3879 ultrasparc) echo -xarch=sparcvis ;;
3880 ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
3881 i586|pentium) echo -xchip=pentium ;;
3882 i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
3883 pentium3*|c3-2) echo -xtarget=pentium3 ;;
3884 pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
3885 pentium4*) echo -xtarget=pentium4 ;;
3886 prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
3887 *-sse3) echo -xarch=sse3 ;;
3888 core2) echo -xarch=ssse3 -xchip=core2 ;;
3889 bonnell) echo -xarch=ssse3 ;;
3890 corei7|nehalem) echo -xtarget=nehalem ;;
3891 westmere) echo -xtarget=westmere ;;
3892 silvermont) echo -xarch=sse4_2 ;;
3893 corei7-avx|sandybridge) echo -xtarget=sandybridge ;;
3894 core-avx*|ivybridge|haswell|broadwell|skylake*|knl)
3896 amdfam10|barcelona) echo -xtarget=barcelona ;;
3897 btver1) echo -xarch=amdsse4a ;;
3898 btver2|bdver*|znver*) echo -xarch=avx ;;
3899 athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
3900 k8|opteron|athlon64|athlon-fx)
3901 echo -xarch=sse2a ;;
3902 athlon*) echo -xarch=pentium_proa ;;
3905 -std=c99) echo -xc99 ;;
3906 -fomit-frame-pointer) echo -xregs=frameptr ;;
3907 -fPIC) echo -KPIC -xcode=pic32 ;;
3908 -W*,*) echo $flag ;;
3909 -f*-*|-W*|-mimpure-text) ;;
3920 case "${flag#*=}" in
3921 armv7-a|cortex-a*) echo -mv=7a8 ;;
3922 armv7-r|cortex-r*) echo -mv=7r4 ;;
3923 armv7-m|cortex-m*) echo -mv=7m3 ;;
3924 armv6*|arm11*) echo -mv=6 ;;
3925 armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
3927 armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
3930 -mfpu=neon) echo --float_support=vfpv3 --neon ;;
3931 -mfpu=vfp) echo --float_support=vfpv2 ;;
3932 -mfpu=vfpv3) echo --float_support=vfpv3 ;;
3933 -mfpu=vfpv3-d16) echo --float_support=vfpv3d16 ;;
3934 -msoft-float) echo --float_support=vfplib ;;
3935 -O[0-3]|-mf=*) echo $flag ;;
3937 -pds=*) echo $flag ;;
3938 -D*|-I*) echo $flag ;;
3939 --gcc|--abi=*) echo $flag ;;
3950 unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
3951 unset _ld_o _ldflags _ld_lib _ld_path
3952 unset _depflags _DEPCMD _DEPFLAGS
3955 if $_cc --version 2>&1 | grep -q '^GNU assembler'; then
3956 true # no-op to avoid reading stdin in following checks
3957 elif $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
3959 gcc_extra_ver=$(expr "$($_cc --version 2>/dev/null | head -n1)" : '.*\((.*)\)')
3960 _ident="llvm-gcc $($_cc -dumpversion 2>/dev/null) $gcc_extra_ver"
3961 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3964 elif $_cc -v 2>&1 | grep -qi ^gcc; then
3966 gcc_version=$($_cc --version | head -n1)
3967 gcc_basever=$($_cc -dumpversion)
3968 gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
3969 gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
3970 _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
3971 case $gcc_basever in
3974 *) _depflags='-MMD -MF $(@:.o=.d) -MT $@' ;;
3976 if [ "$first" = true ]; then
3977 case $gcc_basever in
3979 warn "gcc 4.2 is outdated and may miscompile FFmpeg. Please use a newer compiler." ;;
3984 elif $_cc --version 2>/dev/null | grep -q ^icc; then
3986 _ident=$($_cc --version | head -n1)
3991 _flags_filter=icc_flags
3992 elif $_cc -v 2>&1 | grep -q xlc; then
3994 _ident=$($_cc -qversion 2>/dev/null | head -n1)
3996 _cflags_size='-O5 -qcompact'
3997 elif $_cc -V 2>/dev/null | grep -q Compaq; then
3999 _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
4001 _cflags_speed='-fast'
4003 _flags_filter=ccc_flags
4004 elif $_cc --vsn 2>/dev/null | grep -Eq "ARM (C/C\+\+ )?Compiler"; then
4005 test -d "$sysroot" || die "No valid sysroot specified."
4007 _ident=$($_cc --vsn | grep -i build | head -n1 | sed 's/.*: //')
4008 armcc_conf="$PWD/armcc.conf"
4009 $_cc --arm_linux_configure \
4010 --arm_linux_config_file="$armcc_conf" \
4011 --configure_sysroot="$sysroot" \
4012 --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
4013 die "Error creating armcc configuration file."
4014 $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
4015 _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
4016 as_default="${cross_prefix}gcc"
4020 elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
4022 _ident=$($_cc -version | head -n1 | tr -s ' ')
4023 _flags='--gcc --abi=eabi -me'
4026 _depflags='-ppa -ppd=$(@:.o=.d)'
4027 _cflags_speed='-O3 -mf=5'
4028 _cflags_size='-O3 -mf=2'
4029 _flags_filter=tms470_flags
4030 elif $_cc -v 2>&1 | grep -q clang; then
4032 _ident=$($_cc --version 2>/dev/null | head -n1)
4033 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
4036 elif $_cc -V 2>&1 | grep -q Sun; then
4038 _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
4039 _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
4040 _DEPFLAGS='-xM1 -xc99'
4043 _cflags_size='-O5 -xspace'
4044 _flags_filter=suncc_flags
4045 elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
4047 _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
4048 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
4051 _flags_filter='filter_out -Wdisabled-optimization'
4052 elif $_cc -v 2>&1 | grep -q Open64; then
4054 _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
4055 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
4058 _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
4059 elif $_cc -V 2>&1 | grep -q Portland; then
4061 _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
4062 opt_common='-alias=ansi -Mdse -Mlre -Mpre'
4063 _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
4064 _cflags_size="-O2 -Munroll=c:1 $opt_common"
4066 _flags_filter=pgi_flags
4067 elif $_cc 2>&1 | grep -q 'Microsoft.*ARM.*Assembler'; then
4069 _ident=$($_cc | head -n1)
4070 # 4509: "This form of conditional instruction is deprecated"
4071 _flags="-nologo -ignore 4509"
4072 _flags_filter=armasm_flags
4073 elif $_cc 2>&1 | grep -q Intel; then
4075 _ident=$($_cc 2>&1 | head -n1)
4076 _depflags='-QMMD -QMF$(@:.o=.d) -QMT$@'
4077 # Not only is O3 broken on 13.x+ but it is slower on all previous
4078 # versions (tested) as well.
4080 _cflags_size="-O1 -Oi" # -O1 without -Oi miscompiles stuff
4081 if $_cc 2>&1 | grep -q Linker; then
4088 _flags_filter=icl_flags
4090 _ld_path='-libpath:'
4091 # -Qdiag-error to make icl error when seeing certain unknown arguments
4092 _flags='-nologo -Qdiag-error:4044,10157'
4093 # -Qvec- -Qsimd- to prevent miscompilation, -GS, fp:precise for consistency
4094 # with MSVC which enables it by default.
4095 _cflags='-D_USE_MATH_DEFINES -Qms0 -Qvec- -Qsimd- -GS -fp:precise'
4097 elif $_cc -nologo- 2>&1 | grep -q Microsoft; then
4099 _ident=$($_cc 2>&1 | head -n1)
4100 _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
4101 _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
4104 if $_cc -nologo- 2>&1 | grep -q Linker; then
4111 _flags_filter=msvc_flags
4113 _ld_path='-libpath:'
4115 _cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_WARNINGS'
4117 elif $_cc --version 2>/dev/null | grep -q ^cparser; then
4119 _ident=$($_cc --version | head -n1)
4123 _flags_filter=cparser_flags
4126 eval ${pfx}_type=\$_type
4127 eval ${pfx}_ident=\$_ident
4131 eval ${1}_C=\${_cc_c-\${${1}_C}}
4132 eval ${1}_E=\${_cc_e-\${${1}_E}}
4133 eval ${1}_O=\${_cc_o-\${${1}_O}}
4135 if [ -n "$_depflags" ]; then
4136 eval ${1}_DEPFLAGS=\$_depflags
4138 eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
4139 eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
4140 eval DEP${1}FLAGS=\$_flags
4144 probe_cc cc "$cc" "true"
4145 cflags_filter=$_flags_filter
4146 cflags_speed=$_cflags_speed
4147 cflags_size=$_cflags_size
4148 cflags_noopt=$_cflags_noopt
4149 add_cflags $_flags $_cflags
4150 cc_ldflags=$_ldflags
4153 probe_cc hostcc "$host_cc"
4154 host_cflags_filter=$_flags_filter
4155 add_host_cflags $_flags $_cflags
4158 test -n "$cc_type" && enable $cc_type ||
4159 warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
4161 : ${as_default:=$cc}
4162 : ${objcc_default:=$cc}
4163 : ${dep_cc_default:=$cc}
4164 : ${ld_default:=$cc}
4165 : ${host_ld_default:=$host_cc}
4166 set_default ar as objcc dep_cc ld ln_s host_ld windres
4169 asflags_filter=$_flags_filter
4170 add_asflags $_flags $_cflags
4173 probe_cc objcc "$objcc"
4174 objcflags_filter=$_flags_filter
4175 add_objcflags $_flags $_cflags
4179 ldflags_filter=$_flags_filter
4180 add_ldflags $_flags $_ldflags
4181 test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
4183 LD_LIB=${_ld_lib-$LD_LIB}
4184 LD_PATH=${_ld_path-$LD_PATH}
4186 probe_cc hostld "$host_ld"
4187 host_ldflags_filter=$_flags_filter
4188 add_host_ldflags $_flags $_ldflags
4189 HOSTLD_O=${_ld_o-$HOSTLD_O}
4191 if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
4192 probe_cc depcc "$dep_cc"
4193 CCDEP=${_DEPCMD:-$DEPCMD}
4194 CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
4198 if $ar 2>&1 | grep -q Microsoft; then
4201 elif $ar 2>&1 | grep -q 'Texas Instruments'; then
4204 elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
4205 arflags='-Xany -r -c'
4207 elif $ar 2>&1 | grep -q "\[D\] "; then
4215 add_cflags $extra_cflags
4216 add_cxxflags $extra_cxxflags
4217 add_objcflags $extra_objcflags
4218 add_asflags $extra_cflags
4220 if test -n "$sysroot"; then
4223 add_cppflags --sysroot="$sysroot"
4224 add_ldflags --sysroot="$sysroot"
4225 # On Darwin --sysroot may be ignored, -isysroot always affects headers and linking
4226 add_cppflags -isysroot "$sysroot"
4227 add_ldflags -isysroot "$sysroot"
4230 add_cppflags -I"$sysinclude"
4231 add_ldflags --sysroot="$sysroot"
4236 if test "$cpu" = host; then
4237 enabled cross_compile &&
4238 die "--cpu=host makes no sense when cross-compiling."
4243 $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
4245 s/.*$1=\\([^ ]*\\).*/\\1/
4250 cpu=$(check_native -march || check_native -mcpu)
4254 $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
4255 sed -n "/cc1.*-target-cpu /{
4256 s/.*-target-cpu \\([^ ]*\\).*/\\1/
4261 cpu=$(check_native -march)
4265 test "${cpu:-host}" = host &&
4266 die "--cpu=host not supported with compiler $cc"
4269 # Deal with common $arch aliases
4293 "Power Macintosh"|ppc*|powerpc*)
4308 i[3-6]86*|i86pc|BePC|x86pc|x86_64|x86_32|amd64)
4313 is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
4316 # Add processor-specific flags
4317 if enabled aarch64; then
4321 cpuflags="-march=$cpu"
4324 cpuflags="-mcpu=$cpu"
4328 elif enabled alpha; then
4330 cpuflags="-mcpu=$cpu"
4332 elif enabled arm; then
4335 check_cpp_condition stddef.h \
4336 "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
4341 if check_arm_arch 4; then echo armv4
4342 elif check_arm_arch 4T; then echo armv4t
4343 elif check_arm_arch 5; then echo armv5
4344 elif check_arm_arch 5E; then echo armv5e
4345 elif check_arm_arch 5T; then echo armv5t
4346 elif check_arm_arch 5TE; then echo armv5te
4347 elif check_arm_arch 5TEJ; then echo armv5te
4348 elif check_arm_arch 6; then echo armv6
4349 elif check_arm_arch 6J; then echo armv6j
4350 elif check_arm_arch 6K; then echo armv6k
4351 elif check_arm_arch 6Z; then echo armv6z
4352 elif check_arm_arch 6ZK; then echo armv6zk
4353 elif check_arm_arch 6T2; then echo armv6t2
4354 elif check_arm_arch 7; then echo armv7
4355 elif check_arm_arch 7A 7_A; then echo armv7-a
4356 elif check_arm_arch 7S; then echo armv7-a
4357 elif check_arm_arch 7R 7_R; then echo armv7-r
4358 elif check_arm_arch 7M 7_M; then echo armv7-m
4359 elif check_arm_arch 7EM 7E_M; then echo armv7-m
4360 elif check_arm_arch 8A 8_A; then echo armv8-a
4364 [ "$cpu" = generic ] && cpu=$(probe_arm_arch)
4368 cpuflags="-march=$cpu"
4369 subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
4372 cpuflags="-mcpu=$cpu"
4374 cortex-a*) subarch=armv7a ;;
4375 cortex-r*) subarch=armv7r ;;
4376 cortex-m*) enable thumb; subarch=armv7m ;;
4377 arm11*) subarch=armv6 ;;
4378 arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
4379 armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
4380 *) subarch=$(probe_arm_arch) ;;
4386 armv5t*) enable fast_clz ;;
4389 disabled fast_unaligned || enable fast_unaligned
4393 elif enabled avr32; then
4398 cpuflags="-mpart=$cpu"
4402 cpuflags="-march=$cpu"
4406 cpuflags="-mcpu=$cpu"
4410 cpuflags="-march=$cpu"
4414 elif enabled bfin; then
4416 cpuflags="-mcpu=$cpu"
4418 elif enabled mips; then
4420 cpuflags="-march=$cpu"
4422 if [ "$cpu" != "generic" ]; then
4432 24kc|24kf*|24kec|34kc|1004kc|24kef*|34kf*|1004kf*|74kc|74kf)
4443 enable local_aligned_8 local_aligned_16 local_aligned_32
4444 enable simd_align_16
4448 enable fast_unaligned
4449 disable aligned_stack
4455 cpuflags="-march=loongson3a -mhard-float -fno-expensive-optimizations"
4458 cpuflags="-march=loongson2e -mhard-float -fno-expensive-optimizations"
4461 cpuflags="-march=loongson2f -mhard-float -fno-expensive-optimizations"
4466 # Unknown CPU. Disable everything.
4467 warn "unknown CPU. Disabling all MIPS optimizations."
4490 24kef*|34kf*|1004kf*)
4498 check_cflags "-mtune=p5600" && check_cflags "-msched-weight -mload-store-pairs -funroll-loops"
4502 check_cflags "-mtune=i6400 -mabi=64" && check_cflags "-msched-weight -mload-store-pairs -funroll-loops" && check_ldflags "-mabi=64"
4506 check_cflags "-mtune=p6600 -mabi=64" && check_cflags "-msched-weight -mload-store-pairs -funroll-loops" && check_ldflags "-mabi=64"
4510 # We do not disable anything. Is up to the user to disable the unwanted features.
4511 warn 'generic cpu selected'
4514 elif enabled ppc; then
4518 case $(tolower $cpu) in
4519 601|ppc601|powerpc601)
4520 cpuflags="-mcpu=601"
4523 603*|ppc603*|powerpc603*)
4524 cpuflags="-mcpu=603"
4527 604*|ppc604*|powerpc604*)
4528 cpuflags="-mcpu=604"
4531 g3|75*|ppc75*|powerpc75*)
4532 cpuflags="-mcpu=750"
4535 g4|745*|ppc745*|powerpc745*)
4536 cpuflags="-mcpu=7450"
4539 74*|ppc74*|powerpc74*)
4540 cpuflags="-mcpu=7400"
4543 g5|970|ppc970|powerpc970)
4544 cpuflags="-mcpu=970"
4548 cpuflags="-mcpu=$cpu"
4552 cpuflags="-mcpu=$cpu"
4555 cpuflags="-mcpu=cell"
4560 cpuflags="-mcpu=e500mc"
4564 cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
4569 cpuflags="-mcpu=8540 -mhard-float"
4575 elif enabled sparc; then
4578 cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
4579 cpuflags="-mcpu=$cpu"
4581 ultrasparc*|niagara[234])
4582 cpuflags="-mcpu=$cpu"
4586 elif enabled x86; then
4590 cpuflags="-march=$cpu"
4594 # targets that do NOT support nopl and conditional mov (cmov)
4595 pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
4596 cpuflags="-march=$cpu"
4599 # targets that do support nopl and conditional mov (cmov)
4600 i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx\
4601 |core*|atom|bonnell|nehalem|westmere|silvermont|sandybridge|ivybridge|haswell|broadwell|skylake*|knl\
4602 |amdfam10|barcelona|b[dt]ver*|znver*)
4603 cpuflags="-march=$cpu"
4607 # targets that do support conditional mov but on which it's slow
4608 pentium4|pentium4m|prescott|nocona)
4609 cpuflags="-march=$cpu"
4617 if [ "$cpu" != generic ]; then
4618 add_cflags $cpuflags
4619 add_asflags $cpuflags
4620 test "$cc_type" = "$ld_type" && add_ldflags $cpuflags
4623 # compiler sanity check
4625 int main(void){ return 0; }
4627 if test "$?" != 0; then
4628 echo "$cc is unable to create an executable file."
4629 if test -z "$cross_prefix" && ! enabled cross_compile ; then
4630 echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
4631 echo "Only do this if you know what cross compiling means."
4633 die "C compiler test failed."
4636 add_cppflags -D_ISOC99_SOURCE
4637 add_cxxflags -D__STDC_CONSTANT_MACROS
4638 add_cxxflags -std=c++98
4640 # some compilers silently accept -std=c11, so we also need to check that the
4641 # version macro is defined properly
4642 if test_cflags_cc -std=c11 ctype.h "__STDC_VERSION__ >= 201112L"; then
4645 check_cflags -std=c99
4648 check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
4651 check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
4655 add_host_cppflags -D_ISOC99_SOURCE
4656 check_host_cflags -std=c99
4657 check_host_cflags -Wall
4658 check_host_cflags -O3
4664 check_code cc "" "int test[2*($expr) - 1]" &&
4665 subarch=$arch64 || subarch=$arch32
4673 check_64bit mips mips64 '_MIPS_SIM > 1'
4677 check_64bit parisc parisc64 'sizeof(void *) > 4'
4681 check_64bit ppc ppc64 'sizeof(void *) > 4'
4685 check_64bit s390 s390x 'sizeof(void *) > 4'
4689 check_64bit sparc sparc64 'sizeof(void *) > 4'
4693 check_64bit x86_32 x86_64 'sizeof(void *) > 4'
4694 # Treat x32 as x64 for now. Note it also needs spic=$shared
4695 test "$subarch" = "x86_32" && check_cpp_condition stddef.h 'defined(__x86_64__)' &&
4697 if test "$subarch" = "x86_64"; then
4702 check_cc <<EOF && subarch="ppc64"
4703 int test[(int)sizeof(char*) - 7];
4709 enabled spic && enable_weak pic
4715 add_cppflags '-I\$(SRC_PATH)/compat/aix'
4716 enabled shared && add_ldflags -Wl,-brtl
4720 enable section_data_rel_ro
4721 SLIB_INSTALL_NAME='$(SLIBNAME)'
4723 SHFLAGS='-shared -Wl,-soname,$(SLIBNAME)'
4726 prefix_default="/boot/common"
4727 network_extralibs="-lnetwork"
4731 SHFLAGS='-shared -Wl,-h,$$(@F)'
4732 enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
4733 network_extralibs="-lsocket -lnsl"
4734 add_cppflags -D__EXTENSIONS__
4735 # When using suncc to build, the Solaris linker will mark
4736 # an executable with each instruction set encountered by
4737 # the Solaris assembler. As our libraries contain their own
4738 # guards for processor-specific code, instead suppress
4739 # generation of the HWCAPS ELF section on Solaris x86 only.
4740 enabled_all suncc x86 &&
4741 echo "hwcap_1 = OVERRIDE;" > mapfile &&
4742 add_ldflags -Wl,-M,mapfile
4743 nm_default='nm -P -g'
4745 VERSION_SCRIPT_POSTPROCESS_CMD='perl $(SRC_PATH)/compat/solaris/make_sunver.pl - $(OBJS)'
4749 oss_indev_extralibs="-lossaudio"
4750 oss_outdev_extralibs="-lossaudio"
4751 enabled gcc || check_ldflags -Wl,-zmuldefs
4756 SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
4758 oss_indev_extralibs="-lossaudio"
4759 oss_outdev_extralibs="-lossaudio"
4767 add_extralibs -lpoll -lgnugetopt
4771 enabled ppc && add_asflags -force_cpusubtype_ALL
4772 install_name_dir_default='$(SHLIBDIR)'
4773 SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(INSTALL_NAME_DIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
4774 enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
4776 add_ldflags -Wl,-dynamic,-search_paths_first
4778 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
4779 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
4781 enabled x86_64 && objformat="macho64"
4782 enabled_any pic shared x86_64 ||
4783 { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
4784 check_header dispatch/dispatch.h &&
4785 add_cppflags '-I\$(SRC_PATH)/compat/dispatch_semaphore'
4786 version_script='-exported_symbols_list'
4787 VERSION_SCRIPT_POSTPROCESS_CMD='tr " " "\n" | sed -n /global:/,/local:/p | grep ";" | tr ";" "\n" | sed -E "s/(.+)/_\1/g" | sed -E "s/(.+[^*])$$$$/\1*/"'
4790 die "Native MSYS builds are discouraged, please use the MINGW environment."
4793 if test $target_os = "mingw32ce"; then
4798 decklink_outdev_extralibs="$decklink_outdev_extralibs -lole32 -loleaut32"
4799 decklink_indev_extralibs="$decklink_indev_extralibs -lole32 -loleaut32"
4801 if enabled x86_64; then
4802 LIBTARGET="i386:x86-64"
4803 elif enabled arm; then
4806 enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres
4807 enabled x86_32 && check_ldflags -Wl,--large-address-aware
4808 shlibdir_default="$bindir_default"
4811 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4812 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4813 dlltool="${cross_prefix}dlltool"
4814 if check_cmd lib.exe -list; then
4815 SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); lib.exe -nologo -machine:$(LIBTARGET) -def:$$(@:$(SLIBSUF)=.def) -out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
4816 if enabled x86_64; then
4819 elif check_cmd $dlltool --version; then
4820 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)'
4822 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4824 SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
4825 SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
4826 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'
4830 check_ldflags -Wl,--nxcompat,--dynamicbase
4831 # Lets work around some stupidity in binutils.
4832 # ld will strip relocations from executables even though we need them
4833 # for dynamicbase (ASLR). Using -pie does retain the reloc section
4834 # however ld then forgets what the entry point should be (oops) so we
4835 # have to manually (re)set it.
4836 if enabled x86_32; then
4837 disabled debug && add_ldexeflags -Wl,--pic-executable,-e,_mainCRTStartup
4838 elif enabled x86_64; then
4839 disabled debug && add_ldexeflags -Wl,--pic-executable,-e,mainCRTStartup
4840 check_ldflags -Wl,--high-entropy-va # binutils 2.25
4841 # Set image base >4GB for extra entropy with HEASLR
4842 add_ldexeflags -Wl,--image-base,0x140000000
4843 append SHFLAGS -Wl,--image-base,0x180000000
4848 if enabled shared; then
4849 # Link to the import library instead of the normal static library
4852 # Cannot build both shared and static libs with MSVC or icl.
4855 enabled x86_32 && check_ldflags -LARGEADDRESSAWARE
4856 shlibdir_default="$bindir_default"
4859 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4860 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4861 SLIB_CREATE_DEF_CMD='$(SRC_PATH)/compat/windows/makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
4862 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4864 SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
4865 SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
4866 SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
4873 shlibdir_default="$bindir_default"
4876 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4877 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4878 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4880 SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
4881 SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
4884 enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres
4885 add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
4887 *-dos|freedos|opendos)
4888 network_extralibs="-lsocket"
4891 add_cppflags -U__STRICT_ANSI__
4895 enable section_data_rel_ro
4899 ranlib="echo ignoring ranlib"
4904 add_cppflags -D_GNU_SOURCE
4905 add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
4906 SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
4910 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4911 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(FULLNAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
4912 SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(FULLNAME).def; \
4913 echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(FULLNAME).def; \
4914 echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(FULLNAME).def; \
4915 echo EXPORTS >> $(SUBDIR)$(FULLNAME).def; \
4916 emxexp $(OBJS) >> $(SUBDIR)$(FULLNAME).def'
4917 SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(FULLNAME)_dll.a $(SUBDIR)$(FULLNAME).def; \
4918 emximp -o $(SUBDIR)$(LIBPREF)$(FULLNAME)_dll.lib $(SUBDIR)$(FULLNAME).def;'
4919 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4921 SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(FULLNAME)_dll.a $(LIBPREF)$(FULLNAME)_dll.lib'
4923 enable_weak os2threads
4926 add_cppflags -D_BSD_SOURCE
4931 add_cppflags -D_QNX_SOURCE
4932 network_extralibs="-lsocket"
4937 add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
4938 add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
4939 add_ldflags -Wl,--target1-abs,--no-undefined \
4940 -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
4941 -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
4942 add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
4943 -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
4944 -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
4947 add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
4952 add_cppflags -D_C99_SNPRINTF_EXTENSION \
4953 -D_REENTRANT_SOURCE \
4954 -D_RESEARCH_SOURCE \
4957 add_compat strtod.o strtod=avpriv_strtod
4958 network_extralibs='-lbsd'
4959 exeobjs=compat/plan9/main.o
4966 die "Unknown OS '$target_os'."
4970 # test if creating links works
4971 link_dest=$(mktemp -u $TMPDIR/dest_XXXXXXXX)
4972 link_name=$(mktemp -u $TMPDIR/name_XXXXXXXX)
4974 $ln_s "$link_dest" "$link_name"
4975 touch "$link_dest/test_file"
4976 if [ "$source_path" != "." ] && ([ ! -d src ] || [ -L src ]) && [ -e "$link_name/test_file" ]; then
4977 # create link to source path
4978 [ -e src ] && rm src
4979 $ln_s "$source_path" src
4982 # creating directory links doesn't work
4983 # fall back to using the full source path
4984 source_link="$source_path"
4990 # determine libc flavour
4995 # uclibc defines __GLIBC__, so it needs to be checked before glibc.
4996 if check_${pfx}cpp_condition features.h "defined __UCLIBC__"; then
4997 eval ${pfx}libc_type=uclibc
4998 add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
4999 elif check_${pfx}cpp_condition features.h "defined __GLIBC__"; then
5000 eval ${pfx}libc_type=glibc
5001 add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
5002 # MinGW headers can be installed on Cygwin, so check for newlib first.
5003 elif check_${pfx}cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
5004 eval ${pfx}libc_type=newlib
5005 add_${pfx}cppflags -U__STRICT_ANSI__
5006 # MinGW64 is backwards compatible with MinGW32, so check for it first.
5007 elif check_${pfx}cpp_condition _mingw.h "defined __MINGW64_VERSION_MAJOR"; then
5008 eval ${pfx}libc_type=mingw64
5009 if check_${pfx}cpp_condition _mingw.h "__MINGW64_VERSION_MAJOR < 3"; then
5010 add_compat msvcrt/snprintf.o
5011 add_cflags "-include $source_path/compat/msvcrt/snprintf.h"
5013 add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
5014 eval test \$${pfx_no_}cc_type = "gcc" &&
5015 add_${pfx}cppflags -D__printf__=__gnu_printf__
5016 elif check_${pfx}cpp_condition _mingw.h "defined __MINGW_VERSION" ||
5017 check_${pfx}cpp_condition _mingw.h "defined __MINGW32_VERSION"; then
5018 eval ${pfx}libc_type=mingw32
5019 check_${pfx}cpp_condition _mingw.h "__MINGW32_MAJOR_VERSION > 3 || \
5020 (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
5021 die "ERROR: MinGW32 runtime version must be >= 3.15."
5022 add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
5023 check_${pfx}cpp_condition _mingw.h "defined(_WIN32_WINNT) && _WIN32_WINNT >= 0x0502" ||
5024 add_${pfx}cppflags -D_WIN32_WINNT=0x0502
5025 eval test \$${pfx_no_}cc_type = "gcc" &&
5026 add_${pfx}cppflags -D__printf__=__gnu_printf__
5027 elif check_${pfx}cpp_condition crtversion.h "defined _VC_CRT_MAJOR_VERSION"; then
5028 eval ${pfx}libc_type=msvcrt
5029 if check_${pfx}cpp_condition crtversion.h "_VC_CRT_MAJOR_VERSION < 14"; then
5030 if [ "$pfx" = host_ ]; then
5031 add_host_cppflags -Dsnprintf=_snprintf
5033 add_compat strtod.o strtod=avpriv_strtod
5034 add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \
5035 _snprintf=avpriv_snprintf \
5036 vsnprintf=avpriv_vsnprintf
5039 # The MSVC 2010 headers (Win 7.0 SDK) set _WIN32_WINNT to
5040 # 0x601 by default unless something else is set by the user.
5041 # This can easily lead to us detecting functions only present
5042 # in such new versions and producing binaries requiring windows 7.0.
5043 # Therefore explicitly set the default to XP unless the user has
5044 # set something else on the command line.
5045 # Don't do this if WINAPI_FAMILY is set and is set to a non-desktop
5046 # family. For these cases, configure is free to use any functions
5047 # found in the SDK headers by default. (Alternatively, we could force
5048 # _WIN32_WINNT to 0x0602 in that case.)
5049 check_${pfx}cpp_condition stdlib.h "defined(_WIN32_WINNT)" ||
5050 { check_${pfx}cpp <<EOF && add_${pfx}cppflags -D_WIN32_WINNT=0x0502; }
5051 #ifdef WINAPI_FAMILY
5052 #include <winapifamily.h>
5053 #if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
5058 elif check_${pfx}cpp_condition stddef.h "defined __KLIBC__"; then
5059 eval ${pfx}libc_type=klibc
5060 elif check_${pfx}cpp_condition sys/cdefs.h "defined __BIONIC__"; then
5061 eval ${pfx}libc_type=bionic
5062 elif check_${pfx}cpp_condition sys/brand.h "defined LABELED_BRAND_NAME"; then
5063 eval ${pfx}libc_type=solaris
5064 add_${pfx}cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
5066 check_${pfx}cc <<EOF
5068 void *v = localtime_r;
5070 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
5072 void *v = localtime_r;
5078 test -n "$libc_type" && enable libc_$libc_type
5080 test -n "$host_libc_type" && enable host_libc_$host_libc_type
5084 add_compat strtod.o strtod=avpriv_strtod
5088 # hacks for compiler/libc/os combinations
5090 if enabled_all tms470 libc_glibc; then
5091 CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
5092 add_cppflags -D__USER_LABEL_PREFIX__=
5093 add_cppflags -D__builtin_memset=memset
5094 add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
5095 add_cflags -pds=48 # incompatible redefinition of macro
5098 if enabled_all ccc libc_glibc; then
5099 add_ldflags -Wl,-z,now # calls to libots crash without this
5102 check_compile_assert flt_lim "float.h limits.h" "DBL_MAX == (double)DBL_MAX" ||
5103 add_cppflags '-I\$(SRC_PATH)/compat/float'
5106 echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
5109 echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $FFMPEG_CONFIGURATION)" >config.fate
5111 check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable_weak pic
5114 : ${shlibdir_default:="$libdir"}
5115 : ${pkgconfigdir_default:="$libdir/pkgconfig"}
5117 set_default $PATHS_LIST
5120 # we need to build at least one lib type
5121 if ! enabled_any static shared; then
5123 At least one library type must be built.
5124 Specify --enable-static to build the static libraries or --enable-shared to
5125 build the shared libraries as well. To only build the shared libraries specify
5126 --disable-static in addition to --enable-shared.
5131 die_license_disabled() {
5132 enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
5135 die_license_disabled_gpl() {
5136 enabled $1 || { enabled $2 && die "$2 is incompatible with the gpl and --enable-$1 is not specified."; }
5139 die_license_disabled gpl frei0r
5140 die_license_disabled gpl libcdio
5141 die_license_disabled gpl librubberband
5142 die_license_disabled gpl libsmbclient
5143 die_license_disabled gpl libvidstab
5144 die_license_disabled gpl libx264
5145 die_license_disabled gpl libx265
5146 die_license_disabled gpl libxavs
5147 die_license_disabled gpl libxvid
5148 die_license_disabled gpl x11grab
5150 die_license_disabled nonfree libnpp
5151 enabled gpl && die_license_disabled_gpl nonfree libfdk_aac
5152 enabled gpl && die_license_disabled_gpl nonfree openssl
5154 die_license_disabled version3 gmp
5155 die_license_disabled version3 libopencore_amrnb
5156 die_license_disabled version3 libopencore_amrwb
5157 die_license_disabled version3 libsmbclient
5158 die_license_disabled version3 libvo_amrwbenc
5160 enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
5162 disabled optimizations || check_cflags -fomit-frame-pointer
5165 disabled pic && return
5168 case "$target_os" in
5178 enabled pic && enable_weak_pic
5180 check_cc <<EOF || die "Symbol mangling check failed."
5183 sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
5184 extern_prefix=${sym%%ff_extern*}
5186 check_cc <<EOF && enable_weak inline_asm
5187 void foo(void) { __asm__ volatile ("" ::); }
5191 for restrict_keyword in restrict __restrict__ __restrict; do
5192 check_cc <<EOF && _restrict=$restrict_keyword && break
5193 void foo(char * $restrict_keyword p);
5197 check_cc <<EOF && enable pragma_deprecated
5198 void foo(void) { _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") }
5201 check_cc <<EOF && enable attribute_packed
5202 struct { int x; } __attribute__((packed)) x;
5205 check_cc <<EOF && enable attribute_may_alias
5206 union { int x; } __attribute__((may_alias)) x;
5209 check_cc <<EOF || die "endian test failed"
5210 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
5212 od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
5214 if ! enabled ppc64 || enabled bigendian; then
5219 log "check_gas using '$as' as AS"
5220 # :vararg is used on aarch64, arm and ppc altivec
5221 check_as <<EOF || return 1
5222 .macro m n, y:vararg=0
5227 # .altmacro is only used in arm asm
5228 ! enabled arm || check_as <<EOF || return 1
5235 if enabled_any arm aarch64 || enabled_all ppc altivec && enabled asm; then
5237 enabled_any arm aarch64 && nogas=die
5238 enabled_all ppc altivec && [ $target_os_default != aix ] && nogas=warn
5242 arm*) gaspp_as_type=armasm; as_noop=-h ;;
5243 gcc) gaspp_as_type=gas ;;
5244 *) gaspp_as_type=$as_type ;;
5247 [ $target_os = "darwin" ] && gaspp_as_type="apple-$gaspp_as_type"
5249 test "${as#*gas-preprocessor.pl}" != "$as" ||
5250 check_cmd gas-preprocessor.pl -arch $arch -as-type $gaspp_as_type -- ${as:=$cc} $as_noop &&
5251 gas="${gas:=gas-preprocessor.pl} -arch $arch -as-type $gaspp_as_type -- ${as:=$cc}"
5253 if ! check_gas ; then
5256 $nogas "GNU assembler not found, install/update gas-preprocessor"
5259 check_as <<EOF && enable as_func
5265 check_inline_asm inline_asm_labels '"1:\n"'
5267 check_inline_asm inline_asm_nonlocal_labels '"Label:\n"'
5269 if enabled aarch64; then
5270 enabled armv8 && check_insn armv8 'prfm pldl1strm, [x0]'
5271 # internal assembler in clang 3.3 does not support this instruction
5272 enabled neon && check_insn neon 'ext v0.8B, v0.8B, v1.8B, #1'
5273 enabled vfp && check_insn vfp 'fmadd d0, d0, d1, d2'
5275 map 'enabled_any ${v}_external ${v}_inline || disable $v' $ARCH_EXT_LIST_ARM
5277 elif enabled alpha; then
5281 elif enabled arm; then
5283 enabled msvc && check_cpp_condition stddef.h "defined _M_ARMT" && enable thumb
5285 check_cpp_condition stddef.h "defined __thumb__" && check_cc <<EOF && enable_weak thumb
5286 float func(float a, float b){ return a+b; }
5289 enabled thumb && check_cflags -mthumb || check_cflags -marm
5291 if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
5293 elif check_cpp_condition stddef.h "defined _M_ARM_FP && _M_ARM_FP >= 30"; then
5295 elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__" && [ $target_os != darwin ]; then
5296 case "${cross_prefix:-$cc}" in
5297 *hardfloat*) enable vfp_args; fpabi=vfp ;;
5298 *) check_ld "cc" <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
5299 __asm__ (".eabi_attribute 28, 1");
5300 int main(void) { return 0; }
5303 warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
5306 enabled armv5te && check_insn armv5te 'qadd r0, r0, r0'
5307 enabled armv6 && check_insn armv6 'sadd16 r0, r0, r0'
5308 enabled armv6t2 && check_insn armv6t2 'movt r0, #0'
5309 enabled neon && check_insn neon 'vadd.i16 q0, q0, q0'
5310 enabled vfp && check_insn vfp 'fadds s0, s0, s0'
5311 enabled vfpv3 && check_insn vfpv3 'vmov.f32 s0, #1.0'
5312 enabled setend && check_insn setend 'setend be'
5314 [ $target_os = linux ] || [ $target_os = android ] ||
5315 map 'enabled_any ${v}_external ${v}_inline || disable $v' \
5318 check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
5320 check_as <<EOF && enable as_dn_directive
5324 check_as <<EOF && enable as_fpu_directive
5328 # llvm's integrated assembler supports .object_arch from llvm 3.5
5329 [ "$objformat" = elf ] && check_as <<EOF && enable as_object_arch
5333 [ $target_os != win32 ] && enabled_all armv6t2 shared !pic && enable_weak_pic
5335 elif enabled mips; then
5337 enabled loongson2 && check_inline_asm loongson2 '"dmult.g $8, $9, $10"'
5338 enabled loongson3 && check_inline_asm loongson3 '"gsldxc1 $f0, 0($2, $3)"'
5339 enabled mmi && check_inline_asm mmi '"punpcklhw $f0, $f0, $f0"'
5341 # Enable minimum ISA based on selected options
5342 if enabled mips64; then
5343 enabled mips64r6 && check_inline_asm_flags mips64r6 '"dlsa $0, $0, $0, 1"' '-mips64r6'
5344 enabled mips64r2 && check_inline_asm_flags mips64r2 '"dext $0, $0, 0, 1"' '-mips64r2'
5345 disabled mips64r6 && disabled mips64r2 && check_inline_asm_flags mips64r1 '"daddi $0, $0, 0"' '-mips64'
5347 enabled mips32r6 && check_inline_asm_flags mips32r6 '"aui $0, $0, 0"' '-mips32r6'
5348 enabled mips32r5 && check_inline_asm_flags mips32r5 '"eretnc"' '-mips32r5'
5349 enabled mips32r2 && check_inline_asm_flags mips32r2 '"ext $0, $0, 0, 1"' '-mips32r2'
5350 disabled mips32r6 && disabled mips32r5 && disabled mips32r2 && check_inline_asm_flags mips32r1 '"addi $0, $0, 0"' '-mips32'
5353 enabled mipsfpu && check_inline_asm_flags mipsfpu '"cvt.d.l $f0, $f2"' '-mhard-float'
5354 enabled mipsfpu && (enabled mips32r5 || enabled mips32r6 || enabled mips64r6) && check_inline_asm_flags mipsfpu '"cvt.d.l $f0, $f1"' '-mfp64'
5355 enabled mipsfpu && enabled msa && check_inline_asm_flags msa '"addvi.b $w0, $w1, 1"' '-mmsa' && check_header msa.h || disable msa
5356 enabled mipsdsp && check_inline_asm_flags mipsdsp '"addu.qb $t0, $t1, $t2"' '-mdsp'
5357 enabled mipsdspr2 && check_inline_asm_flags mipsdspr2 '"absq_s.qb $t0, $t1"' '-mdspr2'
5359 elif enabled parisc; then
5361 if enabled gcc; then
5362 case $($cc -dumpversion) in
5363 4.[3-9].*) check_cflags -fno-optimize-sibling-calls ;;
5367 elif enabled ppc; then
5369 enable local_aligned_8 local_aligned_16 local_aligned_32
5371 check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
5372 check_inline_asm ibm_asm '"add 0, 0, 0"'
5373 check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
5374 check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
5376 # AltiVec flags: The FSF version of GCC differs from the Apple version
5377 if enabled altivec; then
5378 check_cflags -maltivec -mabi=altivec &&
5379 { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
5380 check_cflags -faltivec
5382 # check if our compiler supports Motorola AltiVec C API
5383 check_cc <<EOF || disable altivec
5386 vector signed int v1 = (vector signed int) { 0 };
5387 vector signed int v2 = (vector signed int) { 1 };
5388 v1 = vec_add(v1, v2);
5393 enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
5396 if enabled vsx; then
5397 check_cflags -mvsx &&
5398 check_builtin vec_vsx_ld "altivec.h" "__builtin_vec_vsx_ld" || disable vsx
5401 if enabled power8; then
5402 check_cpp_condition "altivec.h" "defined(_ARCH_PWR8)" || disable power8
5405 elif enabled x86; then
5407 check_builtin rdtsc intrin.h "__rdtsc()"
5408 check_builtin mm_empty mmintrin.h "_mm_empty()"
5410 enable local_aligned_8 local_aligned_16 local_aligned_32
5412 # check whether EBP is available on x86
5413 # As 'i' is stored on the stack, this program will crash
5414 # if the base pointer is used to access it because the
5415 # base pointer is cleared in the inline assembly code.
5416 check_exec_crash <<EOF && enable ebp_available
5418 __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
5422 # check whether EBX is available on x86
5423 check_inline_asm ebx_available '""::"b"(0)' &&
5424 check_inline_asm ebx_available '"":::"%ebx"'
5426 # check whether xmm clobbers are supported
5427 check_inline_asm xmm_clobbers '"":::"%xmm0"'
5429 check_inline_asm inline_asm_direct_symbol_refs '"movl '$extern_prefix'test, %eax"' ||
5430 check_inline_asm inline_asm_direct_symbol_refs '"movl '$extern_prefix'test(%rip), %eax"'
5432 # check whether binutils is new enough to compile SSSE3/MMXEXT
5433 enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
5434 enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
5436 if ! disabled_any asm mmx yasm; then
5437 if check_cmd $yasmexe --version; then
5438 enabled x86_64 && yasm_extra="-m amd64"
5439 yasm_debug="-g dwarf2"
5440 elif check_cmd nasm -v; then
5442 yasm_debug="-g -F dwarf"
5443 if enabled x86_64; then
5444 case "$objformat" in
5445 elf) objformat=elf64 ;;
5446 win32) objformat=win64 ;;
5451 YASMFLAGS="-f $objformat $yasm_extra"
5452 enabled pic && append YASMFLAGS "-DPIC"
5453 test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
5454 case "$objformat" in
5455 elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
5458 check_yasm "movbe ecx, [5]" && enable yasm ||
5459 die "yasm/nasm not found or too old. Use --disable-yasm for a crippled build."
5460 check_yasm "vextracti128 xmm0, ymm0, 0" || disable avx2_external
5461 check_yasm "vpmacsdd xmm0, xmm1, xmm2, xmm3" || disable xop_external
5462 check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
5463 check_yasm "CPU amdnop" || disable cpunop
5467 athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
5474 check_code cc arm_neon.h "int16x8_t test = vdupq_n_s16(0)" && enable intrinsics_neon
5476 check_ldflags -Wl,--as-needed
5477 check_ldflags -Wl,-z,noexecstack
5479 if check_func dlopen && check_func dlsym; then
5481 elif check_func dlopen -ldl && check_func dlsym -ldl; then
5485 avisynth_demuxer_extralibs='$ldl'
5486 cuda_extralibs='$ldl'
5487 decklink_outdev_extralibs="$decklink_outdev_extralibs $ldl"
5488 decklink_indev_extralibs="$decklink_indev_extralibs $ldl"
5489 frei0r_filter_extralibs='$ldl'
5490 frei0r_src_filter_extralibs='$ldl'
5491 ladspa_filter_extralibs='$ldl'
5492 nvenc_extralibs='$ldl'
5493 coreimage_filter_extralibs="-framework QuartzCore -framework AppKit -framework OpenGL"
5494 coreimagesrc_filter_extralibs="-framework QuartzCore -framework AppKit -framework OpenGL"
5496 if ! disabled network; then
5497 check_func getaddrinfo $network_extralibs
5498 check_func inet_aton $network_extralibs
5500 check_type netdb.h "struct addrinfo"
5501 check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
5502 check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
5503 check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
5504 check_type poll.h "struct pollfd"
5505 check_type netinet/sctp.h "struct sctp_event_subscribe"
5506 check_struct "sys/socket.h" "struct msghdr" msg_flags
5507 check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
5508 check_type netinet/in.h "struct sockaddr_in6"
5509 check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
5510 check_type "sys/types.h sys/socket.h" socklen_t
5512 # Prefer arpa/inet.h over winsock2
5513 if check_header arpa/inet.h ; then
5514 check_func closesocket
5515 elif check_header winsock2.h ; then
5516 check_func_headers winsock2.h closesocket -lws2 &&
5517 network_extralibs="-lws2" ||
5518 { check_func_headers winsock2.h closesocket -lws2_32 &&
5519 network_extralibs="-lws2_32"; } || disable winsock2_h network
5520 check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
5522 check_type ws2tcpip.h socklen_t
5523 check_type ws2tcpip.h "struct addrinfo"
5524 check_type ws2tcpip.h "struct group_source_req"
5525 check_type ws2tcpip.h "struct ip_mreq_source"
5526 check_type ws2tcpip.h "struct ipv6_mreq"
5527 check_type winsock2.h "struct pollfd"
5528 check_struct winsock2.h "struct sockaddr" sa_len
5529 check_type ws2tcpip.h "struct sockaddr_in6"
5530 check_type ws2tcpip.h "struct sockaddr_storage"
5536 check_builtin atomic_cas_ptr atomic.h "void **ptr; void *oldval, *newval; atomic_cas_ptr(ptr, oldval, newval)"
5537 check_builtin machine_rw_barrier mbarrier.h "__machine_rw_barrier()"
5538 check_builtin MemoryBarrier windows.h "MemoryBarrier()"
5539 check_builtin sarestart signal.h "SA_RESTART"
5540 check_builtin sem_timedwait semaphore.h "sem_t *s; sem_init(s,0,0); sem_timedwait(s,0); sem_destroy(s)" -lpthread
5541 check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
5542 check_builtin gmtime_r time.h "time_t *time; struct tm *tm; gmtime_r(time, tm)"
5543 check_builtin localtime_r time.h "time_t *time; struct tm *tm; localtime_r(time, tm)"
5544 check_builtin x264_csp_bgr "stdint.h x264.h" "X264_CSP_BGR"
5546 case "$custom_allocator" in
5548 # jemalloc by default does not use a prefix
5549 require libjemalloc jemalloc/jemalloc.h malloc -ljemalloc
5552 require_pkg_config libtcmalloc gperftools/tcmalloc.h tc_malloc
5557 check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
5558 check_func ${malloc_prefix}memalign && enable memalign
5559 check_func ${malloc_prefix}posix_memalign && enable posix_memalign
5562 check_func_headers stdlib.h arc4random
5563 check_func_headers time.h clock_gettime || { check_func_headers time.h clock_gettime -lrt && add_extralibs -lrt && LIBRT="-lrt"; }
5566 check_func gethrtime
5568 check_func getrusage
5569 check_func gettimeofday
5571 check_func mach_absolute_time
5575 # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
5576 check_func_headers time.h nanosleep || { check_func_headers time.h nanosleep -lrt && add_extralibs -lrt && LIBRT="-lrt"; }
5577 check_func sched_getaffinity
5578 check_func setrlimit
5579 check_struct "sys/stat.h" "struct stat" st_mtim.tv_nsec -D_BSD_SOURCE
5580 check_func strerror_r
5585 check_func_headers conio.h kbhit
5586 check_func_headers io.h setmode
5587 check_func_headers lzo/lzo1x.h lzo1x_999_compress
5588 check_func_headers stdlib.h getenv
5589 check_func_headers sys/stat.h lstat
5591 check_func_headers windows.h CoTaskMemFree -lole32
5592 check_func_headers windows.h GetProcessAffinityMask
5593 check_func_headers windows.h GetProcessTimes
5594 check_func_headers windows.h GetSystemTimeAsFileTime
5595 check_func_headers windows.h LoadLibrary
5596 check_func_headers windows.h MapViewOfFile
5597 check_func_headers windows.h PeekNamedPipe
5598 check_func_headers windows.h SetConsoleTextAttribute
5599 check_func_headers windows.h SetConsoleCtrlHandler
5600 check_func_headers windows.h Sleep
5601 check_func_headers windows.h VirtualAlloc
5602 check_struct windows.h "CONDITION_VARIABLE" Ptr
5603 check_func_headers glob.h glob
5605 check_func_headers "X11/Xlib.h X11/extensions/Xvlib.h" XvGetPortAttribute -lXv -lX11 -lXext
5607 check_header AudioToolbox/AudioToolbox.h
5608 check_header direct.h
5609 check_header dirent.h
5610 check_header dlfcn.h
5611 check_header d3d11.h
5613 check_header dxva2api.h -D_WIN32_WINNT=0x0600
5615 check_header libcrystalhd/libcrystalhd_if.h
5616 check_header mach/mach_time.h
5617 check_header malloc.h
5618 check_header net/udplite.h
5620 check_header sys/mman.h
5621 check_header sys/param.h
5622 check_header sys/resource.h
5623 check_header sys/select.h
5624 check_header sys/time.h
5625 check_header sys/un.h
5626 check_header termios.h
5627 check_header unistd.h
5628 check_header valgrind/valgrind.h
5629 check_header vdpau/vdpau.h
5630 check_header vdpau/vdpau_x11.h
5631 check_header VideoDecodeAcceleration/VDADecoder.h
5632 check_header VideoToolbox/VideoToolbox.h
5633 check_func_headers VideoToolbox/VTCompressionSession.h VTCompressionSessionPrepareToEncodeFrames -framework VideoToolbox
5634 enabled videotoolbox && check_func_headers CoreVideo/CVImageBuffer.h kCVImageBufferColorPrimaries_ITU_R_2020 -framework CoreVideo
5635 check_header windows.h
5636 check_header X11/extensions/XvMClib.h
5637 check_header asm/types.h
5639 # it seems there are versions of clang in some distros that try to use the
5640 # gcc headers, which explodes for stdatomic
5641 # so we also check that atomics actually work here
5642 check_builtin stdatomic_h stdatomic.h "atomic_int foo, bar = ATOMIC_VAR_INIT(-1); atomic_store(&foo, 0)"
5644 check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
5645 check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
5646 check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
5647 check_lib "CoreServices/CoreServices.h" UTGetOSTypeFromString "-framework CoreServices"
5649 check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
5651 check_type "windows.h dxva.h" "DXVA_PicParams_HEVC" -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP -D_CRT_BUILD_DESKTOP_APP=0
5652 check_type "windows.h dxva.h" "DXVA_PicParams_VP9" -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP -D_CRT_BUILD_DESKTOP_APP=0
5653 check_type "windows.h d3d11.h" "ID3D11VideoDecoder"
5654 check_type "windows.h d3d11.h" "ID3D11VideoContext"
5655 check_type "d3d9.h dxva2api.h" DXVA2_ConfigPictureDecode -D_WIN32_WINNT=0x0602
5657 check_type "va/va.h va/va_dec_hevc.h" "VAPictureParameterBufferHEVC"
5658 check_struct "va/va.h" "VADecPictureParameterBufferVP9" bit_depth
5659 check_type "va/va.h va/va_vpp.h" "VAProcPipelineParameterBuffer"
5660 check_type "va/va.h va/va_enc_h264.h" "VAEncPictureParameterBufferH264"
5661 check_type "va/va.h va/va_enc_hevc.h" "VAEncPictureParameterBufferHEVC"
5662 check_type "va/va.h va/va_enc_jpeg.h" "VAEncPictureParameterBufferJPEG"
5663 check_type "va/va.h va/va_enc_mpeg2.h" "VAEncPictureParameterBufferMPEG2"
5664 check_type "va/va.h va/va_enc_vp8.h" "VAEncPictureParameterBufferVP8"
5666 check_type "vdpau/vdpau.h" "VdpPictureInfoHEVC"
5668 check_cpp_condition windows.h "!WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)" && enable winrt || disable winrt
5670 if ! disabled w32threads && ! enabled pthreads; then
5671 check_func_headers "windows.h process.h" _beginthreadex &&
5672 enable w32threads || disable w32threads
5673 if ! enabled w32threads && enabled winrt; then
5674 check_func_headers "windows.h" CreateThread &&
5675 enable w32threads || disable w32threads
5679 # check for some common methods of building with pthread support
5680 # do this before the optional library checks as some of them require pthreads
5681 if ! disabled pthreads && ! enabled w32threads && ! enabled os2threads; then
5683 if check_func pthread_join -pthread && check_func pthread_create -pthread; then
5685 add_extralibs -pthread
5686 elif check_func pthread_join -pthreads && check_func pthread_create -pthreads; then
5687 add_cflags -pthreads
5688 add_extralibs -pthreads
5689 elif check_func pthread_join -ldl -pthread && check_func pthread_create -ldl -pthread; then
5690 add_cflags -ldl -pthread
5691 add_extralibs -ldl -pthread
5692 elif check_func pthread_join -lpthreadGC2 && check_func pthread_create -lpthreadGC2; then
5693 add_extralibs -lpthreadGC2
5694 elif check_lib pthread.h pthread_join -lpthread && check_lib pthread.h pthread_create -lpthread; then
5696 elif ! check_func pthread_join && ! check_func pthread_create; then
5699 check_code cc "pthread.h" "static pthread_mutex_t atomic_lock = PTHREAD_MUTEX_INITIALIZER" || disable pthreads
5703 if enabled pthreads; then
5704 check_func pthread_cancel
5708 check_builtin sem_timedwait semaphore.h "sem_t *s; sem_init(s,0,0); sem_timedwait(s,0); sem_destroy(s)"
5710 disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
5711 disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
5712 disabled lzma || check_lib2 lzma.h lzma_version_number -llzma || disable lzma
5714 check_lib math.h sin -lm && LIBM="-lm"
5715 disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd
5723 for func in $MATH_FUNCS; do
5724 eval check_mathfunc $func \${${func}_args:-1}
5727 for func in $COMPLEX_FUNCS; do
5728 eval check_complexfunc $func \${${func}_args:-1}
5731 # these are off by default, so fail if requested and not available
5732 enabled avfoundation_indev && { check_header_objcc AVFoundation/AVFoundation.h || disable avfoundation_indev; }
5733 enabled avfoundation_indev && { check_lib2 CoreGraphics/CoreGraphics.h CGGetActiveDisplayList -framework CoreGraphics ||
5734 check_lib2 ApplicationServices/ApplicationServices.h CGGetActiveDisplayList -framework ApplicationServices; }
5735 enabled cuda && check_header cuda.h # this is not a dependency
5736 enabled cuvid && { enabled cuda ||
5737 die "ERROR: CUVID requires CUDA"; }
5738 enabled chromaprint && require chromaprint chromaprint.h chromaprint_get_version -lchromaprint
5739 enabled coreimage_filter && { check_header_objcc QuartzCore/CoreImage.h || disable coreimage_filter; }
5740 enabled coreimagesrc_filter && { check_header_objcc QuartzCore/CoreImage.h || disable coreimagesrc_filter; }
5741 enabled decklink && { { check_header DeckLinkAPI.h || die "ERROR: DeckLinkAPI.h header not found"; } &&
5742 { check_cpp_condition DeckLinkAPIVersion.h "BLACKMAGIC_DECKLINK_API_VERSION >= 0x0a060100" || die "ERROR: Decklink API version must be >= 10.6.1."; } }
5743 enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
5744 enabled gmp && require2 gmp gmp.h mpz_export -lgmp
5745 enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
5746 enabled jni && { [ $target_os = "android" ] && check_header jni.h && enabled pthreads &&
5747 check_lib2 "dlfcn.h" dlopen -ldl; }
5748 enabled ladspa && { check_header ladspa.h || die "ERROR: ladspa.h header not found"; }
5749 enabled libiec61883 && require libiec61883 libiec61883/iec61883.h iec61883_cmp_connect -lraw1394 -lavc1394 -lrom1394 -liec61883
5750 enabled libass && require_pkg_config libass ass/ass.h ass_library_init
5751 enabled libbluray && require_pkg_config libbluray libbluray/bluray.h bd_open
5752 enabled libbs2b && require_pkg_config libbs2b bs2b.h bs2b_open
5753 enabled libcelt && require libcelt celt/celt.h celt_decode -lcelt0 &&
5754 { check_lib celt/celt.h celt_decoder_create_custom -lcelt0 ||
5755 die "ERROR: libcelt must be installed and version must be >= 0.11.0."; }
5756 enabled libcaca && require_pkg_config caca caca.h caca_create_canvas
5757 enabled libfdk_aac && { use_pkg_config fdk-aac "fdk-aac/aacenc_lib.h" aacEncOpen ||
5758 { require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac &&
5759 warn "using libfdk without pkg-config"; } }
5760 flite_libs="-lflite_cmu_time_awb -lflite_cmu_us_awb -lflite_cmu_us_kal -lflite_cmu_us_kal16 -lflite_cmu_us_rms -lflite_cmu_us_slt -lflite_usenglish -lflite_cmulex -lflite"
5761 enabled libflite && require2 libflite "flite/flite.h" flite_init $flite_libs
5762 enabled fontconfig && enable libfontconfig
5763 enabled libfontconfig && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit
5764 enabled libfreetype && require_libfreetype
5765 enabled libfribidi && require_pkg_config fribidi fribidi.h fribidi_version_info
5766 enabled libgme && require libgme gme/gme.h gme_new_emu -lgme -lstdc++
5767 enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
5768 check_lib "${gsm_hdr}" gsm_create -lgsm && break;
5769 done || die "ERROR: libgsm not found"; }
5770 enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
5771 enabled libkvazaar && require_pkg_config "kvazaar >= 0.8.1" kvazaar.h kvz_api_get
5772 enabled libmfx && require_pkg_config libmfx "mfx/mfxvideo.h" MFXInit
5773 enabled libmodplug && require_pkg_config libmodplug libmodplug/modplug.h ModPlug_Load
5774 enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
5775 enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
5776 enabled libnpp && require libnpp npp.h nppGetLibVersion -lnppi -lnppc
5777 enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
5778 enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
5779 enabled libopencv && { check_header opencv2/core/core_c.h &&
5780 { use_pkg_config opencv opencv2/core/core_c.h cvCreateImageHeader ||
5781 require opencv opencv2/core/core_c.h cvCreateImageHeader -lopencv_core -lopencv_imgproc; } ||
5782 require_pkg_config opencv opencv/cxcore.h cvCreateImageHeader; }
5783 enabled libopenh264 && require_pkg_config openh264 wels/codec_api.h WelsGetCodecVersion
5784 enabled libopenjpeg && { { check_lib2 openjpeg-2.1/openjpeg.h opj_version -lopenjp2 -DOPJ_STATIC && add_cppflags -DOPJ_STATIC; } ||
5785 check_lib2 openjpeg-2.1/openjpeg.h opj_version -lopenjp2 ||
5786 { check_lib2 openjpeg-2.0/openjpeg.h opj_version -lopenjp2 -DOPJ_STATIC && add_cppflags -DOPJ_STATIC; } ||
5787 { check_lib2 openjpeg-1.5/openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC && add_cppflags -DOPJ_STATIC; } ||
5788 { check_lib2 openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC && add_cppflags -DOPJ_STATIC; } ||
5789 die "ERROR: libopenjpeg not found"; }
5790 enabled libopenmpt && require_pkg_config "libopenmpt >= 0.2.6557" libopenmpt/libopenmpt.h openmpt_module_create
5791 enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
5792 enabled libpulse && require_pkg_config libpulse pulse/pulseaudio.h pa_context_new
5793 enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
5794 enabled librubberband && require_pkg_config "rubberband >= 1.8.1" rubberband/rubberband-c.h rubberband_new
5795 enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
5796 enabled libshine && require_pkg_config shine shine/layer3.h shine_encode_buffer
5797 enabled libsmbclient && { use_pkg_config smbclient libsmbclient.h smbc_init ||
5798 require smbclient libsmbclient.h smbc_init -lsmbclient; }
5799 enabled libsnappy && require snappy snappy-c.h snappy_compress -lsnappy
5800 enabled libsoxr && require libsoxr soxr.h soxr_create -lsoxr && LIBSOXR="-lsoxr"
5801 enabled libssh && require_pkg_config libssh libssh/sftp.h sftp_init
5802 enabled libspeex && require_pkg_config speex speex/speex.h speex_decoder_init -lspeex
5803 enabled libtesseract && require_pkg_config tesseract tesseract/capi.h TessBaseAPICreate
5804 enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
5805 enabled libtwolame && require libtwolame twolame.h twolame_init -ltwolame &&
5806 { check_lib twolame.h twolame_encode_buffer_float32_interleaved -ltwolame ||
5807 die "ERROR: libtwolame must be installed and version must be >= 0.3.10"; }
5808 enabled libv4l2 && require_pkg_config libv4l2 libv4l2.h v4l2_ioctl
5809 enabled libvidstab && require_pkg_config "vidstab >= 0.98" vid.stab/libvidstab.h vsMotionDetectInit
5810 enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
5811 enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
5814 enabled libvpx_vp8_decoder && {
5815 use_pkg_config "vpx >= 0.9.1" "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_vp8_dx ||
5816 check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
5817 die "ERROR: libvpx decoder version must be >=0.9.1";
5819 enabled libvpx_vp8_encoder && {
5820 use_pkg_config "vpx >= 0.9.7" "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_vp8_cx ||
5821 check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VP8E_SET_MAX_INTRA_BITRATE_PCT" -lvpx ||
5822 die "ERROR: libvpx encoder version must be >=0.9.7";
5824 enabled libvpx_vp9_decoder && {
5825 use_pkg_config "vpx >= 1.3.0" "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_vp9_dx ||
5826 check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_vp9_dx" -lvpx ||
5827 disable libvpx_vp9_decoder;
5829 enabled libvpx_vp9_encoder && {
5830 use_pkg_config "vpx >= 1.3.0" "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_vp9_cx ||
5831 check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_vp9_cx VP9E_SET_AQ_MODE" -lvpx ||
5832 disable libvpx_vp9_encoder;
5834 if disabled_all libvpx_vp8_decoder libvpx_vp9_decoder libvpx_vp8_encoder libvpx_vp9_encoder; then
5835 die "libvpx enabled but no supported decoders found"
5839 enabled libwavpack && require libwavpack wavpack/wavpack.h WavpackOpenFileOutput -lwavpack
5840 enabled libwebp && {
5841 enabled libwebp_encoder && require_pkg_config "libwebp >= 0.2.0" webp/encode.h WebPGetEncoderVersion
5842 enabled libwebp_anim_encoder && { use_pkg_config "libwebpmux >= 0.4.0" webp/mux.h WebPAnimEncoderOptionsInit || disable libwebp_anim_encoder; } }
5843 enabled libx264 && { use_pkg_config x264 "stdint.h x264.h" x264_encoder_encode ||
5844 { require libx264 x264.h x264_encoder_encode -lx264 &&
5845 warn "using libx264 without pkg-config"; } } &&
5846 { check_cpp_condition x264.h "X264_BUILD >= 118" ||
5847 die "ERROR: libx264 must be installed and version must be >= 0.118."; } &&
5848 { check_cpp_condition x264.h "X264_MPEG2" &&
5850 enabled libx265 && require_pkg_config x265 x265.h x265_api_get &&
5851 { check_cpp_condition x265.h "X265_BUILD >= 68" ||
5852 die "ERROR: libx265 version must be >= 68."; }
5853 enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
5854 enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
5855 enabled libzimg && require_pkg_config "zimg >= 2.3.0" zimg.h zimg_get_api_version
5856 enabled libzmq && require_pkg_config libzmq zmq.h zmq_ctx_new
5857 enabled libzvbi && require libzvbi libzvbi.h vbi_decoder_new -lzvbi &&
5858 { check_cpp_condition libzvbi.h "VBI_VERSION_MAJOR > 0 || VBI_VERSION_MINOR > 2 || VBI_VERSION_MINOR == 2 && VBI_VERSION_MICRO >= 28" ||
5859 enabled gpl || die "ERROR: libzvbi requires version 0.2.28 or --enable-gpl."; }
5860 enabled mediacodec && { enabled jni || die "ERROR: mediacodec requires --enable-jni"; }
5861 enabled mmal && { check_lib interface/mmal/mmal.h mmal_port_connect -lmmal_core -lmmal_util -lmmal_vc_client -lbcm_host ||
5862 { ! enabled cross_compile && {
5863 add_cflags -isystem/opt/vc/include/ -isystem/opt/vc/include/interface/vmcs_host/linux -isystem/opt/vc/include/interface/vcos/pthreads -fgnu89-inline ;
5864 add_extralibs -L/opt/vc/lib/ -lmmal_core -lmmal_util -lmmal_vc_client -lbcm_host ;
5865 check_lib interface/mmal/mmal.h mmal_port_connect ; }
5866 check_lib interface/mmal/mmal.h mmal_port_connect ; } ||
5867 die "ERROR: mmal not found"; }
5868 enabled mmal && check_func_headers interface/mmal/mmal.h "MMAL_PARAMETER_VIDEO_MAX_NUM_CALLBACKS"
5870 enabled netcdf && require_pkg_config netcdf netcdf.h nc_inq_libvers
5871 enabled openal && { { for al_libs in "${OPENAL_LIBS}" "-lopenal" "-lOpenAL32"; do
5872 check_lib 'AL/al.h' alGetError "${al_libs}" && break; done } ||
5873 die "ERROR: openal not found"; } &&
5874 { check_cpp_condition "AL/al.h" "defined(AL_VERSION_1_1)" ||
5875 die "ERROR: openal must be installed and version must be 1.1 or compatible"; }
5876 enabled opencl && { check_lib2 OpenCL/cl.h clEnqueueNDRangeKernel -Wl,-framework,OpenCL ||
5877 check_lib2 CL/cl.h clEnqueueNDRangeKernel -lOpenCL ||
5878 die "ERROR: opencl not found"; } &&
5879 { check_cpp_condition "OpenCL/cl.h" "defined(CL_VERSION_1_2)" ||
5880 check_cpp_condition "CL/cl.h" "defined(CL_VERSION_1_2)" ||
5881 die "ERROR: opencl must be installed and version must be 1.2 or compatible"; }
5882 enabled opengl && { check_lib GL/glx.h glXGetProcAddress "-lGL" ||
5883 check_lib2 windows.h wglGetProcAddress "-lopengl32 -lgdi32" ||
5884 check_lib2 OpenGL/gl3.h glGetError "-Wl,-framework,OpenGL" ||
5885 check_lib2 ES2/gl.h glGetError "-isysroot=${sysroot} -Wl,-framework,OpenGLES" ||
5886 die "ERROR: opengl not found."
5888 enabled omx_rpi && enable omx
5889 enabled omx && { check_header OMX_Core.h ||
5890 { ! enabled cross_compile && enabled omx_rpi && {
5891 add_cflags -isystem/opt/vc/include/IL ; }
5892 check_header OMX_Core.h ; } ||
5893 die "ERROR: OpenMAX IL headers not found"; }
5894 enabled openssl && { use_pkg_config openssl openssl/ssl.h OPENSSL_init_ssl ||
5895 use_pkg_config openssl openssl/ssl.h SSL_library_init ||
5896 check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
5897 check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
5898 check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
5899 die "ERROR: openssl not found"; }
5900 enabled qtkit_indev && { check_header_objcc QTKit/QTKit.h || disable qtkit_indev; }
5903 if enabled libdc1394; then
5904 { require_pkg_config libdc1394-2 dc1394/dc1394.h dc1394_new &&
5905 enable libdc1394_2; } ||
5906 { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
5907 enable libdc1394_1; } ||
5908 die "ERROR: No version of libdc1394 found "
5911 if enabled gcrypt; then
5912 GCRYPT_CONFIG="${cross_prefix}libgcrypt-config"
5913 if "${GCRYPT_CONFIG}" --version > /dev/null 2>&1; then
5914 gcrypt_cflags=$("${GCRYPT_CONFIG}" --cflags)
5915 gcrypt_libs=$("${GCRYPT_CONFIG}" --libs)
5916 check_func_headers gcrypt.h gcry_mpi_new $gcrypt_cflags $gcrypt_libs ||
5917 die "ERROR: gcrypt not found"
5918 add_cflags $gcrypt_cflags && add_extralibs $gcrypt_libs
5920 require2 gcrypt gcrypt.h gcry_mpi_new -lgcrypt
5924 disabled sdl && disable sdl2
5925 if ! disabled sdl2; then
5926 SDL2_CONFIG="${cross_prefix}sdl2-config"
5927 if check_pkg_config sdl2 SDL_events.h SDL_PollEvent; then
5928 check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x020001" $sdl2_cflags &&
5929 check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x020100" $sdl2_cflags &&
5930 check_func SDL_Init $sdl2_libs $sdl2_cflags && enable sdl2
5932 if "${SDL2_CONFIG}" --version > /dev/null 2>&1; then
5933 sdl2_cflags=$("${SDL2_CONFIG}" --cflags)
5934 sdl2_libs=$("${SDL2_CONFIG}" --libs)
5935 check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x020001" $sdl2_cflags &&
5936 check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x020100" $sdl2_cflags &&
5937 check_func SDL_Init $sdl2_libs $sdl2_cflags && enable sdl2
5940 if test $target_os = "mingw32"; then
5941 sdl2_libs="$sdl2_libs -mconsole"
5944 enabled sdl2 && enable sdl && add_cflags $sdl2_cflags && add_extralibs $sdl2_libs
5946 disabled securetransport || { check_func SecIdentityCreate "-Wl,-framework,CoreFoundation -Wl,-framework,Security" &&
5947 check_lib2 "Security/SecureTransport.h Security/Security.h" "SSLCreateContext SecItemImport" "-Wl,-framework,CoreFoundation -Wl,-framework,Security" &&
5948 enable securetransport; }
5950 disabled schannel || { check_func_headers "windows.h security.h" InitializeSecurityContext -DSECURITY_WIN32 -lsecur32 &&
5951 check_cpp_condition winerror.h "defined(SEC_I_CONTEXT_EXPIRED)" && enable schannel && add_extralibs -lsecur32; }
5953 makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo
5955 && [ 0$(makeinfo --version | grep "texinfo" | sed 's/.*texinfo[^0-9]*\([0-9]*\)\..*/\1/') -ge 5 ] \
5956 && enable makeinfo_html || disable makeinfo_html
5957 disabled makeinfo_html && texi2html --help 2> /dev/null | grep -q 'init-file' && enable texi2html || disable texi2html
5958 perl -v > /dev/null 2>&1 && enable perl || disable perl
5959 pod2man --help > /dev/null 2>&1 && enable pod2man || disable pod2man
5960 rsync --help 2> /dev/null | grep -q 'contimeout' && enable rsync_contimeout || disable rsync_contimeout
5962 check_header linux/fb.h
5963 check_header linux/videodev.h
5964 check_header linux/videodev2.h
5965 check_code cc linux/videodev2.h "struct v4l2_frmsizeenum vfse; vfse.discrete.width = 0;" && enable_safe struct_v4l2_frmivalenum_discrete
5967 check_header sys/videoio.h
5968 check_code cc sys/videoio.h "struct v4l2_frmsizeenum vfse; vfse.discrete.width = 0;" && enable_safe struct_v4l2_frmivalenum_discrete
5970 check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
5971 # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
5972 # w32api 3.12 had it defined wrong
5973 check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
5975 check_type "dshow.h" IBaseFilter
5977 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
5978 { check_header dev/bktr/ioctl_meteor.h &&
5979 check_header dev/bktr/ioctl_bt848.h; } ||
5980 { check_header machine/ioctl_meteor.h &&
5981 check_header machine/ioctl_bt848.h; } ||
5982 { check_header dev/video/meteor/ioctl_meteor.h &&
5983 check_header dev/video/bktr/ioctl_bt848.h; } ||
5984 check_header dev/ic/bt8xx.h
5986 check_header sndio.h
5987 if check_struct sys/soundcard.h audio_buf_info bytes; then
5988 enable_safe sys/soundcard.h
5990 check_cc -D__BSD_VISIBLE -D__XSI_VISIBLE <<EOF && add_cppflags -D__BSD_VISIBLE -D__XSI_VISIBLE && enable_safe sys/soundcard.h
5991 #include <sys/soundcard.h>
5995 check_header soundcard.h
5997 enabled_any alsa_indev alsa_outdev &&
5998 check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
6000 enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack &&
6001 check_func jack_port_get_latency_range -ljack
6003 enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
6005 if enabled libcdio; then
6006 check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
6007 check_lib2 "cdio/paranoia/cdda.h cdio/paranoia/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
6008 die "ERROR: No usable libcdio/cdparanoia found"
6012 check_lib X11/Xlib.h XOpenDisplay -lX11 || disable xlib
6014 if ! disabled libxcb; then
6015 check_pkg_config "xcb >= 1.4" xcb/xcb.h xcb_connect || {
6016 enabled libxcb && die "ERROR: libxcb >= 1.4 not found";
6017 } && disable x11grab && enable libxcb
6019 if enabled libxcb; then
6020 disabled libxcb_shm || {
6021 check_pkg_config xcb-shm xcb/shm.h xcb_shm_attach || {
6022 enabled libxcb_shm && die "ERROR: libxcb_shm not found";
6023 } && check_header sys/shm.h && enable libxcb_shm; }
6025 disabled libxcb_xfixes || {
6026 check_pkg_config xcb-xfixes xcb/xfixes.h xcb_xfixes_get_cursor_image || {
6027 enabled libxcb_xfixes && die "ERROR: libxcb_xfixes not found";
6028 } && enable libxcb_xfixes; }
6030 disabled libxcb_shape || {
6031 check_pkg_config xcb-shape xcb/shape.h xcb_shape_get_rectangles || {
6032 enabled libxcb_shape && die "ERROR: libxcb_shape not found";
6033 } && enable libxcb_shape; }
6035 add_cflags $xcb_cflags $xcb_shm_cflags $xcb_xfixes_cflags $xcb_shape_cflags
6036 add_extralibs $xcb_libs $xcb_shm_libs $xcb_xfixes_libs $xcb_shape_libs
6040 if enabled x11grab; then
6041 enabled xlib || die "ERROR: Xlib not found"
6042 require Xext X11/extensions/XShm.h XShmCreateImage -lXext
6043 require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
6046 check_func_headers "windows.h" CreateDIBSection "$gdigrab_indev_extralibs"
6048 enabled dxva2api_h &&
6049 check_cc <<EOF && enable dxva2api_cobj
6050 #define _WIN32_WINNT 0x0600
6052 #include <windows.h>
6054 #include <dxva2api.h>
6055 int main(void) { IDirectXVideoDecoder *o = NULL; IDirectXVideoDecoder_Release(o); return 0; }
6059 check_lib va/va.h vaInitialize -lva ||
6063 check_code cc "va/va.h" "vaCreateSurfaces(0, 0, 0, 0, 0, 0, 0, 0)" ||
6066 if enabled vaapi ; then
6068 check_lib2 "va/va.h va/va_x11.h" vaGetDisplay -lva -lva-x11 &&
6071 check_lib2 "va/va.h va/va_drm.h" vaGetDisplayDRM -lva -lva-drm &&
6076 check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
6079 enabled vdpau && enabled xlib &&
6080 check_lib2 "vdpau/vdpau.h vdpau/vdpau_x11.h" vdp_device_create_x11 -lvdpau &&
6083 if enabled x86; then
6085 mingw32*|mingw64*|win32|win64|linux|cygwin*)
6088 disable cuda cuvid nvenc
6092 disable cuda cuvid nvenc
6096 check_cc -I$source_path <<EOF || disable nvenc
6097 #include "compat/nvenc/nvEncodeAPI.h"
6098 NV_ENCODE_API_FUNCTION_LIST flist;
6099 void f(void) { struct { const GUID guid; } s[] = { { NV_ENC_PRESET_HQ_GUID } }; }
6100 int main(void) { return 0; }
6103 # Funny iconv installations are not unusual, so check it after all flags have been set
6104 disabled iconv || check_func_headers iconv.h iconv || check_lib2 iconv.h iconv -liconv || disable iconv
6106 enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
6108 # add some useful compiler flags if supported
6109 check_cflags -Wdeclaration-after-statement
6111 check_cflags -Wdisabled-optimization
6112 check_cflags -Wpointer-arith
6113 check_cflags -Wredundant-decls
6114 check_cflags -Wwrite-strings
6115 check_cflags -Wtype-limits
6116 check_cflags -Wundef
6117 check_cflags -Wmissing-prototypes
6118 check_cflags -Wno-pointer-to-int-cast
6119 check_cflags -Wstrict-prototypes
6120 check_cflags -Wempty-body
6121 enabled extra_warnings && check_cflags -Winline
6122 enabled extra_warnings && check_cflags -Wcast-qual
6124 check_disable_warning(){
6125 warning_flag=-W${1#-Wno-}
6126 test_cflags $warning_flag && add_cflags $1
6129 check_disable_warning -Wno-parentheses
6130 check_disable_warning -Wno-switch
6131 check_disable_warning -Wno-format-zero-length
6132 check_disable_warning -Wno-pointer-sign
6133 check_disable_warning -Wno-unused-const-variable
6135 # add some linker flags
6136 check_ldflags -Wl,--warn-common
6137 check_ldflags -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
6138 enabled rpath && add_ldexeflags -Wl,-rpath,$libdir
6139 enabled rpath && add_ldlibflags -Wl,-rpath,$libdir
6140 test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
6142 # add some strip flags
6143 # -wN '..@*' is more selective than -x, but not available everywhere.
6144 check_stripflags -wN \'..@*\' || check_stripflags -x
6146 enabled neon_clobber_test &&
6147 check_ldflags -Wl,--wrap,avcodec_open2 \
6148 -Wl,--wrap,avcodec_decode_audio4 \
6149 -Wl,--wrap,avcodec_decode_video2 \
6150 -Wl,--wrap,avcodec_decode_subtitle2 \
6151 -Wl,--wrap,avcodec_encode_audio2 \
6152 -Wl,--wrap,avcodec_encode_video2 \
6153 -Wl,--wrap,avcodec_send_packet \
6154 -Wl,--wrap,avcodec_receive_frame \
6155 -Wl,--wrap,avcodec_send_frame \
6156 -Wl,--wrap,avcodec_receive_packet \
6157 -Wl,--wrap,avcodec_encode_subtitle \
6158 -Wl,--wrap,swr_convert \
6159 -Wl,--wrap,avresample_convert ||
6160 disable neon_clobber_test
6162 enabled xmm_clobber_test &&
6163 check_ldflags -Wl,--wrap,avcodec_open2 \
6164 -Wl,--wrap,avcodec_decode_audio4 \
6165 -Wl,--wrap,avcodec_decode_video2 \
6166 -Wl,--wrap,avcodec_decode_subtitle2 \
6167 -Wl,--wrap,avcodec_encode_audio2 \
6168 -Wl,--wrap,avcodec_encode_video2 \
6169 -Wl,--wrap,avcodec_encode_subtitle \
6170 -Wl,--wrap,avcodec_send_packet \
6171 -Wl,--wrap,avcodec_receive_frame \
6172 -Wl,--wrap,avcodec_send_frame \
6173 -Wl,--wrap,avcodec_receive_packet \
6174 -Wl,--wrap,swr_convert \
6175 -Wl,--wrap,avresample_convert \
6176 -Wl,--wrap,sws_scale ||
6177 disable xmm_clobber_test
6179 check_ld "cc" <<EOF && enable proper_dce
6180 extern const int array[512];
6181 static inline int func(void) { return array[0]; }
6182 int main(void) { return 0; }
6185 if enabled proper_dce; then
6186 echo "X { local: *; };" > $TMPV
6187 if test_ldflags -Wl,${version_script},$TMPV; then
6188 append SHFLAGS '-Wl,${version_script},\$(SUBDIR)lib\$(NAME).ver'
6189 check_cc <<EOF && enable symver_asm_label
6190 void ff_foo(void) __asm__ ("av_foo@VERSION");
6191 void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
6193 check_cc <<EOF && enable symver_gnu_asm
6194 __asm__(".symver ff_foo,av_foo@VERSION");
6195 void ff_foo(void) {}
6200 if [ -z "$optflags" ]; then
6201 if enabled small; then
6202 optflags=$cflags_size
6203 elif enabled optimizations; then
6204 optflags=$cflags_speed
6206 optflags=$cflags_noopt
6212 enabled lto && check_ldflags "$@"
6216 if enabled lto; then
6217 test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
6219 check_ldflags -flto $cpuflags
6220 disable inline_asm_direct_symbol_refs
6223 check_optflags $optflags
6224 check_optflags -fno-math-errno
6225 check_optflags -fno-signed-zeros
6227 enabled ftrapv && check_cflags -ftrapv
6229 check_cc -mno-red-zone <<EOF && noredzone_flags="-mno-red-zone"
6234 if enabled icc; then
6235 # Just warnings, no remarks
6237 # -wd: Disable following warnings
6238 # 144, 167, 556: -Wno-pointer-sign
6239 # 188: enumerated type mixed with another type
6240 # 1292: attribute "foo" ignored
6241 # 1419: external declaration in primary source file
6242 # 10006: ignoring unknown option -fno-signed-zeros
6243 # 10148: ignoring unknown option -Wno-parentheses
6244 # 10156: ignoring option '-W'; no argument required
6245 # 13200: No EMMS instruction before call to function
6246 # 13203: No EMMS instruction before return from function
6247 check_cflags -wd144,167,188,556,1292,1419,10006,10148,10156,13200,13203
6248 # 11030: Warning unknown option --as-needed
6249 # 10156: ignoring option '-export'; no argument required
6250 check_ldflags -wd10156,11030
6251 # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
6252 enable ebp_available
6253 # The test above does not test linking
6254 enabled lto && disable symver_asm_label
6255 if enabled x86_32; then
6256 icc_version=$($cc -dumpversion)
6257 test ${icc_version%%.*} -ge 11 &&
6258 check_cflags -falign-stack=maintain-16-byte ||
6259 disable aligned_stack
6261 elif enabled ccc; then
6262 # disable some annoying warnings
6263 add_cflags -msg_disable bitnotint
6264 add_cflags -msg_disable mixfuncvoid
6265 add_cflags -msg_disable nonstandcast
6266 add_cflags -msg_disable unsupieee
6267 elif enabled gcc; then
6268 check_optflags -fno-tree-vectorize
6269 check_cflags -Werror=format-security
6270 check_cflags -Werror=implicit-function-declaration
6271 check_cflags -Werror=missing-prototypes
6272 check_cflags -Werror=return-type
6273 check_cflags -Werror=vla
6274 check_cflags -Wformat
6275 check_cflags -fdiagnostics-color=auto
6276 enabled extra_warnings || check_disable_warning -Wno-maybe-uninitialized
6277 elif enabled llvm_gcc; then
6278 check_cflags -mllvm -stack-alignment=16
6279 elif enabled clang; then
6280 check_cflags -mllvm -stack-alignment=16
6281 check_cflags -mstack-alignment=16
6282 check_cflags -Qunused-arguments
6283 check_cflags -Werror=implicit-function-declaration
6284 check_cflags -Werror=missing-prototypes
6285 check_cflags -Werror=return-type
6286 elif enabled cparser; then
6287 add_cflags -Wno-missing-variable-declarations
6288 add_cflags -Wno-empty-statement
6289 elif enabled armcc; then
6290 add_cflags -W${armcc_opt},--diag_suppress=4343 # hardfp compat
6291 add_cflags -W${armcc_opt},--diag_suppress=3036 # using . as system include dir
6292 # 2523: use of inline assembly is deprecated
6293 add_cflags -W${armcc_opt},--diag_suppress=2523
6294 add_cflags -W${armcc_opt},--diag_suppress=1207
6295 add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
6296 add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
6297 add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
6298 add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
6299 elif enabled tms470; then
6300 add_cflags -pds=824 -pds=837
6302 elif enabled pathscale; then
6303 add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
6304 elif enabled_any msvc icl; then
6305 enabled x86_32 && disable aligned_stack
6306 enabled_all x86_32 debug && add_cflags -Oy-
6307 enabled debug && add_ldflags -debug
6308 enable pragma_deprecated
6309 if enabled icl; then
6310 # -Qansi-alias is basically -fstrict-aliasing, but does not work
6311 # (correctly) on icl 13.x.
6312 check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" &&
6313 add_cflags -Qansi-alias
6314 # Some inline asm is not compilable in debug
6315 if enabled debug; then
6316 disable ebp_available
6317 disable ebx_available
6320 # msvcrt10 x64 incorrectly enables log2, only msvcrt12 (MSVC 2013) onwards actually has log2.
6321 check_cpp_condition crtversion.h "_VC_CRT_MAJOR_VERSION >= 12" || disable log2
6322 # The CRT headers contain __declspec(restrict) in a few places, but if redefining
6323 # restrict, this might break. MSVC 2010 and 2012 fail with __declspec(__restrict)
6324 # (as it ends up if the restrict redefine is done before including stdlib.h), while
6325 # MSVC 2013 and newer can handle it fine.
6326 # If this declspec fails, force including stdlib.h before the restrict redefinition
6327 # happens in config.h.
6328 if [ $_restrict != restrict ]; then
6329 check_cc <<EOF || add_cflags -FIstdlib.h
6330 __declspec($_restrict) void* foo(int);
6333 check_func strtoll || add_cflags -Dstrtoll=_strtoi64
6334 check_func strtoull || add_cflags -Dstrtoull=_strtoui64
6335 # the new SSA optimzer in VS2015 U3 is mis-optimizing some parts of the code
6336 # Issue has been fixed in MSVC v19.00.24218.
6337 check_cpp_condition windows.h "_MSC_FULL_VER >= 190024218" ||
6338 check_cflags -d2SSAOptimizer-
6339 # enable utf-8 source processing on VS2015 U2 and newer
6340 check_cpp_condition windows.h "_MSC_FULL_VER >= 190023918" &&
6344 for pfx in "" host_; do
6345 varname=${pfx%_}cc_type
6346 eval "type=\$$varname"
6347 if [ $type = "msvc" ]; then
6348 check_${pfx}cc <<EOF || add_${pfx}cflags -Dinline=__inline
6349 static inline int foo(int a) { return a; }
6356 add_asflags -Qunused-arguments
6362 check_ldflags -Qunused-arguments
6368 enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
6371 add_cppflags -Dmain=plan9_main
6375 enable frame_thread_encoder
6377 enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
6379 check_deps $CONFIG_LIST \
6384 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"
6387 if test $target_os = "haiku"; then
6389 disable posix_memalign
6392 enabled_all dxva2 dxva2api_cobj CoTaskMemFree &&
6393 prepend ffmpeg_libs $($ldflags_filter "-lole32") &&
6396 ! enabled_any memalign posix_memalign aligned_malloc &&
6397 enabled simd_align_16 && enable memalign_hack
6400 # -> enable ${lib}_deps_${dep}
6401 # -> add $dep to ${lib}_deps only once
6405 enabled "${lib}_deps_${dep}" && return 0
6406 enable "${lib}_deps_${dep}"
6407 prepend "${lib}_deps" $dep
6410 # merge deps lib components
6411 # merge all ${component}_deps into ${lib}_deps and ${lib}_deps_*
6416 enabled $comp || continue
6417 eval "dep=\"\$${comp}_deps\""
6424 merge_deps libavfilter $FILTER_LIST
6426 map 'enabled $v && intrinsics=${v#intrinsics_}' $INTRINSICS_LIST
6428 for thread in $THREADS_LIST; do
6429 if enabled $thread; then
6430 test -n "$thread_type" &&
6431 die "ERROR: Only one thread type must be selected." ||
6432 thread_type="$thread"
6436 if disabled stdatomic_h; then
6437 if enabled atomics_gcc; then
6438 add_cppflags '-I\$(SRC_PATH)/compat/atomics/gcc'
6439 elif enabled atomics_win32; then
6440 add_cppflags '-I\$(SRC_PATH)/compat/atomics/win32'
6441 elif enabled atomics_suncc; then
6442 add_cppflags '-I\$(SRC_PATH)/compat/atomics/suncc'
6443 elif enabled pthreads; then
6444 add_compat atomics/pthread/stdatomic.o
6445 add_cppflags '-I\$(SRC_PATH)/compat/atomics/pthread'
6447 enabled threads && die "Threading is enabled, but no atomics are available"
6448 add_cppflags '-I\$(SRC_PATH)/compat/atomics/dummy'
6452 # Check if requested libraries were found.
6453 for lib in $AUTODETECT_LIBS; do
6454 requested $lib && ! enabled $lib && die "ERROR: $lib requested but not found";
6457 enabled zlib && add_cppflags -DZLIB_CONST
6459 # conditional library dependencies, in linking order
6460 enabled afftfilt_filter && prepend avfilter_deps "avcodec"
6461 enabled amovie_filter && prepend avfilter_deps "avformat avcodec"
6462 enabled aresample_filter && prepend avfilter_deps "swresample"
6463 enabled asyncts_filter && prepend avfilter_deps "avresample"
6464 enabled atempo_filter && prepend avfilter_deps "avcodec"
6465 enabled cover_rect_filter && prepend avfilter_deps "avformat avcodec"
6466 enabled ebur128_filter && enabled swresample && prepend avfilter_deps "swresample"
6467 enabled elbg_filter && prepend avfilter_deps "avcodec"
6468 enabled fftfilt_filter && prepend avfilter_deps "avcodec"
6469 enabled find_rect_filter && prepend avfilter_deps "avformat avcodec"
6470 enabled mcdeint_filter && prepend avfilter_deps "avcodec"
6471 enabled movie_filter && prepend avfilter_deps "avformat avcodec"
6472 enabled pan_filter && prepend avfilter_deps "swresample"
6473 enabled pp_filter && prepend avfilter_deps "postproc"
6474 enabled removelogo_filter && prepend avfilter_deps "avformat avcodec swscale"
6475 enabled resample_filter && prepend avfilter_deps "avresample"
6476 enabled sab_filter && prepend avfilter_deps "swscale"
6477 enabled scale_filter && prepend avfilter_deps "swscale"
6478 enabled scale2ref_filter && prepend avfilter_deps "swscale"
6479 enabled sofalizer_filter && prepend avfilter_deps "avcodec"
6480 enabled showcqt_filter && prepend avfilter_deps "avformat avcodec swscale"
6481 enabled showfreqs_filter && prepend avfilter_deps "avcodec"
6482 enabled showspectrum_filter && prepend avfilter_deps "avcodec"
6483 enabled smartblur_filter && prepend avfilter_deps "swscale"
6484 enabled spectrumsynth_filter && prepend avfilter_deps "avcodec"
6485 enabled subtitles_filter && prepend avfilter_deps "avformat avcodec"
6486 enabled uspp_filter && prepend avfilter_deps "avcodec"
6488 enabled lavfi_indev && prepend avdevice_deps "avfilter"
6490 enabled opus_decoder && prepend avcodec_deps "swresample"
6494 eval "deps=\$$lib_deps"
6495 append $lib_deps $(map 'eval echo \$${v}_deps' $deps)
6499 #we have to remove gpl from the deps here as some code assumes all lib deps are libs
6500 postproc_deps="$(filter_out 'gpl' $postproc_deps)"
6502 map 'expand_deps $v' $LIBRARY_LIST
6504 echo "install prefix $prefix"
6505 echo "source path $source_path"
6506 echo "C compiler $cc"
6507 echo "C library $libc_type"
6508 if test "$host_cc" != "$cc"; then
6509 echo "host C compiler $host_cc"
6510 echo "host C library $host_libc_type"
6512 echo "ARCH $arch ($cpu)"
6513 if test "$build_suffix" != ""; then
6514 echo "build suffix $build_suffix"
6516 if test "$progs_suffix" != ""; then
6517 echo "progs suffix $progs_suffix"
6519 if test "$extra_version" != ""; then
6520 echo "version string suffix $extra_version"
6522 echo "big-endian ${bigendian-no}"
6523 echo "runtime cpu detection ${runtime_cpudetect-no}"
6524 if enabled x86; then
6525 echo "${yasmexe} ${yasm-no}"
6526 echo "MMX enabled ${mmx-no}"
6527 echo "MMXEXT enabled ${mmxext-no}"
6528 echo "3DNow! enabled ${amd3dnow-no}"
6529 echo "3DNow! extended enabled ${amd3dnowext-no}"
6530 echo "SSE enabled ${sse-no}"
6531 echo "SSSE3 enabled ${ssse3-no}"
6532 echo "AESNI enabled ${aesni-no}"
6533 echo "AVX enabled ${avx-no}"
6534 echo "XOP enabled ${xop-no}"
6535 echo "FMA3 enabled ${fma3-no}"
6536 echo "FMA4 enabled ${fma4-no}"
6537 echo "i686 features enabled ${i686-no}"
6538 echo "CMOV is fast ${fast_cmov-no}"
6539 echo "EBX available ${ebx_available-no}"
6540 echo "EBP available ${ebp_available-no}"
6542 if enabled aarch64; then
6543 echo "NEON enabled ${neon-no}"
6544 echo "VFP enabled ${vfp-no}"
6546 if enabled arm; then
6547 echo "ARMv5TE enabled ${armv5te-no}"
6548 echo "ARMv6 enabled ${armv6-no}"
6549 echo "ARMv6T2 enabled ${armv6t2-no}"
6550 echo "VFP enabled ${vfp-no}"
6551 echo "NEON enabled ${neon-no}"
6552 echo "THUMB enabled ${thumb-no}"
6554 if enabled mips; then
6555 echo "MIPS FPU enabled ${mipsfpu-no}"
6556 echo "MIPS DSP R1 enabled ${mipsdsp-no}"
6557 echo "MIPS DSP R2 enabled ${mipsdspr2-no}"
6558 echo "MIPS MSA enabled ${msa-no}"
6559 echo "LOONGSON MMI enabled ${mmi-no}"
6561 if enabled ppc; then
6562 echo "AltiVec enabled ${altivec-no}"
6563 echo "VSX enabled ${vsx-no}"
6564 echo "POWER8 enabled ${power8-no}"
6565 echo "PPC 4xx optimizations ${ppc4xx-no}"
6566 echo "dcbzl available ${dcbzl-no}"
6568 echo "debug symbols ${debug-no}"
6569 echo "strip symbols ${stripping-no}"
6570 echo "optimize for size ${small-no}"
6571 echo "optimizations ${optimizations-no}"
6572 echo "static ${static-no}"
6573 echo "shared ${shared-no}"
6574 echo "postprocessing support ${postproc-no}"
6575 echo "new filter support ${avfilter-no}"
6576 echo "network support ${network-no}"
6577 echo "threading support ${thread_type-no}"
6578 echo "safe bitstream reader ${safe_bitstream_reader-no}"
6579 echo "SDL2 support ${sdl2-no}"
6580 echo "opencl enabled ${opencl-no}"
6581 echo "JNI support ${jni-no}"
6582 echo "texi2html enabled ${texi2html-no}"
6583 echo "perl enabled ${perl-no}"
6584 echo "pod2man enabled ${pod2man-no}"
6585 echo "makeinfo enabled ${makeinfo-no}"
6586 echo "makeinfo supports HTML ${makeinfo_html-no}"
6587 test -n "$random_seed" &&
6588 echo "random seed ${random_seed}"
6591 echo "Enabled programs:"
6592 print_enabled '' $PROGRAM_LIST | print_in_columns
6595 echo "External libraries:"
6596 print_enabled '' $EXTERNAL_LIBRARY_LIST | print_in_columns
6599 echo "External libraries providing hardware acceleration:"
6600 print_enabled '' $HWACCEL_LIBRARY_LIST | print_in_columns
6604 print_enabled '' $LIBRARY_LIST | print_in_columns
6607 for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
6608 echo "Enabled ${type}s:"
6609 eval list=\$$(toupper $type)_LIST
6610 print_enabled '_*' $list | print_in_columns
6614 license="LGPL version 2.1 or later"
6615 if enabled nonfree; then
6616 license="nonfree and unredistributable"
6617 elif enabled gplv3; then
6618 license="GPL version 3 or later"
6619 elif enabled lgplv3; then
6620 license="LGPL version 3 or later"
6621 elif enabled gpl; then
6622 license="GPL version 2 or later"
6625 echo "License: $license"
6627 echo "Creating config.mak, config.h, and doc/config.texi..."
6629 test -e Makefile || echo "include $source_path/Makefile" > Makefile
6631 enabled stripping || strip="echo skipping strip"
6633 config_files="$TMPH config.mak doc/config.texi"
6635 cat > config.mak <<EOF
6636 # Automatically generated by configure - do not modify!
6637 ifndef FFMPEG_CONFIG_MAK
6639 FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
6641 LIBDIR=\$(DESTDIR)$libdir
6642 SHLIBDIR=\$(DESTDIR)$shlibdir
6643 INCDIR=\$(DESTDIR)$incdir
6644 BINDIR=\$(DESTDIR)$bindir
6645 DATADIR=\$(DESTDIR)$datadir
6646 DOCDIR=\$(DESTDIR)$docdir
6647 MANDIR=\$(DESTDIR)$mandir
6648 PKGCONFIGDIR=\$(DESTDIR)$pkgconfigdir
6649 INSTALL_NAME_DIR=$install_name_dir
6650 SRC_PATH=$source_path
6651 SRC_LINK=$source_link
6652 ifndef MAIN_MAKEFILE
6653 SRC_PATH:=\$(SRC_PATH:.%=..%)
6657 INTRINSICS=$intrinsics
6664 DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
6666 DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
6679 OBJCFLAGS=$OBJCFLAGS
6699 LDEXEFLAGS=$LDEXEFLAGS
6700 LDLIBFLAGS=$LDLIBFLAGS
6701 SHFLAGS=$(echo $($ldflags_filter $SHFLAGS))
6702 ASMSTRIPFLAGS=$ASMSTRIPFLAGS
6703 YASMFLAGS=$YASMFLAGS
6704 BUILDSUF=$build_suffix
6705 PROGSSUF=$progs_suffix
6713 EXTRA_VERSION=$extra_version
6716 CCDEP_FLAGS=$CCDEP_FLAGS
6718 ASDEP_FLAGS=$ASDEP_FLAGS
6719 CC_DEPFLAGS=$CC_DEPFLAGS
6720 AS_DEPFLAGS=$AS_DEPFLAGS
6723 HOSTCFLAGS=$host_cflags
6724 HOSTCPPFLAGS=$host_cppflags
6725 HOSTEXESUF=$HOSTEXESUF
6726 HOSTLDFLAGS=$host_ldflags
6729 DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
6730 HOSTCCDEP=$HOSTCCDEP
6731 HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
6732 HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
6736 TARGET_EXEC=$target_exec $target_exec_args
6737 TARGET_PATH=$target_path
6738 TARGET_SAMPLES=${target_samples:-\$(SAMPLES)}
6739 CFLAGS-ffplay=${sdl2_cflags}
6740 ZLIB=$($ldflags_filter -lz)
6741 LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
6742 EXTRALIBS=$extralibs
6743 COMPAT_OBJS=$compat_objs
6746 LIBTARGET=${LIBTARGET}
6747 SLIBNAME=${SLIBNAME}
6748 SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
6749 SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
6750 SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
6751 SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
6752 SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
6753 SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
6754 SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
6755 SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
6756 VERSION_SCRIPT_POSTPROCESS_CMD=${VERSION_SCRIPT_POSTPROCESS_CMD}
6757 SAMPLES:=${samples:-\$(FATE_SAMPLES)}
6758 NOREDZONE_FLAGS=$noredzone_flags
6763 name=$(toupper $lcname)
6764 file=$source_path/$lcname/version.h
6765 eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
6766 enabled raise_major && eval ${name}_VERSION_MAJOR=$((${name}_VERSION_MAJOR+100))
6767 eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
6768 eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
6769 eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
6770 eval echo "${lcname}_VERSION_MINOR=\$${name}_VERSION_MINOR" >> config.mak
6773 map 'get_version $v' $LIBRARY_LIST
6775 map 'eval echo "${v}_FFLIBS=\$${v}_deps" >> config.mak' $LIBRARY_LIST
6777 print_program_libs(){
6778 eval "program_libs=\$${1}_libs"
6779 eval echo "LIBS-${1}=${program_libs}" >> config.mak
6782 map 'print_program_libs $v' $PROGRAM_LIST
6785 /* Automatically generated by configure - do not modify! */
6786 #ifndef FFMPEG_CONFIG_H
6787 #define FFMPEG_CONFIG_H
6788 #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
6789 #define FFMPEG_LICENSE "$(c_escape $license)"
6790 #define CONFIG_THIS_YEAR 2017
6791 #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
6792 #define AVCONV_DATADIR "$(eval c_escape $datadir)"
6793 #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
6794 #define av_restrict $_restrict
6795 #define EXTERN_PREFIX "${extern_prefix}"
6796 #define EXTERN_ASM ${extern_prefix}
6797 #define BUILDSUF "$build_suffix"
6798 #define SLIBSUF "$SLIBSUF"
6799 #define HAVE_MMX2 HAVE_MMXEXT
6800 #define SWS_MAX_FILTER_SIZE $sws_max_filter_size
6803 test -n "$assert_level" &&
6804 echo "#define ASSERT_LEVEL $assert_level" >>$TMPH
6806 test -n "$malloc_prefix" &&
6807 echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
6809 if enabled yasm; then
6810 append config_files $TMPASM
6814 enabled getenv || echo "#define getenv(x) NULL" >> $TMPH
6820 echo "@c auto-generated by configure - do not modify! " > doc/config.texi
6822 print_config ARCH_ "$config_files" $ARCH_LIST
6823 print_config HAVE_ "$config_files" $HAVE_LIST
6824 print_config CONFIG_ "$config_files" $CONFIG_LIST \
6828 echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
6829 echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
6831 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
6832 cp_if_changed $TMPH config.h
6835 enabled yasm && cp_if_changed $TMPASM config.asm
6838 /* Generated by ffconf */
6839 #ifndef AVUTIL_AVCONFIG_H
6840 #define AVUTIL_AVCONFIG_H
6843 print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
6845 echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
6847 cp_if_changed $TMPH libavutil/avconfig.h
6849 if test -n "$WARNINGS"; then
6850 printf "\n%s%s$WARNINGS%s" "$warn_color" "$bold_color" "$reset_color"
6851 enabled fatal_warnings && exit 1
6854 # generate the lists of enabled components
6855 print_enabled_components(){
6860 echo "static const $struct_name *$name[] = {" > $TMPH
6862 enabled $c && printf " &ff_%s,\n" $c >> $TMPH
6864 echo " NULL };" >> $TMPH
6865 cp_if_changed $TMPH $file
6868 print_enabled_components libavcodec/bsf_list.c AVBitStreamFilter bitstream_filters $BSF_LIST
6869 print_enabled_components libavformat/protocol_list.c URLProtocol url_protocols $PROTOCOL_LIST
6871 # build pkg-config files
6874 eval printf "\"lib${1}${build_suffix} >= \$LIB$(toupper ${1})_VERSION, \""
6877 pkgconfig_generate(){
6879 shortname=${name#lib}${build_suffix}
6883 requires=$(map 'lib_version $v' $(eval echo \$${name#lib}_deps))
6884 requires=${requires%, }
6885 enabled ${name#lib} || return 0
6887 cat <<EOF > $name/$name${build_suffix}.pc
6889 exec_prefix=\${prefix}
6894 Description: $comment
6896 Requires: $(enabled shared || echo $requires)
6897 Requires.private: $(enabled shared && echo $requires)
6899 Libs: -L\${libdir} $(enabled rpath && echo "-Wl,-rpath,\${libdir}") -l${shortname} $(enabled shared || echo $libs)
6900 Libs.private: $(enabled shared && echo $libs)
6901 Cflags: -I\${includedir}
6904 mkdir -p doc/examples/pc-uninstalled
6905 includedir=${source_path}
6906 [ "$includedir" = . ] && includedir="\${pcfiledir}/../../.."
6907 cat <<EOF > doc/examples/pc-uninstalled/${name}-uninstalled.pc
6910 libdir=\${pcfiledir}/../../../$name
6911 includedir=${includedir}
6914 Description: $comment
6918 Libs: -L\${libdir} -Wl,-rpath,\${libdir} -l${shortname} $(enabled shared || echo $libs)
6919 Cflags: -I\${includedir}
6923 pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION" "$LIBRT $LIBM"
6924 pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs"
6925 pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs"
6926 pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs"
6927 pkgconfig_generate libavfilter "FFmpeg audio/video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
6928 pkgconfig_generate libpostproc "FFmpeg postprocessing library" "$LIBPOSTPROC_VERSION" ""
6929 pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$LIBM"
6930 pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM"
6931 pkgconfig_generate libswresample "FFmpeg audio resampling library" "$LIBSWRESAMPLE_VERSION" "$LIBM $LIBSOXR"