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.

5596 lines
172KB

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