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.

3133 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. real_144_encoder_select="lpc"
  1155. rv10_decoder_select="h263_decoder"
  1156. rv10_encoder_select="h263_encoder"
  1157. rv20_decoder_select="h263_decoder"
  1158. rv20_encoder_select="h263_encoder"
  1159. rv30_decoder_select="golomb h264dsp"
  1160. rv40_decoder_select="golomb h264dsp"
  1161. shorten_decoder_select="golomb"
  1162. sipr_decoder_select="lsp"
  1163. snow_decoder_select="dwt"
  1164. snow_encoder_select="aandct dwt"
  1165. sonic_decoder_select="golomb"
  1166. sonic_encoder_select="golomb"
  1167. sonic_ls_encoder_select="golomb"
  1168. svq1_encoder_select="aandct"
  1169. svq3_decoder_select="golomb h264dsp"
  1170. svq3_decoder_suggest="zlib"
  1171. theora_decoder_select="vp3_decoder"
  1172. tiff_decoder_suggest="zlib"
  1173. tiff_encoder_suggest="zlib"
  1174. truehd_decoder_select="mlp_decoder"
  1175. tscc_decoder_select="zlib"
  1176. twinvq_decoder_select="mdct lsp"
  1177. vc1_decoder_select="h263_decoder"
  1178. vc1_dxva2_hwaccel_deps="dxva2api_h DXVA_PictureParameters_wDecodedPictureIndex"
  1179. vc1_dxva2_hwaccel_select="dxva2 vc1_decoder"
  1180. vc1_vaapi_hwaccel_select="vaapi vc1_decoder"
  1181. vc1_vdpau_decoder_select="vdpau vc1_decoder"
  1182. vorbis_decoder_select="mdct"
  1183. vorbis_encoder_select="mdct"
  1184. vp6a_decoder_select="vp6_decoder"
  1185. vp6f_decoder_select="vp6_decoder"
  1186. wmapro_decoder_select="mdct"
  1187. wmav1_decoder_select="mdct"
  1188. wmav1_encoder_select="mdct"
  1189. wmav2_decoder_select="mdct"
  1190. wmav2_encoder_select="mdct"
  1191. wmavoice_decoder_select="lsp rdft dct"
  1192. wmv1_decoder_select="h263_decoder"
  1193. wmv1_encoder_select="h263_encoder"
  1194. wmv2_decoder_select="h263_decoder"
  1195. wmv2_encoder_select="h263_encoder"
  1196. wmv3_decoder_select="vc1_decoder"
  1197. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  1198. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  1199. wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
  1200. zlib_decoder_select="zlib"
  1201. zlib_encoder_select="zlib"
  1202. zmbv_decoder_select="zlib"
  1203. zmbv_encoder_select="zlib"
  1204. vaapi_deps="va_va_h"
  1205. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  1206. # parsers
  1207. h264_parser_select="golomb h264dsp"
  1208. # bitstream_filters
  1209. aac_adtstoasc_bsf_select="aac_parser"
  1210. # external libraries
  1211. libdirac_decoder_deps="libdirac !libschroedinger"
  1212. libdirac_encoder_deps="libdirac"
  1213. libfaac_encoder_deps="libfaac"
  1214. libfaad_decoder_deps="libfaad"
  1215. libfaadbin_extralibs='$ldl'
  1216. libgsm_decoder_deps="libgsm"
  1217. libgsm_encoder_deps="libgsm"
  1218. libgsm_ms_decoder_deps="libgsm"
  1219. libgsm_ms_encoder_deps="libgsm"
  1220. libmp3lame_encoder_deps="libmp3lame"
  1221. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  1222. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  1223. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  1224. libopenjpeg_decoder_deps="libopenjpeg"
  1225. libschroedinger_decoder_deps="libschroedinger"
  1226. libschroedinger_encoder_deps="libschroedinger"
  1227. libspeex_decoder_deps="libspeex"
  1228. libtheora_encoder_deps="libtheora"
  1229. libvorbis_encoder_deps="libvorbis"
  1230. libvpx_decoder_deps="libvpx"
  1231. libvpx_encoder_deps="libvpx"
  1232. libx264_encoder_deps="libx264"
  1233. libxvid_encoder_deps="libxvid"
  1234. # demuxers / muxers
  1235. ac3_demuxer_deps="ac3_parser"
  1236. asf_stream_muxer_select="asf_muxer"
  1237. avisynth_demuxer_deps="avisynth"
  1238. dirac_demuxer_deps="dirac_parser"
  1239. eac3_demuxer_select="ac3_parser"
  1240. ipod_muxer_select="mov_muxer"
  1241. libnut_demuxer_deps="libnut"
  1242. libnut_muxer_deps="libnut"
  1243. matroska_audio_muxer_select="matroska_muxer"
  1244. matroska_demuxer_suggest="zlib bzlib"
  1245. mov_demuxer_suggest="zlib"
  1246. mp3_demuxer_deps="mpegaudio_parser"
  1247. mp4_muxer_select="mov_muxer"
  1248. mpegtsraw_demuxer_select="mpegts_demuxer"
  1249. mxf_d10_muxer_select="mxf_muxer"
  1250. ogg_demuxer_select="golomb"
  1251. psp_muxer_select="mov_muxer"
  1252. rtsp_demuxer_deps="sdp_demuxer"
  1253. rtsp_muxer_deps="sdp_demuxer"
  1254. rtsp_muxer_select="rtp_muxer"
  1255. sdp_demuxer_deps="rtp_protocol mpegts_demuxer"
  1256. sdp_demuxer_select="asf_demuxer rm_demuxer"
  1257. spdif_muxer_select="aac_parser"
  1258. tg2_muxer_select="mov_muxer"
  1259. tgp_muxer_select="mov_muxer"
  1260. w64_demuxer_deps="wav_demuxer"
  1261. # indevs / outdevs
  1262. alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  1263. alsa_indev_extralibs="-lasound"
  1264. alsa_outdev_deps="alsa_asoundlib_h"
  1265. alsa_outdev_extralibs="-lasound"
  1266. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  1267. dv1394_indev_deps="dv1394 dv_demuxer"
  1268. jack_indev_deps="jack_jack_h"
  1269. jack_indev_extralibs="-ljack"
  1270. libdc1394_indev_deps="libdc1394"
  1271. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  1272. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  1273. v4l_indev_deps="linux_videodev_h"
  1274. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  1275. vfwcap_indev_deps="capCreateCaptureWindow"
  1276. vfwcap_indev_extralibs="-lavicap32"
  1277. x11_grab_device_indev_deps="x11grab XShmCreateImage"
  1278. x11_grab_device_indev_extralibs="-lX11 -lXext -lXfixes"
  1279. # protocols
  1280. gopher_protocol_deps="network"
  1281. http_protocol_deps="network"
  1282. http_protocol_select="tcp_protocol"
  1283. mmst_protocol_deps="network"
  1284. rtmp_protocol_select="tcp_protocol"
  1285. rtp_protocol_select="udp_protocol"
  1286. tcp_protocol_deps="network"
  1287. udp_protocol_deps="network"
  1288. # filters
  1289. movie_filter_deps="avfilter_lavf"
  1290. avfilter_lavf_deps="avformat"
  1291. # libraries
  1292. avdevice_deps="avcodec avformat"
  1293. avformat_deps="avcodec"
  1294. # programs
  1295. ffmpeg_deps="avcodec avformat swscale"
  1296. ffmpeg_select="buffer_filter"
  1297. ffplay_deps="avcodec avformat swscale sdl"
  1298. ffplay_select="rdft"
  1299. ffprobe_deps="avcodec avformat"
  1300. ffserver_deps="avformat ffm_muxer rtp_protocol rtsp_demuxer"
  1301. ffserver_extralibs='$ldl'
  1302. doc_deps="texi2html"
  1303. # default parameters
  1304. logfile="config.err"
  1305. # installation paths
  1306. prefix_default="/usr/local"
  1307. bindir_default='${prefix}/bin'
  1308. datadir_default='${prefix}/share/ffmpeg'
  1309. incdir_default='${prefix}/include'
  1310. libdir_default='${prefix}/lib'
  1311. mandir_default='${prefix}/share/man'
  1312. shlibdir_default="$libdir_default"
  1313. # toolchain
  1314. ar_default="ar"
  1315. cc_default="gcc"
  1316. cc_version=\"unknown\"
  1317. host_cc_default="gcc"
  1318. ln_s="ln -sf"
  1319. nm_default="nm"
  1320. objformat="elf"
  1321. ranlib="ranlib"
  1322. strip_default="strip"
  1323. yasmexe="yasm"
  1324. nm_opts='-g'
  1325. # machine
  1326. arch_default=$(uname -m)
  1327. cpu="generic"
  1328. # OS
  1329. target_os_default=$(tolower $(uname -s))
  1330. host_os=$target_os_default
  1331. # configurable options
  1332. enable avcodec
  1333. enable avdevice
  1334. enable avfilter
  1335. enable avformat
  1336. enable avutil
  1337. enable asm
  1338. enable debug
  1339. enable doc
  1340. enable fastdiv
  1341. enable ffmpeg
  1342. enable ffplay
  1343. enable ffprobe
  1344. enable ffserver
  1345. enable mpegaudio_hp
  1346. enable network
  1347. enable optimizations
  1348. enable protocols
  1349. enable static
  1350. enable stripping
  1351. enable swscale
  1352. enable swscale_alpha
  1353. # build settings
  1354. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1355. FFSERVERLDFLAGS=-Wl,-E
  1356. LIBPREF="lib"
  1357. LIBSUF=".a"
  1358. FULLNAME='$(NAME)$(BUILDSUF)'
  1359. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1360. SLIBPREF="lib"
  1361. SLIBSUF=".so"
  1362. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1363. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  1364. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  1365. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  1366. CC_O='-o $@'
  1367. host_cflags='-D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112 -O3 -g -Wall'
  1368. host_libs='-lm'
  1369. target_path='$(CURDIR)'
  1370. # gcc stupidly only outputs the basename of targets with -MM, but we need the
  1371. # full relative path for objects in subdirectories for non-recursive Make.
  1372. DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  1373. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -MM'
  1374. # find source path
  1375. source_path="$(dirname "$0")"
  1376. enable source_path_used
  1377. if test -f configure; then
  1378. source_path="$(pwd)"
  1379. disable source_path_used
  1380. else
  1381. source_path="$(cd "$source_path"; pwd)"
  1382. echo "$source_path" | grep -q '[[:blank:]]' &&
  1383. die "Out of tree builds are impossible with whitespace in source path."
  1384. test -e "$source_path/config.h" &&
  1385. die "Out of tree builds are impossible with config.h in source dir."
  1386. fi
  1387. for v in "$@"; do
  1388. r=${v#*=}
  1389. l=${v%"$r"}
  1390. r=$(sh_quote "$r")
  1391. FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
  1392. done
  1393. find_things(){
  1394. thing=$1
  1395. pattern=$2
  1396. file=$source_path/$3
  1397. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  1398. }
  1399. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  1400. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  1401. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  1402. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  1403. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  1404. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  1405. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  1406. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  1407. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  1408. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  1409. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  1410. for n in $COMPONENT_LIST; do
  1411. v=$(toupper ${n%s})_LIST
  1412. eval enable \$$v
  1413. eval ${n}_if_any="\$$v"
  1414. done
  1415. enable $ARCH_EXT_LIST
  1416. die_unknown(){
  1417. echo "Unknown option \"$1\"."
  1418. echo "See $0 --help for available options."
  1419. exit 1
  1420. }
  1421. show_list() {
  1422. suffix=_$1
  1423. shift
  1424. echo $* | sed s/$suffix//g | tr ' ' '\n' | sort | pr -3 -t
  1425. exit 0
  1426. }
  1427. for opt do
  1428. optval="${opt#*=}"
  1429. case "$opt" in
  1430. --extra-ldflags=*) add_ldflags $optval
  1431. ;;
  1432. --extra-libs=*) add_extralibs $optval
  1433. ;;
  1434. --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
  1435. ;;
  1436. --enable-debug=*) debuglevel="$optval"
  1437. ;;
  1438. --disable-everything)
  1439. map 'eval disable \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  1440. ;;
  1441. --enable-*=*|--disable-*=*)
  1442. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  1443. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  1444. eval list=\$$(toupper $thing)_LIST
  1445. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  1446. $action $(filter "$name" $list)
  1447. ;;
  1448. --enable-?*|--disable-?*)
  1449. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  1450. if is_in $option $COMPONENT_LIST; then
  1451. test $action = disable && action=unset
  1452. eval $action \$$(toupper ${option%s})_LIST
  1453. elif is_in $option $CMDLINE_SELECT; then
  1454. $action $option
  1455. else
  1456. die_unknown $opt
  1457. fi
  1458. ;;
  1459. --list-*)
  1460. NAME="${opt#--list-}"
  1461. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  1462. NAME=${NAME%s}
  1463. eval show_list $NAME \$$(toupper $NAME)_LIST
  1464. ;;
  1465. --help|-h) show_help
  1466. ;;
  1467. *)
  1468. optname="${opt%%=*}"
  1469. optname="${optname#--}"
  1470. optname=$(echo "$optname" | sed 's/-/_/g')
  1471. if is_in $optname $CMDLINE_SET; then
  1472. eval $optname='$optval'
  1473. elif is_in $optname $CMDLINE_APPEND; then
  1474. append $optname "$optval"
  1475. else
  1476. die_unknown $opt
  1477. fi
  1478. ;;
  1479. esac
  1480. done
  1481. disabled logging && logfile=/dev/null
  1482. echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
  1483. set >> $logfile
  1484. test -n "$cross_prefix" && enable cross_compile
  1485. if enabled cross_compile; then
  1486. test -n "$arch" && test -n "$target_os" ||
  1487. die "Must specify target arch and OS when cross-compiling"
  1488. fi
  1489. set_default arch target_os
  1490. ar_default="${cross_prefix}${ar_default}"
  1491. cc_default="${cross_prefix}${cc_default}"
  1492. nm_default="${cross_prefix}${nm_default}"
  1493. ranlib="${cross_prefix}${ranlib}"
  1494. strip_default="${cross_prefix}${strip_default}"
  1495. sysinclude_default="${sysroot}/usr/include"
  1496. set_default cc nm strip sysinclude
  1497. enabled cross_compile || host_cc_default=$cc
  1498. set_default host_cc
  1499. exesuf() {
  1500. case $1 in
  1501. mingw32*|cygwin*|*-dos|freedos|opendos|os/2*) echo .exe ;;
  1502. esac
  1503. }
  1504. EXESUF=$(exesuf $target_os)
  1505. HOSTEXESUF=$(exesuf $host_os)
  1506. # set temporary file name
  1507. : ${TMPDIR:=$TEMPDIR}
  1508. : ${TMPDIR:=$TMP}
  1509. : ${TMPDIR:=/tmp}
  1510. if ! check_cmd type mktemp; then
  1511. # simple replacement for missing mktemp
  1512. # NOT SAFE FOR GENERAL USE
  1513. mktemp(){
  1514. echo "${2%XXX*}.${HOSTNAME}.${UID}.$$"
  1515. }
  1516. fi
  1517. tmpfile(){
  1518. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  1519. (set -C; exec > $tmp) 2>/dev/null ||
  1520. die "Unable to create temporary file in $TMPDIR."
  1521. append TMPFILES $tmp
  1522. eval $1=$tmp
  1523. }
  1524. trap 'rm -f -- $TMPFILES' EXIT
  1525. trap exit HUP INT TERM
  1526. tmpfile TMPC .c
  1527. tmpfile TMPE $EXESUF
  1528. tmpfile TMPH .h
  1529. tmpfile TMPO .o
  1530. tmpfile TMPS .S
  1531. tmpfile TMPV .ver
  1532. tmpfile TMPSH .sh
  1533. unset -f mktemp
  1534. # make sure we can execute files in $TMPDIR
  1535. cat > $TMPSH 2>> $logfile <<EOF
  1536. #! /bin/sh
  1537. EOF
  1538. chmod +x $TMPSH >> $logfile 2>&1
  1539. if ! $TMPSH >> $logfile 2>&1; then
  1540. cat <<EOF
  1541. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  1542. variable to another directory and make sure that it is not mounted noexec.
  1543. EOF
  1544. die "Sanity test failed."
  1545. fi
  1546. filter_cflags=echo
  1547. filter_cppflags=echo
  1548. filter_asflags=echo
  1549. if $cc -v 2>&1 | grep -qi ^gcc; then
  1550. cc_type=gcc
  1551. cc_version=__VERSION__
  1552. if ! $cc -dumpversion | grep -q '^2\.'; then
  1553. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1554. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1555. fi
  1556. speed_cflags='-O3'
  1557. size_cflags='-Os'
  1558. elif $cc --version 2>/dev/null | grep -q Intel; then
  1559. cc_type=icc
  1560. cc_version="AV_STRINGIFY(__INTEL_COMPILER)"
  1561. CC_DEPFLAGS='-MMD'
  1562. AS_DEPFLAGS='-MMD'
  1563. speed_cflags='-O3'
  1564. size_cflags='-Os'
  1565. noopt_cflags='-O1'
  1566. elif $cc -v 2>&1 | grep -q xlc; then
  1567. cc_type=xlc
  1568. cc_version="AV_STRINGIFY(__IBMC__)"
  1569. speed_cflags='-O5'
  1570. size_cflags='-O5 -qcompact'
  1571. elif $cc -V 2>/dev/null | grep -q Compaq; then
  1572. cc_type=ccc
  1573. cc_version="AV_STRINGIFY(__DECC_VER)"
  1574. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -M'
  1575. debuglevel=3
  1576. add_ldflags -Wl,-z,now # calls to libots crash without this
  1577. speed_cflags='-fast'
  1578. size_cflags='-O1'
  1579. elif $cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
  1580. test -d "$sysroot" || die "No valid sysroot specified."
  1581. cc_type=armcc
  1582. cc_version="AV_STRINGIFY(__ARMCC_VERSION)"
  1583. armcc_conf="$PWD/armcc.conf"
  1584. $cc --arm_linux_configure \
  1585. --arm_linux_config_file="$armcc_conf" \
  1586. --configure_sysroot="$sysroot" \
  1587. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  1588. die "Error creating armcc configuration file."
  1589. cc="$cc --arm_linux_config_file=$armcc_conf --translate_gcc"
  1590. as_default="${cross_prefix}gcc"
  1591. CC_DEPFLAGS='-MMD'
  1592. AS_DEPFLAGS='-MMD'
  1593. speed_cflags='-O3'
  1594. size_cflags='-Os'
  1595. elif $cc -version 2>/dev/null | grep -q TMS470; then
  1596. cc_type=tms470
  1597. cc_version="AV_STRINGIFY(__TI_COMPILER_VERSION__)"
  1598. cc="$cc --gcc --abi=eabi -eo=.o -mc -me"
  1599. CC_O='-fr=$(@D)'
  1600. as_default="${cross_prefix}gcc"
  1601. ld_default="${cross_prefix}gcc"
  1602. TMPO=$(basename $TMPC .c).o
  1603. append TMPFILES $TMPO
  1604. add_cflags -D__gnuc_va_list=va_list -D__USER_LABEL_PREFIX__=
  1605. CC_DEPFLAGS='-ppa -ppd=$(@:.o=.d)'
  1606. AS_DEPFLAGS='-MMD'
  1607. speed_cflags='-O3 -mf=5'
  1608. size_cflags='-O3 -mf=2'
  1609. filter_cflags=tms470_flags
  1610. tms470_flags(){
  1611. for flag; do
  1612. case $flag in
  1613. -march=*|-mcpu=*)
  1614. case "${flag#*=}" in
  1615. armv7-a|cortex-a*) echo -mv=7a8 ;;
  1616. armv7-r|cortex-r*) echo -mv=7r4 ;;
  1617. armv7-m|cortex-m*) echo -mv=7m3 ;;
  1618. armv6*|arm11*) echo -mv=6 ;;
  1619. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  1620. echo -mv=5e ;;
  1621. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  1622. esac
  1623. ;;
  1624. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  1625. -mfpu=vfp) echo --float_support=vfpv2 ;;
  1626. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  1627. -msoft-float) echo --float_support=vfplib ;;
  1628. -O[0-3]|-mf=*) echo $flag ;;
  1629. -g) echo -g -mn ;;
  1630. -pds=*) echo $flag ;;
  1631. esac
  1632. done
  1633. }
  1634. elif $cc -v 2>&1 | grep -q clang; then
  1635. cc_type=clang
  1636. cc_version=__VERSION__
  1637. CC_DEPFLAGS='-MMD'
  1638. AS_DEPFLAGS='-MMD'
  1639. speed_cflags='-O3'
  1640. size_cflags='-Os'
  1641. elif $cc -V 2>&1 | grep -q Sun; then
  1642. cc_type=suncc
  1643. cc_version="AV_STRINGIFY(__SUNPRO_C)"
  1644. DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  1645. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -xM1'
  1646. speed_cflags='-O5'
  1647. size_cflags='-O5 -xspace'
  1648. filter_cflags=suncc_flags
  1649. suncc_flags(){
  1650. for flag; do
  1651. case $flag in
  1652. -march=*|-mcpu=*)
  1653. case "${flag#*=}" in
  1654. native) echo -xtarget=native ;;
  1655. v9|niagara) echo -xarch=sparc ;;
  1656. ultrasparc) echo -xarch=sparcvis ;;
  1657. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  1658. i586|pentium) echo -xchip=pentium ;;
  1659. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  1660. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  1661. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  1662. pentium4*) echo -xtarget=pentium4 ;;
  1663. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  1664. *-sse3) echo -xarch=sse3 ;;
  1665. core2) echo -xarch=ssse3 -xchip=core2 ;;
  1666. amdfam10|barcelona) echo -xarch=sse4_1 ;;
  1667. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  1668. k8|opteron|athlon64|athlon-fx)
  1669. echo -xarch=sse2a ;;
  1670. athlon*) echo -xarch=pentium_proa ;;
  1671. esac
  1672. ;;
  1673. -std=c99) echo -xc99 ;;
  1674. -fomit-frame-pointer) echo -xregs=frameptr ;;
  1675. -fPIC) echo -KPIC -xcode=pic32 ;;
  1676. -W*,*) echo $flag ;;
  1677. -f*-*|-W*) ;;
  1678. *) echo $flag ;;
  1679. esac
  1680. done
  1681. }
  1682. fi
  1683. test -n "$cc_type" && enable $cc_type || echolog "Unknown C compiler $cc"
  1684. : ${as_default:=$cc}
  1685. : ${dep_cc_default:=$cc}
  1686. : ${ld_default:=$cc}
  1687. set_default ar as dep_cc ld
  1688. test -n "$CC_DEPFLAGS" || CCDEP=$DEPEND_CMD
  1689. test -n "$AS_DEPFLAGS" || ASDEP=$DEPEND_CMD
  1690. add_cflags $extra_cflags
  1691. add_asflags $extra_cflags
  1692. if test -n "$sysroot"; then
  1693. case "$cc_type" in
  1694. gcc)
  1695. add_cppflags --sysroot="$sysroot"
  1696. add_ldflags --sysroot="$sysroot"
  1697. ;;
  1698. tms470)
  1699. add_cppflags -I"$sysinclude"
  1700. add_ldflags --sysroot="$sysroot"
  1701. ;;
  1702. clang)
  1703. add_cppflags -isysroot "$sysroot"
  1704. add_ldflags -isysroot "$sysroot"
  1705. ;;
  1706. esac
  1707. fi
  1708. if test "$cpu" = host; then
  1709. enabled cross_compile && die "--cpu=host makes no sense when cross-compiling."
  1710. case "$cc_type" in
  1711. gcc)
  1712. check_native(){
  1713. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  1714. sed -n "/$1=/{
  1715. s/.*$1=\\([^ ]*\\).*/\\1/
  1716. p
  1717. q
  1718. }" $TMPE
  1719. }
  1720. cpu=$(check_native -march || check_native -mcpu)
  1721. ;;
  1722. esac
  1723. test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc"
  1724. fi
  1725. # Deal with common $arch aliases
  1726. case "$arch" in
  1727. arm*)
  1728. arch="arm"
  1729. ;;
  1730. mips|mipsel|IP*)
  1731. arch="mips"
  1732. ;;
  1733. mips64*)
  1734. arch="mips"
  1735. subarch="mips64"
  1736. ;;
  1737. parisc|hppa)
  1738. arch="parisc"
  1739. ;;
  1740. parisc64|hppa64)
  1741. arch="parisc"
  1742. subarch="parisc64"
  1743. ;;
  1744. "Power Macintosh"|ppc|powerpc)
  1745. arch="ppc"
  1746. ;;
  1747. ppc64|powerpc64)
  1748. arch="ppc"
  1749. subarch="ppc64"
  1750. ;;
  1751. s390|s390x)
  1752. arch="s390"
  1753. ;;
  1754. sh4|sh)
  1755. arch="sh4"
  1756. ;;
  1757. sun4u|sparc64)
  1758. arch="sparc"
  1759. subarch="sparc64"
  1760. ;;
  1761. i[3-6]86|i86pc|BePC|x86_64|amd64)
  1762. arch="x86"
  1763. ;;
  1764. esac
  1765. is_in $arch $ARCH_LIST || echo "WARNING: unknown arch $arch"
  1766. enable $arch
  1767. # Add processor-specific flags
  1768. if test "$cpu" = generic; then
  1769. : do nothing
  1770. elif enabled ppc; then
  1771. case $(tolower $cpu) in
  1772. 601|ppc601|powerpc601)
  1773. cpuflags="-mcpu=601"
  1774. disable altivec
  1775. ;;
  1776. 603*|ppc603*|powerpc603*)
  1777. cpuflags="-mcpu=603"
  1778. disable altivec
  1779. ;;
  1780. 604*|ppc604*|powerpc604*)
  1781. cpuflags="-mcpu=604"
  1782. disable altivec
  1783. ;;
  1784. g3|75*|ppc75*|powerpc75*)
  1785. cpuflags="-mcpu=750 -mpowerpc-gfxopt"
  1786. disable altivec
  1787. ;;
  1788. g4|745*|ppc745*|powerpc745*)
  1789. cpuflags="-mcpu=7450 -mpowerpc-gfxopt"
  1790. ;;
  1791. 74*|ppc74*|powerpc74*)
  1792. cpuflags="-mcpu=7400 -mpowerpc-gfxopt"
  1793. ;;
  1794. g5|970|ppc970|powerpc970|power4*)
  1795. cpuflags="-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
  1796. ;;
  1797. cell)
  1798. cpuflags="-mcpu=cell"
  1799. enable ldbrx
  1800. ;;
  1801. e500v2)
  1802. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  1803. disable altivec
  1804. ;;
  1805. e500)
  1806. cpuflags="-mcpu=8540 -mhard-float"
  1807. disable altivec
  1808. ;;
  1809. esac
  1810. elif enabled x86; then
  1811. case $cpu in
  1812. i[345]86|pentium)
  1813. cpuflags="-march=$cpu"
  1814. disable mmx
  1815. ;;
  1816. # targets that do NOT support conditional mov (cmov)
  1817. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  1818. cpuflags="-march=$cpu"
  1819. disable cmov
  1820. ;;
  1821. # targets that do support conditional mov (cmov)
  1822. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2|amdfam10)
  1823. cpuflags="-march=$cpu"
  1824. enable cmov
  1825. enable fast_cmov
  1826. ;;
  1827. # targets that do support conditional mov but on which it's slow
  1828. pentium4|pentium4m|prescott|nocona)
  1829. cpuflags="-march=$cpu"
  1830. enable cmov
  1831. disable fast_cmov
  1832. ;;
  1833. esac
  1834. elif enabled sparc; then
  1835. case $cpu in
  1836. niagara)
  1837. cpuflags="-mcpu=$cpu"
  1838. disable vis
  1839. ;;
  1840. sparc64)
  1841. cpuflags="-mcpu=v9"
  1842. ;;
  1843. esac
  1844. elif enabled arm; then
  1845. case $cpu in
  1846. armv*)
  1847. cpuflags="-march=$cpu"
  1848. ;;
  1849. *)
  1850. cpuflags="-mcpu=$cpu"
  1851. ;;
  1852. esac
  1853. elif enabled alpha; then
  1854. enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
  1855. elif enabled bfin; then
  1856. cpuflags="-mcpu=$cpu"
  1857. elif enabled mips; then
  1858. cpuflags="-march=$cpu"
  1859. elif enabled avr32; then
  1860. case $cpu in
  1861. ap7[02]0[0-2])
  1862. subarch="avr32_ap"
  1863. cpuflags="-mpart=$cpu"
  1864. ;;
  1865. ap)
  1866. subarch="avr32_ap"
  1867. cpuflags="-march=$cpu"
  1868. ;;
  1869. uc3[ab]*)
  1870. subarch="avr32_uc"
  1871. cpuflags="-mcpu=$cpu"
  1872. ;;
  1873. uc)
  1874. subarch="avr32_uc"
  1875. cpuflags="-march=$cpu"
  1876. ;;
  1877. esac
  1878. fi
  1879. add_cflags $cpuflags
  1880. add_asflags $cpuflags
  1881. # compiler sanity check
  1882. check_exec <<EOF
  1883. int main(void){ return 0; }
  1884. EOF
  1885. if test "$?" != 0; then
  1886. echo "$cc is unable to create an executable file."
  1887. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  1888. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  1889. echo "Only do this if you know what cross compiling means."
  1890. fi
  1891. die "C compiler test failed."
  1892. fi
  1893. add_cppflags -D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112
  1894. check_cflags -std=c99
  1895. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  1896. #include <stdlib.h>
  1897. EOF
  1898. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  1899. #include <stdlib.h>
  1900. EOF
  1901. check_host_cflags -std=c99
  1902. case "$arch" in
  1903. alpha|ia64|mips|parisc|sparc)
  1904. spic=$shared
  1905. ;;
  1906. x86)
  1907. subarch="x86_32"
  1908. check_cc <<EOF && subarch="x86_64"
  1909. int test[(int)sizeof(char*) - 7];
  1910. EOF
  1911. if test "$subarch" = "x86_64"; then
  1912. spic=$shared
  1913. fi
  1914. ;;
  1915. esac
  1916. enable $subarch
  1917. enabled spic && enable pic
  1918. # OS specific
  1919. case $target_os in
  1920. haiku)
  1921. prefix_default="/boot/common"
  1922. network_extralibs="-lnetwork"
  1923. ;;
  1924. sunos)
  1925. FFSERVERLDFLAGS=""
  1926. SHFLAGS='-shared -Wl,-h,$$(@F)'
  1927. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  1928. network_extralibs="-lsocket -lnsl"
  1929. add_cppflags -D__EXTENSIONS__
  1930. nm_opts='-P -g'
  1931. ;;
  1932. netbsd)
  1933. oss_indev_extralibs="-lossaudio"
  1934. oss_outdev_extralibs="-lossaudio"
  1935. add_cppflags -D_XOPEN_SOURCE=600
  1936. ;;
  1937. openbsd)
  1938. enable malloc_aligned
  1939. # On OpenBSD 4.5. the compiler does not use PIC unless
  1940. # explicitly using -fPIC. FFmpeg builds fine without PIC,
  1941. # however the generated executable will not do anything
  1942. # (simply quits with exit-code 1, no crash, no output).
  1943. # Thus explicitly enable PIC here.
  1944. enable pic
  1945. SHFLAGS='-shared'
  1946. oss_indev_extralibs="-lossaudio"
  1947. oss_outdev_extralibs="-lossaudio"
  1948. ;;
  1949. freebsd|dragonfly)
  1950. enable malloc_aligned
  1951. ;;
  1952. bsd/os)
  1953. osextralibs="-lpoll -lgnugetopt"
  1954. strip="strip -d"
  1955. ;;
  1956. darwin)
  1957. enable malloc_aligned
  1958. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR) -Wl,-read_only_relocs,suppress'
  1959. strip="strip -x"
  1960. FFLDFLAGS="-Wl,-dynamic,-search_paths_first"
  1961. SLIBSUF=".dylib"
  1962. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  1963. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  1964. FFSERVERLDFLAGS=-Wl,-bind_at_load
  1965. objformat="macho"
  1966. enabled x86_64 && objformat="macho64"
  1967. enabled_any pic shared ||
  1968. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  1969. ;;
  1970. mingw32*)
  1971. if test $target_os = "mingw32ce"; then
  1972. disable network
  1973. else
  1974. target_os=mingw32
  1975. fi
  1976. LIBTARGET=i386
  1977. if enabled x86_64; then
  1978. enable malloc_aligned
  1979. LIBTARGET=x64
  1980. elif enabled arm; then
  1981. LIBTARGET=arm
  1982. fi
  1983. shlibdir_default="$bindir_default"
  1984. disable ffserver
  1985. SLIBPREF=""
  1986. SLIBSUF=".dll"
  1987. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  1988. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  1989. SLIB_EXTRA_CMD='-lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)'
  1990. SLIB_INSTALL_EXTRA_CMD='-install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"; \
  1991. install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)"; \
  1992. install -d "$(LIBDIR)"; \
  1993. install -m 644 $(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) "$(LIBDIR)/lib$(SLIBNAME:$(SLIBSUF)=.dll.a)"'
  1994. SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"'
  1995. 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'
  1996. objformat="win32"
  1997. enable dos_paths
  1998. check_cflags -fno-common
  1999. if ! enabled x86_64; then
  2000. check_cpp_condition _mingw.h "(__MINGW32_MAJOR_VERSION > 3) || (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  2001. die "ERROR: MinGW runtime version must be >= 3.15."
  2002. enabled_any avisynth vfwcap_indev &&
  2003. { check_cpp_condition w32api.h "(__W32API_MAJOR_VERSION > 3) || (__W32API_MAJOR_VERSION == 3 && __W32API_MINOR_VERSION >= 13)" ||
  2004. die "ERROR: avisynth and vfwcap_indev require w32api version 3.13 or later."; }
  2005. fi
  2006. ;;
  2007. cygwin*)
  2008. target_os=cygwin
  2009. shlibdir_default="$bindir_default"
  2010. SLIBPREF="cyg"
  2011. SLIBSUF=".dll"
  2012. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2013. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2014. SHFLAGS='-shared -Wl,--enable-auto-image-base'
  2015. objformat="win32"
  2016. enable dos_paths
  2017. check_cflags -fno-common
  2018. ;;
  2019. *-dos|freedos|opendos)
  2020. disable ffplay ffserver
  2021. disable $INDEV_LIST $OUTDEV_LIST
  2022. network_extralibs="-lsocket"
  2023. objformat="coff"
  2024. enable dos_paths
  2025. ;;
  2026. linux)
  2027. enable dv1394
  2028. ;;
  2029. irix*)
  2030. target_os=irix
  2031. ranlib="echo ignoring ranlib"
  2032. ;;
  2033. os/2*)
  2034. strip="lxlite"
  2035. ln_s="cp -f"
  2036. FFLDFLAGS="-Zomf -Zbin-files -Zargs-wild -Zmap"
  2037. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  2038. FFSERVERLDFLAGS=""
  2039. LIBSUF="_s.a"
  2040. SLIBPREF=""
  2041. SLIBSUF=".dll"
  2042. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  2043. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  2044. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  2045. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  2046. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  2047. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  2048. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  2049. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  2050. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  2051. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  2052. SLIB_INSTALL_EXTRA_CMD='install -m 644 $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib "$(LIBDIR)"'
  2053. SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.a "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.lib'
  2054. enable dos_paths
  2055. ;;
  2056. gnu/kfreebsd)
  2057. ;;
  2058. gnu)
  2059. ;;
  2060. none)
  2061. ;;
  2062. *)
  2063. die "Unknown OS '$target_os'."
  2064. ;;
  2065. esac
  2066. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
  2067. set_default $PATHS_LIST
  2068. add_extralibs $osextralibs
  2069. # Combine FFLDFLAGS and the LDFLAGS environment variable.
  2070. LDFLAGS="$FFLDFLAGS $LDFLAGS"
  2071. # we need to build at least one lib type
  2072. if ! enabled_any static shared; then
  2073. cat <<EOF
  2074. At least one library type must be built.
  2075. Specify --enable-static to build the static libraries or --enable-shared to
  2076. build the shared libraries as well. To only build the shared libraries specify
  2077. --disable-static in addition to --enable-shared.
  2078. EOF
  2079. exit 1;
  2080. fi
  2081. disabled static && LIBNAME=""
  2082. if enabled_any libfaad libfaadbin ; then
  2083. if check_header faad.h; then
  2084. check_cc <<EOF
  2085. #include <faad.h>
  2086. #ifndef FAAD2_VERSION
  2087. ok faad1
  2088. #endif
  2089. int main(void) { return 0; }
  2090. EOF
  2091. test $? = 0 && enable libfaad2
  2092. else
  2093. die "FAAD test failed."
  2094. fi
  2095. fi
  2096. die_license_disabled() {
  2097. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  2098. }
  2099. die_license_disabled gpl libfaad2
  2100. die_license_disabled gpl libx264
  2101. die_license_disabled gpl libxvid
  2102. die_license_disabled gpl postproc
  2103. die_license_disabled gpl x11grab
  2104. die_license_disabled nonfree libfaac
  2105. die_license_disabled version3 libopencore_amrnb
  2106. die_license_disabled version3 libopencore_amrwb
  2107. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  2108. check_deps $ARCH_EXT_LIST
  2109. disabled optimizations || check_cflags -fomit-frame-pointer
  2110. enable_pic() {
  2111. enable pic
  2112. add_cppflags -DPIC
  2113. add_cflags -fPIC
  2114. add_asflags -fPIC
  2115. }
  2116. enabled pic && enable_pic
  2117. check_cc <<EOF || die "Symbol mangling check failed."
  2118. int ff_extern;
  2119. EOF
  2120. sym=$($nm $nm_opts $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  2121. extern_prefix=${sym%%ff_extern*}
  2122. check_cc <<EOF && enable inline_asm
  2123. void foo(void) { __asm__ volatile ("" ::); }
  2124. EOF
  2125. _restrict=
  2126. for restrict_keyword in restrict __restrict__ __restrict; do
  2127. check_cc <<EOF && _restrict=$restrict_keyword && break
  2128. void foo(char * $restrict_keyword p);
  2129. EOF
  2130. done
  2131. check_cc <<EOF && enable attribute_packed
  2132. struct { int x; } __attribute__((packed)) x;
  2133. EOF
  2134. check_cc <<EOF && enable attribute_may_alias
  2135. union { int x; } __attribute__((may_alias)) x;
  2136. EOF
  2137. check_cc <<EOF || die "endian test failed"
  2138. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  2139. EOF
  2140. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  2141. if enabled alpha; then
  2142. check_cflags -mieee
  2143. elif enabled arm; then
  2144. check_cflags -marm
  2145. check_ld <<EOF && enable vfp_args
  2146. __asm__ (".eabi_attribute 28, 1");
  2147. int main(void) { return 0; }
  2148. EOF
  2149. # We have to check if pld is a nop and disable it.
  2150. check_asm pld '"pld [r0]"'
  2151. enabled armv5te && check_asm armv5te '"qadd r0, r0, r0"'
  2152. enabled armv6 && check_asm armv6 '"sadd16 r0, r0, r0"'
  2153. enabled armv6t2 && check_asm armv6t2 '"movt r0, #0"'
  2154. enabled armvfp && check_asm armvfp '"fadds s0, s0, s0"'
  2155. enabled iwmmxt && check_asm iwmmxt '"wunpckelub wr6, wr4"'
  2156. enabled neon && check_asm neon '"vadd.i16 q0, q0, q0"'
  2157. enabled_all armv6t2 shared !pic && enable_pic
  2158. elif enabled mips; then
  2159. check_asm loongson '"dmult.g $1, $2, $3"'
  2160. enabled mmi && check_asm mmi '"lq $2, 0($2)"'
  2161. elif enabled ppc; then
  2162. enable local_aligned_8 local_aligned_16
  2163. check_asm dcbzl '"dcbzl 0, 1"'
  2164. check_asm ppc4xx '"maclhw r10, r11, r12"'
  2165. check_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  2166. # AltiVec flags: The FSF version of GCC differs from the Apple version
  2167. if enabled altivec; then
  2168. check_cflags -maltivec -mabi=altivec &&
  2169. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  2170. check_cflags -faltivec
  2171. # check if our compiler supports Motorola AltiVec C API
  2172. check_cc <<EOF || disable altivec
  2173. $inc_altivec_h
  2174. int main(void) {
  2175. vector signed int v1, v2, v3;
  2176. v1 = vec_add(v2,v3);
  2177. return 0;
  2178. }
  2179. EOF
  2180. # check if our compiler supports braces for vector declarations
  2181. check_cc <<EOF || die "You need a compiler that supports {} in AltiVec vector declarations."
  2182. $inc_altivec_h
  2183. int main (void) { (vector int) {1}; return 0; }
  2184. EOF
  2185. fi
  2186. elif enabled sparc; then
  2187. enabled vis && check_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc &&
  2188. add_cflags -mcpu=ultrasparc -mtune=ultrasparc
  2189. elif enabled x86; then
  2190. enable local_aligned_8 local_aligned_16
  2191. # check whether EBP is available on x86
  2192. # As 'i' is stored on the stack, this program will crash
  2193. # if the base pointer is used to access it because the
  2194. # base pointer is cleared in the inline assembly code.
  2195. check_exec_crash <<EOF && enable ebp_available
  2196. volatile int i=0;
  2197. __asm__ volatile (
  2198. "xorl %%ebp, %%ebp"
  2199. ::: "%ebp");
  2200. return i;
  2201. EOF
  2202. # check whether EBX is available on x86
  2203. check_asm ebx_available '""::"b"(0)' &&
  2204. check_asm ebx_available '"":::"%ebx"'
  2205. # check whether more than 10 operands are supported
  2206. check_cc <<EOF && enable ten_operands
  2207. int main(void) {
  2208. int x=0;
  2209. __asm__ volatile(
  2210. ""
  2211. :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
  2212. );
  2213. return 0;
  2214. }
  2215. EOF
  2216. # check whether binutils is new enough to compile SSSE3/MMX2
  2217. enabled ssse3 && check_asm ssse3 '"pabsw %xmm0, %xmm0"'
  2218. enabled mmx2 && check_asm mmx2 '"pmaxub %mm0, %mm1"'
  2219. check_asm bswap '"bswap %%eax" ::: "%eax"'
  2220. YASMFLAGS="-f $objformat -DARCH_$(toupper $subarch)"
  2221. enabled x86_64 && append YASMFLAGS "-m amd64"
  2222. enabled pic && append YASMFLAGS "-DPIC"
  2223. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  2224. case "$objformat" in
  2225. elf) enabled debug && append YASMFLAGS "-g dwarf2" ;;
  2226. esac
  2227. disabled yasm || { check_yasm "pabsw xmm0, xmm0" && enable yasm; }
  2228. case "$cpu" in
  2229. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  2230. disable fast_clz
  2231. ;;
  2232. esac
  2233. fi
  2234. if check_func dlopen; then
  2235. ldl=
  2236. elif check_func dlopen -ldl; then
  2237. ldl=-ldl
  2238. fi
  2239. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  2240. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  2241. check_func fork
  2242. check_func getaddrinfo $network_extralibs
  2243. check_func gethrtime
  2244. check_func getrusage
  2245. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  2246. check_func inet_aton $network_extralibs
  2247. check_func isatty
  2248. check_func ${malloc_prefix}memalign && enable memalign
  2249. check_func mkstemp
  2250. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  2251. check_func setrlimit
  2252. check_func strerror_r
  2253. check_func_headers io.h setmode
  2254. check_func_headers lzo/lzo1x.h lzo1x_999_compress
  2255. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  2256. check_func_headers windows.h GetProcessTimes
  2257. check_func_headers windows.h VirtualAlloc
  2258. check_header conio.h
  2259. check_header dlfcn.h
  2260. check_header dxva2api.h
  2261. check_header malloc.h
  2262. check_header poll.h
  2263. check_header sys/mman.h
  2264. check_header sys/resource.h
  2265. check_header sys/select.h
  2266. check_header termios.h
  2267. check_header vdpau/vdpau.h
  2268. check_header vdpau/vdpau_x11.h
  2269. check_header X11/extensions/XvMClib.h
  2270. check_struct dxva2api.h DXVA_PictureParameters wDecodedPictureIndex
  2271. if ! enabled_any memalign memalign_hack posix_memalign malloc_aligned &&
  2272. enabled_any $need_memalign ; then
  2273. die "Error, no aligned memory allocator but SSE enabled, disable it or use --enable-memalign-hack."
  2274. fi
  2275. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  2276. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  2277. # check for some common methods of building with pthread support
  2278. # do this before the optional library checks as some of them require pthreads
  2279. if enabled pthreads; then
  2280. if check_func pthread_create; then
  2281. :
  2282. elif check_func pthread_create -pthread; then
  2283. add_cflags -pthread
  2284. add_extralibs -pthread
  2285. elif check_func pthread_create -pthreads; then
  2286. add_cflags -pthreads
  2287. add_extralibs -pthreads
  2288. elif check_func pthread_create -lpthreadGC2; then
  2289. add_extralibs -lpthreadGC2
  2290. elif ! check_lib pthread.h pthread_create -lpthread; then
  2291. die "ERROR: can't find pthreads library"
  2292. fi
  2293. fi
  2294. for thread in $THREADS_LIST; do
  2295. if enabled $thread; then
  2296. test -n "$thread_type" &&
  2297. die "ERROR: Only one thread type must be selected." ||
  2298. thread_type="$thread"
  2299. fi
  2300. done
  2301. check_lib math.h sin -lm
  2302. disabled vaapi || check_lib va/va.h vaInitialize -lva
  2303. check_mathfunc exp2
  2304. check_mathfunc exp2f
  2305. check_mathfunc llrint
  2306. check_mathfunc llrintf
  2307. check_mathfunc log2
  2308. check_mathfunc log2f
  2309. check_mathfunc lrint
  2310. check_mathfunc lrintf
  2311. check_mathfunc round
  2312. check_mathfunc roundf
  2313. check_mathfunc truncf
  2314. # these are off by default, so fail if requested and not available
  2315. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
  2316. enabled libdirac && add_cflags $(pkg-config --cflags dirac) &&
  2317. require libdirac libdirac_decoder/dirac_parser.h dirac_decoder_init $(pkg-config --libs dirac) &&
  2318. require libdirac libdirac_encoder/dirac_encoder.h dirac_encoder_init $(pkg-config --libs dirac)
  2319. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  2320. enabled libfaad && require2 libfaad faad.h faacDecOpen -lfaad
  2321. enabled libgsm && require libgsm gsm/gsm.h gsm_create -lgsm
  2322. enabled libmp3lame && require libmp3lame lame/lame.h lame_init -lmp3lame -lm
  2323. enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
  2324. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb -lm
  2325. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb -lm
  2326. enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
  2327. enabled librtmp && require librtmp librtmp/rtmp.h RTMP_Init $(pkg-config --libs librtmp)
  2328. enabled libschroedinger && add_cflags $(pkg-config --cflags schroedinger-1.0) &&
  2329. require libschroedinger schroedinger/schro.h schro_init $(pkg-config --libs schroedinger-1.0)
  2330. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  2331. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  2332. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  2333. enabled libvpx && require2 libvpx "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_dec_init_ver" -lvpx &&
  2334. require2 libvpx "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver" -lvpx
  2335. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 -lm &&
  2336. { check_cpp_condition x264.h "X264_BUILD >= 98" ||
  2337. die "ERROR: libx264 version must be >= 0.98."; }
  2338. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  2339. enabled mlib && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib
  2340. # libdc1394 check
  2341. if enabled libdc1394; then
  2342. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  2343. enable libdc1394_2; } ||
  2344. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  2345. enable libdc1394_1; } ||
  2346. die "ERROR: No version of libdc1394 found "
  2347. fi
  2348. SDL_CONFIG="${cross_prefix}sdl-config"
  2349. if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
  2350. sdl_cflags=$("${SDL_CONFIG}" --cflags)
  2351. sdl_libs=$("${SDL_CONFIG}" --libs)
  2352. check_func_headers SDL.h SDL_Init $sdl_cflags $sdl_libs &&
  2353. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  2354. enable sdl &&
  2355. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  2356. fi
  2357. texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
  2358. if enabled network; then
  2359. check_type "sys/types.h sys/socket.h" socklen_t
  2360. check_type netdb.h "struct addrinfo"
  2361. check_type netinet/in.h "struct ipv6_mreq"
  2362. check_type netinet/in.h "struct sockaddr_in6"
  2363. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  2364. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  2365. # Prefer arpa/inet.h over winsock2
  2366. if check_header arpa/inet.h ; then
  2367. check_func closesocket
  2368. elif check_header winsock2.h ; then
  2369. check_func_headers winsock2.h closesocket -lws2 && \
  2370. network_extralibs="-lws2" || \
  2371. { check_func_headers winsock2.h closesocket -lws2_32 && \
  2372. network_extralibs="-lws2_32"; }
  2373. check_type ws2tcpip.h socklen_t
  2374. check_type ws2tcpip.h "struct addrinfo"
  2375. check_type ws2tcpip.h "struct ipv6_mreq"
  2376. check_type ws2tcpip.h "struct sockaddr_in6"
  2377. check_type ws2tcpip.h "struct sockaddr_storage"
  2378. check_struct winsock2.h "struct sockaddr" sa_len
  2379. else
  2380. disable network
  2381. fi
  2382. fi
  2383. check_header linux/videodev.h
  2384. check_header linux/videodev2.h
  2385. check_header sys/videoio.h
  2386. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  2387. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  2388. { check_header dev/bktr/ioctl_meteor.h &&
  2389. check_header dev/bktr/ioctl_bt848.h; } ||
  2390. { check_header machine/ioctl_meteor.h &&
  2391. check_header machine/ioctl_bt848.h; } ||
  2392. { check_header dev/video/meteor/ioctl_meteor.h &&
  2393. check_header dev/video/bktr/ioctl_bt848.h; } ||
  2394. check_header dev/ic/bt8xx.h
  2395. check_header sys/soundcard.h
  2396. check_header soundcard.h
  2397. enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  2398. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack
  2399. enabled x11grab &&
  2400. check_header X11/Xlib.h &&
  2401. check_header X11/extensions/XShm.h &&
  2402. check_header X11/extensions/Xfixes.h &&
  2403. check_func XOpenDisplay -lX11 &&
  2404. check_func XShmCreateImage -lX11 -lXext &&
  2405. check_func XFixesGetCursorImage -lX11 -lXext -lXfixes
  2406. if ! disabled vdpau && enabled vdpau_vdpau_h; then
  2407. check_cpp_condition \
  2408. vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  2409. { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." &&
  2410. disable vdpau; }
  2411. fi
  2412. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  2413. # add some useful compiler flags if supported
  2414. check_cflags -Wdeclaration-after-statement
  2415. check_cflags -Wall
  2416. check_cflags -Wno-switch
  2417. check_cflags -Wdisabled-optimization
  2418. check_cflags -Wpointer-arith
  2419. check_cflags -Wredundant-decls
  2420. check_cflags -Wno-pointer-sign
  2421. check_cflags -Wcast-qual
  2422. check_cflags -Wwrite-strings
  2423. check_cflags -Wtype-limits
  2424. check_cflags -Wundef
  2425. check_cflags -Wmissing-prototypes
  2426. enabled extra_warnings && check_cflags -Winline
  2427. # add some linker flags
  2428. check_ldflags -Wl,--warn-common
  2429. check_ldflags -Wl,--as-needed
  2430. 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'
  2431. check_ldflags -Wl,-Bsymbolic
  2432. echo "X{};" > $TMPV
  2433. test_ldflags -Wl,--version-script,$TMPV &&
  2434. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  2435. if enabled small; then
  2436. add_cflags $size_cflags
  2437. optimizations="small"
  2438. elif enabled optimizations; then
  2439. add_cflags $speed_cflags
  2440. else
  2441. add_cflags $noopt_cflags
  2442. fi
  2443. check_cflags -fno-math-errno
  2444. check_cflags -fno-signed-zeros
  2445. if enabled icc; then
  2446. # Just warnings, no remarks
  2447. check_cflags -w1
  2448. # -wd: Disable following warnings
  2449. # 144, 167, 556: -Wno-pointer-sign
  2450. # 10006: ignoring unknown option -fno-signed-zeros
  2451. # 10156: ignoring option '-W'; no argument required
  2452. check_cflags -wd144,167,556,10006,10156
  2453. # 11030: Warning unknown option --as-needed
  2454. # 10156: ignoring option '-export'; no argument required
  2455. check_ldflags -wd10156,11030
  2456. # Allow to compile with optimizations
  2457. check_ldflags -march=$cpu
  2458. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  2459. enable ebp_available
  2460. elif enabled ccc; then
  2461. # disable some annoying warnings
  2462. add_cflags -msg_disable cvtu32to64
  2463. add_cflags -msg_disable embedcomment
  2464. add_cflags -msg_disable needconstext
  2465. add_cflags -msg_disable nomainieee
  2466. add_cflags -msg_disable ptrmismatch1
  2467. add_cflags -msg_disable unreachcode
  2468. elif enabled gcc; then
  2469. check_cflags -fno-tree-vectorize
  2470. check_cflags -Werror=implicit
  2471. check_cflags -Werror=missing-prototypes
  2472. elif enabled clang; then
  2473. check_cflags -Qunused-arguments
  2474. elif enabled armcc; then
  2475. # 2523: use of inline assembler is deprecated
  2476. add_cflags -Wrvct,--diag_suppress=2523
  2477. add_cflags -Wrvct,--diag_suppress=1207
  2478. elif enabled tms470; then
  2479. add_cflags -pds=824 -pds=837
  2480. fi
  2481. if enabled gprof; then
  2482. add_cflags -p
  2483. add_ldflags -p
  2484. fi
  2485. enabled_any $THREADS_LIST && enable threads
  2486. check_deps $CONFIG_LIST \
  2487. $CONFIG_EXTRA \
  2488. $HAVE_LIST \
  2489. $DECODER_LIST \
  2490. $ENCODER_LIST \
  2491. $HWACCEL_LIST \
  2492. $PARSER_LIST \
  2493. $BSF_LIST \
  2494. $DEMUXER_LIST \
  2495. $MUXER_LIST \
  2496. $FILTER_LIST \
  2497. $INDEV_LIST \
  2498. $OUTDEV_LIST \
  2499. $PROTOCOL_LIST \
  2500. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  2501. echo "install prefix $prefix"
  2502. echo "source path $source_path"
  2503. echo "C compiler $cc"
  2504. echo "ARCH $arch ($cpu)"
  2505. if test "$build_suffix" != ""; then
  2506. echo "build suffix $build_suffix"
  2507. fi
  2508. if test "$extra_version" != ""; then
  2509. echo "version string suffix $extra_version"
  2510. fi
  2511. echo "big-endian ${bigendian-no}"
  2512. echo "runtime cpu detection ${runtime_cpudetect-no}"
  2513. if enabled x86; then
  2514. echo "yasm ${yasm-no}"
  2515. echo "MMX enabled ${mmx-no}"
  2516. echo "MMX2 enabled ${mmx2-no}"
  2517. echo "3DNow! enabled ${amd3dnow-no}"
  2518. echo "3DNow! extended enabled ${amd3dnowext-no}"
  2519. echo "SSE enabled ${sse-no}"
  2520. echo "SSSE3 enabled ${ssse3-no}"
  2521. echo "CMOV enabled ${cmov-no}"
  2522. echo "CMOV is fast ${fast_cmov-no}"
  2523. echo "EBX available ${ebx_available-no}"
  2524. echo "EBP available ${ebp_available-no}"
  2525. echo "10 operands supported ${ten_operands-no}"
  2526. fi
  2527. if enabled arm; then
  2528. echo "ARMv5TE enabled ${armv5te-no}"
  2529. echo "ARMv6 enabled ${armv6-no}"
  2530. echo "ARMv6T2 enabled ${armv6t2-no}"
  2531. echo "ARM VFP enabled ${armvfp-no}"
  2532. echo "IWMMXT enabled ${iwmmxt-no}"
  2533. echo "NEON enabled ${neon-no}"
  2534. fi
  2535. if enabled mips; then
  2536. echo "MMI enabled ${mmi-no}"
  2537. fi
  2538. if enabled ppc; then
  2539. echo "AltiVec enabled ${altivec-no}"
  2540. echo "PPC 4xx optimizations ${ppc4xx-no}"
  2541. echo "dcbzl available ${dcbzl-no}"
  2542. echo "performance report ${powerpc_perf-no}"
  2543. fi
  2544. if enabled sparc; then
  2545. echo "VIS enabled ${vis-no}"
  2546. fi
  2547. echo "gprof enabled ${gprof-no}"
  2548. echo "debug symbols ${debug-no}"
  2549. echo "strip symbols ${stripping-no}"
  2550. echo "optimizations ${optimizations-no}"
  2551. echo "static ${static-no}"
  2552. echo "shared ${shared-no}"
  2553. echo "postprocessing support ${postproc-no}"
  2554. echo "new filter support ${avfilter-no}"
  2555. echo "filters using lavformat ${avfilter_lavf-no}"
  2556. echo "network support ${network-no}"
  2557. echo "threading support ${thread_type-no}"
  2558. echo "SDL support ${sdl-no}"
  2559. echo "Sun medialib support ${mlib-no}"
  2560. echo "AVISynth enabled ${avisynth-no}"
  2561. echo "libdc1394 support ${libdc1394-no}"
  2562. echo "libdirac enabled ${libdirac-no}"
  2563. echo "libfaac enabled ${libfaac-no}"
  2564. echo "libfaad enabled ${libfaad-no}"
  2565. echo "libfaad dlopened ${libfaadbin-no}"
  2566. echo "libgsm enabled ${libgsm-no}"
  2567. echo "libmp3lame enabled ${libmp3lame-no}"
  2568. echo "libnut enabled ${libnut-no}"
  2569. echo "libopencore-amrnb support ${libopencore_amrnb-no}"
  2570. echo "libopencore-amrwb support ${libopencore_amrwb-no}"
  2571. echo "libopenjpeg enabled ${libopenjpeg-no}"
  2572. echo "librtmp enabled ${librtmp-no}"
  2573. echo "libschroedinger enabled ${libschroedinger-no}"
  2574. echo "libspeex enabled ${libspeex-no}"
  2575. echo "libtheora enabled ${libtheora-no}"
  2576. echo "libvorbis enabled ${libvorbis-no}"
  2577. echo "libvpx enabled ${libvpx-no}"
  2578. echo "libx264 enabled ${libx264-no}"
  2579. echo "libxvid enabled ${libxvid-no}"
  2580. echo "zlib enabled ${zlib-no}"
  2581. echo "bzlib enabled ${bzlib-no}"
  2582. echo
  2583. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  2584. echo "Enabled ${type}s:"
  2585. eval list=\$$(toupper $type)_LIST
  2586. for part in $list; do
  2587. enabled $part && echo ${part%_*}
  2588. done | sort | pr -3 -t
  2589. echo
  2590. done
  2591. license="LGPL version 2.1 or later"
  2592. if enabled nonfree; then
  2593. license="nonfree and unredistributable"
  2594. elif enabled gplv3; then
  2595. license="GPL version 3 or later"
  2596. elif enabled lgplv3; then
  2597. license="LGPL version 3 or later"
  2598. elif enabled gpl; then
  2599. license="GPL version 2 or later"
  2600. fi
  2601. echo "License: $license"
  2602. echo "Creating config.mak and config.h..."
  2603. # build tree in object directory if source path is different from current one
  2604. if enabled source_path_used; then
  2605. DIRS="
  2606. doc
  2607. libavcodec
  2608. libavcodec/$arch
  2609. libavdevice
  2610. libavfilter
  2611. libavformat
  2612. libavutil
  2613. libavutil/$arch
  2614. libpostproc
  2615. libswscale
  2616. libswscale/$arch
  2617. tests
  2618. tools
  2619. "
  2620. FILES="
  2621. Makefile
  2622. common.mak
  2623. subdir.mak
  2624. doc/texi2pod.pl
  2625. libavcodec/Makefile
  2626. libavcodec/${arch}/Makefile
  2627. libavdevice/Makefile
  2628. libavfilter/Makefile
  2629. libavformat/Makefile
  2630. libavutil/Makefile
  2631. libpostproc/Makefile
  2632. libswscale/Makefile
  2633. "
  2634. map 'mkdir -p $v' $DIRS;
  2635. map 'test -f "$source_path/$v" && $ln_s "$source_path/$v" $v' $FILES
  2636. fi
  2637. enabled stripping || strip="echo skipping strip"
  2638. cat > config.mak <<EOF
  2639. # Automatically generated by configure - do not modify!
  2640. ifndef FFMPEG_CONFIG_MAK
  2641. FFMPEG_CONFIG_MAK=1
  2642. FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
  2643. prefix=$prefix
  2644. LIBDIR=\$(DESTDIR)$libdir
  2645. SHLIBDIR=\$(DESTDIR)$shlibdir
  2646. INCDIR=\$(DESTDIR)$incdir
  2647. BINDIR=\$(DESTDIR)$bindir
  2648. DATADIR=\$(DESTDIR)$datadir
  2649. MANDIR=\$(DESTDIR)$mandir
  2650. SRC_PATH="$source_path"
  2651. SRC_PATH_BARE=$source_path
  2652. BUILD_ROOT="$PWD"
  2653. ARCH=$arch
  2654. CC=$cc
  2655. AS=$as
  2656. LD=$ld
  2657. DEPCC=$dep_cc
  2658. YASM=$yasmexe
  2659. YASMDEP=$yasmexe
  2660. AR=$ar
  2661. RANLIB=$ranlib
  2662. CP=cp -p
  2663. LN_S=$ln_s
  2664. STRIP=$strip
  2665. CPPFLAGS=$CPPFLAGS
  2666. CFLAGS=$CFLAGS
  2667. ASFLAGS=$ASFLAGS
  2668. CC_O=$CC_O
  2669. LDFLAGS=$LDFLAGS
  2670. FFSERVERLDFLAGS=$FFSERVERLDFLAGS
  2671. SHFLAGS=$SHFLAGS
  2672. YASMFLAGS=$YASMFLAGS
  2673. BUILDSUF=$build_suffix
  2674. FULLNAME=$FULLNAME
  2675. LIBPREF=$LIBPREF
  2676. LIBSUF=$LIBSUF
  2677. LIBNAME=$LIBNAME
  2678. SLIBPREF=$SLIBPREF
  2679. SLIBSUF=$SLIBSUF
  2680. EXESUF=$EXESUF
  2681. EXTRA_VERSION=$extra_version
  2682. DEPFLAGS=$DEPFLAGS
  2683. CCDEP=$CCDEP
  2684. ASDEP=$ASDEP
  2685. CC_DEPFLAGS=$CC_DEPFLAGS
  2686. AS_DEPFLAGS=$AS_DEPFLAGS
  2687. HOSTCC=$host_cc
  2688. HOSTCFLAGS=$host_cflags
  2689. HOSTEXESUF=$HOSTEXESUF
  2690. HOSTLDFLAGS=$host_ldflags
  2691. HOSTLIBS=$host_libs
  2692. TARGET_EXEC=$target_exec
  2693. TARGET_PATH=$target_path
  2694. SDL_LIBS=$sdl_libs
  2695. SDL_CFLAGS=$sdl_cflags
  2696. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  2697. EXTRALIBS=$extralibs
  2698. INSTALL=install
  2699. LIBTARGET=${LIBTARGET}
  2700. SLIBNAME=${SLIBNAME}
  2701. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  2702. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  2703. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  2704. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  2705. SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD}
  2706. SLIB_UNINSTALL_EXTRA_CMD=${SLIB_UNINSTALL_EXTRA_CMD}
  2707. SAMPLES=$samples
  2708. EOF
  2709. get_version(){
  2710. name=$1
  2711. file=$source_path/$2
  2712. eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
  2713. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  2714. lcname=$(tolower $name)
  2715. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  2716. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  2717. }
  2718. get_version LIBSWSCALE libswscale/swscale.h
  2719. get_version LIBPOSTPROC libpostproc/postprocess.h
  2720. get_version LIBAVCODEC libavcodec/avcodec.h
  2721. get_version LIBAVDEVICE libavdevice/avdevice.h
  2722. get_version LIBAVFORMAT libavformat/avformat.h
  2723. get_version LIBAVUTIL libavutil/avutil.h
  2724. get_version LIBAVFILTER libavfilter/avfilter.h
  2725. cat > $TMPH <<EOF
  2726. /* Automatically generated by configure - do not modify! */
  2727. #ifndef FFMPEG_CONFIG_H
  2728. #define FFMPEG_CONFIG_H
  2729. #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
  2730. #define FFMPEG_LICENSE "$(c_escape $license)"
  2731. #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
  2732. #define CC_TYPE "$cc_type"
  2733. #define CC_VERSION $cc_version
  2734. #define restrict $_restrict
  2735. #define ASMALIGN(ZEROBITS) ".p2align " #ZEROBITS "\\n\\t"
  2736. #define EXTERN_PREFIX "${extern_prefix}"
  2737. #define EXTERN_ASM ${extern_prefix}
  2738. EOF
  2739. test -n "$malloc_prefix" &&
  2740. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  2741. if enabled small || disabled optimizations; then
  2742. echo "#undef av_always_inline" >> $TMPH
  2743. echo "#define av_always_inline" >> $TMPH
  2744. fi
  2745. print_config ARCH_ $TMPH config.mak $ARCH_LIST
  2746. print_config HAVE_ $TMPH config.mak $HAVE_LIST
  2747. print_config CONFIG_ $TMPH config.mak $CONFIG_LIST \
  2748. $CONFIG_EXTRA \
  2749. $DECODER_LIST \
  2750. $ENCODER_LIST \
  2751. $HWACCEL_LIST \
  2752. $PARSER_LIST \
  2753. $BSF_LIST \
  2754. $DEMUXER_LIST \
  2755. $MUXER_LIST \
  2756. $FILTER_LIST \
  2757. $PROTOCOL_LIST \
  2758. $INDEV_LIST \
  2759. $OUTDEV_LIST \
  2760. echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
  2761. echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
  2762. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  2763. cp_if_changed $TMPH config.h
  2764. cat > $TMPH <<EOF
  2765. /* Generated by ffconf */
  2766. #ifndef AVUTIL_AVCONFIG_H
  2767. #define AVUTIL_AVCONFIG_H
  2768. EOF
  2769. print_config AV_HAVE_ $TMPH /dev/null $HAVE_LIST_PUB
  2770. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  2771. cp_if_changed $TMPH libavutil/avconfig.h
  2772. # build pkg-config files
  2773. pkgconfig_generate(){
  2774. name=$1
  2775. shortname=${name#lib}${build_suffix}
  2776. comment=$2
  2777. version=$3
  2778. libs=$4
  2779. requires=$5
  2780. cat <<EOF > $name/$name.pc
  2781. prefix=$prefix
  2782. exec_prefix=\${prefix}
  2783. libdir=$libdir
  2784. includedir=$incdir
  2785. Name: $name
  2786. Description: $comment
  2787. Version: $version
  2788. Requires: $(enabled shared || echo $requires)
  2789. Requires.private: $(enabled shared && echo $requires)
  2790. Conflicts:
  2791. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  2792. Libs.private: $(enabled shared && echo $libs)
  2793. Cflags: -I\${includedir}
  2794. EOF
  2795. cat <<EOF > $name/$name-uninstalled.pc
  2796. prefix=
  2797. exec_prefix=
  2798. libdir=\${pcfiledir}
  2799. includedir=${source_path}
  2800. Name: $name
  2801. Description: $comment
  2802. Version: $version
  2803. Requires: $requires
  2804. Conflicts:
  2805. Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
  2806. Cflags: -I\${includedir}
  2807. EOF
  2808. }
  2809. pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION"
  2810. pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  2811. pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  2812. pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
  2813. enabled avfilter &&
  2814. pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  2815. enabled postproc &&
  2816. pkgconfig_generate libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION"
  2817. pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"