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.

4431 lines
133KB

  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. test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH
  51. show_help(){
  52. cat <<EOF
  53. Usage: configure [options]
  54. Options: [defaults in brackets after descriptions]
  55. Help options:
  56. --help print this message
  57. --list-decoders show all available decoders
  58. --list-encoders show all available encoders
  59. --list-hwaccels show all available hardware accelerators
  60. --list-demuxers show all available demuxers
  61. --list-muxers show all available muxers
  62. --list-parsers show all available parsers
  63. --list-protocols show all available protocols
  64. --list-bsfs show all available bitstream filters
  65. --list-indevs show all available input devices
  66. --list-outdevs show all available output devices
  67. --list-filters show all available filters
  68. Standard options:
  69. --logfile=FILE log tests and output to FILE [config.log]
  70. --disable-logging do not log configure debug information
  71. --prefix=PREFIX install in PREFIX [$prefix]
  72. --bindir=DIR install binaries in DIR [PREFIX/bin]
  73. --datadir=DIR install data files in DIR [PREFIX/share/ffmpeg]
  74. --libdir=DIR install libs in DIR [PREFIX/lib]
  75. --shlibdir=DIR install shared libs in DIR [PREFIX/lib]
  76. --incdir=DIR install includes in DIR [PREFIX/include]
  77. --mandir=DIR install man page in DIR [PREFIX/share/man]
  78. Licensing options:
  79. --enable-gpl allow use of GPL code, the resulting libs
  80. and binaries will be under GPL [no]
  81. --enable-version3 upgrade (L)GPL to version 3 [no]
  82. --enable-nonfree allow use of nonfree code, the resulting libs
  83. and binaries will be unredistributable [no]
  84. Configuration options:
  85. --disable-static do not build static libraries [no]
  86. --enable-shared build shared libraries [no]
  87. --enable-small optimize for size instead of speed
  88. --disable-runtime-cpudetect disable detecting cpu capabilities at runtime (smaller binary)
  89. --enable-gray enable full grayscale support (slower color)
  90. --disable-swscale-alpha disable alpha channel support in swscale
  91. Documentation options:
  92. --disable-doc do not build documentation
  93. --disable-htmlpages do not build HTML documentation pages
  94. --disable-manpages do not build man documentation pages
  95. --disable-podpages do not build POD documentation pages
  96. --disable-txtpages do not build text documentation pages
  97. Component options:
  98. --disable-ffmpeg disable ffmpeg build
  99. --disable-ffplay disable ffplay build
  100. --disable-ffprobe disable ffprobe build
  101. --disable-ffserver disable ffserver build
  102. --disable-avdevice disable libavdevice build
  103. --disable-avcodec disable libavcodec build
  104. --disable-avformat disable libavformat build
  105. --disable-swresample disable libswresample build
  106. --disable-swscale disable libswscale build
  107. --disable-postproc disable libpostproc build
  108. --disable-avfilter disable libavfilter build
  109. --enable-avresample enable libavresample build [no]
  110. --disable-pthreads disable pthreads [auto]
  111. --disable-w32threads disable Win32 threads [auto]
  112. --disable-os2threads disable OS/2 threads [auto]
  113. --enable-x11grab enable X11 grabbing [no]
  114. --disable-network disable network support [no]
  115. --disable-dct disable DCT code
  116. --disable-dwt disable DWT code
  117. --disable-lsp disable LSP code
  118. --disable-mdct disable MDCT code
  119. --disable-rdft disable RDFT code
  120. --disable-fft disable FFT code
  121. --enable-dxva2 enable DXVA2 code
  122. --enable-vaapi enable VAAPI code [autodetect]
  123. --enable-vda enable VDA code [autodetect]
  124. --enable-vdpau enable VDPAU code [autodetect]
  125. Individual component options:
  126. --disable-everything disable all components listed below
  127. --disable-encoder=NAME disable encoder NAME
  128. --enable-encoder=NAME enable encoder NAME
  129. --disable-encoders disable all encoders
  130. --disable-decoder=NAME disable decoder NAME
  131. --enable-decoder=NAME enable decoder NAME
  132. --disable-decoders disable all decoders
  133. --disable-hwaccel=NAME disable hwaccel NAME
  134. --enable-hwaccel=NAME enable hwaccel NAME
  135. --disable-hwaccels disable all hwaccels
  136. --disable-muxer=NAME disable muxer NAME
  137. --enable-muxer=NAME enable muxer NAME
  138. --disable-muxers disable all muxers
  139. --disable-demuxer=NAME disable demuxer NAME
  140. --enable-demuxer=NAME enable demuxer NAME
  141. --disable-demuxers disable all demuxers
  142. --enable-parser=NAME enable parser NAME
  143. --disable-parser=NAME disable parser NAME
  144. --disable-parsers disable all parsers
  145. --enable-bsf=NAME enable bitstream filter NAME
  146. --disable-bsf=NAME disable bitstream filter NAME
  147. --disable-bsfs disable all bitstream filters
  148. --enable-protocol=NAME enable protocol NAME
  149. --disable-protocol=NAME disable protocol NAME
  150. --disable-protocols disable all protocols
  151. --enable-indev=NAME enable input device NAME
  152. --disable-indev=NAME disable input device NAME
  153. --disable-indevs disable input devices
  154. --enable-outdev=NAME enable output device NAME
  155. --disable-outdev=NAME disable output device NAME
  156. --disable-outdevs disable output devices
  157. --disable-devices disable all devices
  158. --enable-filter=NAME enable filter NAME
  159. --disable-filter=NAME disable filter NAME
  160. --disable-filters disable all filters
  161. External library support:
  162. --enable-avisynth enable reading of AVISynth script files [no]
  163. --enable-bzlib enable bzlib [autodetect]
  164. --enable-fontconfig enable fontconfig
  165. --enable-frei0r enable frei0r video filtering
  166. --enable-gnutls enable gnutls [no]
  167. --enable-libaacplus enable AAC+ encoding via libaacplus [no]
  168. --enable-libass enable libass subtitles rendering [no]
  169. --enable-libbluray enable BluRay reading using libbluray [no]
  170. --enable-libcaca enable textual display using libcaca
  171. --enable-libcelt enable CELT decoding via libcelt [no]
  172. --enable-libcdio enable audio CD grabbing with libcdio
  173. --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
  174. and libraw1394 [no]
  175. --enable-libfaac enable AAC encoding via libfaac [no]
  176. --enable-libfdk-aac enable AAC encoding via libfdk-aac [no]
  177. --enable-libflite enable flite (voice synthesis) support via libflite [no]
  178. --enable-libfreetype enable libfreetype [no]
  179. --enable-libgsm enable GSM de/encoding via libgsm [no]
  180. --enable-libiec61883 enable iec61883 via libiec61883 [no]
  181. --enable-libilbc enable iLBC de/encoding via libilbc [no]
  182. --enable-libmodplug enable ModPlug via libmodplug [no]
  183. --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
  184. --enable-libnut enable NUT (de)muxing via libnut,
  185. native (de)muxer exists [no]
  186. --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
  187. --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
  188. --enable-libopencv enable video filtering via libopencv [no]
  189. --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
  190. --enable-libopus enable Opus decoding via libopus [no]
  191. --enable-libpulse enable Pulseaudio input via libpulse [no]
  192. --enable-librtmp enable RTMP[E] support via librtmp [no]
  193. --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
  194. --enable-libspeex enable Speex de/encoding via libspeex [no]
  195. --enable-libstagefright-h264 enable H.264 decoding via libstagefright [no]
  196. --enable-libtheora enable Theora encoding via libtheora [no]
  197. --enable-libtwolame enable MP2 encoding via libtwolame [no]
  198. --enable-libutvideo enable Ut Video encoding and decoding via libutvideo [no]
  199. --enable-libv4l2 enable libv4l2/v4l-utils [no]
  200. --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
  201. --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
  202. --enable-libvorbis enable Vorbis en/decoding via libvorbis,
  203. native implementation exists [no]
  204. --enable-libvpx enable VP8 de/encoding via libvpx [no]
  205. --enable-libx264 enable H.264 encoding via x264 [no]
  206. --enable-libxavs enable AVS encoding via xavs [no]
  207. --enable-libxvid enable Xvid encoding via xvidcore,
  208. native MPEG-4/Xvid encoder exists [no]
  209. --enable-openal enable OpenAL 1.1 capture support [no]
  210. --enable-openssl enable openssl [no]
  211. --enable-zlib enable zlib [autodetect]
  212. Advanced options (experts only):
  213. --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
  214. --enable-cross-compile assume a cross-compiler is used
  215. --sysroot=PATH root of cross-build tree
  216. --sysinclude=PATH location of cross-build system headers
  217. --target-os=OS compiler targets OS [$target_os]
  218. --target-exec=CMD command to run executables on target
  219. --target-path=DIR path to view of build directory on target
  220. --toolchain=NAME set tool defaults according to NAME
  221. --nm=NM use nm tool NM [$nm_default]
  222. --ar=AR use archive tool AR [$ar_default]
  223. --as=AS use assembler AS [$as_default]
  224. --yasmexe=EXE use yasm-compatible assembler EXE [$yasmexe_default]
  225. --cc=CC use C compiler CC [$cc_default]
  226. --cxx=CXX use C compiler CXX [$cxx_default]
  227. --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
  228. --ld=LD use linker LD [$ld_default]
  229. --host-cc=HOSTCC use host C compiler HOSTCC
  230. --host-cflags=HCFLAGS use HCFLAGS when compiling for host
  231. --host-ld=HOSTLD use host linker HOSTLD
  232. --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
  233. --host-libs=HLIBS use libs HLIBS when linking for host
  234. --host-os=OS compiler host OS [$target_os]
  235. --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
  236. --extra-cxxflags=ECFLAGS add ECFLAGS to CXXFLAGS [$CXXFLAGS]
  237. --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
  238. --extra-libs=ELIBS add ELIBS [$ELIBS]
  239. --extra-version=STRING version string suffix []
  240. --optflags=OPTFLAGS override optimization-related compiler flags
  241. --build-suffix=SUFFIX library name suffix []
  242. --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
  243. --progs-suffix=SUFFIX program name suffix []
  244. --arch=ARCH select architecture [$arch]
  245. --cpu=CPU select the minimum required CPU (affects
  246. instruction selection, may crash on older CPUs)
  247. --enable-pic build position-independent code
  248. --enable-sram allow use of on-chip SRAM
  249. --enable-thumb compile for Thumb instruction set
  250. --disable-symver disable symbol versioning
  251. --enable-hardcoded-tables use hardcoded tables instead of runtime generation
  252. --disable-safe-bitstream-reader
  253. disable buffer boundary checking in bitreaders
  254. (faster, but may crash)
  255. --enable-memalign-hack emulate memalign, interferes with memory debuggers
  256. --enable-lto use link-time optimization
  257. Optimization options (experts only):
  258. --disable-asm disable all assembler optimizations
  259. --disable-altivec disable AltiVec optimizations
  260. --disable-amd3dnow disable 3DNow! optimizations
  261. --disable-amd3dnowext disable 3DNow! extended optimizations
  262. --disable-mmx disable MMX optimizations
  263. --disable-mmxext disable MMXEXT optimizations
  264. --disable-sse disable SSE optimizations
  265. --disable-sse2 disable SSE2 optimizations
  266. --disable-sse3 disable SSE3 optimizations
  267. --disable-ssse3 disable SSSE3 optimizations
  268. --disable-sse4 disable SSE4 optimizations
  269. --disable-sse42 disable SSE4.2 optimizations
  270. --disable-avx disable AVX optimizations
  271. --disable-fma4 disable FMA4 optimizations
  272. --disable-armv5te disable armv5te optimizations
  273. --disable-armv6 disable armv6 optimizations
  274. --disable-armv6t2 disable armv6t2 optimizations
  275. --disable-armvfp disable ARM VFP optimizations
  276. --disable-neon disable NEON optimizations
  277. --disable-vis disable VIS optimizations
  278. --disable-inline-asm disable use of inline assembler
  279. --disable-yasm disable use of yasm assembler
  280. --disable-mips32r2 disable MIPS32R2 optimizations
  281. --disable-mipsdspr1 disable MIPS DSP ASE R1 optimizations
  282. --disable-mipsdspr2 disable MIPS DSP ASE R2 optimizations
  283. --disable-mipsfpu disable floating point MIPS optimizations
  284. --disable-fast-unaligned consider unaligned accesses slow
  285. --postproc-version=V build libpostproc version V.
  286. Where V can be '$ALT_PP_VER_MAJOR.$ALT_PP_VER_MINOR.$ALT_PP_VER_MICRO' or 'current'. [$postproc_version_default]
  287. Developer options (useful when working on FFmpeg itself):
  288. --enable-coverage build with test coverage instrumentation
  289. --disable-debug disable debugging symbols
  290. --enable-debug=LEVEL set the debug level [$debuglevel]
  291. --disable-optimizations disable compiler optimizations
  292. --enable-extra-warnings enable more compiler warnings
  293. --disable-stripping disable stripping of executables and shared libraries
  294. --assert-level=level 0(default), 1 or 2, amount of assertion testing,
  295. 2 causes a slowdown at runtime.
  296. --enable-memory-poisoning fill heap uninitialized allocated space with arbitrary data
  297. --valgrind=VALGRIND run "make fate" tests through valgrind to detect memory
  298. leaks and errors, using the specified valgrind binary.
  299. Cannot be combined with --target-exec
  300. --enable-ftrapv Trap arithmetic overflows
  301. --samples=PATH location of test samples for FATE, if not set use
  302. \$FATE_SAMPLES at make invocation time.
  303. --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
  304. should be used only for debugging purposes)
  305. --enable-random randomly enable/disable components
  306. --disable-random
  307. --enable-random=LIST randomly enable/disable specific components or
  308. --disable-random=LIST component groups. LIST is a comma-separated list
  309. of NAME[:PROB] entries where NAME is a component
  310. (group) and PROB the probability associated with
  311. NAME (default 0.5).
  312. --random-seed=VALUE seed value for --enable/disable-random
  313. NOTE: Object files are built at the place where configure is launched.
  314. EOF
  315. exit 0
  316. }
  317. quotes='""'
  318. log(){
  319. echo "$@" >> $logfile
  320. }
  321. log_file(){
  322. log BEGIN $1
  323. pr -n -t $1 >> $logfile
  324. log END $1
  325. }
  326. echolog(){
  327. log "$@"
  328. echo "$@"
  329. }
  330. warn(){
  331. log "WARNING: $*"
  332. WARNINGS="${WARNINGS}WARNING: $*\n"
  333. }
  334. die(){
  335. echolog "$@"
  336. cat <<EOF
  337. If you think configure made a mistake, make sure you are using the latest
  338. version from Git. If the latest version fails, report the problem to the
  339. ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
  340. EOF
  341. if disabled logging; then
  342. cat <<EOF
  343. Rerun configure with logging enabled (do not use --disable-logging), and
  344. include the log this produces with your report.
  345. EOF
  346. else
  347. cat <<EOF
  348. Include the log file "$logfile" produced by configure as this will help
  349. solving the problem.
  350. EOF
  351. fi
  352. exit 1
  353. }
  354. # Avoid locale weirdness, besides we really just want to translate ASCII.
  355. toupper(){
  356. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  357. }
  358. tolower(){
  359. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  360. }
  361. c_escape(){
  362. echo "$*" | sed 's/["\\]/\\\0/g'
  363. }
  364. sh_quote(){
  365. v=$(echo "$1" | sed "s/'/'\\\\''/g")
  366. test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
  367. echo "$v"
  368. }
  369. cleanws(){
  370. echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//'
  371. }
  372. filter(){
  373. pat=$1
  374. shift
  375. for v; do
  376. eval "case $v in $pat) echo $v ;; esac"
  377. done
  378. }
  379. filter_out(){
  380. pat=$1
  381. shift
  382. for v; do
  383. eval "case $v in $pat) ;; *) echo $v ;; esac"
  384. done
  385. }
  386. map(){
  387. m=$1
  388. shift
  389. for v; do eval $m; done
  390. }
  391. add_suffix(){
  392. suffix=$1
  393. shift
  394. for v; do echo ${v}${suffix}; done
  395. }
  396. set_all(){
  397. value=$1
  398. shift
  399. for var in $*; do
  400. eval $var=$value
  401. done
  402. }
  403. set_weak(){
  404. value=$1
  405. shift
  406. for var; do
  407. eval : \${$var:=$value}
  408. done
  409. }
  410. set_safe(){
  411. var=$1
  412. shift
  413. eval $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')='$*'
  414. }
  415. get_safe(){
  416. eval echo \$$(echo "$1" | sed 's/[^A-Za-z0-9_]/_/g')
  417. }
  418. pushvar(){
  419. for var in $*; do
  420. eval level=\${${var}_level:=0}
  421. eval ${var}_${level}="\$$var"
  422. eval ${var}_level=$(($level+1))
  423. done
  424. }
  425. popvar(){
  426. for var in $*; do
  427. eval level=\${${var}_level:-0}
  428. test $level = 0 && continue
  429. eval level=$(($level-1))
  430. eval $var="\${${var}_${level}}"
  431. eval ${var}_level=$level
  432. eval unset ${var}_${level}
  433. done
  434. }
  435. enable(){
  436. set_all yes $*
  437. }
  438. disable(){
  439. set_all no $*
  440. }
  441. enable_weak(){
  442. set_weak yes $*
  443. }
  444. disable_weak(){
  445. set_weak no $*
  446. }
  447. enable_safe(){
  448. for var; do
  449. enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  450. done
  451. }
  452. disable_safe(){
  453. for var; do
  454. disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  455. done
  456. }
  457. do_enable_deep(){
  458. for var; do
  459. enabled $var && continue
  460. eval sel="\$${var}_select"
  461. eval sgs="\$${var}_suggest"
  462. pushvar var sgs
  463. enable_deep $sel
  464. popvar sgs
  465. enable_deep_weak $sgs
  466. popvar var
  467. done
  468. }
  469. enable_deep(){
  470. do_enable_deep $*
  471. enable $*
  472. }
  473. enable_deep_weak(){
  474. do_enable_deep $*
  475. enable_weak $*
  476. }
  477. enabled(){
  478. test "${1#!}" = "$1" && op== || op=!=
  479. eval test "x\$${1#!}" $op "xyes"
  480. }
  481. disabled(){
  482. test "${1#!}" = "$1" && op== || op=!=
  483. eval test "x\$${1#!}" $op "xno"
  484. }
  485. enabled_all(){
  486. for opt; do
  487. enabled $opt || return 1
  488. done
  489. }
  490. disabled_all(){
  491. for opt; do
  492. disabled $opt || return 1
  493. done
  494. }
  495. enabled_any(){
  496. for opt; do
  497. enabled $opt && return 0
  498. done
  499. }
  500. disabled_any(){
  501. for opt; do
  502. disabled $opt && return 0
  503. done
  504. return 1
  505. }
  506. set_default(){
  507. for opt; do
  508. eval : \${$opt:=\$${opt}_default}
  509. done
  510. }
  511. is_in(){
  512. value=$1
  513. shift
  514. for var in $*; do
  515. [ $var = $value ] && return 0
  516. done
  517. return 1
  518. }
  519. check_deps(){
  520. for cfg; do
  521. cfg="${cfg#!}"
  522. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  523. disabled ${cfg}_checking && continue
  524. enable ${cfg}_checking
  525. eval dep_all="\$${cfg}_deps"
  526. eval dep_any="\$${cfg}_deps_any"
  527. eval dep_sel="\$${cfg}_select"
  528. eval dep_sgs="\$${cfg}_suggest"
  529. eval dep_ifa="\$${cfg}_if"
  530. eval dep_ifn="\$${cfg}_if_any"
  531. pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  532. check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
  533. popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  534. [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
  535. [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
  536. enabled_all $dep_all || disable $cfg
  537. enabled_any $dep_any || disable $cfg
  538. disabled_any $dep_sel && disable $cfg
  539. if enabled $cfg; then
  540. eval dep_extralibs="\$${cfg}_extralibs"
  541. test -n "$dep_extralibs" && add_extralibs $dep_extralibs
  542. enable_deep $dep_sel
  543. enable_deep_weak $dep_sgs
  544. fi
  545. disable ${cfg}_checking
  546. done
  547. }
  548. print_config_h(){
  549. enabled $1 && v=1 || v=0
  550. echo "#define $2 $v"
  551. }
  552. print_config_mak(){
  553. enabled $1 && v= || v=!
  554. echo "$v$2=yes"
  555. }
  556. print_config_asm(){
  557. enabled $1 && v=1 || v=0
  558. echo "%define $2 $v"
  559. }
  560. print_config(){
  561. pfx=$1
  562. files=$2
  563. shift 2
  564. for cfg; do
  565. ucname="$(toupper $cfg)"
  566. for f in $files; do
  567. "print_config_${f##*.}" $cfg ${pfx}${ucname} >>$f
  568. done
  569. done
  570. }
  571. print_enabled(){
  572. test x"$1" = x-n && end=" " && shift || end="\n"
  573. suf=$1
  574. shift
  575. for v; do
  576. enabled $v && printf "%s$end" ${v%$suf};
  577. done
  578. }
  579. append(){
  580. var=$1
  581. shift
  582. eval "$var=\"\$$var $*\""
  583. }
  584. prepend(){
  585. var=$1
  586. shift
  587. eval "$var=\"$* \$$var\""
  588. }
  589. add_cppflags(){
  590. append CPPFLAGS "$@"
  591. }
  592. add_cflags(){
  593. append CFLAGS $($cflags_filter "$@")
  594. }
  595. add_cxxflags(){
  596. append CXXFLAGS $($cflags_filter "$@")
  597. }
  598. add_asflags(){
  599. append ASFLAGS $($asflags_filter "$@")
  600. }
  601. add_ldflags(){
  602. append LDFLAGS $($ldflags_filter "$@")
  603. }
  604. add_extralibs(){
  605. prepend extralibs $($ldflags_filter "$@")
  606. }
  607. add_host_cflags(){
  608. append host_cflags $($host_cflags_filter "$@")
  609. }
  610. add_host_ldflags(){
  611. append host_ldflags $($host_ldflags_filter "$@")
  612. }
  613. add_compat(){
  614. append compat_objs $1
  615. shift
  616. map 'add_cppflags -D$v' "$@"
  617. }
  618. check_cmd(){
  619. log "$@"
  620. "$@" >> $logfile 2>&1
  621. }
  622. cc_o(){
  623. eval printf '%s\\n' $CC_O
  624. }
  625. cc_e(){
  626. eval printf '%s\\n' $CC_E
  627. }
  628. check_cc(){
  629. log check_cc "$@"
  630. cat > $TMPC
  631. log_file $TMPC
  632. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
  633. }
  634. check_cxx(){
  635. log check_cxx "$@"
  636. cat > $TMPCPP
  637. log_file $TMPCPP
  638. check_cmd $cxx $CPPFLAGS $CFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
  639. }
  640. check_cpp(){
  641. log check_cpp "$@"
  642. cat > $TMPC
  643. log_file $TMPC
  644. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
  645. }
  646. as_o(){
  647. eval printf '%s\\n' $AS_O
  648. }
  649. check_as(){
  650. log check_as "$@"
  651. cat > $TMPC
  652. log_file $TMPC
  653. check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPC
  654. }
  655. check_inline_asm(){
  656. log check_inline_asm "$@"
  657. name="$1"
  658. code="$2"
  659. shift 2
  660. disable $name
  661. check_as "$@" <<EOF && enable $name
  662. void foo(void){ __asm__ volatile($code); }
  663. EOF
  664. }
  665. check_yasm(){
  666. log check_yasm "$@"
  667. echo "$1" > $TMPS
  668. log_file $TMPS
  669. shift 1
  670. check_cmd $yasmexe $YASMFLAGS -Werror "$@" -o $TMPO $TMPS
  671. }
  672. ld_o(){
  673. eval printf '%s\\n' $LD_O
  674. }
  675. check_ld(){
  676. log check_ld "$@"
  677. type=$1
  678. shift 1
  679. flags=$(filter_out '-l*' $@)
  680. libs=$(filter '-l*' $@)
  681. check_$type $($cflags_filter $flags) || return
  682. flags=$($ldflags_filter $flags)
  683. libs=$($ldflags_filter $libs)
  684. check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
  685. }
  686. check_code(){
  687. log check_code "$@"
  688. check=$1
  689. headers=$2
  690. code=$3
  691. shift 3
  692. {
  693. for hdr in $headers; do
  694. echo "#include <$hdr>"
  695. done
  696. echo "int main(void) { $code; return 0; }"
  697. } | check_$check "$@"
  698. }
  699. check_cppflags(){
  700. log check_cppflags "$@"
  701. check_cc "$@" <<EOF && append CPPFLAGS "$@"
  702. int x;
  703. EOF
  704. }
  705. check_cflags(){
  706. log check_cflags "$@"
  707. set -- $($cflags_filter "$@")
  708. check_cc "$@" <<EOF && append CFLAGS "$@"
  709. int x;
  710. EOF
  711. }
  712. check_cxxflags(){
  713. log check_cxxflags "$@"
  714. set -- $($cflags_filter "$@")
  715. check_cxx "$@" <<EOF && append CXXFLAGS "$@"
  716. int x;
  717. EOF
  718. }
  719. test_ldflags(){
  720. log test_ldflags "$@"
  721. check_ld "cc" "$@" <<EOF
  722. int main(void){ return 0; }
  723. EOF
  724. }
  725. check_ldflags(){
  726. log check_ldflags "$@"
  727. test_ldflags "$@" && add_ldflags "$@"
  728. }
  729. check_header(){
  730. log check_header "$@"
  731. header=$1
  732. shift
  733. disable_safe $header
  734. check_cpp "$@" <<EOF && enable_safe $header
  735. #include <$header>
  736. int x;
  737. EOF
  738. }
  739. check_func(){
  740. log check_func "$@"
  741. func=$1
  742. shift
  743. disable $func
  744. check_ld "cc" "$@" <<EOF && enable $func
  745. extern int $func();
  746. int main(void){ $func(); }
  747. EOF
  748. }
  749. check_mathfunc(){
  750. log check_mathfunc "$@"
  751. func=$1
  752. shift
  753. disable $func
  754. check_ld "cc" "$@" <<EOF && enable $func
  755. #include <math.h>
  756. float foo(float f) { return $func(f); }
  757. int main(void){ return (int) foo; }
  758. EOF
  759. }
  760. check_func_headers(){
  761. log check_func_headers "$@"
  762. headers=$1
  763. funcs=$2
  764. shift 2
  765. {
  766. for hdr in $headers; do
  767. echo "#include <$hdr>"
  768. done
  769. for func in $funcs; do
  770. echo "long check_$func(void) { return (long) $func; }"
  771. done
  772. echo "int main(void) { return 0; }"
  773. } | check_ld "cc" "$@" && enable $funcs && enable_safe $headers
  774. }
  775. check_class_headers_cpp(){
  776. log check_class_headers_cpp "$@"
  777. headers=$1
  778. classes=$2
  779. shift 2
  780. {
  781. for hdr in $headers; do
  782. echo "#include <$hdr>"
  783. done
  784. echo "int main(void) { "
  785. i=1
  786. for class in $classes; do
  787. echo "$class obj$i;"
  788. i=$(expr $i + 1)
  789. done
  790. echo "return 0; }"
  791. } | check_ld "cxx" "$@" && enable $funcs && enable_safe $headers
  792. }
  793. check_cpp_condition(){
  794. log check_cpp_condition "$@"
  795. header=$1
  796. condition=$2
  797. shift 2
  798. check_cpp "$@" <<EOF
  799. #include <$header>
  800. #if !($condition)
  801. #error "unsatisfied condition: $condition"
  802. #endif
  803. EOF
  804. }
  805. check_lib(){
  806. log check_lib "$@"
  807. header="$1"
  808. func="$2"
  809. shift 2
  810. check_header $header && check_func $func "$@" && add_extralibs "$@"
  811. }
  812. check_lib2(){
  813. log check_lib2 "$@"
  814. headers="$1"
  815. funcs="$2"
  816. shift 2
  817. check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
  818. }
  819. check_lib_cpp(){
  820. log check_lib_cpp "$@"
  821. headers="$1"
  822. classes="$2"
  823. shift 2
  824. check_class_headers_cpp "$headers" "$classes" "$@" && add_extralibs "$@"
  825. }
  826. check_pkg_config(){
  827. log check_pkg_config "$@"
  828. pkg="$1"
  829. headers="$2"
  830. funcs="$3"
  831. shift 3
  832. $pkg_config --exists $pkg 2>/dev/null || return
  833. pkg_cflags=$($pkg_config --cflags $pkg)
  834. pkg_libs=$($pkg_config --libs $pkg)
  835. check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
  836. set_safe ${pkg}_cflags $pkg_cflags &&
  837. set_safe ${pkg}_libs $pkg_libs
  838. }
  839. check_exec(){
  840. check_ld "cc" "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
  841. }
  842. check_exec_crash(){
  843. code=$(cat)
  844. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  845. # are safe but may not be available everywhere. Thus we use
  846. # raise(SIGTERM) instead. The check is run in a subshell so we
  847. # can redirect the "Terminated" message from the shell. SIGBUS
  848. # is not defined by standard C so it is used conditionally.
  849. (check_exec "$@") >> $logfile 2>&1 <<EOF
  850. #include <signal.h>
  851. static void sighandler(int sig){
  852. raise(SIGTERM);
  853. }
  854. int func(void){
  855. $code
  856. }
  857. int (*func_ptr)(void) = func;
  858. int main(void){
  859. signal(SIGILL, sighandler);
  860. signal(SIGFPE, sighandler);
  861. signal(SIGSEGV, sighandler);
  862. #ifdef SIGBUS
  863. signal(SIGBUS, sighandler);
  864. #endif
  865. return func_ptr();
  866. }
  867. EOF
  868. }
  869. check_type(){
  870. log check_type "$@"
  871. headers=$1
  872. type=$2
  873. shift 2
  874. disable_safe "$type"
  875. check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
  876. }
  877. check_struct(){
  878. log check_type "$@"
  879. headers=$1
  880. struct=$2
  881. member=$3
  882. shift 3
  883. disable_safe "${struct}_${member}"
  884. check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
  885. enable_safe "${struct}_${member}"
  886. }
  887. require(){
  888. name="$1"
  889. header="$2"
  890. func="$3"
  891. shift 3
  892. check_lib $header $func "$@" || die "ERROR: $name not found"
  893. }
  894. require2(){
  895. name="$1"
  896. headers="$2"
  897. func="$3"
  898. shift 3
  899. check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
  900. }
  901. require_cpp(){
  902. name="$1"
  903. headers="$2"
  904. classes="$3"
  905. shift 3
  906. check_lib_cpp "$headers" "$classes" "$@" || die "ERROR: $name not found"
  907. }
  908. require_pkg_config(){
  909. pkg="$1"
  910. check_pkg_config "$@" || die "ERROR: $pkg not found"
  911. add_cflags $(get_safe ${pkg}_cflags)
  912. add_extralibs $(get_safe ${pkg}_libs)
  913. }
  914. hostcc_o(){
  915. eval printf '%s\\n' $HOSTCC_O
  916. }
  917. check_host_cc(){
  918. log check_host_cc "$@"
  919. cat > $TMPC
  920. log_file $TMPC
  921. check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
  922. }
  923. check_host_cflags(){
  924. log check_host_cflags "$@"
  925. set -- $($host_cflags_filter "$@")
  926. check_host_cc "$@" <<EOF && append host_cflags "$@"
  927. int x;
  928. EOF
  929. }
  930. apply(){
  931. file=$1
  932. shift
  933. "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
  934. }
  935. cp_if_changed(){
  936. cmp -s "$1" "$2" && echo "$2 is unchanged" && return
  937. mkdir -p "$(dirname $2)"
  938. cp -f "$1" "$2"
  939. }
  940. # CONFIG_LIST contains configurable options, while HAVE_LIST is for
  941. # system-dependent things.
  942. COMPONENT_LIST="
  943. bsfs
  944. decoders
  945. demuxers
  946. encoders
  947. filters
  948. hwaccels
  949. indevs
  950. muxers
  951. outdevs
  952. parsers
  953. protocols
  954. "
  955. DOCUMENT_LIST="
  956. doc
  957. htmlpages
  958. manpages
  959. podpages
  960. txtpages
  961. "
  962. PROGRAM_LIST="
  963. ffplay
  964. ffprobe
  965. ffserver
  966. ffmpeg
  967. "
  968. CONFIG_LIST="
  969. $COMPONENT_LIST
  970. $DOCUMENT_LIST
  971. $PROGRAM_LIST
  972. avcodec
  973. avdevice
  974. avfilter
  975. avformat
  976. avresample
  977. avisynth
  978. bzlib
  979. crystalhd
  980. dct
  981. dwt
  982. dxva2
  983. fast_unaligned
  984. fft
  985. fontconfig
  986. frei0r
  987. ftrapv
  988. gnutls
  989. gpl
  990. gray
  991. hardcoded_tables
  992. incompatible_fork_abi
  993. libaacplus
  994. libass
  995. libbluray
  996. libcaca
  997. libcdio
  998. libcelt
  999. libdc1394
  1000. libfaac
  1001. libfdk_aac
  1002. libflite
  1003. libfreetype
  1004. libgsm
  1005. libiec61883
  1006. libilbc
  1007. libmodplug
  1008. libmp3lame
  1009. libnut
  1010. libopencore_amrnb
  1011. libopencore_amrwb
  1012. libopencv
  1013. libopenjpeg
  1014. libopus
  1015. libpulse
  1016. librtmp
  1017. libschroedinger
  1018. libspeex
  1019. libstagefright_h264
  1020. libtheora
  1021. libtwolame
  1022. libutvideo
  1023. libv4l2
  1024. libvo_aacenc
  1025. libvo_amrwbenc
  1026. libvorbis
  1027. libvpx
  1028. libx264
  1029. libxavs
  1030. libxvid
  1031. lsp
  1032. mdct
  1033. memalign_hack
  1034. memory_poisoning
  1035. network
  1036. nonfree
  1037. openal
  1038. openssl
  1039. pic
  1040. postproc
  1041. rdft
  1042. runtime_cpudetect
  1043. safe_bitstream_reader
  1044. shared
  1045. small
  1046. sram
  1047. static
  1048. swresample
  1049. swscale
  1050. swscale_alpha
  1051. thumb
  1052. vaapi
  1053. vda
  1054. vdpau
  1055. version3
  1056. xmm_clobber_test
  1057. x11grab
  1058. zlib
  1059. "
  1060. THREADS_LIST='
  1061. pthreads
  1062. w32threads
  1063. os2threads
  1064. '
  1065. ARCH_LIST='
  1066. alpha
  1067. arm
  1068. avr32
  1069. avr32_ap
  1070. avr32_uc
  1071. bfin
  1072. ia64
  1073. m68k
  1074. mips
  1075. mips64
  1076. parisc
  1077. ppc
  1078. ppc64
  1079. s390
  1080. sh4
  1081. sparc
  1082. sparc64
  1083. tilegx
  1084. tilepro
  1085. tomi
  1086. x86
  1087. x86_32
  1088. x86_64
  1089. '
  1090. ARCH_EXT_LIST_X86='
  1091. amd3dnow
  1092. amd3dnowext
  1093. avx
  1094. fma4
  1095. mmx
  1096. mmxext
  1097. sse
  1098. sse2
  1099. sse3
  1100. sse4
  1101. sse42
  1102. ssse3
  1103. '
  1104. ARCH_EXT_LIST="
  1105. $ARCH_EXT_LIST_X86
  1106. altivec
  1107. armv5te
  1108. armv6
  1109. armv6t2
  1110. armvfp
  1111. neon
  1112. ppc4xx
  1113. vfpv3
  1114. vis
  1115. mipsfpu
  1116. mips32r2
  1117. mipsdspr1
  1118. mipsdspr2
  1119. "
  1120. HAVE_LIST_CMDLINE='
  1121. inline_asm
  1122. symver
  1123. yasm
  1124. '
  1125. HAVE_LIST_PUB='
  1126. bigendian
  1127. fast_unaligned
  1128. incompatible_fork_abi
  1129. '
  1130. HAVE_LIST="
  1131. $ARCH_EXT_LIST
  1132. $(add_suffix _external $ARCH_EXT_LIST)
  1133. $(add_suffix _inline $ARCH_EXT_LIST)
  1134. $HAVE_LIST_CMDLINE
  1135. $HAVE_LIST_PUB
  1136. $THREADS_LIST
  1137. aligned_malloc
  1138. aligned_stack
  1139. alsa_asoundlib_h
  1140. altivec_h
  1141. arpa_inet_h
  1142. asm_mod_q
  1143. asm_mod_y
  1144. asm_types_h
  1145. attribute_may_alias
  1146. attribute_packed
  1147. cbrtf
  1148. clock_gettime
  1149. closesocket
  1150. cmov
  1151. cpunop
  1152. CryptGenRandom
  1153. dcbzl
  1154. dev_bktr_ioctl_bt848_h
  1155. dev_bktr_ioctl_meteor_h
  1156. dev_ic_bt8xx_h
  1157. dev_video_bktr_ioctl_bt848_h
  1158. dev_video_meteor_ioctl_meteor_h
  1159. direct_h
  1160. dlfcn_h
  1161. dlopen
  1162. dos_paths
  1163. dxva_h
  1164. ebp_available
  1165. ebx_available
  1166. exp2
  1167. exp2f
  1168. fast_64bit
  1169. fast_clz
  1170. fast_cmov
  1171. fcntl
  1172. fork
  1173. getaddrinfo
  1174. gethrtime
  1175. getopt
  1176. GetProcessAffinityMask
  1177. GetProcessMemoryInfo
  1178. GetProcessTimes
  1179. GetSystemTimeAsFileTime
  1180. getrusage
  1181. gettimeofday
  1182. glob
  1183. gnu_as
  1184. ibm_asm
  1185. inet_aton
  1186. io_h
  1187. isatty
  1188. isinf
  1189. isnan
  1190. jack_port_get_latency_range
  1191. kbhit
  1192. ldbrx
  1193. libdc1394_1
  1194. libdc1394_2
  1195. llrint
  1196. llrintf
  1197. local_aligned_16
  1198. local_aligned_8
  1199. localtime_r
  1200. log2
  1201. log2f
  1202. loongson
  1203. lrint
  1204. lrintf
  1205. lzo1x_999_compress
  1206. machine_ioctl_bt848_h
  1207. machine_ioctl_meteor_h
  1208. makeinfo
  1209. malloc_h
  1210. MapViewOfFile
  1211. memalign
  1212. mkstemp
  1213. mm_empty
  1214. mmap
  1215. mprotect
  1216. msvcrt
  1217. nanosleep
  1218. PeekNamedPipe
  1219. perl
  1220. pod2man
  1221. poll_h
  1222. posix_memalign
  1223. pthread_cancel
  1224. rdtsc
  1225. rint
  1226. round
  1227. roundf
  1228. sched_getaffinity
  1229. sdl
  1230. sdl_video_size
  1231. setmode
  1232. setrlimit
  1233. Sleep
  1234. sndio_h
  1235. socklen_t
  1236. soundcard_h
  1237. strerror_r
  1238. struct_addrinfo
  1239. struct_group_source_req
  1240. struct_ip_mreq_source
  1241. struct_ipv6_mreq
  1242. struct_pollfd
  1243. struct_rusage_ru_maxrss
  1244. struct_sctp_event_subscribe
  1245. struct_sockaddr_in6
  1246. struct_sockaddr_sa_len
  1247. struct_sockaddr_storage
  1248. struct_v4l2_frmivalenum_discrete
  1249. symver_asm_label
  1250. symver_gnu_asm
  1251. sysconf
  1252. sysctl
  1253. sys_mman_h
  1254. sys_param_h
  1255. sys_resource_h
  1256. sys_select_h
  1257. sys_soundcard_h
  1258. sys_time_h
  1259. sys_videoio_h
  1260. termios_h
  1261. texi2html
  1262. threads
  1263. trunc
  1264. truncf
  1265. unistd_h
  1266. usleep
  1267. vfp_args
  1268. VirtualAlloc
  1269. windows_h
  1270. winsock2_h
  1271. xform_asm
  1272. xmm_clobbers
  1273. "
  1274. # options emitted with CONFIG_ prefix but not available on command line
  1275. CONFIG_EXTRA="
  1276. aandcttables
  1277. ac3dsp
  1278. avutil
  1279. error_resilience
  1280. gcrypt
  1281. golomb
  1282. gplv3
  1283. h264chroma
  1284. h264dsp
  1285. h264pred
  1286. h264qpel
  1287. huffman
  1288. lgplv3
  1289. lpc
  1290. mpegaudio
  1291. mpegaudiodsp
  1292. mpegvideo
  1293. mpegvideoenc
  1294. nettle
  1295. rangecoder
  1296. rtpdec
  1297. sinewin
  1298. vp3dsp
  1299. "
  1300. CMDLINE_SELECT="
  1301. $ARCH_EXT_LIST
  1302. $CONFIG_LIST
  1303. $HAVE_LIST_CMDLINE
  1304. $THREADS_LIST
  1305. asm
  1306. coverage
  1307. cross_compile
  1308. debug
  1309. extra_warnings
  1310. logging
  1311. lto
  1312. optimizations
  1313. stripping
  1314. "
  1315. PATHS_LIST='
  1316. bindir
  1317. datadir
  1318. incdir
  1319. libdir
  1320. mandir
  1321. prefix
  1322. shlibdir
  1323. '
  1324. CMDLINE_SET="
  1325. $PATHS_LIST
  1326. ar
  1327. arch
  1328. as
  1329. assert_level
  1330. build_suffix
  1331. cc
  1332. cpu
  1333. cross_prefix
  1334. cxx
  1335. dep_cc
  1336. extra_version
  1337. host_cc
  1338. host_cflags
  1339. host_ld
  1340. host_ldflags
  1341. host_libs
  1342. host_os
  1343. install
  1344. ld
  1345. logfile
  1346. malloc_prefix
  1347. nm
  1348. optflags
  1349. pkg_config
  1350. postproc_version
  1351. progs_suffix
  1352. random_seed
  1353. samples
  1354. strip
  1355. sysinclude
  1356. sysroot
  1357. target_exec
  1358. target_os
  1359. target_path
  1360. toolchain
  1361. valgrind
  1362. yasmexe
  1363. "
  1364. CMDLINE_APPEND="
  1365. extra_cflags
  1366. extra_cxxflags
  1367. "
  1368. # code dependency declarations
  1369. # architecture extensions
  1370. armv5te_deps="arm"
  1371. armv6_deps="arm"
  1372. armv6t2_deps="arm"
  1373. armvfp_deps="arm"
  1374. neon_deps="arm"
  1375. vfpv3_deps="armvfp"
  1376. mipsfpu_deps="mips"
  1377. mips32r2_deps="mips"
  1378. mipsdspr1_deps="mips"
  1379. mipsdspr2_deps="mips"
  1380. altivec_deps="ppc"
  1381. ppc4xx_deps="ppc"
  1382. vis_deps="sparc"
  1383. x86_64_suggest="cmov fast_cmov"
  1384. amd3dnow_deps="mmx"
  1385. amd3dnowext_deps="amd3dnow"
  1386. mmx_deps="x86"
  1387. mmxext_deps="mmx"
  1388. sse_deps="mmxext"
  1389. sse2_deps="sse"
  1390. sse3_deps="sse2"
  1391. ssse3_deps="sse3"
  1392. sse4_deps="ssse3"
  1393. sse42_deps="sse4"
  1394. avx_deps="sse42"
  1395. fma4_deps="avx"
  1396. mmx_external_deps="yasm"
  1397. mmx_inline_deps="inline_asm"
  1398. mmx_suggest="mmx_external mmx_inline"
  1399. for ext in $(filter_out mmx $ARCH_EXT_LIST_X86); do
  1400. eval dep=\$${ext}_deps
  1401. eval ${ext}_external_deps='"${dep}_external"'
  1402. eval ${ext}_inline_deps='"${dep}_inline"'
  1403. eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
  1404. done
  1405. aligned_stack_if_any="ppc x86"
  1406. fast_64bit_if_any="alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
  1407. fast_clz_if_any="alpha armv5te avr32 mips ppc x86"
  1408. fast_unaligned_if_any="armv6 ppc x86"
  1409. inline_asm_deps="!tms470"
  1410. need_memalign="altivec neon sse"
  1411. symver_if_any="symver_asm_label symver_gnu_asm"
  1412. log2_deps="!msvcrt"
  1413. # subsystems
  1414. dct_select="rdft"
  1415. mdct_select="fft"
  1416. rdft_select="fft"
  1417. mpegaudio_select="mpegaudiodsp"
  1418. mpegaudiodsp_select="dct"
  1419. mpegvideoenc_select="mpegvideo"
  1420. # decoders / encoders / hardware accelerators
  1421. aac_decoder_select="mdct sinewin"
  1422. aac_encoder_select="mdct sinewin"
  1423. aac_latm_decoder_select="aac_decoder aac_latm_parser"
  1424. ac3_decoder_select="mdct ac3dsp ac3_parser"
  1425. ac3_encoder_select="mdct ac3dsp"
  1426. ac3_fixed_encoder_select="mdct ac3dsp"
  1427. alac_encoder_select="lpc"
  1428. amrnb_decoder_select="lsp"
  1429. amrwb_decoder_select="lsp"
  1430. amv_encoder_select="aandcttables"
  1431. atrac1_decoder_select="mdct sinewin"
  1432. atrac3_decoder_select="mdct"
  1433. binkaudio_dct_decoder_select="mdct rdft dct sinewin"
  1434. binkaudio_rdft_decoder_select="mdct rdft sinewin"
  1435. cavs_decoder_select="golomb mpegvideo"
  1436. cook_decoder_select="mdct sinewin"
  1437. cscd_decoder_suggest="zlib"
  1438. dca_decoder_select="mdct"
  1439. dirac_decoder_select="dwt golomb"
  1440. dnxhd_encoder_select="aandcttables mpegvideoenc"
  1441. dxa_decoder_select="zlib"
  1442. eac3_decoder_select="ac3_decoder"
  1443. eac3_encoder_select="ac3_encoder"
  1444. eamad_decoder_select="aandcttables error_resilience mpegvideo"
  1445. eatgq_decoder_select="aandcttables"
  1446. eatqi_decoder_select="aandcttables error_resilience mpegvideo"
  1447. exr_decoder_select="zlib"
  1448. ffv1_decoder_select="golomb rangecoder"
  1449. ffv1_encoder_select="rangecoder"
  1450. ffvhuff_encoder_select="huffman"
  1451. flac_decoder_select="golomb"
  1452. flac_encoder_select="golomb lpc"
  1453. flashsv_decoder_select="zlib"
  1454. flashsv_encoder_select="zlib"
  1455. flashsv2_encoder_select="zlib"
  1456. flashsv2_decoder_select="zlib"
  1457. flv_decoder_select="h263_decoder"
  1458. flv_encoder_select="h263_encoder"
  1459. fraps_decoder_select="huffman"
  1460. h261_decoder_select="error_resilience mpegvideo"
  1461. h261_encoder_select="aandcttables mpegvideoenc"
  1462. h263_decoder_select="error_resilience h263_parser mpegvideo"
  1463. h263_encoder_select="aandcttables error_resilience mpegvideoenc"
  1464. h263_vaapi_hwaccel_select="vaapi h263_decoder"
  1465. h263i_decoder_select="h263_decoder"
  1466. h263p_encoder_select="h263_encoder"
  1467. h264_crystalhd_decoder_select="crystalhd h264_mp4toannexb_bsf h264_parser"
  1468. h264_decoder_select="error_resilience golomb h264chroma h264dsp h264pred h264qpel mpegvideo"
  1469. h264_dxva2_hwaccel_deps="dxva2api_h"
  1470. h264_dxva2_hwaccel_select="dxva2 h264_decoder"
  1471. h264_vaapi_hwaccel_select="vaapi h264_decoder"
  1472. h264_vda_decoder_select="vda h264_parser h264_decoder"
  1473. h264_vda_hwaccel_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
  1474. h264_vda_hwaccel_select="vda h264_decoder"
  1475. h264_vdpau_decoder_select="vdpau h264_decoder"
  1476. huffyuv_encoder_select="huffman"
  1477. iac_decoder_select="fft mdct sinewin"
  1478. imc_decoder_select="fft mdct sinewin"
  1479. jpegls_decoder_select="golomb"
  1480. jpegls_encoder_select="golomb"
  1481. ljpeg_encoder_select="aandcttables mpegvideoenc"
  1482. loco_decoder_select="golomb"
  1483. mdec_decoder_select="error_resilience mpegvideo"
  1484. mjpeg_encoder_select="aandcttables mpegvideoenc"
  1485. mlp_decoder_select="mlp_parser"
  1486. mp1_decoder_select="mpegaudio"
  1487. mp1float_decoder_select="mpegaudio"
  1488. mp2_decoder_select="mpegaudio"
  1489. mp2float_decoder_select="mpegaudio"
  1490. mp3_decoder_select="mpegaudio"
  1491. mp3adu_decoder_select="mpegaudio"
  1492. mp3adufloat_decoder_select="mpegaudio"
  1493. mp3float_decoder_select="mpegaudio"
  1494. mp3on4_decoder_select="mpegaudio"
  1495. mp3on4float_decoder_select="mpegaudio"
  1496. mpc7_decoder_select="mpegaudiodsp"
  1497. mpc8_decoder_select="mpegaudiodsp"
  1498. mpeg_vdpau_decoder_select="vdpau mpegvideo_decoder"
  1499. mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
  1500. mpeg_xvmc_decoder_select="mpegvideo_decoder"
  1501. mpeg1_vdpau_decoder_select="vdpau mpeg1video_decoder"
  1502. mpeg1_vdpau_hwaccel_select="vdpau mpeg1video_decoder"
  1503. mpeg1video_decoder_select="error_resilience mpegvideo"
  1504. mpeg1video_encoder_select="aandcttables error_resilience mpegvideoenc"
  1505. mpeg2_crystalhd_decoder_select="crystalhd"
  1506. mpeg2_dxva2_hwaccel_deps="dxva2api_h"
  1507. mpeg2_dxva2_hwaccel_select="dxva2 mpeg2video_decoder"
  1508. mpeg2_vdpau_hwaccel_select="vdpau mpeg2video_decoder"
  1509. mpeg2_vaapi_hwaccel_select="vaapi mpeg2video_decoder"
  1510. mpeg2video_decoder_select="error_resilience mpegvideo"
  1511. mpeg2video_encoder_select="aandcttables error_resilience mpegvideoenc"
  1512. mpeg4_crystalhd_decoder_select="crystalhd"
  1513. mpeg4_decoder_select="h263_decoder mpeg4video_parser"
  1514. mpeg4_encoder_select="h263_encoder"
  1515. mpeg4_vaapi_hwaccel_select="vaapi mpeg4_decoder"
  1516. mpeg4_vdpau_decoder_select="vdpau mpeg4_decoder"
  1517. msmpeg4_crystalhd_decoder_select="crystalhd"
  1518. msmpeg4v1_decoder_select="h263_decoder"
  1519. msmpeg4v1_encoder_select="h263_encoder"
  1520. msmpeg4v2_decoder_select="h263_decoder"
  1521. msmpeg4v2_encoder_select="h263_encoder"
  1522. msmpeg4v3_decoder_select="h263_decoder"
  1523. msmpeg4v3_encoder_select="h263_encoder"
  1524. mss2_decoder_select="vc1_decoder"
  1525. nellymoser_decoder_select="mdct sinewin"
  1526. nellymoser_encoder_select="mdct sinewin"
  1527. png_decoder_select="zlib"
  1528. png_encoder_select="zlib"
  1529. qcelp_decoder_select="lsp"
  1530. qdm2_decoder_select="mdct rdft mpegaudiodsp"
  1531. ra_144_encoder_select="lpc"
  1532. ralf_decoder_select="golomb"
  1533. rv10_decoder_select="h263_decoder"
  1534. rv10_encoder_select="h263_encoder"
  1535. rv20_decoder_select="h263_decoder"
  1536. rv20_encoder_select="h263_encoder"
  1537. rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo"
  1538. rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo"
  1539. shorten_decoder_select="golomb"
  1540. sipr_decoder_select="lsp"
  1541. snow_decoder_select="dwt rangecoder"
  1542. snow_encoder_select="aandcttables dwt error_resilience mpegvideoenc rangecoder"
  1543. sonic_decoder_select="golomb"
  1544. sonic_encoder_select="golomb"
  1545. sonic_ls_encoder_select="golomb"
  1546. svq1_decoder_select="error_resilience mpegvideo"
  1547. svq1_encoder_select="aandcttables error_resilience mpegvideoenc"
  1548. svq3_decoder_select="error_resilience golomb h264chroma h264dsp h264pred h264qpel mpegvideo"
  1549. svq3_decoder_suggest="zlib"
  1550. theora_decoder_select="vp3_decoder"
  1551. tiff_decoder_suggest="zlib"
  1552. tiff_encoder_suggest="zlib"
  1553. truehd_decoder_select="mlp_parser"
  1554. tscc_decoder_select="zlib"
  1555. twinvq_decoder_select="mdct lsp sinewin"
  1556. utvideo_encoder_select="huffman"
  1557. vc1_crystalhd_decoder_select="crystalhd"
  1558. vc1_decoder_select="h263_decoder h264chroma h264qpel"
  1559. vc1_dxva2_hwaccel_deps="dxva2api_h"
  1560. vc1_dxva2_hwaccel_select="dxva2 vc1_decoder"
  1561. vc1_vaapi_hwaccel_select="vaapi vc1_decoder"
  1562. vc1_vdpau_decoder_select="vdpau vc1_decoder"
  1563. vc1image_decoder_select="vc1_decoder"
  1564. vorbis_decoder_select="mdct"
  1565. vorbis_encoder_select="mdct"
  1566. vp3_decoder_select="vp3dsp"
  1567. vp5_decoder_select="vp3dsp"
  1568. vp6_decoder_select="huffman vp3dsp"
  1569. vp6a_decoder_select="vp6_decoder"
  1570. vp6f_decoder_select="vp6_decoder"
  1571. vp8_decoder_select="h264pred h264qpel"
  1572. wmapro_decoder_select="mdct sinewin"
  1573. wmav1_decoder_select="mdct sinewin"
  1574. wmav1_encoder_select="mdct sinewin"
  1575. wmav2_decoder_select="mdct sinewin"
  1576. wmav2_encoder_select="mdct sinewin"
  1577. wmavoice_decoder_select="lsp rdft dct mdct sinewin"
  1578. wmv1_decoder_select="h263_decoder"
  1579. wmv1_encoder_select="h263_encoder"
  1580. wmv2_decoder_select="h263_decoder"
  1581. wmv2_encoder_select="h263_encoder"
  1582. wmv3_decoder_select="vc1_decoder"
  1583. wmv3_crystalhd_decoder_select="crystalhd"
  1584. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  1585. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  1586. wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
  1587. wmv3image_decoder_select="wmv3_decoder"
  1588. zerocodec_decoder_select="zlib"
  1589. zlib_decoder_select="zlib"
  1590. zlib_encoder_select="zlib"
  1591. zmbv_decoder_select="zlib"
  1592. zmbv_encoder_select="zlib"
  1593. crystalhd_deps="libcrystalhd_libcrystalhd_if_h"
  1594. vaapi_deps="va_va_h"
  1595. vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
  1596. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  1597. # parsers
  1598. h264_parser_select="error_resilience golomb h264dsp h264pred mpegvideo"
  1599. mpeg4video_parser_select="error_resilience mpegvideo"
  1600. mpegvideo_parser_select="error_resilience mpegvideo"
  1601. vc1_parser_select="error_resilience mpegvideo"
  1602. # external libraries
  1603. libaacplus_encoder_deps="libaacplus"
  1604. libcelt_decoder_deps="libcelt"
  1605. libfaac_encoder_deps="libfaac"
  1606. libfdk_aac_encoder_deps="libfdk_aac"
  1607. libgsm_decoder_deps="libgsm"
  1608. libgsm_encoder_deps="libgsm"
  1609. libgsm_ms_decoder_deps="libgsm"
  1610. libgsm_ms_encoder_deps="libgsm"
  1611. libilbc_decoder_deps="libilbc"
  1612. libilbc_encoder_deps="libilbc"
  1613. libmodplug_demuxer_deps="libmodplug"
  1614. libmp3lame_encoder_deps="libmp3lame"
  1615. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  1616. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  1617. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  1618. libopenjpeg_decoder_deps="libopenjpeg"
  1619. libopenjpeg_encoder_deps="libopenjpeg"
  1620. libopus_decoder_deps="libopus"
  1621. libopus_encoder_deps="libopus"
  1622. libschroedinger_decoder_deps="libschroedinger"
  1623. libschroedinger_encoder_deps="libschroedinger"
  1624. libspeex_decoder_deps="libspeex"
  1625. libspeex_encoder_deps="libspeex"
  1626. libstagefright_h264_decoder_deps="libstagefright_h264"
  1627. libtheora_encoder_deps="libtheora"
  1628. libtwolame_encoder_deps="libtwolame"
  1629. libvo_aacenc_encoder_deps="libvo_aacenc"
  1630. libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
  1631. libvorbis_decoder_deps="libvorbis"
  1632. libvorbis_encoder_deps="libvorbis"
  1633. libvpx_decoder_deps="libvpx"
  1634. libvpx_encoder_deps="libvpx"
  1635. libx264_encoder_deps="libx264"
  1636. libx264rgb_encoder_deps="libx264"
  1637. libxavs_encoder_deps="libxavs"
  1638. libxvid_encoder_deps="libxvid"
  1639. libutvideo_decoder_deps="libutvideo"
  1640. libutvideo_encoder_deps="libutvideo"
  1641. # demuxers / muxers
  1642. ac3_demuxer_select="ac3_parser"
  1643. asf_stream_muxer_select="asf_muxer"
  1644. avisynth_demuxer_deps="avisynth"
  1645. dirac_demuxer_select="dirac_parser"
  1646. dts_demuxer_select="dca_parser"
  1647. dtshd_demuxer_select="dca_parser"
  1648. eac3_demuxer_select="ac3_parser"
  1649. f4v_muxer_select="mov_muxer"
  1650. flac_demuxer_select="flac_parser"
  1651. ipod_muxer_select="mov_muxer"
  1652. libnut_demuxer_deps="libnut"
  1653. libnut_muxer_deps="libnut"
  1654. matroska_audio_muxer_select="matroska_muxer"
  1655. matroska_demuxer_suggest="zlib bzlib"
  1656. mov_demuxer_suggest="zlib"
  1657. mp3_demuxer_select="mpegaudio_parser"
  1658. mp4_muxer_select="mov_muxer"
  1659. mpegts_muxer_select="adts_muxer latm_muxer mpegvideo"
  1660. mpegtsraw_demuxer_select="mpegts_demuxer"
  1661. mxf_d10_muxer_select="mxf_muxer"
  1662. ogg_demuxer_select="golomb"
  1663. psp_muxer_select="mov_muxer"
  1664. rtp_demuxer_select="sdp_demuxer"
  1665. rtp_muxer_select="mpegvideo"
  1666. rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
  1667. rtsp_demuxer_select="http_protocol rtpdec"
  1668. rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol"
  1669. sap_demuxer_select="sdp_demuxer"
  1670. sap_muxer_select="rtp_muxer rtp_protocol"
  1671. sdp_demuxer_select="rtpdec"
  1672. smoothstreaming_muxer_select="ismv_muxer"
  1673. spdif_muxer_select="aac_parser"
  1674. tak_demuxer_select="tak_parser"
  1675. tg2_muxer_select="mov_muxer"
  1676. tgp_muxer_select="mov_muxer"
  1677. w64_demuxer_deps="wav_demuxer"
  1678. # indevs / outdevs
  1679. alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  1680. alsa_outdev_deps="alsa_asoundlib_h"
  1681. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  1682. caca_outdev_deps="libcaca"
  1683. dshow_indev_deps="IBaseFilter"
  1684. dshow_indev_extralibs="-lpsapi -lole32 -lstrmiids -luuid"
  1685. dv1394_indev_deps="dv1394 dv_demuxer"
  1686. fbdev_indev_deps="linux_fb_h"
  1687. iec61883_indev_deps="libiec61883"
  1688. jack_indev_deps="jack_jack_h sem_timedwait"
  1689. lavfi_indev_deps="avfilter"
  1690. libcdio_indev_deps="libcdio"
  1691. libdc1394_indev_deps="libdc1394"
  1692. libv4l2_indev_deps="libv4l2"
  1693. openal_indev_deps="openal"
  1694. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  1695. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  1696. pulse_indev_deps="libpulse"
  1697. sdl_outdev_deps="sdl"
  1698. sndio_indev_deps="sndio_h"
  1699. sndio_outdev_deps="sndio_h"
  1700. v4l_indev_deps="linux_videodev_h"
  1701. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  1702. vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
  1703. vfwcap_indev_extralibs="-lavicap32"
  1704. x11grab_indev_deps="x11grab"
  1705. # protocols
  1706. bluray_protocol_deps="libbluray"
  1707. ffrtmpcrypt_protocol_deps="!librtmp_protocol"
  1708. ffrtmpcrypt_protocol_deps_any="gcrypt nettle openssl"
  1709. ffrtmpcrypt_protocol_select="tcp_protocol"
  1710. ffrtmphttp_protocol_deps="!librtmp_protocol"
  1711. ffrtmphttp_protocol_select="http_protocol"
  1712. gopher_protocol_deps="network"
  1713. httpproxy_protocol_deps="network"
  1714. httpproxy_protocol_select="tcp_protocol"
  1715. http_protocol_deps="network"
  1716. http_protocol_select="tcp_protocol"
  1717. https_protocol_select="tls_protocol"
  1718. librtmp_protocol_deps="librtmp"
  1719. librtmpe_protocol_deps="librtmp"
  1720. librtmps_protocol_deps="librtmp"
  1721. librtmpt_protocol_deps="librtmp"
  1722. librtmpte_protocol_deps="librtmp"
  1723. mmsh_protocol_select="http_protocol"
  1724. mmst_protocol_deps="network"
  1725. rtmp_protocol_deps="!librtmp_protocol"
  1726. rtmp_protocol_select="tcp_protocol"
  1727. rtmpe_protocol_select="ffrtmpcrypt_protocol"
  1728. rtmps_protocol_deps="!librtmp_protocol"
  1729. rtmps_protocol_select="tls_protocol"
  1730. rtmpt_protocol_select="ffrtmphttp_protocol"
  1731. rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
  1732. rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
  1733. rtp_protocol_select="udp_protocol"
  1734. sctp_protocol_deps="network struct_sctp_event_subscribe"
  1735. tcp_protocol_deps="network"
  1736. tls_protocol_deps_any="openssl gnutls"
  1737. tls_protocol_select="tcp_protocol"
  1738. udp_protocol_deps="network"
  1739. # filters
  1740. aconvert_filter_deps="swresample"
  1741. amovie_filter_deps="avcodec avformat"
  1742. aresample_filter_deps="swresample"
  1743. ass_filter_deps="libass"
  1744. asyncts_filter_deps="avresample"
  1745. atempo_filter_deps="avcodec rdft"
  1746. blackframe_filter_deps="gpl"
  1747. boxblur_filter_deps="gpl"
  1748. colormatrix_filter_deps="gpl"
  1749. cropdetect_filter_deps="gpl"
  1750. decimate_filter_deps="gpl avcodec"
  1751. delogo_filter_deps="gpl"
  1752. deshake_filter_deps="avcodec"
  1753. drawtext_filter_deps="libfreetype"
  1754. ebur128_filter_deps="gpl"
  1755. flite_filter_deps="libflite"
  1756. frei0r_filter_deps="frei0r dlopen"
  1757. frei0r_filter_extralibs='$ldl'
  1758. frei0r_src_filter_deps="frei0r dlopen"
  1759. frei0r_src_filter_extralibs='$ldl'
  1760. hqdn3d_filter_deps="gpl"
  1761. movie_filter_deps="avcodec avformat"
  1762. mp_filter_deps="gpl avcodec swscale postproc inline_asm"
  1763. mptestsrc_filter_deps="gpl"
  1764. negate_filter_deps="lut_filter"
  1765. resample_filter_deps="avresample"
  1766. ocv_filter_deps="libopencv"
  1767. pan_filter_deps="swresample"
  1768. removelogo_filter_deps="avcodec avformat swscale"
  1769. scale_filter_deps="swscale"
  1770. smartblur_filter_deps="gpl swscale"
  1771. showspectrum_filter_deps="avcodec rdft"
  1772. super2xsai_filter_deps="gpl"
  1773. tinterlace_filter_deps="gpl"
  1774. yadif_filter_deps="gpl"
  1775. pixfmts_super2xsai_test_deps="super2xsai_filter"
  1776. tinterlace_merge_test_deps="tinterlace_filter"
  1777. tinterlace_pad_test_deps="tinterlace_filter"
  1778. # libraries
  1779. avdevice_deps="avcodec avformat"
  1780. avformat_deps="avcodec"
  1781. postproc_deps="gpl"
  1782. # programs
  1783. ffmpeg_deps="avcodec avfilter avformat swscale swresample"
  1784. ffmpeg_select="ffbuffersink_filter format_filter aformat_filter
  1785. setpts_filter null_filter anull_filter ffabuffersink_filter"
  1786. ffplay_deps="avcodec avformat swscale swresample sdl"
  1787. ffplay_select="ffbuffersink_filter rdft crop_filter"
  1788. ffprobe_deps="avcodec avformat"
  1789. ffserver_deps="avformat ffm_muxer fork rtp_protocol rtsp_demuxer"
  1790. ffserver_extralibs='$ldl'
  1791. # documentation
  1792. podpages_deps="perl"
  1793. manpages_deps="perl pod2man"
  1794. htmlpages_deps="texi2html"
  1795. txtpages_deps="makeinfo"
  1796. doc_deps_any="manpages htmlpages podpages txtpages"
  1797. # default parameters
  1798. logfile="config.log"
  1799. # installation paths
  1800. prefix_default="/usr/local"
  1801. bindir_default='${prefix}/bin'
  1802. datadir_default='${prefix}/share/ffmpeg'
  1803. incdir_default='${prefix}/include'
  1804. libdir_default='${prefix}/lib'
  1805. mandir_default='${prefix}/share/man'
  1806. shlibdir_default="$libdir_default"
  1807. postproc_version_default="current"
  1808. # toolchain
  1809. ar_default="ar"
  1810. cc_default="gcc"
  1811. cxx_default="g++"
  1812. host_cc_default="gcc"
  1813. install="install"
  1814. ln_s="ln -sf"
  1815. nm_default="nm -g"
  1816. objformat="elf"
  1817. pkg_config_default=pkg-config
  1818. ranlib="ranlib"
  1819. strip_default="strip"
  1820. yasmexe_default="yasm"
  1821. nogas=":"
  1822. # machine
  1823. arch_default=$(uname -m)
  1824. cpu="generic"
  1825. # OS
  1826. target_os_default=$(tolower $(uname -s))
  1827. host_os=$target_os_default
  1828. # alternative libpostproc version
  1829. ALT_PP_VER_MAJOR=51
  1830. ALT_PP_VER_MINOR=2
  1831. ALT_PP_VER_MICRO=101
  1832. ALT_PP_VER=$ALT_PP_VER_MAJOR.$ALT_PP_VER_MINOR.$ALT_PP_VER_MICRO
  1833. # configurable options
  1834. enable $PROGRAM_LIST
  1835. enable $DOCUMENT_LIST
  1836. enable avcodec
  1837. enable avdevice
  1838. enable avfilter
  1839. enable avformat
  1840. enable avutil
  1841. enable postproc
  1842. enable stripping
  1843. enable swresample
  1844. enable swscale
  1845. enable asm
  1846. enable debug
  1847. enable doc
  1848. enable network
  1849. enable optimizations
  1850. enable runtime_cpudetect
  1851. enable safe_bitstream_reader
  1852. enable static
  1853. enable swscale_alpha
  1854. # build settings
  1855. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1856. FFSERVERLDFLAGS=-Wl,-E
  1857. LIBPREF="lib"
  1858. LIBSUF=".a"
  1859. FULLNAME='$(NAME)$(BUILDSUF)'
  1860. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1861. SLIBPREF="lib"
  1862. SLIBSUF=".so"
  1863. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1864. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  1865. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  1866. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  1867. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
  1868. SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
  1869. asflags_filter=echo
  1870. cflags_filter=echo
  1871. ldflags_filter=echo
  1872. AS_C='-c'
  1873. AS_O='-o $@'
  1874. CC_C='-c'
  1875. CC_E='-E -o $@'
  1876. CC_O='-o $@'
  1877. CXX_C='-c'
  1878. CXX_O='-o $@'
  1879. LD_O='-o $@'
  1880. LD_LIB='-l%'
  1881. LD_PATH='-L'
  1882. HOSTCC_C='-c'
  1883. HOSTCC_O='-o $@'
  1884. HOSTLD_O='-o $@'
  1885. host_cflags='-D_ISOC99_SOURCE -D_XOPEN_SOURCE=600 -O3 -g'
  1886. host_libs='-lm'
  1887. host_cflags_filter=echo
  1888. host_ldflags_filter=echo
  1889. target_path='$(CURDIR)'
  1890. # since the object filename is not given with the -MM flag, the compiler
  1891. # is only able to print the basename, and we must add the path ourselves
  1892. DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  1893. DEPFLAGS='-MM'
  1894. # find source path
  1895. if test -f configure; then
  1896. source_path=.
  1897. else
  1898. source_path=$(cd $(dirname "$0"); pwd)
  1899. echo "$source_path" | grep -q '[[:blank:]]' &&
  1900. die "Out of tree builds are impossible with whitespace in source path."
  1901. test -e "$source_path/config.h" &&
  1902. die "Out of tree builds are impossible with config.h in source dir."
  1903. fi
  1904. for v in "$@"; do
  1905. r=${v#*=}
  1906. l=${v%"$r"}
  1907. r=$(sh_quote "$r")
  1908. FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
  1909. done
  1910. find_things(){
  1911. thing=$1
  1912. pattern=$2
  1913. file=$source_path/$3
  1914. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  1915. }
  1916. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  1917. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  1918. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  1919. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  1920. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  1921. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  1922. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  1923. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  1924. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  1925. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  1926. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  1927. ALL_COMPONENTS="
  1928. $BSF_LIST
  1929. $DECODER_LIST
  1930. $DEMUXER_LIST
  1931. $ENCODER_LIST
  1932. $FILTER_LIST
  1933. $HWACCEL_LIST
  1934. $INDEV_LIST
  1935. $MUXER_LIST
  1936. $OUTDEV_LIST
  1937. $PARSER_LIST
  1938. $PROTOCOL_LIST
  1939. "
  1940. find_tests(){
  1941. map "echo ${2}\${v}_test" $(ls "$source_path"/tests/ref/$1 | grep -v '[^-a-z0-9_]')
  1942. }
  1943. LAVF_FATE_TESTS=$(find_tests lavf-fate)
  1944. ALL_TESTS="$LAVF_FATE_TESTS"
  1945. for n in $COMPONENT_LIST; do
  1946. v=$(toupper ${n%s})_LIST
  1947. eval enable \$$v
  1948. eval ${n}_if_any="\$$v"
  1949. done
  1950. enable $ARCH_EXT_LIST $ALL_TESTS
  1951. die_unknown(){
  1952. echo "Unknown option \"$1\"."
  1953. echo "See $0 --help for available options."
  1954. exit 1
  1955. }
  1956. show_list() {
  1957. suffix=_$1
  1958. shift
  1959. echo $* | sed s/$suffix//g | tr ' ' '\n' | sort | pr -3 -t
  1960. exit 0
  1961. }
  1962. rand_list(){
  1963. IFS=', '
  1964. set -- $*
  1965. unset IFS
  1966. for thing; do
  1967. comp=${thing%:*}
  1968. prob=${thing#$comp}
  1969. prob=${prob#:}
  1970. is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
  1971. echo "prob ${prob:-0.5}"
  1972. printf '%s\n' $comp
  1973. done
  1974. }
  1975. do_random(){
  1976. action=$1
  1977. shift
  1978. random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
  1979. $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
  1980. }
  1981. for opt do
  1982. optval="${opt#*=}"
  1983. case "$opt" in
  1984. --extra-ldflags=*) add_ldflags $optval
  1985. ;;
  1986. --extra-libs=*) add_extralibs $optval
  1987. ;;
  1988. --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
  1989. ;;
  1990. --enable-debug=*) debuglevel="$optval"
  1991. ;;
  1992. --disable-everything)
  1993. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  1994. ;;
  1995. --enable-random|--disable-random)
  1996. action=${opt%%-random}
  1997. do_random ${action#--} $COMPONENT_LIST
  1998. ;;
  1999. --enable-random=*|--disable-random=*)
  2000. action=${opt%%-random=*}
  2001. do_random ${action#--} $optval
  2002. ;;
  2003. --enable-*=*|--disable-*=*)
  2004. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  2005. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  2006. eval list=\$$(toupper $thing)_LIST
  2007. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  2008. $action $(filter "$name" $list)
  2009. ;;
  2010. --enable-?*|--disable-?*)
  2011. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  2012. if is_in $option $COMPONENT_LIST; then
  2013. test $action = disable && action=unset
  2014. eval $action \$$(toupper ${option%s})_LIST
  2015. elif is_in $option $CMDLINE_SELECT; then
  2016. $action $option
  2017. else
  2018. die_unknown $opt
  2019. fi
  2020. ;;
  2021. --list-*)
  2022. NAME="${opt#--list-}"
  2023. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  2024. NAME=${NAME%s}
  2025. eval show_list $NAME \$$(toupper $NAME)_LIST
  2026. ;;
  2027. --help|-h) show_help
  2028. ;;
  2029. *)
  2030. optname="${opt%%=*}"
  2031. optname="${optname#--}"
  2032. optname=$(echo "$optname" | sed 's/-/_/g')
  2033. if is_in $optname $CMDLINE_SET; then
  2034. eval $optname='$optval'
  2035. elif is_in $optname $CMDLINE_APPEND; then
  2036. append $optname "$optval"
  2037. else
  2038. die_unknown $opt
  2039. fi
  2040. ;;
  2041. esac
  2042. done
  2043. disabled logging && logfile=/dev/null
  2044. echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
  2045. set >> $logfile
  2046. test -n "$cross_prefix" && enable cross_compile
  2047. if enabled cross_compile; then
  2048. test -n "$arch" && test -n "$target_os" ||
  2049. die "Must specify target arch and OS when cross-compiling"
  2050. fi
  2051. set_default postproc_version
  2052. # Check if we should build alternative libpostproc version instead of current
  2053. if test "$postproc_version" = $ALT_PP_VER; then
  2054. LIBPOSTPROC_VERSION=$ALT_PP_VER
  2055. LIBPOSTPROC_VERSION_MAJOR=$ALT_PP_VER_MAJOR
  2056. LIBPOSTPROC_VERSION_MINOR=$ALT_PP_VER_MINOR
  2057. LIBPOSTPROC_VERSION_MICRO=$ALT_PP_VER_MICRO
  2058. elif test "$postproc_version" != current; then
  2059. die "Invalid argument to --postproc-version. See --help output."
  2060. fi
  2061. ar_default="${cross_prefix}${ar_default}"
  2062. cc_default="${cross_prefix}${cc_default}"
  2063. cxx_default="${cross_prefix}${cxx_default}"
  2064. nm_default="${cross_prefix}${nm_default}"
  2065. pkg_config_default="${cross_prefix}${pkg_config_default}"
  2066. ranlib="${cross_prefix}${ranlib}"
  2067. strip_default="${cross_prefix}${strip_default}"
  2068. sysinclude_default="${sysroot}/usr/include"
  2069. case "$toolchain" in
  2070. clang-asan)
  2071. cc_default="clang"
  2072. add_cflags -faddress-sanitizer
  2073. add_ldflags -faddress-sanitizer
  2074. ;;
  2075. clang-tsan)
  2076. cc_default="clang"
  2077. add_cflags -fthread-sanitizer
  2078. add_ldflags -fthread-sanitizer
  2079. ;;
  2080. msvc)
  2081. cc_default="c99wrap cl"
  2082. ld_default="c99wrap link"
  2083. nm_default="dumpbin -symbols"
  2084. ar_default="lib"
  2085. target_os_default="win32"
  2086. ;;
  2087. ?*)
  2088. die "Unknown toolchain $toolchain"
  2089. ;;
  2090. esac
  2091. set_default arch cc cxx pkg_config strip sysinclude target_os yasmexe
  2092. enabled cross_compile || host_cc_default=$cc
  2093. set_default host_cc
  2094. if ! $pkg_config --version >/dev/null 2>&1; then
  2095. warn "$pkg_config not found, library detection may fail."
  2096. pkg_config=false
  2097. fi
  2098. exesuf() {
  2099. case $1 in
  2100. mingw32*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
  2101. esac
  2102. }
  2103. EXESUF=$(exesuf $target_os)
  2104. HOSTEXESUF=$(exesuf $host_os)
  2105. # set temporary file name
  2106. : ${TMPDIR:=$TEMPDIR}
  2107. : ${TMPDIR:=$TMP}
  2108. : ${TMPDIR:=/tmp}
  2109. if ! check_cmd mktemp -u XXXXXX; then
  2110. # simple replacement for missing mktemp
  2111. # NOT SAFE FOR GENERAL USE
  2112. mktemp(){
  2113. echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
  2114. }
  2115. fi
  2116. tmpfile(){
  2117. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  2118. (set -C; exec > $tmp) 2>/dev/null ||
  2119. die "Unable to create temporary file in $TMPDIR."
  2120. append TMPFILES $tmp
  2121. eval $1=$tmp
  2122. }
  2123. trap 'rm -f -- $TMPFILES' EXIT
  2124. tmpfile TMPASM .asm
  2125. tmpfile TMPC .c
  2126. tmpfile TMPCPP .cpp
  2127. tmpfile TMPE $EXESUF
  2128. tmpfile TMPH .h
  2129. tmpfile TMPO .o
  2130. tmpfile TMPS .S
  2131. tmpfile TMPSH .sh
  2132. tmpfile TMPV .ver
  2133. unset -f mktemp
  2134. chmod +x $TMPE
  2135. # make sure we can execute files in $TMPDIR
  2136. cat > $TMPSH 2>> $logfile <<EOF
  2137. #! /bin/sh
  2138. EOF
  2139. chmod +x $TMPSH >> $logfile 2>&1
  2140. if ! $TMPSH >> $logfile 2>&1; then
  2141. cat <<EOF
  2142. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  2143. variable to another directory and make sure that it is not mounted noexec.
  2144. EOF
  2145. die "Sanity test failed."
  2146. fi
  2147. msvc_flags(){
  2148. for flag; do
  2149. case $flag in
  2150. -fomit-frame-pointer) echo -Oy ;;
  2151. -g) echo -Z7 ;;
  2152. -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
  2153. -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
  2154. -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
  2155. -wd4554 \
  2156. -wd4996 -wd4273 ;;
  2157. -std=c99) ;;
  2158. -fno-math-errno) ;;
  2159. -fno-common) ;;
  2160. -fno-signed-zeros) ;;
  2161. -lz) echo zlib.lib ;;
  2162. -lavifil32) echo vfw32.lib ;;
  2163. -lavicap32) echo vfw32.lib user32.lib ;;
  2164. -l*) echo ${flag#-l}.lib ;;
  2165. *) echo $flag ;;
  2166. esac
  2167. done
  2168. }
  2169. pgi_flags(){
  2170. for flag; do
  2171. case $flag in
  2172. -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
  2173. -fomit-frame-pointer) echo -Mnoframe ;;
  2174. -g) echo -gopt ;;
  2175. *) echo $flag ;;
  2176. esac
  2177. done
  2178. }
  2179. suncc_flags(){
  2180. for flag; do
  2181. case $flag in
  2182. -march=*|-mcpu=*)
  2183. case "${flag#*=}" in
  2184. native) echo -xtarget=native ;;
  2185. v9|niagara) echo -xarch=sparc ;;
  2186. ultrasparc) echo -xarch=sparcvis ;;
  2187. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  2188. i586|pentium) echo -xchip=pentium ;;
  2189. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  2190. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  2191. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  2192. pentium4*) echo -xtarget=pentium4 ;;
  2193. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  2194. *-sse3) echo -xarch=sse3 ;;
  2195. core2) echo -xarch=ssse3 -xchip=core2 ;;
  2196. amdfam10|barcelona|bdver*) echo -xarch=sse4_1 ;;
  2197. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  2198. k8|opteron|athlon64|athlon-fx)
  2199. echo -xarch=sse2a ;;
  2200. athlon*) echo -xarch=pentium_proa ;;
  2201. esac
  2202. ;;
  2203. -std=c99) echo -xc99 ;;
  2204. -fomit-frame-pointer) echo -xregs=frameptr ;;
  2205. -fPIC) echo -KPIC -xcode=pic32 ;;
  2206. -W*,*) echo $flag ;;
  2207. -f*-*|-W*) ;;
  2208. *) echo $flag ;;
  2209. esac
  2210. done
  2211. }
  2212. tms470_flags(){
  2213. for flag; do
  2214. case $flag in
  2215. -march=*|-mcpu=*)
  2216. case "${flag#*=}" in
  2217. armv7-a|cortex-a*) echo -mv=7a8 ;;
  2218. armv7-r|cortex-r*) echo -mv=7r4 ;;
  2219. armv7-m|cortex-m*) echo -mv=7m3 ;;
  2220. armv6*|arm11*) echo -mv=6 ;;
  2221. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  2222. echo -mv=5e ;;
  2223. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  2224. esac
  2225. ;;
  2226. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  2227. -mfpu=vfp) echo --float_support=vfpv2 ;;
  2228. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  2229. -mfpu=vfpv3-d16) echo --float_support=vfpv3d16 ;;
  2230. -msoft-float) echo --float_support=vfplib ;;
  2231. -O[0-3]|-mf=*) echo $flag ;;
  2232. -g) echo -g -mn ;;
  2233. -pds=*) echo $flag ;;
  2234. -D*|-I*) echo $flag ;;
  2235. --gcc|--abi=*) echo $flag ;;
  2236. -me) echo $flag ;;
  2237. esac
  2238. done
  2239. }
  2240. probe_cc(){
  2241. pfx=$1
  2242. _cc=$2
  2243. unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
  2244. unset _ld_o _ldflags _ld_lib _ld_path
  2245. unset _depflags _DEPCMD _DEPFLAGS
  2246. _flags_filter=echo
  2247. if $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
  2248. _type=llvm_gcc
  2249. gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
  2250. _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
  2251. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2252. _cflags_speed='-O3'
  2253. _cflags_size='-Os'
  2254. elif $_cc -v 2>&1 | grep -qi ^gcc; then
  2255. _type=gcc
  2256. gcc_version=$($_cc --version | head -n1)
  2257. gcc_basever=$($_cc -dumpversion)
  2258. gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
  2259. gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
  2260. _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
  2261. if ! $_cc -dumpversion | grep -q '^2\.'; then
  2262. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2263. fi
  2264. _cflags_speed='-O3'
  2265. _cflags_size='-Os'
  2266. elif $_cc --version 2>/dev/null | grep -q Intel; then
  2267. _type=icc
  2268. _ident=$($_cc --version | head -n1)
  2269. _depflags='-MMD'
  2270. _cflags_speed='-O3'
  2271. _cflags_size='-Os'
  2272. _cflags_noopt='-O1'
  2273. elif $_cc -v 2>&1 | grep -q xlc; then
  2274. _type=xlc
  2275. _ident=$($_cc -qversion 2>/dev/null | head -n1)
  2276. _cflags_speed='-O5'
  2277. _cflags_size='-O5 -qcompact'
  2278. elif $_cc -V 2>/dev/null | grep -q Compaq; then
  2279. _type=ccc
  2280. _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
  2281. _DEPFLAGS='-M'
  2282. debuglevel=3
  2283. _ldflags='-Wl,-z,now' # calls to libots crash without this
  2284. _cflags_speed='-fast'
  2285. _cflags_size='-O1'
  2286. elif $_cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
  2287. test -d "$sysroot" || die "No valid sysroot specified."
  2288. _type=armcc
  2289. _ident=$($_cc --vsn | head -n1)
  2290. armcc_conf="$PWD/armcc.conf"
  2291. $_cc --arm_linux_configure \
  2292. --arm_linux_config_file="$armcc_conf" \
  2293. --configure_sysroot="$sysroot" \
  2294. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  2295. die "Error creating armcc configuration file."
  2296. $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
  2297. _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
  2298. as_default="${cross_prefix}gcc"
  2299. _depflags='-MMD'
  2300. _cflags_speed='-O3'
  2301. _cflags_size='-Os'
  2302. elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
  2303. _type=tms470
  2304. _ident=$($_cc -version | head -n1 | tr -s ' ')
  2305. _flags='--gcc --abi=eabi -me'
  2306. _cc_e='-ppl -fe=$@'
  2307. _cc_o='-fe=$@'
  2308. _depflags='-ppa -ppd=$(@:.o=.d)'
  2309. _cflags_speed='-O3 -mf=5'
  2310. _cflags_size='-O3 -mf=2'
  2311. _flags_filter=tms470_flags
  2312. elif $_cc -v 2>&1 | grep -q clang; then
  2313. _type=clang
  2314. _ident=$($_cc --version | head -n1)
  2315. _depflags='-MMD'
  2316. _cflags_speed='-O3'
  2317. _cflags_size='-Os'
  2318. elif $_cc -V 2>&1 | grep -q Sun; then
  2319. _type=suncc
  2320. _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
  2321. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  2322. _DEPFLAGS='-xM1 -xc99'
  2323. _ldflags='-std=c99'
  2324. _cflags_speed='-O5'
  2325. _cflags_size='-O5 -xspace'
  2326. _flags_filter=suncc_flags
  2327. elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
  2328. _type=pathscale
  2329. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2330. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2331. _cflags_speed='-O2'
  2332. _cflags_size='-Os'
  2333. _flags_filter='filter_out -Wdisabled-optimization'
  2334. elif $_cc -v 2>&1 | grep -q Open64; then
  2335. _type=open64
  2336. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2337. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2338. _cflags_speed='-O2'
  2339. _cflags_size='-Os'
  2340. _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
  2341. elif $_cc -V 2>&1 | grep -q Portland; then
  2342. _type=pgi
  2343. _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
  2344. opt_common='-alias=ansi -Mdse -Mlre -Mpre'
  2345. _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
  2346. _cflags_size="-O2 -Munroll=c:1 $opt_common"
  2347. _cflags_noopt="-O1"
  2348. _flags_filter=pgi_flags
  2349. elif $_cc 2>&1 | grep -q Microsoft; then
  2350. _type=msvc
  2351. _ident=$($cc 2>&1 | head -n1)
  2352. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
  2353. _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
  2354. _cflags_speed="-O2"
  2355. _cflags_size="-O1"
  2356. # Nonstandard output options, to avoid msys path conversion issues, relies on wrapper to remap it
  2357. if $_cc 2>&1 | grep -q Linker; then
  2358. _ld_o='-out $@'
  2359. else
  2360. _ld_o='-Fe$@'
  2361. fi
  2362. _cc_o='-Fo $@'
  2363. _cc_e='-P -Fi $@'
  2364. _flags_filter=msvc_flags
  2365. _ld_lib='lib%.a'
  2366. _ld_path='-libpath:'
  2367. _flags='-nologo'
  2368. _cflags='-D_USE_MATH_DEFINES -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64'
  2369. if [ $pfx = hostcc ]; then
  2370. append _cflags -Dsnprintf=_snprintf
  2371. fi
  2372. disable stripping
  2373. fi
  2374. eval ${pfx}_type=\$_type
  2375. eval ${pfx}_ident=\$_ident
  2376. }
  2377. set_ccvars(){
  2378. eval ${1}_C=\${_cc_c-\${${1}_C}}
  2379. eval ${1}_E=\${_cc_e-\${${1}_E}}
  2380. eval ${1}_O=\${_cc_o-\${${1}_O}}
  2381. if [ -n "$_depflags" ]; then
  2382. eval ${1}_DEPFLAGS=\$_depflags
  2383. else
  2384. eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
  2385. eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
  2386. eval DEP${1}FLAGS=\$_flags
  2387. fi
  2388. }
  2389. probe_cc cc "$cc"
  2390. cflags_filter=$_flags_filter
  2391. cflags_speed=$_cflags_speed
  2392. cflags_size=$_cflags_size
  2393. cflags_noopt=$_cflags_noopt
  2394. add_cflags $_flags $_cflags
  2395. cc_ldflags=$_ldflags
  2396. set_ccvars CC
  2397. probe_cc hostcc "$host_cc"
  2398. host_cflags_filter=$_flags_filter
  2399. add_host_cflags $_flags $_cflags
  2400. set_ccvars HOSTCC
  2401. test -n "$cc_type" && enable $cc_type ||
  2402. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  2403. : ${as_default:=$cc}
  2404. : ${dep_cc_default:=$cc}
  2405. : ${ld_default:=$cc}
  2406. : ${host_ld_default:=$host_cc}
  2407. set_default ar as dep_cc ld host_ld
  2408. probe_cc as "$as"
  2409. asflags_filter=$_flags_filter
  2410. add_asflags $_flags $_cflags
  2411. set_ccvars AS
  2412. probe_cc ld "$ld"
  2413. ldflags_filter=$_flags_filter
  2414. add_ldflags $_flags $_ldflags
  2415. test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
  2416. LD_O=${_ld_o-$LD_O}
  2417. LD_LIB=${_ld_lib-$LD_LIB}
  2418. LD_PATH=${_ld_path-$LD_PATH}
  2419. probe_cc hostld "$host_ld"
  2420. host_ldflags_filter=$_flags_filter
  2421. add_host_ldflags $_flags $_ldflags
  2422. HOSTLD_O=${_ld_o-$HOSTLD_O}
  2423. if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
  2424. probe_cc depcc "$dep_cc"
  2425. CCDEP=${_DEPCMD:-$DEPCMD}
  2426. CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
  2427. DEPCCFLAGS=$_flags
  2428. fi
  2429. if $ar 2>&1 | grep -q Microsoft; then
  2430. arflags="-nologo"
  2431. ar_o='-out:$@'
  2432. elif $ar 2>&1 | grep -q 'Texas Instruments'; then
  2433. arflags="rq"
  2434. ar_o='$@'
  2435. else
  2436. arflags="rc"
  2437. ar_o='$@'
  2438. fi
  2439. add_cflags $extra_cflags
  2440. add_cxxflags $extra_cxxflags
  2441. add_asflags $extra_cflags
  2442. if test -n "$sysroot"; then
  2443. case "$cc_type" in
  2444. gcc|llvm_gcc|clang)
  2445. add_cppflags --sysroot="$sysroot"
  2446. add_ldflags --sysroot="$sysroot"
  2447. ;;
  2448. tms470)
  2449. add_cppflags -I"$sysinclude"
  2450. add_ldflags --sysroot="$sysroot"
  2451. ;;
  2452. esac
  2453. fi
  2454. if test "$cpu" = host; then
  2455. enabled cross_compile && die "--cpu=host makes no sense when cross-compiling."
  2456. case "$cc_type" in
  2457. gcc|llvm_gcc)
  2458. check_native(){
  2459. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  2460. sed -n "/cc1.*$1=/{
  2461. s/.*$1=\\([^ ]*\\).*/\\1/
  2462. p
  2463. q
  2464. }" $TMPE
  2465. }
  2466. cpu=$(check_native -march || check_native -mcpu)
  2467. ;;
  2468. esac
  2469. test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc"
  2470. fi
  2471. # Deal with common $arch aliases
  2472. case "$arch" in
  2473. arm*|iPad*)
  2474. arch="arm"
  2475. ;;
  2476. mips|mipsel|IP*)
  2477. arch="mips"
  2478. ;;
  2479. mips64*)
  2480. arch="mips"
  2481. subarch="mips64"
  2482. ;;
  2483. parisc|hppa)
  2484. arch="parisc"
  2485. ;;
  2486. parisc64|hppa64)
  2487. arch="parisc"
  2488. subarch="parisc64"
  2489. ;;
  2490. "Power Macintosh"|ppc|powerpc|ppc64|powerpc64)
  2491. arch="ppc"
  2492. ;;
  2493. s390|s390x)
  2494. arch="s390"
  2495. ;;
  2496. sh4|sh)
  2497. arch="sh4"
  2498. ;;
  2499. sun4u|sparc64)
  2500. arch="sparc"
  2501. subarch="sparc64"
  2502. ;;
  2503. tilegx|tile-gx)
  2504. arch="tilegx"
  2505. ;;
  2506. i[3-6]86|i86pc|BePC|x86pc|x86_64|x86_32|amd64)
  2507. arch="x86"
  2508. ;;
  2509. esac
  2510. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  2511. enable $arch
  2512. # Add processor-specific flags
  2513. if test "$cpu" = generic; then
  2514. : do nothing
  2515. elif enabled ppc; then
  2516. case $(tolower $cpu) in
  2517. 601|ppc601|powerpc601)
  2518. cpuflags="-mcpu=601"
  2519. disable altivec
  2520. ;;
  2521. 603*|ppc603*|powerpc603*)
  2522. cpuflags="-mcpu=603"
  2523. disable altivec
  2524. ;;
  2525. 604*|ppc604*|powerpc604*)
  2526. cpuflags="-mcpu=604"
  2527. disable altivec
  2528. ;;
  2529. g3|75*|ppc75*|powerpc75*)
  2530. cpuflags="-mcpu=750 -mpowerpc-gfxopt"
  2531. disable altivec
  2532. ;;
  2533. g4|745*|ppc745*|powerpc745*)
  2534. cpuflags="-mcpu=7450 -mpowerpc-gfxopt"
  2535. ;;
  2536. 74*|ppc74*|powerpc74*)
  2537. cpuflags="-mcpu=7400 -mpowerpc-gfxopt"
  2538. ;;
  2539. g5|970|ppc970|powerpc970)
  2540. cpuflags="-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
  2541. ;;
  2542. power[3-7]*)
  2543. cpuflags="-mcpu=$cpu -mpowerpc-gfxopt -mpowerpc64"
  2544. ;;
  2545. cell)
  2546. cpuflags="-mcpu=cell"
  2547. enable ldbrx
  2548. ;;
  2549. e500mc)
  2550. cpuflags="-mcpu=e500mc"
  2551. disable altivec
  2552. ;;
  2553. e500v2)
  2554. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  2555. disable altivec
  2556. ;;
  2557. e500)
  2558. cpuflags="-mcpu=8540 -mhard-float"
  2559. disable altivec
  2560. ;;
  2561. esac
  2562. elif enabled x86; then
  2563. case $cpu in
  2564. i[345]86|pentium)
  2565. cpuflags="-march=$cpu"
  2566. disable mmx
  2567. ;;
  2568. # targets that do NOT support conditional mov (cmov)
  2569. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  2570. cpuflags="-march=$cpu"
  2571. disable cmov
  2572. ;;
  2573. # targets that do support conditional mov (cmov)
  2574. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|amdfam10|barcelona|atom|bdver*)
  2575. cpuflags="-march=$cpu"
  2576. enable cmov
  2577. enable fast_cmov
  2578. ;;
  2579. # targets that do support conditional mov but on which it's slow
  2580. pentium4|pentium4m|prescott|nocona)
  2581. cpuflags="-march=$cpu"
  2582. enable cmov
  2583. disable fast_cmov
  2584. ;;
  2585. esac
  2586. elif enabled sparc; then
  2587. case $cpu in
  2588. niagara)
  2589. cpuflags="-mcpu=$cpu"
  2590. disable vis
  2591. ;;
  2592. sparc64)
  2593. cpuflags="-mcpu=v9"
  2594. ;;
  2595. esac
  2596. elif enabled arm; then
  2597. case $cpu in
  2598. armv*)
  2599. cpuflags="-march=$cpu"
  2600. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  2601. ;;
  2602. *)
  2603. cpuflags="-mcpu=$cpu"
  2604. case $cpu in
  2605. cortex-a*) subarch=armv7a ;;
  2606. cortex-r*) subarch=armv7r ;;
  2607. cortex-m*) enable thumb; subarch=armv7m ;;
  2608. arm11*) subarch=armv6 ;;
  2609. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  2610. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  2611. esac
  2612. ;;
  2613. esac
  2614. elif enabled alpha; then
  2615. enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
  2616. elif enabled bfin; then
  2617. cpuflags="-mcpu=$cpu"
  2618. elif enabled mips; then
  2619. cpuflags="-march=$cpu"
  2620. case $cpu in
  2621. 24kc)
  2622. disable mipsfpu
  2623. disable mipsdspr1
  2624. disable mipsdspr2
  2625. ;;
  2626. 24kf*)
  2627. disable mipsdspr1
  2628. disable mipsdspr2
  2629. ;;
  2630. 24kec|34kc|1004kc)
  2631. disable mipsfpu
  2632. disable mipsdspr2
  2633. ;;
  2634. 24kef*|34kf*|1004kf*)
  2635. disable mipsdspr2
  2636. ;;
  2637. 74kc)
  2638. disable mipsfpu
  2639. ;;
  2640. esac
  2641. elif enabled avr32; then
  2642. case $cpu in
  2643. ap7[02]0[0-2])
  2644. subarch="avr32_ap"
  2645. cpuflags="-mpart=$cpu"
  2646. ;;
  2647. ap)
  2648. subarch="avr32_ap"
  2649. cpuflags="-march=$cpu"
  2650. ;;
  2651. uc3[ab]*)
  2652. subarch="avr32_uc"
  2653. cpuflags="-mcpu=$cpu"
  2654. ;;
  2655. uc)
  2656. subarch="avr32_uc"
  2657. cpuflags="-march=$cpu"
  2658. ;;
  2659. esac
  2660. fi
  2661. add_cflags $cpuflags
  2662. add_asflags $cpuflags
  2663. # compiler sanity check
  2664. check_exec <<EOF
  2665. int main(void){ return 0; }
  2666. EOF
  2667. if test "$?" != 0; then
  2668. echo "$cc is unable to create an executable file."
  2669. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  2670. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  2671. echo "Only do this if you know what cross compiling means."
  2672. fi
  2673. die "C compiler test failed."
  2674. fi
  2675. add_cppflags -D_ISOC99_SOURCE
  2676. add_cxxflags -D__STDC_CONSTANT_MACROS
  2677. check_cflags -std=c99
  2678. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  2679. #include <stdlib.h>
  2680. EOF
  2681. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  2682. #include <stdlib.h>
  2683. EOF
  2684. check_host_cflags -std=c99
  2685. check_host_cflags -Wall
  2686. case "$arch" in
  2687. alpha|ia64|mips|parisc|sparc)
  2688. spic=$shared
  2689. ;;
  2690. x86)
  2691. subarch="x86_32"
  2692. check_code cc "" "int test[(int)sizeof(char*) - 7]" && subarch="x86_64"
  2693. if test "$subarch" = "x86_64"; then
  2694. spic=$shared
  2695. fi
  2696. ;;
  2697. ppc)
  2698. check_cc <<EOF && subarch="ppc64"
  2699. int test[(int)sizeof(char*) - 7];
  2700. EOF
  2701. ;;
  2702. esac
  2703. enable $subarch
  2704. enabled spic && enable pic
  2705. # OS specific
  2706. case $target_os in
  2707. haiku)
  2708. prefix_default="/boot/common"
  2709. network_extralibs="-lnetwork"
  2710. host_libs=
  2711. ;;
  2712. sunos)
  2713. FFSERVERLDFLAGS=""
  2714. SHFLAGS='-shared -Wl,-h,$$(@F)'
  2715. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  2716. network_extralibs="-lsocket -lnsl"
  2717. add_cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
  2718. # When using suncc to build, the Solaris linker will mark
  2719. # an executable with each instruction set encountered by
  2720. # the Solaris assembler. As our libraries contain their own
  2721. # guards for processor-specific code, instead suppress
  2722. # generation of the HWCAPS ELF section on Solaris x86 only.
  2723. enabled_all suncc x86 && echo "hwcap_1 = OVERRIDE;" > mapfile && add_ldflags -Wl,-M,mapfile
  2724. nm_default='nm -P -g'
  2725. ;;
  2726. netbsd)
  2727. disable symver
  2728. oss_indev_extralibs="-lossaudio"
  2729. oss_outdev_extralibs="-lossaudio"
  2730. enabled gcc || check_ldflags -Wl,-zmuldefs
  2731. ;;
  2732. openbsd|bitrig)
  2733. # On OpenBSD 4.5. the compiler does not use PIC unless
  2734. # explicitly using -fPIC. FFmpeg builds fine without PIC,
  2735. # however the generated executable will not do anything
  2736. # (simply quits with exit-code 1, no crash, no output).
  2737. # Thus explicitly enable PIC here.
  2738. enable pic
  2739. disable symver
  2740. SHFLAGS='-shared'
  2741. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBVERSION)'
  2742. SLIB_INSTALL_LINKS=
  2743. oss_indev_extralibs="-lossaudio"
  2744. oss_outdev_extralibs="-lossaudio"
  2745. ;;
  2746. dragonfly)
  2747. disable symver
  2748. ;;
  2749. freebsd)
  2750. ;;
  2751. bsd/os)
  2752. add_extralibs -lpoll -lgnugetopt
  2753. strip="strip -d"
  2754. ;;
  2755. darwin)
  2756. gas="gas-preprocessor.pl $cc"
  2757. enabled ppc && add_asflags -force_cpusubtype_ALL
  2758. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  2759. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  2760. strip="${strip} -x"
  2761. add_ldflags -Wl,-dynamic,-search_paths_first
  2762. SLIBSUF=".dylib"
  2763. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  2764. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  2765. FFSERVERLDFLAGS=-Wl,-bind_at_load
  2766. objformat="macho"
  2767. enabled x86_64 && objformat="macho64"
  2768. enabled_any pic shared ||
  2769. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  2770. ;;
  2771. mingw32*)
  2772. if test $target_os = "mingw32ce"; then
  2773. disable network
  2774. else
  2775. target_os=mingw32
  2776. fi
  2777. LIBTARGET=i386
  2778. if enabled x86_64; then
  2779. LIBTARGET="i386:x86-64"
  2780. elif enabled arm; then
  2781. LIBTARGET=arm-wince
  2782. fi
  2783. shlibdir_default="$bindir_default"
  2784. SLIBPREF=""
  2785. SLIBSUF=".dll"
  2786. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2787. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2788. dlltool="${cross_prefix}dlltool"
  2789. if check_cmd lib.exe -list; then
  2790. SLIB_EXTRA_CMD='-lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  2791. if enabled x86_64; then
  2792. LIBTARGET=x64
  2793. fi
  2794. elif check_cmd $dlltool --version; then
  2795. SLIB_EXTRA_CMD=-'$(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
  2796. fi
  2797. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2798. SLIB_INSTALL_LINKS=
  2799. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  2800. SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  2801. 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'
  2802. objformat="win32"
  2803. ranlib=:
  2804. enable dos_paths
  2805. add_cppflags -U__STRICT_ANSI__
  2806. ;;
  2807. win32|win64)
  2808. if enabled shared; then
  2809. # Link to the import library instead of the normal static library
  2810. # for shared libs.
  2811. LD_LIB='%.lib'
  2812. # Cannot build shared and static libraries at the same time with
  2813. # MSVC.
  2814. disable static
  2815. fi
  2816. shlibdir_default="$bindir_default"
  2817. SLIBPREF=""
  2818. SLIBSUF=".dll"
  2819. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2820. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2821. SLIB_CREATE_DEF_CMD='makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
  2822. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2823. SLIB_INSTALL_LINKS=
  2824. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  2825. SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  2826. SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  2827. objformat="win32"
  2828. ranlib=:
  2829. enable dos_paths
  2830. ;;
  2831. cygwin*)
  2832. target_os=cygwin
  2833. shlibdir_default="$bindir_default"
  2834. SLIBPREF="cyg"
  2835. SLIBSUF=".dll"
  2836. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2837. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2838. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2839. SLIB_INSTALL_LINKS=
  2840. SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
  2841. SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
  2842. objformat="win32"
  2843. enable dos_paths
  2844. add_cppflags -U__STRICT_ANSI__
  2845. ;;
  2846. *-dos|freedos|opendos)
  2847. network_extralibs="-lsocket"
  2848. objformat="coff"
  2849. enable dos_paths
  2850. add_cppflags -U__STRICT_ANSI__
  2851. ;;
  2852. linux)
  2853. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2854. enable dv1394
  2855. ;;
  2856. irix*)
  2857. target_os=irix
  2858. ranlib="echo ignoring ranlib"
  2859. ;;
  2860. os/2*)
  2861. strip="lxlite -CS"
  2862. ln_s="cp -f"
  2863. objformat="aout"
  2864. add_cppflags -D_GNU_SOURCE
  2865. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
  2866. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  2867. FFSERVERLDFLAGS=""
  2868. LIBSUF="_s.a"
  2869. SLIBPREF=""
  2870. SLIBSUF=".dll"
  2871. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  2872. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  2873. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  2874. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  2875. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  2876. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  2877. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  2878. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  2879. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  2880. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  2881. SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
  2882. enable dos_paths
  2883. enable_weak os2threads
  2884. ;;
  2885. gnu/kfreebsd)
  2886. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
  2887. ;;
  2888. gnu)
  2889. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2890. ;;
  2891. qnx)
  2892. add_cppflags -D_QNX_SOURCE
  2893. network_extralibs="-lsocket"
  2894. ;;
  2895. symbian)
  2896. SLIBSUF=".dll"
  2897. enable dos_paths
  2898. add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
  2899. add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
  2900. add_ldflags -Wl,--target1-abs,--no-undefined \
  2901. -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
  2902. -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
  2903. add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
  2904. -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
  2905. -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
  2906. ;;
  2907. osf1)
  2908. add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
  2909. FFSERVERLDFLAGS=
  2910. ;;
  2911. minix)
  2912. ;;
  2913. none)
  2914. ;;
  2915. *)
  2916. die "Unknown OS '$target_os'."
  2917. ;;
  2918. esac
  2919. # determine libc flavour
  2920. if check_cpp_condition features.h "defined __UCLIBC__"; then
  2921. libc_type=uclibc
  2922. elif check_cpp_condition features.h "defined __GLIBC__"; then
  2923. libc_type=glibc
  2924. elif check_header _mingw.h; then
  2925. libc_type=mingw
  2926. check_cpp_condition _mingw.h \
  2927. "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) || \
  2928. (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  2929. die "ERROR: MinGW runtime version must be >= 3.15."
  2930. if check_cpp_condition _mingw.h "defined(__MINGW64_VERSION_MAJOR) && \
  2931. __MINGW64_VERSION_MAJOR < 3"; then
  2932. add_compat msvcrt/snprintf.o
  2933. add_cflags "-include $source_path/compat/msvcrt/snprintf.h"
  2934. fi
  2935. elif check_cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
  2936. libc_type=newlib
  2937. elif check_func_headers stdlib.h _get_doserrno; then
  2938. libc_type=msvcrt
  2939. add_compat strtod.o strtod=avpriv_strtod
  2940. add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \
  2941. _snprintf=avpriv_snprintf \
  2942. vsnprintf=avpriv_vsnprintf
  2943. elif check_cpp_condition stddef.h "defined __KLIBC__"; then
  2944. libc_type=klibc
  2945. fi
  2946. test -n "$libc_type" && enable $libc_type
  2947. # hacks for compiler/libc/os combinations
  2948. if enabled_all tms470 glibc; then
  2949. CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
  2950. add_cppflags -D__USER_LABEL_PREFIX__=
  2951. add_cppflags -D__builtin_memset=memset
  2952. add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
  2953. add_cflags -pds=48 # incompatible redefinition of macro
  2954. fi
  2955. esc(){
  2956. echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
  2957. }
  2958. echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $FFMPEG_CONFIGURATION)" >config.fate
  2959. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
  2960. set_default $PATHS_LIST
  2961. set_default nm
  2962. # we need to build at least one lib type
  2963. if ! enabled_any static shared; then
  2964. cat <<EOF
  2965. At least one library type must be built.
  2966. Specify --enable-static to build the static libraries or --enable-shared to
  2967. build the shared libraries as well. To only build the shared libraries specify
  2968. --disable-static in addition to --enable-shared.
  2969. EOF
  2970. exit 1;
  2971. fi
  2972. die_license_disabled() {
  2973. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  2974. }
  2975. die_license_disabled_gpl() {
  2976. enabled $1 || { enabled $2 && die "$2 is incompatible with the gpl and --enable-$1 is not specified."; }
  2977. }
  2978. die_license_disabled gpl libcdio
  2979. die_license_disabled gpl libutvideo
  2980. die_license_disabled gpl libx264
  2981. die_license_disabled gpl libxavs
  2982. die_license_disabled gpl libxvid
  2983. die_license_disabled gpl x11grab
  2984. die_license_disabled nonfree libaacplus
  2985. die_license_disabled nonfree libfaac
  2986. enabled gpl && die_license_disabled_gpl nonfree libfdk_aac
  2987. enabled gpl && die_license_disabled_gpl nonfree openssl
  2988. die_license_disabled version3 libopencore_amrnb
  2989. die_license_disabled version3 libopencore_amrwb
  2990. die_license_disabled version3 libvo_aacenc
  2991. die_license_disabled version3 libvo_amrwbenc
  2992. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  2993. disabled optimizations || check_cflags -fomit-frame-pointer
  2994. enable_pic() {
  2995. enable pic
  2996. add_cppflags -DPIC
  2997. add_cflags -fPIC
  2998. add_asflags -fPIC
  2999. }
  3000. enabled pic && enable_pic
  3001. check_cc <<EOF || die "Symbol mangling check failed."
  3002. int ff_extern;
  3003. EOF
  3004. sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  3005. extern_prefix=${sym%%ff_extern*}
  3006. check_cc <<EOF && enable_weak inline_asm
  3007. void foo(void) { __asm__ volatile ("" ::); }
  3008. EOF
  3009. _restrict=
  3010. for restrict_keyword in restrict __restrict__ __restrict; do
  3011. check_cc <<EOF && _restrict=$restrict_keyword && break
  3012. void foo(char * $restrict_keyword p);
  3013. EOF
  3014. done
  3015. check_cc <<EOF && enable attribute_packed
  3016. struct { int x; } __attribute__((packed)) x;
  3017. EOF
  3018. check_cc <<EOF && enable attribute_may_alias
  3019. union { int x; } __attribute__((may_alias)) x;
  3020. EOF
  3021. check_cc <<EOF || die "endian test failed"
  3022. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  3023. EOF
  3024. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  3025. if enabled alpha; then
  3026. check_cflags -mieee
  3027. elif enabled arm; then
  3028. enabled thumb && check_cflags -mthumb || check_cflags -marm
  3029. nogas=die
  3030. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  3031. enable vfp_args
  3032. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
  3033. case "${cross_prefix:-$cc}" in
  3034. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  3035. *) check_ld "cc" <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  3036. __asm__ (".eabi_attribute 28, 1");
  3037. int main(void) { return 0; }
  3038. EOF
  3039. esac
  3040. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  3041. fi
  3042. enabled armv5te && check_inline_asm armv5te '"qadd r0, r0, r0"'
  3043. enabled armv6 && check_inline_asm armv6 '"sadd16 r0, r0, r0"'
  3044. enabled armv6t2 && check_inline_asm armv6t2 '"movt r0, #0"'
  3045. enabled armvfp && check_inline_asm armvfp '"fadds s0, s0, s0"'
  3046. enabled neon && check_inline_asm neon '"vadd.i16 q0, q0, q0"'
  3047. enabled vfpv3 && check_inline_asm vfpv3 '"vmov.f32 s0, #1.0"'
  3048. check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
  3049. check_inline_asm asm_mod_y '"vmul.i32 d0, d0, %y0" :: "x"(0)'
  3050. enabled_all armv6t2 shared !pic && enable_pic
  3051. elif enabled mips; then
  3052. check_inline_asm loongson '"dmult.g $1, $2, $3"'
  3053. enabled mips32r2 && add_cflags "-mips32r2" && add_asflags "-mips32r2" &&
  3054. check_inline_asm mips32r2 '"rotr $t0, $t1, 1"'
  3055. enabled mipsdspr1 && add_cflags "-mdsp" && add_asflags "-mdsp" &&
  3056. check_inline_asm mipsdspr1 '"addu.qb $t0, $t1, $t2"'
  3057. enabled mipsdspr2 && add_cflags "-mdspr2" && add_asflags "-mdspr2" &&
  3058. check_inline_asm mipsdspr2 '"absq_s.qb $t0, $t1"'
  3059. enabled mipsfpu && add_cflags "-mhard-float" && add_asflags "-mhard-float" &&
  3060. check_inline_asm mipsfpu '"madd.d $f0, $f2, $f4, $f6"'
  3061. elif enabled ppc; then
  3062. enable local_aligned_8 local_aligned_16
  3063. check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  3064. check_inline_asm ibm_asm '"add 0, 0, 0"'
  3065. check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
  3066. check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  3067. # AltiVec flags: The FSF version of GCC differs from the Apple version
  3068. if enabled altivec; then
  3069. nogas=warn
  3070. check_cflags -maltivec -mabi=altivec &&
  3071. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  3072. check_cflags -faltivec
  3073. # check if our compiler supports Motorola AltiVec C API
  3074. check_cc <<EOF || disable altivec
  3075. $inc_altivec_h
  3076. int main(void) {
  3077. vector signed int v1 = (vector signed int) { 0 };
  3078. vector signed int v2 = (vector signed int) { 1 };
  3079. v1 = vec_add(v1, v2);
  3080. return 0;
  3081. }
  3082. EOF
  3083. enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
  3084. fi
  3085. elif enabled sparc; then
  3086. enabled vis &&
  3087. check_inline_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc &&
  3088. add_cflags -mcpu=ultrasparc -mtune=ultrasparc
  3089. elif enabled x86; then
  3090. check_code ld intrin.h "__rdtsc()" "cc" && enable rdtsc
  3091. check_code ld mmintrin.h "_mm_empty()" "cc" && enable mm_empty
  3092. enable local_aligned_8 local_aligned_16
  3093. # check whether EBP is available on x86
  3094. # As 'i' is stored on the stack, this program will crash
  3095. # if the base pointer is used to access it because the
  3096. # base pointer is cleared in the inline assembly code.
  3097. check_exec_crash <<EOF && enable ebp_available
  3098. volatile int i=0;
  3099. __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
  3100. return i;
  3101. EOF
  3102. # check whether EBX is available on x86
  3103. check_inline_asm ebx_available '""::"b"(0)' &&
  3104. check_inline_asm ebx_available '"":::"%ebx"'
  3105. # check whether xmm clobbers are supported
  3106. check_inline_asm xmm_clobbers '"":::"%xmm0"'
  3107. # check whether binutils is new enough to compile SSSE3/MMXEXT
  3108. enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
  3109. enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
  3110. if ! disabled_any asm mmx yasm; then
  3111. if check_cmd $yasmexe --version; then
  3112. enabled x86_64 && yasm_extra="-m amd64"
  3113. yasm_debug="-g dwarf2"
  3114. elif check_cmd nasm -v; then
  3115. yasmexe=nasm
  3116. yasm_debug="-g -F dwarf"
  3117. enabled x86_64 && test "$objformat" = elf && objformat=elf64
  3118. fi
  3119. YASMFLAGS="-f $objformat $yasm_extra"
  3120. enabled pic && append YASMFLAGS "-DPIC"
  3121. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  3122. case "$objformat" in
  3123. elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
  3124. esac
  3125. check_yasm "pextrd [eax], xmm0, 1" && enable yasm ||
  3126. die "yasm not found, use --disable-yasm for a crippled build"
  3127. check_yasm "vextractf128 xmm0, ymm0, 0" || disable avx_external
  3128. check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
  3129. check_yasm "CPU amdnop" && enable cpunop
  3130. fi
  3131. case "$cpu" in
  3132. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  3133. disable fast_clz
  3134. ;;
  3135. esac
  3136. fi
  3137. if enabled asm; then
  3138. as=${gas:=$as}
  3139. check_inline_asm gnu_as '".macro m n\n\\n:.int 0\n.endm\nm x"' ||
  3140. $nogas "GNU assembler not found, install gas-preprocessor"
  3141. fi
  3142. check_ldflags -Wl,--as-needed
  3143. if check_func dlopen; then
  3144. ldl=
  3145. elif check_func dlopen -ldl; then
  3146. ldl=-ldl
  3147. fi
  3148. if enabled network; then
  3149. check_type "sys/types.h sys/socket.h" socklen_t
  3150. check_type netdb.h "struct addrinfo"
  3151. check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
  3152. check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
  3153. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  3154. check_type netinet/in.h "struct sockaddr_in6"
  3155. check_type poll.h "struct pollfd"
  3156. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  3157. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  3158. check_type netinet/sctp.h "struct sctp_event_subscribe"
  3159. check_func getaddrinfo $network_extralibs
  3160. # Prefer arpa/inet.h over winsock2
  3161. if check_header arpa/inet.h ; then
  3162. check_func closesocket
  3163. elif check_header winsock2.h ; then
  3164. check_func_headers winsock2.h closesocket -lws2 &&
  3165. network_extralibs="-lws2" ||
  3166. { check_func_headers winsock2.h closesocket -lws2_32 &&
  3167. network_extralibs="-lws2_32"; }
  3168. check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
  3169. check_type ws2tcpip.h socklen_t
  3170. check_type ws2tcpip.h "struct addrinfo"
  3171. check_type ws2tcpip.h "struct group_source_req"
  3172. check_type ws2tcpip.h "struct ip_mreq_source"
  3173. check_type ws2tcpip.h "struct ipv6_mreq"
  3174. check_type winsock2.h "struct pollfd"
  3175. check_type ws2tcpip.h "struct sockaddr_in6"
  3176. check_type ws2tcpip.h "struct sockaddr_storage"
  3177. check_struct winsock2.h "struct sockaddr" sa_len
  3178. else
  3179. disable network
  3180. fi
  3181. fi
  3182. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  3183. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  3184. check_func clock_gettime || { check_func clock_gettime -lrt && add_extralibs -lrt; }
  3185. check_func fcntl
  3186. check_func fork
  3187. check_func gethrtime
  3188. check_func getopt
  3189. check_func getrusage
  3190. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  3191. check_func gettimeofday
  3192. check_func inet_aton $network_extralibs
  3193. check_func isatty
  3194. check_func localtime_r
  3195. check_func ${malloc_prefix}memalign && enable memalign
  3196. check_func mkstemp
  3197. check_func mmap
  3198. check_func mprotect
  3199. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  3200. check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
  3201. check_func setrlimit
  3202. check_func strerror_r
  3203. check_func sched_getaffinity
  3204. check_func sysconf
  3205. check_func sysctl
  3206. check_func usleep
  3207. check_func_headers conio.h kbhit
  3208. check_func_headers windows.h PeekNamedPipe
  3209. check_func_headers io.h setmode
  3210. check_func_headers lzo/lzo1x.h lzo1x_999_compress
  3211. check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
  3212. check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
  3213. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  3214. check_func_headers windows.h GetProcessAffinityMask
  3215. check_func_headers windows.h GetProcessTimes
  3216. check_func_headers windows.h GetSystemTimeAsFileTime
  3217. check_func_headers windows.h MapViewOfFile
  3218. check_func_headers windows.h Sleep
  3219. check_func_headers windows.h VirtualAlloc
  3220. check_func_headers glob.h glob
  3221. check_header direct.h
  3222. check_header dlfcn.h
  3223. check_header dxva.h
  3224. check_header dxva2api.h -D_WIN32_WINNT=0x0600
  3225. check_header io.h
  3226. check_header libcrystalhd/libcrystalhd_if.h
  3227. check_header malloc.h
  3228. check_header poll.h
  3229. check_header sys/mman.h
  3230. check_header sys/param.h
  3231. check_header sys/resource.h
  3232. check_header sys/select.h
  3233. check_header sys/time.h
  3234. check_header termios.h
  3235. check_header unistd.h
  3236. check_header vdpau/vdpau.h
  3237. check_header vdpau/vdpau_x11.h
  3238. check_header windows.h
  3239. check_header X11/extensions/XvMClib.h
  3240. check_header asm/types.h
  3241. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  3242. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  3243. # check for VDA header
  3244. if ! disabled vda && ! enabled ppc; then
  3245. if check_header VideoDecodeAcceleration/VDADecoder.h; then
  3246. enable vda
  3247. add_extralibs -framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore
  3248. fi
  3249. fi
  3250. if ! disabled w32threads && ! enabled pthreads; then
  3251. check_func _beginthreadex && enable w32threads
  3252. fi
  3253. # check for some common methods of building with pthread support
  3254. # do this before the optional library checks as some of them require pthreads
  3255. if ! disabled pthreads && ! enabled w32threads && ! enabled os2threads; then
  3256. enable pthreads
  3257. if check_func pthread_create; then
  3258. :
  3259. elif check_func pthread_create -pthread; then
  3260. add_cflags -pthread
  3261. add_extralibs -pthread
  3262. elif check_func pthread_create -pthreads; then
  3263. add_cflags -pthreads
  3264. add_extralibs -pthreads
  3265. elif check_func pthread_create -lpthreadGC2; then
  3266. add_extralibs -lpthreadGC2
  3267. elif ! check_lib pthread.h pthread_create -lpthread; then
  3268. disable pthreads
  3269. fi
  3270. fi
  3271. for thread in $THREADS_LIST; do
  3272. if enabled $thread; then
  3273. test -n "$thread_type" &&
  3274. die "ERROR: Only one thread type must be selected." ||
  3275. thread_type="$thread"
  3276. fi
  3277. done
  3278. if enabled pthreads; then
  3279. check_func pthread_cancel
  3280. fi
  3281. check_lib math.h sin -lm && LIBM="-lm"
  3282. disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd
  3283. enabled vaapi && require vaapi va/va.h vaInitialize -lva
  3284. check_mathfunc cbrtf
  3285. check_mathfunc exp2
  3286. check_mathfunc exp2f
  3287. check_mathfunc isinf
  3288. check_mathfunc isnan
  3289. check_mathfunc llrint
  3290. check_mathfunc llrintf
  3291. check_mathfunc log2
  3292. check_mathfunc log2f
  3293. check_mathfunc lrint
  3294. check_mathfunc lrintf
  3295. check_mathfunc rint
  3296. check_mathfunc round
  3297. check_mathfunc roundf
  3298. check_mathfunc trunc
  3299. check_mathfunc truncf
  3300. # these are off by default, so fail if requested and not available
  3301. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
  3302. enabled fontconfig && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit
  3303. enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
  3304. enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
  3305. enabled libiec61883 && require libiec61883 libiec61883/iec61883.h iec61883_cmp_connect -lraw1394 -lavc1394 -lrom1394 -liec61883
  3306. enabled libaacplus && require "libaacplus >= 2.0.0" aacplus.h aacplusEncOpen -laacplus
  3307. enabled libass && require_pkg_config libass ass/ass.h ass_library_init
  3308. enabled libbluray && require libbluray libbluray/bluray.h bd_open -lbluray
  3309. enabled libcdio && require2 libcdio "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open "-lcdio_paranoia -lcdio_cdda -lcdio"
  3310. enabled libcelt && require libcelt celt/celt.h celt_decode -lcelt0 &&
  3311. { check_lib celt/celt.h celt_decoder_create_custom -lcelt0 ||
  3312. die "ERROR: libcelt must be installed and version must be >= 0.11.0."; }
  3313. enabled libcaca && require_pkg_config caca caca.h caca_create_canvas
  3314. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  3315. enabled libfdk_aac && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
  3316. flite_libs="-lflite_cmu_time_awb -lflite_cmu_us_awb -lflite_cmu_us_kal -lflite_cmu_us_kal16 -lflite_cmu_us_rms -lflite_cmu_us_slt -lflite_usenglish -lflite_cmulex -lflite"
  3317. enabled libflite && require2 libflite "flite/flite.h" flite_init $flite_libs
  3318. enabled libfreetype && require_pkg_config freetype2 "ft2build.h freetype/freetype.h" FT_Init_FreeType
  3319. enabled libgsm && require libgsm gsm/gsm.h gsm_create -lgsm
  3320. enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
  3321. enabled libmodplug && require libmodplug libmodplug/modplug.h ModPlug_Load -lmodplug
  3322. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  3323. enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
  3324. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  3325. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  3326. enabled libopencv && require_pkg_config opencv opencv/cxcore.h cvCreateImageHeader
  3327. enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
  3328. enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
  3329. enabled libpulse && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
  3330. enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
  3331. enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
  3332. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  3333. enabled libstagefright_h264 && require_cpp libstagefright_h264 "binder/ProcessState.h media/stagefright/MetaData.h
  3334. media/stagefright/MediaBufferGroup.h media/stagefright/MediaDebug.h media/stagefright/MediaDefs.h
  3335. media/stagefright/OMXClient.h media/stagefright/OMXCodec.h" android::OMXClient -lstagefright -lmedia -lutils -lbinder -lgnustl_static
  3336. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  3337. enabled libtwolame && require libtwolame twolame.h twolame_init -ltwolame &&
  3338. { check_lib twolame.h twolame_encode_buffer_float32_interleaved -ltwolame ||
  3339. die "ERROR: libtwolame must be installed and version must be >= 0.3.10"; }
  3340. enabled libutvideo && require_cpp utvideo "stdint.h stdlib.h utvideo/utvideo.h utvideo/Codec.h" 'CCodec*' -lutvideo -lstdc++
  3341. enabled libv4l2 && require_pkg_config libv4l2 libv4l2.h v4l2_ioctl
  3342. enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
  3343. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  3344. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  3345. enabled libvpx && {
  3346. enabled libvpx_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
  3347. die "ERROR: libvpx decoder must be installed and version must be >=0.9.1"; }
  3348. enabled libvpx_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VP8E_SET_MAX_INTRA_BITRATE_PCT" -lvpx ||
  3349. die "ERROR: libvpx encoder version must be >=0.9.7"; } }
  3350. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
  3351. { check_cpp_condition x264.h "X264_BUILD >= 118" ||
  3352. die "ERROR: libx264 must be installed and version must be >= 0.118."; }
  3353. enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
  3354. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  3355. enabled openal && { { for al_libs in "${OPENAL_LIBS}" "-lopenal" "-lOpenAL32"; do
  3356. check_lib 'AL/al.h' alGetError "${al_libs}" && break; done } ||
  3357. die "ERROR: openal not found"; } &&
  3358. { check_cpp_condition "AL/al.h" "defined(AL_VERSION_1_1)" ||
  3359. die "ERROR: openal must be installed and version must be 1.1 or compatible"; }
  3360. enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
  3361. check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
  3362. check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
  3363. die "ERROR: openssl not found"; }
  3364. if enabled gnutls; then
  3365. { check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
  3366. { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
  3367. fi
  3368. # libdc1394 check
  3369. if enabled libdc1394; then
  3370. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  3371. enable libdc1394_2; } ||
  3372. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  3373. enable libdc1394_1; } ||
  3374. die "ERROR: No version of libdc1394 found "
  3375. fi
  3376. SDL_CONFIG="${cross_prefix}sdl-config"
  3377. if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
  3378. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  3379. enable sdl &&
  3380. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  3381. else
  3382. if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
  3383. sdl_cflags=$("${SDL_CONFIG}" --cflags)
  3384. sdl_libs=$("${SDL_CONFIG}" --libs)
  3385. check_func_headers SDL_version.h SDL_Linked_Version $sdl_cflags $sdl_libs &&
  3386. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  3387. enable sdl &&
  3388. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  3389. fi
  3390. fi
  3391. enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs
  3392. texi2html --help 2> /dev/null | grep -q 'init-file' && enable texi2html || disable texi2html
  3393. makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo
  3394. perl --version > /dev/null 2>&1 && enable perl || disable perl
  3395. pod2man --help > /dev/null 2>&1 && enable pod2man || disable pod2man
  3396. check_header linux/fb.h
  3397. check_header linux/videodev.h
  3398. check_header linux/videodev2.h
  3399. check_struct linux/videodev2.h "struct v4l2_frmivalenum" discrete
  3400. check_header sys/videoio.h
  3401. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  3402. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  3403. # w32api 3.12 had it defined wrong
  3404. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  3405. check_type "dshow.h" IBaseFilter
  3406. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  3407. { check_header dev/bktr/ioctl_meteor.h &&
  3408. check_header dev/bktr/ioctl_bt848.h; } ||
  3409. { check_header machine/ioctl_meteor.h &&
  3410. check_header machine/ioctl_bt848.h; } ||
  3411. { check_header dev/video/meteor/ioctl_meteor.h &&
  3412. check_header dev/video/bktr/ioctl_bt848.h; } ||
  3413. check_header dev/ic/bt8xx.h
  3414. check_header sndio.h
  3415. if check_struct sys/soundcard.h audio_buf_info bytes; then
  3416. enable_safe sys/soundcard.h
  3417. else
  3418. check_cc -D__BSD_VISIBLE -D__XSI_VISIBLE <<EOF && add_cppflags -D__BSD_VISIBLE -D__XSI_VISIBLE && enable_safe sys/soundcard.h
  3419. #include <sys/soundcard.h>
  3420. audio_buf_info abc;
  3421. EOF
  3422. fi
  3423. check_header soundcard.h
  3424. enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  3425. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack && check_func sem_timedwait &&
  3426. check_func jack_port_get_latency_range -ljack
  3427. enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
  3428. enabled x11grab &&
  3429. require X11 X11/Xlib.h XOpenDisplay -lX11 &&
  3430. require Xext X11/extensions/XShm.h XShmCreateImage -lXext &&
  3431. require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
  3432. if ! disabled vaapi; then
  3433. check_lib va/va.h vaInitialize -lva && {
  3434. check_cpp_condition va/va_version.h "VA_CHECK_VERSION(0,32,0)" ||
  3435. warn "Please upgrade to VA-API >= 0.32 if you would like full VA-API support.";
  3436. } || disable vaapi
  3437. fi
  3438. if ! disabled vdpau && enabled vdpau_vdpau_h; then
  3439. check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  3440. { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." && disable vdpau; }
  3441. fi
  3442. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  3443. enabled coverage && add_cflags "-fprofile-arcs -ftest-coverage" && add_ldflags "-fprofile-arcs -ftest-coverage"
  3444. 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"
  3445. # add some useful compiler flags if supported
  3446. check_cflags -Wdeclaration-after-statement
  3447. check_cflags -Wall
  3448. check_cflags -Wno-parentheses
  3449. check_cflags -Wno-switch
  3450. check_cflags -Wno-format-zero-length
  3451. check_cflags -Wdisabled-optimization
  3452. check_cflags -Wpointer-arith
  3453. check_cflags -Wredundant-decls
  3454. check_cflags -Wno-pointer-sign
  3455. check_cflags -Wwrite-strings
  3456. check_cflags -Wtype-limits
  3457. check_cflags -Wundef
  3458. check_cflags -Wmissing-prototypes
  3459. check_cflags -Wno-pointer-to-int-cast
  3460. check_cflags -Wstrict-prototypes
  3461. enabled extra_warnings && check_cflags -Winline
  3462. # add some linker flags
  3463. check_ldflags -Wl,--warn-common
  3464. check_ldflags -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
  3465. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  3466. enabled xmm_clobber_test &&
  3467. check_ldflags -Wl,--wrap,avcodec_open2 \
  3468. -Wl,--wrap,avcodec_decode_audio4 \
  3469. -Wl,--wrap,avcodec_decode_video2 \
  3470. -Wl,--wrap,avcodec_decode_subtitle2 \
  3471. -Wl,--wrap,avcodec_encode_audio2 \
  3472. -Wl,--wrap,avcodec_encode_video \
  3473. -Wl,--wrap,avcodec_encode_subtitle \
  3474. -Wl,--wrap,sws_scale ||
  3475. disable xmm_clobber_test
  3476. echo "X{};" > $TMPV
  3477. if test_ldflags -Wl,--version-script,$TMPV; then
  3478. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  3479. check_cc <<EOF && enable symver_asm_label
  3480. void ff_foo(void) __asm__ ("av_foo@VERSION");
  3481. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  3482. EOF
  3483. check_cc <<EOF && enable symver_gnu_asm
  3484. __asm__(".symver ff_foo,av_foo@VERSION");
  3485. void ff_foo(void) {}
  3486. EOF
  3487. fi
  3488. if [ -z "$optflags" ]; then
  3489. if enabled small; then
  3490. optflags=$cflags_size
  3491. elif enabled optimizations; then
  3492. optflags=$cflags_speed
  3493. else
  3494. optflags=$cflags_noopt
  3495. fi
  3496. fi
  3497. check_optflags(){
  3498. check_cflags "$@"
  3499. enabled lto && check_ldflags "$@"
  3500. }
  3501. if enabled lto; then
  3502. test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
  3503. check_cflags -flto
  3504. check_ldflags -flto $cpuflags
  3505. fi
  3506. check_optflags $optflags
  3507. check_optflags -fno-math-errno
  3508. check_optflags -fno-signed-zeros
  3509. enabled ftrapv && check_cflags -ftrapv
  3510. check_cc -mno-red-zone <<EOF && noredzone_flags="-mno-red-zone"
  3511. int x;
  3512. EOF
  3513. if enabled icc; then
  3514. # Just warnings, no remarks
  3515. check_cflags -w1
  3516. # -wd: Disable following warnings
  3517. # 144, 167, 556: -Wno-pointer-sign
  3518. # 1292: attribute "foo" ignored
  3519. # 1419: external declaration in primary source file
  3520. # 10006: ignoring unknown option -fno-signed-zeros
  3521. # 10148: ignoring unknown option -Wno-parentheses
  3522. # 10156: ignoring option '-W'; no argument required
  3523. check_cflags -wd144,167,556,1292,1419,10006,10148,10156
  3524. # 11030: Warning unknown option --as-needed
  3525. # 10156: ignoring option '-export'; no argument required
  3526. check_ldflags -wd10156,11030
  3527. # Allow to compile with optimizations
  3528. check_ldflags -march=$cpu
  3529. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  3530. enable ebp_available
  3531. if enabled x86_32; then
  3532. icc_version=$($cc -dumpversion)
  3533. test ${icc_version%%.*} -ge 11 &&
  3534. check_cflags -falign-stack=maintain-16-byte ||
  3535. disable aligned_stack
  3536. fi
  3537. elif enabled ccc; then
  3538. # disable some annoying warnings
  3539. add_cflags -msg_disable cvtu32to64
  3540. add_cflags -msg_disable embedcomment
  3541. add_cflags -msg_disable needconstext
  3542. add_cflags -msg_disable nomainieee
  3543. add_cflags -msg_disable ptrmismatch1
  3544. add_cflags -msg_disable unreachcode
  3545. elif enabled gcc; then
  3546. check_optflags -fno-tree-vectorize
  3547. check_cflags -Werror=implicit-function-declaration
  3548. check_cflags -Werror=missing-prototypes
  3549. check_cflags -Werror=vla
  3550. elif enabled llvm_gcc; then
  3551. check_cflags -mllvm -stack-alignment=16
  3552. elif enabled clang; then
  3553. check_cflags -mllvm -stack-alignment=16
  3554. check_cflags -Qunused-arguments
  3555. elif enabled armcc; then
  3556. # 2523: use of inline assembler is deprecated
  3557. add_cflags -W${armcc_opt},--diag_suppress=2523
  3558. add_cflags -W${armcc_opt},--diag_suppress=1207
  3559. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  3560. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  3561. add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
  3562. add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
  3563. elif enabled tms470; then
  3564. add_cflags -pds=824 -pds=837
  3565. elif enabled pathscale; then
  3566. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  3567. elif enabled msvc; then
  3568. enabled x86_32 && disable aligned_stack
  3569. fi
  3570. enabled_any $THREADS_LIST && enable threads
  3571. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  3572. check_deps $CONFIG_LIST \
  3573. $CONFIG_EXTRA \
  3574. $HAVE_LIST \
  3575. $ALL_COMPONENTS \
  3576. $ALL_TESTS \
  3577. if test $target_os = "haiku"; then
  3578. disable memalign
  3579. disable posix_memalign
  3580. fi
  3581. ! enabled_any memalign posix_memalign aligned_malloc &&
  3582. enabled_any $need_memalign && enable memalign_hack
  3583. # add_dep lib dep
  3584. # -> enable ${lib}_deps_${dep}
  3585. # -> add $dep to ${lib}_deps only once
  3586. add_dep() {
  3587. lib=$1
  3588. dep=$2
  3589. enabled "${lib}_deps_${dep}" && return 0
  3590. enable "${lib}_deps_${dep}"
  3591. prepend "${lib}_deps" $dep
  3592. }
  3593. # merge deps lib components
  3594. # merge all ${component}_deps into ${lib}_deps and ${lib}_deps_*
  3595. merge_deps() {
  3596. lib=$1
  3597. shift
  3598. for comp in $*; do
  3599. enabled $comp || continue
  3600. eval "dep=\"\$${comp}_deps\""
  3601. for d in $dep; do
  3602. add_dep $lib $d
  3603. done
  3604. done
  3605. }
  3606. merge_deps libavfilter $FILTER_LIST
  3607. echo "install prefix $prefix"
  3608. echo "source path $source_path"
  3609. echo "C compiler $cc"
  3610. echo "ARCH $arch ($cpu)"
  3611. if test "$build_suffix" != ""; then
  3612. echo "build suffix $build_suffix"
  3613. fi
  3614. if test "$progs_suffix" != ""; then
  3615. echo "progs suffix $progs_suffix"
  3616. fi
  3617. if test "$extra_version" != ""; then
  3618. echo "version string suffix $extra_version"
  3619. fi
  3620. echo "big-endian ${bigendian-no}"
  3621. echo "runtime cpu detection ${runtime_cpudetect-no}"
  3622. if enabled x86; then
  3623. echo "${yasmexe} ${yasm-no}"
  3624. echo "MMX enabled ${mmx-no}"
  3625. echo "MMXEXT enabled ${mmxext-no}"
  3626. echo "3DNow! enabled ${amd3dnow-no}"
  3627. echo "3DNow! extended enabled ${amd3dnowext-no}"
  3628. echo "SSE enabled ${sse-no}"
  3629. echo "SSSE3 enabled ${ssse3-no}"
  3630. echo "AVX enabled ${avx-no}"
  3631. echo "FMA4 enabled ${fma4-no}"
  3632. echo "CMOV enabled ${cmov-no}"
  3633. echo "CMOV is fast ${fast_cmov-no}"
  3634. echo "EBX available ${ebx_available-no}"
  3635. echo "EBP available ${ebp_available-no}"
  3636. fi
  3637. if enabled arm; then
  3638. echo "ARMv5TE enabled ${armv5te-no}"
  3639. echo "ARMv6 enabled ${armv6-no}"
  3640. echo "ARMv6T2 enabled ${armv6t2-no}"
  3641. echo "ARM VFP enabled ${armvfp-no}"
  3642. echo "NEON enabled ${neon-no}"
  3643. fi
  3644. if enabled mips; then
  3645. echo "MIPS FPU enabled ${mipsfpu-no}"
  3646. echo "MIPS32R2 enabled ${mips32r2-no}"
  3647. echo "MIPS DSP R1 enabled ${mipsdspr1-no}"
  3648. echo "MIPS DSP R2 enabled ${mipsdspr2-no}"
  3649. fi
  3650. if enabled ppc; then
  3651. echo "AltiVec enabled ${altivec-no}"
  3652. echo "PPC 4xx optimizations ${ppc4xx-no}"
  3653. echo "dcbzl available ${dcbzl-no}"
  3654. fi
  3655. if enabled sparc; then
  3656. echo "VIS enabled ${vis-no}"
  3657. fi
  3658. echo "debug symbols ${debug-no}"
  3659. echo "strip symbols ${stripping-no}"
  3660. echo "optimize for size ${small-no}"
  3661. echo "optimizations ${optimizations-no}"
  3662. echo "static ${static-no}"
  3663. echo "shared ${shared-no}"
  3664. echo "postprocessing support ${postproc-no}"
  3665. echo "new filter support ${avfilter-no}"
  3666. echo "network support ${network-no}"
  3667. echo "threading support ${thread_type-no}"
  3668. echo "safe bitstream reader ${safe_bitstream_reader-no}"
  3669. echo "SDL support ${sdl-no}"
  3670. echo "libdxva2 enabled ${dxva2-no}"
  3671. echo "libva enabled ${vaapi-no}"
  3672. echo "libvdpau enabled ${vdpau-no}"
  3673. echo "AVISynth enabled ${avisynth-no}"
  3674. echo "frei0r enabled ${frei0r-no}"
  3675. echo "gnutls enabled ${gnutls-no}"
  3676. echo "libaacplus enabled ${libaacplus-no}"
  3677. echo "libass enabled ${libass-no}"
  3678. echo "libcaca enabled ${libcaca-no}"
  3679. echo "libcdio support ${libcdio-no}"
  3680. echo "libcelt enabled ${libcelt-no}"
  3681. echo "libdc1394 support ${libdc1394-no}"
  3682. echo "libfaac enabled ${libfaac-no}"
  3683. echo "libfdk-aac enabled ${libfdk_aac-no}"
  3684. echo "libgsm enabled ${libgsm-no}"
  3685. echo "libiec61883 support ${libiec61883-no}"
  3686. echo "libilbc enabled ${libilbc-no}"
  3687. echo "libmodplug enabled ${libmodplug-no}"
  3688. echo "libmp3lame enabled ${libmp3lame-no}"
  3689. echo "libnut enabled ${libnut-no}"
  3690. echo "libopencore-amrnb support ${libopencore_amrnb-no}"
  3691. echo "libopencore-amrwb support ${libopencore_amrwb-no}"
  3692. echo "libopencv support ${libopencv-no}"
  3693. echo "libopenjpeg enabled ${libopenjpeg-no}"
  3694. echo "libopus enabled ${libopus-no}"
  3695. echo "libpulse enabled ${libpulse-no}"
  3696. echo "librtmp enabled ${librtmp-no}"
  3697. echo "libschroedinger enabled ${libschroedinger-no}"
  3698. echo "libspeex enabled ${libspeex-no}"
  3699. echo "libstagefright-h264 enabled ${libstagefright_h264-no}"
  3700. echo "libtheora enabled ${libtheora-no}"
  3701. echo "libtwolame enabled ${libtwolame-no}"
  3702. echo "libutvideo enabled ${libutvideo-no}"
  3703. echo "libv4l2 enabled ${libv4l2-no}"
  3704. echo "libvo-aacenc support ${libvo_aacenc-no}"
  3705. echo "libvo-amrwbenc support ${libvo_amrwbenc-no}"
  3706. echo "libvorbis enabled ${libvorbis-no}"
  3707. echo "libvpx enabled ${libvpx-no}"
  3708. echo "libx264 enabled ${libx264-no}"
  3709. echo "libxavs enabled ${libxavs-no}"
  3710. echo "libxvid enabled ${libxvid-no}"
  3711. echo "openal enabled ${openal-no}"
  3712. echo "openssl enabled ${openssl-no}"
  3713. echo "zlib enabled ${zlib-no}"
  3714. echo "bzlib enabled ${bzlib-no}"
  3715. echo "texi2html enabled ${texi2html-no}"
  3716. echo "perl enabled ${perl-no}"
  3717. echo "pod2man enabled ${pod2man-no}"
  3718. echo "makeinfo enabled ${makeinfo-no}"
  3719. test -n "$random_seed" &&
  3720. echo "random seed ${random_seed}"
  3721. echo
  3722. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  3723. echo "Enabled ${type}s:"
  3724. eval list=\$$(toupper $type)_LIST
  3725. print_enabled '_*' $list | sort | pr -r -3 -t
  3726. echo
  3727. done
  3728. license="LGPL version 2.1 or later"
  3729. if enabled nonfree; then
  3730. license="nonfree and unredistributable"
  3731. elif enabled gplv3; then
  3732. license="GPL version 3 or later"
  3733. elif enabled lgplv3; then
  3734. license="LGPL version 3 or later"
  3735. elif enabled gpl; then
  3736. license="GPL version 2 or later"
  3737. fi
  3738. echo "License: $license"
  3739. echo "Creating config.mak and config.h..."
  3740. test -e Makefile || $ln_s "$source_path/Makefile" .
  3741. enabled stripping || strip="echo skipping strip"
  3742. config_files="$TMPH config.mak"
  3743. cat > config.mak <<EOF
  3744. # Automatically generated by configure - do not modify!
  3745. ifndef FFMPEG_CONFIG_MAK
  3746. FFMPEG_CONFIG_MAK=1
  3747. FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
  3748. prefix=$prefix
  3749. LIBDIR=\$(DESTDIR)$libdir
  3750. SHLIBDIR=\$(DESTDIR)$shlibdir
  3751. INCDIR=\$(DESTDIR)$incdir
  3752. BINDIR=\$(DESTDIR)$bindir
  3753. DATADIR=\$(DESTDIR)$datadir
  3754. MANDIR=\$(DESTDIR)$mandir
  3755. SRC_PATH=$source_path
  3756. ifndef MAIN_MAKEFILE
  3757. SRC_PATH:=\$(SRC_PATH:.%=..%)
  3758. endif
  3759. CC_IDENT=$cc_ident
  3760. ARCH=$arch
  3761. CC=$cc
  3762. CXX=$cxx
  3763. AS=$as
  3764. LD=$ld
  3765. DEPCC=$dep_cc
  3766. DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
  3767. DEPAS=$as
  3768. DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
  3769. YASM=$yasmexe
  3770. DEPYASM=$yasmexe
  3771. AR=$ar
  3772. ARFLAGS=$arflags
  3773. AR_O=$ar_o
  3774. RANLIB=$ranlib
  3775. CP=cp -p
  3776. LN_S=$ln_s
  3777. STRIP=$strip
  3778. CPPFLAGS=$CPPFLAGS
  3779. CFLAGS=$CFLAGS
  3780. CXXFLAGS=$CXXFLAGS
  3781. ASFLAGS=$ASFLAGS
  3782. AS_C=$AS_C
  3783. AS_O=$AS_O
  3784. CC_C=$CC_C
  3785. CC_O=$CC_O
  3786. CXX_C=$CXX_C
  3787. CXX_O=$CXX_O
  3788. LD_O=$LD_O
  3789. LD_LIB=$LD_LIB
  3790. LD_PATH=$LD_PATH
  3791. DLLTOOL=$dlltool
  3792. LDFLAGS=$LDFLAGS
  3793. LDFLAGS-ffserver=$FFSERVERLDFLAGS
  3794. SHFLAGS=$SHFLAGS
  3795. YASMFLAGS=$YASMFLAGS
  3796. BUILDSUF=$build_suffix
  3797. PROGSSUF=$progs_suffix
  3798. FULLNAME=$FULLNAME
  3799. LIBPREF=$LIBPREF
  3800. LIBSUF=$LIBSUF
  3801. LIBNAME=$LIBNAME
  3802. SLIBPREF=$SLIBPREF
  3803. SLIBSUF=$SLIBSUF
  3804. EXESUF=$EXESUF
  3805. EXTRA_VERSION=$extra_version
  3806. CCDEP=$CCDEP
  3807. CXXDEP=$CXXDEP
  3808. CCDEP_FLAGS=$CCDEP_FLAGS
  3809. ASDEP=$ASDEP
  3810. ASDEP_FLAGS=$ASDEP_FLAGS
  3811. CC_DEPFLAGS=$CC_DEPFLAGS
  3812. AS_DEPFLAGS=$AS_DEPFLAGS
  3813. HOSTCC=$host_cc
  3814. HOSTLD=$host_ld
  3815. HOSTCFLAGS=$host_cflags
  3816. HOSTEXESUF=$HOSTEXESUF
  3817. HOSTLDFLAGS=$host_ldflags
  3818. HOSTLIBS=$host_libs
  3819. DEPHOSTCC=$host_cc
  3820. DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
  3821. HOSTCCDEP=$HOSTCCDEP
  3822. HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
  3823. HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
  3824. HOSTCC_C=$HOSTCC_C
  3825. HOSTCC_O=$HOSTCC_O
  3826. HOSTLD_O=$HOSTLD_O
  3827. TARGET_EXEC=$target_exec
  3828. TARGET_PATH=$target_path
  3829. LIBS-ffplay=$sdl_libs
  3830. CFLAGS-ffplay=$sdl_cflags
  3831. ZLIB=$($ldflags_filter -lz)
  3832. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  3833. EXTRALIBS=$extralibs
  3834. COMPAT_OBJS=$compat_objs
  3835. INSTALL=$install
  3836. LIBTARGET=${LIBTARGET}
  3837. SLIBNAME=${SLIBNAME}
  3838. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  3839. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  3840. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  3841. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  3842. SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
  3843. SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
  3844. SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
  3845. SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
  3846. SAMPLES:=${samples:-\$(FATE_SAMPLES)}
  3847. NOREDZONE_FLAGS=$noredzone_flags
  3848. EOF
  3849. get_version(){
  3850. lcname=$1
  3851. name=$(toupper $lcname)
  3852. file=$source_path/$lcname/version.h
  3853. eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
  3854. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  3855. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  3856. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  3857. }
  3858. get_version_old(){
  3859. name=$1
  3860. file=$source_path/$2
  3861. # This condition will be removed when we stop supporting old libpostproc versions
  3862. if ! test "$name" = LIBPOSTPROC || test "$postproc_version" = current; then
  3863. eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
  3864. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  3865. fi
  3866. lcname=$(tolower $name)
  3867. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  3868. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  3869. }
  3870. get_version_old LIBPOSTPROC libpostproc/version.h
  3871. get_version libavcodec
  3872. get_version libavdevice
  3873. get_version libavfilter
  3874. get_version libavformat
  3875. get_version libavresample
  3876. get_version libavutil
  3877. get_version libswresample
  3878. get_version libswscale
  3879. cat > $TMPH <<EOF
  3880. /* Automatically generated by configure - do not modify! */
  3881. #ifndef FFMPEG_CONFIG_H
  3882. #define FFMPEG_CONFIG_H
  3883. #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
  3884. #define FFMPEG_LICENSE "$(c_escape $license)"
  3885. #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
  3886. #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  3887. #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
  3888. #define av_restrict $_restrict
  3889. #define EXTERN_PREFIX "${extern_prefix}"
  3890. #define EXTERN_ASM ${extern_prefix}
  3891. #define SLIBSUF "$SLIBSUF"
  3892. #define HAVE_MMX2 HAVE_MMXEXT
  3893. EOF
  3894. test -n "$assert_level" &&
  3895. echo "#define ASSERT_LEVEL $assert_level" >>$TMPH
  3896. test -n "$malloc_prefix" &&
  3897. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  3898. if enabled yasm; then
  3899. append config_files $TMPASM
  3900. printf '' >$TMPASM
  3901. fi
  3902. print_config ARCH_ "$config_files" $ARCH_LIST
  3903. print_config HAVE_ "$config_files" $HAVE_LIST
  3904. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  3905. $CONFIG_EXTRA \
  3906. $ALL_COMPONENTS \
  3907. cat >>config.mak <<EOF
  3908. LAVF_FATE_TESTS=$(print_enabled -n _test $LAVF_FATE_TESTS)
  3909. EOF
  3910. echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
  3911. echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
  3912. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  3913. cp_if_changed $TMPH config.h
  3914. touch .config
  3915. enabled yasm && cp_if_changed $TMPASM config.asm
  3916. cat > $TMPH <<EOF
  3917. /* Generated by ffconf */
  3918. #ifndef AVUTIL_AVCONFIG_H
  3919. #define AVUTIL_AVCONFIG_H
  3920. EOF
  3921. test "$postproc_version" != current && cat >> $TMPH <<EOF
  3922. #define LIBPOSTPROC_VERSION_MAJOR $LIBPOSTPROC_VERSION_MAJOR
  3923. #define LIBPOSTPROC_VERSION_MINOR $LIBPOSTPROC_VERSION_MINOR
  3924. #define LIBPOSTPROC_VERSION_MICRO $LIBPOSTPROC_VERSION_MICRO
  3925. EOF
  3926. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  3927. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  3928. cp_if_changed $TMPH libavutil/avconfig.h
  3929. test -n "$WARNINGS" && printf "\n$WARNINGS"
  3930. # build pkg-config files
  3931. pkgconfig_generate(){
  3932. name=$1
  3933. shortname=${name#lib}${build_suffix}
  3934. comment=$2
  3935. version=$3
  3936. libs=$4
  3937. requires=$5
  3938. enabled ${name#lib} || return 0
  3939. mkdir -p $name
  3940. cat <<EOF > $name/$name.pc
  3941. prefix=$prefix
  3942. exec_prefix=\${prefix}
  3943. libdir=$libdir
  3944. includedir=$incdir
  3945. Name: $name
  3946. Description: $comment
  3947. Version: $version
  3948. Requires: $(enabled shared || echo $requires)
  3949. Requires.private: $(enabled shared && echo $requires)
  3950. Conflicts:
  3951. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  3952. Libs.private: $(enabled shared && echo $libs)
  3953. Cflags: -I\${includedir}
  3954. EOF
  3955. mkdir -p doc/examples/pc-uninstalled
  3956. includedir=${source_path}
  3957. [ "$includedir" = . ] && includedir="\${pcfiledir}/../../.."
  3958. cat <<EOF > doc/examples/pc-uninstalled/$name.pc
  3959. prefix=
  3960. exec_prefix=
  3961. libdir=\${pcfiledir}/../../../$name
  3962. includedir=${includedir}
  3963. Name: $name
  3964. Description: $comment
  3965. Version: $version
  3966. Requires: $requires
  3967. Conflicts:
  3968. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  3969. Cflags: -I\${includedir}
  3970. EOF
  3971. }
  3972. libavfilter_pc_deps=""
  3973. enabled libavfilter_deps_avcodec && prepend libavfilter_pc_deps "libavcodec = $LIBAVCODEC_VERSION,"
  3974. enabled libavfilter_deps_avformat && prepend libavfilter_pc_deps "libavformat = $LIBAVFORMAT_VERSION,"
  3975. enabled libavfilter_deps_swscale && prepend libavfilter_pc_deps "libswscale = $LIBSWSCALE_VERSION,"
  3976. enabled libavfilter_deps_swresample && prepend libavfilter_pc_deps "libswresample = $LIBSWRESAMPLE_VERSION,"
  3977. enabled libavfilter_deps_postproc && prepend libavfilter_pc_deps "libpostproc = $LIBPOSTPROC_VERSION,"
  3978. libavfilter_pc_deps=${libavfilter_pc_deps%, }
  3979. libavdevice_pc_deps="libavformat = $LIBAVFORMAT_VERSION"
  3980. enabled lavfi_indev && prepend libavdevice_pc_deps "libavfilter = $LIBAVFILTER_VERSION,"
  3981. pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION" "$LIBM"
  3982. pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3983. pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  3984. pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "$libavdevice_pc_deps"
  3985. pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "$libavfilter_pc_deps"
  3986. pkgconfig_generate libpostproc "FFmpeg postprocessing library" "$LIBPOSTPROC_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
  3987. pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$extralibs"
  3988. pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"
  3989. pkgconfig_generate libswresample "FFmpeg audio rescaling library" "$LIBSWRESAMPLE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"
  3990. fix_ffmpeg_remote(){
  3991. git_remote_from=$1
  3992. git_remote_to=$2
  3993. fixme_remote=$(git --git-dir=$source_path/.git --work-tree=$source_path remote -v | grep $git_remote_from | cut -f 1 | sort | uniq)
  3994. if [ "$fixme_remote" != "" ]; then
  3995. echolog "
  3996. Outdated domain in git config, the official domain for ffmpeg git is since
  3997. November 2011, source.ffmpeg.org, both the old and the new point to the same
  3998. repository and server. To update it enter the following commands:
  3999. "
  4000. for remote in $fixme_remote; do
  4001. echolog "git remote set-url $remote $git_remote_to"
  4002. done
  4003. fi
  4004. }
  4005. if test -f "$source_path/.git/config"; then
  4006. remote_from=git.videolan.org
  4007. remote_to=source.ffmpeg.org
  4008. fix_ffmpeg_remote git@$remote_from:ffmpeg git@$remote_to:ffmpeg
  4009. fix_ffmpeg_remote git://$remote_from/ffmpeg git://$remote_to/ffmpeg
  4010. fi