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.

4295 lines
130KB

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