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.

3445 lines
101KB

  1. #!/bin/sh
  2. #
  3. # Libav configure script
  4. #
  5. # Copyright (c) 2000-2002 Fabrice Bellard
  6. # Copyright (c) 2005-2008 Diego Biurrun
  7. # Copyright (c) 2005-2008 Mans Rullgard
  8. #
  9. # Prevent locale nonsense from breaking basic text processing.
  10. LC_ALL=C
  11. export LC_ALL
  12. # make sure we are running under a compatible shell
  13. # try to make this part work with most shells
  14. try_exec(){
  15. echo "Trying shell $1"
  16. type "$1" > /dev/null 2>&1 && exec "$@"
  17. }
  18. unset foo
  19. (: ${foo%%bar}) 2> /dev/null
  20. E1="$?"
  21. (: ${foo?}) 2> /dev/null
  22. E2="$?"
  23. if test "$E1" != 0 || test "$E2" = 0; then
  24. echo "Broken shell detected. Trying alternatives."
  25. export FF_CONF_EXEC
  26. if test "0$FF_CONF_EXEC" -lt 1; then
  27. FF_CONF_EXEC=1
  28. try_exec bash "$0" "$@"
  29. fi
  30. if test "0$FF_CONF_EXEC" -lt 2; then
  31. FF_CONF_EXEC=2
  32. try_exec ksh "$0" "$@"
  33. fi
  34. if test "0$FF_CONF_EXEC" -lt 3; then
  35. FF_CONF_EXEC=3
  36. try_exec /usr/xpg4/bin/sh "$0" "$@"
  37. fi
  38. echo "No compatible shell script interpreter found."
  39. echo "This configure script requires a POSIX-compatible shell"
  40. echo "such as bash or ksh."
  41. echo "THIS IS NOT A BUG IN LIBAV, DO NOT REPORT IT AS SUCH."
  42. echo "Instead, install a working POSIX-compatible shell."
  43. echo "Disabling this configure test will create a broken Libav."
  44. if test "$BASH_VERSION" = '2.04.0(1)-release'; then
  45. echo "This bash version ($BASH_VERSION) is broken on your platform."
  46. echo "Upgrade to a later version if available."
  47. fi
  48. exit 1
  49. fi
  50. show_help(){
  51. cat <<EOF
  52. Usage: configure [options]
  53. Options: [defaults in brackets after descriptions]
  54. Standard options:
  55. --help print this message
  56. --logfile=FILE log tests and output to FILE [config.log]
  57. --disable-logging do not log configure debug information
  58. --prefix=PREFIX install in PREFIX [$prefix]
  59. --bindir=DIR install binaries in DIR [PREFIX/bin]
  60. --datadir=DIR install data files in DIR [PREFIX/share/ffmpeg]
  61. --libdir=DIR install libs in DIR [PREFIX/lib]
  62. --shlibdir=DIR install shared libs in DIR [PREFIX/lib]
  63. --incdir=DIR install includes in DIR [PREFIX/include]
  64. --mandir=DIR install man page in DIR [PREFIX/share/man]
  65. Configuration options:
  66. --disable-static do not build static libraries [no]
  67. --enable-shared build shared libraries [no]
  68. --enable-gpl allow use of GPL code, the resulting libs
  69. and binaries will be under GPL [no]
  70. --enable-version3 upgrade (L)GPL to version 3 [no]
  71. --enable-nonfree allow use of nonfree code, the resulting libs
  72. and binaries will be unredistributable [no]
  73. --disable-doc do not build documentation
  74. --disable-ffmpeg disable ffmpeg build
  75. --disable-ffplay disable ffplay build
  76. --disable-ffprobe disable ffprobe build
  77. --disable-ffserver disable ffserver build
  78. --disable-avdevice disable libavdevice build
  79. --disable-avcodec disable libavcodec build
  80. --disable-avformat disable libavformat build
  81. --disable-swscale disable libswscale build
  82. --enable-postproc enable GPLed postprocessing support [no]
  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. network
  852. nonfree
  853. pic
  854. postproc
  855. rdft
  856. rtpdec
  857. runtime_cpudetect
  858. shared
  859. sinewin
  860. small
  861. sram
  862. static
  863. swscale
  864. swscale_alpha
  865. vaapi
  866. vdpau
  867. version3
  868. x11grab
  869. zlib
  870. "
  871. THREADS_LIST='
  872. pthreads
  873. w32threads
  874. '
  875. ARCH_LIST='
  876. alpha
  877. arm
  878. avr32
  879. avr32_ap
  880. avr32_uc
  881. bfin
  882. ia64
  883. m68k
  884. mips
  885. mips64
  886. parisc
  887. ppc
  888. ppc64
  889. s390
  890. sh4
  891. sparc
  892. sparc64
  893. tomi
  894. x86
  895. x86_32
  896. x86_64
  897. '
  898. ARCH_EXT_LIST='
  899. altivec
  900. amd3dnow
  901. amd3dnowext
  902. armv5te
  903. armv6
  904. armv6t2
  905. armvfp
  906. avx
  907. iwmmxt
  908. mmi
  909. mmx
  910. mmx2
  911. neon
  912. ppc4xx
  913. sse
  914. ssse3
  915. vis
  916. '
  917. HAVE_LIST_PUB='
  918. bigendian
  919. fast_unaligned
  920. '
  921. HAVE_LIST="
  922. $ARCH_EXT_LIST
  923. $HAVE_LIST_PUB
  924. $THREADS_LIST
  925. aligned_stack
  926. alsa_asoundlib_h
  927. altivec_h
  928. arpa_inet_h
  929. attribute_may_alias
  930. attribute_packed
  931. bswap
  932. closesocket
  933. cmov
  934. dcbzl
  935. dev_bktr_ioctl_bt848_h
  936. dev_bktr_ioctl_meteor_h
  937. dev_ic_bt8xx_h
  938. dev_video_meteor_ioctl_meteor_h
  939. dev_video_bktr_ioctl_bt848_h
  940. dlfcn_h
  941. dlopen
  942. dos_paths
  943. ebp_available
  944. ebx_available
  945. exp2
  946. exp2f
  947. fast_64bit
  948. fast_clz
  949. fast_cmov
  950. fcntl
  951. fork
  952. getaddrinfo
  953. gethrtime
  954. GetProcessMemoryInfo
  955. GetProcessTimes
  956. getrusage
  957. gnu_as
  958. struct_rusage_ru_maxrss
  959. ibm_asm
  960. inet_aton
  961. inline_asm
  962. isatty
  963. kbhit
  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. # decoders / encoders / hardware accelerators
  1115. aac_decoder_select="mdct sinewin"
  1116. aac_encoder_select="mdct sinewin"
  1117. aac_latm_decoder_select="aac_decoder aac_latm_parser"
  1118. ac3_decoder_select="mdct ac3dsp ac3_parser"
  1119. ac3_encoder_select="mdct ac3dsp"
  1120. ac3_fixed_encoder_select="mdct ac3dsp"
  1121. alac_encoder_select="lpc"
  1122. amrnb_decoder_select="lsp"
  1123. amrwb_decoder_select="lsp"
  1124. atrac1_decoder_select="mdct sinewin"
  1125. atrac3_decoder_select="mdct"
  1126. binkaudio_dct_decoder_select="mdct rdft dct sinewin"
  1127. binkaudio_rdft_decoder_select="mdct rdft sinewin"
  1128. cavs_decoder_select="golomb"
  1129. cook_decoder_select="mdct sinewin"
  1130. cscd_decoder_suggest="zlib"
  1131. dca_decoder_select="mdct"
  1132. dnxhd_encoder_select="aandct"
  1133. dxa_decoder_select="zlib"
  1134. eac3_decoder_select="ac3_decoder"
  1135. eamad_decoder_select="aandct"
  1136. eatgq_decoder_select="aandct"
  1137. eatqi_decoder_select="aandct"
  1138. ffv1_decoder_select="golomb"
  1139. flac_decoder_select="golomb"
  1140. flac_encoder_select="golomb lpc"
  1141. flashsv_decoder_select="zlib"
  1142. flashsv_encoder_select="zlib"
  1143. flv_decoder_select="h263_decoder"
  1144. flv_encoder_select="h263_encoder"
  1145. fraps_decoder_select="huffman"
  1146. h261_encoder_select="aandct"
  1147. h263_decoder_select="h263_parser"
  1148. h263_encoder_select="aandct"
  1149. h263_vaapi_hwaccel_select="vaapi h263_decoder"
  1150. h263i_decoder_select="h263_decoder"
  1151. h263p_encoder_select="h263_encoder"
  1152. h264_decoder_select="golomb h264dsp h264pred"
  1153. h264_dxva2_hwaccel_deps="dxva2api_h"
  1154. h264_dxva2_hwaccel_select="dxva2 h264_decoder"
  1155. h264_vaapi_hwaccel_select="vaapi"
  1156. h264_vdpau_decoder_select="vdpau h264_decoder"
  1157. imc_decoder_select="fft mdct sinewin"
  1158. jpegls_decoder_select="golomb"
  1159. jpegls_encoder_select="golomb"
  1160. ljpeg_encoder_select="aandct"
  1161. loco_decoder_select="golomb"
  1162. mjpeg_encoder_select="aandct"
  1163. mlp_decoder_select="mlp_parser"
  1164. mp1float_decoder_select="dct"
  1165. mp2float_decoder_select="dct"
  1166. mp3adufloat_decoder_select="dct"
  1167. mp3float_decoder_select="dct"
  1168. mp3on4float_decoder_select="dct"
  1169. mpeg1video_encoder_select="aandct"
  1170. mpeg2video_encoder_select="aandct"
  1171. mpeg4_decoder_select="h263_decoder mpeg4video_parser"
  1172. mpeg4_encoder_select="h263_encoder"
  1173. mpeg_vdpau_decoder_select="vdpau mpegvideo_decoder"
  1174. mpeg1_vdpau_decoder_select="vdpau mpeg1video_decoder"
  1175. mpeg2_dxva2_hwaccel_deps="dxva2api_h"
  1176. mpeg2_dxva2_hwaccel_select="dxva2 mpeg2video_decoder"
  1177. mpeg2_vaapi_hwaccel_select="vaapi mpeg2video_decoder"
  1178. mpeg4_vaapi_hwaccel_select="vaapi mpeg4_decoder"
  1179. mpeg4_vdpau_decoder_select="vdpau mpeg4_decoder"
  1180. mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
  1181. mpeg_xvmc_decoder_select="mpegvideo_decoder"
  1182. msmpeg4v1_decoder_select="h263_decoder"
  1183. msmpeg4v1_encoder_select="h263_encoder"
  1184. msmpeg4v2_decoder_select="h263_decoder"
  1185. msmpeg4v2_encoder_select="h263_encoder"
  1186. msmpeg4v3_decoder_select="h263_decoder"
  1187. msmpeg4v3_encoder_select="h263_encoder"
  1188. nellymoser_decoder_select="mdct sinewin"
  1189. nellymoser_encoder_select="mdct sinewin"
  1190. png_decoder_select="zlib"
  1191. png_encoder_select="zlib"
  1192. qcelp_decoder_select="lsp"
  1193. qdm2_decoder_select="mdct rdft"
  1194. ra_144_encoder_select="lpc"
  1195. rv10_decoder_select="h263_decoder"
  1196. rv10_encoder_select="h263_encoder"
  1197. rv20_decoder_select="h263_decoder"
  1198. rv20_encoder_select="h263_encoder"
  1199. rv30_decoder_select="golomb h264pred"
  1200. rv40_decoder_select="golomb h264pred"
  1201. shorten_decoder_select="golomb"
  1202. sipr_decoder_select="lsp"
  1203. snow_decoder_select="dwt"
  1204. snow_encoder_select="aandct dwt"
  1205. svq1_encoder_select="aandct"
  1206. svq3_decoder_select="golomb h264dsp h264pred"
  1207. svq3_decoder_suggest="zlib"
  1208. theora_decoder_select="vp3_decoder"
  1209. tiff_decoder_suggest="zlib"
  1210. tiff_encoder_suggest="zlib"
  1211. truehd_decoder_select="mlp_decoder"
  1212. tscc_decoder_select="zlib"
  1213. twinvq_decoder_select="mdct lsp sinewin"
  1214. vc1_decoder_select="h263_decoder"
  1215. vc1_dxva2_hwaccel_deps="dxva2api_h DXVA_PictureParameters_wDecodedPictureIndex"
  1216. vc1_dxva2_hwaccel_select="dxva2 vc1_decoder"
  1217. vc1_vaapi_hwaccel_select="vaapi vc1_decoder"
  1218. vc1_vdpau_decoder_select="vdpau vc1_decoder"
  1219. vorbis_decoder_select="mdct"
  1220. vorbis_encoder_select="mdct"
  1221. vp6_decoder_select="huffman"
  1222. vp6a_decoder_select="vp6_decoder"
  1223. vp6f_decoder_select="vp6_decoder"
  1224. vp8_decoder_select="h264pred"
  1225. wmapro_decoder_select="mdct sinewin"
  1226. wmav1_decoder_select="mdct sinewin"
  1227. wmav1_encoder_select="mdct sinewin"
  1228. wmav2_decoder_select="mdct sinewin"
  1229. wmav2_encoder_select="mdct sinewin"
  1230. wmavoice_decoder_select="lsp rdft dct mdct sinewin"
  1231. wmv1_decoder_select="h263_decoder"
  1232. wmv1_encoder_select="h263_encoder"
  1233. wmv2_decoder_select="h263_decoder"
  1234. wmv2_encoder_select="h263_encoder"
  1235. wmv3_decoder_select="vc1_decoder"
  1236. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  1237. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  1238. wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
  1239. zlib_decoder_select="zlib"
  1240. zlib_encoder_select="zlib"
  1241. zmbv_decoder_select="zlib"
  1242. zmbv_encoder_select="zlib"
  1243. vaapi_deps="va_va_h"
  1244. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  1245. # parsers
  1246. h264_parser_select="golomb h264dsp h264pred"
  1247. # external libraries
  1248. libdirac_decoder_deps="libdirac !libschroedinger"
  1249. libdirac_encoder_deps="libdirac"
  1250. libfaac_encoder_deps="libfaac"
  1251. libgsm_decoder_deps="libgsm"
  1252. libgsm_encoder_deps="libgsm"
  1253. libgsm_ms_decoder_deps="libgsm"
  1254. libgsm_ms_encoder_deps="libgsm"
  1255. libmp3lame_encoder_deps="libmp3lame"
  1256. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  1257. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  1258. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  1259. libopenjpeg_decoder_deps="libopenjpeg"
  1260. libschroedinger_decoder_deps="libschroedinger"
  1261. libschroedinger_encoder_deps="libschroedinger"
  1262. libspeex_decoder_deps="libspeex"
  1263. libtheora_encoder_deps="libtheora"
  1264. libvo_aacenc_encoder_deps="libvo_aacenc"
  1265. libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
  1266. libvorbis_encoder_deps="libvorbis"
  1267. libvpx_decoder_deps="libvpx"
  1268. libvpx_encoder_deps="libvpx"
  1269. libx264_encoder_deps="libx264"
  1270. libxavs_encoder_deps="libxavs"
  1271. libxvid_encoder_deps="libxvid"
  1272. # demuxers / muxers
  1273. ac3_demuxer_select="ac3_parser"
  1274. asf_stream_muxer_select="asf_muxer"
  1275. avisynth_demuxer_deps="avisynth"
  1276. dirac_demuxer_select="dirac_parser"
  1277. eac3_demuxer_select="ac3_parser"
  1278. flac_demuxer_select="flac_parser"
  1279. ipod_muxer_select="mov_muxer"
  1280. libnut_demuxer_deps="libnut"
  1281. libnut_muxer_deps="libnut"
  1282. matroska_audio_muxer_select="matroska_muxer"
  1283. matroska_demuxer_suggest="zlib bzlib"
  1284. mov_demuxer_suggest="zlib"
  1285. mp3_demuxer_select="mpegaudio_parser"
  1286. mp4_muxer_select="mov_muxer"
  1287. mpegtsraw_demuxer_select="mpegts_demuxer"
  1288. mxf_d10_muxer_select="mxf_muxer"
  1289. ogg_demuxer_select="golomb"
  1290. psp_muxer_select="mov_muxer"
  1291. rtp_demuxer_select="sdp_demuxer"
  1292. rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
  1293. rtsp_demuxer_select="http_protocol rtpdec"
  1294. rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol"
  1295. sap_demuxer_select="sdp_demuxer"
  1296. sap_muxer_select="rtp_muxer rtp_protocol"
  1297. sdp_demuxer_select="rtpdec"
  1298. spdif_muxer_select="aac_parser"
  1299. tg2_muxer_select="mov_muxer"
  1300. tgp_muxer_select="mov_muxer"
  1301. w64_demuxer_deps="wav_demuxer"
  1302. # indevs / outdevs
  1303. alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  1304. alsa_outdev_deps="alsa_asoundlib_h"
  1305. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  1306. dv1394_indev_deps="dv1394 dv_demuxer"
  1307. fbdev_indev_deps="linux_fb_h"
  1308. jack_indev_deps="jack_jack_h"
  1309. libdc1394_indev_deps="libdc1394"
  1310. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  1311. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  1312. sndio_indev_deps="sndio_h"
  1313. sndio_outdev_deps="sndio_h"
  1314. v4l_indev_deps="linux_videodev_h"
  1315. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  1316. vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
  1317. vfwcap_indev_extralibs="-lavicap32"
  1318. x11_grab_device_indev_deps="x11grab XShmCreateImage"
  1319. x11_grab_device_indev_extralibs="-lX11 -lXext -lXfixes"
  1320. # protocols
  1321. gopher_protocol_deps="network"
  1322. http_protocol_deps="network"
  1323. http_protocol_select="tcp_protocol"
  1324. mmsh_protocol_select="http_protocol"
  1325. mmst_protocol_deps="network"
  1326. rtmp_protocol_select="tcp_protocol"
  1327. rtp_protocol_select="udp_protocol"
  1328. tcp_protocol_deps="network"
  1329. udp_protocol_deps="network"
  1330. # filters
  1331. blackframe_filter_deps="gpl"
  1332. cropdetect_filter_deps="gpl"
  1333. drawtext_filter_deps="libfreetype"
  1334. frei0r_filter_deps="frei0r dlopen strtok_r"
  1335. frei0r_src_filter_deps="frei0r dlopen strtok_r"
  1336. hqdn3d_filter_deps="gpl"
  1337. scale_filter_deps="swscale"
  1338. ocv_filter_deps="libopencv"
  1339. yadif_filter_deps="gpl"
  1340. # libraries
  1341. avdevice_deps="avcodec avformat"
  1342. avformat_deps="avcodec"
  1343. # programs
  1344. ffmpeg_deps="avcodec avformat swscale"
  1345. ffmpeg_select="buffer_filter"
  1346. ffplay_deps="avcodec avformat swscale sdl"
  1347. ffplay_select="rdft"
  1348. ffprobe_deps="avcodec avformat"
  1349. ffserver_deps="avformat ffm_muxer fork rtp_protocol rtsp_demuxer"
  1350. ffserver_extralibs='$ldl'
  1351. doc_deps="texi2html"
  1352. # tests
  1353. test_deps(){
  1354. suf1=$1
  1355. suf2=$2
  1356. shift 2
  1357. for v; do
  1358. dep=${v%=*}
  1359. tests=${v#*=}
  1360. for name in ${tests}; do
  1361. eval ${name}_test_deps="'${dep}$suf1 ${dep}$suf2'"
  1362. done
  1363. done
  1364. }
  1365. set_ne_test_deps(){
  1366. eval ${1}_be_test_deps="bigendian"
  1367. eval ${1}_le_test_deps="!bigendian"
  1368. }
  1369. test_deps _encoder _decoder \
  1370. adpcm_g726=g726 \
  1371. adpcm_ima_qt \
  1372. adpcm_ima_wav \
  1373. adpcm_ms \
  1374. adpcm_swf \
  1375. adpcm_yamaha=adpcm_yam \
  1376. alac \
  1377. asv1 \
  1378. asv2 \
  1379. bmp \
  1380. dnxhd="dnxhd_1080i dnxhd_720p dnxhd_720p_rd" \
  1381. dvvideo="dv dv50" \
  1382. ffv1 \
  1383. flac \
  1384. flashsv \
  1385. flv \
  1386. gif \
  1387. h261 \
  1388. h263="h263 h263p" \
  1389. huffyuv \
  1390. jpegls \
  1391. mjpeg="jpg mjpeg ljpeg" \
  1392. mp2 \
  1393. mpeg1video="mpeg mpeg1b" \
  1394. mpeg2video="mpeg2 mpeg2thread" \
  1395. mpeg4="mpeg4 mpeg4adv mpeg4nr mpeg4thread error rc" \
  1396. msmpeg4v3=msmpeg4 \
  1397. msmpeg4v2 \
  1398. pbm=pbmpipe \
  1399. pcx \
  1400. pgm="pgm pgmpipe" \
  1401. png \
  1402. ppm="ppm ppmpipe" \
  1403. rawvideo="rgb yuv" \
  1404. roq \
  1405. rv10 \
  1406. rv20 \
  1407. sgi \
  1408. snow="snow snowll" \
  1409. svq1 \
  1410. targa=tga \
  1411. tiff \
  1412. wmav1 \
  1413. wmav2 \
  1414. wmv1 \
  1415. wmv2 \
  1416. test_deps _muxer _demuxer \
  1417. aiff \
  1418. pcm_alaw=alaw \
  1419. asf \
  1420. au \
  1421. avi \
  1422. dv=dv_fmt \
  1423. ffm \
  1424. flv=flv_fmt \
  1425. gxf \
  1426. matroska=mkv \
  1427. mmf \
  1428. mov \
  1429. pcm_mulaw=mulaw \
  1430. mxf \
  1431. nut \
  1432. ogg \
  1433. rawvideo=pixfmt \
  1434. rm \
  1435. swf \
  1436. mpegts=ts \
  1437. voc \
  1438. wav \
  1439. yuv4mpegpipe=yuv4mpeg \
  1440. ac3_fixed_test_deps="ac3_fixed_encoder ac3_decoder rm_muxer rm_demuxer"
  1441. mpg_test_deps="mpeg1system_muxer mpegps_demuxer"
  1442. set_ne_test_deps pixdesc
  1443. set_ne_test_deps pixfmts_copy
  1444. set_ne_test_deps pixfmts_crop
  1445. set_ne_test_deps pixfmts_hflip
  1446. set_ne_test_deps pixfmts_null
  1447. set_ne_test_deps pixfmts_pad
  1448. set_ne_test_deps pixfmts_scale
  1449. set_ne_test_deps pixfmts_vflip
  1450. # default parameters
  1451. logfile="config.log"
  1452. # installation paths
  1453. prefix_default="/usr/local"
  1454. bindir_default='${prefix}/bin'
  1455. datadir_default='${prefix}/share/ffmpeg'
  1456. incdir_default='${prefix}/include'
  1457. libdir_default='${prefix}/lib'
  1458. mandir_default='${prefix}/share/man'
  1459. shlibdir_default="$libdir_default"
  1460. # toolchain
  1461. ar_default="ar"
  1462. cc_default="gcc"
  1463. cc_version=\"unknown\"
  1464. host_cc_default="gcc"
  1465. ln_s="ln -sf"
  1466. nm_default="nm"
  1467. objformat="elf"
  1468. pkg_config_default=pkg-config
  1469. ranlib="ranlib"
  1470. yasmexe="yasm"
  1471. nogas=":"
  1472. nm_opts='-g'
  1473. # machine
  1474. arch_default=$(uname -m)
  1475. cpu="generic"
  1476. # OS
  1477. target_os_default=$(tolower $(uname -s))
  1478. host_os=$target_os_default
  1479. # configurable options
  1480. enable avcodec
  1481. enable avdevice
  1482. enable avfilter
  1483. enable avformat
  1484. enable avutil
  1485. enable asm
  1486. enable debug
  1487. enable doc
  1488. enable fastdiv
  1489. enable ffmpeg
  1490. enable ffplay
  1491. enable ffprobe
  1492. enable ffserver
  1493. enable network
  1494. enable optimizations
  1495. enable protocols
  1496. enable static
  1497. enable swscale
  1498. enable swscale_alpha
  1499. # build settings
  1500. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1501. FFSERVERLDFLAGS=-Wl,-E
  1502. LIBPREF="lib"
  1503. LIBSUF=".a"
  1504. FULLNAME='$(NAME)$(BUILDSUF)'
  1505. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1506. SLIBPREF="lib"
  1507. SLIBSUF=".so"
  1508. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1509. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  1510. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  1511. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  1512. CC_O='-o $@'
  1513. host_cflags='-D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112 -O3 -g -Wall'
  1514. host_libs='-lm'
  1515. target_path='$(CURDIR)'
  1516. # since the object filename is not given with the -MM flag, the compiler
  1517. # is only able to print the basename, and we must add the path ourselves
  1518. DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  1519. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -MM'
  1520. # find source path
  1521. source_path="$(dirname "$0")"
  1522. enable source_path_used
  1523. if test -f configure; then
  1524. source_path="$(pwd)"
  1525. disable source_path_used
  1526. else
  1527. source_path="$(cd "$source_path"; pwd)"
  1528. echo "$source_path" | grep -q '[[:blank:]]' &&
  1529. die "Out of tree builds are impossible with whitespace in source path."
  1530. test -e "$source_path/config.h" &&
  1531. die "Out of tree builds are impossible with config.h in source dir."
  1532. fi
  1533. for v in "$@"; do
  1534. r=${v#*=}
  1535. l=${v%"$r"}
  1536. r=$(sh_quote "$r")
  1537. LIBAV_CONFIGURATION="${LIBAV_CONFIGURATION# } ${l}${r}"
  1538. done
  1539. find_things(){
  1540. thing=$1
  1541. pattern=$2
  1542. file=$source_path/$3
  1543. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  1544. }
  1545. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  1546. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  1547. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  1548. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  1549. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  1550. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  1551. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  1552. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  1553. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  1554. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  1555. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  1556. find_tests(){
  1557. map "echo ${2}\${v}_test" $(ls "$source_path"/tests/ref/$1 | grep -v '[^-a-z0-9_]')
  1558. }
  1559. ACODEC_TESTS=$(find_tests acodec)
  1560. VCODEC_TESTS=$(find_tests vsynth1)
  1561. LAVF_TESTS=$(find_tests lavf)
  1562. LAVFI_TESTS=$(find_tests lavfi)
  1563. SEEK_TESTS=$(find_tests seek seek_)
  1564. pcm_test_deps=$(map 'echo ${v%_*}_decoder $v' $(filter pcm_* $ENCODER_LIST))
  1565. for n in $COMPONENT_LIST; do
  1566. v=$(toupper ${n%s})_LIST
  1567. eval enable \$$v
  1568. eval ${n}_if_any="\$$v"
  1569. done
  1570. enable $ARCH_EXT_LIST $ACODEC_TESTS $VCODEC_TESTS $LAVF_TESTS $LAVFI_TESTS $SEEK_TESTS
  1571. die_unknown(){
  1572. echo "Unknown option \"$1\"."
  1573. echo "See $0 --help for available options."
  1574. exit 1
  1575. }
  1576. show_list() {
  1577. suffix=_$1
  1578. shift
  1579. echo $* | sed s/$suffix//g | tr ' ' '\n' | sort | pr -3 -t
  1580. exit 0
  1581. }
  1582. for opt do
  1583. optval="${opt#*=}"
  1584. case "$opt" in
  1585. --extra-ldflags=*) add_ldflags $optval
  1586. ;;
  1587. --extra-libs=*) add_extralibs $optval
  1588. ;;
  1589. --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
  1590. ;;
  1591. --enable-debug=*) debuglevel="$optval"
  1592. ;;
  1593. --disable-everything)
  1594. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  1595. ;;
  1596. --enable-*=*|--disable-*=*)
  1597. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  1598. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  1599. eval list=\$$(toupper $thing)_LIST
  1600. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  1601. $action $(filter "$name" $list)
  1602. ;;
  1603. --enable-?*|--disable-?*)
  1604. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  1605. if is_in $option $COMPONENT_LIST; then
  1606. test $action = disable && action=unset
  1607. eval $action \$$(toupper ${option%s})_LIST
  1608. elif is_in $option $CMDLINE_SELECT; then
  1609. $action $option
  1610. else
  1611. die_unknown $opt
  1612. fi
  1613. ;;
  1614. --list-*)
  1615. NAME="${opt#--list-}"
  1616. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  1617. NAME=${NAME%s}
  1618. eval show_list $NAME \$$(toupper $NAME)_LIST
  1619. ;;
  1620. --help|-h) show_help
  1621. ;;
  1622. *)
  1623. optname="${opt%%=*}"
  1624. optname="${optname#--}"
  1625. optname=$(echo "$optname" | sed 's/-/_/g')
  1626. if is_in $optname $CMDLINE_SET; then
  1627. eval $optname='$optval'
  1628. elif is_in $optname $CMDLINE_APPEND; then
  1629. append $optname "$optval"
  1630. else
  1631. die_unknown $opt
  1632. fi
  1633. ;;
  1634. esac
  1635. done
  1636. disabled logging && logfile=/dev/null
  1637. echo "# $0 $LIBAV_CONFIGURATION" > $logfile
  1638. set >> $logfile
  1639. test -n "$cross_prefix" && enable cross_compile
  1640. if enabled cross_compile; then
  1641. test -n "$arch" && test -n "$target_os" ||
  1642. die "Must specify target arch and OS when cross-compiling"
  1643. fi
  1644. set_default arch target_os
  1645. ar_default="${cross_prefix}${ar_default}"
  1646. cc_default="${cross_prefix}${cc_default}"
  1647. nm_default="${cross_prefix}${nm_default}"
  1648. pkg_config_default="${cross_prefix}${pkg_config_default}"
  1649. ranlib="${cross_prefix}${ranlib}"
  1650. sysinclude_default="${sysroot}/usr/include"
  1651. set_default cc nm pkg_config sysinclude
  1652. enabled cross_compile || host_cc_default=$cc
  1653. set_default host_cc
  1654. if ! $pkg_config --version >/dev/null 2>&1; then
  1655. warn "$pkg_config not found, library detection may fail."
  1656. pkg_config=false
  1657. fi
  1658. exesuf() {
  1659. case $1 in
  1660. mingw32*|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
  1661. esac
  1662. }
  1663. EXESUF=$(exesuf $target_os)
  1664. HOSTEXESUF=$(exesuf $host_os)
  1665. # set temporary file name
  1666. : ${TMPDIR:=$TEMPDIR}
  1667. : ${TMPDIR:=$TMP}
  1668. : ${TMPDIR:=/tmp}
  1669. if ! check_cmd mktemp -u XXXXXX; then
  1670. # simple replacement for missing mktemp
  1671. # NOT SAFE FOR GENERAL USE
  1672. mktemp(){
  1673. echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
  1674. }
  1675. fi
  1676. tmpfile(){
  1677. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  1678. (set -C; exec > $tmp) 2>/dev/null ||
  1679. die "Unable to create temporary file in $TMPDIR."
  1680. append TMPFILES $tmp
  1681. eval $1=$tmp
  1682. }
  1683. trap 'rm -f -- $TMPFILES' EXIT
  1684. tmpfile TMPC .c
  1685. tmpfile TMPE $EXESUF
  1686. tmpfile TMPH .h
  1687. tmpfile TMPO .o
  1688. tmpfile TMPS .S
  1689. tmpfile TMPV .ver
  1690. tmpfile TMPSH .sh
  1691. tmpfile TMPASM .asm
  1692. unset -f mktemp
  1693. chmod +x $TMPE
  1694. # make sure we can execute files in $TMPDIR
  1695. cat > $TMPSH 2>> $logfile <<EOF
  1696. #! /bin/sh
  1697. EOF
  1698. chmod +x $TMPSH >> $logfile 2>&1
  1699. if ! $TMPSH >> $logfile 2>&1; then
  1700. cat <<EOF
  1701. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  1702. variable to another directory and make sure that it is not mounted noexec.
  1703. EOF
  1704. die "Sanity test failed."
  1705. fi
  1706. filter_cflags=echo
  1707. filter_cppflags=echo
  1708. filter_asflags=echo
  1709. if $cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
  1710. cc_type=llvm_gcc
  1711. cc_version=__VERSION__
  1712. gcc_extra_ver=$(expr "$($cc --version | head -n1)" : '.*\((.*)\)')
  1713. cc_ident="llvm-gcc $($cc -dumpversion) $gcc_extra_ver"
  1714. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1715. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1716. speed_cflags='-O3'
  1717. size_cflags='-Os'
  1718. elif $cc -v 2>&1 | grep -qi ^gcc; then
  1719. cc_type=gcc
  1720. cc_version=__VERSION__
  1721. gcc_version=$($cc --version | head -n1)
  1722. gcc_basever=$($cc -dumpversion)
  1723. gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
  1724. gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
  1725. cc_ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
  1726. if ! $cc -dumpversion | grep -q '^2\.'; then
  1727. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1728. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1729. fi
  1730. speed_cflags='-O3'
  1731. size_cflags='-Os'
  1732. elif $cc --version 2>/dev/null | grep -q Intel; then
  1733. cc_type=icc
  1734. cc_version="AV_STRINGIFY(__INTEL_COMPILER)"
  1735. cc_ident=$($cc --version | head -n1)
  1736. icc_version=$($cc -dumpversion)
  1737. CC_DEPFLAGS='-MMD'
  1738. AS_DEPFLAGS='-MMD'
  1739. speed_cflags='-O3'
  1740. size_cflags='-Os'
  1741. noopt_cflags='-O1'
  1742. elif $cc -v 2>&1 | grep -q xlc; then
  1743. cc_type=xlc
  1744. cc_version="AV_STRINGIFY(__IBMC__)"
  1745. cc_ident=$($cc -qversion 2>/dev/null | head -n1)
  1746. speed_cflags='-O5'
  1747. size_cflags='-O5 -qcompact'
  1748. elif $cc -V 2>/dev/null | grep -q Compaq; then
  1749. cc_type=ccc
  1750. cc_version="AV_STRINGIFY(__DECC_VER)"
  1751. cc_ident=$($cc -V | head -n1 | cut -d' ' -f1-3)
  1752. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -M'
  1753. debuglevel=3
  1754. add_ldflags -Wl,-z,now # calls to libots crash without this
  1755. speed_cflags='-fast'
  1756. size_cflags='-O1'
  1757. elif $cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
  1758. test -d "$sysroot" || die "No valid sysroot specified."
  1759. cc_type=armcc
  1760. cc_version="AV_STRINGIFY(__ARMCC_VERSION)"
  1761. cc_ident=$($cc --vsn | head -n1)
  1762. armcc_conf="$PWD/armcc.conf"
  1763. $cc --arm_linux_configure \
  1764. --arm_linux_config_file="$armcc_conf" \
  1765. --configure_sysroot="$sysroot" \
  1766. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  1767. die "Error creating armcc configuration file."
  1768. $cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
  1769. cc="$cc --arm_linux_config_file=$armcc_conf --translate_gcc"
  1770. as_default="${cross_prefix}gcc"
  1771. CC_DEPFLAGS='-MMD'
  1772. AS_DEPFLAGS='-MMD'
  1773. speed_cflags='-O3'
  1774. size_cflags='-Os'
  1775. filter_asflags="filter_out -W${armcc_opt}*"
  1776. elif $cc -version 2>/dev/null | grep -q TMS470; then
  1777. cc_type=tms470
  1778. cc_version="AV_STRINGIFY(__TI_COMPILER_VERSION__)"
  1779. cc_ident=$($cc -version | head -n1 | tr -s ' ')
  1780. cc="$cc --gcc --abi=eabi -eo=.o -mc -me"
  1781. CC_O='-fr=$(@D)'
  1782. as_default="${cross_prefix}gcc"
  1783. ld_default="${cross_prefix}gcc"
  1784. TMPO=$(basename $TMPC .c).o
  1785. append TMPFILES $TMPO
  1786. add_cflags -D__gnuc_va_list=va_list -D__USER_LABEL_PREFIX__=
  1787. CC_DEPFLAGS='-ppa -ppd=$(@:.o=.d)'
  1788. AS_DEPFLAGS='-MMD'
  1789. speed_cflags='-O3 -mf=5'
  1790. size_cflags='-O3 -mf=2'
  1791. filter_cflags=tms470_flags
  1792. tms470_flags(){
  1793. for flag; do
  1794. case $flag in
  1795. -march=*|-mcpu=*)
  1796. case "${flag#*=}" in
  1797. armv7-a|cortex-a*) echo -mv=7a8 ;;
  1798. armv7-r|cortex-r*) echo -mv=7r4 ;;
  1799. armv7-m|cortex-m*) echo -mv=7m3 ;;
  1800. armv6*|arm11*) echo -mv=6 ;;
  1801. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  1802. echo -mv=5e ;;
  1803. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  1804. esac
  1805. ;;
  1806. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  1807. -mfpu=vfp) echo --float_support=vfpv2 ;;
  1808. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  1809. -msoft-float) echo --float_support=vfplib ;;
  1810. -O[0-3]|-mf=*) echo $flag ;;
  1811. -g) echo -g -mn ;;
  1812. -pds=*) echo $flag ;;
  1813. esac
  1814. done
  1815. }
  1816. elif $cc -v 2>&1 | grep -q clang; then
  1817. cc_type=clang
  1818. $cc -dM -E $TMPC | grep -q __clang_version__ &&
  1819. cc_version=__clang_version__ || cc_version=__VERSION__
  1820. cc_ident=$($cc --version | head -n1)
  1821. CC_DEPFLAGS='-MMD'
  1822. AS_DEPFLAGS='-MMD'
  1823. speed_cflags='-O3'
  1824. size_cflags='-Os'
  1825. elif $cc -V 2>&1 | grep -q Sun; then
  1826. cc_type=suncc
  1827. cc_version="AV_STRINGIFY(__SUNPRO_C)"
  1828. cc_ident=$($cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
  1829. DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  1830. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -xM1'
  1831. speed_cflags='-O5'
  1832. size_cflags='-O5 -xspace'
  1833. filter_cflags=suncc_flags
  1834. suncc_flags(){
  1835. for flag; do
  1836. case $flag in
  1837. -march=*|-mcpu=*)
  1838. case "${flag#*=}" in
  1839. native) echo -xtarget=native ;;
  1840. v9|niagara) echo -xarch=sparc ;;
  1841. ultrasparc) echo -xarch=sparcvis ;;
  1842. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  1843. i586|pentium) echo -xchip=pentium ;;
  1844. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  1845. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  1846. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  1847. pentium4*) echo -xtarget=pentium4 ;;
  1848. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  1849. *-sse3) echo -xarch=sse3 ;;
  1850. core2) echo -xarch=ssse3 -xchip=core2 ;;
  1851. amdfam10|barcelona) echo -xarch=sse4_1 ;;
  1852. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  1853. k8|opteron|athlon64|athlon-fx)
  1854. echo -xarch=sse2a ;;
  1855. athlon*) echo -xarch=pentium_proa ;;
  1856. esac
  1857. ;;
  1858. -std=c99) echo -xc99 ;;
  1859. -fomit-frame-pointer) echo -xregs=frameptr ;;
  1860. -fPIC) echo -KPIC -xcode=pic32 ;;
  1861. -W*,*) echo $flag ;;
  1862. -f*-*|-W*) ;;
  1863. *) echo $flag ;;
  1864. esac
  1865. done
  1866. }
  1867. elif $cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
  1868. cc_type=pathscale
  1869. cc_version=__PATHSCALE__
  1870. cc_ident=$($cc -v 2>&1 | head -n1 | tr -d :)
  1871. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1872. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1873. speed_cflags='-O2'
  1874. size_cflags='-Os'
  1875. elif $cc -v 2>&1 | grep -q Open64; then
  1876. cc_type=open64
  1877. cc_version=__OPEN64__
  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. fi
  1884. test -n "$cc_type" && enable $cc_type ||
  1885. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  1886. : ${as_default:=$cc}
  1887. : ${dep_cc_default:=$cc}
  1888. : ${ld_default:=$cc}
  1889. set_default ar as dep_cc ld
  1890. test -n "$CC_DEPFLAGS" || CCDEP=$DEPEND_CMD
  1891. test -n "$AS_DEPFLAGS" || ASDEP=$DEPEND_CMD
  1892. add_cflags $extra_cflags
  1893. add_asflags $extra_cflags
  1894. if test -n "$sysroot"; then
  1895. case "$cc_type" in
  1896. gcc|llvm_gcc|clang)
  1897. add_cppflags --sysroot="$sysroot"
  1898. add_ldflags --sysroot="$sysroot"
  1899. ;;
  1900. tms470)
  1901. add_cppflags -I"$sysinclude"
  1902. add_ldflags --sysroot="$sysroot"
  1903. ;;
  1904. esac
  1905. fi
  1906. if test "$cpu" = host; then
  1907. enabled cross_compile && die "--cpu=host makes no sense when cross-compiling."
  1908. case "$cc_type" in
  1909. gcc|llvm_gcc)
  1910. check_native(){
  1911. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  1912. sed -n "/$1=/{
  1913. s/.*$1=\\([^ ]*\\).*/\\1/
  1914. p
  1915. q
  1916. }" $TMPE
  1917. }
  1918. cpu=$(check_native -march || check_native -mcpu)
  1919. ;;
  1920. esac
  1921. test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc"
  1922. fi
  1923. # Deal with common $arch aliases
  1924. case "$arch" in
  1925. arm*)
  1926. arch="arm"
  1927. ;;
  1928. mips|mipsel|IP*)
  1929. arch="mips"
  1930. ;;
  1931. mips64*)
  1932. arch="mips"
  1933. subarch="mips64"
  1934. ;;
  1935. parisc|hppa)
  1936. arch="parisc"
  1937. ;;
  1938. parisc64|hppa64)
  1939. arch="parisc"
  1940. subarch="parisc64"
  1941. ;;
  1942. "Power Macintosh"|ppc|powerpc)
  1943. arch="ppc"
  1944. ;;
  1945. ppc64|powerpc64)
  1946. arch="ppc"
  1947. subarch="ppc64"
  1948. ;;
  1949. s390|s390x)
  1950. arch="s390"
  1951. ;;
  1952. sh4|sh)
  1953. arch="sh4"
  1954. ;;
  1955. sun4u|sparc64)
  1956. arch="sparc"
  1957. subarch="sparc64"
  1958. ;;
  1959. i[3-6]86|i86pc|BePC|x86pc|x86_64|amd64)
  1960. arch="x86"
  1961. ;;
  1962. esac
  1963. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  1964. enable $arch
  1965. # Add processor-specific flags
  1966. if test "$cpu" = generic; then
  1967. : do nothing
  1968. elif enabled ppc; then
  1969. case $(tolower $cpu) in
  1970. 601|ppc601|powerpc601)
  1971. cpuflags="-mcpu=601"
  1972. disable altivec
  1973. ;;
  1974. 603*|ppc603*|powerpc603*)
  1975. cpuflags="-mcpu=603"
  1976. disable altivec
  1977. ;;
  1978. 604*|ppc604*|powerpc604*)
  1979. cpuflags="-mcpu=604"
  1980. disable altivec
  1981. ;;
  1982. g3|75*|ppc75*|powerpc75*)
  1983. cpuflags="-mcpu=750 -mpowerpc-gfxopt"
  1984. disable altivec
  1985. ;;
  1986. g4|745*|ppc745*|powerpc745*)
  1987. cpuflags="-mcpu=7450 -mpowerpc-gfxopt"
  1988. ;;
  1989. 74*|ppc74*|powerpc74*)
  1990. cpuflags="-mcpu=7400 -mpowerpc-gfxopt"
  1991. ;;
  1992. g5|970|ppc970|powerpc970|power4*)
  1993. cpuflags="-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
  1994. ;;
  1995. cell)
  1996. cpuflags="-mcpu=cell"
  1997. enable ldbrx
  1998. ;;
  1999. e500v2)
  2000. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  2001. disable altivec
  2002. ;;
  2003. e500)
  2004. cpuflags="-mcpu=8540 -mhard-float"
  2005. disable altivec
  2006. ;;
  2007. esac
  2008. elif enabled x86; then
  2009. case $cpu in
  2010. i[345]86|pentium)
  2011. cpuflags="-march=$cpu"
  2012. disable mmx
  2013. ;;
  2014. # targets that do NOT support conditional mov (cmov)
  2015. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  2016. cpuflags="-march=$cpu"
  2017. disable cmov
  2018. ;;
  2019. # targets that do support conditional mov (cmov)
  2020. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2|amdfam10|barcelona|atom)
  2021. cpuflags="-march=$cpu"
  2022. enable cmov
  2023. enable fast_cmov
  2024. ;;
  2025. # targets that do support conditional mov but on which it's slow
  2026. pentium4|pentium4m|prescott|nocona)
  2027. cpuflags="-march=$cpu"
  2028. enable cmov
  2029. disable fast_cmov
  2030. ;;
  2031. esac
  2032. elif enabled sparc; then
  2033. case $cpu in
  2034. niagara)
  2035. cpuflags="-mcpu=$cpu"
  2036. disable vis
  2037. ;;
  2038. sparc64)
  2039. cpuflags="-mcpu=v9"
  2040. ;;
  2041. esac
  2042. elif enabled arm; then
  2043. case $cpu in
  2044. armv*)
  2045. cpuflags="-march=$cpu"
  2046. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  2047. ;;
  2048. *)
  2049. cpuflags="-mcpu=$cpu"
  2050. case $cpu in
  2051. cortex-a*) subarch=armv7a ;;
  2052. cortex-r*) subarch=armv7r ;;
  2053. cortex-m*) subarch=armv7m ;;
  2054. arm11*) subarch=armv6 ;;
  2055. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  2056. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  2057. esac
  2058. ;;
  2059. esac
  2060. elif enabled alpha; then
  2061. enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
  2062. elif enabled bfin; then
  2063. cpuflags="-mcpu=$cpu"
  2064. elif enabled mips; then
  2065. cpuflags="-march=$cpu"
  2066. elif enabled avr32; then
  2067. case $cpu in
  2068. ap7[02]0[0-2])
  2069. subarch="avr32_ap"
  2070. cpuflags="-mpart=$cpu"
  2071. ;;
  2072. ap)
  2073. subarch="avr32_ap"
  2074. cpuflags="-march=$cpu"
  2075. ;;
  2076. uc3[ab]*)
  2077. subarch="avr32_uc"
  2078. cpuflags="-mcpu=$cpu"
  2079. ;;
  2080. uc)
  2081. subarch="avr32_uc"
  2082. cpuflags="-march=$cpu"
  2083. ;;
  2084. esac
  2085. fi
  2086. add_cflags $cpuflags
  2087. add_asflags $cpuflags
  2088. # compiler sanity check
  2089. check_exec <<EOF
  2090. int main(void){ return 0; }
  2091. EOF
  2092. if test "$?" != 0; then
  2093. echo "$cc is unable to create an executable file."
  2094. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  2095. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  2096. echo "Only do this if you know what cross compiling means."
  2097. fi
  2098. die "C compiler test failed."
  2099. fi
  2100. add_cppflags -D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112
  2101. check_cflags -std=c99
  2102. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  2103. #include <stdlib.h>
  2104. EOF
  2105. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  2106. #include <stdlib.h>
  2107. EOF
  2108. check_host_cflags -std=c99
  2109. case "$arch" in
  2110. alpha|ia64|mips|parisc|sparc)
  2111. spic=$shared
  2112. ;;
  2113. x86)
  2114. subarch="x86_32"
  2115. check_cc <<EOF && subarch="x86_64"
  2116. int test[(int)sizeof(char*) - 7];
  2117. EOF
  2118. if test "$subarch" = "x86_64"; then
  2119. spic=$shared
  2120. fi
  2121. ;;
  2122. esac
  2123. enable $subarch
  2124. enabled spic && enable pic
  2125. # OS specific
  2126. case $target_os in
  2127. haiku)
  2128. prefix_default="/boot/common"
  2129. network_extralibs="-lnetwork"
  2130. host_libs=
  2131. ;;
  2132. sunos)
  2133. FFSERVERLDFLAGS=""
  2134. SHFLAGS='-shared -Wl,-h,$$(@F)'
  2135. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  2136. network_extralibs="-lsocket -lnsl"
  2137. add_cppflags -D__EXTENSIONS__
  2138. nm_opts='-P -g'
  2139. ;;
  2140. netbsd)
  2141. disable symver
  2142. oss_indev_extralibs="-lossaudio"
  2143. oss_outdev_extralibs="-lossaudio"
  2144. add_cppflags -D_XOPEN_SOURCE=600
  2145. ;;
  2146. openbsd)
  2147. enable malloc_aligned
  2148. # On OpenBSD 4.5. the compiler does not use PIC unless
  2149. # explicitly using -fPIC. Libav builds fine without PIC,
  2150. # however the generated executable will not do anything
  2151. # (simply quits with exit-code 1, no crash, no output).
  2152. # Thus explicitly enable PIC here.
  2153. enable pic
  2154. disable symver
  2155. SHFLAGS='-shared'
  2156. oss_indev_extralibs="-lossaudio"
  2157. oss_outdev_extralibs="-lossaudio"
  2158. ;;
  2159. dragonfly)
  2160. enable malloc_aligned
  2161. disable symver
  2162. ;;
  2163. freebsd)
  2164. enable malloc_aligned
  2165. ;;
  2166. bsd/os)
  2167. add_extralibs -lpoll -lgnugetopt
  2168. ;;
  2169. darwin)
  2170. enable malloc_aligned
  2171. gas="gas-preprocessor.pl $cc"
  2172. enabled ppc && add_asflags -force_cpusubtype_ALL
  2173. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  2174. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  2175. add_ldflags -Wl,-dynamic,-search_paths_first
  2176. SLIBSUF=".dylib"
  2177. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  2178. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  2179. FFSERVERLDFLAGS=-Wl,-bind_at_load
  2180. objformat="macho"
  2181. enabled x86_64 && objformat="macho64"
  2182. enabled_any pic shared ||
  2183. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  2184. ;;
  2185. mingw32*)
  2186. if test $target_os = "mingw32ce"; then
  2187. disable network
  2188. else
  2189. target_os=mingw32
  2190. fi
  2191. LIBTARGET=i386
  2192. if enabled x86_64; then
  2193. enable malloc_aligned
  2194. LIBTARGET="i386:x86-64"
  2195. elif enabled arm; then
  2196. LIBTARGET=arm-wince
  2197. fi
  2198. shlibdir_default="$bindir_default"
  2199. SLIBPREF=""
  2200. SLIBSUF=".dll"
  2201. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2202. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2203. SLIB_EXTRA_CMD=-'$(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
  2204. SLIB_INSTALL_EXTRA_CMD='-install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"; \
  2205. install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)"; \
  2206. install -d "$(LIBDIR)"; \
  2207. install -m 644 $(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) "$(LIBDIR)/lib$(SLIBNAME:$(SLIBSUF)=.dll.a)"'
  2208. SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"'
  2209. 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'
  2210. objformat="win32"
  2211. dlltool="${cross_prefix}dlltool"
  2212. enable dos_paths
  2213. check_cflags -fno-common
  2214. check_cpp_condition _mingw.h "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) \
  2215. || (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  2216. die "ERROR: MinGW runtime version must be >= 3.15."
  2217. add_cppflags -U__STRICT_ANSI__
  2218. ;;
  2219. cygwin*)
  2220. target_os=cygwin
  2221. shlibdir_default="$bindir_default"
  2222. SLIBPREF="cyg"
  2223. SLIBSUF=".dll"
  2224. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2225. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2226. SHFLAGS='-shared -Wl,--enable-auto-image-base'
  2227. objformat="win32"
  2228. enable dos_paths
  2229. check_cflags -fno-common
  2230. ;;
  2231. *-dos|freedos|opendos)
  2232. network_extralibs="-lsocket"
  2233. objformat="coff"
  2234. enable dos_paths
  2235. ;;
  2236. linux)
  2237. enable dv1394
  2238. ;;
  2239. irix*)
  2240. target_os=irix
  2241. ranlib="echo ignoring ranlib"
  2242. ;;
  2243. os/2*)
  2244. ln_s="cp -f"
  2245. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
  2246. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  2247. FFSERVERLDFLAGS=""
  2248. LIBSUF="_s.a"
  2249. SLIBPREF=""
  2250. SLIBSUF=".dll"
  2251. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  2252. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  2253. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  2254. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  2255. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  2256. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  2257. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  2258. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  2259. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  2260. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  2261. SLIB_INSTALL_EXTRA_CMD='install -m 644 $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib "$(LIBDIR)"'
  2262. SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.a "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.lib'
  2263. enable dos_paths
  2264. ;;
  2265. gnu/kfreebsd)
  2266. ;;
  2267. gnu)
  2268. ;;
  2269. qnx)
  2270. add_cppflags -D_QNX_SOURCE
  2271. network_extralibs="-lsocket"
  2272. ;;
  2273. symbian)
  2274. SLIBSUF=".dll"
  2275. enable dos_paths
  2276. add_cflags --include=$sysinclude/gcce/gcce.h
  2277. ;;
  2278. none)
  2279. ;;
  2280. *)
  2281. die "Unknown OS '$target_os'."
  2282. ;;
  2283. esac
  2284. echo "config:$arch:$subarch:$cpu:$target_os:$cc_ident:$LIBAV_CONFIGURATION" >config.fate
  2285. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
  2286. set_default $PATHS_LIST
  2287. # we need to build at least one lib type
  2288. if ! enabled_any static shared; then
  2289. cat <<EOF
  2290. At least one library type must be built.
  2291. Specify --enable-static to build the static libraries or --enable-shared to
  2292. build the shared libraries as well. To only build the shared libraries specify
  2293. --disable-static in addition to --enable-shared.
  2294. EOF
  2295. exit 1;
  2296. fi
  2297. disabled static && LIBNAME=""
  2298. die_license_disabled() {
  2299. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  2300. }
  2301. die_license_disabled gpl libx264
  2302. die_license_disabled gpl libxavs
  2303. die_license_disabled gpl libxvid
  2304. die_license_disabled gpl postproc
  2305. die_license_disabled gpl x11grab
  2306. die_license_disabled nonfree libfaac
  2307. die_license_disabled version3 libopencore_amrnb
  2308. die_license_disabled version3 libopencore_amrwb
  2309. die_license_disabled version3 libvo_aacenc
  2310. die_license_disabled version3 libvo_amrwbenc
  2311. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  2312. disabled optimizations || check_cflags -fomit-frame-pointer
  2313. enable_pic() {
  2314. enable pic
  2315. add_cppflags -DPIC
  2316. add_cflags -fPIC
  2317. add_asflags -fPIC
  2318. }
  2319. enabled pic && enable_pic
  2320. check_cc <<EOF || die "Symbol mangling check failed."
  2321. int ff_extern;
  2322. EOF
  2323. sym=$($nm $nm_opts $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  2324. extern_prefix=${sym%%ff_extern*}
  2325. check_cc <<EOF && enable inline_asm
  2326. void foo(void) { __asm__ volatile ("" ::); }
  2327. EOF
  2328. _restrict=
  2329. for restrict_keyword in restrict __restrict__ __restrict; do
  2330. check_cc <<EOF && _restrict=$restrict_keyword && break
  2331. void foo(char * $restrict_keyword p);
  2332. EOF
  2333. done
  2334. check_cc <<EOF && enable attribute_packed
  2335. struct { int x; } __attribute__((packed)) x;
  2336. EOF
  2337. check_cc <<EOF && enable attribute_may_alias
  2338. union { int x; } __attribute__((may_alias)) x;
  2339. EOF
  2340. check_cc <<EOF || die "endian test failed"
  2341. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  2342. EOF
  2343. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  2344. if enabled alpha; then
  2345. check_cflags -mieee
  2346. elif enabled arm; then
  2347. check_cflags -marm
  2348. nogas=die
  2349. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  2350. enable vfp_args
  2351. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
  2352. case "${cross_prefix:-$cc}" in
  2353. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  2354. *) check_ld <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  2355. __asm__ (".eabi_attribute 28, 1");
  2356. int main(void) { return 0; }
  2357. EOF
  2358. esac
  2359. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  2360. fi
  2361. # We have to check if pld is a nop and disable it.
  2362. check_asm pld '"pld [r0]"'
  2363. enabled armv5te && check_asm armv5te '"qadd r0, r0, r0"'
  2364. enabled armv6 && check_asm armv6 '"sadd16 r0, r0, r0"'
  2365. enabled armv6t2 && check_asm armv6t2 '"movt r0, #0"'
  2366. enabled armvfp && check_asm armvfp '"fadds s0, s0, s0"'
  2367. enabled iwmmxt && check_asm iwmmxt '"wunpckelub wr6, wr4"'
  2368. enabled neon && check_asm neon '"vadd.i16 q0, q0, q0"'
  2369. enabled_all armv6t2 shared !pic && enable_pic
  2370. elif enabled mips; then
  2371. check_asm loongson '"dmult.g $1, $2, $3"'
  2372. enabled mmi && check_asm mmi '"lq $2, 0($2)"'
  2373. elif enabled ppc; then
  2374. enable local_aligned_8 local_aligned_16
  2375. check_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  2376. check_asm ibm_asm '"add 0, 0, 0"'
  2377. check_asm ppc4xx '"maclhw r10, r11, r12"'
  2378. check_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  2379. # AltiVec flags: The FSF version of GCC differs from the Apple version
  2380. if enabled altivec; then
  2381. nogas=warn
  2382. check_cflags -maltivec -mabi=altivec &&
  2383. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  2384. check_cflags -faltivec
  2385. # check if our compiler supports Motorola AltiVec C API
  2386. check_cc <<EOF || disable altivec
  2387. $inc_altivec_h
  2388. int main(void) {
  2389. vector signed int v1, v2, v3;
  2390. v1 = vec_add(v2,v3);
  2391. return 0;
  2392. }
  2393. EOF
  2394. # check if our compiler supports braces for vector declarations
  2395. check_cc <<EOF || die "You need a compiler that supports {} in AltiVec vector declarations."
  2396. $inc_altivec_h
  2397. int main (void) { (vector int) {1}; return 0; }
  2398. EOF
  2399. fi
  2400. elif enabled sparc; then
  2401. enabled vis && check_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc &&
  2402. add_cflags -mcpu=ultrasparc -mtune=ultrasparc
  2403. elif enabled x86; then
  2404. enable local_aligned_8 local_aligned_16
  2405. # check whether EBP is available on x86
  2406. # As 'i' is stored on the stack, this program will crash
  2407. # if the base pointer is used to access it because the
  2408. # base pointer is cleared in the inline assembly code.
  2409. check_exec_crash <<EOF && enable ebp_available
  2410. volatile int i=0;
  2411. __asm__ volatile (
  2412. "xorl %%ebp, %%ebp"
  2413. ::: "%ebp");
  2414. return i;
  2415. EOF
  2416. # check whether EBX is available on x86
  2417. check_asm ebx_available '""::"b"(0)' &&
  2418. check_asm ebx_available '"":::"%ebx"'
  2419. # check whether xmm clobbers are supported
  2420. check_asm xmm_clobbers '"":::"%xmm0"'
  2421. # check whether more than 10 operands are supported
  2422. check_cc <<EOF && enable ten_operands
  2423. int main(void) {
  2424. int x=0;
  2425. __asm__ volatile(
  2426. ""
  2427. :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
  2428. );
  2429. return 0;
  2430. }
  2431. EOF
  2432. # check whether binutils is new enough to compile SSSE3/MMX2
  2433. enabled ssse3 && check_asm ssse3 '"pabsw %xmm0, %xmm0"'
  2434. enabled mmx2 && check_asm mmx2 '"pmaxub %mm0, %mm1"'
  2435. check_asm bswap '"bswap %%eax" ::: "%eax"'
  2436. if ! disabled_any asm mmx yasm; then
  2437. if check_cmd $yasmexe --version; then
  2438. enabled x86_64 && yasm_extra="-m amd64"
  2439. yasm_debug="-g dwarf2"
  2440. elif check_cmd nasm -v; then
  2441. yasmexe=nasm
  2442. yasm_debug="-g -F dwarf"
  2443. enabled x86_64 && test "$objformat" = elf && objformat=elf64
  2444. fi
  2445. YASMFLAGS="-f $objformat $yasm_extra"
  2446. enabled pic && append YASMFLAGS "-DPIC"
  2447. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  2448. case "$objformat" in
  2449. elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
  2450. esac
  2451. check_yasm "pextrd [eax], xmm0, 1" && enable yasm ||
  2452. die "yasm not found, use --disable-yasm for a crippled build"
  2453. check_yasm "vpaddw xmm0, xmm0, xmm0" || disable avx
  2454. fi
  2455. case "$cpu" in
  2456. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  2457. disable fast_clz
  2458. ;;
  2459. esac
  2460. fi
  2461. if enabled asm; then
  2462. as=${gas:=$as}
  2463. check_asm gnu_as '".macro m n\n\\n:.int 0\n.endm\nm x"' ||
  2464. $nogas "GNU assembler not found, install gas-preprocessor"
  2465. fi
  2466. check_ldflags -Wl,--as-needed
  2467. if check_func dlopen; then
  2468. ldl=
  2469. elif check_func dlopen -ldl; then
  2470. ldl=-ldl
  2471. fi
  2472. if enabled network; then
  2473. check_type "sys/types.h sys/socket.h" socklen_t
  2474. check_type netdb.h "struct addrinfo"
  2475. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  2476. check_type netinet/in.h "struct sockaddr_in6"
  2477. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  2478. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  2479. # Prefer arpa/inet.h over winsock2
  2480. if check_header arpa/inet.h ; then
  2481. check_func closesocket
  2482. elif check_header winsock2.h ; then
  2483. check_func_headers winsock2.h closesocket -lws2 && \
  2484. network_extralibs="-lws2" || \
  2485. { check_func_headers winsock2.h closesocket -lws2_32 && \
  2486. network_extralibs="-lws2_32"; }
  2487. check_type ws2tcpip.h socklen_t
  2488. check_type ws2tcpip.h "struct addrinfo"
  2489. check_type ws2tcpip.h "struct ipv6_mreq"
  2490. check_type ws2tcpip.h "struct sockaddr_in6"
  2491. check_type ws2tcpip.h "struct sockaddr_storage"
  2492. check_struct winsock2.h "struct sockaddr" sa_len
  2493. else
  2494. disable network
  2495. fi
  2496. fi
  2497. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  2498. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  2499. check_func fcntl
  2500. check_func fork
  2501. check_func getaddrinfo $network_extralibs
  2502. check_func gethrtime
  2503. check_func getrusage
  2504. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  2505. check_func inet_aton $network_extralibs
  2506. check_func isatty
  2507. check_func localtime_r
  2508. check_func ${malloc_prefix}memalign && enable memalign
  2509. check_func mkstemp
  2510. check_func mmap
  2511. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  2512. check_func setrlimit
  2513. check_func strerror_r
  2514. check_func strtok_r
  2515. check_func_headers conio.h kbhit
  2516. check_func_headers io.h setmode
  2517. check_func_headers lzo/lzo1x.h lzo1x_999_compress
  2518. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  2519. check_func_headers windows.h GetProcessTimes
  2520. check_func_headers windows.h MapViewOfFile
  2521. check_func_headers windows.h VirtualAlloc
  2522. check_header dlfcn.h
  2523. check_header dxva2api.h
  2524. check_header malloc.h
  2525. check_header poll.h
  2526. check_header sys/mman.h
  2527. check_header sys/resource.h
  2528. check_header sys/select.h
  2529. check_header vdpau/vdpau.h
  2530. check_header vdpau/vdpau_x11.h
  2531. check_header X11/extensions/XvMClib.h
  2532. check_struct dxva2api.h DXVA_PictureParameters wDecodedPictureIndex
  2533. if ! enabled_any memalign memalign_hack posix_memalign malloc_aligned &&
  2534. enabled_any $need_memalign ; then
  2535. die "Error, no aligned memory allocator but SSE enabled, disable it or use --enable-memalign-hack."
  2536. fi
  2537. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  2538. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  2539. # check for some common methods of building with pthread support
  2540. # do this before the optional library checks as some of them require pthreads
  2541. if ! disabled pthreads && ! enabled w32threads; then
  2542. enable pthreads
  2543. if check_func pthread_create; then
  2544. :
  2545. elif check_func pthread_create -pthread; then
  2546. add_cflags -pthread
  2547. add_extralibs -pthread
  2548. elif check_func pthread_create -pthreads; then
  2549. add_cflags -pthreads
  2550. add_extralibs -pthreads
  2551. elif check_func pthread_create -lpthreadGC2; then
  2552. add_extralibs -lpthreadGC2
  2553. elif ! check_lib pthread.h pthread_create -lpthread; then
  2554. disable pthreads
  2555. fi
  2556. fi
  2557. for thread in $THREADS_LIST; do
  2558. if enabled $thread; then
  2559. test -n "$thread_type" &&
  2560. die "ERROR: Only one thread type must be selected." ||
  2561. thread_type="$thread"
  2562. fi
  2563. done
  2564. check_lib math.h sin -lm && LIBM="-lm"
  2565. enabled vaapi && require vaapi va/va.h vaInitialize -lva
  2566. check_mathfunc exp2
  2567. check_mathfunc exp2f
  2568. check_mathfunc llrint
  2569. check_mathfunc llrintf
  2570. check_mathfunc log2
  2571. check_mathfunc log2f
  2572. check_mathfunc lrint
  2573. check_mathfunc lrintf
  2574. check_mathfunc round
  2575. check_mathfunc roundf
  2576. check_mathfunc trunc
  2577. check_mathfunc truncf
  2578. # these are off by default, so fail if requested and not available
  2579. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
  2580. enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
  2581. enabled libdirac && require_pkg_config dirac \
  2582. "libdirac_decoder/dirac_parser.h libdirac_encoder/dirac_encoder.h" \
  2583. "dirac_decoder_init dirac_encoder_init"
  2584. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  2585. enabled libfreetype && require_pkg_config freetype2 "ft2build.h freetype/freetype.h" FT_Init_FreeType
  2586. enabled libgsm && require libgsm gsm/gsm.h gsm_create -lgsm
  2587. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  2588. enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
  2589. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  2590. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  2591. enabled libopencv && require_pkg_config opencv opencv/cv.h cvCreateImageHeader
  2592. enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
  2593. enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
  2594. enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
  2595. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  2596. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  2597. enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
  2598. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  2599. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  2600. enabled libvpx && {
  2601. enabled libvpx_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
  2602. die "ERROR: libvpx decoder version must be >=0.9.1"; }
  2603. enabled libvpx_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_enc_init_ver -lvpx ||
  2604. die "ERROR: libvpx encoder version must be >=0.9.1"; } }
  2605. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
  2606. { check_cpp_condition x264.h "X264_BUILD >= 99" ||
  2607. die "ERROR: libx264 version must be >= 0.99."; }
  2608. enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
  2609. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  2610. enabled mlib && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib
  2611. # libdc1394 check
  2612. if enabled libdc1394; then
  2613. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  2614. enable libdc1394_2; } ||
  2615. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  2616. enable libdc1394_1; } ||
  2617. die "ERROR: No version of libdc1394 found "
  2618. fi
  2619. if check_pkg_config sdl SDL_version.h SDL_Linked_Version; then
  2620. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  2621. enable sdl &&
  2622. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  2623. fi
  2624. texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
  2625. check_header linux/fb.h
  2626. check_header linux/videodev.h
  2627. check_header linux/videodev2.h
  2628. check_header sys/videoio.h
  2629. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  2630. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  2631. # w32api 3.12 had it defined wrong
  2632. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  2633. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  2634. { check_header dev/bktr/ioctl_meteor.h &&
  2635. check_header dev/bktr/ioctl_bt848.h; } ||
  2636. { check_header machine/ioctl_meteor.h &&
  2637. check_header machine/ioctl_bt848.h; } ||
  2638. { check_header dev/video/meteor/ioctl_meteor.h &&
  2639. check_header dev/video/bktr/ioctl_bt848.h; } ||
  2640. check_header dev/ic/bt8xx.h
  2641. check_header sndio.h
  2642. check_header sys/soundcard.h
  2643. check_header soundcard.h
  2644. enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  2645. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack
  2646. enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
  2647. enabled x11grab &&
  2648. check_header X11/Xlib.h &&
  2649. check_header X11/extensions/XShm.h &&
  2650. check_header X11/extensions/Xfixes.h &&
  2651. check_func XOpenDisplay -lX11 &&
  2652. check_func XShmCreateImage -lX11 -lXext &&
  2653. check_func XFixesGetCursorImage -lX11 -lXext -lXfixes
  2654. if ! disabled vdpau && enabled vdpau_vdpau_h; then
  2655. check_cpp_condition \
  2656. vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  2657. { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." &&
  2658. disable vdpau; }
  2659. fi
  2660. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  2661. # add some useful compiler flags if supported
  2662. check_cflags -Wdeclaration-after-statement
  2663. check_cflags -Wall
  2664. check_cflags -Wno-parentheses
  2665. check_cflags -Wno-switch
  2666. check_cflags -Wdisabled-optimization
  2667. check_cflags -Wpointer-arith
  2668. check_cflags -Wredundant-decls
  2669. check_cflags -Wno-pointer-sign
  2670. check_cflags -Wcast-qual
  2671. check_cflags -Wwrite-strings
  2672. check_cflags -Wtype-limits
  2673. check_cflags -Wundef
  2674. check_cflags -Wmissing-prototypes
  2675. enabled extra_warnings && check_cflags -Winline
  2676. # add some linker flags
  2677. check_ldflags -Wl,--warn-common
  2678. 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'
  2679. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  2680. echo "X{};" > $TMPV
  2681. if test_ldflags -Wl,--version-script,$TMPV; then
  2682. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  2683. check_cc <<EOF && enable symver_asm_label
  2684. void ff_foo(void) __asm__ ("av_foo@VERSION");
  2685. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  2686. EOF
  2687. check_cc <<EOF && enable symver_gnu_asm
  2688. __asm__(".symver ff_foo,av_foo@VERSION");
  2689. void ff_foo(void) {}
  2690. EOF
  2691. fi
  2692. if enabled small; then
  2693. add_cflags $size_cflags
  2694. optimizations="small"
  2695. elif enabled optimizations; then
  2696. add_cflags $speed_cflags
  2697. else
  2698. add_cflags $noopt_cflags
  2699. fi
  2700. check_cflags -fno-math-errno
  2701. check_cflags -fno-signed-zeros
  2702. if enabled icc; then
  2703. # Just warnings, no remarks
  2704. check_cflags -w1
  2705. # -wd: Disable following warnings
  2706. # 144, 167, 556: -Wno-pointer-sign
  2707. # 1292: attribute "foo" ignored
  2708. # 10006: ignoring unknown option -fno-signed-zeros
  2709. # 10148: ignoring unknown option -Wno-parentheses
  2710. # 10156: ignoring option '-W'; no argument required
  2711. check_cflags -wd144,167,556,1292,10006,10148,10156
  2712. # 11030: Warning unknown option --as-needed
  2713. # 10156: ignoring option '-export'; no argument required
  2714. check_ldflags -wd10156,11030
  2715. # Allow to compile with optimizations
  2716. check_ldflags -march=$cpu
  2717. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  2718. enable ebp_available
  2719. if enabled x86_32; then
  2720. test ${icc_version%%.*} -ge 11 && \
  2721. check_cflags -falign-stack=maintain-16-byte || \
  2722. disable aligned_stack
  2723. fi
  2724. elif enabled ccc; then
  2725. # disable some annoying warnings
  2726. add_cflags -msg_disable cvtu32to64
  2727. add_cflags -msg_disable embedcomment
  2728. add_cflags -msg_disable needconstext
  2729. add_cflags -msg_disable nomainieee
  2730. add_cflags -msg_disable ptrmismatch1
  2731. add_cflags -msg_disable unreachcode
  2732. elif enabled gcc; then
  2733. check_cflags -fno-tree-vectorize
  2734. check_cflags -Werror=implicit-function-declaration
  2735. check_cflags -Werror=missing-prototypes
  2736. elif enabled llvm_gcc; then
  2737. check_cflags -mllvm -stack-alignment=16
  2738. elif enabled clang; then
  2739. check_cflags -mllvm -stack-alignment=16
  2740. check_cflags -Qunused-arguments
  2741. elif enabled armcc; then
  2742. # 2523: use of inline assembler is deprecated
  2743. add_cflags -W${armcc_opt},--diag_suppress=2523
  2744. add_cflags -W${armcc_opt},--diag_suppress=1207
  2745. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  2746. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  2747. elif enabled tms470; then
  2748. add_cflags -pds=824 -pds=837
  2749. elif enabled pathscale; then
  2750. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  2751. fi
  2752. enabled_any $THREADS_LIST && enable threads
  2753. check_deps $CONFIG_LIST \
  2754. $CONFIG_EXTRA \
  2755. $HAVE_LIST \
  2756. $DECODER_LIST \
  2757. $ENCODER_LIST \
  2758. $HWACCEL_LIST \
  2759. $PARSER_LIST \
  2760. $BSF_LIST \
  2761. $DEMUXER_LIST \
  2762. $MUXER_LIST \
  2763. $FILTER_LIST \
  2764. $INDEV_LIST \
  2765. $OUTDEV_LIST \
  2766. $PROTOCOL_LIST \
  2767. $ACODEC_TESTS \
  2768. $VCODEC_TESTS \
  2769. $LAVF_TESTS \
  2770. $LAVFI_TESTS \
  2771. $SEEK_TESTS \
  2772. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  2773. echo "install prefix $prefix"
  2774. echo "source path $source_path"
  2775. echo "C compiler $cc"
  2776. echo "ARCH $arch ($cpu)"
  2777. if test "$build_suffix" != ""; then
  2778. echo "build suffix $build_suffix"
  2779. fi
  2780. if test "$extra_version" != ""; then
  2781. echo "version string suffix $extra_version"
  2782. fi
  2783. echo "big-endian ${bigendian-no}"
  2784. echo "runtime cpu detection ${runtime_cpudetect-no}"
  2785. if enabled x86; then
  2786. echo "yasm ${yasm-no}"
  2787. echo "MMX enabled ${mmx-no}"
  2788. echo "MMX2 enabled ${mmx2-no}"
  2789. echo "3DNow! enabled ${amd3dnow-no}"
  2790. echo "3DNow! extended enabled ${amd3dnowext-no}"
  2791. echo "SSE enabled ${sse-no}"
  2792. echo "SSSE3 enabled ${ssse3-no}"
  2793. echo "CMOV enabled ${cmov-no}"
  2794. echo "CMOV is fast ${fast_cmov-no}"
  2795. echo "EBX available ${ebx_available-no}"
  2796. echo "EBP available ${ebp_available-no}"
  2797. echo "10 operands supported ${ten_operands-no}"
  2798. fi
  2799. if enabled arm; then
  2800. echo "ARMv5TE enabled ${armv5te-no}"
  2801. echo "ARMv6 enabled ${armv6-no}"
  2802. echo "ARMv6T2 enabled ${armv6t2-no}"
  2803. echo "ARM VFP enabled ${armvfp-no}"
  2804. echo "IWMMXT enabled ${iwmmxt-no}"
  2805. echo "NEON enabled ${neon-no}"
  2806. fi
  2807. if enabled mips; then
  2808. echo "MMI enabled ${mmi-no}"
  2809. fi
  2810. if enabled ppc; then
  2811. echo "AltiVec enabled ${altivec-no}"
  2812. echo "PPC 4xx optimizations ${ppc4xx-no}"
  2813. echo "dcbzl available ${dcbzl-no}"
  2814. fi
  2815. if enabled sparc; then
  2816. echo "VIS enabled ${vis-no}"
  2817. fi
  2818. echo "debug symbols ${debug-no}"
  2819. echo "optimizations ${optimizations-no}"
  2820. echo "static ${static-no}"
  2821. echo "shared ${shared-no}"
  2822. echo "postprocessing support ${postproc-no}"
  2823. echo "new filter support ${avfilter-no}"
  2824. echo "network support ${network-no}"
  2825. echo "threading support ${thread_type-no}"
  2826. echo "SDL support ${sdl-no}"
  2827. echo "Sun medialib support ${mlib-no}"
  2828. echo "AVISynth enabled ${avisynth-no}"
  2829. echo "frei0r enabled ${frei0r-no}"
  2830. echo "libdc1394 support ${libdc1394-no}"
  2831. echo "libdirac enabled ${libdirac-no}"
  2832. echo "libfaac enabled ${libfaac-no}"
  2833. echo "libgsm enabled ${libgsm-no}"
  2834. echo "libmp3lame enabled ${libmp3lame-no}"
  2835. echo "libnut enabled ${libnut-no}"
  2836. echo "libopencore-amrnb support ${libopencore_amrnb-no}"
  2837. echo "libopencore-amrwb support ${libopencore_amrwb-no}"
  2838. echo "libopencv support ${libopencv-no}"
  2839. echo "libopenjpeg enabled ${libopenjpeg-no}"
  2840. echo "librtmp enabled ${librtmp-no}"
  2841. echo "libschroedinger enabled ${libschroedinger-no}"
  2842. echo "libspeex enabled ${libspeex-no}"
  2843. echo "libtheora enabled ${libtheora-no}"
  2844. echo "libva enabled ${vaapi-no}"
  2845. echo "libvo-aacenc support ${libvo_aacenc-no}"
  2846. echo "libvo-amrwbenc support ${libvo_amrwbenc-no}"
  2847. echo "libvorbis enabled ${libvorbis-no}"
  2848. echo "libvpx enabled ${libvpx-no}"
  2849. echo "libx264 enabled ${libx264-no}"
  2850. echo "libxavs enabled ${libxavs-no}"
  2851. echo "libxvid enabled ${libxvid-no}"
  2852. echo "zlib enabled ${zlib-no}"
  2853. echo "bzlib enabled ${bzlib-no}"
  2854. echo
  2855. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  2856. echo "Enabled ${type}s:"
  2857. eval list=\$$(toupper $type)_LIST
  2858. print_enabled '_*' $list | sort | pr -r -3 -t
  2859. echo
  2860. done
  2861. license="LGPL version 2.1 or later"
  2862. if enabled nonfree; then
  2863. license="nonfree and unredistributable"
  2864. elif enabled gplv3; then
  2865. license="GPL version 3 or later"
  2866. elif enabled lgplv3; then
  2867. license="LGPL version 3 or later"
  2868. elif enabled gpl; then
  2869. license="GPL version 2 or later"
  2870. fi
  2871. echo "License: $license"
  2872. echo "Creating config.mak and config.h..."
  2873. # build tree in object directory if source path is different from current one
  2874. if enabled source_path_used; then
  2875. DIRS="
  2876. doc
  2877. libavcodec
  2878. libavcodec/$arch
  2879. libavdevice
  2880. libavfilter
  2881. libavfilter/$arch
  2882. libavformat
  2883. libavutil
  2884. libavutil/$arch
  2885. libpostproc
  2886. libswscale
  2887. libswscale/$arch
  2888. tests
  2889. tools
  2890. "
  2891. FILES="
  2892. Makefile
  2893. common.mak
  2894. subdir.mak
  2895. doc/texi2pod.pl
  2896. libavcodec/Makefile
  2897. libavcodec/${arch}/Makefile
  2898. libavdevice/Makefile
  2899. libavfilter/Makefile
  2900. libavfilter/${arch}/Makefile
  2901. libavformat/Makefile
  2902. libavutil/Makefile
  2903. libpostproc/Makefile
  2904. libswscale/Makefile
  2905. "
  2906. map 'mkdir -p $v' $DIRS;
  2907. map 'test -f "$source_path/$v" && $ln_s "$source_path/$v" $v' $FILES
  2908. fi
  2909. config_files="$TMPH config.mak"
  2910. cat > config.mak <<EOF
  2911. # Automatically generated by configure - do not modify!
  2912. ifndef LIBAV_CONFIG_MAK
  2913. LIBAV_CONFIG_MAK=1
  2914. LIBAV_CONFIGURATION=$LIBAV_CONFIGURATION
  2915. prefix=$prefix
  2916. LIBDIR=\$(DESTDIR)$libdir
  2917. SHLIBDIR=\$(DESTDIR)$shlibdir
  2918. INCDIR=\$(DESTDIR)$incdir
  2919. BINDIR=\$(DESTDIR)$bindir
  2920. DATADIR=\$(DESTDIR)$datadir
  2921. MANDIR=\$(DESTDIR)$mandir
  2922. SRC_PATH="$source_path"
  2923. SRC_PATH_BARE=$source_path
  2924. BUILD_ROOT="$PWD"
  2925. CC_IDENT=$cc_ident
  2926. ARCH=$arch
  2927. CC=$cc
  2928. AS=$as
  2929. LD=$ld
  2930. DEPCC=$dep_cc
  2931. YASM=$yasmexe
  2932. YASMDEP=$yasmexe
  2933. AR=$ar
  2934. RANLIB=$ranlib
  2935. LN_S=$ln_s
  2936. CPPFLAGS=$CPPFLAGS
  2937. CFLAGS=$CFLAGS
  2938. ASFLAGS=$ASFLAGS
  2939. CC_O=$CC_O
  2940. DLLTOOL=$dlltool
  2941. LDFLAGS=$LDFLAGS
  2942. FFSERVERLDFLAGS=$FFSERVERLDFLAGS
  2943. SHFLAGS=$SHFLAGS
  2944. YASMFLAGS=$YASMFLAGS
  2945. BUILDSUF=$build_suffix
  2946. FULLNAME=$FULLNAME
  2947. LIBPREF=$LIBPREF
  2948. LIBSUF=$LIBSUF
  2949. LIBNAME=$LIBNAME
  2950. SLIBPREF=$SLIBPREF
  2951. SLIBSUF=$SLIBSUF
  2952. EXESUF=$EXESUF
  2953. EXTRA_VERSION=$extra_version
  2954. DEPFLAGS=$DEPFLAGS
  2955. CCDEP=$CCDEP
  2956. ASDEP=$ASDEP
  2957. CC_DEPFLAGS=$CC_DEPFLAGS
  2958. AS_DEPFLAGS=$AS_DEPFLAGS
  2959. HOSTCC=$host_cc
  2960. HOSTCFLAGS=$host_cflags
  2961. HOSTEXESUF=$HOSTEXESUF
  2962. HOSTLDFLAGS=$host_ldflags
  2963. HOSTLIBS=$host_libs
  2964. TARGET_EXEC=$target_exec
  2965. TARGET_PATH=$target_path
  2966. SDL_LIBS=$sdl_libs
  2967. SDL_CFLAGS=$sdl_cflags
  2968. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  2969. EXTRALIBS=$extralibs
  2970. INSTALL=install
  2971. LIBTARGET=${LIBTARGET}
  2972. SLIBNAME=${SLIBNAME}
  2973. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  2974. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  2975. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  2976. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  2977. SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD}
  2978. SLIB_UNINSTALL_EXTRA_CMD=${SLIB_UNINSTALL_EXTRA_CMD}
  2979. SAMPLES:=${samples:-\$(FATE_SAMPLES)}
  2980. EOF
  2981. get_version(){
  2982. name=$1
  2983. file=$source_path/$2
  2984. eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
  2985. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  2986. lcname=$(tolower $name)
  2987. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  2988. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  2989. }
  2990. get_version LIBSWSCALE libswscale/swscale.h
  2991. get_version LIBPOSTPROC libpostproc/postprocess.h
  2992. get_version LIBAVCODEC libavcodec/version.h
  2993. get_version LIBAVDEVICE libavdevice/avdevice.h
  2994. get_version LIBAVFORMAT libavformat/version.h
  2995. get_version LIBAVUTIL libavutil/avutil.h
  2996. get_version LIBAVFILTER libavfilter/avfilter.h
  2997. cat > $TMPH <<EOF
  2998. /* Automatically generated by configure - do not modify! */
  2999. #ifndef LIBAV_CONFIG_H
  3000. #define LIBAV_CONFIG_H
  3001. #define LIBAV_CONFIGURATION "$(c_escape $LIBAV_CONFIGURATION)"
  3002. #define LIBAV_LICENSE "$(c_escape $license)"
  3003. #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
  3004. #define CC_TYPE "$cc_type"
  3005. #define CC_VERSION $cc_version
  3006. #define restrict $_restrict
  3007. #define EXTERN_PREFIX "${extern_prefix}"
  3008. #define EXTERN_ASM ${extern_prefix}
  3009. #define SLIBSUF "$SLIBSUF"
  3010. EOF
  3011. test -n "$malloc_prefix" &&
  3012. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  3013. if enabled small || disabled optimizations; then
  3014. echo "#undef av_always_inline" >> $TMPH
  3015. if enabled small; then
  3016. echo "#define av_always_inline inline" >> $TMPH
  3017. else
  3018. echo "#define av_always_inline av_unused" >> $TMPH
  3019. fi
  3020. fi
  3021. if enabled yasm; then
  3022. append config_files $TMPASM
  3023. printf '' >$TMPASM
  3024. fi
  3025. print_config ARCH_ "$config_files" $ARCH_LIST
  3026. print_config HAVE_ "$config_files" $HAVE_LIST
  3027. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  3028. $CONFIG_EXTRA \
  3029. $DECODER_LIST \
  3030. $ENCODER_LIST \
  3031. $HWACCEL_LIST \
  3032. $PARSER_LIST \
  3033. $BSF_LIST \
  3034. $DEMUXER_LIST \
  3035. $MUXER_LIST \
  3036. $FILTER_LIST \
  3037. $PROTOCOL_LIST \
  3038. $INDEV_LIST \
  3039. $OUTDEV_LIST \
  3040. cat >>config.mak <<EOF
  3041. ACODEC_TESTS=$(print_enabled -n _test $ACODEC_TESTS)
  3042. VCODEC_TESTS=$(print_enabled -n _test $VCODEC_TESTS)
  3043. LAVF_TESTS=$(print_enabled -n _test $LAVF_TESTS)
  3044. LAVFI_TESTS=$(print_enabled -n _test $LAVFI_TESTS)
  3045. SEEK_TESTS=$(print_enabled -n _test $SEEK_TESTS)
  3046. EOF
  3047. echo "#endif /* LIBAV_CONFIG_H */" >> $TMPH
  3048. echo "endif # LIBAV_CONFIG_MAK" >> config.mak
  3049. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  3050. cp_if_changed $TMPH config.h
  3051. touch .config
  3052. enabled yasm && cp_if_changed $TMPASM config.asm
  3053. cat > $TMPH <<EOF
  3054. /* Generated by ffconf */
  3055. #ifndef AVUTIL_AVCONFIG_H
  3056. #define AVUTIL_AVCONFIG_H
  3057. EOF
  3058. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  3059. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  3060. cp_if_changed $TMPH libavutil/avconfig.h
  3061. test -n "$WARNINGS" && printf "\n$WARNINGS"
  3062. # build pkg-config files
  3063. pkgconfig_generate(){
  3064. name=$1
  3065. shortname=${name#lib}${build_suffix}
  3066. comment=$2
  3067. version=$3
  3068. libs=$4
  3069. requires=$5
  3070. enabled ${name#lib} || return 0
  3071. cat <<EOF > $name/$name.pc
  3072. prefix=$prefix
  3073. exec_prefix=\${prefix}
  3074. libdir=$libdir
  3075. includedir=$incdir
  3076. Name: $name
  3077. Description: $comment
  3078. Version: $version
  3079. Requires: $(enabled shared || echo $requires)
  3080. Requires.private: $(enabled shared && echo $requires)
  3081. Conflicts:
  3082. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  3083. Libs.private: $(enabled shared && echo $libs)
  3084. Cflags: -I\${includedir}
  3085. EOF
  3086. cat <<EOF > $name/$name-uninstalled.pc
  3087. prefix=
  3088. exec_prefix=
  3089. libdir=\${pcfiledir}
  3090. includedir=${source_path}
  3091. Name: $name
  3092. Description: $comment
  3093. Version: $version
  3094. Requires: $requires
  3095. Conflicts:
  3096. Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
  3097. Cflags: -I\${includedir}
  3098. EOF
  3099. }
  3100. pkgconfig_generate libavutil "Libav utility library" "$LIBAVUTIL_VERSION" "$LIBM"
  3101. pkgconfig_generate libavcodec "Libav codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3102. pkgconfig_generate libavformat "Libav container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  3103. pkgconfig_generate libavdevice "Libav device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
  3104. pkgconfig_generate libavfilter "Libav video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
  3105. pkgconfig_generate libpostproc "Libav post processing library" "$LIBPOSTPROC_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
  3106. pkgconfig_generate libswscale "Libav image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"