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.

3415 lines
101KB

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