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.

3456 lines
102KB

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