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.

4398 lines
133KB

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