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.

4461 lines
134KB

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