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.

4434 lines
134KB

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