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.

3494 lines
104KB

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