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.

2948 lines
83KB

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