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.

3466 lines
102KB

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