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.

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