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.

3966 lines
115KB

  1. #!/bin/sh
  2. #
  3. # Libav 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 LIBAV, 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 Libav."
  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. --prefix=PREFIX install in PREFIX [$prefix]
  72. --bindir=DIR install binaries in DIR [PREFIX/bin]
  73. --datadir=DIR install data files in DIR [PREFIX/share/avconv]
  74. --libdir=DIR install libs in DIR [PREFIX/lib]
  75. --shlibdir=DIR install shared libs in DIR [PREFIX/lib]
  76. --incdir=DIR install includes in DIR [PREFIX/include]
  77. --mandir=DIR install man page in DIR [PREFIX/share/man]
  78. Licensing options:
  79. --enable-gpl allow use of GPL code, the resulting libs
  80. and binaries will be under GPL [no]
  81. --enable-version3 upgrade (L)GPL to version 3 [no]
  82. --enable-nonfree allow use of nonfree code, the resulting libs
  83. and binaries will be unredistributable [no]
  84. Configuration options:
  85. --disable-static do not build static libraries [no]
  86. --enable-shared build shared libraries [no]
  87. --enable-small optimize for size instead of speed
  88. --enable-runtime-cpudetect detect cpu capabilities at runtime (bigger binary)
  89. --enable-gray enable full grayscale support (slower color)
  90. --disable-swscale-alpha disable alpha channel support in swscale
  91. Program options:
  92. --disable-programs do not build command line programs
  93. --disable-avconv disable avconv build
  94. --disable-avplay disable avplay build
  95. --disable-avprobe disable avprobe build
  96. --disable-avserver disable avserver build
  97. Component options:
  98. --disable-doc do not build documentation
  99. --disable-avdevice disable libavdevice build
  100. --disable-avcodec disable libavcodec build
  101. --disable-avformat disable libavformat build
  102. --disable-avutil disable libavutil build
  103. --disable-swscale disable libswscale build
  104. --disable-avfilter disable video filter support [no]
  105. --disable-avresample disable libavresample build [no]
  106. --disable-pthreads disable pthreads [auto]
  107. --disable-w32threads disable Win32 threads [auto]
  108. --enable-x11grab enable X11 grabbing [no]
  109. --disable-network disable network support [no]
  110. --disable-dct disable DCT code
  111. --disable-dwt disable DWT code
  112. --disable-lsp disable LSP code
  113. --disable-lzo disable LZO decoder code
  114. --disable-mdct disable MDCT code
  115. --disable-rdft disable RDFT code
  116. --disable-fft disable FFT code
  117. --enable-dxva2 enable DXVA2 code
  118. --enable-vaapi enable VAAPI code
  119. --enable-vda enable VDA code
  120. --enable-vdpau enable VDPAU code
  121. Individual component options:
  122. --disable-everything disable all components listed below
  123. --disable-encoder=NAME disable encoder NAME
  124. --enable-encoder=NAME enable encoder NAME
  125. --disable-encoders disable all encoders
  126. --disable-decoder=NAME disable decoder NAME
  127. --enable-decoder=NAME enable decoder NAME
  128. --disable-decoders disable all decoders
  129. --disable-hwaccel=NAME disable hwaccel NAME
  130. --enable-hwaccel=NAME enable hwaccel NAME
  131. --disable-hwaccels disable all hwaccels
  132. --disable-muxer=NAME disable muxer NAME
  133. --enable-muxer=NAME enable muxer NAME
  134. --disable-muxers disable all muxers
  135. --disable-demuxer=NAME disable demuxer NAME
  136. --enable-demuxer=NAME enable demuxer NAME
  137. --disable-demuxers disable all demuxers
  138. --enable-parser=NAME enable parser NAME
  139. --disable-parser=NAME disable parser NAME
  140. --disable-parsers disable all parsers
  141. --enable-bsf=NAME enable bitstream filter NAME
  142. --disable-bsf=NAME disable bitstream filter NAME
  143. --disable-bsfs disable all bitstream filters
  144. --enable-protocol=NAME enable protocol NAME
  145. --disable-protocol=NAME disable protocol NAME
  146. --disable-protocols disable all protocols
  147. --enable-indev=NAME enable input device NAME
  148. --disable-indev=NAME disable input device NAME
  149. --disable-indevs disable input devices
  150. --enable-outdev=NAME enable output device NAME
  151. --disable-outdev=NAME disable output device NAME
  152. --disable-outdevs disable output devices
  153. --disable-devices disable all devices
  154. --enable-filter=NAME enable filter NAME
  155. --disable-filter=NAME disable filter NAME
  156. --disable-filters disable all filters
  157. External library support:
  158. --enable-avisynth enable reading of AVISynth script files [no]
  159. --enable-bzlib enable bzlib [autodetect]
  160. --enable-frei0r enable frei0r video filtering
  161. --enable-gnutls enable gnutls [no]
  162. --enable-libcdio enable audio CD grabbing with libcdio
  163. --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
  164. and libraw1394 [no]
  165. --enable-libfaac enable AAC encoding via libfaac [no]
  166. --enable-libfdk-aac enable AAC encoding via libfdk-aac [no]
  167. --enable-libfreetype enable libfreetype [no]
  168. --enable-libgsm enable GSM de/encoding via libgsm [no]
  169. --enable-libilbc enable iLBC de/encoding via libilbc [no]
  170. --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
  171. --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
  172. --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
  173. --enable-libopencv enable video filtering via libopencv [no]
  174. --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
  175. --enable-libopus enable Opus decoding via libopus [no]
  176. --enable-libpulse enable Pulseaudio input via libpulse [no]
  177. --enable-librtmp enable RTMP[E] support via librtmp [no]
  178. --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
  179. --enable-libspeex enable Speex de/encoding via libspeex [no]
  180. --enable-libtheora enable Theora encoding via libtheora [no]
  181. --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
  182. --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
  183. --enable-libvorbis enable Vorbis encoding via libvorbis [no]
  184. --enable-libvpx enable VP8 de/encoding via libvpx [no]
  185. --enable-libx264 enable H.264 encoding via x264 [no]
  186. --enable-libxavs enable AVS encoding via xavs [no]
  187. --enable-libxvid enable Xvid encoding via xvidcore,
  188. native MPEG-4/Xvid encoder exists [no]
  189. --enable-openssl enable openssl [no]
  190. --enable-zlib enable zlib [autodetect]
  191. Advanced options (experts only):
  192. --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
  193. --enable-cross-compile assume a cross-compiler is used
  194. --sysroot=PATH root of cross-build tree
  195. --sysinclude=PATH location of cross-build system headers
  196. --target-os=OS compiler targets OS [$target_os]
  197. --target-exec=CMD command to run executables on target
  198. --target-path=DIR path to view of build directory on target
  199. --toolchain=NAME set tool defaults according to NAME
  200. --nm=NM use nm tool
  201. --ar=AR use archive tool AR [$ar_default]
  202. --as=AS use assembler AS [$as_default]
  203. --cc=CC use C compiler CC [$cc_default]
  204. --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
  205. --ld=LD use linker LD
  206. --host-cc=HOSTCC use host C compiler HOSTCC
  207. --host-cflags=HCFLAGS use HCFLAGS when compiling for host
  208. --host-ld=HOSTLD use host linker HOSTLD
  209. --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
  210. --host-libs=HLIBS use libs HLIBS when linking for host
  211. --host-os=OS compiler host OS [$target_os]
  212. --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
  213. --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
  214. --extra-libs=ELIBS add ELIBS [$ELIBS]
  215. --extra-version=STRING version string suffix []
  216. --optflags=OPTFLAGS override optimization-related compiler flags
  217. --build-suffix=SUFFIX library name suffix []
  218. --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
  219. --arch=ARCH select architecture [$arch]
  220. --cpu=CPU select the minimum required CPU (affects
  221. instruction selection, may crash on older CPUs)
  222. --enable-pic build position-independent code
  223. --enable-sram allow use of on-chip SRAM
  224. --enable-thumb compile for Thumb instruction set
  225. --disable-symver disable symbol versioning
  226. --enable-hardcoded-tables use hardcoded tables instead of runtime generation
  227. --disable-safe-bitstream-reader
  228. disable buffer boundary checking in bitreaders
  229. (faster, but may crash)
  230. --enable-memalign-hack emulate memalign, interferes with memory debuggers
  231. --enable-lto use link-time optimization
  232. Optimization options (experts only):
  233. --disable-asm disable all assembler optimizations
  234. --disable-altivec disable AltiVec optimizations
  235. --disable-amd3dnow disable 3DNow! optimizations
  236. --disable-amd3dnowext disable 3DNow! extended optimizations
  237. --disable-mmx disable MMX optimizations
  238. --disable-mmxext disable MMXEXT optimizations
  239. --disable-sse disable SSE optimizations
  240. --disable-sse2 disable SSE2 optimizations
  241. --disable-sse3 disable SSE3 optimizations
  242. --disable-ssse3 disable SSSE3 optimizations
  243. --disable-sse4 disable SSE4 optimizations
  244. --disable-sse42 disable SSE4.2 optimizations
  245. --disable-avx disable AVX optimizations
  246. --disable-fma4 disable FMA4 optimizations
  247. --disable-armv5te disable armv5te optimizations
  248. --disable-armv6 disable armv6 optimizations
  249. --disable-armv6t2 disable armv6t2 optimizations
  250. --disable-armvfp disable ARM VFP optimizations
  251. --disable-neon disable NEON optimizations
  252. --disable-vis disable VIS optimizations
  253. --disable-inline-asm disable use of inline assembler
  254. --disable-yasm disable use of yasm assembler
  255. Developer options (useful when working on Libav itself):
  256. --disable-debug disable debugging symbols
  257. --enable-debug=LEVEL set the debug level [$debuglevel]
  258. --disable-optimizations disable compiler optimizations
  259. --enable-extra-warnings enable more compiler warnings
  260. --samples=PATH location of test samples for FATE, if not set use
  261. \$LIBAV_SAMPLES at make invocation time.
  262. --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
  263. should be used only for debugging purposes)
  264. --enable-random randomly enable/disable components
  265. --disable-random
  266. --enable-random=LIST randomly enable/disable specific components or
  267. --disable-random=LIST component groups. LIST is a comma-separated list
  268. of NAME[:PROB] entries where NAME is a component
  269. (group) and PROB the probability associated with
  270. NAME (default 0.5).
  271. --random-seed=VALUE seed value for --enable/disable-random
  272. NOTE: Object files are built at the place where configure is launched.
  273. EOF
  274. exit 0
  275. }
  276. quotes='""'
  277. log(){
  278. echo "$@" >> $logfile
  279. }
  280. log_file(){
  281. log BEGIN $1
  282. pr -n -t $1 >> $logfile
  283. log END $1
  284. }
  285. echolog(){
  286. log "$@"
  287. echo "$@"
  288. }
  289. warn(){
  290. log "WARNING: $*"
  291. WARNINGS="${WARNINGS}WARNING: $*\n"
  292. }
  293. die(){
  294. echolog "$@"
  295. cat <<EOF
  296. If you think configure made a mistake, make sure you are using the latest
  297. version from Git. If the latest version fails, report the problem to the
  298. libav-user@libav.org mailing list or IRC #libav on irc.freenode.net.
  299. EOF
  300. if disabled logging; then
  301. cat <<EOF
  302. Rerun configure with logging enabled (do not use --disable-logging), and
  303. include the log this produces with your report.
  304. EOF
  305. else
  306. cat <<EOF
  307. Include the log file "$logfile" produced by configure as this will help
  308. solving the problem.
  309. EOF
  310. fi
  311. exit 1
  312. }
  313. # Avoid locale weirdness, besides we really just want to translate ASCII.
  314. toupper(){
  315. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  316. }
  317. tolower(){
  318. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  319. }
  320. c_escape(){
  321. echo "$*" | sed 's/["\\]/\\\0/g'
  322. }
  323. sh_quote(){
  324. v=$(echo "$1" | sed "s/'/'\\\\''/g")
  325. test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
  326. echo "$v"
  327. }
  328. cleanws(){
  329. echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//'
  330. }
  331. filter(){
  332. pat=$1
  333. shift
  334. for v; do
  335. eval "case $v in $pat) echo $v ;; esac"
  336. done
  337. }
  338. filter_out(){
  339. pat=$1
  340. shift
  341. for v; do
  342. eval "case $v in $pat) ;; *) echo $v ;; esac"
  343. done
  344. }
  345. map(){
  346. m=$1
  347. shift
  348. for v; do eval $m; done
  349. }
  350. add_suffix(){
  351. suffix=$1
  352. shift
  353. for v; do echo ${v}${suffix}; done
  354. }
  355. set_all(){
  356. value=$1
  357. shift
  358. for var in $*; do
  359. eval $var=$value
  360. done
  361. }
  362. set_weak(){
  363. value=$1
  364. shift
  365. for var; do
  366. eval : \${$var:=$value}
  367. done
  368. }
  369. set_safe(){
  370. var=$1
  371. shift
  372. eval $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')='$*'
  373. }
  374. get_safe(){
  375. eval echo \$$(echo "$1" | sed 's/[^A-Za-z0-9_]/_/g')
  376. }
  377. pushvar(){
  378. for var in $*; do
  379. eval level=\${${var}_level:=0}
  380. eval ${var}_${level}="\$$var"
  381. eval ${var}_level=$(($level+1))
  382. done
  383. }
  384. popvar(){
  385. for var in $*; do
  386. eval level=\${${var}_level:-0}
  387. test $level = 0 && continue
  388. eval level=$(($level-1))
  389. eval $var="\${${var}_${level}}"
  390. eval ${var}_level=$level
  391. eval unset ${var}_${level}
  392. done
  393. }
  394. enable(){
  395. set_all yes $*
  396. }
  397. disable(){
  398. set_all no $*
  399. }
  400. enable_weak(){
  401. set_weak yes $*
  402. }
  403. disable_weak(){
  404. set_weak no $*
  405. }
  406. enable_safe(){
  407. for var; do
  408. enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  409. done
  410. }
  411. disable_safe(){
  412. for var; do
  413. disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  414. done
  415. }
  416. do_enable_deep(){
  417. for var; do
  418. enabled $var && continue
  419. eval sel="\$${var}_select"
  420. eval sgs="\$${var}_suggest"
  421. pushvar var sgs
  422. enable_deep $sel
  423. popvar sgs
  424. enable_deep_weak $sgs
  425. popvar var
  426. done
  427. }
  428. enable_deep(){
  429. do_enable_deep $*
  430. enable $*
  431. }
  432. enable_deep_weak(){
  433. do_enable_deep $*
  434. enable_weak $*
  435. }
  436. enabled(){
  437. test "${1#!}" = "$1" && op== || op=!=
  438. eval test "x\$${1#!}" $op "xyes"
  439. }
  440. disabled(){
  441. test "${1#!}" = "$1" && op== || op=!=
  442. eval test "x\$${1#!}" $op "xno"
  443. }
  444. enabled_all(){
  445. for opt; do
  446. enabled $opt || return 1
  447. done
  448. }
  449. disabled_all(){
  450. for opt; do
  451. disabled $opt || return 1
  452. done
  453. }
  454. enabled_any(){
  455. for opt; do
  456. enabled $opt && return 0
  457. done
  458. }
  459. disabled_any(){
  460. for opt; do
  461. disabled $opt && return 0
  462. done
  463. return 1
  464. }
  465. set_default(){
  466. for opt; do
  467. eval : \${$opt:=\$${opt}_default}
  468. done
  469. }
  470. is_in(){
  471. value=$1
  472. shift
  473. for var in $*; do
  474. [ $var = $value ] && return 0
  475. done
  476. return 1
  477. }
  478. check_deps(){
  479. for cfg; do
  480. cfg="${cfg#!}"
  481. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  482. disabled ${cfg}_checking && continue
  483. enable ${cfg}_checking
  484. eval dep_all="\$${cfg}_deps"
  485. eval dep_any="\$${cfg}_deps_any"
  486. eval dep_sel="\$${cfg}_select"
  487. eval dep_sgs="\$${cfg}_suggest"
  488. eval dep_ifa="\$${cfg}_if"
  489. eval dep_ifn="\$${cfg}_if_any"
  490. pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  491. check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
  492. popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  493. [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
  494. [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
  495. enabled_all $dep_all || disable $cfg
  496. enabled_any $dep_any || disable $cfg
  497. disabled_any $dep_sel && disable $cfg
  498. if enabled $cfg; then
  499. eval dep_extralibs="\$${cfg}_extralibs"
  500. test -n "$dep_extralibs" && add_extralibs $dep_extralibs
  501. enable_deep $dep_sel
  502. enable_deep_weak $dep_sgs
  503. fi
  504. disable ${cfg}_checking
  505. done
  506. }
  507. print_config(){
  508. pfx=$1
  509. files=$2
  510. shift 2
  511. map 'eval echo "$v \${$v:-no}"' "$@" |
  512. awk "BEGIN { split(\"$files\", files) }
  513. {
  514. c = \"$pfx\" toupper(\$1);
  515. v = \$2;
  516. sub(/yes/, 1, v);
  517. sub(/no/, 0, v);
  518. for (f in files) {
  519. file = files[f];
  520. if (file ~ /\\.h\$/) {
  521. printf(\"#define %s %d\\n\", c, v) >>file;
  522. } else if (file ~ /\\.asm\$/) {
  523. printf(\"%%define %s %d\\n\", c, v) >>file;
  524. } else if (file ~ /\\.mak\$/) {
  525. n = -v ? \"\" : \"!\";
  526. printf(\"%s%s=yes\\n\", n, c) >>file;
  527. }
  528. }
  529. }"
  530. }
  531. print_enabled(){
  532. suf=$1
  533. shift
  534. for v; do
  535. enabled $v && printf "%s\n" ${v%$suf};
  536. done
  537. }
  538. append(){
  539. var=$1
  540. shift
  541. eval "$var=\"\$$var $*\""
  542. }
  543. prepend(){
  544. var=$1
  545. shift
  546. eval "$var=\"$* \$$var\""
  547. }
  548. add_cppflags(){
  549. append CPPFLAGS "$@"
  550. }
  551. add_cflags(){
  552. append CFLAGS $($cflags_filter "$@")
  553. }
  554. add_asflags(){
  555. append ASFLAGS $($asflags_filter "$@")
  556. }
  557. add_ldflags(){
  558. append LDFLAGS $($ldflags_filter "$@")
  559. }
  560. add_extralibs(){
  561. prepend extralibs $($ldflags_filter "$@")
  562. }
  563. add_host_cflags(){
  564. append host_cflags $($host_cflags_filter "$@")
  565. }
  566. add_host_ldflags(){
  567. append host_ldflags $($host_ldflags_filter "$@")
  568. }
  569. add_compat(){
  570. append compat_objs $1
  571. shift
  572. map 'add_cppflags -D$v' "$@"
  573. }
  574. check_cmd(){
  575. log "$@"
  576. "$@" >> $logfile 2>&1
  577. }
  578. cc_o(){
  579. eval printf '%s\\n' $CC_O
  580. }
  581. cc_e(){
  582. eval printf '%s\\n' $CC_E
  583. }
  584. check_cc(){
  585. log check_cc "$@"
  586. cat > $TMPC
  587. log_file $TMPC
  588. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
  589. }
  590. check_cpp(){
  591. log check_cpp "$@"
  592. cat > $TMPC
  593. log_file $TMPC
  594. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
  595. }
  596. as_o(){
  597. eval printf '%s\\n' $AS_O
  598. }
  599. check_as(){
  600. log check_as "$@"
  601. cat > $TMPC
  602. log_file $TMPC
  603. check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPC
  604. }
  605. check_inline_asm(){
  606. log check_inline_asm "$@"
  607. name="$1"
  608. code="$2"
  609. shift 2
  610. disable $name
  611. check_as "$@" <<EOF && enable $name
  612. void foo(void){ __asm__ volatile($code); }
  613. EOF
  614. }
  615. check_yasm(){
  616. log check_yasm "$@"
  617. echo "$1" > $TMPS
  618. log_file $TMPS
  619. shift 1
  620. check_cmd $yasmexe $YASMFLAGS "$@" -o $TMPO $TMPS
  621. }
  622. ld_o(){
  623. eval printf '%s\\n' $LD_O
  624. }
  625. check_ld(){
  626. log check_ld "$@"
  627. flags=$(filter_out '-l*' "$@")
  628. libs=$(filter '-l*' "$@")
  629. check_cc $($cflags_filter $flags) || return
  630. flags=$($ldflags_filter $flags)
  631. libs=$($ldflags_filter $libs)
  632. check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
  633. }
  634. check_code(){
  635. log check_code "$@"
  636. check=$1
  637. headers=$2
  638. code=$3
  639. shift 3
  640. {
  641. for hdr in $headers; do
  642. echo "#include <$hdr>"
  643. done
  644. echo "int main(void) { $code; return 0; }"
  645. } | check_$check "$@"
  646. }
  647. check_cppflags(){
  648. log check_cppflags "$@"
  649. check_cc "$@" <<EOF && append CPPFLAGS "$@"
  650. int x;
  651. EOF
  652. }
  653. check_cflags(){
  654. log check_cflags "$@"
  655. set -- $($cflags_filter "$@")
  656. check_cc "$@" <<EOF && append CFLAGS "$@"
  657. int x;
  658. EOF
  659. }
  660. test_ldflags(){
  661. log test_ldflags "$@"
  662. check_ld "$@" <<EOF
  663. int main(void){ return 0; }
  664. EOF
  665. }
  666. check_ldflags(){
  667. log check_ldflags "$@"
  668. test_ldflags "$@" && add_ldflags "$@"
  669. }
  670. check_header(){
  671. log check_header "$@"
  672. header=$1
  673. shift
  674. disable_safe $header
  675. check_cpp "$@" <<EOF && enable_safe $header
  676. #include <$header>
  677. int x;
  678. EOF
  679. }
  680. check_func(){
  681. log check_func "$@"
  682. func=$1
  683. shift
  684. disable $func
  685. check_ld "$@" <<EOF && enable $func
  686. extern int $func();
  687. int main(void){ $func(); }
  688. EOF
  689. }
  690. check_mathfunc(){
  691. log check_mathfunc "$@"
  692. func=$1
  693. narg=$2
  694. shift 2
  695. test $narg = 2 && args="f, g" || args="f"
  696. disable $func
  697. check_ld "$@" <<EOF && enable $func
  698. #include <math.h>
  699. float foo(float f, float g) { return $func($args); }
  700. int main(void){ return 0; }
  701. EOF
  702. }
  703. check_func_headers(){
  704. log check_func_headers "$@"
  705. headers=$1
  706. funcs=$2
  707. shift 2
  708. {
  709. for hdr in $headers; do
  710. echo "#include <$hdr>"
  711. done
  712. for func in $funcs; do
  713. echo "long check_$func(void) { return (long) $func; }"
  714. done
  715. echo "int main(void) { return 0; }"
  716. } | check_ld "$@" && enable $funcs && enable_safe $headers
  717. }
  718. check_cpp_condition(){
  719. log check_cpp_condition "$@"
  720. header=$1
  721. condition=$2
  722. shift 2
  723. check_cpp "$@" <<EOF
  724. #include <$header>
  725. #if !($condition)
  726. #error "unsatisfied condition: $condition"
  727. #endif
  728. EOF
  729. }
  730. check_lib(){
  731. log check_lib "$@"
  732. header="$1"
  733. func="$2"
  734. shift 2
  735. check_header $header && check_func $func "$@" && add_extralibs "$@"
  736. }
  737. check_lib2(){
  738. log check_lib2 "$@"
  739. headers="$1"
  740. funcs="$2"
  741. shift 2
  742. check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
  743. }
  744. check_pkg_config(){
  745. log check_pkg_config "$@"
  746. pkg="$1"
  747. headers="$2"
  748. funcs="$3"
  749. shift 3
  750. $pkg_config --exists $pkg || return
  751. pkg_cflags=$($pkg_config --cflags $pkg)
  752. pkg_libs=$($pkg_config --libs $pkg)
  753. check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
  754. set_safe ${pkg}_cflags $pkg_cflags &&
  755. set_safe ${pkg}_libs $pkg_libs
  756. }
  757. check_exec(){
  758. check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
  759. }
  760. check_exec_crash(){
  761. code=$(cat)
  762. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  763. # are safe but may not be available everywhere. Thus we use
  764. # raise(SIGTERM) instead. The check is run in a subshell so we
  765. # can redirect the "Terminated" message from the shell. SIGBUS
  766. # is not defined by standard C so it is used conditionally.
  767. (check_exec "$@") >> $logfile 2>&1 <<EOF
  768. #include <signal.h>
  769. static void sighandler(int sig){
  770. raise(SIGTERM);
  771. }
  772. int foo(void){
  773. $code
  774. }
  775. int main(void){
  776. signal(SIGILL, sighandler);
  777. signal(SIGFPE, sighandler);
  778. signal(SIGSEGV, sighandler);
  779. #ifdef SIGBUS
  780. signal(SIGBUS, sighandler);
  781. #endif
  782. foo();
  783. }
  784. EOF
  785. }
  786. check_type(){
  787. log check_type "$@"
  788. headers=$1
  789. type=$2
  790. shift 2
  791. disable_safe "$type"
  792. check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
  793. }
  794. check_struct(){
  795. log check_type "$@"
  796. headers=$1
  797. struct=$2
  798. member=$3
  799. shift 3
  800. disable_safe "${struct}_${member}"
  801. check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
  802. enable_safe "${struct}_${member}"
  803. }
  804. require(){
  805. name="$1"
  806. header="$2"
  807. func="$3"
  808. shift 3
  809. check_lib $header $func "$@" || die "ERROR: $name not found"
  810. }
  811. require2(){
  812. name="$1"
  813. headers="$2"
  814. func="$3"
  815. shift 3
  816. check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
  817. }
  818. require_pkg_config(){
  819. pkg="$1"
  820. check_pkg_config "$@" || die "ERROR: $pkg not found"
  821. add_cflags $(get_safe ${pkg}_cflags)
  822. add_extralibs $(get_safe ${pkg}_libs)
  823. }
  824. hostcc_o(){
  825. eval printf '%s\\n' $HOSTCC_O
  826. }
  827. check_host_cc(){
  828. log check_host_cc "$@"
  829. cat > $TMPC
  830. log_file $TMPC
  831. check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
  832. }
  833. check_host_cflags(){
  834. log check_host_cflags "$@"
  835. set -- $($host_cflags_filter "$@")
  836. check_host_cc "$@" <<EOF && append host_cflags "$@"
  837. int x;
  838. EOF
  839. }
  840. apply(){
  841. file=$1
  842. shift
  843. "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
  844. }
  845. cp_if_changed(){
  846. cmp -s "$1" "$2" && echo "$2 is unchanged" && return
  847. mkdir -p "$(dirname $2)"
  848. $cp_f "$1" "$2"
  849. }
  850. # CONFIG_LIST contains configurable options, while HAVE_LIST is for
  851. # system-dependent things.
  852. COMPONENT_LIST="
  853. bsfs
  854. decoders
  855. demuxers
  856. encoders
  857. filters
  858. hwaccels
  859. indevs
  860. muxers
  861. outdevs
  862. parsers
  863. protocols
  864. "
  865. LIBRARY_LIST="
  866. avcodec
  867. avdevice
  868. avfilter
  869. avformat
  870. avresample
  871. avutil
  872. swscale
  873. "
  874. PROGRAM_LIST="
  875. avconv
  876. avplay
  877. avprobe
  878. avserver
  879. "
  880. CONFIG_LIST="
  881. $COMPONENT_LIST
  882. $LIBRARY_LIST
  883. $PROGRAM_LIST
  884. avisynth
  885. bzlib
  886. dct
  887. doc
  888. dwt
  889. dxva2
  890. fft
  891. frei0r
  892. gnutls
  893. gpl
  894. gray
  895. hardcoded_tables
  896. libcdio
  897. libdc1394
  898. libfaac
  899. libfdk_aac
  900. libfreetype
  901. libgsm
  902. libilbc
  903. libmp3lame
  904. libopencore_amrnb
  905. libopencore_amrwb
  906. libopencv
  907. libopenjpeg
  908. libopus
  909. libpulse
  910. librtmp
  911. libschroedinger
  912. libspeex
  913. libtheora
  914. libvo_aacenc
  915. libvo_amrwbenc
  916. libvorbis
  917. libvpx
  918. libx264
  919. libxavs
  920. libxvid
  921. lsp
  922. lzo
  923. mdct
  924. memalign_hack
  925. network
  926. nonfree
  927. openssl
  928. pic
  929. rdft
  930. runtime_cpudetect
  931. safe_bitstream_reader
  932. shared
  933. small
  934. sram
  935. static
  936. swscale_alpha
  937. thumb
  938. vaapi
  939. vda
  940. vdpau
  941. version3
  942. xmm_clobber_test
  943. x11grab
  944. zlib
  945. "
  946. THREADS_LIST='
  947. pthreads
  948. w32threads
  949. '
  950. ARCH_LIST='
  951. aarch64
  952. alpha
  953. arm
  954. avr32
  955. avr32_ap
  956. avr32_uc
  957. bfin
  958. ia64
  959. m68k
  960. mips
  961. mips64
  962. parisc
  963. ppc
  964. ppc64
  965. s390
  966. sh4
  967. sparc
  968. sparc64
  969. tilegx
  970. tilepro
  971. tomi
  972. x86
  973. x86_32
  974. x86_64
  975. '
  976. ARCH_EXT_LIST_ARM='
  977. armv5te
  978. armv6
  979. armv6t2
  980. armvfp
  981. neon
  982. vfpv3
  983. '
  984. ARCH_EXT_LIST_X86='
  985. amd3dnow
  986. amd3dnowext
  987. avx
  988. fma4
  989. mmx
  990. mmxext
  991. sse
  992. sse2
  993. sse3
  994. sse4
  995. sse42
  996. ssse3
  997. '
  998. ARCH_EXT_LIST="
  999. $ARCH_EXT_LIST_ARM
  1000. $ARCH_EXT_LIST_X86
  1001. altivec
  1002. ppc4xx
  1003. vis
  1004. "
  1005. HAVE_LIST_CMDLINE='
  1006. inline_asm
  1007. symver
  1008. yasm
  1009. '
  1010. HAVE_LIST_PUB='
  1011. bigendian
  1012. fast_unaligned
  1013. '
  1014. MATH_FUNCS="
  1015. atanf
  1016. atan2f
  1017. cbrtf
  1018. cosf
  1019. exp2
  1020. exp2f
  1021. expf
  1022. isinf
  1023. isnan
  1024. ldexpf
  1025. llrint
  1026. llrintf
  1027. log2
  1028. log2f
  1029. log10f
  1030. lrint
  1031. lrintf
  1032. powf
  1033. rint
  1034. round
  1035. roundf
  1036. sinf
  1037. trunc
  1038. truncf
  1039. "
  1040. HAVE_LIST="
  1041. $ARCH_EXT_LIST
  1042. $(add_suffix _external $ARCH_EXT_LIST)
  1043. $(add_suffix _inline $ARCH_EXT_LIST)
  1044. $HAVE_LIST_CMDLINE
  1045. $HAVE_LIST_PUB
  1046. $THREADS_LIST
  1047. $MATH_FUNCS
  1048. aligned_malloc
  1049. aligned_stack
  1050. alsa_asoundlib_h
  1051. altivec_h
  1052. arpa_inet_h
  1053. asm_mod_q
  1054. asm_mod_y
  1055. attribute_may_alias
  1056. attribute_packed
  1057. closesocket
  1058. cmov
  1059. CommandLineToArgvW
  1060. cpunop
  1061. CryptGenRandom
  1062. dcbzl
  1063. dev_bktr_ioctl_bt848_h
  1064. dev_bktr_ioctl_meteor_h
  1065. dev_ic_bt8xx_h
  1066. dev_video_bktr_ioctl_bt848_h
  1067. dev_video_meteor_ioctl_meteor_h
  1068. direct_h
  1069. dlfcn_h
  1070. dlopen
  1071. dos_paths
  1072. dxva_h
  1073. ebp_available
  1074. ebx_available
  1075. fast_64bit
  1076. fast_clz
  1077. fast_cmov
  1078. fcntl
  1079. fork
  1080. getaddrinfo
  1081. gethrtime
  1082. getopt
  1083. GetProcessAffinityMask
  1084. GetProcessMemoryInfo
  1085. GetProcessTimes
  1086. GetSystemTimeAsFileTime
  1087. getrusage
  1088. getservbyport
  1089. gettimeofday
  1090. gnu_as
  1091. ibm_asm
  1092. inet_aton
  1093. io_h
  1094. isatty
  1095. jack_port_get_latency_range
  1096. ldbrx
  1097. libdc1394_1
  1098. libdc1394_2
  1099. local_aligned_16
  1100. local_aligned_8
  1101. localtime_r
  1102. loongson
  1103. machine_ioctl_bt848_h
  1104. machine_ioctl_meteor_h
  1105. malloc_h
  1106. MapViewOfFile
  1107. memalign
  1108. mkstemp
  1109. mm_empty
  1110. mmap
  1111. mprotect
  1112. msvcrt
  1113. nanosleep
  1114. poll_h
  1115. posix_memalign
  1116. rdtsc
  1117. sched_getaffinity
  1118. sdl
  1119. sdl_video_size
  1120. SetConsoleTextAttribute
  1121. setmode
  1122. setrlimit
  1123. Sleep
  1124. sndio_h
  1125. socklen_t
  1126. soundcard_h
  1127. strerror_r
  1128. strptime
  1129. strtok_r
  1130. struct_addrinfo
  1131. struct_group_source_req
  1132. struct_ip_mreq_source
  1133. struct_ipv6_mreq
  1134. struct_pollfd
  1135. struct_rusage_ru_maxrss
  1136. struct_sockaddr_in6
  1137. struct_sockaddr_sa_len
  1138. struct_sockaddr_storage
  1139. struct_v4l2_frmivalenum_discrete
  1140. symver_asm_label
  1141. symver_gnu_asm
  1142. sysconf
  1143. sysctl
  1144. sys_mman_h
  1145. sys_param_h
  1146. sys_resource_h
  1147. sys_select_h
  1148. sys_soundcard_h
  1149. sys_time_h
  1150. sys_videoio_h
  1151. threads
  1152. unistd_h
  1153. usleep
  1154. vfp_args
  1155. VirtualAlloc
  1156. windows_h
  1157. winsock2_h
  1158. xform_asm
  1159. xmm_clobbers
  1160. "
  1161. # options emitted with CONFIG_ prefix but not available on command line
  1162. CONFIG_EXTRA="
  1163. aandcttables
  1164. ac3dsp
  1165. error_resilience
  1166. gcrypt
  1167. golomb
  1168. gplv3
  1169. h264chroma
  1170. h264dsp
  1171. h264pred
  1172. h264qpel
  1173. huffman
  1174. lgplv3
  1175. lpc
  1176. mpegaudio
  1177. mpegaudiodsp
  1178. mpegvideo
  1179. mpegvideoenc
  1180. nettle
  1181. rangecoder
  1182. rtpdec
  1183. sinewin
  1184. vp3dsp
  1185. "
  1186. CMDLINE_SELECT="
  1187. $ARCH_EXT_LIST
  1188. $CONFIG_LIST
  1189. $HAVE_LIST_CMDLINE
  1190. $THREADS_LIST
  1191. asm
  1192. cross_compile
  1193. debug
  1194. extra_warnings
  1195. logging
  1196. lto
  1197. optimizations
  1198. "
  1199. PATHS_LIST='
  1200. bindir
  1201. datadir
  1202. incdir
  1203. libdir
  1204. mandir
  1205. prefix
  1206. shlibdir
  1207. '
  1208. CMDLINE_SET="
  1209. $PATHS_LIST
  1210. ar
  1211. arch
  1212. as
  1213. build_suffix
  1214. cc
  1215. cpu
  1216. cross_prefix
  1217. dep_cc
  1218. extra_version
  1219. host_cc
  1220. host_cflags
  1221. host_ld
  1222. host_ldflags
  1223. host_libs
  1224. host_os
  1225. ld
  1226. logfile
  1227. malloc_prefix
  1228. nm
  1229. optflags
  1230. pkg_config
  1231. random_seed
  1232. samples
  1233. sysinclude
  1234. sysroot
  1235. target_exec
  1236. target_os
  1237. target_path
  1238. toolchain
  1239. "
  1240. CMDLINE_APPEND="
  1241. extra_cflags
  1242. "
  1243. # code dependency declarations
  1244. # architecture extensions
  1245. armv5te_deps="arm"
  1246. armv6_deps="arm"
  1247. armv6t2_deps="arm"
  1248. armvfp_deps="arm"
  1249. neon_deps="arm"
  1250. vfpv3_deps="armvfp"
  1251. altivec_deps="ppc"
  1252. ppc4xx_deps="ppc"
  1253. vis_deps="sparc"
  1254. x86_64_suggest="cmov fast_cmov"
  1255. amd3dnow_deps="mmx"
  1256. amd3dnowext_deps="amd3dnow"
  1257. mmx_deps="x86"
  1258. mmxext_deps="mmx"
  1259. sse_deps="mmxext"
  1260. sse2_deps="sse"
  1261. sse3_deps="sse2"
  1262. ssse3_deps="sse3"
  1263. sse4_deps="ssse3"
  1264. sse42_deps="sse4"
  1265. avx_deps="sse42"
  1266. fma4_deps="avx"
  1267. mmx_external_deps="yasm"
  1268. mmx_inline_deps="inline_asm"
  1269. mmx_suggest="mmx_external mmx_inline"
  1270. for ext in $(filter_out mmx $ARCH_EXT_LIST_X86); do
  1271. eval dep=\$${ext}_deps
  1272. eval ${ext}_external_deps='"${dep}_external"'
  1273. eval ${ext}_inline_deps='"${dep}_inline"'
  1274. eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
  1275. done
  1276. aligned_stack_if_any="ppc x86"
  1277. fast_64bit_if_any="alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
  1278. fast_clz_if_any="alpha armv5te avr32 mips ppc x86"
  1279. fast_unaligned_if_any="armv6 ppc x86"
  1280. inline_asm_deps="!tms470"
  1281. need_memalign="altivec neon sse"
  1282. symver_if_any="symver_asm_label symver_gnu_asm"
  1283. log2_deps="!msvcrt"
  1284. # subsystems
  1285. dct_select="rdft"
  1286. mdct_select="fft"
  1287. rdft_select="fft"
  1288. mpegaudio_select="mpegaudiodsp"
  1289. mpegaudiodsp_select="dct"
  1290. mpegvideoenc_select="mpegvideo"
  1291. # decoders / encoders / hardware accelerators
  1292. aac_decoder_select="mdct sinewin"
  1293. aac_encoder_select="mdct sinewin"
  1294. aac_latm_decoder_select="aac_decoder aac_latm_parser"
  1295. ac3_decoder_select="mdct ac3dsp ac3_parser"
  1296. ac3_encoder_select="mdct ac3dsp"
  1297. ac3_fixed_encoder_select="mdct ac3dsp"
  1298. alac_encoder_select="lpc"
  1299. amrnb_decoder_select="lsp"
  1300. amrwb_decoder_select="lsp"
  1301. atrac1_decoder_select="mdct sinewin"
  1302. atrac3_decoder_select="mdct"
  1303. binkaudio_dct_decoder_select="mdct rdft dct sinewin"
  1304. binkaudio_rdft_decoder_select="mdct rdft sinewin"
  1305. cavs_decoder_select="golomb mpegvideo"
  1306. comfortnoise_encoder_select="lpc"
  1307. cook_decoder_select="mdct sinewin"
  1308. cscd_decoder_select="lzo"
  1309. cscd_decoder_suggest="zlib"
  1310. dca_decoder_select="mdct"
  1311. dnxhd_encoder_select="aandcttables mpegvideoenc"
  1312. dxa_decoder_select="zlib"
  1313. eac3_decoder_select="ac3_decoder"
  1314. eac3_encoder_select="ac3_encoder"
  1315. eamad_decoder_select="aandcttables error_resilience mpegvideo"
  1316. eatgq_decoder_select="aandcttables"
  1317. eatqi_decoder_select="aandcttables error_resilience mpegvideo"
  1318. ffv1_decoder_select="golomb rangecoder"
  1319. ffv1_encoder_select="rangecoder"
  1320. ffvhuff_encoder_select="huffman"
  1321. flac_decoder_select="golomb"
  1322. flac_encoder_select="golomb lpc"
  1323. flashsv_decoder_select="zlib"
  1324. flashsv_encoder_select="zlib"
  1325. flashsv2_decoder_select="zlib"
  1326. flv_decoder_select="h263_decoder"
  1327. flv_encoder_select="h263_encoder"
  1328. fraps_decoder_select="huffman"
  1329. h261_decoder_select="error_resilience mpegvideo"
  1330. h261_encoder_select="aandcttables mpegvideoenc"
  1331. h263_decoder_select="error_resilience h263_parser mpegvideo"
  1332. h263_encoder_select="aandcttables error_resilience mpegvideoenc"
  1333. h263_vaapi_hwaccel_select="vaapi h263_decoder"
  1334. h263i_decoder_select="h263_decoder"
  1335. h263p_encoder_select="h263_encoder"
  1336. h264_decoder_select="error_resilience golomb h264chroma h264dsp h264pred h264qpel mpegvideo"
  1337. h264_dxva2_hwaccel_deps="dxva2api_h"
  1338. h264_dxva2_hwaccel_select="dxva2 h264_decoder"
  1339. h264_vaapi_hwaccel_select="vaapi h264_decoder"
  1340. h264_vda_hwaccel_select="vda h264_decoder"
  1341. h264_vdpau_decoder_select="vdpau h264_decoder"
  1342. huffyuv_encoder_select="huffman"
  1343. iac_decoder_select="fft mdct sinewin"
  1344. imc_decoder_select="fft mdct sinewin"
  1345. jpegls_decoder_select="golomb"
  1346. jpegls_encoder_select="golomb"
  1347. ljpeg_encoder_select="aandcttables mpegvideoenc"
  1348. loco_decoder_select="golomb"
  1349. mdec_decoder_select="error_resilience mpegvideo"
  1350. mjpeg_encoder_select="aandcttables mpegvideoenc"
  1351. mlp_decoder_select="mlp_parser"
  1352. mp1_decoder_select="mpegaudio"
  1353. mp1float_decoder_select="mpegaudio"
  1354. mp2_decoder_select="mpegaudio"
  1355. mp2float_decoder_select="mpegaudio"
  1356. mp3_decoder_select="mpegaudio"
  1357. mp3adu_decoder_select="mpegaudio"
  1358. mp3adufloat_decoder_select="mpegaudio"
  1359. mp3float_decoder_select="mpegaudio"
  1360. mp3on4_decoder_select="mpegaudio"
  1361. mp3on4float_decoder_select="mpegaudio"
  1362. mpc7_decoder_select="mpegaudiodsp"
  1363. mpc8_decoder_select="mpegaudiodsp"
  1364. mpeg_vdpau_decoder_select="vdpau mpegvideo_decoder"
  1365. mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
  1366. mpeg_xvmc_decoder_select="mpegvideo_decoder"
  1367. mpeg1_vdpau_decoder_select="vdpau mpeg1video_decoder"
  1368. mpeg1video_decoder_select="error_resilience mpegvideo"
  1369. mpeg1video_encoder_select="aandcttables error_resilience mpegvideoenc"
  1370. mpeg2_dxva2_hwaccel_deps="dxva2api_h"
  1371. mpeg2_dxva2_hwaccel_select="dxva2 mpeg2video_decoder"
  1372. mpeg2_vaapi_hwaccel_select="vaapi mpeg2video_decoder"
  1373. mpeg2video_decoder_select="error_resilience mpegvideo"
  1374. mpeg2video_encoder_select="aandcttables error_resilience mpegvideoenc"
  1375. mpeg4_decoder_select="h263_decoder mpeg4video_parser"
  1376. mpeg4_encoder_select="h263_encoder"
  1377. mpeg4_vaapi_hwaccel_select="vaapi mpeg4_decoder"
  1378. mpeg4_vdpau_decoder_select="vdpau mpeg4_decoder"
  1379. msmpeg4v1_decoder_select="h263_decoder"
  1380. msmpeg4v1_encoder_select="h263_encoder"
  1381. msmpeg4v2_decoder_select="h263_decoder"
  1382. msmpeg4v2_encoder_select="h263_encoder"
  1383. msmpeg4v3_decoder_select="h263_decoder"
  1384. msmpeg4v3_encoder_select="h263_encoder"
  1385. mss2_decoder_select="vc1_decoder"
  1386. nellymoser_decoder_select="mdct sinewin"
  1387. nellymoser_encoder_select="mdct sinewin"
  1388. nuv_decoder_select="lzo"
  1389. png_decoder_select="zlib"
  1390. png_encoder_select="zlib"
  1391. qcelp_decoder_select="lsp"
  1392. qdm2_decoder_select="mdct rdft mpegaudiodsp"
  1393. ra_144_encoder_select="lpc"
  1394. ralf_decoder_select="golomb"
  1395. rv10_decoder_select="h263_decoder"
  1396. rv10_encoder_select="h263_encoder"
  1397. rv20_decoder_select="h263_decoder"
  1398. rv20_encoder_select="h263_encoder"
  1399. rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo"
  1400. rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo"
  1401. shorten_decoder_select="golomb"
  1402. sipr_decoder_select="lsp"
  1403. snow_decoder_select="dwt rangecoder"
  1404. snow_encoder_select="aandcttables dwt error_resilience mpegvideoenc rangecoder"
  1405. svq1_decoder_select="error_resilience mpegvideo"
  1406. svq1_encoder_select="aandcttables error_resilience mpegvideoenc"
  1407. svq3_decoder_select="error_resilience golomb h264chroma h264dsp h264pred h264qpel mpegvideo"
  1408. svq3_decoder_suggest="zlib"
  1409. theora_decoder_select="vp3_decoder"
  1410. tiff_decoder_suggest="zlib"
  1411. tiff_encoder_suggest="zlib"
  1412. truehd_decoder_select="mlp_decoder"
  1413. tscc_decoder_select="zlib"
  1414. twinvq_decoder_select="mdct lsp sinewin"
  1415. utvideo_encoder_select="huffman"
  1416. vc1_decoder_select="h263_decoder h264chroma h264qpel"
  1417. vc1_dxva2_hwaccel_deps="dxva2api_h"
  1418. vc1_dxva2_hwaccel_select="dxva2 vc1_decoder"
  1419. vc1_vaapi_hwaccel_select="vaapi vc1_decoder"
  1420. vc1_vdpau_decoder_select="vdpau vc1_decoder"
  1421. vc1image_decoder_select="vc1_decoder"
  1422. vorbis_decoder_select="mdct"
  1423. vorbis_encoder_select="mdct"
  1424. vp3_decoder_select="vp3dsp"
  1425. vp5_decoder_select="vp3dsp"
  1426. vp6_decoder_select="huffman vp3dsp"
  1427. vp6a_decoder_select="vp6_decoder"
  1428. vp6f_decoder_select="vp6_decoder"
  1429. vp8_decoder_select="h264pred h264qpel"
  1430. wmapro_decoder_select="mdct sinewin"
  1431. wmav1_decoder_select="mdct sinewin"
  1432. wmav1_encoder_select="mdct sinewin"
  1433. wmav2_decoder_select="mdct sinewin"
  1434. wmav2_encoder_select="mdct sinewin"
  1435. wmavoice_decoder_select="lsp rdft dct mdct sinewin"
  1436. wmv1_decoder_select="h263_decoder"
  1437. wmv1_encoder_select="h263_encoder"
  1438. wmv2_decoder_select="h263_decoder"
  1439. wmv2_encoder_select="h263_encoder"
  1440. wmv3_decoder_select="vc1_decoder"
  1441. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  1442. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  1443. wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
  1444. wmv3image_decoder_select="wmv3_decoder"
  1445. zerocodec_decoder_select="zlib"
  1446. zlib_decoder_select="zlib"
  1447. zlib_encoder_select="zlib"
  1448. zmbv_decoder_select="zlib"
  1449. zmbv_encoder_select="zlib"
  1450. vaapi_deps="va_va_h"
  1451. vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
  1452. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  1453. # parsers
  1454. h264_parser_select="error_resilience golomb h264dsp h264pred mpegvideo"
  1455. mpeg4video_parser_select="error_resilience mpegvideo"
  1456. mpegvideo_parser_select="error_resilience mpegvideo"
  1457. vc1_parser_select="error_resilience mpegvideo"
  1458. # external libraries
  1459. libfaac_encoder_deps="libfaac"
  1460. libfdk_aac_encoder_deps="libfdk_aac"
  1461. libgsm_decoder_deps="libgsm"
  1462. libgsm_encoder_deps="libgsm"
  1463. libgsm_ms_decoder_deps="libgsm"
  1464. libgsm_ms_encoder_deps="libgsm"
  1465. libilbc_decoder_deps="libilbc"
  1466. libilbc_encoder_deps="libilbc"
  1467. libmp3lame_encoder_deps="libmp3lame"
  1468. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  1469. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  1470. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  1471. libopenjpeg_decoder_deps="libopenjpeg"
  1472. libopenjpeg_encoder_deps="libopenjpeg"
  1473. libopus_decoder_deps="libopus"
  1474. libopus_encoder_deps="libopus"
  1475. libschroedinger_decoder_deps="libschroedinger"
  1476. libschroedinger_encoder_deps="libschroedinger"
  1477. libspeex_decoder_deps="libspeex"
  1478. libspeex_encoder_deps="libspeex"
  1479. libtheora_encoder_deps="libtheora"
  1480. libvo_aacenc_encoder_deps="libvo_aacenc"
  1481. libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
  1482. libvorbis_encoder_deps="libvorbis"
  1483. libvpx_decoder_deps="libvpx"
  1484. libvpx_encoder_deps="libvpx"
  1485. libx264_encoder_deps="libx264"
  1486. libxavs_encoder_deps="libxavs"
  1487. libxvid_encoder_deps="libxvid"
  1488. # demuxers / muxers
  1489. ac3_demuxer_select="ac3_parser"
  1490. asf_stream_muxer_select="asf_muxer"
  1491. avisynth_demuxer_deps="avisynth"
  1492. dirac_demuxer_select="dirac_parser"
  1493. eac3_demuxer_select="ac3_parser"
  1494. flac_demuxer_select="flac_parser"
  1495. ipod_muxer_select="mov_muxer"
  1496. matroska_audio_muxer_select="matroska_muxer"
  1497. matroska_demuxer_suggest="bzlib lzo zlib"
  1498. mov_demuxer_suggest="zlib"
  1499. mp3_demuxer_select="mpegaudio_parser"
  1500. mp4_muxer_select="mov_muxer"
  1501. mpegts_muxer_select="adts_muxer latm_muxer mpegvideo"
  1502. mpegtsraw_demuxer_select="mpegts_demuxer"
  1503. mxf_d10_muxer_select="mxf_muxer"
  1504. ogg_demuxer_select="golomb"
  1505. psp_muxer_select="mov_muxer"
  1506. rtp_demuxer_select="sdp_demuxer"
  1507. rtp_muxer_select="mpegvideo"
  1508. rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
  1509. rtsp_demuxer_select="http_protocol rtpdec"
  1510. rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol"
  1511. sap_demuxer_select="sdp_demuxer"
  1512. sap_muxer_select="rtp_muxer rtp_protocol"
  1513. sdp_demuxer_select="rtpdec"
  1514. smoothstreaming_muxer_select="ismv_muxer"
  1515. spdif_muxer_select="aac_parser"
  1516. tg2_muxer_select="mov_muxer"
  1517. tgp_muxer_select="mov_muxer"
  1518. w64_demuxer_deps="wav_demuxer"
  1519. # indevs / outdevs
  1520. alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  1521. alsa_outdev_deps="alsa_asoundlib_h"
  1522. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  1523. dv1394_indev_deps="dv1394 dv_demuxer"
  1524. fbdev_indev_deps="linux_fb_h"
  1525. jack_indev_deps="jack_jack_h"
  1526. libcdio_indev_deps="libcdio"
  1527. libdc1394_indev_deps="libdc1394"
  1528. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  1529. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  1530. pulse_indev_deps="libpulse"
  1531. sndio_indev_deps="sndio_h"
  1532. sndio_outdev_deps="sndio_h"
  1533. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  1534. vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
  1535. vfwcap_indev_extralibs="-lavicap32"
  1536. x11grab_indev_deps="x11grab XShmCreateImage"
  1537. # protocols
  1538. ffrtmpcrypt_protocol_deps="!librtmp_protocol"
  1539. ffrtmpcrypt_protocol_deps_any="gcrypt nettle openssl"
  1540. ffrtmpcrypt_protocol_select="tcp_protocol"
  1541. ffrtmphttp_protocol_deps="!librtmp_protocol"
  1542. ffrtmphttp_protocol_select="http_protocol"
  1543. gopher_protocol_deps="network"
  1544. httpproxy_protocol_deps="network"
  1545. httpproxy_protocol_select="tcp_protocol"
  1546. http_protocol_deps="network"
  1547. http_protocol_select="tcp_protocol"
  1548. https_protocol_select="tls_protocol"
  1549. librtmp_protocol_deps="librtmp"
  1550. librtmpe_protocol_deps="librtmp"
  1551. librtmps_protocol_deps="librtmp"
  1552. librtmpt_protocol_deps="librtmp"
  1553. librtmpte_protocol_deps="librtmp"
  1554. mmsh_protocol_select="http_protocol"
  1555. mmst_protocol_deps="network"
  1556. rtmp_protocol_deps="!librtmp_protocol"
  1557. rtmp_protocol_select="tcp_protocol"
  1558. rtmpe_protocol_select="ffrtmpcrypt_protocol"
  1559. rtmps_protocol_deps="!librtmp_protocol"
  1560. rtmps_protocol_select="tls_protocol"
  1561. rtmpt_protocol_select="ffrtmphttp_protocol"
  1562. rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
  1563. rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
  1564. rtp_protocol_select="udp_protocol"
  1565. sctp_protocol_deps="network struct_sctp_event_subscribe"
  1566. tcp_protocol_deps="network"
  1567. tls_protocol_deps_any="openssl gnutls"
  1568. tls_protocol_select="tcp_protocol"
  1569. udp_protocol_deps="network"
  1570. # filters
  1571. blackframe_filter_deps="gpl"
  1572. boxblur_filter_deps="gpl"
  1573. cropdetect_filter_deps="gpl"
  1574. delogo_filter_deps="gpl"
  1575. drawtext_filter_deps="libfreetype"
  1576. frei0r_filter_deps="frei0r dlopen strtok_r"
  1577. frei0r_filter_extralibs='$ldl'
  1578. frei0r_src_filter_deps="frei0r dlopen strtok_r"
  1579. frei0r_src_filter_extralibs='$ldl'
  1580. hqdn3d_filter_deps="gpl"
  1581. resample_filter_deps="avresample"
  1582. ocv_filter_deps="libopencv"
  1583. scale_filter_deps="swscale"
  1584. yadif_filter_deps="gpl"
  1585. # libraries
  1586. avcodec_deps="avutil"
  1587. avdevice_deps="avutil avcodec avformat"
  1588. avfilter_deps="avutil"
  1589. avformat_deps="avutil avcodec"
  1590. avresample_deps="avutil"
  1591. swscale_deps="avutil"
  1592. # programs
  1593. avconv_deps="avcodec avfilter avformat avresample swscale"
  1594. avconv_select="aformat_filter asyncts_filter
  1595. format_filter fps_filter scale_filter setpts_filter"
  1596. avplay_deps="avcodec avformat avresample swscale sdl"
  1597. avplay_select="rdft"
  1598. avprobe_deps="avcodec avformat"
  1599. avserver_deps="avformat ffm_muxer fork rtp_protocol rtsp_demuxer !shared"
  1600. avserver_extralibs='$ldl'
  1601. doc_deps="texi2html"
  1602. # default parameters
  1603. logfile="config.log"
  1604. # installation paths
  1605. prefix_default="/usr/local"
  1606. bindir_default='${prefix}/bin'
  1607. datadir_default='${prefix}/share/avconv'
  1608. incdir_default='${prefix}/include'
  1609. libdir_default='${prefix}/lib'
  1610. mandir_default='${prefix}/share/man'
  1611. shlibdir_default="$libdir_default"
  1612. # toolchain
  1613. ar_default="ar"
  1614. cc_default="gcc"
  1615. host_cc_default="gcc"
  1616. cp_f="cp -f"
  1617. ln_s="ln -sf"
  1618. nm_default="nm -g"
  1619. objformat="elf"
  1620. pkg_config_default=pkg-config
  1621. ranlib="ranlib"
  1622. yasmexe="yasm"
  1623. nogas=":"
  1624. # machine
  1625. arch_default=$(uname -m)
  1626. cpu="generic"
  1627. # OS
  1628. target_os_default=$(tolower $(uname -s))
  1629. host_os=$target_os_default
  1630. # configurable options
  1631. enable $LIBRARY_LIST $PROGRAM_LIST
  1632. enable asm
  1633. enable debug
  1634. enable doc
  1635. enable network
  1636. enable optimizations
  1637. enable safe_bitstream_reader
  1638. enable static
  1639. enable swscale_alpha
  1640. # build settings
  1641. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1642. AVSERVERLDFLAGS=-Wl,-E
  1643. LIBPREF="lib"
  1644. LIBSUF=".a"
  1645. FULLNAME='$(NAME)$(BUILDSUF)'
  1646. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1647. SLIBPREF="lib"
  1648. SLIBSUF=".so"
  1649. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1650. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  1651. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  1652. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  1653. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
  1654. SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
  1655. asflags_filter=echo
  1656. cflags_filter=echo
  1657. ldflags_filter=echo
  1658. AS_C='-c'
  1659. AS_O='-o $@'
  1660. CC_C='-c'
  1661. CC_E='-E -o $@'
  1662. CC_O='-o $@'
  1663. LD_O='-o $@'
  1664. LD_LIB='-l%'
  1665. LD_PATH='-L'
  1666. HOSTCC_C='-c'
  1667. HOSTCC_O='-o $@'
  1668. HOSTLD_O='-o $@'
  1669. host_cflags='-D_ISOC99_SOURCE -D_XOPEN_SOURCE=600 -O3 -g'
  1670. host_libs='-lm'
  1671. host_cflags_filter=echo
  1672. host_ldflags_filter=echo
  1673. target_path='$(CURDIR)'
  1674. # since the object filename is not given with the -MM flag, the compiler
  1675. # is only able to print the basename, and we must add the path ourselves
  1676. DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  1677. DEPFLAGS='-MM'
  1678. # find source path
  1679. if test -f configure; then
  1680. source_path=.
  1681. else
  1682. source_path=$(cd $(dirname "$0"); pwd)
  1683. echo "$source_path" | grep -q '[[:blank:]]' &&
  1684. die "Out of tree builds are impossible with whitespace in source path."
  1685. test -e "$source_path/config.h" &&
  1686. die "Out of tree builds are impossible with config.h in source dir."
  1687. fi
  1688. for v in "$@"; do
  1689. r=${v#*=}
  1690. l=${v%"$r"}
  1691. r=$(sh_quote "$r")
  1692. LIBAV_CONFIGURATION="${LIBAV_CONFIGURATION# } ${l}${r}"
  1693. done
  1694. find_things(){
  1695. thing=$1
  1696. pattern=$2
  1697. file=$source_path/$3
  1698. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  1699. }
  1700. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  1701. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  1702. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  1703. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  1704. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  1705. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  1706. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  1707. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  1708. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  1709. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  1710. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  1711. ALL_COMPONENTS="
  1712. $BSF_LIST
  1713. $DECODER_LIST
  1714. $DEMUXER_LIST
  1715. $ENCODER_LIST
  1716. $FILTER_LIST
  1717. $HWACCEL_LIST
  1718. $INDEV_LIST
  1719. $MUXER_LIST
  1720. $OUTDEV_LIST
  1721. $PARSER_LIST
  1722. $PROTOCOL_LIST
  1723. "
  1724. for n in $COMPONENT_LIST; do
  1725. v=$(toupper ${n%s})_LIST
  1726. eval enable \$$v
  1727. eval ${n}_if_any="\$$v"
  1728. done
  1729. disable snow_decoder snow_encoder
  1730. enable $ARCH_EXT_LIST
  1731. die_unknown(){
  1732. echo "Unknown option \"$1\"."
  1733. echo "See $0 --help for available options."
  1734. exit 1
  1735. }
  1736. show_list() {
  1737. suffix=_$1
  1738. shift
  1739. echo $* | sed s/$suffix//g | tr ' ' '\n' | sort | pr -3 -t
  1740. exit 0
  1741. }
  1742. rand_list(){
  1743. IFS=', '
  1744. set -- $*
  1745. unset IFS
  1746. for thing; do
  1747. comp=${thing%:*}
  1748. prob=${thing#$comp}
  1749. prob=${prob#:}
  1750. is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
  1751. echo "prob ${prob:-0.5}"
  1752. printf '%s\n' $comp
  1753. done
  1754. }
  1755. do_random(){
  1756. action=$1
  1757. shift
  1758. random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
  1759. $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
  1760. }
  1761. for opt do
  1762. optval="${opt#*=}"
  1763. case "$opt" in
  1764. --extra-ldflags=*) add_ldflags $optval
  1765. ;;
  1766. --extra-libs=*) add_extralibs $optval
  1767. ;;
  1768. --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
  1769. ;;
  1770. --enable-debug=*) debuglevel="$optval"
  1771. ;;
  1772. --disable-programs)
  1773. disable $PROGRAM_LIST
  1774. ;;
  1775. --disable-everything)
  1776. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  1777. ;;
  1778. --enable-random|--disable-random)
  1779. action=${opt%%-random}
  1780. do_random ${action#--} $COMPONENT_LIST
  1781. ;;
  1782. --enable-random=*|--disable-random=*)
  1783. action=${opt%%-random=*}
  1784. do_random ${action#--} $optval
  1785. ;;
  1786. --enable-*=*|--disable-*=*)
  1787. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  1788. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  1789. eval list=\$$(toupper $thing)_LIST
  1790. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  1791. $action $(filter "$name" $list)
  1792. ;;
  1793. --enable-?*|--disable-?*)
  1794. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  1795. if is_in $option $COMPONENT_LIST; then
  1796. test $action = disable && action=unset
  1797. eval $action \$$(toupper ${option%s})_LIST
  1798. elif is_in $option $CMDLINE_SELECT; then
  1799. $action $option
  1800. else
  1801. die_unknown $opt
  1802. fi
  1803. ;;
  1804. --list-*)
  1805. NAME="${opt#--list-}"
  1806. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  1807. NAME=${NAME%s}
  1808. eval show_list $NAME \$$(toupper $NAME)_LIST
  1809. ;;
  1810. --help|-h) show_help
  1811. ;;
  1812. *)
  1813. optname="${opt%%=*}"
  1814. optname="${optname#--}"
  1815. optname=$(echo "$optname" | sed 's/-/_/g')
  1816. if is_in $optname $CMDLINE_SET; then
  1817. eval $optname='$optval'
  1818. elif is_in $optname $CMDLINE_APPEND; then
  1819. append $optname "$optval"
  1820. else
  1821. die_unknown $opt
  1822. fi
  1823. ;;
  1824. esac
  1825. done
  1826. disabled logging && logfile=/dev/null
  1827. echo "# $0 $LIBAV_CONFIGURATION" > $logfile
  1828. set >> $logfile
  1829. test -n "$cross_prefix" && enable cross_compile
  1830. if enabled cross_compile; then
  1831. test -n "$arch" && test -n "$target_os" ||
  1832. die "Must specify target arch and OS when cross-compiling"
  1833. fi
  1834. ar_default="${cross_prefix}${ar_default}"
  1835. cc_default="${cross_prefix}${cc_default}"
  1836. nm_default="${cross_prefix}${nm_default}"
  1837. pkg_config_default="${cross_prefix}${pkg_config_default}"
  1838. ranlib="${cross_prefix}${ranlib}"
  1839. sysinclude_default="${sysroot}/usr/include"
  1840. case "$toolchain" in
  1841. clang-asan)
  1842. cc_default="clang"
  1843. add_cflags -faddress-sanitizer
  1844. add_ldflags -faddress-sanitizer
  1845. ;;
  1846. clang-tsan)
  1847. cc_default="clang"
  1848. add_cflags -fthread-sanitizer
  1849. add_ldflags -fthread-sanitizer
  1850. ;;
  1851. msvc)
  1852. cc_default="c99wrap cl"
  1853. ld_default="c99wrap link"
  1854. nm_default="dumpbin -symbols"
  1855. ar_default="lib"
  1856. target_os_default="win32"
  1857. ;;
  1858. ?*)
  1859. die "Unknown toolchain $toolchain"
  1860. ;;
  1861. esac
  1862. set_default arch cc pkg_config sysinclude target_os
  1863. enabled cross_compile || host_cc_default=$cc
  1864. set_default host_cc
  1865. if ! $pkg_config --version >/dev/null 2>&1; then
  1866. warn "$pkg_config not found, library detection may fail."
  1867. pkg_config=false
  1868. fi
  1869. exesuf() {
  1870. case $1 in
  1871. mingw32*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
  1872. esac
  1873. }
  1874. EXESUF=$(exesuf $target_os)
  1875. HOSTEXESUF=$(exesuf $host_os)
  1876. # set temporary file name
  1877. : ${TMPDIR:=$TEMPDIR}
  1878. : ${TMPDIR:=$TMP}
  1879. : ${TMPDIR:=/tmp}
  1880. if ! check_cmd mktemp -u XXXXXX; then
  1881. # simple replacement for missing mktemp
  1882. # NOT SAFE FOR GENERAL USE
  1883. mktemp(){
  1884. echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
  1885. }
  1886. fi
  1887. tmpfile(){
  1888. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  1889. (set -C; exec > $tmp) 2>/dev/null ||
  1890. die "Unable to create temporary file in $TMPDIR."
  1891. append TMPFILES $tmp
  1892. eval $1=$tmp
  1893. }
  1894. trap 'rm -f -- $TMPFILES' EXIT
  1895. tmpfile TMPASM .asm
  1896. tmpfile TMPC .c
  1897. tmpfile TMPE $EXESUF
  1898. tmpfile TMPH .h
  1899. tmpfile TMPO .o
  1900. tmpfile TMPS .S
  1901. tmpfile TMPSH .sh
  1902. tmpfile TMPV .ver
  1903. unset -f mktemp
  1904. chmod +x $TMPE
  1905. # make sure we can execute files in $TMPDIR
  1906. cat > $TMPSH 2>> $logfile <<EOF
  1907. #! /bin/sh
  1908. EOF
  1909. chmod +x $TMPSH >> $logfile 2>&1
  1910. if ! $TMPSH >> $logfile 2>&1; then
  1911. cat <<EOF
  1912. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  1913. variable to another directory and make sure that it is not mounted noexec.
  1914. EOF
  1915. die "Sanity test failed."
  1916. fi
  1917. ccc_flags(){
  1918. for flag; do
  1919. case $flag in
  1920. -std=c99) echo -c99 ;;
  1921. -mcpu=*) echo -arch ${flag#*=} ;;
  1922. -mieee) echo -ieee ;;
  1923. -O*|-fast) echo $flag ;;
  1924. -fno-math-errno) echo -assume nomath_errno ;;
  1925. -g) echo -g3 ;;
  1926. -Wall) echo -msg_enable level2 ;;
  1927. -Wno-pointer-sign) echo -msg_disable ptrmismatch1 ;;
  1928. -Wl,*) echo $flag ;;
  1929. -f*|-W*) ;;
  1930. *) echo $flag ;;
  1931. esac
  1932. done
  1933. }
  1934. msvc_flags(){
  1935. for flag; do
  1936. case $flag in
  1937. -fomit-frame-pointer) echo -Oy ;;
  1938. -g) echo -Z7 ;;
  1939. -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
  1940. -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
  1941. -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
  1942. -wd4996 -wd4273 ;;
  1943. -std=c99) ;;
  1944. -fno-math-errno) ;;
  1945. -fno-common) ;;
  1946. -fno-signed-zeros) ;;
  1947. -lz) echo zlib.lib ;;
  1948. -lavifil32) echo vfw32.lib ;;
  1949. -lavicap32) echo vfw32.lib user32.lib ;;
  1950. -l*) echo ${flag#-l}.lib ;;
  1951. *) echo $flag ;;
  1952. esac
  1953. done
  1954. }
  1955. pgi_flags(){
  1956. for flag; do
  1957. case $flag in
  1958. -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
  1959. -fomit-frame-pointer) echo -Mnoframe ;;
  1960. -g) echo -gopt ;;
  1961. *) echo $flag ;;
  1962. esac
  1963. done
  1964. }
  1965. suncc_flags(){
  1966. for flag; do
  1967. case $flag in
  1968. -march=*|-mcpu=*)
  1969. case "${flag#*=}" in
  1970. native) echo -xtarget=native ;;
  1971. v9|niagara) echo -xarch=sparc ;;
  1972. ultrasparc) echo -xarch=sparcvis ;;
  1973. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  1974. i586|pentium) echo -xchip=pentium ;;
  1975. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  1976. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  1977. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  1978. pentium4*) echo -xtarget=pentium4 ;;
  1979. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  1980. *-sse3) echo -xarch=sse3 ;;
  1981. core2) echo -xarch=ssse3 -xchip=core2 ;;
  1982. corei7) echo -xarch=sse4_2 -xchip=nehalem ;;
  1983. corei7-avx) echo -xarch=avx -xchip=sandybridge ;;
  1984. amdfam10|barcelona|bdver*) echo -xarch=sse4_1 ;;
  1985. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  1986. k8|opteron|athlon64|athlon-fx)
  1987. echo -xarch=sse2a ;;
  1988. athlon*) echo -xarch=pentium_proa ;;
  1989. esac
  1990. ;;
  1991. -std=c99) echo -xc99 ;;
  1992. -fomit-frame-pointer) echo -xregs=frameptr ;;
  1993. -fPIC) echo -KPIC -xcode=pic32 ;;
  1994. -W*,*) echo $flag ;;
  1995. -f*-*|-W*) ;;
  1996. *) echo $flag ;;
  1997. esac
  1998. done
  1999. }
  2000. tms470_flags(){
  2001. for flag; do
  2002. case $flag in
  2003. -march=*|-mcpu=*)
  2004. case "${flag#*=}" in
  2005. armv7-a|cortex-a*) echo -mv=7a8 ;;
  2006. armv7-r|cortex-r*) echo -mv=7r4 ;;
  2007. armv7-m|cortex-m*) echo -mv=7m3 ;;
  2008. armv6*|arm11*) echo -mv=6 ;;
  2009. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  2010. echo -mv=5e ;;
  2011. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  2012. esac
  2013. ;;
  2014. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  2015. -mfpu=vfp) echo --float_support=vfpv2 ;;
  2016. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  2017. -mfpu=vfpv3-d16) echo --float_support=vfpv3d16 ;;
  2018. -msoft-float) echo --float_support=vfplib ;;
  2019. -O[0-3]|-mf=*) echo $flag ;;
  2020. -g) echo -g -mn ;;
  2021. -pds=*) echo $flag ;;
  2022. -D*|-I*) echo $flag ;;
  2023. --gcc|--abi=*) echo $flag ;;
  2024. -me) echo $flag ;;
  2025. esac
  2026. done
  2027. }
  2028. probe_cc(){
  2029. pfx=$1
  2030. _cc=$2
  2031. unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
  2032. unset _ld_o _ldflags _ld_lib _ld_path
  2033. unset _depflags _DEPCMD _DEPFLAGS
  2034. _flags_filter=echo
  2035. if $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
  2036. _type=llvm_gcc
  2037. gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
  2038. _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
  2039. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2040. _cflags_speed='-O3'
  2041. _cflags_size='-Os'
  2042. elif $_cc -v 2>&1 | grep -qi ^gcc; then
  2043. _type=gcc
  2044. gcc_version=$($_cc --version | head -n1)
  2045. gcc_basever=$($_cc -dumpversion)
  2046. gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
  2047. gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
  2048. _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
  2049. if ! $_cc -dumpversion | grep -q '^2\.'; then
  2050. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2051. fi
  2052. _cflags_speed='-O3'
  2053. _cflags_size='-Os'
  2054. elif $_cc --version 2>/dev/null | grep -q Intel; then
  2055. _type=icc
  2056. _ident=$($_cc --version | head -n1)
  2057. _depflags='-MMD'
  2058. _cflags_speed='-O3'
  2059. _cflags_size='-Os'
  2060. _cflags_noopt='-O1'
  2061. elif $_cc -v 2>&1 | grep -q xlc; then
  2062. _type=xlc
  2063. _ident=$($_cc -qversion 2>/dev/null | head -n1)
  2064. _cflags_speed='-O5'
  2065. _cflags_size='-O5 -qcompact'
  2066. elif $_cc -V 2>/dev/null | grep -q Compaq; then
  2067. _type=ccc
  2068. _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
  2069. _DEPFLAGS='-M'
  2070. _cflags_speed='-fast'
  2071. _cflags_size='-O1'
  2072. _flags_filter=ccc_flags
  2073. elif $_cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
  2074. test -d "$sysroot" || die "No valid sysroot specified."
  2075. _type=armcc
  2076. _ident=$($_cc --vsn | head -n1)
  2077. armcc_conf="$PWD/armcc.conf"
  2078. $_cc --arm_linux_configure \
  2079. --arm_linux_config_file="$armcc_conf" \
  2080. --configure_sysroot="$sysroot" \
  2081. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  2082. die "Error creating armcc configuration file."
  2083. $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
  2084. _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
  2085. as_default="${cross_prefix}gcc"
  2086. _depflags='-MMD'
  2087. _cflags_speed='-O3'
  2088. _cflags_size='-Os'
  2089. elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
  2090. _type=tms470
  2091. _ident=$($_cc -version | head -n1 | tr -s ' ')
  2092. _flags='--gcc --abi=eabi -me'
  2093. _cc_e='-ppl -fe=$@'
  2094. _cc_o='-fe=$@'
  2095. _depflags='-ppa -ppd=$(@:.o=.d)'
  2096. _cflags_speed='-O3 -mf=5'
  2097. _cflags_size='-O3 -mf=2'
  2098. _flags_filter=tms470_flags
  2099. elif $_cc -v 2>&1 | grep -q clang; then
  2100. _type=clang
  2101. _ident=$($_cc --version | head -n1)
  2102. _depflags='-MMD'
  2103. _cflags_speed='-O3'
  2104. _cflags_size='-Os'
  2105. elif $_cc -V 2>&1 | grep -q Sun; then
  2106. _type=suncc
  2107. _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
  2108. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  2109. _DEPFLAGS='-xM1 -xc99'
  2110. _ldflags='-std=c99'
  2111. _cflags_speed='-O5'
  2112. _cflags_size='-O5 -xspace'
  2113. _flags_filter=suncc_flags
  2114. elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
  2115. _type=pathscale
  2116. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2117. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2118. _cflags_speed='-O2'
  2119. _cflags_size='-Os'
  2120. _flags_filter='filter_out -Wdisabled-optimization'
  2121. elif $_cc -v 2>&1 | grep -q Open64; then
  2122. _type=open64
  2123. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2124. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2125. _cflags_speed='-O2'
  2126. _cflags_size='-Os'
  2127. _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
  2128. elif $_cc -V 2>&1 | grep -q Portland; then
  2129. _type=pgi
  2130. _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
  2131. opt_common='-alias=ansi -Mdse -Mlre -Mpre'
  2132. _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
  2133. _cflags_size="-O2 -Munroll=c:1 $opt_common"
  2134. _cflags_noopt="-O1"
  2135. _flags_filter=pgi_flags
  2136. elif $_cc 2>&1 | grep -q Microsoft; then
  2137. _type=msvc
  2138. _ident=$($cc 2>&1 | head -n1)
  2139. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
  2140. _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
  2141. _cflags_speed="-O2"
  2142. _cflags_size="-O1"
  2143. # Nonstandard output options, to avoid msys path conversion issues, relies on wrapper to remap it
  2144. if $_cc 2>&1 | grep -q Linker; then
  2145. _ld_o='-out $@'
  2146. else
  2147. _ld_o='-Fe$@'
  2148. fi
  2149. _cc_o='-Fo $@'
  2150. _cc_e='-P -Fi $@'
  2151. _flags_filter=msvc_flags
  2152. _ld_lib='lib%.a'
  2153. _ld_path='-libpath:'
  2154. _flags='-nologo'
  2155. _cflags='-D_USE_MATH_DEFINES -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64'
  2156. if [ $pfx = hostcc ]; then
  2157. append _cflags -Dsnprintf=_snprintf
  2158. fi
  2159. fi
  2160. eval ${pfx}_type=\$_type
  2161. eval ${pfx}_ident=\$_ident
  2162. }
  2163. set_ccvars(){
  2164. eval ${1}_C=\${_cc_c-\${${1}_C}}
  2165. eval ${1}_E=\${_cc_e-\${${1}_E}}
  2166. eval ${1}_O=\${_cc_o-\${${1}_O}}
  2167. if [ -n "$_depflags" ]; then
  2168. eval ${1}_DEPFLAGS=\$_depflags
  2169. else
  2170. eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
  2171. eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
  2172. eval DEP${1}FLAGS=\$_flags
  2173. fi
  2174. }
  2175. probe_cc cc "$cc"
  2176. cflags_filter=$_flags_filter
  2177. cflags_speed=$_cflags_speed
  2178. cflags_size=$_cflags_size
  2179. cflags_noopt=$_cflags_noopt
  2180. add_cflags $_flags $_cflags
  2181. cc_ldflags=$_ldflags
  2182. set_ccvars CC
  2183. probe_cc hostcc "$host_cc"
  2184. host_cflags_filter=$_flags_filter
  2185. add_host_cflags $_flags $_cflags
  2186. set_ccvars HOSTCC
  2187. test -n "$cc_type" && enable $cc_type ||
  2188. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  2189. : ${as_default:=$cc}
  2190. : ${dep_cc_default:=$cc}
  2191. : ${ld_default:=$cc}
  2192. : ${host_ld_default:=$host_cc}
  2193. set_default ar as dep_cc ld host_ld
  2194. probe_cc as "$as"
  2195. asflags_filter=$_flags_filter
  2196. add_asflags $_flags $_cflags
  2197. set_ccvars AS
  2198. probe_cc ld "$ld"
  2199. ldflags_filter=$_flags_filter
  2200. add_ldflags $_flags $_ldflags
  2201. test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
  2202. LD_O=${_ld_o-$LD_O}
  2203. LD_LIB=${_ld_lib-$LD_LIB}
  2204. LD_PATH=${_ld_path-$LD_PATH}
  2205. probe_cc hostld "$host_ld"
  2206. host_ldflags_filter=$_flags_filter
  2207. add_host_ldflags $_flags $_ldflags
  2208. HOSTLD_O=${_ld_o-$HOSTLD_O}
  2209. if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
  2210. probe_cc depcc "$dep_cc"
  2211. CCDEP=${_DEPCMD:-$DEPCMD}
  2212. CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
  2213. DEPCCFLAGS=$_flags
  2214. fi
  2215. if $ar 2>&1 | grep -q Microsoft; then
  2216. arflags="-nologo"
  2217. ar_o='-out:$@'
  2218. elif $ar 2>&1 | grep -q 'Texas Instruments'; then
  2219. arflags="rq"
  2220. ar_o='$@'
  2221. else
  2222. arflags="rc"
  2223. ar_o='$@'
  2224. fi
  2225. add_cflags $extra_cflags
  2226. add_asflags $extra_cflags
  2227. if test -n "$sysroot"; then
  2228. case "$cc_type" in
  2229. gcc|llvm_gcc|clang)
  2230. add_cppflags --sysroot="$sysroot"
  2231. add_ldflags --sysroot="$sysroot"
  2232. ;;
  2233. tms470)
  2234. add_cppflags -I"$sysinclude"
  2235. add_ldflags --sysroot="$sysroot"
  2236. ;;
  2237. esac
  2238. fi
  2239. if test "$cpu" = host; then
  2240. enabled cross_compile && die "--cpu=host makes no sense when cross-compiling."
  2241. case "$cc_type" in
  2242. gcc|llvm_gcc)
  2243. check_native(){
  2244. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  2245. sed -n "/cc1.*$1=/{
  2246. s/.*$1=\\([^ ]*\\).*/\\1/
  2247. p
  2248. q
  2249. }" $TMPE
  2250. }
  2251. cpu=$(check_native -march || check_native -mcpu)
  2252. ;;
  2253. esac
  2254. test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc"
  2255. fi
  2256. # Deal with common $arch aliases
  2257. case "$arch" in
  2258. aarch64|arm64)
  2259. arch="aarch64"
  2260. ;;
  2261. arm*)
  2262. arch="arm"
  2263. ;;
  2264. mips*|IP*)
  2265. arch="mips"
  2266. ;;
  2267. parisc*|hppa*)
  2268. arch="parisc"
  2269. ;;
  2270. "Power Macintosh"|ppc*|powerpc*)
  2271. arch="ppc"
  2272. ;;
  2273. s390|s390x)
  2274. arch="s390"
  2275. ;;
  2276. sh4|sh)
  2277. arch="sh4"
  2278. ;;
  2279. sun4u|sparc*)
  2280. arch="sparc"
  2281. ;;
  2282. tilegx|tile-gx)
  2283. arch="tilegx"
  2284. ;;
  2285. i[3-6]86|i86pc|BePC|x86pc|x86_64|amd64)
  2286. arch="x86"
  2287. ;;
  2288. esac
  2289. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  2290. enable $arch
  2291. # Add processor-specific flags
  2292. if test "$cpu" = generic; then
  2293. : do nothing
  2294. elif enabled aarch64; then
  2295. case $cpu in
  2296. armv*)
  2297. cpuflags="-march=$cpu"
  2298. ;;
  2299. *)
  2300. cpuflags="-mcpu=$cpu"
  2301. ;;
  2302. esac
  2303. elif enabled alpha; then
  2304. cpuflags="-mcpu=$cpu"
  2305. elif enabled arm; then
  2306. case $cpu in
  2307. armv*)
  2308. cpuflags="-march=$cpu"
  2309. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  2310. ;;
  2311. *)
  2312. cpuflags="-mcpu=$cpu"
  2313. case $cpu in
  2314. cortex-a*) subarch=armv7a ;;
  2315. cortex-r*) subarch=armv7r ;;
  2316. cortex-m*) enable thumb; subarch=armv7m ;;
  2317. arm11*) subarch=armv6 ;;
  2318. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  2319. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  2320. esac
  2321. ;;
  2322. esac
  2323. elif enabled avr32; then
  2324. case $cpu in
  2325. ap7[02]0[0-2])
  2326. subarch="avr32_ap"
  2327. cpuflags="-mpart=$cpu"
  2328. ;;
  2329. ap)
  2330. subarch="avr32_ap"
  2331. cpuflags="-march=$cpu"
  2332. ;;
  2333. uc3[ab]*)
  2334. subarch="avr32_uc"
  2335. cpuflags="-mcpu=$cpu"
  2336. ;;
  2337. uc)
  2338. subarch="avr32_uc"
  2339. cpuflags="-march=$cpu"
  2340. ;;
  2341. esac
  2342. elif enabled bfin; then
  2343. cpuflags="-mcpu=$cpu"
  2344. elif enabled mips; then
  2345. cpuflags="-march=$cpu"
  2346. elif enabled ppc; then
  2347. case $(tolower $cpu) in
  2348. 601|ppc601|powerpc601)
  2349. cpuflags="-mcpu=601"
  2350. disable altivec
  2351. ;;
  2352. 603*|ppc603*|powerpc603*)
  2353. cpuflags="-mcpu=603"
  2354. disable altivec
  2355. ;;
  2356. 604*|ppc604*|powerpc604*)
  2357. cpuflags="-mcpu=604"
  2358. disable altivec
  2359. ;;
  2360. g3|75*|ppc75*|powerpc75*)
  2361. cpuflags="-mcpu=750"
  2362. disable altivec
  2363. ;;
  2364. g4|745*|ppc745*|powerpc745*)
  2365. cpuflags="-mcpu=7450"
  2366. ;;
  2367. 74*|ppc74*|powerpc74*)
  2368. cpuflags="-mcpu=7400"
  2369. ;;
  2370. g5|970|ppc970|powerpc970)
  2371. cpuflags="-mcpu=970"
  2372. ;;
  2373. power[3-7]*)
  2374. cpuflags="-mcpu=$cpu"
  2375. ;;
  2376. cell)
  2377. cpuflags="-mcpu=cell"
  2378. enable ldbrx
  2379. ;;
  2380. e500mc)
  2381. cpuflags="-mcpu=e500mc"
  2382. disable altivec
  2383. ;;
  2384. e500v2)
  2385. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  2386. disable altivec
  2387. ;;
  2388. e500)
  2389. cpuflags="-mcpu=8540 -mhard-float"
  2390. disable altivec
  2391. ;;
  2392. esac
  2393. elif enabled sparc; then
  2394. case $cpu in
  2395. cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
  2396. cpuflags="-mcpu=$cpu"
  2397. disable vis
  2398. ;;
  2399. ultrasparc*|niagara[234])
  2400. cpuflags="-mcpu=$cpu"
  2401. ;;
  2402. esac
  2403. elif enabled x86; then
  2404. case $cpu in
  2405. i[345]86|pentium)
  2406. cpuflags="-march=$cpu"
  2407. disable mmx
  2408. ;;
  2409. # targets that do NOT support conditional mov (cmov)
  2410. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  2411. cpuflags="-march=$cpu"
  2412. disable cmov
  2413. ;;
  2414. # targets that do support conditional mov (cmov)
  2415. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|corei7*|amdfam10|barcelona|atom|bdver*)
  2416. cpuflags="-march=$cpu"
  2417. enable cmov
  2418. enable fast_cmov
  2419. ;;
  2420. # targets that do support conditional mov but on which it's slow
  2421. pentium4|pentium4m|prescott|nocona)
  2422. cpuflags="-march=$cpu"
  2423. enable cmov
  2424. disable fast_cmov
  2425. ;;
  2426. esac
  2427. fi
  2428. add_cflags $cpuflags
  2429. add_asflags $cpuflags
  2430. # compiler sanity check
  2431. check_exec <<EOF
  2432. int main(void){ return 0; }
  2433. EOF
  2434. if test "$?" != 0; then
  2435. echo "$cc is unable to create an executable file."
  2436. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  2437. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  2438. echo "Only do this if you know what cross compiling means."
  2439. fi
  2440. die "C compiler test failed."
  2441. fi
  2442. add_cppflags -D_ISOC99_SOURCE
  2443. check_cflags -std=c99
  2444. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  2445. #include <stdlib.h>
  2446. EOF
  2447. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  2448. #include <stdlib.h>
  2449. EOF
  2450. check_host_cflags -std=c99
  2451. check_host_cflags -Wall
  2452. check_64bit(){
  2453. arch32=$1
  2454. arch64=$2
  2455. expr=$3
  2456. check_code cc "" "int test[2*($expr) - 1]" &&
  2457. subarch=$arch64 || subarch=$arch32
  2458. }
  2459. case "$arch" in
  2460. alpha|ia64)
  2461. spic=$shared
  2462. ;;
  2463. mips)
  2464. check_64bit mips mips64 '_MIPS_SIM > 1'
  2465. spic=$shared
  2466. ;;
  2467. parisc)
  2468. check_64bit parisc parisc64 'sizeof(void *) > 4'
  2469. spic=$shared
  2470. ;;
  2471. ppc)
  2472. check_64bit ppc ppc64 'sizeof(void *) > 4'
  2473. ;;
  2474. sparc)
  2475. check_64bit sparc sparc64 'sizeof(void *) > 4'
  2476. spic=$shared
  2477. ;;
  2478. x86)
  2479. check_64bit x86_32 x86_64 'sizeof(void *) > 4'
  2480. if test "$subarch" = "x86_64"; then
  2481. spic=$shared
  2482. fi
  2483. ;;
  2484. esac
  2485. enable $subarch
  2486. enabled spic && enable pic
  2487. # OS specific
  2488. case $target_os in
  2489. haiku)
  2490. prefix_default="/boot/common"
  2491. network_extralibs="-lnetwork"
  2492. host_libs=
  2493. ;;
  2494. sunos)
  2495. AVSERVERLDFLAGS=""
  2496. SHFLAGS='-shared -Wl,-h,$$(@F)'
  2497. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  2498. network_extralibs="-lsocket -lnsl"
  2499. add_cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
  2500. # When using suncc to build, the Solaris linker will mark
  2501. # an executable with each instruction set encountered by
  2502. # the Solaris assembler. As our libraries contain their own
  2503. # guards for processor-specific code, instead suppress
  2504. # generation of the HWCAPS ELF section on Solaris x86 only.
  2505. enabled_all suncc x86 && echo "hwcap_1 = OVERRIDE;" > mapfile && add_ldflags -Wl,-M,mapfile
  2506. nm_default='nm -P -g'
  2507. ;;
  2508. netbsd)
  2509. disable symver
  2510. oss_indev_extralibs="-lossaudio"
  2511. oss_outdev_extralibs="-lossaudio"
  2512. ;;
  2513. openbsd|bitrig)
  2514. # On OpenBSD 4.5. the compiler does not use PIC unless
  2515. # explicitly using -fPIC. Libav builds fine without PIC,
  2516. # however the generated executable will not do anything
  2517. # (simply quits with exit-code 1, no crash, no output).
  2518. # Thus explicitly enable PIC here.
  2519. enable pic
  2520. disable symver
  2521. SHFLAGS='-shared'
  2522. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBVERSION)'
  2523. SLIB_INSTALL_LINKS=
  2524. oss_indev_extralibs="-lossaudio"
  2525. oss_outdev_extralibs="-lossaudio"
  2526. ;;
  2527. dragonfly)
  2528. disable symver
  2529. ;;
  2530. freebsd)
  2531. ;;
  2532. bsd/os)
  2533. add_extralibs -lpoll -lgnugetopt
  2534. ;;
  2535. darwin)
  2536. gas="gas-preprocessor.pl $cc"
  2537. enabled ppc && add_asflags -force_cpusubtype_ALL
  2538. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  2539. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  2540. add_ldflags -Wl,-dynamic,-search_paths_first
  2541. SLIBSUF=".dylib"
  2542. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  2543. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  2544. AVSERVERLDFLAGS=-Wl,-bind_at_load
  2545. objformat="macho"
  2546. enabled x86_64 && objformat="macho64"
  2547. enabled_any pic shared ||
  2548. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  2549. ;;
  2550. mingw32*)
  2551. if test $target_os = "mingw32ce"; then
  2552. disable network
  2553. else
  2554. target_os=mingw32
  2555. fi
  2556. LIBTARGET=i386
  2557. if enabled x86_64; then
  2558. LIBTARGET="i386:x86-64"
  2559. elif enabled arm; then
  2560. LIBTARGET=arm-wince
  2561. fi
  2562. shlibdir_default="$bindir_default"
  2563. SLIBPREF=""
  2564. SLIBSUF=".dll"
  2565. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2566. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2567. SLIB_EXTRA_CMD=-'$(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
  2568. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2569. SLIB_INSTALL_LINKS=
  2570. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  2571. SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  2572. SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
  2573. objformat="win32"
  2574. dlltool="${cross_prefix}dlltool"
  2575. ranlib=:
  2576. enable dos_paths
  2577. add_cppflags -U__STRICT_ANSI__
  2578. ;;
  2579. win32|win64)
  2580. if enabled shared; then
  2581. # Link to the import library instead of the normal static library
  2582. # for shared libs.
  2583. LD_LIB='%.lib'
  2584. # Cannot build shared and static libraries at the same time with
  2585. # MSVC.
  2586. disable static
  2587. fi
  2588. shlibdir_default="$bindir_default"
  2589. SLIBPREF=""
  2590. SLIBSUF=".dll"
  2591. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2592. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2593. SLIB_CREATE_DEF_CMD='makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
  2594. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2595. SLIB_INSTALL_LINKS=
  2596. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  2597. SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  2598. SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  2599. objformat="win32"
  2600. ranlib=:
  2601. enable dos_paths
  2602. ;;
  2603. cygwin*)
  2604. target_os=cygwin
  2605. shlibdir_default="$bindir_default"
  2606. SLIBPREF="cyg"
  2607. SLIBSUF=".dll"
  2608. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2609. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2610. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2611. SLIB_INSTALL_LINKS=
  2612. SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
  2613. SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
  2614. objformat="win32"
  2615. enable dos_paths
  2616. ;;
  2617. *-dos|freedos|opendos)
  2618. network_extralibs="-lsocket"
  2619. objformat="coff"
  2620. enable dos_paths
  2621. add_cppflags -U__STRICT_ANSI__
  2622. ;;
  2623. linux)
  2624. enable dv1394
  2625. ;;
  2626. irix*)
  2627. target_os=irix
  2628. ranlib="echo ignoring ranlib"
  2629. ;;
  2630. os/2*)
  2631. ln_s="cp -f"
  2632. objformat="aout"
  2633. add_cppflags -D_GNU_SOURCE
  2634. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
  2635. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  2636. AVSERVERLDFLAGS=""
  2637. LIBSUF="_s.a"
  2638. SLIBPREF=""
  2639. SLIBSUF=".dll"
  2640. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  2641. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  2642. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  2643. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  2644. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  2645. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  2646. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  2647. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  2648. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  2649. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  2650. SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
  2651. enable dos_paths
  2652. ;;
  2653. gnu/kfreebsd)
  2654. add_cppflags -D_BSD_SOURCE
  2655. ;;
  2656. gnu)
  2657. ;;
  2658. qnx)
  2659. add_cppflags -D_QNX_SOURCE
  2660. network_extralibs="-lsocket"
  2661. ;;
  2662. symbian)
  2663. SLIBSUF=".dll"
  2664. enable dos_paths
  2665. add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
  2666. add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
  2667. add_ldflags -Wl,--target1-abs,--no-undefined \
  2668. -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
  2669. -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
  2670. add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
  2671. -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
  2672. -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
  2673. ;;
  2674. osf1)
  2675. add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
  2676. AVSERVERLDFLAGS=
  2677. ;;
  2678. minix)
  2679. ;;
  2680. plan9)
  2681. add_cppflags -D_C99_SNPRINTF_EXTENSION \
  2682. -D_REENTRANT_SOURCE \
  2683. -D_RESEARCH_SOURCE \
  2684. -DFD_SETSIZE=96 \
  2685. -DHAVE_SOCK_OPTS
  2686. add_compat strtod.o strtod=avpriv_strtod
  2687. network_extralibs='-lbsd'
  2688. exeobjs=compat/plan9/main.o
  2689. disable avserver
  2690. ln_s='ln -s -f'
  2691. cp_f='cp'
  2692. ;;
  2693. none)
  2694. ;;
  2695. *)
  2696. die "Unknown OS '$target_os'."
  2697. ;;
  2698. esac
  2699. # determine libc flavour
  2700. if check_cpp_condition features.h "defined __UCLIBC__"; then
  2701. libc_type=uclibc
  2702. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2703. elif check_cpp_condition features.h "defined __GLIBC__"; then
  2704. libc_type=glibc
  2705. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2706. elif check_header _mingw.h; then
  2707. libc_type=mingw
  2708. check_cpp_condition _mingw.h \
  2709. "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) || \
  2710. (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  2711. die "ERROR: MinGW runtime version must be >= 3.15."
  2712. elif check_cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
  2713. libc_type=newlib
  2714. add_cppflags -U__STRICT_ANSI__
  2715. elif check_func_headers stdlib.h _get_doserrno; then
  2716. libc_type=msvcrt
  2717. add_compat strtod.o strtod=avpriv_strtod
  2718. add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \
  2719. _snprintf=avpriv_snprintf \
  2720. vsnprintf=avpriv_vsnprintf
  2721. elif check_cpp_condition stddef.h "defined __KLIBC__"; then
  2722. libc_type=klibc
  2723. fi
  2724. test -n "$libc_type" && enable $libc_type
  2725. # hacks for compiler/libc/os combinations
  2726. if enabled_all tms470 glibc; then
  2727. CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
  2728. add_cppflags -D__USER_LABEL_PREFIX__=
  2729. add_cppflags -D__builtin_memset=memset
  2730. add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
  2731. add_cflags -pds=48 # incompatible redefinition of macro
  2732. fi
  2733. if enabled_all ccc glibc; then
  2734. add_ldflags -Wl,-z,now # calls to libots crash without this
  2735. fi
  2736. esc(){
  2737. echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
  2738. }
  2739. echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $LIBAV_CONFIGURATION)" >config.fate
  2740. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
  2741. set_default $PATHS_LIST
  2742. set_default nm
  2743. # we need to build at least one lib type
  2744. if ! enabled_any static shared; then
  2745. cat <<EOF
  2746. At least one library type must be built.
  2747. Specify --enable-static to build the static libraries or --enable-shared to
  2748. build the shared libraries as well. To only build the shared libraries specify
  2749. --disable-static in addition to --enable-shared.
  2750. EOF
  2751. exit 1;
  2752. fi
  2753. die_license_disabled() {
  2754. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  2755. }
  2756. die_license_disabled gpl libcdio
  2757. die_license_disabled gpl libx264
  2758. die_license_disabled gpl libxavs
  2759. die_license_disabled gpl libxvid
  2760. die_license_disabled gpl x11grab
  2761. die_license_disabled nonfree libfaac
  2762. die_license_disabled nonfree libfdk_aac
  2763. die_license_disabled nonfree openssl
  2764. die_license_disabled version3 libopencore_amrnb
  2765. die_license_disabled version3 libopencore_amrwb
  2766. die_license_disabled version3 libvo_aacenc
  2767. die_license_disabled version3 libvo_amrwbenc
  2768. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  2769. disabled optimizations || check_cflags -fomit-frame-pointer
  2770. enable_pic() {
  2771. enable pic
  2772. add_cppflags -DPIC
  2773. add_cflags -fPIC
  2774. add_asflags -fPIC
  2775. }
  2776. enabled pic && enable_pic
  2777. check_cc <<EOF || die "Symbol mangling check failed."
  2778. int ff_extern;
  2779. EOF
  2780. sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  2781. extern_prefix=${sym%%ff_extern*}
  2782. check_cc <<EOF && enable_weak inline_asm
  2783. void foo(void) { __asm__ volatile ("" ::); }
  2784. EOF
  2785. _restrict=
  2786. for restrict_keyword in restrict __restrict__ __restrict; do
  2787. check_cc <<EOF && _restrict=$restrict_keyword && break
  2788. void foo(char * $restrict_keyword p);
  2789. EOF
  2790. done
  2791. check_cc <<EOF && enable attribute_packed
  2792. struct { int x; } __attribute__((packed)) x;
  2793. EOF
  2794. check_cc <<EOF && enable attribute_may_alias
  2795. union { int x; } __attribute__((may_alias)) x;
  2796. EOF
  2797. check_cc <<EOF || die "endian test failed"
  2798. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  2799. EOF
  2800. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  2801. if enabled alpha; then
  2802. check_cflags -mieee
  2803. elif enabled arm; then
  2804. enabled thumb && check_cflags -mthumb || check_cflags -marm
  2805. nogas=die
  2806. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  2807. enable vfp_args
  2808. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
  2809. case "${cross_prefix:-$cc}" in
  2810. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  2811. *) check_ld <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  2812. __asm__ (".eabi_attribute 28, 1");
  2813. int main(void) { return 0; }
  2814. EOF
  2815. esac
  2816. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  2817. fi
  2818. enabled armv5te && check_inline_asm armv5te '"qadd r0, r0, r0"'
  2819. enabled armv6 && check_inline_asm armv6 '"sadd16 r0, r0, r0"'
  2820. enabled armv6t2 && check_inline_asm armv6t2 '"movt r0, #0"'
  2821. enabled armvfp && check_inline_asm armvfp '"fadds s0, s0, s0"'
  2822. enabled neon && check_inline_asm neon '"vadd.i16 q0, q0, q0"'
  2823. enabled vfpv3 && check_inline_asm vfpv3 '"vmov.f32 s0, #1.0"'
  2824. check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
  2825. check_inline_asm asm_mod_y '"vmul.i32 d0, d0, %y0" :: "x"(0)'
  2826. enabled_all armv6t2 shared !pic && enable_pic
  2827. elif enabled mips; then
  2828. check_inline_asm loongson '"dmult.g $1, $2, $3"'
  2829. elif enabled parisc; then
  2830. if enabled gcc; then
  2831. case $($cc -dumpversion) in
  2832. 4.[3-8].*) check_cflags -fno-optimize-sibling-calls ;;
  2833. esac
  2834. fi
  2835. elif enabled ppc; then
  2836. enable local_aligned_8 local_aligned_16
  2837. check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  2838. check_inline_asm ibm_asm '"add 0, 0, 0"'
  2839. check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
  2840. check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  2841. # AltiVec flags: The FSF version of GCC differs from the Apple version
  2842. if enabled altivec; then
  2843. nogas=warn
  2844. check_cflags -maltivec -mabi=altivec &&
  2845. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  2846. check_cflags -faltivec
  2847. # check if our compiler supports Motorola AltiVec C API
  2848. check_cc <<EOF || disable altivec
  2849. $inc_altivec_h
  2850. int main(void) {
  2851. vector signed int v1 = (vector signed int) { 0 };
  2852. vector signed int v2 = (vector signed int) { 1 };
  2853. v1 = vec_add(v1, v2);
  2854. return 0;
  2855. }
  2856. EOF
  2857. enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
  2858. fi
  2859. elif enabled sparc; then
  2860. enabled vis && check_inline_asm vis '"pdist %f0, %f0, %f0"'
  2861. elif enabled x86; then
  2862. check_code ld intrin.h "__rdtsc()" && enable rdtsc
  2863. check_code ld mmintrin.h "_mm_empty()" && enable mm_empty
  2864. enable local_aligned_8 local_aligned_16
  2865. # check whether EBP is available on x86
  2866. # As 'i' is stored on the stack, this program will crash
  2867. # if the base pointer is used to access it because the
  2868. # base pointer is cleared in the inline assembly code.
  2869. check_exec_crash <<EOF && enable ebp_available
  2870. volatile int i=0;
  2871. __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
  2872. return i;
  2873. EOF
  2874. # check whether EBX is available on x86
  2875. check_inline_asm ebx_available '""::"b"(0)' &&
  2876. check_inline_asm ebx_available '"":::"%ebx"'
  2877. # check whether xmm clobbers are supported
  2878. check_inline_asm xmm_clobbers '"":::"%xmm0"'
  2879. # check whether binutils is new enough to compile SSSE3/MMXEXT
  2880. enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
  2881. enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
  2882. if ! disabled_any asm mmx yasm; then
  2883. if check_cmd $yasmexe --version; then
  2884. enabled x86_64 && yasm_extra="-m amd64"
  2885. yasm_debug="-g dwarf2"
  2886. elif check_cmd nasm -v; then
  2887. yasmexe=nasm
  2888. yasm_debug="-g -F dwarf"
  2889. enabled x86_64 && test "$objformat" = elf && objformat=elf64
  2890. fi
  2891. YASMFLAGS="-f $objformat $yasm_extra"
  2892. enabled pic && append YASMFLAGS "-DPIC"
  2893. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  2894. case "$objformat" in
  2895. elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
  2896. esac
  2897. check_yasm "vextractf128 xmm0, ymm0, 0" && enable yasm ||
  2898. die "yasm not found, use --disable-yasm for a crippled build"
  2899. check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
  2900. check_yasm "CPU amdnop" && enable cpunop
  2901. fi
  2902. case "$cpu" in
  2903. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  2904. disable fast_clz
  2905. ;;
  2906. esac
  2907. fi
  2908. if enabled asm; then
  2909. as=${gas:=$as}
  2910. check_inline_asm gnu_as '".macro m n\n\\n:.int 0\n.endm\nm x"' ||
  2911. $nogas "GNU assembler not found, install gas-preprocessor"
  2912. fi
  2913. check_ldflags -Wl,--as-needed
  2914. if check_func dlopen; then
  2915. ldl=
  2916. elif check_func dlopen -ldl; then
  2917. ldl=-ldl
  2918. fi
  2919. if enabled network; then
  2920. check_type "sys/types.h sys/socket.h" socklen_t
  2921. check_type netdb.h "struct addrinfo"
  2922. check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
  2923. check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
  2924. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  2925. check_type netinet/in.h "struct sockaddr_in6"
  2926. check_type poll.h "struct pollfd"
  2927. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  2928. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  2929. check_type netinet/sctp.h "struct sctp_event_subscribe"
  2930. check_func getaddrinfo $network_extralibs
  2931. check_func getservbyport $network_extralibs
  2932. # Prefer arpa/inet.h over winsock2
  2933. if check_header arpa/inet.h ; then
  2934. check_func closesocket
  2935. elif check_header winsock2.h ; then
  2936. check_func_headers winsock2.h closesocket -lws2 &&
  2937. network_extralibs="-lws2" ||
  2938. { check_func_headers winsock2.h closesocket -lws2_32 &&
  2939. network_extralibs="-lws2_32"; }
  2940. check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
  2941. check_type ws2tcpip.h socklen_t
  2942. check_type ws2tcpip.h "struct addrinfo"
  2943. check_type ws2tcpip.h "struct group_source_req"
  2944. check_type ws2tcpip.h "struct ip_mreq_source"
  2945. check_type ws2tcpip.h "struct ipv6_mreq"
  2946. check_type winsock2.h "struct pollfd"
  2947. check_type ws2tcpip.h "struct sockaddr_in6"
  2948. check_type ws2tcpip.h "struct sockaddr_storage"
  2949. check_struct winsock2.h "struct sockaddr" sa_len
  2950. else
  2951. disable network
  2952. fi
  2953. fi
  2954. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  2955. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  2956. check_func fcntl
  2957. check_func fork
  2958. check_func gethrtime
  2959. check_func getopt
  2960. check_func getrusage
  2961. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  2962. check_func gettimeofday
  2963. check_func inet_aton $network_extralibs
  2964. check_func isatty
  2965. check_func localtime_r
  2966. check_func ${malloc_prefix}memalign && enable memalign
  2967. check_func mkstemp
  2968. check_func mmap
  2969. check_func mprotect
  2970. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  2971. check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
  2972. check_func setrlimit
  2973. check_func strerror_r
  2974. check_func strptime
  2975. check_func strtok_r
  2976. check_func sched_getaffinity
  2977. check_func sysconf
  2978. check_func sysctl
  2979. check_func usleep
  2980. check_func_headers io.h setmode
  2981. check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
  2982. check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
  2983. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  2984. check_func_headers windows.h GetProcessAffinityMask
  2985. check_func_headers windows.h GetProcessTimes
  2986. check_func_headers windows.h GetSystemTimeAsFileTime
  2987. check_func_headers windows.h MapViewOfFile
  2988. check_func_headers windows.h SetConsoleTextAttribute
  2989. check_func_headers windows.h Sleep
  2990. check_func_headers windows.h VirtualAlloc
  2991. check_header direct.h
  2992. check_header dlfcn.h
  2993. check_header dxva.h
  2994. check_header dxva2api.h
  2995. check_header io.h
  2996. check_header malloc.h
  2997. check_header poll.h
  2998. check_header sys/mman.h
  2999. check_header sys/param.h
  3000. check_header sys/resource.h
  3001. check_header sys/select.h
  3002. check_header sys/time.h
  3003. check_header unistd.h
  3004. check_header vdpau/vdpau.h
  3005. check_header vdpau/vdpau_x11.h
  3006. check_header windows.h
  3007. check_header X11/extensions/XvMClib.h
  3008. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  3009. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  3010. if ! disabled w32threads && ! enabled pthreads; then
  3011. check_func_headers "windows.h process.h" _beginthreadex && enable w32threads
  3012. fi
  3013. # check for some common methods of building with pthread support
  3014. # do this before the optional library checks as some of them require pthreads
  3015. if ! disabled pthreads && ! enabled w32threads; then
  3016. enable pthreads
  3017. if check_func pthread_create; then
  3018. :
  3019. elif check_func pthread_create -pthread; then
  3020. add_cflags -pthread
  3021. add_extralibs -pthread
  3022. elif check_func pthread_create -pthreads; then
  3023. add_cflags -pthreads
  3024. add_extralibs -pthreads
  3025. elif check_func pthread_create -lpthreadGC2; then
  3026. add_extralibs -lpthreadGC2
  3027. elif ! check_lib pthread.h pthread_create -lpthread; then
  3028. disable pthreads
  3029. fi
  3030. fi
  3031. for thread in $THREADS_LIST; do
  3032. if enabled $thread; then
  3033. test -n "$thread_type" &&
  3034. die "ERROR: Only one thread type must be selected." ||
  3035. thread_type="$thread"
  3036. fi
  3037. done
  3038. check_lib math.h sin -lm && LIBM="-lm"
  3039. enabled vaapi && require vaapi va/va.h vaInitialize -lva
  3040. atan2f_args=2
  3041. ldexpf_args=2
  3042. powf_args=2
  3043. for func in $MATH_FUNCS; do
  3044. eval check_mathfunc $func \${${func}_args:-1}
  3045. done
  3046. # these are off by default, so fail if requested and not available
  3047. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
  3048. enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
  3049. enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
  3050. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  3051. enabled libfdk_aac && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
  3052. enabled libfreetype && require_pkg_config freetype2 "ft2build.h freetype/freetype.h" FT_Init_FreeType
  3053. enabled libgsm && require libgsm gsm/gsm.h gsm_create -lgsm
  3054. enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
  3055. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  3056. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  3057. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  3058. enabled libopencv && require_pkg_config opencv opencv/cv.h cvCreateImageHeader
  3059. enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
  3060. enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
  3061. enabled libpulse && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
  3062. enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
  3063. enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
  3064. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  3065. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  3066. enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
  3067. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  3068. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  3069. enabled libvpx && {
  3070. enabled libvpx_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
  3071. die "ERROR: libvpx decoder version must be >=0.9.1"; }
  3072. enabled libvpx_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VPX_CQ" -lvpx ||
  3073. die "ERROR: libvpx encoder version must be >=0.9.6"; } }
  3074. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
  3075. { check_cpp_condition x264.h "X264_BUILD >= 118" ||
  3076. die "ERROR: libx264 version must be >= 0.118."; }
  3077. enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
  3078. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  3079. enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
  3080. check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
  3081. check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
  3082. die "ERROR: openssl not found"; }
  3083. if enabled gnutls; then
  3084. { check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
  3085. { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
  3086. fi
  3087. # libdc1394 check
  3088. if enabled libdc1394; then
  3089. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  3090. enable libdc1394_2; } ||
  3091. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  3092. enable libdc1394_1; } ||
  3093. die "ERROR: No version of libdc1394 found "
  3094. fi
  3095. if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
  3096. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  3097. enable sdl &&
  3098. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  3099. fi
  3100. texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
  3101. check_header linux/fb.h
  3102. check_header linux/videodev2.h
  3103. check_struct linux/videodev2.h "struct v4l2_frmivalenum" discrete
  3104. check_header sys/videoio.h
  3105. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  3106. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  3107. # w32api 3.12 had it defined wrong
  3108. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  3109. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  3110. { check_header dev/bktr/ioctl_meteor.h &&
  3111. check_header dev/bktr/ioctl_bt848.h; } ||
  3112. { check_header machine/ioctl_meteor.h &&
  3113. check_header machine/ioctl_bt848.h; } ||
  3114. { check_header dev/video/meteor/ioctl_meteor.h &&
  3115. check_header dev/video/bktr/ioctl_bt848.h; } ||
  3116. check_header dev/ic/bt8xx.h
  3117. check_header sndio.h
  3118. check_header sys/soundcard.h
  3119. check_header soundcard.h
  3120. enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  3121. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack &&
  3122. check_func jack_port_get_latency_range -ljack
  3123. enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
  3124. enabled libcdio &&
  3125. check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio
  3126. enabled x11grab &&
  3127. require X11 X11/Xlib.h XOpenDisplay -lX11 &&
  3128. require Xext X11/extensions/XShm.h XShmCreateImage -lXext &&
  3129. require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
  3130. # check for VDA header
  3131. if ! disabled vda && check_header VideoDecodeAcceleration/VDADecoder.h; then
  3132. enable vda && add_extralibs -framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore
  3133. fi
  3134. if ! disabled vdpau && enabled vdpau_vdpau_h; then
  3135. check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  3136. { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." && disable vdpau; }
  3137. fi
  3138. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  3139. # add some useful compiler flags if supported
  3140. check_cflags -Wdeclaration-after-statement
  3141. check_cflags -Wall
  3142. check_cflags -Wno-parentheses
  3143. check_cflags -Wno-switch
  3144. check_cflags -Wno-format-zero-length
  3145. check_cflags -Wdisabled-optimization
  3146. check_cflags -Wpointer-arith
  3147. check_cflags -Wredundant-decls
  3148. check_cflags -Wno-pointer-sign
  3149. check_cflags -Wcast-qual
  3150. check_cflags -Wwrite-strings
  3151. check_cflags -Wtype-limits
  3152. check_cflags -Wundef
  3153. check_cflags -Wmissing-prototypes
  3154. check_cflags -Wstrict-prototypes
  3155. enabled extra_warnings && check_cflags -Winline
  3156. # add some linker flags
  3157. check_ldflags -Wl,--warn-common
  3158. check_ldflags -Wl,-rpath-link=libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
  3159. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  3160. enabled xmm_clobber_test &&
  3161. check_ldflags -Wl,--wrap,avcodec_open2 \
  3162. -Wl,--wrap,avcodec_decode_audio4 \
  3163. -Wl,--wrap,avcodec_decode_video2 \
  3164. -Wl,--wrap,avcodec_decode_subtitle2 \
  3165. -Wl,--wrap,avcodec_encode_audio2 \
  3166. -Wl,--wrap,avcodec_encode_video \
  3167. -Wl,--wrap,avcodec_encode_subtitle \
  3168. -Wl,--wrap,sws_scale ||
  3169. disable xmm_clobber_test
  3170. echo "X{};" > $TMPV
  3171. if test_ldflags -Wl,--version-script,$TMPV; then
  3172. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  3173. check_cc <<EOF && enable symver_asm_label
  3174. void ff_foo(void) __asm__ ("av_foo@VERSION");
  3175. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  3176. EOF
  3177. check_cc <<EOF && enable symver_gnu_asm
  3178. __asm__(".symver ff_foo,av_foo@VERSION");
  3179. void ff_foo(void) {}
  3180. EOF
  3181. fi
  3182. if [ -z "$optflags" ]; then
  3183. if enabled small; then
  3184. optflags=$cflags_size
  3185. elif enabled optimizations; then
  3186. optflags=$cflags_speed
  3187. else
  3188. optflags=$cflags_noopt
  3189. fi
  3190. fi
  3191. check_optflags(){
  3192. check_cflags "$@"
  3193. enabled lto && check_ldflags "$@"
  3194. }
  3195. if enabled lto; then
  3196. test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
  3197. check_cflags -flto
  3198. check_ldflags -flto $cpuflags
  3199. fi
  3200. check_optflags $optflags
  3201. check_optflags -fno-math-errno
  3202. check_optflags -fno-signed-zeros
  3203. if enabled icc; then
  3204. # Just warnings, no remarks
  3205. check_cflags -w1
  3206. # -wd: Disable following warnings
  3207. # 144, 167, 556: -Wno-pointer-sign
  3208. # 1292: attribute "foo" ignored
  3209. # 1419: external declaration in primary source file
  3210. # 10006: ignoring unknown option -fno-signed-zeros
  3211. # 10148: ignoring unknown option -Wno-parentheses
  3212. # 10156: ignoring option '-W'; no argument required
  3213. check_cflags -wd144,167,556,1292,1419,10006,10148,10156
  3214. # 11030: Warning unknown option --as-needed
  3215. # 10156: ignoring option '-export'; no argument required
  3216. check_ldflags -wd10156,11030
  3217. # Allow to compile with optimizations
  3218. check_ldflags -march=$cpu
  3219. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  3220. enable ebp_available
  3221. if enabled x86_32; then
  3222. icc_version=$($cc -dumpversion)
  3223. test ${icc_version%%.*} -ge 11 &&
  3224. check_cflags -falign-stack=maintain-16-byte ||
  3225. disable aligned_stack
  3226. fi
  3227. elif enabled ccc; then
  3228. # disable some annoying warnings
  3229. add_cflags -msg_disable bitnotint
  3230. add_cflags -msg_disable mixfuncvoid
  3231. add_cflags -msg_disable nonstandcast
  3232. add_cflags -msg_disable unsupieee
  3233. elif enabled gcc; then
  3234. check_optflags -fno-tree-vectorize
  3235. check_cflags -Werror=implicit-function-declaration
  3236. check_cflags -Werror=missing-prototypes
  3237. check_cflags -Werror=declaration-after-statement
  3238. check_cflags -Werror=vla
  3239. elif enabled llvm_gcc; then
  3240. check_cflags -mllvm -stack-alignment=16
  3241. elif enabled clang; then
  3242. check_cflags -mllvm -stack-alignment=16
  3243. check_cflags -Qunused-arguments
  3244. check_cflags -Werror=implicit-function-declaration
  3245. check_cflags -Werror=missing-prototypes
  3246. elif enabled armcc; then
  3247. # 2523: use of inline assembler is deprecated
  3248. add_cflags -W${armcc_opt},--diag_suppress=2523
  3249. add_cflags -W${armcc_opt},--diag_suppress=1207
  3250. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  3251. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  3252. add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
  3253. add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
  3254. elif enabled tms470; then
  3255. add_cflags -pds=824 -pds=837
  3256. elif enabled pathscale; then
  3257. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  3258. elif enabled msvc; then
  3259. enabled x86_32 && disable aligned_stack
  3260. fi
  3261. case $target_os in
  3262. osf1)
  3263. enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
  3264. ;;
  3265. plan9)
  3266. add_cppflags -Dmain=plan9_main
  3267. ;;
  3268. esac
  3269. enabled_any $THREADS_LIST && enable threads
  3270. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  3271. check_deps $CONFIG_LIST \
  3272. $CONFIG_EXTRA \
  3273. $HAVE_LIST \
  3274. $ALL_COMPONENTS \
  3275. ! enabled_any memalign posix_memalign aligned_malloc &&
  3276. enabled_any $need_memalign && enable memalign_hack
  3277. echo "install prefix $prefix"
  3278. echo "source path $source_path"
  3279. echo "C compiler $cc"
  3280. echo "ARCH $arch ($cpu)"
  3281. if test "$build_suffix" != ""; then
  3282. echo "build suffix $build_suffix"
  3283. fi
  3284. if test "$extra_version" != ""; then
  3285. echo "version string suffix $extra_version"
  3286. fi
  3287. echo "big-endian ${bigendian-no}"
  3288. echo "runtime cpu detection ${runtime_cpudetect-no}"
  3289. if enabled x86; then
  3290. echo "${yasmexe} ${yasm-no}"
  3291. echo "MMX enabled ${mmx-no}"
  3292. echo "MMXEXT enabled ${mmxext-no}"
  3293. echo "3DNow! enabled ${amd3dnow-no}"
  3294. echo "3DNow! extended enabled ${amd3dnowext-no}"
  3295. echo "SSE enabled ${sse-no}"
  3296. echo "SSSE3 enabled ${ssse3-no}"
  3297. echo "AVX enabled ${avx-no}"
  3298. echo "FMA4 enabled ${fma4-no}"
  3299. echo "CMOV enabled ${cmov-no}"
  3300. echo "CMOV is fast ${fast_cmov-no}"
  3301. echo "EBX available ${ebx_available-no}"
  3302. echo "EBP available ${ebp_available-no}"
  3303. fi
  3304. if enabled arm; then
  3305. echo "ARMv5TE enabled ${armv5te-no}"
  3306. echo "ARMv6 enabled ${armv6-no}"
  3307. echo "ARMv6T2 enabled ${armv6t2-no}"
  3308. echo "ARM VFP enabled ${armvfp-no}"
  3309. echo "NEON enabled ${neon-no}"
  3310. fi
  3311. if enabled ppc; then
  3312. echo "AltiVec enabled ${altivec-no}"
  3313. echo "PPC 4xx optimizations ${ppc4xx-no}"
  3314. echo "dcbzl available ${dcbzl-no}"
  3315. fi
  3316. if enabled sparc; then
  3317. echo "VIS enabled ${vis-no}"
  3318. fi
  3319. echo "debug symbols ${debug-no}"
  3320. echo "optimize for size ${small-no}"
  3321. echo "optimizations ${optimizations-no}"
  3322. echo "static ${static-no}"
  3323. echo "shared ${shared-no}"
  3324. echo "new filter support ${avfilter-no}"
  3325. echo "network support ${network-no}"
  3326. echo "threading support ${thread_type-no}"
  3327. echo "safe bitstream reader ${safe_bitstream_reader-no}"
  3328. echo "SDL support ${sdl-no}"
  3329. echo "libdxva2 enabled ${dxva2-no}"
  3330. echo "libva enabled ${vaapi-no}"
  3331. echo "libvdpau enabled ${vdpau-no}"
  3332. echo "AVISynth enabled ${avisynth-no}"
  3333. echo "frei0r enabled ${frei0r-no}"
  3334. echo "gnutls enabled ${gnutls-no}"
  3335. echo "libcdio support ${libcdio-no}"
  3336. echo "libdc1394 support ${libdc1394-no}"
  3337. echo "libfaac enabled ${libfaac-no}"
  3338. echo "libfdk-aac enabled ${libfdk_aac-no}"
  3339. echo "libgsm enabled ${libgsm-no}"
  3340. echo "libilbc enabled ${libilbc-no}"
  3341. echo "libmp3lame enabled ${libmp3lame-no}"
  3342. echo "libopencore-amrnb support ${libopencore_amrnb-no}"
  3343. echo "libopencore-amrwb support ${libopencore_amrwb-no}"
  3344. echo "libopencv support ${libopencv-no}"
  3345. echo "libopenjpeg enabled ${libopenjpeg-no}"
  3346. echo "libopus enabled ${libopus-no}"
  3347. echo "libpulse enabled ${libpulse-no}"
  3348. echo "librtmp enabled ${librtmp-no}"
  3349. echo "libschroedinger enabled ${libschroedinger-no}"
  3350. echo "libspeex enabled ${libspeex-no}"
  3351. echo "libtheora enabled ${libtheora-no}"
  3352. echo "libvo-aacenc support ${libvo_aacenc-no}"
  3353. echo "libvo-amrwbenc support ${libvo_amrwbenc-no}"
  3354. echo "libvorbis enabled ${libvorbis-no}"
  3355. echo "libvpx enabled ${libvpx-no}"
  3356. echo "libx264 enabled ${libx264-no}"
  3357. echo "libxavs enabled ${libxavs-no}"
  3358. echo "libxvid enabled ${libxvid-no}"
  3359. echo "openssl enabled ${openssl-no}"
  3360. echo "zlib enabled ${zlib-no}"
  3361. echo "bzlib enabled ${bzlib-no}"
  3362. test -n "$random_seed" &&
  3363. echo "random seed ${random_seed}"
  3364. echo
  3365. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  3366. echo "Enabled ${type}s:"
  3367. eval list=\$$(toupper $type)_LIST
  3368. print_enabled '_*' $list | sort | pr -r -3 -t
  3369. echo
  3370. done
  3371. license="LGPL version 2.1 or later"
  3372. if enabled nonfree; then
  3373. license="nonfree and unredistributable"
  3374. elif enabled gplv3; then
  3375. license="GPL version 3 or later"
  3376. elif enabled lgplv3; then
  3377. license="LGPL version 3 or later"
  3378. elif enabled gpl; then
  3379. license="GPL version 2 or later"
  3380. fi
  3381. echo "License: $license"
  3382. echo "Creating config.mak and config.h..."
  3383. test -e Makefile || $ln_s "$source_path/Makefile" .
  3384. config_files="$TMPH config.mak"
  3385. cat > config.mak <<EOF
  3386. # Automatically generated by configure - do not modify!
  3387. LIBAV_CONFIGURATION=$LIBAV_CONFIGURATION
  3388. prefix=$prefix
  3389. LIBDIR=\$(DESTDIR)$libdir
  3390. SHLIBDIR=\$(DESTDIR)$shlibdir
  3391. INCDIR=\$(DESTDIR)$incdir
  3392. BINDIR=\$(DESTDIR)$bindir
  3393. DATADIR=\$(DESTDIR)$datadir
  3394. MANDIR=\$(DESTDIR)$mandir
  3395. SRC_PATH=$source_path
  3396. CC_IDENT=$cc_ident
  3397. ARCH=$arch
  3398. CC=$cc
  3399. AS=$as
  3400. LD=$ld
  3401. DEPCC=$dep_cc
  3402. DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
  3403. DEPAS=$as
  3404. DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
  3405. YASM=$yasmexe
  3406. DEPYASM=$yasmexe
  3407. AR=$ar
  3408. ARFLAGS=$arflags
  3409. AR_O=$ar_o
  3410. RANLIB=$ranlib
  3411. LN_S=$ln_s
  3412. CPPFLAGS=$CPPFLAGS
  3413. CFLAGS=$CFLAGS
  3414. ASFLAGS=$ASFLAGS
  3415. AS_C=$AS_C
  3416. AS_O=$AS_O
  3417. CC_C=$CC_C
  3418. CC_E=$CC_E
  3419. CC_O=$CC_O
  3420. LD_O=$LD_O
  3421. LD_LIB=$LD_LIB
  3422. LD_PATH=$LD_PATH
  3423. DLLTOOL=$dlltool
  3424. LDFLAGS=$LDFLAGS
  3425. LDFLAGS-avserver=$AVSERVERLDFLAGS
  3426. SHFLAGS=$SHFLAGS
  3427. YASMFLAGS=$YASMFLAGS
  3428. BUILDSUF=$build_suffix
  3429. FULLNAME=$FULLNAME
  3430. LIBPREF=$LIBPREF
  3431. LIBSUF=$LIBSUF
  3432. LIBNAME=$LIBNAME
  3433. SLIBPREF=$SLIBPREF
  3434. SLIBSUF=$SLIBSUF
  3435. EXESUF=$EXESUF
  3436. EXTRA_VERSION=$extra_version
  3437. CCDEP=$CCDEP
  3438. CCDEP_FLAGS=$CCDEP_FLAGS
  3439. ASDEP=$ASDEP
  3440. ASDEP_FLAGS=$ASDEP_FLAGS
  3441. CC_DEPFLAGS=$CC_DEPFLAGS
  3442. AS_DEPFLAGS=$AS_DEPFLAGS
  3443. HOSTCC=$host_cc
  3444. HOSTLD=$host_ld
  3445. HOSTCFLAGS=$host_cflags
  3446. HOSTEXESUF=$HOSTEXESUF
  3447. HOSTLDFLAGS=$host_ldflags
  3448. HOSTLIBS=$host_libs
  3449. DEPHOSTCC=$host_cc
  3450. DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
  3451. HOSTCCDEP=$HOSTCCDEP
  3452. HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
  3453. HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
  3454. HOSTCC_C=$HOSTCC_C
  3455. HOSTCC_O=$HOSTCC_O
  3456. HOSTLD_O=$HOSTLD_O
  3457. TARGET_EXEC=$target_exec
  3458. TARGET_PATH=$target_path
  3459. LIBS-avplay=$sdl_libs
  3460. CFLAGS-avplay=$sdl_cflags
  3461. ZLIB=$($ldflags_filter -lz)
  3462. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  3463. EXTRALIBS=$extralibs
  3464. COMPAT_OBJS=$compat_objs
  3465. EXEOBJS=$exeobjs
  3466. INSTALL=install
  3467. LIBTARGET=${LIBTARGET}
  3468. SLIBNAME=${SLIBNAME}
  3469. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  3470. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  3471. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  3472. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  3473. SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
  3474. SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
  3475. SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
  3476. SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
  3477. SAMPLES:=${samples:-\$(LIBAV_SAMPLES)}
  3478. EOF
  3479. get_version(){
  3480. lcname=lib${1}
  3481. name=$(toupper $lcname)
  3482. file=$source_path/$lcname/version.h
  3483. eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
  3484. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  3485. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  3486. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  3487. }
  3488. map 'get_version $v' $LIBRARY_LIST
  3489. cat > $TMPH <<EOF
  3490. /* Automatically generated by configure - do not modify! */
  3491. #ifndef LIBAV_CONFIG_H
  3492. #define LIBAV_CONFIG_H
  3493. #define LIBAV_CONFIGURATION "$(c_escape $LIBAV_CONFIGURATION)"
  3494. #define LIBAV_LICENSE "$(c_escape $license)"
  3495. #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  3496. #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
  3497. #define restrict $_restrict
  3498. #define EXTERN_PREFIX "${extern_prefix}"
  3499. #define EXTERN_ASM ${extern_prefix}
  3500. #define SLIBSUF "$SLIBSUF"
  3501. EOF
  3502. test -n "$malloc_prefix" &&
  3503. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  3504. if enabled yasm; then
  3505. append config_files $TMPASM
  3506. printf '' >$TMPASM
  3507. fi
  3508. print_config ARCH_ "$config_files" $ARCH_LIST
  3509. print_config HAVE_ "$config_files" $HAVE_LIST
  3510. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  3511. $CONFIG_EXTRA \
  3512. $ALL_COMPONENTS \
  3513. echo "#endif /* LIBAV_CONFIG_H */" >> $TMPH
  3514. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  3515. cp_if_changed $TMPH config.h
  3516. touch .config
  3517. enabled yasm && cp_if_changed $TMPASM config.asm
  3518. cat > $TMPH <<EOF
  3519. /* Generated by ffconf */
  3520. #ifndef AVUTIL_AVCONFIG_H
  3521. #define AVUTIL_AVCONFIG_H
  3522. EOF
  3523. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  3524. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  3525. cp_if_changed $TMPH libavutil/avconfig.h
  3526. test -n "$WARNINGS" && printf "\n$WARNINGS"
  3527. # build pkg-config files
  3528. pkgconfig_generate(){
  3529. name=$1
  3530. shortname=${name#lib}${build_suffix}
  3531. comment=$2
  3532. version=$3
  3533. libs=$4
  3534. requires=$5
  3535. enabled ${name#lib} || return 0
  3536. mkdir -p $name
  3537. cat <<EOF > $name/$name.pc
  3538. prefix=$prefix
  3539. exec_prefix=\${prefix}
  3540. libdir=$libdir
  3541. includedir=$incdir
  3542. Name: $name
  3543. Description: $comment
  3544. Version: $version
  3545. Requires: $(enabled shared || echo $requires)
  3546. Requires.private: $(enabled shared && echo $requires)
  3547. Conflicts:
  3548. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  3549. Libs.private: $(enabled shared && echo $libs)
  3550. Cflags: -I\${includedir}
  3551. EOF
  3552. cat <<EOF > $name/$name-uninstalled.pc
  3553. prefix=
  3554. exec_prefix=
  3555. libdir=\${pcfiledir}
  3556. includedir=${source_path}
  3557. Name: $name
  3558. Description: $comment
  3559. Version: $version
  3560. Requires: $requires
  3561. Conflicts:
  3562. Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
  3563. Cflags: -I\${includedir}
  3564. EOF
  3565. }
  3566. pkgconfig_generate libavutil "Libav utility library" "$LIBAVUTIL_VERSION" "$LIBM"
  3567. pkgconfig_generate libavcodec "Libav codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3568. pkgconfig_generate libavformat "Libav container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  3569. pkgconfig_generate libavdevice "Libav device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
  3570. pkgconfig_generate libavfilter "Libav video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3571. pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3572. pkgconfig_generate libswscale "Libav image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"