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.

3161 lines
89KB

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