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.

4427 lines
134KB

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