You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5879 lines
183KB

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