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.

5420 lines
167KB

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