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.

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