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.

3839 lines
112KB

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