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.

4338 lines
131KB

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