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.

4346 lines
132KB

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