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.

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