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.

4539 lines
137KB

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