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.

3644 lines
109KB

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