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.

2883 lines
80KB

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