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.

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