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.

3147 lines
88KB

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