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.

3395 lines
100KB

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