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.

4197 lines
127KB

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