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.

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