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.

3515 lines
105KB

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