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.

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