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.

3897 lines
113KB

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