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.

3132 lines
88KB

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