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.

4249 lines
129KB

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