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.

3250 lines
95KB

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