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.

3352 lines
98KB

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