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.

3780 lines
114KB

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