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 [PREFIX/lib]
88 --incdir=DIR install includes in DIR [PREFIX/include]
89 --mandir=DIR install man page in DIR [PREFIX/share/man]
90 --enable-rpath use rpath to allow installing libraries in paths
91 not part of the dynamic linker search path
92 use rpath when linking programs [USE WITH CARE]
95 --enable-gpl allow use of GPL code, the resulting libs
96 and binaries will be under GPL [no]
97 --enable-version3 upgrade (L)GPL to version 3 [no]
98 --enable-nonfree allow use of nonfree code, the resulting libs
99 and binaries will be unredistributable [no]
101 Configuration options:
102 --disable-static do not build static libraries [no]
103 --enable-shared build shared libraries [no]
104 --enable-small optimize for size instead of speed
105 --disable-runtime-cpudetect disable detecting cpu capabilities at runtime (smaller binary)
106 --enable-gray enable full grayscale support (slower color)
107 --disable-swscale-alpha disable alpha channel support in swscale
108 --disable-all disable building components, libraries and programs
109 --enable-incompatible-libav-abi enable incompatible Libav fork ABI [no]
110 --enable-raise-major increase major version numbers in sonames [no]
113 --disable-programs do not build command line programs
114 --disable-ffmpeg disable ffmpeg build
115 --disable-ffplay disable ffplay build
116 --disable-ffprobe disable ffprobe build
117 --disable-ffserver disable ffserver build
119 Documentation options:
120 --disable-doc do not build documentation
121 --disable-htmlpages do not build HTML documentation pages
122 --disable-manpages do not build man documentation pages
123 --disable-podpages do not build POD documentation pages
124 --disable-txtpages do not build text documentation pages
127 --disable-avdevice disable libavdevice build
128 --disable-avcodec disable libavcodec build
129 --disable-avformat disable libavformat build
130 --disable-avutil disable libavutil 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 [auto]
137 --disable-w32threads disable Win32 threads [auto]
138 --disable-os2threads disable OS/2 threads [auto]
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 Hardware accelerators:
152 --disable-dxva2 disable DXVA2 code [autodetect]
153 --disable-vaapi disable VAAPI code [autodetect]
154 --disable-vda disable VDA code [autodetect]
155 --disable-vdpau disable VDPAU code [autodetect]
157 Individual component options:
158 --disable-everything disable all components listed below
159 --disable-encoder=NAME disable encoder NAME
160 --enable-encoder=NAME enable encoder NAME
161 --disable-encoders disable all encoders
162 --disable-decoder=NAME disable decoder NAME
163 --enable-decoder=NAME enable decoder NAME
164 --disable-decoders disable all decoders
165 --disable-hwaccel=NAME disable hwaccel NAME
166 --enable-hwaccel=NAME enable hwaccel NAME
167 --disable-hwaccels disable all hwaccels
168 --disable-muxer=NAME disable muxer NAME
169 --enable-muxer=NAME enable muxer NAME
170 --disable-muxers disable all muxers
171 --disable-demuxer=NAME disable demuxer NAME
172 --enable-demuxer=NAME enable demuxer NAME
173 --disable-demuxers disable all demuxers
174 --enable-parser=NAME enable parser NAME
175 --disable-parser=NAME disable parser NAME
176 --disable-parsers disable all parsers
177 --enable-bsf=NAME enable bitstream filter NAME
178 --disable-bsf=NAME disable bitstream filter NAME
179 --disable-bsfs disable all bitstream filters
180 --enable-protocol=NAME enable protocol NAME
181 --disable-protocol=NAME disable protocol NAME
182 --disable-protocols disable all protocols
183 --enable-indev=NAME enable input device NAME
184 --disable-indev=NAME disable input device NAME
185 --disable-indevs disable input devices
186 --enable-outdev=NAME enable output device NAME
187 --disable-outdev=NAME disable output device NAME
188 --disable-outdevs disable output devices
189 --disable-devices disable all devices
190 --enable-filter=NAME enable filter NAME
191 --disable-filter=NAME disable filter NAME
192 --disable-filters disable all filters
194 External library support:
195 --enable-avisynth enable reading of AviSynth script files [no]
196 --disable-bzlib disable bzlib [autodetect]
197 --enable-fontconfig enable fontconfig
198 --enable-frei0r enable frei0r video filtering
199 --enable-gnutls enable gnutls [no]
200 --disable-iconv disable iconv [autodetect]
201 --enable-ladspa enable LADSPA audio filtering
202 --enable-libaacplus enable AAC+ encoding via libaacplus [no]
203 --enable-libass enable libass subtitles rendering [no]
204 --enable-libbluray enable BluRay reading using libbluray [no]
205 --enable-libbs2b enable bs2b DSP library [no]
206 --enable-libcaca enable textual display using libcaca
207 --enable-libcelt enable CELT decoding via libcelt [no]
208 --enable-libcdio enable audio CD grabbing with libcdio
209 --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
211 --enable-libfaac enable AAC encoding via libfaac [no]
212 --enable-libfdk-aac enable AAC de/encoding via libfdk-aac [no]
213 --enable-libflite enable flite (voice synthesis) support via libflite [no]
214 --enable-libfreetype enable libfreetype [no]
215 --enable-libfribidi enable libfribidi [no]
216 --enable-libgme enable Game Music Emu via libgme [no]
217 --enable-libgsm enable GSM de/encoding via libgsm [no]
218 --enable-libiec61883 enable iec61883 via libiec61883 [no]
219 --enable-libilbc enable iLBC de/encoding via libilbc [no]
220 --enable-libmodplug enable ModPlug via libmodplug [no]
221 --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
222 --enable-libnut enable NUT (de)muxing via libnut,
223 native (de)muxer exists [no]
224 --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
225 --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
226 --enable-libopencv enable video filtering via libopencv [no]
227 --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
228 --enable-libopus enable Opus de/encoding via libopus [no]
229 --enable-libpulse enable Pulseaudio input via libpulse [no]
230 --enable-libquvi enable quvi input via libquvi [no]
231 --enable-librtmp enable RTMP[E] support via librtmp [no]
232 --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
233 --enable-libshine enable fixed-point MP3 encoding via libshine [no]
234 --enable-libsmbclient enable Samba protocol via libsmbclient [no]
235 --enable-libsoxr enable Include libsoxr resampling [no]
236 --enable-libspeex enable Speex de/encoding via libspeex [no]
237 --enable-libssh enable SFTP protocol via libssh [no]
238 --enable-libstagefright-h264 enable H.264 decoding via libstagefright [no]
239 --enable-libtheora enable Theora encoding via libtheora [no]
240 --enable-libtwolame enable MP2 encoding via libtwolame [no]
241 --enable-libutvideo enable Ut Video encoding and decoding via libutvideo [no]
242 --enable-libv4l2 enable libv4l2/v4l-utils [no]
243 --enable-libvidstab enable video stabilization using vid.stab [no]
244 --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
245 --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
246 --enable-libvorbis enable Vorbis en/decoding via libvorbis,
247 native implementation exists [no]
248 --enable-libvpx enable VP8 and VP9 de/encoding via libvpx [no]
249 --enable-libwavpack enable wavpack encoding via libwavpack [no]
250 --enable-libwebp enable WebP encoding via libwebp [no]
251 --enable-libx264 enable H.264 encoding via x264 [no]
252 --enable-libx265 enable HEVC encoding via x265 [no]
253 --enable-libxavs enable AVS encoding via xavs [no]
254 --enable-libxvid enable Xvid encoding via xvidcore,
255 native MPEG-4/Xvid encoder exists [no]
256 --enable-libzmq enable message passing via libzmq [no]
257 --enable-libzvbi enable teletext support via libzvbi [no]
258 --disable-lzma disable lzma [autodetect]
259 --enable-decklink enable Blackmagick DeckLink I/O support [no]
260 --enable-openal enable OpenAL 1.1 capture support [no]
261 --enable-opencl enable OpenCL code
262 --enable-opengl enable OpenGL rendering [no]
263 --enable-openssl enable openssl [no]
264 --disable-sdl disable sdl [autodetect]
265 --enable-x11grab enable X11 grabbing [no]
266 --disable-xlib disable xlib [autodetect]
267 --disable-zlib disable zlib [autodetect]
270 --arch=ARCH select architecture [$arch]
271 --cpu=CPU select the minimum required CPU (affects
272 instruction selection, may crash on older CPUs)
273 --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
274 --progs-suffix=SUFFIX program name suffix []
275 --enable-cross-compile assume a cross-compiler is used
276 --sysroot=PATH root of cross-build tree
277 --sysinclude=PATH location of cross-build system headers
278 --target-os=OS compiler targets OS [$target_os]
279 --target-exec=CMD command to run executables on target
280 --target-path=DIR path to view of build directory on target
281 --target-samples=DIR path to samples directory on target
282 --tempprefix=PATH force fixed dir/prefix instead of mktemp for checks
283 --toolchain=NAME set tool defaults according to NAME
284 --nm=NM use nm tool NM [$nm_default]
285 --ar=AR use archive tool AR [$ar_default]
286 --as=AS use assembler AS [$as_default]
287 --windres=WINDRES use windows resource compiler WINDRES [$windres_default]
288 --yasmexe=EXE use yasm-compatible assembler EXE [$yasmexe_default]
289 --cc=CC use C compiler CC [$cc_default]
290 --cxx=CXX use C compiler CXX [$cxx_default]
291 --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
292 --ld=LD use linker LD [$ld_default]
293 --pkg-config=PKGCONFIG use pkg-config tool PKGCONFIG [$pkg_config_default]
294 --pkg-config-flags=FLAGS pass additional flags to pkgconf []
295 --ranlib=RANLIB use ranlib RANLIB [$ranlib_default]
296 --doxygen=DOXYGEN use DOXYGEN to generate API doc [$doxygen_default]
297 --host-cc=HOSTCC use host C compiler HOSTCC
298 --host-cflags=HCFLAGS use HCFLAGS when compiling for host
299 --host-cppflags=HCPPFLAGS use HCPPFLAGS when compiling for host
300 --host-ld=HOSTLD use host linker HOSTLD
301 --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
302 --host-libs=HLIBS use libs HLIBS when linking for host
303 --host-os=OS compiler host OS [$target_os]
304 --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
305 --extra-cxxflags=ECFLAGS add ECFLAGS to CXXFLAGS [$CXXFLAGS]
306 --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
307 --extra-ldexeflags=ELDFLAGS add ELDFLAGS to LDEXEFLAGS [$LDEXEFLAGS]
308 --extra-libs=ELIBS add ELIBS [$ELIBS]
309 --extra-version=STRING version string suffix []
310 --optflags=OPTFLAGS override optimization-related compiler flags
311 --build-suffix=SUFFIX library name suffix []
312 --enable-pic build position-independent code
313 --enable-thumb compile for Thumb instruction set
314 --enable-lto use link-time optimization
316 Advanced options (experts only):
317 --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
318 --disable-symver disable symbol versioning
319 --enable-hardcoded-tables use hardcoded tables instead of runtime generation
320 --disable-safe-bitstream-reader
321 disable buffer boundary checking in bitreaders
322 (faster, but may crash)
323 --enable-memalign-hack emulate memalign, interferes with memory debuggers
324 --sws-max-filter-size=N the max filter size swscale uses [$sws_max_filter_size_default]
326 Optimization options (experts only):
327 --disable-asm disable all assembly optimizations
328 --disable-altivec disable AltiVec optimizations
329 --disable-amd3dnow disable 3DNow! optimizations
330 --disable-amd3dnowext disable 3DNow! extended optimizations
331 --disable-mmx disable MMX optimizations
332 --disable-mmxext disable MMXEXT optimizations
333 --disable-sse disable SSE optimizations
334 --disable-sse2 disable SSE2 optimizations
335 --disable-sse3 disable SSE3 optimizations
336 --disable-ssse3 disable SSSE3 optimizations
337 --disable-sse4 disable SSE4 optimizations
338 --disable-sse42 disable SSE4.2 optimizations
339 --disable-avx disable AVX optimizations
340 --disable-xop disable XOP optimizations
341 --disable-fma3 disable FMA3 optimizations
342 --disable-fma4 disable FMA4 optimizations
343 --disable-avx2 disable AVX2 optimizations
344 --disable-armv5te disable armv5te optimizations
345 --disable-armv6 disable armv6 optimizations
346 --disable-armv6t2 disable armv6t2 optimizations
347 --disable-vfp disable VFP optimizations
348 --disable-neon disable NEON optimizations
349 --disable-inline-asm disable use of inline assembly
350 --disable-yasm disable use of nasm/yasm assembly
351 --disable-mips32r2 disable MIPS32R2 optimizations
352 --disable-mipsdspr1 disable MIPS DSP ASE R1 optimizations
353 --disable-mipsdspr2 disable MIPS DSP ASE R2 optimizations
354 --disable-mipsfpu disable floating point MIPS optimizations
355 --disable-fast-unaligned consider unaligned accesses slow
357 Developer options (useful when working on FFmpeg itself):
358 --disable-debug disable debugging symbols
359 --enable-debug=LEVEL set the debug level [$debuglevel]
360 --disable-optimizations disable compiler optimizations
361 --enable-extra-warnings enable more compiler warnings
362 --disable-stripping disable stripping of executables and shared libraries
363 --assert-level=level 0(default), 1 or 2, amount of assertion testing,
364 2 causes a slowdown at runtime.
365 --enable-memory-poisoning fill heap uninitialized allocated space with arbitrary data
366 --valgrind=VALGRIND run "make fate" tests through valgrind to detect memory
367 leaks and errors, using the specified valgrind binary.
368 Cannot be combined with --target-exec
369 --enable-ftrapv Trap arithmetic overflows
370 --samples=PATH location of test samples for FATE, if not set use
371 \$FATE_SAMPLES at make invocation time.
372 --enable-neon-clobber-test check NEON registers for clobbering (should be
373 used only for debugging purposes)
374 --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
375 should be used only for debugging purposes)
376 --enable-random randomly enable/disable components
378 --enable-random=LIST randomly enable/disable specific components or
379 --disable-random=LIST component groups. LIST is a comma-separated list
380 of NAME[:PROB] entries where NAME is a component
381 (group) and PROB the probability associated with
383 --random-seed=VALUE seed value for --enable/disable-random
385 NOTE: Object files are built at the place where configure is launched.
393 echo "$@" >> $logfile
398 pr -n -t $1 >> $logfile
409 WARNINGS="${WARNINGS}WARNING: $*\n"
416 If you think configure made a mistake, make sure you are using the latest
417 version from Git. If the latest version fails, report the problem to the
418 ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
420 if disabled logging; then
422 Rerun configure with logging enabled (do not use --disable-logging), and
423 include the log this produces with your report.
427 Include the log file "$logfile" produced by configure as this will help
434 # Avoid locale weirdness, besides we really just want to translate ASCII.
436 echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
440 echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
444 echo "$*" | sed 's/["\\]/\\\0/g'
448 v=$(echo "$1" | sed "s/'/'\\\\''/g")
449 test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
454 echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//;s/\\r//g'
461 eval "case $v in $pat) echo $v ;; esac"
469 eval "case $v in $pat) ;; *) echo $v ;; esac"
476 for v; do eval $m; done
482 for v; do echo ${v}${suffix}; done
497 eval : \${$var:=$value}
502 echo $@ | sed 's/[^A-Za-z0-9_]/_/g'
508 eval $(sanitize_var_name "$var")='$*'
512 eval echo \$$(sanitize_var_name "$1")
517 eval level=\${${pvar}_level:=0}
518 eval ${pvar}_${level}="\$$pvar"
519 eval ${pvar}_level=$(($level+1))
525 eval level=\${${pvar}_level:-0}
526 test $level = 0 && continue
527 eval level=$(($level-1))
528 eval $pvar="\${${pvar}_${level}}"
529 eval ${pvar}_level=$level
530 eval unset ${pvar}_${level}
552 enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
558 disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
564 enabled $var && continue
565 eval sel="\$${var}_select"
566 eval sgs="\$${var}_suggest"
570 enable_deep_weak $sgs
582 disabled $var && continue
591 test "${1#!}" = "$1" && op== || op=!=
592 eval test "x\$${1#!}" $op "xyes"
596 test "${1#!}" = "$1" && op== || op=!=
597 eval test "x\$${1#!}" $op "xno"
602 enabled $opt || return 1
608 disabled $opt || return 1
614 enabled $opt && return 0
620 disabled $opt && return 0
627 eval : \${$opt:=\$${opt}_default}
635 [ $var = $value ] && return 0
643 enabled ${cfg}_checking && die "Circular dependency for $cfg."
644 disabled ${cfg}_checking && continue
645 enable ${cfg}_checking
648 eval dep_all="\$${cfg}_deps"
649 eval dep_any="\$${cfg}_deps_any"
650 eval dep_sel="\$${cfg}_select"
651 eval dep_sgs="\$${cfg}_suggest"
652 eval dep_ifa="\$${cfg}_if"
653 eval dep_ifn="\$${cfg}_if_any"
655 pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
656 do_check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
657 popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
659 [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
660 [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
661 enabled_all $dep_all || disable $cfg
662 enabled_any $dep_any || disable $cfg
663 disabled_any $dep_sel && disable $cfg
665 if enabled $cfg; then
667 enable_deep_weak $dep_sgs
670 disable ${cfg}_checking
679 for cfg in $allopts; do
680 enabled $cfg || continue
681 eval dep_extralibs="\$${cfg}_extralibs"
682 test -n "$dep_extralibs" && add_extralibs $dep_extralibs
690 map 'eval echo "$v \${$v:-no}"' "$@" |
691 awk "BEGIN { split(\"$files\", files) }
693 c = \"$pfx\" toupper(\$1);
699 if (file ~ /\\.h\$/) {
700 printf(\"#define %s %d\\n\", c, v) >>file;
701 } else if (file ~ /\\.asm\$/) {
702 printf(\"%%define %s %d\\n\", c, v) >>file;
703 } else if (file ~ /\\.mak\$/) {
704 n = -v ? \"\" : \"!\";
705 printf(\"%s%s=yes\\n\", n, c) >>file;
706 } else if (file ~ /\\.texi\$/) {
707 pre = -v ? \"\" : \"@c \";
710 gsub(/_/, \"-\", c2);
711 printf(\"%s@set %s %s\\n\", pre, c2, yesno) >>file;
721 enabled $v && printf "%s\n" ${v%$suf};
728 eval "$var=\"\$$var $*\""
734 eval "$var=\"$* \$$var\""
740 for tok in $(eval echo \$$var); do
741 uniq_list="$(filter_out $tok $uniq_list) $tok"
743 eval "$var=\"${uniq_list}\""
751 append CFLAGS $($cflags_filter "$@")
755 append CXXFLAGS $($cflags_filter "$@")
759 append ASFLAGS $($asflags_filter "$@")
763 append LDFLAGS $($ldflags_filter "$@")
767 append LDEXEFLAGS $($ldflags_filter "$@")
771 append ASMSTRIPFLAGS "$@"
775 prepend extralibs $($ldflags_filter "$@")
779 append host_cppflags "$@"
783 append host_cflags $($host_cflags_filter "$@")
787 append host_ldflags $($host_ldflags_filter "$@")
791 append compat_objs $1
793 map 'add_cppflags -D$v' "$@"
798 "$@" >> $logfile 2>&1
803 stat "$1" >> $logfile 2>&1
807 eval printf '%s\\n' $CC_O
811 eval printf '%s\\n' $CC_E
818 check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
825 check_cmd $cxx $CPPFLAGS $CFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
832 check_cmd $cc -Werror=missing-prototypes $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPM
839 check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
843 eval printf '%s\\n' $AS_O
850 check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
854 log check_inline_asm "$@"
859 check_cc "$@" <<EOF && enable $name
860 void foo(void){ __asm__ volatile($code); }
866 check_inline_asm ${1}_inline "\"$2\""
867 echo "$2" | check_as && enable ${1}_external || disable ${1}_external
875 check_cmd $yasmexe $YASMFLAGS -Werror "$@" -o $TMPO $TMPS
879 eval printf '%s\\n' $LD_O
886 flags=$(filter_out '-l*|*.so' $@)
887 libs=$(filter '-l*|*.so' $@)
888 check_$type $($cflags_filter $flags) || return
889 flags=$($ldflags_filter $flags)
890 libs=$($ldflags_filter $libs)
891 check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
896 test "${hdr%.h}" = "${hdr}" &&
897 echo "#include $hdr" ||
898 echo "#include <$hdr>"
908 for hdr in $headers; do
911 echo "int main(void) { $code; return 0; }"
912 } | check_$check "$@"
916 log check_cppflags "$@"
917 check_cc "$@" <<EOF && append CPPFLAGS "$@"
924 set -- $($cflags_filter "$@")
931 log check_cflags "$@"
932 test_cflags "$@" && add_cflags "$@"
936 log check_cxxflags "$@"
937 set -- $($cflags_filter "$@")
938 check_cxx "$@" <<EOF && append CXXFLAGS "$@"
944 log test_ldflags "$@"
945 check_ld "cc" "$@" <<EOF
946 int main(void){ return 0; }
951 log check_ldflags "$@"
952 test_ldflags "$@" && add_ldflags "$@"
956 log test_stripflags "$@"
957 # call check_cc to get a fresh TMPO
959 int main(void) { return 0; }
961 check_cmd $strip $ASMSTRIPFLAGS "$@" $TMPO
965 log check_stripflags "$@"
966 test_stripflags "$@" && add_stripflags "$@"
970 log check_header "$@"
974 check_cpp "$@" <<EOF && enable_safe $header
981 log check_header_oc "$@"
987 echo "#include <$header>"
988 echo "int main(void) { return 0; }"
989 } | check_oc && check_stat "$TMPO" && enable_safe $headers
997 check_ld "cc" "$@" <<EOF && enable $func
999 int main(void){ $func(); }
1004 log check_mathfunc "$@"
1008 test $narg = 2 && args="f, g" || args="f"
1010 check_ld "cc" "$@" <<EOF && enable $func
1012 float foo(float f, float g) { return $func($args); }
1013 int main(void){ return (int) foo; }
1017 check_func_headers(){
1018 log check_func_headers "$@"
1023 for hdr in $headers; do
1026 for func in $funcs; do
1027 echo "long check_$func(void) { return (long) $func; }"
1029 echo "int main(void) { return 0; }"
1030 } | check_ld "cc" "$@" && enable $funcs && enable_safe $headers
1033 check_class_headers_cpp(){
1034 log check_class_headers_cpp "$@"
1039 for hdr in $headers; do
1040 echo "#include <$hdr>"
1042 echo "int main(void) { "
1044 for class in $classes; do
1045 echo "$class obj$i;"
1049 } | check_ld "cxx" "$@" && enable $funcs && enable_safe $headers
1052 check_cpp_condition(){
1053 log check_cpp_condition "$@"
1057 check_cpp "$@" <<EOF
1060 #error "unsatisfied condition: $condition"
1070 check_header $header && check_func $func "$@" && add_extralibs "$@"
1078 check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
1082 log check_lib_cpp "$@"
1086 check_class_headers_cpp "$headers" "$classes" "$@" && add_extralibs "$@"
1090 log check_pkg_config "$@"
1096 check_cmd $pkg_config --exists --print-errors $pkgandversion || return
1097 pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
1098 pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
1099 check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
1100 set_safe ${pkg}_cflags $pkg_cflags &&
1101 set_safe ${pkg}_libs $pkg_libs
1105 check_ld "cc" "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
1111 # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
1112 # are safe but may not be available everywhere. Thus we use
1113 # raise(SIGTERM) instead. The check is run in a subshell so we
1114 # can redirect the "Terminated" message from the shell. SIGBUS
1115 # is not defined by standard C so it is used conditionally.
1117 (check_exec "$@") >> $logfile 2>&1 <<EOF
1119 static void sighandler(int sig){
1125 int (*func_ptr)(void) = foo;
1127 signal(SIGILL, sighandler);
1128 signal(SIGFPE, sighandler);
1129 signal(SIGSEGV, sighandler);
1131 signal(SIGBUS, sighandler);
1143 disable_safe "$type"
1144 check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
1148 log check_struct "$@"
1153 disable_safe "${struct}_${member}"
1154 check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
1155 enable_safe "${struct}_${member}"
1159 log check_builtin "$@"
1165 check_code ld "$headers" "$builtin" "cc" "$@" && enable "$name"
1168 check_compile_assert(){
1169 log check_compile_assert "$@"
1175 check_code cc "$headers" "char c[2 * !!($condition) - 1]" "$@" && enable "$name"
1183 check_lib $header $func "$@" || die "ERROR: $name not found"
1191 check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
1199 check_lib_cpp "$headers" "$classes" "$@" || die "ERROR: $name not found"
1202 require_pkg_config(){
1204 check_pkg_config "$@" || die "ERROR: $pkg not found"
1205 add_cflags $(get_safe ${pkg}_cflags)
1206 add_extralibs $(get_safe ${pkg}_libs)
1209 require_libfreetype(){
1210 log require_libfreetype "$@"
1212 check_cmd $pkg_config --exists --print-errors $pkg \
1213 || die "ERROR: $pkg not found"
1214 pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
1215 pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
1217 echo "#include <ft2build.h>"
1218 echo "#include FT_FREETYPE_H"
1219 echo "long check_func(void) { return (long) FT_Init_FreeType; }"
1220 echo "int main(void) { return 0; }"
1221 } | check_ld "cc" $pkg_cflags $pkg_libs \
1222 && set_safe ${pkg}_cflags $pkg_cflags \
1223 && set_safe ${pkg}_libs $pkg_libs \
1224 || die "ERROR: $pkg not found"
1225 add_cflags $(get_safe ${pkg}_cflags)
1226 add_extralibs $(get_safe ${pkg}_libs)
1230 eval printf '%s\\n' $HOSTCC_E
1234 eval printf '%s\\n' $HOSTCC_O
1238 log check_host_cc "$@"
1241 check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
1245 log check_host_cpp "$@"
1248 check_cmd $host_cc $host_cppflags $host_cflags "$@" $(hostcc_e $TMPO) $TMPC
1251 check_host_cppflags(){
1252 log check_host_cppflags "$@"
1253 check_host_cc "$@" <<EOF && append host_cppflags "$@"
1258 check_host_cflags(){
1259 log check_host_cflags "$@"
1260 set -- $($host_cflags_filter "$@")
1261 check_host_cc "$@" <<EOF && append host_cflags "$@"
1266 check_host_cpp_condition(){
1267 log check_host_cpp_condition "$@"
1271 check_host_cpp "$@" <<EOF
1274 #error "unsatisfied condition: $condition"
1282 "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
1286 cmp -s "$1" "$2" && echo "$2 is unchanged" && return
1287 mkdir -p "$(dirname $2)"
1291 # CONFIG_LIST contains configurable options, while HAVE_LIST is for
1292 # system-dependent things.
1309 avio_reading_example
1310 decoding_encoding_example
1311 demuxing_decoding_example
1313 filter_audio_example
1314 filtering_audio_example
1315 filtering_video_example
1319 resampling_audio_example
1320 scaling_video_example
1321 transcode_aac_example
1325 EXTERNAL_LIBRARY_LIST="
1411 safe_bitstream_reader
1470 $EXTERNAL_LIBRARY_LIST
1478 incompatible_libav_abi
1539 ARCH_EXT_LIST_MIPS="
1546 ARCH_EXT_LIST_X86_SIMD="
1573 $ARCH_EXT_LIST_X86_SIMD
1604 sync_val_compare_and_swap
1615 incompatible_libav_abi
1624 cdio_paranoia_paranoia_h
1626 dev_bktr_ioctl_bt848_h
1627 dev_bktr_ioctl_meteor_h
1629 dev_video_bktr_ioctl_bt848_h
1630 dev_video_meteor_ioctl_meteor_h
1638 machine_ioctl_bt848_h
1639 machine_ioctl_meteor_h
1641 openjpeg_1_5_openjpeg_h
1708 GetProcessAffinityMask
1709 GetProcessMemoryInfo
1713 GetSystemTimeAsFileTime
1720 jack_port_get_latency_range
1735 SetConsoleTextAttribute
1747 TOOLCHAIN_FEATURES="
1759 inline_asm_nonlocal_labels
1760 inline_asm_direct_symbol_refs
1771 CONDITION_VARIABLE_Ptr
1774 struct_group_source_req
1775 struct_ip_mreq_source
1778 struct_rusage_ru_maxrss
1779 struct_sctp_event_subscribe
1781 struct_sockaddr_sa_len
1782 struct_sockaddr_storage
1783 struct_stat_st_mtim_tv_nsec
1784 struct_v4l2_frmivalenum_discrete
1789 $(add_suffix _external $ARCH_EXT_LIST)
1790 $(add_suffix _inline $ARCH_EXT_LIST)
1821 # options emitted with CONFIG_ prefix but not available on the command line
1835 frame_thread_encoder
1957 # code dependency declarations
1959 # architecture extensions
1964 armv8_deps="aarch64"
1965 neon_deps_any="aarch64 arm"
1966 intrinsics_neon_deps="neon"
1967 vfp_deps_any="aarch64 arm"
1971 map 'eval ${v}_inline_deps=inline_asm' $ARCH_EXT_LIST_ARM
1974 mips32r2_deps="mips"
1975 mipsdspr1_deps="mips"
1976 mipsdspr2_deps="mips"
1983 x86_64_select="i686"
1984 x86_64_suggest="fast_cmov"
1987 amd3dnowext_deps="amd3dnow"
2003 mmx_external_deps="yasm"
2004 mmx_inline_deps="inline_asm"
2005 mmx_suggest="mmx_external mmx_inline"
2007 for ext in $(filter_out mmx $ARCH_EXT_LIST_X86_SIMD); do
2008 eval dep=\$${ext}_deps
2009 eval ${ext}_external_deps='"${dep}_external"'
2010 eval ${ext}_inline_deps='"${dep}_inline"'
2011 eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
2014 aligned_stack_if_any="aarch64 ppc x86"
2015 fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
2016 fast_clz_if_any="aarch64 alpha avr32 mips ppc x86"
2017 fast_unaligned_if_any="aarch64 ppc x86"
2018 simd_align_16_if_any="altivec neon sse"
2020 # system capabilities
2022 symver_if_any="symver_asm_label symver_gnu_asm"
2025 atomics_gcc_if="sync_val_compare_and_swap"
2026 atomics_suncc_if="atomic_cas_ptr machine_rw_barrier"
2027 atomics_win32_if="MemoryBarrier"
2028 atomics_native_if_any="$ATOMICS_LIST"
2029 w32threads_deps="atomics_native"
2030 threads_if_any="$THREADS_LIST"
2034 error_resilience_select="me_cmp"
2035 faandct_deps="faan fdctdsp"
2036 faanidct_deps="faan idctdsp"
2037 frame_thread_encoder_deps="encoders threads"
2038 intrax8_select="error_resilience"
2041 me_cmp_select="fdctdsp idctdsp pixblockdsp"
2042 mpeg_er_select="error_resilience"
2043 mpegaudio_select="mpegaudiodsp"
2044 mpegaudiodsp_select="dct"
2045 mpegvideo_select="blockdsp h264chroma hpeldsp idctdsp me_cmp videodsp"
2046 mpegvideoenc_select="me_cmp mpegvideo pixblockdsp qpeldsp"
2048 # decoders / encoders
2049 aac_decoder_select="mdct sinewin"
2050 aac_encoder_select="audio_frame_queue iirfilter mdct sinewin"
2051 aac_latm_decoder_select="aac_decoder aac_latm_parser"
2052 ac3_decoder_select="ac3_parser ac3dsp bswapdsp mdct"
2053 ac3_fixed_decoder_select="ac3_parser ac3dsp bswapdsp mdct"
2054 ac3_encoder_select="ac3dsp audiodsp mdct me_cmp"
2055 ac3_fixed_encoder_select="ac3dsp audiodsp mdct me_cmp"
2056 aic_decoder_select="golomb idctdsp"
2057 alac_encoder_select="lpc"
2058 als_decoder_select="bswapdsp"
2059 amrnb_decoder_select="lsp"
2060 amrwb_decoder_select="lsp"
2061 amv_decoder_select="sp5x_decoder exif"
2062 amv_encoder_select="aandcttables mpegvideoenc"
2063 ape_decoder_select="bswapdsp llauddsp"
2064 asv1_decoder_select="blockdsp bswapdsp idctdsp"
2065 asv1_encoder_select="bswapdsp fdctdsp pixblockdsp"
2066 asv2_decoder_select="blockdsp bswapdsp idctdsp"
2067 asv2_encoder_select="bswapdsp fdctdsp pixblockdsp"
2068 atrac1_decoder_select="mdct sinewin"
2069 atrac3_decoder_select="mdct"
2070 atrac3p_decoder_select="mdct sinewin"
2071 avrn_decoder_select="exif"
2072 bink_decoder_select="blockdsp hpeldsp"
2073 binkaudio_dct_decoder_select="mdct rdft dct sinewin wma_freqs"
2074 binkaudio_rdft_decoder_select="mdct rdft sinewin wma_freqs"
2075 cavs_decoder_select="blockdsp golomb h264chroma idctdsp qpeldsp videodsp"
2076 cllc_decoder_select="bswapdsp"
2077 comfortnoise_encoder_select="lpc"
2078 cook_decoder_select="audiodsp mdct sinewin"
2079 cscd_decoder_select="lzo"
2080 cscd_decoder_suggest="zlib"
2081 dca_decoder_select="mdct"
2082 dirac_decoder_select="dwt golomb videodsp mpegvideoenc"
2083 dnxhd_decoder_select="blockdsp idctdsp"
2084 dnxhd_encoder_select="aandcttables blockdsp fdctdsp idctdsp mpegvideoenc pixblockdsp"
2085 dvvideo_decoder_select="dvprofile idctdsp"
2086 dvvideo_encoder_select="dvprofile fdctdsp me_cmp pixblockdsp"
2087 dxa_decoder_select="zlib"
2088 eac3_decoder_select="ac3_decoder"
2089 eac3_encoder_select="ac3_encoder"
2090 eamad_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpegvideo"
2091 eatgq_decoder_select="aandcttables"
2092 eatqi_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpeg1video_decoder"
2093 exr_decoder_select="zlib"
2094 ffv1_decoder_select="golomb rangecoder"
2095 ffv1_encoder_select="rangecoder"
2096 ffvhuff_decoder_select="huffyuv_decoder"
2097 ffvhuff_encoder_select="huffyuv_encoder"
2098 fic_decoder_select="golomb"
2099 flac_decoder_select="golomb"
2100 flac_encoder_select="bswapdsp golomb lpc"
2101 flashsv_decoder_select="zlib"
2102 flashsv_encoder_select="zlib"
2103 flashsv2_encoder_select="zlib"
2104 flashsv2_decoder_select="zlib"
2105 flv_decoder_select="h263_decoder"
2106 flv_encoder_select="h263_encoder"
2107 fourxm_decoder_select="blockdsp bswapdsp"
2108 fraps_decoder_select="bswapdsp huffman"
2109 g2m_decoder_select="blockdsp idctdsp zlib"
2110 g729_decoder_select="audiodsp"
2111 h261_decoder_select="mpeg_er mpegvideo"
2112 h261_encoder_select="aandcttables mpegvideoenc"
2113 h263_decoder_select="error_resilience h263_parser h263dsp mpeg_er mpegvideo qpeldsp"
2114 h263_encoder_select="aandcttables h263dsp mpegvideoenc"
2115 h263i_decoder_select="h263_decoder"
2116 h263p_encoder_select="h263_encoder"
2117 h264_decoder_select="cabac golomb h264chroma h264dsp h264pred h264qpel startcode videodsp"
2118 h264_decoder_suggest="error_resilience"
2119 hevc_decoder_select="bswapdsp cabac golomb videodsp"
2120 huffyuv_decoder_select="bswapdsp huffyuvdsp llviddsp"
2121 huffyuv_encoder_select="bswapdsp huffman huffyuvencdsp llviddsp"
2122 iac_decoder_select="imc_decoder"
2123 imc_decoder_select="bswapdsp fft mdct sinewin"
2124 indeo3_decoder_select="hpeldsp"
2125 interplay_video_decoder_select="hpeldsp"
2126 jpegls_decoder_select="golomb mjpeg_decoder"
2127 jpegls_encoder_select="golomb"
2128 jv_decoder_select="blockdsp"
2129 lagarith_decoder_select="huffyuvdsp"
2130 ljpeg_encoder_select="aandcttables idctdsp"
2131 loco_decoder_select="golomb"
2132 mdec_decoder_select="blockdsp idctdsp mpegvideo"
2133 metasound_decoder_select="lsp mdct sinewin"
2134 mimic_decoder_select="blockdsp bswapdsp hpeldsp idctdsp"
2135 mjpeg_decoder_select="blockdsp hpeldsp exif idctdsp"
2136 mjpeg_encoder_select="aandcttables mpegvideoenc"
2137 mjpegb_decoder_select="mjpeg_decoder"
2138 mlp_decoder_select="mlp_parser"
2139 motionpixels_decoder_select="bswapdsp"
2140 mp1_decoder_select="mpegaudio"
2141 mp1float_decoder_select="mpegaudio"
2142 mp2_decoder_select="mpegaudio"
2143 mp2float_decoder_select="mpegaudio"
2144 mp3_decoder_select="mpegaudio"
2145 mp3adu_decoder_select="mpegaudio"
2146 mp3adufloat_decoder_select="mpegaudio"
2147 mp3float_decoder_select="mpegaudio"
2148 mp3on4_decoder_select="mpegaudio"
2149 mp3on4float_decoder_select="mpegaudio"
2150 mpc7_decoder_select="bswapdsp mpegaudiodsp"
2151 mpc8_decoder_select="mpegaudiodsp"
2152 mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
2153 mpeg_xvmc_decoder_select="mpeg2video_decoder"
2154 mpegvideo_decoder_select="error_resilience mpeg_er mpegvideo"
2155 mpeg1video_decoder_select="error_resilience mpeg_er mpegvideo"
2156 mpeg1video_encoder_select="aandcttables mpegvideoenc h263dsp"
2157 mpeg2video_decoder_select="error_resilience mpeg_er mpegvideo"
2158 mpeg2video_encoder_select="aandcttables mpegvideoenc h263dsp"
2159 mpeg4_decoder_select="h263_decoder mpeg4video_parser"
2160 mpeg4_encoder_select="h263_encoder"
2161 msmpeg4v1_decoder_select="h263_decoder"
2162 msmpeg4v2_decoder_select="h263_decoder"
2163 msmpeg4v2_encoder_select="h263_encoder"
2164 msmpeg4v3_decoder_select="h263_decoder"
2165 msmpeg4v3_encoder_select="h263_encoder"
2166 mss2_decoder_select="error_resilience mpeg_er qpeldsp vc1_decoder"
2167 mxpeg_decoder_select="mjpeg_decoder"
2168 nellymoser_decoder_select="mdct sinewin"
2169 nellymoser_encoder_select="audio_frame_queue mdct sinewin"
2170 nuv_decoder_select="idctdsp lzo"
2171 on2avc_decoder_select="mdct"
2172 opus_decoder_deps="swresample"
2173 png_decoder_select="zlib"
2174 png_encoder_select="huffyuvencdsp zlib"
2175 prores_decoder_select="blockdsp idctdsp"
2176 prores_encoder_select="fdctdsp"
2177 qcelp_decoder_select="lsp"
2178 qdm2_decoder_select="mdct rdft mpegaudiodsp"
2179 ra_144_encoder_select="audio_frame_queue lpc audiodsp"
2180 ra_144_decoder_select="audiodsp"
2181 ralf_decoder_select="golomb"
2182 rawvideo_decoder_select="bswapdsp"
2183 rtjpeg_decoder_select="me_cmp"
2184 rv10_decoder_select="error_resilience h263_decoder h263dsp mpeg_er"
2185 rv10_encoder_select="h263_encoder"
2186 rv20_decoder_select="error_resilience h263_decoder h263dsp mpeg_er"
2187 rv20_encoder_select="h263_encoder"
2188 rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpeg_er mpegvideo videodsp"
2189 rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpeg_er mpegvideo videodsp"
2190 shorten_decoder_select="golomb"
2191 sipr_decoder_select="lsp"
2192 snow_decoder_select="dwt h264qpel hpeldsp me_cmp rangecoder videodsp"
2193 snow_encoder_select="aandcttables dwt h264qpel hpeldsp me_cmp mpegvideoenc rangecoder"
2194 sonic_decoder_select="golomb rangecoder"
2195 sonic_encoder_select="golomb rangecoder"
2196 sonic_ls_encoder_select="golomb rangecoder"
2197 sp5x_decoder_select="mjpeg_decoder"
2198 svq1_decoder_select="hpeldsp"
2199 svq1_encoder_select="aandcttables hpeldsp me_cmp mpegvideoenc"
2200 svq3_decoder_select="h264_decoder hpeldsp tpeldsp"
2201 svq3_decoder_suggest="zlib"
2202 tak_decoder_select="audiodsp"
2203 theora_decoder_select="vp3_decoder"
2204 thp_decoder_select="mjpeg_decoder"
2205 tiff_decoder_suggest="zlib lzma"
2206 tiff_encoder_suggest="zlib"
2207 truehd_decoder_select="mlp_parser"
2208 truemotion2_decoder_select="bswapdsp"
2209 truespeech_decoder_select="bswapdsp"
2210 tscc_decoder_select="zlib"
2211 twinvq_decoder_select="mdct lsp sinewin"
2212 utvideo_decoder_select="bswapdsp"
2213 utvideo_encoder_select="bswapdsp huffman huffyuvencdsp"
2214 vble_decoder_select="huffyuvdsp"
2215 vc1_decoder_select="blockdsp error_resilience h263_decoder h264chroma h264qpel intrax8 mpeg_er qpeldsp startcode"
2216 vc1image_decoder_select="vc1_decoder"
2217 vorbis_decoder_select="mdct"
2218 vorbis_encoder_select="mdct"
2219 vp3_decoder_select="hpeldsp vp3dsp videodsp"
2220 vp5_decoder_select="h264chroma hpeldsp videodsp vp3dsp"
2221 vp6_decoder_select="h264chroma hpeldsp huffman videodsp vp3dsp"
2222 vp6a_decoder_select="vp6_decoder"
2223 vp6f_decoder_select="vp6_decoder"
2224 vp7_decoder_select="h264pred videodsp"
2225 vp8_decoder_select="h264pred videodsp"
2226 vp9_decoder_select="videodsp vp9_parser"
2227 webp_decoder_select="vp8_decoder"
2228 wmalossless_decoder_select="llauddsp"
2229 wmapro_decoder_select="mdct sinewin wma_freqs"
2230 wmav1_decoder_select="mdct sinewin wma_freqs"
2231 wmav1_encoder_select="mdct sinewin wma_freqs"
2232 wmav2_decoder_select="mdct sinewin wma_freqs"
2233 wmav2_encoder_select="mdct sinewin wma_freqs"
2234 wmavoice_decoder_select="lsp rdft dct mdct sinewin"
2235 wmv1_decoder_select="h263_decoder"
2236 wmv1_encoder_select="h263_encoder"
2237 wmv2_decoder_select="blockdsp h263_decoder idctdsp intrax8 videodsp"
2238 wmv2_encoder_select="h263_encoder"
2239 wmv3_decoder_select="vc1_decoder"
2240 wmv3image_decoder_select="wmv3_decoder"
2241 zerocodec_decoder_select="zlib"
2242 zlib_decoder_select="zlib"
2243 zlib_encoder_select="zlib"
2244 zmbv_decoder_select="zlib"
2245 zmbv_encoder_select="zlib"
2247 # hardware accelerators
2248 crystalhd_deps="libcrystalhd_libcrystalhd_if_h"
2249 dxva2_deps="dxva2api_h"
2250 vaapi_deps="va_va_h"
2251 vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
2252 vda_extralibs="-framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore"
2253 vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
2254 xvmc_deps="X11_extensions_XvMClib_h"
2256 h263_vaapi_hwaccel_deps="vaapi"
2257 h263_vaapi_hwaccel_select="h263_decoder"
2258 h263_vdpau_hwaccel_deps="vdpau"
2259 h263_vdpau_hwaccel_select="h263_decoder"
2260 h264_crystalhd_decoder_select="crystalhd h264_mp4toannexb_bsf h264_parser"
2261 h264_dxva2_hwaccel_deps="dxva2"
2262 h264_dxva2_hwaccel_select="h264_decoder"
2263 h264_vaapi_hwaccel_deps="vaapi"
2264 h264_vaapi_hwaccel_select="h264_decoder"
2265 h264_vda_decoder_deps="vda"
2266 h264_vda_decoder_select="h264_decoder"
2267 h264_vda_hwaccel_deps="vda"
2268 h264_vda_hwaccel_select="h264_decoder"
2269 h264_vda_old_hwaccel_deps="vda"
2270 h264_vda_old_hwaccel_select="h264_decoder"
2271 h264_vdpau_decoder_deps="vdpau"
2272 h264_vdpau_decoder_select="h264_decoder"
2273 h264_vdpau_hwaccel_deps="vdpau"
2274 h264_vdpau_hwaccel_select="h264_decoder"
2275 mpeg_vdpau_decoder_deps="vdpau"
2276 mpeg_vdpau_decoder_select="mpeg2video_decoder"
2277 mpeg_xvmc_hwaccel_deps="xvmc"
2278 mpeg_xvmc_hwaccel_select="mpeg2video_decoder"
2279 mpeg1_vdpau_decoder_deps="vdpau"
2280 mpeg1_vdpau_decoder_select="mpeg1video_decoder"
2281 mpeg1_vdpau_hwaccel_deps="vdpau"
2282 mpeg1_vdpau_hwaccel_select="mpeg1video_decoder"
2283 mpeg1_xvmc_hwaccel_deps="xvmc"
2284 mpeg1_xvmc_hwaccel_select="mpeg1video_decoder"
2285 mpeg2_crystalhd_decoder_select="crystalhd"
2286 mpeg2_dxva2_hwaccel_deps="dxva2"
2287 mpeg2_dxva2_hwaccel_select="mpeg2video_decoder"
2288 mpeg2_vaapi_hwaccel_deps="vaapi"
2289 mpeg2_vaapi_hwaccel_select="mpeg2video_decoder"
2290 mpeg2_vdpau_hwaccel_deps="vdpau"
2291 mpeg2_vdpau_hwaccel_select="mpeg2video_decoder"
2292 mpeg2_xvmc_hwaccel_deps="xvmc"
2293 mpeg2_xvmc_hwaccel_select="mpeg2video_decoder"
2294 mpeg4_crystalhd_decoder_select="crystalhd"
2295 mpeg4_vaapi_hwaccel_deps="vaapi"
2296 mpeg4_vaapi_hwaccel_select="mpeg4_decoder"
2297 mpeg4_vdpau_decoder_deps="vdpau"
2298 mpeg4_vdpau_decoder_select="mpeg4_decoder"
2299 mpeg4_vdpau_hwaccel_deps="vdpau"
2300 mpeg4_vdpau_hwaccel_select="mpeg4_decoder"
2301 msmpeg4_crystalhd_decoder_select="crystalhd"
2302 vc1_crystalhd_decoder_select="crystalhd"
2303 vc1_dxva2_hwaccel_deps="dxva2"
2304 vc1_dxva2_hwaccel_select="vc1_decoder"
2305 vc1_vaapi_hwaccel_deps="vaapi"
2306 vc1_vaapi_hwaccel_select="vc1_decoder"
2307 vc1_vdpau_decoder_deps="vdpau"
2308 vc1_vdpau_decoder_select="vc1_decoder"
2309 vc1_vdpau_hwaccel_deps="vdpau"
2310 vc1_vdpau_hwaccel_select="vc1_decoder"
2311 wmv3_crystalhd_decoder_select="crystalhd"
2312 wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
2313 wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
2314 wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
2315 wmv3_vdpau_hwaccel_select="vc1_vdpau_hwaccel"
2318 h264_parser_select="h264_decoder"
2319 hevc_parser_select="hevc_decoder"
2320 mpegvideo_parser_select="mpegvideo"
2321 mpeg4video_parser_select="error_resilience h263dsp mpeg_er mpegvideo qpeldsp"
2322 vc1_parser_select="mpegvideo startcode vc1_decoder"
2324 # external libraries
2325 libaacplus_encoder_deps="libaacplus"
2326 libcelt_decoder_deps="libcelt"
2327 libfaac_encoder_deps="libfaac"
2328 libfaac_encoder_select="audio_frame_queue"
2329 libfdk_aac_decoder_deps="libfdk_aac"
2330 libfdk_aac_encoder_deps="libfdk_aac"
2331 libfdk_aac_encoder_select="audio_frame_queue"
2332 libgme_demuxer_deps="libgme"
2333 libgsm_decoder_deps="libgsm"
2334 libgsm_encoder_deps="libgsm"
2335 libgsm_ms_decoder_deps="libgsm"
2336 libgsm_ms_encoder_deps="libgsm"
2337 libilbc_decoder_deps="libilbc"
2338 libilbc_encoder_deps="libilbc"
2339 libmodplug_demuxer_deps="libmodplug"
2340 libmp3lame_encoder_deps="libmp3lame"
2341 libmp3lame_encoder_select="audio_frame_queue"
2342 libopencore_amrnb_decoder_deps="libopencore_amrnb"
2343 libopencore_amrnb_encoder_deps="libopencore_amrnb"
2344 libopencore_amrnb_encoder_select="audio_frame_queue"
2345 libopencore_amrwb_decoder_deps="libopencore_amrwb"
2346 libopenjpeg_decoder_deps="libopenjpeg"
2347 libopenjpeg_encoder_deps="libopenjpeg"
2348 libopus_decoder_deps="libopus"
2349 libopus_encoder_deps="libopus"
2350 libopus_encoder_select="audio_frame_queue"
2351 libquvi_demuxer_deps="libquvi"
2352 libschroedinger_decoder_deps="libschroedinger"
2353 libschroedinger_encoder_deps="libschroedinger"
2354 libshine_encoder_deps="libshine"
2355 libshine_encoder_select="audio_frame_queue"
2356 libspeex_decoder_deps="libspeex"
2357 libspeex_encoder_deps="libspeex"
2358 libspeex_encoder_select="audio_frame_queue"
2359 libstagefright_h264_decoder_deps="libstagefright_h264"
2360 libtheora_encoder_deps="libtheora"
2361 libtwolame_encoder_deps="libtwolame"
2362 libvo_aacenc_encoder_deps="libvo_aacenc"
2363 libvo_aacenc_encoder_select="audio_frame_queue"
2364 libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
2365 libvorbis_decoder_deps="libvorbis"
2366 libvorbis_encoder_deps="libvorbis"
2367 libvorbis_encoder_select="audio_frame_queue"
2368 libvpx_vp8_decoder_deps="libvpx"
2369 libvpx_vp8_encoder_deps="libvpx"
2370 libvpx_vp9_decoder_deps="libvpx"
2371 libvpx_vp9_encoder_deps="libvpx"
2372 libwavpack_encoder_deps="libwavpack"
2373 libwebp_encoder_deps="libwebp"
2374 libx264_encoder_deps="libx264"
2375 libx264rgb_encoder_deps="libx264"
2376 libx265_encoder_deps="libx265"
2377 libxavs_encoder_deps="libxavs"
2378 libxvid_encoder_deps="libxvid"
2379 libutvideo_decoder_deps="libutvideo"
2380 libutvideo_encoder_deps="libutvideo"
2381 libzvbi_teletext_decoder_deps="libzvbi"
2384 ac3_demuxer_select="ac3_parser"
2385 asf_demuxer_select="riffdec"
2386 asf_muxer_select="riffenc"
2387 asf_stream_muxer_select="asf_muxer"
2388 avi_demuxer_select="riffdec exif"
2389 avi_muxer_select="riffenc"
2390 avisynth_demuxer_deps="avisynth"
2391 avisynth_demuxer_select="riffdec"
2392 caf_demuxer_select="riffdec"
2393 dirac_demuxer_select="dirac_parser"
2394 dts_demuxer_select="dca_parser"
2395 dtshd_demuxer_select="dca_parser"
2396 dv_demuxer_select="dvprofile"
2397 dv_muxer_select="dvprofile"
2398 dxa_demuxer_select="riffdec"
2399 eac3_demuxer_select="ac3_parser"
2400 f4v_muxer_select="mov_muxer"
2401 flac_demuxer_select="flac_parser"
2402 hds_muxer_select="flv_muxer"
2403 hls_muxer_select="mpegts_muxer"
2404 image2_alias_pix_demuxer_select="image2_demuxer"
2405 image2_brender_pix_demuxer_select="image2_demuxer"
2406 ipod_muxer_select="mov_muxer"
2407 ismv_muxer_select="mov_muxer"
2408 libnut_demuxer_deps="libnut"
2409 libnut_muxer_deps="libnut"
2410 matroska_audio_muxer_select="matroska_muxer"
2411 matroska_demuxer_select="riffdec"
2412 matroska_demuxer_suggest="bzlib lzo zlib"
2413 matroska_muxer_select="riffenc"
2414 mmf_muxer_select="riffenc"
2415 mov_demuxer_select="riffdec"
2416 mov_demuxer_suggest="zlib"
2417 mov_muxer_select="riffenc rtpenc_chain ac3_parser"
2418 mp3_demuxer_select="mpegaudio_parser"
2419 mp4_muxer_select="mov_muxer"
2420 mpegts_muxer_select="adts_muxer latm_muxer"
2421 mpegtsraw_demuxer_select="mpegts_demuxer"
2422 mxf_d10_muxer_select="mxf_muxer"
2423 nut_muxer_select="riffenc"
2424 nuv_demuxer_select="riffdec"
2425 oga_muxer_select="ogg_muxer"
2426 ogg_demuxer_select="golomb"
2427 opus_muxer_select="ogg_muxer"
2428 psp_muxer_select="mov_muxer"
2429 rtp_demuxer_select="sdp_demuxer"
2430 rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
2431 rtsp_demuxer_select="http_protocol rtpdec"
2432 rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol rtpenc_chain"
2433 sap_demuxer_select="sdp_demuxer"
2434 sap_muxer_select="rtp_muxer rtp_protocol rtpenc_chain"
2435 sdp_demuxer_select="rtpdec"
2436 smoothstreaming_muxer_select="ismv_muxer"
2437 spdif_muxer_select="aac_parser"
2438 spx_muxer_select="ogg_muxer"
2439 tak_demuxer_select="tak_parser"
2440 tg2_muxer_select="mov_muxer"
2441 tgp_muxer_select="mov_muxer"
2442 vobsub_demuxer_select="mpegps_demuxer"
2443 w64_demuxer_select="wav_demuxer"
2444 w64_muxer_select="wav_muxer"
2445 wav_demuxer_select="riffdec"
2446 wav_muxer_select="riffenc"
2447 webm_muxer_select="riffenc"
2448 wtv_demuxer_select="riffdec"
2449 wtv_muxer_select="riffenc"
2450 xmv_demuxer_select="riffdec"
2451 xwma_demuxer_select="riffdec"
2454 alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
2455 alsa_outdev_deps="alsa_asoundlib_h"
2456 avfoundation_indev_extralibs="-framework CoreVideo -framework Foundation -framework AVFoundation -framework CoreMedia -framework CoreGraphics"
2457 avfoundation_indev_select="avfoundation"
2458 bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
2459 caca_outdev_deps="libcaca"
2460 decklink_outdev_deps="decklink pthreads"
2461 decklink_outdev_extralibs="-lstdc++"
2462 decklink_indev_deps="decklink pthreads"
2463 decklink_indev_extralibs="-lstdc++"
2464 dshow_indev_deps="IBaseFilter"
2465 dshow_indev_extralibs="-lpsapi -lole32 -lstrmiids -luuid"
2466 dv1394_indev_deps="dv1394"
2467 dv1394_indev_select="dv_demuxer"
2468 fbdev_indev_deps="linux_fb_h"
2469 fbdev_outdev_deps="linux_fb_h"
2470 gdigrab_indev_deps="CreateDIBSection"
2471 gdigrab_indev_extralibs="-lgdi32"
2472 gdigrab_indev_select="bmp_decoder"
2473 iec61883_indev_deps="libiec61883"
2474 jack_indev_deps="jack_jack_h sem_timedwait"
2475 lavfi_indev_deps="avfilter"
2476 libcdio_indev_deps="libcdio"
2477 libdc1394_indev_deps="libdc1394"
2478 libv4l2_indev_deps="libv4l2"
2479 openal_indev_deps="openal"
2480 opengl_outdev_deps="opengl"
2481 oss_indev_deps_any="soundcard_h sys_soundcard_h"
2482 oss_outdev_deps_any="soundcard_h sys_soundcard_h"
2483 pulse_indev_deps="libpulse"
2484 pulse_outdev_deps="libpulse"
2485 qtkit_indev_extralibs="-framework QTKit -framework Foundation -framework QuartzCore"
2486 qtkit_indev_select="qtkit"
2487 sdl_outdev_deps="sdl"
2488 sndio_indev_deps="sndio_h"
2489 sndio_outdev_deps="sndio_h"
2490 v4l_indev_deps="linux_videodev_h"
2491 v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
2492 v4l2_outdev_deps_any="linux_videodev2_h sys_videoio_h"
2493 vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
2494 vfwcap_indev_extralibs="-lavicap32"
2495 xv_outdev_deps="X11_extensions_Xvlib_h XvGetPortAttribute"
2496 xv_outdev_extralibs="-lXv -lX11 -lXext"
2497 x11grab_indev_deps="x11grab"
2500 bluray_protocol_deps="libbluray"
2501 ffrtmpcrypt_protocol_deps="!librtmp_protocol"
2502 ffrtmpcrypt_protocol_deps_any="gcrypt nettle openssl"
2503 ffrtmpcrypt_protocol_select="tcp_protocol"
2504 ffrtmphttp_protocol_deps="!librtmp_protocol"
2505 ffrtmphttp_protocol_select="http_protocol"
2506 ftp_protocol_select="tcp_protocol"
2507 gopher_protocol_select="network"
2508 http_protocol_select="tcp_protocol"
2509 httpproxy_protocol_select="tcp_protocol"
2510 https_protocol_select="tls_protocol"
2511 icecast_protocol_select="http_protocol"
2512 librtmp_protocol_deps="librtmp"
2513 librtmpe_protocol_deps="librtmp"
2514 librtmps_protocol_deps="librtmp"
2515 librtmpt_protocol_deps="librtmp"
2516 librtmpte_protocol_deps="librtmp"
2517 libsmbclient_protocol_deps="libsmbclient gplv3"
2518 libssh_protocol_deps="libssh"
2519 mmsh_protocol_select="http_protocol"
2520 mmst_protocol_select="network"
2521 rtmp_protocol_deps="!librtmp_protocol"
2522 rtmp_protocol_select="tcp_protocol"
2523 rtmpe_protocol_select="ffrtmpcrypt_protocol"
2524 rtmps_protocol_deps="!librtmp_protocol"
2525 rtmps_protocol_select="tls_protocol"
2526 rtmpt_protocol_select="ffrtmphttp_protocol"
2527 rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
2528 rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
2529 rtp_protocol_select="udp_protocol"
2530 sctp_protocol_deps="struct_sctp_event_subscribe"
2531 sctp_protocol_select="network"
2532 srtp_protocol_select="rtp_protocol"
2533 tcp_protocol_select="network"
2534 tls_protocol_deps_any="openssl gnutls"
2535 tls_protocol_select="tcp_protocol"
2536 udp_protocol_select="network"
2537 unix_protocol_deps="sys_un_h"
2538 unix_protocol_select="network"
2541 amovie_filter_deps="avcodec avformat"
2542 aresample_filter_deps="swresample"
2543 ass_filter_deps="libass"
2544 asyncts_filter_deps="avresample"
2545 atempo_filter_deps="avcodec"
2546 atempo_filter_select="rdft"
2547 azmq_filter_deps="libzmq"
2548 blackframe_filter_deps="gpl"
2549 boxblur_filter_deps="gpl"
2550 bs2b_filter_deps="libbs2b"
2551 colormatrix_filter_deps="gpl"
2552 cropdetect_filter_deps="gpl"
2553 delogo_filter_deps="gpl"
2554 deshake_filter_select="pixelutils"
2555 drawtext_filter_deps="libfreetype"
2556 ebur128_filter_deps="gpl"
2557 flite_filter_deps="libflite"
2558 frei0r_filter_deps="frei0r dlopen"
2559 frei0r_filter_extralibs='$ldl'
2560 frei0r_src_filter_deps="frei0r dlopen"
2561 frei0r_src_filter_extralibs='$ldl'
2562 geq_filter_deps="gpl"
2563 histeq_filter_deps="gpl"
2564 hqdn3d_filter_deps="gpl"
2565 interlace_filter_deps="gpl"
2566 kerndeint_filter_deps="gpl"
2567 ladspa_filter_deps="ladspa dlopen"
2568 ladspa_filter_extralibs='$ldl'
2569 mcdeint_filter_deps="avcodec gpl"
2570 movie_filter_deps="avcodec avformat"
2571 mp_filter_deps="gpl avcodec swscale inline_asm"
2572 mpdecimate_filter_deps="gpl"
2573 mpdecimate_filter_select="pixelutils"
2574 mptestsrc_filter_deps="gpl"
2575 negate_filter_deps="lut_filter"
2576 perspective_filter_deps="gpl"
2577 ocv_filter_deps="libopencv"
2578 owdenoise_filter_deps="gpl"
2579 pan_filter_deps="swresample"
2580 phase_filter_deps="gpl"
2581 pp_filter_deps="gpl postproc"
2582 pullup_filter_deps="gpl"
2583 removelogo_filter_deps="avcodec avformat swscale"
2584 resample_filter_deps="avresample"
2585 sab_filter_deps="gpl swscale"
2586 scale_filter_deps="swscale"
2587 select_filter_select="pixelutils"
2588 smartblur_filter_deps="gpl swscale"
2589 showspectrum_filter_deps="avcodec"
2590 showspectrum_filter_select="rdft"
2591 spp_filter_deps="gpl avcodec"
2592 spp_filter_select="fft idctdsp fdctdsp me_cmp pixblockdsp"
2593 stereo3d_filter_deps="gpl"
2594 subtitles_filter_deps="avformat avcodec libass"
2595 super2xsai_filter_deps="gpl"
2596 tinterlace_filter_deps="gpl"
2597 vidstabdetect_filter_deps="libvidstab"
2598 vidstabtransform_filter_deps="libvidstab"
2599 pixfmts_super2xsai_test_deps="super2xsai_filter"
2600 tinterlace_merge_test_deps="tinterlace_filter"
2601 tinterlace_pad_test_deps="tinterlace_filter"
2602 zmq_filter_deps="libzmq"
2603 zoompan_filter_deps="swscale"
2606 avio_reading="avformat avcodec avutil"
2607 avcodec_example_deps="avcodec avutil"
2608 decoding_encoding_example_deps="avcodec avformat avutil"
2609 demuxing_decoding_example_deps="avcodec avformat avutil"
2610 extract_mvs_example_deps="avcodec avformat avutil"
2611 filter_audio_example_deps="avfilter avutil"
2612 filtering_audio_example_deps="avfilter avcodec avformat avutil"
2613 filtering_video_example_deps="avfilter avcodec avformat avutil"
2614 metadata_example_deps="avformat avutil"
2615 muxing_example_deps="avcodec avformat avutil swscale"
2616 remuxing_example_deps="avcodec avformat avutil"
2617 resampling_audio_example_deps="avutil swresample"
2618 scaling_video_example_deps="avutil swscale"
2619 transcode_aac_example_deps="avcodec avformat swresample"
2620 transcoding_example_deps="avfilter avcodec avformat avutil"
2622 # libraries, in linking order
2623 avcodec_deps="avutil"
2624 avdevice_deps="avformat avcodec avutil"
2625 avfilter_deps="avutil"
2626 avformat_deps="avcodec avutil"
2627 avresample_deps="avutil"
2628 postproc_deps="avutil gpl"
2629 swresample_deps="avutil"
2630 swscale_deps="avutil"
2633 ffmpeg_deps="avcodec avfilter avformat swresample"
2634 ffmpeg_select="aformat_filter anull_filter atrim_filter format_filter
2636 setpts_filter trim_filter"
2637 ffplay_deps="avcodec avformat swscale swresample sdl"
2638 ffplay_libs='$sdl_libs'
2639 ffplay_select="rdft crop_filter transpose_filter hflip_filter vflip_filter rotate_filter"
2640 ffprobe_deps="avcodec avformat"
2641 ffserver_deps="avformat fork sarestart"
2642 ffserver_select="ffm_muxer rtp_protocol rtsp_demuxer"
2645 podpages_deps="perl"
2646 manpages_deps="perl pod2man"
2647 htmlpages_deps="perl"
2648 htmlpages_deps_any="makeinfo_html texi2html"
2649 txtpages_deps="perl makeinfo"
2650 doc_deps_any="manpages htmlpages podpages txtpages"
2652 # default parameters
2654 logfile="config.log"
2656 # installation paths
2657 prefix_default="/usr/local"
2658 bindir_default='${prefix}/bin'
2659 datadir_default='${prefix}/share/ffmpeg'
2660 docdir_default='${prefix}/share/doc/ffmpeg'
2661 incdir_default='${prefix}/include'
2662 libdir_default='${prefix}/lib'
2663 mandir_default='${prefix}/share/man'
2664 shlibdir_default="$libdir_default"
2670 host_cc_default="gcc"
2672 doxygen_default="doxygen"
2677 pkg_config_default=pkg-config
2678 ranlib_default="ranlib"
2679 strip_default="strip"
2680 yasmexe_default="yasm"
2681 windres_default="windres"
2684 target_os_default=$(tolower $(uname -s))
2685 host_os=$target_os_default
2688 if test "$target_os_default" = aix; then
2689 arch_default=$(uname -p)
2690 strip_default="strip -X32_64"
2692 arch_default=$(uname -m)
2697 # configurable options
2698 enable $PROGRAM_LIST
2699 enable $DOCUMENT_LIST
2700 enable $EXAMPLE_LIST
2701 enable $(filter_out avresample $LIBRARY_LIST)
2707 enable faan faandct faanidct
2708 enable optimizations
2709 enable runtime_cpudetect
2710 enable safe_bitstream_reader
2712 enable swscale_alpha
2714 sws_max_filter_size_default=256
2715 set_default sws_max_filter_size
2717 # Enable hwaccels by default.
2718 enable dxva2 vaapi vda vdpau xvmc
2722 SHFLAGS='-shared -Wl,-soname,$$(@F)'
2725 FULLNAME='$(NAME)$(BUILDSUF)'
2726 LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
2729 SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
2730 SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
2731 SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
2732 LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
2733 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
2734 SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
2756 host_cflags_filter=echo
2757 host_ldflags_filter=echo
2759 target_path='$(CURDIR)'
2761 # since the object filename is not given with the -MM flag, the compiler
2762 # is only able to print the basename, and we must add the path ourselves
2763 DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
2767 if test -f configure; then
2770 source_path=$(cd $(dirname "$0"); pwd)
2771 echo "$source_path" | grep -q '[[:blank:]]' &&
2772 die "Out of tree builds are impossible with whitespace in source path."
2773 test -e "$source_path/config.h" &&
2774 die "Out of tree builds are impossible with config.h in source dir."
2781 FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
2787 file=$source_path/$3
2788 sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
2791 ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
2792 DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
2793 HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
2794 PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
2795 BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
2796 MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
2797 DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
2798 OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
2799 INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
2800 PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
2801 FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
2817 for n in $COMPONENT_LIST; do
2818 v=$(toupper ${n%s})_LIST
2820 eval ${n}_if_any="\$$v"
2823 enable $ARCH_EXT_LIST
2826 echo "Unknown option \"$1\"."
2827 echo "See $0 --help for available options."
2832 cat | tr ' ' '\n' | sort | pr -r -3 -t
2838 echo $* | sed s/$suffix//g | print_3_columns
2850 is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
2851 echo "prob ${prob:-0.5}"
2859 random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
2860 $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
2869 --extra-ldexeflags=*)
2870 add_ldexeflags $optval
2873 add_extralibs $optval
2876 disable $INDEV_LIST $OUTDEV_LIST
2879 debuglevel="$optval"
2882 disable $PROGRAM_LIST
2884 --disable-everything)
2885 map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
2888 map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
2889 disable $LIBRARY_LIST $PROGRAM_LIST doc
2891 --enable-random|--disable-random)
2892 action=${opt%%-random}
2893 do_random ${action#--} $COMPONENT_LIST
2895 --enable-random=*|--disable-random=*)
2896 action=${opt%%-random=*}
2897 do_random ${action#--} $optval
2899 --enable-*=*|--disable-*=*)
2900 eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
2901 is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
2902 eval list=\$$(toupper $thing)_LIST
2903 name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
2904 list=$(filter "$name" $list)
2905 [ "$list" = "" ] && warn "Option $opt did not match anything"
2908 --enable-?*|--disable-?*)
2909 eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
2910 if is_in $option $COMPONENT_LIST; then
2911 test $action = disable && action=unset
2912 eval $action \$$(toupper ${option%s})_LIST
2913 elif is_in $option $CMDLINE_SELECT; then
2920 NAME="${opt#--list-}"
2921 is_in $NAME $COMPONENT_LIST || die_unknown $opt
2923 eval show_list $NAME \$$(toupper $NAME)_LIST
2925 --help|-h) show_help
2927 --fatal-warnings) enable fatal_warnings
2930 optname="${opt%%=*}"
2931 optname="${optname#--}"
2932 optname=$(echo "$optname" | sed 's/-/_/g')
2933 if is_in $optname $CMDLINE_SET; then
2934 eval $optname='$optval'
2935 elif is_in $optname $CMDLINE_APPEND; then
2936 append $optname "$optval"
2944 disabled logging && logfile=/dev/null
2946 echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
2949 test -n "$cross_prefix" && enable cross_compile
2951 if enabled cross_compile; then
2952 test -n "$arch" && test -n "$target_os" ||
2953 die "Must specify target arch and OS when cross-compiling"
2956 ar_default="${cross_prefix}${ar_default}"
2957 cc_default="${cross_prefix}${cc_default}"
2958 cxx_default="${cross_prefix}${cxx_default}"
2959 nm_default="${cross_prefix}${nm_default}"
2960 pkg_config_default="${cross_prefix}${pkg_config_default}"
2961 ranlib_default="${cross_prefix}${ranlib_default}"
2962 strip_default="${cross_prefix}${strip_default}"
2963 windres_default="${cross_prefix}${windres_default}"
2965 sysinclude_default="${sysroot}/usr/include"
2967 test -n "$valgrind" && toolchain="valgrind-memcheck"
2969 case "$toolchain" in
2972 add_cflags -fsanitize=address
2973 add_ldflags -fsanitize=address
2977 add_cflags -fsanitize=thread -pie
2978 add_ldflags -fsanitize=thread -pie
2982 add_cflags -fsanitize=undefined
2983 add_ldflags -fsanitize=undefined
2987 add_cflags -fsanitize=address
2988 add_ldflags -fsanitize=address
2992 add_cflags -fsanitize=thread -pie -fPIC
2993 add_ldflags -fsanitize=thread -pie -fPIC
2997 add_cflags -fsanitize=undefined
2998 add_ldflags -fsanitize=undefined
3001 target_exec_default=${valgrind:-"valgrind"}
3002 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"
3005 target_exec_default=${valgrind:-"valgrind"}
3006 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"
3009 # Check whether the current MSVC version needs the C99 converter.
3010 # From MSVC 2013 (compiler major version 18) onwards, it does actually
3011 # support enough of C99 to build ffmpeg. Default to the new
3012 # behaviour if the regexp was unable to match anything, since this
3013 # successfully parses the version number of existing supported
3014 # versions that require the converter (MSVC 2010 and 2012).
3015 cl_major_ver=$(cl 2>&1 | sed -n 's/.*Version \([[:digit:]]\{1,\}\)\..*/\1/p')
3016 if [ -z "$cl_major_ver" ] || [ $cl_major_ver -ge 18 ]; then
3019 cc_default="c99wrap cl"
3022 nm_default="dumpbin -symbols"
3024 target_os_default="win32"
3025 # Use a relative path for TMPDIR. This makes sure all the
3026 # ffconf temp files are written with a relative path, avoiding
3027 # issues with msys/win32 path conversion for MSVC parameters
3028 # such as -Fo<file> or -out:<file>.
3034 nm_default="dumpbin -symbols"
3036 target_os_default="win32"
3040 add_cflags -fprofile-arcs -ftest-coverage
3041 add_ldflags -fprofile-arcs -ftest-coverage
3044 add_cppflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
3045 add_cflags -fno-strict-overflow -fstack-protector-all
3046 add_ldflags -Wl,-z,relro -Wl,-z,now
3049 die "Unknown toolchain $toolchain"
3053 set_default arch cc cxx doxygen pkg_config ranlib strip sysinclude \
3054 target_exec target_os yasmexe
3055 enabled cross_compile || host_cc_default=$cc
3058 if ! $pkg_config --version >/dev/null 2>&1; then
3059 warn "$pkg_config not found, library detection may fail."
3063 if test $doxygen != $doxygen_default && \
3064 ! $doxygen --version >/dev/null 2>&1; then
3065 warn "Specified doxygen \"$doxygen\" not found, API documentation will fail to build."
3070 mingw32*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
3074 EXESUF=$(exesuf $target_os)
3075 HOSTEXESUF=$(exesuf $host_os)
3077 # set temporary file name
3078 : ${TMPDIR:=$TEMPDIR}
3082 if [ -n "$tempprefix" ] ; then
3084 echo $tempprefix.${HOSTNAME}.${UID}
3086 elif ! check_cmd mktemp -u XXXXXX; then
3087 # simple replacement for missing mktemp
3088 # NOT SAFE FOR GENERAL USE
3090 echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
3095 tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
3096 (set -C; exec > $tmp) 2>/dev/null ||
3097 die "Unable to create temporary file in $TMPDIR."
3098 append TMPFILES $tmp
3102 trap 'rm -f -- $TMPFILES' EXIT
3107 tmpfile TMPE $EXESUF
3119 # make sure we can execute files in $TMPDIR
3120 cat > $TMPSH 2>> $logfile <<EOF
3123 chmod +x $TMPSH >> $logfile 2>&1
3124 if ! $TMPSH >> $logfile 2>&1; then
3126 Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
3127 variable to another directory and make sure that it is not mounted noexec.
3129 die "Sanity test failed."
3135 # Filter out MSVC cl.exe options from cflags that shouldn't
3136 # be passed to gas-preprocessor
3146 -std=c99) echo -c99 ;;
3147 -mcpu=*) echo -arch ${flag#*=} ;;
3148 -mieee) echo -ieee ;;
3149 -O*|-fast) echo $flag ;;
3150 -fno-math-errno) echo -assume nomath_errno ;;
3152 -Wall) echo -msg_enable level2 ;;
3153 -Wno-pointer-sign) echo -msg_disable ptrmismatch1 ;;
3154 -Wl,*) echo $flag ;;
3164 -Wno-switch) echo -Wno-switch-enum ;;
3165 -Wno-format-zero-length) ;;
3166 -Wdisabled-optimization) ;;
3167 -Wno-pointer-sign) echo -Wno-other ;;
3173 msvc_common_flags(){
3176 # In addition to specifying certain flags under the compiler
3177 # specific filters, they must be specified here as well or else the
3178 # generic catch all at the bottom will print the original flag.
3182 -fomit-frame-pointer) ;;
3186 -fno-signed-zeros) ;;
3190 -lz) echo zlib.lib ;;
3191 -lavifil32) echo vfw32.lib ;;
3192 -lavicap32) echo vfw32.lib user32.lib ;;
3193 -l*) echo ${flag#-l}.lib ;;
3200 msvc_common_flags "$@"
3203 -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
3204 -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
3205 -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
3213 msvc_common_flags "$@"
3216 # Despite what Intel's documentation says -Wall, which is supported
3217 # on Windows, does enable remarks so disable them here.
3218 -Wall) echo $flag -Qdiag-disable:remark ;;
3219 -std=c99) echo -Qstd=c99 ;;
3237 -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
3238 -fomit-frame-pointer) echo -Mnoframe ;;
3249 case "${flag#*=}" in
3250 native) echo -xtarget=native ;;
3251 v9|niagara) echo -xarch=sparc ;;
3252 ultrasparc) echo -xarch=sparcvis ;;
3253 ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
3254 i586|pentium) echo -xchip=pentium ;;
3255 i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
3256 pentium3*|c3-2) echo -xtarget=pentium3 ;;
3257 pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
3258 pentium4*) echo -xtarget=pentium4 ;;
3259 prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
3260 *-sse3) echo -xarch=sse3 ;;
3261 core2) echo -xarch=ssse3 -xchip=core2 ;;
3262 bonnell) echo -xarch=ssse3 ;;
3263 corei7|nehalem) echo -xtarget=nehalem ;;
3264 westmere) echo -xtarget=westmere ;;
3265 silvermont) echo -xarch=sse4_2 ;;
3266 corei7-avx|sandybridge) echo -xtarget=sandybridge ;;
3267 core-avx*|ivybridge|haswell|broadwell)
3269 amdfam10|barcelona) echo -xtarget=barcelona ;;
3270 btver1) echo -xarch=amdsse4a ;;
3271 btver2|bdver*) echo -xarch=avx ;;
3272 athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
3273 k8|opteron|athlon64|athlon-fx)
3274 echo -xarch=sse2a ;;
3275 athlon*) echo -xarch=pentium_proa ;;
3278 -std=c99) echo -xc99 ;;
3279 -fomit-frame-pointer) echo -xregs=frameptr ;;
3280 -fPIC) echo -KPIC -xcode=pic32 ;;
3281 -W*,*) echo $flag ;;
3282 -f*-*|-W*|-mimpure-text) ;;
3293 case "${flag#*=}" in
3294 armv7-a|cortex-a*) echo -mv=7a8 ;;
3295 armv7-r|cortex-r*) echo -mv=7r4 ;;
3296 armv7-m|cortex-m*) echo -mv=7m3 ;;
3297 armv6*|arm11*) echo -mv=6 ;;
3298 armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
3300 armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
3303 -mfpu=neon) echo --float_support=vfpv3 --neon ;;
3304 -mfpu=vfp) echo --float_support=vfpv2 ;;
3305 -mfpu=vfpv3) echo --float_support=vfpv3 ;;
3306 -mfpu=vfpv3-d16) echo --float_support=vfpv3d16 ;;
3307 -msoft-float) echo --float_support=vfplib ;;
3308 -O[0-3]|-mf=*) echo $flag ;;
3310 -pds=*) echo $flag ;;
3311 -D*|-I*) echo $flag ;;
3312 --gcc|--abi=*) echo $flag ;;
3322 unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
3323 unset _ld_o _ldflags _ld_lib _ld_path
3324 unset _depflags _DEPCMD _DEPFLAGS
3327 if $_cc --version 2>&1 | grep -q '^GNU assembler'; then
3328 true # no-op to avoid reading stdin in following checks
3329 elif $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
3331 gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
3332 _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
3333 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3336 elif $_cc -v 2>&1 | grep -qi ^gcc; then
3338 gcc_version=$($_cc --version | head -n1)
3339 gcc_basever=$($_cc -dumpversion)
3340 gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
3341 gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
3342 _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
3343 if ! $_cc -dumpversion | grep -q '^2\.'; then
3344 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3348 elif $_cc --version 2>/dev/null | grep -q ^icc; then
3350 _ident=$($_cc --version | head -n1)
3355 _flags_filter=icc_flags
3356 elif $_cc -v 2>&1 | grep -q xlc; then
3358 _ident=$($_cc -qversion 2>/dev/null | head -n1)
3360 _cflags_size='-O5 -qcompact'
3361 elif $_cc -V 2>/dev/null | grep -q Compaq; then
3363 _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
3365 _cflags_speed='-fast'
3367 _flags_filter=ccc_flags
3368 elif $_cc --vsn 2>/dev/null | grep -Eq "ARM (C/C\+\+ )?Compiler"; then
3369 test -d "$sysroot" || die "No valid sysroot specified."
3371 _ident=$($_cc --vsn | grep -i build | head -n1 | sed 's/.*: //')
3372 armcc_conf="$PWD/armcc.conf"
3373 $_cc --arm_linux_configure \
3374 --arm_linux_config_file="$armcc_conf" \
3375 --configure_sysroot="$sysroot" \
3376 --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
3377 die "Error creating armcc configuration file."
3378 $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
3379 _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
3380 as_default="${cross_prefix}gcc"
3384 elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
3386 _ident=$($_cc -version | head -n1 | tr -s ' ')
3387 _flags='--gcc --abi=eabi -me'
3390 _depflags='-ppa -ppd=$(@:.o=.d)'
3391 _cflags_speed='-O3 -mf=5'
3392 _cflags_size='-O3 -mf=2'
3393 _flags_filter=tms470_flags
3394 elif $_cc -v 2>&1 | grep -q clang; then
3396 _ident=$($_cc --version | head -n1)
3397 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3400 elif $_cc -V 2>&1 | grep -q Sun; then
3402 _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
3403 _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
3404 _DEPFLAGS='-xM1 -xc99'
3407 _cflags_size='-O5 -xspace'
3408 _flags_filter=suncc_flags
3409 elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
3411 _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
3412 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3415 _flags_filter='filter_out -Wdisabled-optimization'
3416 elif $_cc -v 2>&1 | grep -q Open64; then
3418 _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
3419 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3422 _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
3423 elif $_cc -V 2>&1 | grep -q Portland; then
3425 _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
3426 opt_common='-alias=ansi -Mdse -Mlre -Mpre'
3427 _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
3428 _cflags_size="-O2 -Munroll=c:1 $opt_common"
3430 _flags_filter=pgi_flags
3431 elif $_cc 2>&1 | grep -q 'Microsoft.*ARM.*Assembler'; then
3433 _ident=$($_cc | head -n1)
3434 # 4509: "This form of conditional instruction is deprecated"
3435 _flags="-nologo -ignore 4509"
3436 _flags_filter=armasm_flags
3437 elif $_cc 2>&1 | grep -q Microsoft; then
3439 _ident=$($cc 2>&1 | head -n1)
3440 _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
3441 _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
3444 if $_cc 2>&1 | grep -q Linker; then
3451 _flags_filter=msvc_flags
3453 _ld_path='-libpath:'
3455 _cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64'
3456 if [ $pfx = hostcc ]; then
3457 append _cflags -Dsnprintf=_snprintf
3460 elif $_cc 2>&1 | grep -q Intel; then
3462 _ident=$($cc 2>&1 | head -n1)
3463 _depflags='-QMMD -QMF$(@:.o=.d) -QMT$@'
3464 # Not only is O3 broken on 13.x+ but it is slower on all previous
3465 # versions (tested) as well.
3467 _cflags_size="-O1 -Oi" # -O1 without -Oi miscompiles stuff
3468 if $_cc 2>&1 | grep -q Linker; then
3475 _flags_filter=icl_flags
3477 _ld_path='-libpath:'
3478 # -Qdiag-error to make icl error when seeing certain unknown arguments
3479 _flags='-nologo -Qdiag-error:4044,10157'
3480 # -Qvec- -Qsimd- to prevent miscompilation, -GS, fp:precise for consistency
3481 # with MSVC which enables it by default.
3482 _cflags='-D_USE_MATH_DEFINES -FIstdlib.h -Dstrtoll=_strtoi64 -Qms0 -Qvec- -Qsimd- -GS -fp:precise'
3483 if [ $pfx = hostcc ]; then
3484 append _cflags -Dsnprintf=_snprintf
3486 elif $_cc --version 2>/dev/null | grep -q ^cparser; then
3488 _ident=$($_cc --version | head -n1)
3492 _flags_filter=cparser_flags
3495 eval ${pfx}_type=\$_type
3496 eval ${pfx}_ident=\$_ident
3500 eval ${1}_C=\${_cc_c-\${${1}_C}}
3501 eval ${1}_E=\${_cc_e-\${${1}_E}}
3502 eval ${1}_O=\${_cc_o-\${${1}_O}}
3504 if [ -n "$_depflags" ]; then
3505 eval ${1}_DEPFLAGS=\$_depflags
3507 eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
3508 eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
3509 eval DEP${1}FLAGS=\$_flags
3514 cflags_filter=$_flags_filter
3515 cflags_speed=$_cflags_speed
3516 cflags_size=$_cflags_size
3517 cflags_noopt=$_cflags_noopt
3518 add_cflags $_flags $_cflags
3519 cc_ldflags=$_ldflags
3522 probe_cc hostcc "$host_cc"
3523 host_cflags_filter=$_flags_filter
3524 add_host_cflags $_flags $_cflags
3527 test -n "$cc_type" && enable $cc_type ||
3528 warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
3530 : ${as_default:=$cc}
3531 : ${dep_cc_default:=$cc}
3532 : ${ld_default:=$cc}
3533 : ${host_ld_default:=$host_cc}
3534 set_default ar as dep_cc ld host_ld windres
3537 asflags_filter=$_flags_filter
3538 add_asflags $_flags $_cflags
3542 ldflags_filter=$_flags_filter
3543 add_ldflags $_flags $_ldflags
3544 test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
3546 LD_LIB=${_ld_lib-$LD_LIB}
3547 LD_PATH=${_ld_path-$LD_PATH}
3549 probe_cc hostld "$host_ld"
3550 host_ldflags_filter=$_flags_filter
3551 add_host_ldflags $_flags $_ldflags
3552 HOSTLD_O=${_ld_o-$HOSTLD_O}
3554 if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
3555 probe_cc depcc "$dep_cc"
3556 CCDEP=${_DEPCMD:-$DEPCMD}
3557 CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
3561 if $ar 2>&1 | grep -q Microsoft; then
3564 elif $ar 2>&1 | grep -q 'Texas Instruments'; then
3567 elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
3568 arflags='-Xany -r -c'
3575 add_cflags $extra_cflags
3576 add_cxxflags $extra_cxxflags
3577 add_asflags $extra_cflags
3579 if test -n "$sysroot"; then
3582 add_cppflags --sysroot="$sysroot"
3583 add_ldflags --sysroot="$sysroot"
3584 # On Darwin --sysroot may be ignored, -isysroot always affects headers and linking
3585 add_cppflags -isysroot "$sysroot"
3586 add_ldflags -isysroot "$sysroot"
3589 add_cppflags -I"$sysinclude"
3590 add_ldflags --sysroot="$sysroot"
3595 if test "$cpu" = host; then
3596 enabled cross_compile &&
3597 die "--cpu=host makes no sense when cross-compiling."
3602 $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
3604 s/.*$1=\\([^ ]*\\).*/\\1/
3609 cpu=$(check_native -march || check_native -mcpu)
3613 test "${cpu:-host}" = host &&
3614 die "--cpu=host not supported with compiler $cc"
3617 # Deal with common $arch aliases
3631 "Power Macintosh"|ppc*|powerpc*)
3646 i[3-6]86*|i86pc|BePC|x86pc|x86_64|x86_32|amd64)
3651 is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
3654 # Add processor-specific flags
3655 if enabled aarch64; then
3659 cpuflags="-march=$cpu"
3662 cpuflags="-mcpu=$cpu"
3666 elif enabled alpha; then
3668 cpuflags="-mcpu=$cpu"
3670 elif enabled arm; then
3673 check_cpp_condition stddef.h \
3674 "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
3679 if check_arm_arch 4; then echo armv4;
3680 elif check_arm_arch 4T; then echo armv4t;
3681 elif check_arm_arch 5; then echo armv5;
3682 elif check_arm_arch 5E; then echo armv5e;
3683 elif check_arm_arch 5T; then echo armv5t;
3684 elif check_arm_arch 5TE; then echo armv5te;
3685 elif check_arm_arch 5TEJ; then echo armv5te;
3686 elif check_arm_arch 6; then echo armv6;
3687 elif check_arm_arch 6J; then echo armv6j;
3688 elif check_arm_arch 6K; then echo armv6k;
3689 elif check_arm_arch 6Z; then echo armv6z;
3690 elif check_arm_arch 6ZK; then echo armv6zk;
3691 elif check_arm_arch 6T2; then echo armv6t2;
3692 elif check_arm_arch 7; then echo armv7;
3693 elif check_arm_arch 7A 7_A; then echo armv7-a;
3694 elif check_arm_arch 7R 7_R; then echo armv7-r;
3695 elif check_arm_arch 7M 7_M; then echo armv7-m;
3696 elif check_arm_arch 7EM 7E_M; then echo armv7-m;
3697 elif check_arm_arch 8A 8_A; then echo armv8-a;
3701 [ "$cpu" = generic ] && cpu=$(probe_arm_arch)
3705 cpuflags="-march=$cpu"
3706 subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
3709 cpuflags="-mcpu=$cpu"
3711 cortex-a*) subarch=armv7a ;;
3712 cortex-r*) subarch=armv7r ;;
3713 cortex-m*) enable thumb; subarch=armv7m ;;
3714 arm11*) subarch=armv6 ;;
3715 arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
3716 armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
3717 *) subarch=$(probe_arm_arch) ;;
3723 armv5t*) enable fast_clz ;;
3726 disabled fast_unaligned || enable fast_unaligned
3730 elif enabled avr32; then
3735 cpuflags="-mpart=$cpu"
3739 cpuflags="-march=$cpu"
3743 cpuflags="-mcpu=$cpu"
3747 cpuflags="-march=$cpu"
3751 elif enabled bfin; then
3753 cpuflags="-mcpu=$cpu"
3755 elif enabled mips; then
3757 cpuflags="-march=$cpu"
3773 24kef*|34kf*|1004kf*)
3781 elif enabled ppc; then
3786 case $(tolower $cpu) in
3787 601|ppc601|powerpc601)
3788 cpuflags="-mcpu=601"
3791 603*|ppc603*|powerpc603*)
3792 cpuflags="-mcpu=603"
3795 604*|ppc604*|powerpc604*)
3796 cpuflags="-mcpu=604"
3799 g3|75*|ppc75*|powerpc75*)
3800 cpuflags="-mcpu=750"
3803 g4|745*|ppc745*|powerpc745*)
3804 cpuflags="-mcpu=7450"
3806 74*|ppc74*|powerpc74*)
3807 cpuflags="-mcpu=7400"
3809 g5|970|ppc970|powerpc970)
3810 cpuflags="-mcpu=970"
3813 cpuflags="-mcpu=$cpu"
3816 cpuflags="-mcpu=cell"
3820 cpuflags="-mcpu=e500mc"
3824 cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
3829 cpuflags="-mcpu=8540 -mhard-float"
3835 elif enabled sparc; then
3838 cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
3839 cpuflags="-mcpu=$cpu"
3841 ultrasparc*|niagara[234])
3842 cpuflags="-mcpu=$cpu"
3846 elif enabled x86; then
3850 cpuflags="-march=$cpu"
3854 # targets that do NOT support nopl and conditional mov (cmov)
3855 pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
3856 cpuflags="-march=$cpu"
3859 # targets that do support nopl and conditional mov (cmov)
3860 i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx\
3861 |core*|atom|bonnell|nehalem|westmere|silvermont|sandybridge|ivybridge|haswell|broadwell|amdfam10|barcelona|b[dt]ver*)
3862 cpuflags="-march=$cpu"
3866 # targets that do support conditional mov but on which it's slow
3867 pentium4|pentium4m|prescott|nocona)
3868 cpuflags="-march=$cpu"
3876 if [ "$cpu" != generic ]; then
3877 add_cflags $cpuflags
3878 add_asflags $cpuflags
3881 # compiler sanity check
3883 int main(void){ return 0; }
3885 if test "$?" != 0; then
3886 echo "$cc is unable to create an executable file."
3887 if test -z "$cross_prefix" && ! enabled cross_compile ; then
3888 echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
3889 echo "Only do this if you know what cross compiling means."
3891 die "C compiler test failed."
3894 add_cppflags -D_ISOC99_SOURCE
3895 add_cxxflags -D__STDC_CONSTANT_MACROS
3896 check_cflags -std=c99
3897 check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
3900 check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
3904 add_host_cppflags -D_ISOC99_SOURCE
3905 check_host_cflags -std=c99
3906 check_host_cflags -Wall
3907 check_host_cflags -O3
3913 check_code cc "" "int test[2*($expr) - 1]" &&
3914 subarch=$arch64 || subarch=$arch32
3922 check_64bit mips mips64 '_MIPS_SIM > 1'
3926 check_64bit parisc parisc64 'sizeof(void *) > 4'
3930 check_64bit ppc ppc64 'sizeof(void *) > 4'
3934 check_64bit s390 s390x 'sizeof(void *) > 4'
3938 check_64bit sparc sparc64 'sizeof(void *) > 4'
3942 check_64bit x86_32 x86_64 'sizeof(void *) > 4'
3943 if test "$subarch" = "x86_64"; then
3948 check_cc <<EOF && subarch="ppc64"
3949 int test[(int)sizeof(char*) - 7];
3955 enabled spic && enable_weak pic
3961 add_cppflags '-I\$(SRC_PATH)/compat/aix'
3962 enabled shared && add_ldflags -Wl,-brtl
3966 SLIB_INSTALL_NAME='$(SLIBNAME)'
3968 # soname not set on purpose
3972 prefix_default="/boot/common"
3973 network_extralibs="-lnetwork"
3977 SHFLAGS='-shared -Wl,-h,$$(@F)'
3978 enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
3979 network_extralibs="-lsocket -lnsl"
3980 # When using suncc to build, the Solaris linker will mark
3981 # an executable with each instruction set encountered by
3982 # the Solaris assembler. As our libraries contain their own
3983 # guards for processor-specific code, instead suppress
3984 # generation of the HWCAPS ELF section on Solaris x86 only.
3985 enabled_all suncc x86 &&
3986 echo "hwcap_1 = OVERRIDE;" > mapfile &&
3987 add_ldflags -Wl,-M,mapfile
3988 nm_default='nm -P -g'
3992 oss_indev_extralibs="-lossaudio"
3993 oss_outdev_extralibs="-lossaudio"
3994 enabled gcc || check_ldflags -Wl,-zmuldefs
3999 SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
4001 oss_indev_extralibs="-lossaudio"
4002 oss_outdev_extralibs="-lossaudio"
4010 add_extralibs -lpoll -lgnugetopt
4014 enabled ppc && add_asflags -force_cpusubtype_ALL
4015 SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
4016 enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
4018 add_ldflags -Wl,-dynamic,-search_paths_first
4020 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
4021 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
4023 enabled x86_64 && objformat="macho64"
4024 enabled_any pic shared ||
4025 { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
4028 if test $target_os = "mingw32ce"; then
4034 if enabled x86_64; then
4035 LIBTARGET="i386:x86-64"
4036 elif enabled arm; then
4039 enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres
4040 check_ldflags -Wl,--nxcompat
4041 check_ldflags -Wl,--dynamicbase
4042 enabled x86_32 && check_ldflags -Wl,--large-address-aware
4043 shlibdir_default="$bindir_default"
4046 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4047 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4048 dlltool="${cross_prefix}dlltool"
4049 if check_cmd lib.exe -list; then
4050 SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
4051 if enabled x86_64; then
4054 elif check_cmd $dlltool --version; then
4055 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)'
4057 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4059 SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
4060 SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
4061 SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.orig.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
4068 if enabled shared; then
4069 # Link to the import library instead of the normal static library
4072 # Cannot build both shared and static libs with MSVC or icl.
4075 enabled x86_32 && check_ldflags -LARGEADDRESSAWARE
4076 shlibdir_default="$bindir_default"
4079 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4080 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4081 SLIB_CREATE_DEF_CMD='$(SRC_PATH)/compat/windows/makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
4082 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4084 SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
4085 SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
4086 SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
4093 shlibdir_default="$bindir_default"
4096 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4097 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4098 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4100 SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
4101 SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
4104 enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres
4106 *-dos|freedos|opendos)
4107 network_extralibs="-lsocket"
4110 add_cppflags -U__STRICT_ANSI__
4117 ranlib="echo ignoring ranlib"
4123 add_cppflags -D_GNU_SOURCE
4124 add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
4125 SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
4129 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
4130 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
4131 SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
4132 echo PROTMODE >> $(SUBDIR)$(NAME).def; \
4133 echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
4134 echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
4135 echo EXPORTS >> $(SUBDIR)$(NAME).def; \
4136 emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
4137 SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
4138 emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
4139 SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
4141 enable_weak os2threads
4144 add_cppflags -D_BSD_SOURCE
4149 add_cppflags -D_QNX_SOURCE
4150 network_extralibs="-lsocket"
4155 add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
4156 add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
4157 add_ldflags -Wl,--target1-abs,--no-undefined \
4158 -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
4159 -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
4160 add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
4161 -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
4162 -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
4165 add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
4170 add_cppflags -D_C99_SNPRINTF_EXTENSION \
4171 -D_REENTRANT_SOURCE \
4172 -D_RESEARCH_SOURCE \
4175 add_compat strtod.o strtod=avpriv_strtod
4176 network_extralibs='-lbsd'
4177 exeobjs=compat/plan9/main.o
4184 die "Unknown OS '$target_os'."
4188 # determine libc flavour
4193 # uclibc defines __GLIBC__, so it needs to be checked before glibc.
4194 if check_${pfx}cpp_condition features.h "defined __UCLIBC__"; then
4195 eval ${pfx}libc_type=uclibc
4196 add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
4197 elif check_${pfx}cpp_condition features.h "defined __GLIBC__"; then
4198 eval ${pfx}libc_type=glibc
4199 add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
4200 # MinGW headers can be installed on Cygwin, so check for newlib first.
4201 elif check_${pfx}cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
4202 eval ${pfx}libc_type=newlib
4203 add_${pfx}cppflags -U__STRICT_ANSI__
4204 # MinGW64 is backwards compatible with MinGW32, so check for it first.
4205 elif check_${pfx}cpp_condition _mingw.h "defined __MINGW64_VERSION_MAJOR"; then
4206 eval ${pfx}libc_type=mingw64
4207 if check_${pfx}cpp_condition _mingw.h "__MINGW64_VERSION_MAJOR < 3"; then
4208 add_compat msvcrt/snprintf.o
4209 add_cflags "-include $source_path/compat/msvcrt/snprintf.h"
4211 add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
4212 eval test \$${pfx_no_}cc_type = "gcc" &&
4213 add_${pfx}cppflags -D__printf__=__gnu_printf__
4214 elif check_${pfx}cpp_condition _mingw.h "defined __MINGW_VERSION" ||
4215 check_${pfx}cpp_condition _mingw.h "defined __MINGW32_VERSION"; then
4216 eval ${pfx}libc_type=mingw32
4217 check_${pfx}cpp_condition _mingw.h "__MINGW32_MAJOR_VERSION > 3 || \
4218 (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
4219 die "ERROR: MinGW32 runtime version must be >= 3.15."
4220 add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
4221 eval test \$${pfx_no_}cc_type = "gcc" &&
4222 add_${pfx}cppflags -D__printf__=__gnu_printf__
4223 elif check_${pfx}cpp_condition crtversion.h "defined _VC_CRT_MAJOR_VERSION"; then
4224 eval ${pfx}libc_type=msvcrt
4225 # The MSVC 2010 headers (Win 7.0 SDK) set _WIN32_WINNT to
4226 # 0x601 by default unless something else is set by the user.
4227 # This can easily lead to us detecting functions only present
4228 # in such new versions and producing binaries requiring windows 7.0.
4229 # Therefore explicitly set the default to XP unless the user has
4230 # set something else on the command line.
4231 check_${pfx}cpp_condition stdlib.h "defined(_WIN32_WINNT)" ||
4232 add_${pfx}cppflags -D_WIN32_WINNT=0x0502
4233 elif check_${pfx}cpp_condition stddef.h "defined __KLIBC__"; then
4234 eval ${pfx}libc_type=klibc
4235 elif check_${pfx}cpp_condition sys/cdefs.h "defined __BIONIC__"; then
4236 eval ${pfx}libc_type=bionic
4237 elif check_${pfx}cpp_condition sys/brand.h "defined LABELED_BRAND_NAME"; then
4238 eval ${pfx}libc_type=solaris
4239 add_${pfx}cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
4241 check_${pfx}cc <<EOF
4243 void *v = localtime_r;
4245 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
4247 void *v = localtime_r;
4253 test -n "$libc_type" && enable libc_$libc_type
4255 test -n "$host_libc_type" && enable host_libc_$host_libc_type
4259 add_compat strtod.o strtod=avpriv_strtod
4262 add_compat strtod.o strtod=avpriv_strtod
4263 add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \
4264 _snprintf=avpriv_snprintf \
4265 vsnprintf=avpriv_vsnprintf
4269 # hacks for compiler/libc/os combinations
4271 if enabled_all tms470 libc_glibc; then
4272 CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
4273 add_cppflags -D__USER_LABEL_PREFIX__=
4274 add_cppflags -D__builtin_memset=memset
4275 add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
4276 add_cflags -pds=48 # incompatible redefinition of macro
4279 if enabled_all ccc libc_glibc; then
4280 add_ldflags -Wl,-z,now # calls to libots crash without this
4283 check_compile_assert flt_lim "float.h limits.h" "DBL_MAX == (double)DBL_MAX" ||
4284 add_cppflags '-I\$(SRC_PATH)/compat/float'
4287 echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
4290 echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $FFMPEG_CONFIGURATION)" >config.fate
4292 check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable_weak pic
4294 set_default $PATHS_LIST
4297 # we need to build at least one lib type
4298 if ! enabled_any static shared; then
4300 At least one library type must be built.
4301 Specify --enable-static to build the static libraries or --enable-shared to
4302 build the shared libraries as well. To only build the shared libraries specify
4303 --disable-static in addition to --enable-shared.
4308 die_license_disabled() {
4309 enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
4312 die_license_disabled_gpl() {
4313 enabled $1 || { enabled $2 && die "$2 is incompatible with the gpl and --enable-$1 is not specified."; }
4316 die_license_disabled gpl frei0r
4317 die_license_disabled gpl libcdio
4318 die_license_disabled gpl libsmbclient
4319 die_license_disabled gpl libutvideo
4320 die_license_disabled gpl libvidstab
4321 die_license_disabled gpl libx264
4322 die_license_disabled gpl libx265
4323 die_license_disabled gpl libxavs
4324 die_license_disabled gpl libxvid
4325 die_license_disabled gpl libzvbi
4326 die_license_disabled gpl x11grab
4328 die_license_disabled nonfree libaacplus
4329 die_license_disabled nonfree libfaac
4330 enabled gpl && die_license_disabled_gpl nonfree libfdk_aac
4331 enabled gpl && die_license_disabled_gpl nonfree openssl
4333 die_license_disabled version3 libopencore_amrnb
4334 die_license_disabled version3 libopencore_amrwb
4335 die_license_disabled version3 libsmbclient
4336 die_license_disabled version3 libvo_aacenc
4337 die_license_disabled version3 libvo_amrwbenc
4339 enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
4341 disabled optimizations || check_cflags -fomit-frame-pointer
4344 disabled pic && return
4347 case "$target_os" in
4357 enabled pic && enable_weak_pic
4359 check_cc <<EOF || die "Symbol mangling check failed."
4362 sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
4363 extern_prefix=${sym%%ff_extern*}
4365 check_cc <<EOF && enable_weak inline_asm
4366 void foo(void) { __asm__ volatile ("" ::); }
4370 for restrict_keyword in restrict __restrict__ __restrict; do
4371 check_cc <<EOF && _restrict=$restrict_keyword && break
4372 void foo(char * $restrict_keyword p);
4376 check_cc <<EOF && enable pragma_deprecated
4377 void foo(void) { _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") }
4380 check_cc <<EOF && enable attribute_packed
4381 struct { int x; } __attribute__((packed)) x;
4384 check_cc <<EOF && enable attribute_may_alias
4385 union { int x; } __attribute__((may_alias)) x;
4388 check_cc <<EOF || die "endian test failed"
4389 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
4391 od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
4393 if [ "$cpu" = "power7" ] || [ "$cpu" = "power8" ] ;then
4394 if ! enabled bigendian && enabled altivec ;then
4400 log "check_gas using '$as' as AS"
4401 # :vararg is used on aarch64, arm and ppc altivec
4402 check_as <<EOF || return 1
4403 .macro m n, y:vararg=0
4408 # .altmacro is only used in arm asm
4409 ! enabled arm || check_as <<EOF || return 1
4416 if enabled_any arm aarch64 || enabled_all ppc altivec && enabled asm; then
4418 enabled_any arm aarch64 && nogas=die
4419 enabled_all ppc altivec && [ $target_os_default != aix ] && nogas=warn
4423 arm*) gaspp_as_type=armasm; as_noop=-h ;;
4424 gcc) gaspp_as_type=gas ;;
4425 *) gaspp_as_type=$as_type ;;
4428 [ $target_os = "darwin" ] && gaspp_as_type="apple-$gaspp_as_type"
4430 test "${as#*gas-preprocessor.pl}" != "$as" ||
4431 check_cmd gas-preprocessor.pl -arch $arch -as-type $gaspp_as_type -- ${as:=$cc} $as_noop &&
4432 gas="${gas:=gas-preprocessor.pl} -arch $arch -as-type $gaspp_as_type -- ${as:=$cc}"
4434 if ! check_gas ; then
4437 $nogas "GNU assembler not found, install/update gas-preprocessor"
4440 check_as <<EOF && enable as_func
4446 check_inline_asm inline_asm_labels '"1:\n"'
4448 check_inline_asm inline_asm_nonlocal_labels '"Label:\n"'
4450 if enabled aarch64; then
4451 enabled armv8 && check_insn armv8 'prfm pldl1strm, [x0]'
4452 # internal assembler in clang 3.3 does not support this instruction
4453 enabled neon && check_insn neon 'ext v0.8B, v0.8B, v1.8B, #1'
4454 enabled vfp && check_insn vfp 'fmadd d0, d0, d1, d2'
4456 map 'enabled_any ${v}_external ${v}_inline || disable $v' $ARCH_EXT_LIST_ARM
4458 elif enabled alpha; then
4462 elif enabled arm; then
4464 check_cpp_condition stddef.h "defined __thumb__" && check_cc <<EOF && enable_weak thumb
4465 float func(float a, float b){ return a+b; }
4468 enabled thumb && check_cflags -mthumb || check_cflags -marm
4470 if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
4472 elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
4473 case "${cross_prefix:-$cc}" in
4474 *hardfloat*) enable vfp_args; fpabi=vfp ;;
4475 *) check_ld "cc" <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
4476 __asm__ (".eabi_attribute 28, 1");
4477 int main(void) { return 0; }
4480 warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
4483 enabled armv5te && check_insn armv5te 'qadd r0, r0, r0'
4484 enabled armv6 && check_insn armv6 'sadd16 r0, r0, r0'
4485 enabled armv6t2 && check_insn armv6t2 'movt r0, #0'
4486 enabled neon && check_insn neon 'vadd.i16 q0, q0, q0'
4487 enabled vfp && check_insn vfp 'fadds s0, s0, s0'
4488 enabled vfpv3 && check_insn vfpv3 'vmov.f32 s0, #1.0'
4489 enabled setend && check_insn setend 'setend be'
4491 [ $target_os = linux ] || [ $target_os = android ] ||
4492 map 'enabled_any ${v}_external ${v}_inline || disable $v' \
4495 check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
4497 check_as <<EOF && enable as_dn_directive
4502 [ $target_os != win32 ] && enabled_all armv6t2 shared !pic && enable_weak_pic
4504 elif enabled mips; then
4506 check_inline_asm loongson '"dmult.g $1, $2, $3"'
4507 enabled mips32r2 && add_cflags "-mips32r2" && add_asflags "-mips32r2" &&
4508 check_inline_asm mips32r2 '"rotr $t0, $t1, 1"'
4509 enabled mipsdspr1 && add_cflags "-mdsp" && add_asflags "-mdsp" &&
4510 check_inline_asm mipsdspr1 '"addu.qb $t0, $t1, $t2"'
4511 enabled mipsdspr2 && add_cflags "-mdspr2" && add_asflags "-mdspr2" &&
4512 check_inline_asm mipsdspr2 '"absq_s.qb $t0, $t1"'
4513 enabled mipsfpu && add_cflags "-mhard-float" && add_asflags "-mhard-float" &&
4514 check_inline_asm mipsfpu '"madd.d $f0, $f2, $f4, $f6"'
4516 elif enabled parisc; then
4518 if enabled gcc; then
4519 case $($cc -dumpversion) in
4520 4.[3-8].*) check_cflags -fno-optimize-sibling-calls ;;
4524 elif enabled ppc; then
4526 enable local_aligned_8 local_aligned_16 local_aligned_32
4528 check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
4529 check_inline_asm ibm_asm '"add 0, 0, 0"'
4530 check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
4531 check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
4533 # AltiVec flags: The FSF version of GCC differs from the Apple version
4534 if enabled altivec; then
4535 check_cflags -maltivec -mabi=altivec &&
4536 { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
4537 check_cflags -faltivec
4539 # check if our compiler supports Motorola AltiVec C API
4540 check_cc <<EOF || disable altivec
4543 vector signed int v1 = (vector signed int) { 0 };
4544 vector signed int v2 = (vector signed int) { 1 };
4545 v1 = vec_add(v1, v2);
4550 enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
4553 if enabled vsx; then
4556 elif enabled x86; then
4558 check_builtin rdtsc intrin.h "__rdtsc()"
4559 check_builtin mm_empty mmintrin.h "_mm_empty()"
4561 enable local_aligned_8 local_aligned_16 local_aligned_32
4563 # check whether EBP is available on x86
4564 # As 'i' is stored on the stack, this program will crash
4565 # if the base pointer is used to access it because the
4566 # base pointer is cleared in the inline assembly code.
4567 check_exec_crash <<EOF && enable ebp_available
4569 __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
4573 # check whether EBX is available on x86
4574 check_inline_asm ebx_available '""::"b"(0)' &&
4575 check_inline_asm ebx_available '"":::"%ebx"'
4577 # check whether xmm clobbers are supported
4578 check_inline_asm xmm_clobbers '"":::"%xmm0"'
4580 check_inline_asm inline_asm_direct_symbol_refs '"movl '$extern_prefix'test, %eax"' ||
4581 check_inline_asm inline_asm_direct_symbol_refs '"movl '$extern_prefix'test(%rip), %eax"'
4583 # check whether binutils is new enough to compile SSSE3/MMXEXT
4584 enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
4585 enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
4587 if ! disabled_any asm mmx yasm; then
4588 if check_cmd $yasmexe --version; then
4589 enabled x86_64 && yasm_extra="-m amd64"
4590 yasm_debug="-g dwarf2"
4591 elif check_cmd nasm -v; then
4593 yasm_debug="-g -F dwarf"
4594 if enabled x86_64; then
4595 case "$objformat" in
4596 elf) objformat=elf64 ;;
4597 win32) objformat=win64 ;;
4602 YASMFLAGS="-f $objformat $yasm_extra"
4603 enabled pic && append YASMFLAGS "-DPIC"
4604 test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
4605 case "$objformat" in
4606 elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
4609 check_yasm "movbe ecx, [5]" && enable yasm ||
4610 die "yasm/nasm not found or too old. Use --disable-yasm for a crippled build."
4611 check_yasm "vextracti128 xmm0, ymm0, 0" || disable avx2_external
4612 check_yasm "vpmacsdd xmm0, xmm1, xmm2, xmm3" || disable xop_external
4613 check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
4614 check_yasm "CPU amdnop" || disable cpunop
4618 athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
4625 check_code cc arm_neon.h "int16x8_t test = vdupq_n_s16(0)" && enable intrinsics_neon
4627 check_ldflags -Wl,--as-needed
4628 check_ldflags -Wl,-z,noexecstack
4630 if check_func dlopen; then
4632 elif check_func dlopen -ldl; then
4636 if ! disabled network; then
4637 check_func getaddrinfo $network_extralibs
4638 check_func getservbyport $network_extralibs
4639 check_func inet_aton $network_extralibs
4641 check_type netdb.h "struct addrinfo"
4642 check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
4643 check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
4644 check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
4645 check_type poll.h "struct pollfd"
4646 check_type netinet/sctp.h "struct sctp_event_subscribe"
4647 check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
4648 check_type netinet/in.h "struct sockaddr_in6"
4649 check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
4650 check_type "sys/types.h sys/socket.h" socklen_t
4652 # Prefer arpa/inet.h over winsock2
4653 if check_header arpa/inet.h ; then
4654 check_func closesocket
4655 elif check_header winsock2.h ; then
4656 check_func_headers winsock2.h closesocket -lws2 &&
4657 network_extralibs="-lws2" ||
4658 { check_func_headers winsock2.h closesocket -lws2_32 &&
4659 network_extralibs="-lws2_32"; } || disable winsock2_h network
4660 check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
4662 check_type ws2tcpip.h socklen_t
4663 check_type ws2tcpip.h "struct addrinfo"
4664 check_type ws2tcpip.h "struct group_source_req"
4665 check_type ws2tcpip.h "struct ip_mreq_source"
4666 check_type ws2tcpip.h "struct ipv6_mreq"
4667 check_type winsock2.h "struct pollfd"
4668 check_struct winsock2.h "struct sockaddr" sa_len
4669 check_type ws2tcpip.h "struct sockaddr_in6"
4670 check_type ws2tcpip.h "struct sockaddr_storage"
4676 check_builtin atomic_cas_ptr atomic.h "void **ptr; void *oldval, *newval; atomic_cas_ptr(ptr, oldval, newval)"
4677 check_builtin machine_rw_barrier mbarrier.h "__machine_rw_barrier()"
4678 check_builtin MemoryBarrier windows.h "MemoryBarrier()"
4679 check_builtin sarestart signal.h "SA_RESTART"
4680 check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
4682 check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
4683 check_func ${malloc_prefix}memalign && enable memalign
4684 check_func ${malloc_prefix}posix_memalign && enable posix_memalign
4687 check_func_headers time.h clock_gettime || { check_func_headers time.h clock_gettime -lrt && add_extralibs -lrt && LIBRT="-lrt"; }
4690 check_func gethrtime
4692 check_func getrusage
4693 check_func gettimeofday
4696 check_func localtime_r
4697 check_func mach_absolute_time
4701 # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
4702 check_func_headers time.h nanosleep || { check_func_headers time.h nanosleep -lrt && add_extralibs -lrt && LIBRT="-lrt"; }
4703 check_func sched_getaffinity
4704 check_func setrlimit
4705 check_struct "sys/stat.h" "struct stat" st_mtim.tv_nsec -D_BSD_SOURCE
4706 check_func strerror_r
4711 check_func_headers conio.h kbhit
4712 check_func_headers io.h setmode
4713 check_func_headers lzo/lzo1x.h lzo1x_999_compress
4714 check_func_headers stdlib.h getenv
4716 check_func_headers windows.h CoTaskMemFree -lole32
4717 check_func_headers windows.h GetProcessAffinityMask
4718 check_func_headers windows.h GetProcessTimes
4719 check_func_headers windows.h GetSystemTimeAsFileTime
4720 check_func_headers windows.h MapViewOfFile
4721 check_func_headers windows.h PeekNamedPipe
4722 check_func_headers windows.h SetConsoleTextAttribute
4723 check_func_headers windows.h Sleep
4724 check_func_headers windows.h VirtualAlloc
4725 check_struct windows.h "CONDITION_VARIABLE" Ptr
4726 check_func_headers glob.h glob
4728 check_func_headers "X11/Xlib.h X11/extensions/Xvlib.h" XvGetPortAttribute -lXv -lX11 -lXext
4730 check_header cl/cl.h
4731 check_header direct.h
4732 check_header dlfcn.h
4734 check_header dxva2api.h -D_WIN32_WINNT=0x0600
4736 check_header libcrystalhd/libcrystalhd_if.h
4737 check_header mach/mach_time.h
4738 check_header malloc.h
4740 check_header sys/mman.h
4741 check_header sys/param.h
4742 check_header sys/resource.h
4743 check_header sys/select.h
4744 check_header sys/time.h
4745 check_header sys/un.h
4746 check_header termios.h
4747 check_header unistd.h
4748 check_header vdpau/vdpau.h
4749 check_header vdpau/vdpau_x11.h
4750 check_header VideoDecodeAcceleration/VDADecoder.h
4751 check_header windows.h
4752 check_header X11/extensions/XvMClib.h
4753 check_header asm/types.h
4755 check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
4756 check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
4757 check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
4759 check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
4761 if ! disabled w32threads && ! enabled pthreads; then
4762 check_func_headers "windows.h process.h" _beginthreadex &&
4763 enable w32threads || disable w32threads
4766 # check for some common methods of building with pthread support
4767 # do this before the optional library checks as some of them require pthreads
4768 if ! disabled pthreads && ! enabled w32threads && ! enabled os2threads; then
4770 if check_func pthread_join -pthread && check_func pthread_create -pthread; then
4772 add_extralibs -pthread
4773 elif check_func pthread_join -pthreads && check_func pthread_create -pthreads; then
4774 add_cflags -pthreads
4775 add_extralibs -pthreads
4776 elif check_func pthread_join -ldl -pthread && check_func pthread_create -ldl -pthread; then
4777 add_cflags -ldl -pthread
4778 add_extralibs -ldl -pthread
4779 elif check_func pthread_join -lpthreadGC2 && check_func pthread_create -lpthreadGC2; then
4780 add_extralibs -lpthreadGC2
4781 elif check_lib pthread.h pthread_join -lpthread && check_lib pthread.h pthread_create -lpthread; then
4783 elif ! check_func pthread_join && ! check_func pthread_create; then
4786 check_code cc "pthread.h" "static pthread_mutex_t atomic_lock = PTHREAD_MUTEX_INITIALIZER" || disable pthreads
4790 if enabled pthreads; then
4791 check_func pthread_cancel
4794 disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
4795 disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
4796 disabled lzma || check_lib2 lzma.h lzma_version_number -llzma || disable lzma
4798 check_lib math.h sin -lm && LIBM="-lm"
4799 disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd
4806 for func in $MATH_FUNCS; do
4807 eval check_mathfunc $func \${${func}_args:-1}
4810 # these are off by default, so fail if requested and not available
4811 enabled avfoundation_indev && { check_header_oc AVFoundation/AVFoundation.h || disable avfoundation_indev; }
4812 enabled avisynth && { { check_lib2 "windows.h" LoadLibrary; } ||
4813 { check_lib2 "dlfcn.h" dlopen -ldl; } ||
4814 die "ERROR: LoadLibrary/dlopen not found for avisynth"; }
4815 enabled decklink && { check_header DeckLinkAPI.h || die "ERROR: DeckLinkAPI.h header not found"; }
4816 enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
4817 enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
4818 enabled ladspa && { check_header ladspa.h || die "ERROR: ladspa.h header not found"; }
4819 enabled libiec61883 && require libiec61883 libiec61883/iec61883.h iec61883_cmp_connect -lraw1394 -lavc1394 -lrom1394 -liec61883
4820 enabled libaacplus && require "libaacplus >= 2.0.0" aacplus.h aacplusEncOpen -laacplus
4821 enabled libass && require_pkg_config libass ass/ass.h ass_library_init
4822 enabled libbluray && require_pkg_config libbluray libbluray/bluray.h bd_open
4823 enabled libbs2b && require_pkg_config libbs2b bs2b.h bs2b_open
4824 enabled libcelt && require libcelt celt/celt.h celt_decode -lcelt0 &&
4825 { check_lib celt/celt.h celt_decoder_create_custom -lcelt0 ||
4826 die "ERROR: libcelt must be installed and version must be >= 0.11.0."; }
4827 enabled libcaca && require_pkg_config caca caca.h caca_create_canvas
4828 enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
4829 enabled libfdk_aac && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
4830 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"
4831 enabled libflite && require2 libflite "flite/flite.h" flite_init $flite_libs
4832 enabled fontconfig && enable libfontconfig
4833 enabled libfontconfig && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit
4834 enabled libfreetype && require_libfreetype
4835 enabled libfribidi && require_pkg_config fribidi fribidi.h fribidi_version_info
4836 enabled libgme && require libgme gme/gme.h gme_new_emu -lgme -lstdc++
4837 enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
4838 check_lib "${gsm_hdr}" gsm_create -lgsm && break;
4839 done || die "ERROR: libgsm not found"; }
4840 enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
4841 enabled libmodplug && require_pkg_config libmodplug libmodplug/modplug.h ModPlug_Load
4842 enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
4843 enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
4844 enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
4845 enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
4846 enabled libopencv && require_pkg_config opencv opencv/cxcore.h cvCreateImageHeader
4847 enabled libopenjpeg && { check_lib openjpeg.h opj_version -lopenmj2 -DOPJ_STATIC ||
4848 check_lib openjpeg-1.5/openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC ||
4849 check_lib openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC ||
4850 die "ERROR: libopenjpeg not found"; }
4851 enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
4852 enabled libpulse && require_pkg_config libpulse pulse/pulseaudio.h pa_context_new
4853 enabled libquvi && require_pkg_config libquvi quvi/quvi.h quvi_init
4854 enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
4855 enabled libschroedinger && require_pkg_conf