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.

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