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.

4156 lines
125KB

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