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.

3533 lines
105KB

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