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.

4152 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. e500v2)
  2405. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  2406. disable altivec
  2407. ;;
  2408. e500)
  2409. cpuflags="-mcpu=8540 -mhard-float"
  2410. disable altivec
  2411. ;;
  2412. esac
  2413. elif enabled x86; then
  2414. case $cpu in
  2415. i[345]86|pentium)
  2416. cpuflags="-march=$cpu"
  2417. disable mmx
  2418. ;;
  2419. # targets that do NOT support conditional mov (cmov)
  2420. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  2421. cpuflags="-march=$cpu"
  2422. disable cmov
  2423. ;;
  2424. # targets that do support conditional mov (cmov)
  2425. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|amdfam10|barcelona|atom)
  2426. cpuflags="-march=$cpu"
  2427. enable cmov
  2428. enable fast_cmov
  2429. ;;
  2430. # targets that do support conditional mov but on which it's slow
  2431. pentium4|pentium4m|prescott|nocona)
  2432. cpuflags="-march=$cpu"
  2433. enable cmov
  2434. disable fast_cmov
  2435. ;;
  2436. esac
  2437. elif enabled sparc; then
  2438. case $cpu in
  2439. niagara)
  2440. cpuflags="-mcpu=$cpu"
  2441. disable vis
  2442. ;;
  2443. sparc64)
  2444. cpuflags="-mcpu=v9"
  2445. ;;
  2446. esac
  2447. elif enabled arm; then
  2448. case $cpu in
  2449. armv*)
  2450. cpuflags="-march=$cpu"
  2451. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  2452. ;;
  2453. *)
  2454. cpuflags="-mcpu=$cpu"
  2455. case $cpu in
  2456. cortex-a*) subarch=armv7a ;;
  2457. cortex-r*) subarch=armv7r ;;
  2458. cortex-m*) enable thumb; subarch=armv7m ;;
  2459. arm11*) subarch=armv6 ;;
  2460. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  2461. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  2462. esac
  2463. ;;
  2464. esac
  2465. elif enabled alpha; then
  2466. enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
  2467. elif enabled bfin; then
  2468. cpuflags="-mcpu=$cpu"
  2469. elif enabled mips; then
  2470. cpuflags="-march=$cpu"
  2471. case $cpu in
  2472. 24kc)
  2473. disable mipsfpu
  2474. disable mipsdspr1
  2475. disable mipsdspr2
  2476. ;;
  2477. 24kf*)
  2478. disable mipsdspr1
  2479. disable mipsdspr2
  2480. ;;
  2481. 24kec|34kc|1004kc)
  2482. disable mipsfpu
  2483. disable mipsdspr2
  2484. ;;
  2485. 24kef*|34kf*|1004kf*)
  2486. disable mipsdspr2
  2487. ;;
  2488. 74kc)
  2489. disable mipsfpu
  2490. ;;
  2491. esac
  2492. elif enabled avr32; then
  2493. case $cpu in
  2494. ap7[02]0[0-2])
  2495. subarch="avr32_ap"
  2496. cpuflags="-mpart=$cpu"
  2497. ;;
  2498. ap)
  2499. subarch="avr32_ap"
  2500. cpuflags="-march=$cpu"
  2501. ;;
  2502. uc3[ab]*)
  2503. subarch="avr32_uc"
  2504. cpuflags="-mcpu=$cpu"
  2505. ;;
  2506. uc)
  2507. subarch="avr32_uc"
  2508. cpuflags="-march=$cpu"
  2509. ;;
  2510. esac
  2511. fi
  2512. add_cflags $cpuflags
  2513. add_asflags $cpuflags
  2514. # compiler sanity check
  2515. check_exec <<EOF
  2516. int main(void){ return 0; }
  2517. EOF
  2518. if test "$?" != 0; then
  2519. echo "$cc is unable to create an executable file."
  2520. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  2521. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  2522. echo "Only do this if you know what cross compiling means."
  2523. fi
  2524. die "C compiler test failed."
  2525. fi
  2526. add_cppflags -D_ISOC99_SOURCE
  2527. add_cxxflags -D__STDC_CONSTANT_MACROS
  2528. check_cflags -std=c99
  2529. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  2530. #include <stdlib.h>
  2531. EOF
  2532. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  2533. #include <stdlib.h>
  2534. EOF
  2535. check_host_cflags -std=c99
  2536. check_host_cflags -Wall
  2537. case "$arch" in
  2538. alpha|ia64|mips|parisc|sparc)
  2539. spic=$shared
  2540. ;;
  2541. x86)
  2542. subarch="x86_32"
  2543. check_code cc "" "int test[(int)sizeof(char*) - 7]" && subarch="x86_64"
  2544. if test "$subarch" = "x86_64"; then
  2545. spic=$shared
  2546. fi
  2547. ;;
  2548. ppc)
  2549. check_cc <<EOF && subarch="ppc64"
  2550. int test[(int)sizeof(char*) - 7];
  2551. EOF
  2552. ;;
  2553. esac
  2554. enable $subarch
  2555. enabled spic && enable pic
  2556. # OS specific
  2557. case $target_os in
  2558. haiku)
  2559. prefix_default="/boot/common"
  2560. network_extralibs="-lnetwork"
  2561. host_libs=
  2562. ;;
  2563. sunos)
  2564. FFSERVERLDFLAGS=""
  2565. SHFLAGS='-shared -Wl,-h,$$(@F)'
  2566. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  2567. network_extralibs="-lsocket -lnsl"
  2568. add_cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
  2569. # When using suncc to build, the Solaris linker will mark
  2570. # an executable with each instruction set encountered by
  2571. # the Solaris assembler. As our libraries contain their own
  2572. # guards for processor-specific code, instead suppress
  2573. # generation of the HWCAPS ELF section on Solaris x86 only.
  2574. enabled_all suncc x86 && echo "hwcap_1 = OVERRIDE;" > mapfile && add_ldflags -Wl,-M,mapfile
  2575. nm_opts='-P -g'
  2576. ;;
  2577. netbsd)
  2578. disable symver
  2579. oss_indev_extralibs="-lossaudio"
  2580. oss_outdev_extralibs="-lossaudio"
  2581. ;;
  2582. openbsd|bitrig)
  2583. # On OpenBSD 4.5. the compiler does not use PIC unless
  2584. # explicitly using -fPIC. FFmpeg builds fine without PIC,
  2585. # however the generated executable will not do anything
  2586. # (simply quits with exit-code 1, no crash, no output).
  2587. # Thus explicitly enable PIC here.
  2588. enable pic
  2589. disable symver
  2590. SHFLAGS='-shared'
  2591. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBVERSION)'
  2592. oss_indev_extralibs="-lossaudio"
  2593. oss_outdev_extralibs="-lossaudio"
  2594. ;;
  2595. dragonfly)
  2596. disable symver
  2597. ;;
  2598. freebsd)
  2599. ;;
  2600. bsd/os)
  2601. add_extralibs -lpoll -lgnugetopt
  2602. strip="strip -d"
  2603. ;;
  2604. darwin)
  2605. gas="gas-preprocessor.pl $cc"
  2606. enabled ppc && add_asflags -force_cpusubtype_ALL
  2607. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  2608. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  2609. strip="${strip} -x"
  2610. add_ldflags -Wl,-dynamic,-search_paths_first
  2611. SLIBSUF=".dylib"
  2612. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  2613. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  2614. FFSERVERLDFLAGS=-Wl,-bind_at_load
  2615. objformat="macho"
  2616. enabled x86_64 && objformat="macho64"
  2617. enabled_any pic shared ||
  2618. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  2619. ;;
  2620. mingw32*)
  2621. if test $target_os = "mingw32ce"; then
  2622. disable network
  2623. else
  2624. target_os=mingw32
  2625. fi
  2626. LIBTARGET=i386
  2627. if enabled x86_64; then
  2628. LIBTARGET="i386:x86-64"
  2629. elif enabled arm; then
  2630. LIBTARGET=arm-wince
  2631. fi
  2632. shlibdir_default="$bindir_default"
  2633. SLIBPREF=""
  2634. SLIBSUF=".dll"
  2635. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2636. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2637. dlltool="${cross_prefix}dlltool"
  2638. if check_cmd lib.exe -list; then
  2639. SLIB_EXTRA_CMD='-lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  2640. if enabled x86_64; then
  2641. LIBTARGET=x64
  2642. fi
  2643. elif check_cmd $dlltool --version; then
  2644. SLIB_EXTRA_CMD=-'$(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
  2645. fi
  2646. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2647. SLIB_INSTALL_LINKS=
  2648. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  2649. SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  2650. 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'
  2651. objformat="win32"
  2652. enable dos_paths
  2653. check_cflags -fno-common
  2654. check_cpp_condition _mingw.h "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) \
  2655. || (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  2656. die "ERROR: MinGW runtime version must be >= 3.15."
  2657. add_cppflags -U__STRICT_ANSI__
  2658. ;;
  2659. cygwin*)
  2660. target_os=cygwin
  2661. shlibdir_default="$bindir_default"
  2662. SLIBPREF="cyg"
  2663. SLIBSUF=".dll"
  2664. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2665. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2666. SHFLAGS='-shared -Wl,--enable-auto-image-base'
  2667. objformat="win32"
  2668. enable dos_paths
  2669. check_cflags -fno-common
  2670. add_cppflags -U__STRICT_ANSI__
  2671. ;;
  2672. *-dos|freedos|opendos)
  2673. network_extralibs="-lsocket"
  2674. objformat="coff"
  2675. enable dos_paths
  2676. add_cppflags -U__STRICT_ANSI__
  2677. ;;
  2678. linux)
  2679. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2680. enable dv1394
  2681. ;;
  2682. irix*)
  2683. target_os=irix
  2684. ranlib="echo ignoring ranlib"
  2685. ;;
  2686. os/2*)
  2687. strip="lxlite -CS"
  2688. ln_s="cp -f"
  2689. objformat="aout"
  2690. add_cppflags -D_GNU_SOURCE
  2691. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
  2692. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  2693. FFSERVERLDFLAGS=""
  2694. LIBSUF="_s.a"
  2695. SLIBPREF=""
  2696. SLIBSUF=".dll"
  2697. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  2698. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  2699. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  2700. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  2701. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  2702. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  2703. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  2704. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  2705. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  2706. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  2707. SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
  2708. enable dos_paths
  2709. enable_weak os2threads
  2710. ;;
  2711. gnu/kfreebsd)
  2712. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
  2713. ;;
  2714. gnu)
  2715. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2716. ;;
  2717. qnx)
  2718. add_cppflags -D_QNX_SOURCE
  2719. network_extralibs="-lsocket"
  2720. ;;
  2721. symbian)
  2722. SLIBSUF=".dll"
  2723. enable dos_paths
  2724. add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
  2725. add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
  2726. add_ldflags -Wl,--target1-abs,--no-undefined \
  2727. -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
  2728. -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
  2729. add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
  2730. -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
  2731. -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
  2732. ;;
  2733. none)
  2734. ;;
  2735. *)
  2736. die "Unknown OS '$target_os'."
  2737. ;;
  2738. esac
  2739. esc(){
  2740. echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
  2741. }
  2742. echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $FFMPEG_CONFIGURATION)" >config.fate
  2743. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
  2744. set_default $PATHS_LIST
  2745. # we need to build at least one lib type
  2746. if ! enabled_any static shared; then
  2747. cat <<EOF
  2748. At least one library type must be built.
  2749. Specify --enable-static to build the static libraries or --enable-shared to
  2750. build the shared libraries as well. To only build the shared libraries specify
  2751. --disable-static in addition to --enable-shared.
  2752. EOF
  2753. exit 1;
  2754. fi
  2755. die_license_disabled() {
  2756. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  2757. }
  2758. die_license_disabled_gpl() {
  2759. enabled $1 || { enabled $2 && die "$2 is incompatible with the gpl and --enable-$1 is not specified."; }
  2760. }
  2761. die_license_disabled gpl libcdio
  2762. die_license_disabled gpl libutvideo
  2763. die_license_disabled gpl libx264
  2764. die_license_disabled gpl libxavs
  2765. die_license_disabled gpl libxvid
  2766. die_license_disabled gpl x11grab
  2767. die_license_disabled nonfree libaacplus
  2768. die_license_disabled nonfree libfaac
  2769. enabled gpl && die_license_disabled_gpl nonfree libfdk_aac
  2770. enabled gpl && die_license_disabled_gpl nonfree openssl
  2771. die_license_disabled version3 libopencore_amrnb
  2772. die_license_disabled version3 libopencore_amrwb
  2773. die_license_disabled version3 libvo_aacenc
  2774. die_license_disabled version3 libvo_amrwbenc
  2775. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  2776. disabled optimizations || check_cflags -fomit-frame-pointer
  2777. enable_pic() {
  2778. enable pic
  2779. add_cppflags -DPIC
  2780. add_cflags -fPIC
  2781. add_asflags -fPIC
  2782. }
  2783. enabled pic && enable_pic
  2784. check_cc <<EOF || die "Symbol mangling check failed."
  2785. int ff_extern;
  2786. EOF
  2787. sym=$($nm $nm_opts $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  2788. extern_prefix=${sym%%ff_extern*}
  2789. check_cc <<EOF && enable inline_asm
  2790. void foo(void) { __asm__ volatile ("" ::); }
  2791. EOF
  2792. _restrict=
  2793. for restrict_keyword in restrict __restrict__ __restrict; do
  2794. check_cc <<EOF && _restrict=$restrict_keyword && break
  2795. void foo(char * $restrict_keyword p);
  2796. EOF
  2797. done
  2798. check_cc <<EOF && enable attribute_packed
  2799. struct { int x; } __attribute__((packed)) x;
  2800. EOF
  2801. check_cc <<EOF && enable attribute_may_alias
  2802. union { int x; } __attribute__((may_alias)) x;
  2803. EOF
  2804. check_cc <<EOF || die "endian test failed"
  2805. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  2806. EOF
  2807. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  2808. if enabled alpha; then
  2809. check_cflags -mieee
  2810. elif enabled arm; then
  2811. enabled thumb && check_cflags -mthumb || check_cflags -marm
  2812. nogas=die
  2813. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  2814. enable vfp_args
  2815. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
  2816. case "${cross_prefix:-$cc}" in
  2817. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  2818. *) check_ld "cc" <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  2819. __asm__ (".eabi_attribute 28, 1");
  2820. int main(void) { return 0; }
  2821. EOF
  2822. esac
  2823. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  2824. fi
  2825. enabled armv5te && check_asm armv5te '"qadd r0, r0, r0"'
  2826. enabled armv6 && check_asm armv6 '"sadd16 r0, r0, r0"'
  2827. enabled armv6t2 && check_asm armv6t2 '"movt r0, #0"'
  2828. enabled armvfp && check_asm armvfp '"fadds s0, s0, s0"'
  2829. enabled neon && check_asm neon '"vadd.i16 q0, q0, q0"'
  2830. enabled vfpv3 && check_asm vfpv3 '"vmov.f32 s0, #1.0"'
  2831. check_asm asm_mod_y '"vmul.i32 d0, d0, %y0" :: "x"(0)'
  2832. enabled_all armv6t2 shared !pic && enable_pic
  2833. elif enabled mips; then
  2834. check_asm loongson '"dmult.g $1, $2, $3"'
  2835. enabled mmi && check_asm mmi '"lq $2, 0($2)"'
  2836. enabled mips32r2 && add_cflags "-mips32r2" &&
  2837. check_asm mips32r2 '"rotr $t0, $t1, 1"'
  2838. enabled mipsdspr1 && add_cflags "-mdsp" && add_asflags "-mdsp" &&
  2839. check_asm mipsdspr1 '"addu.qb $t0, $t1, $t2"'
  2840. enabled mipsdspr2 && add_cflags "-mdspr2" && add_asflags "-mdspr2" &&
  2841. check_asm mipsdspr2 '"absq_s.qb $t0, $t1"'
  2842. enabled mipsfpu && add_cflags "-mhard-float" &&
  2843. check_asm mipsfpu '"madd.d $f0, $f2, $f4, $f6"'
  2844. elif enabled ppc; then
  2845. enable local_aligned_8 local_aligned_16
  2846. check_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  2847. check_asm ibm_asm '"add 0, 0, 0"'
  2848. check_asm ppc4xx '"maclhw r10, r11, r12"'
  2849. check_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  2850. # AltiVec flags: The FSF version of GCC differs from the Apple version
  2851. if enabled altivec; then
  2852. nogas=warn
  2853. check_cflags -maltivec -mabi=altivec &&
  2854. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  2855. check_cflags -faltivec
  2856. # check if our compiler supports Motorola AltiVec C API
  2857. check_cc <<EOF || disable altivec
  2858. $inc_altivec_h
  2859. int main(void) {
  2860. vector signed int v1, v2, v3;
  2861. v1 = vec_add(v2,v3);
  2862. return 0;
  2863. }
  2864. EOF
  2865. # check if our compiler supports braces for vector declarations
  2866. check_cc <<EOF || die "You need a compiler that supports {} in AltiVec vector declarations."
  2867. $inc_altivec_h
  2868. int main (void) { (vector int) {1}; return 0; }
  2869. EOF
  2870. fi
  2871. elif enabled sparc; then
  2872. enabled vis && check_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc &&
  2873. add_cflags -mcpu=ultrasparc -mtune=ultrasparc
  2874. elif enabled x86; then
  2875. check_code ld immintrin.h "__xgetbv(0)" "cc" && enable xgetbv
  2876. check_code ld intrin.h "int info[4]; __cpuid(info, 0)" "cc" && enable cpuid
  2877. check_code ld intrin.h "__rdtsc()" "cc" && enable rdtsc
  2878. check_code ld intrin.h "unsigned int x = __readeflags()" "cc" && enable rweflags
  2879. check_code ld mmintrin.h "_mm_empty()" "cc" && enable mm_empty
  2880. enable local_aligned_8 local_aligned_16
  2881. # check whether EBP is available on x86
  2882. # As 'i' is stored on the stack, this program will crash
  2883. # if the base pointer is used to access it because the
  2884. # base pointer is cleared in the inline assembly code.
  2885. check_exec_crash <<EOF && enable ebp_available
  2886. volatile int i=0;
  2887. __asm__ volatile (
  2888. "xorl %%ebp, %%ebp"
  2889. ::: "%ebp");
  2890. return i;
  2891. EOF
  2892. # check whether EBX is available on x86
  2893. check_asm ebx_available '""::"b"(0)' &&
  2894. check_asm ebx_available '"":::"%ebx"'
  2895. # check whether xmm clobbers are supported
  2896. check_asm xmm_clobbers '"":::"%xmm0"'
  2897. # check whether binutils is new enough to compile SSSE3/MMXEXT
  2898. enabled ssse3 && check_asm ssse3 '"pabsw %xmm0, %xmm0"'
  2899. enabled mmxext && check_asm mmxext '"pmaxub %mm0, %mm1"'
  2900. if ! disabled_any asm mmx yasm; then
  2901. if check_cmd $yasmexe --version; then
  2902. enabled x86_64 && yasm_extra="-m amd64"
  2903. yasm_debug="-g dwarf2"
  2904. elif check_cmd nasm -v; then
  2905. yasmexe=nasm
  2906. yasm_debug="-g -F dwarf"
  2907. enabled x86_64 && test "$objformat" = elf && objformat=elf64
  2908. fi
  2909. YASMFLAGS="-f $objformat $yasm_extra"
  2910. enabled pic && append YASMFLAGS "-DPIC"
  2911. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  2912. case "$objformat" in
  2913. elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
  2914. esac
  2915. check_yasm "pextrd [eax], xmm0, 1" && enable yasm ||
  2916. die "yasm not found, use --disable-yasm for a crippled build"
  2917. check_yasm "vextractf128 xmm0, ymm0, 0" || disable avx
  2918. check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4
  2919. fi
  2920. case "$cpu" in
  2921. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  2922. disable fast_clz
  2923. ;;
  2924. esac
  2925. fi
  2926. if enabled asm; then
  2927. as=${gas:=$as}
  2928. check_asm gnu_as '".macro m n\n\\n:.int 0\n.endm\nm x"' ||
  2929. $nogas "GNU assembler not found, install gas-preprocessor"
  2930. fi
  2931. check_ldflags -Wl,--as-needed
  2932. if check_func dlopen; then
  2933. ldl=
  2934. elif check_func dlopen -ldl; then
  2935. ldl=-ldl
  2936. fi
  2937. if enabled network; then
  2938. check_type "sys/types.h sys/socket.h" socklen_t
  2939. check_type netdb.h "struct addrinfo"
  2940. check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
  2941. check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
  2942. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  2943. check_type netinet/in.h "struct sockaddr_in6"
  2944. check_type poll.h "struct pollfd"
  2945. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  2946. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  2947. check_header netinet/sctp.h
  2948. check_func getaddrinfo $network_extralibs
  2949. # Prefer arpa/inet.h over winsock2
  2950. if check_header arpa/inet.h ; then
  2951. check_func closesocket
  2952. elif check_header winsock2.h ; then
  2953. check_func_headers winsock2.h closesocket -lws2 &&
  2954. network_extralibs="-lws2" ||
  2955. { check_func_headers winsock2.h closesocket -lws2_32 &&
  2956. network_extralibs="-lws2_32"; }
  2957. check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
  2958. check_type ws2tcpip.h socklen_t
  2959. check_type ws2tcpip.h "struct addrinfo"
  2960. check_type ws2tcpip.h "struct group_source_req"
  2961. check_type ws2tcpip.h "struct ip_mreq_source"
  2962. check_type ws2tcpip.h "struct ipv6_mreq"
  2963. check_type winsock2.h "struct pollfd"
  2964. check_type ws2tcpip.h "struct sockaddr_in6"
  2965. check_type ws2tcpip.h "struct sockaddr_storage"
  2966. check_struct winsock2.h "struct sockaddr" sa_len
  2967. else
  2968. disable network
  2969. fi
  2970. fi
  2971. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  2972. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  2973. check_func clock_gettime || { check_func clock_gettime -lrt && add_extralibs -lrt; }
  2974. check_func fcntl
  2975. check_func fork
  2976. check_func gethrtime
  2977. check_func getopt
  2978. check_func getrusage
  2979. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  2980. check_func gettimeofday
  2981. check_func inet_aton $network_extralibs
  2982. check_func isatty
  2983. check_func localtime_r
  2984. check_func ${malloc_prefix}memalign && enable memalign
  2985. check_func mkstemp
  2986. check_func mmap
  2987. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  2988. check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
  2989. check_func setrlimit
  2990. check_func strerror_r
  2991. check_func strptime
  2992. check_func sched_getaffinity
  2993. check_func sysconf
  2994. check_func sysctl
  2995. check_func usleep
  2996. check_func_headers conio.h kbhit
  2997. check_func_headers windows.h PeekNamedPipe
  2998. check_func_headers io.h setmode
  2999. check_func_headers lzo/lzo1x.h lzo1x_999_compress
  3000. check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
  3001. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  3002. check_func_headers windows.h GetProcessAffinityMask
  3003. check_func_headers windows.h GetProcessTimes
  3004. check_func_headers windows.h GetSystemTimeAsFileTime
  3005. check_func_headers windows.h MapViewOfFile
  3006. check_func_headers windows.h Sleep
  3007. check_func_headers windows.h VirtualAlloc
  3008. check_func_headers glob.h glob
  3009. check_header dlfcn.h
  3010. check_header dxva.h
  3011. check_header dxva2api.h -D_WIN32_WINNT=0x0600
  3012. check_header libcrystalhd/libcrystalhd_if.h
  3013. check_header malloc.h
  3014. check_header poll.h
  3015. check_header sys/mman.h
  3016. check_header sys/param.h
  3017. check_header sys/resource.h
  3018. check_header sys/select.h
  3019. check_header sys/time.h
  3020. check_header termios.h
  3021. check_header unistd.h
  3022. check_header vdpau/vdpau.h
  3023. check_header vdpau/vdpau_x11.h
  3024. check_header windows.h
  3025. check_header X11/extensions/XvMClib.h
  3026. check_header asm/types.h
  3027. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  3028. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  3029. # check for VDA header
  3030. if ! disabled vda; then
  3031. if check_header VideoDecodeAcceleration/VDADecoder.h; then
  3032. enable vda
  3033. add_extralibs -framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore
  3034. fi
  3035. fi
  3036. if ! disabled w32threads && ! enabled pthreads; then
  3037. check_func _beginthreadex && enable w32threads
  3038. fi
  3039. # check for some common methods of building with pthread support
  3040. # do this before the optional library checks as some of them require pthreads
  3041. if ! disabled pthreads && ! enabled w32threads && ! enabled os2threads; then
  3042. enable pthreads
  3043. if check_func pthread_create; then
  3044. :
  3045. elif check_func pthread_create -pthread; then
  3046. add_cflags -pthread
  3047. add_extralibs -pthread
  3048. elif check_func pthread_create -pthreads; then
  3049. add_cflags -pthreads
  3050. add_extralibs -pthreads
  3051. elif check_func pthread_create -lpthreadGC2; then
  3052. add_extralibs -lpthreadGC2
  3053. elif ! check_lib pthread.h pthread_create -lpthread; then
  3054. disable pthreads
  3055. fi
  3056. fi
  3057. for thread in $THREADS_LIST; do
  3058. if enabled $thread; then
  3059. test -n "$thread_type" &&
  3060. die "ERROR: Only one thread type must be selected." ||
  3061. thread_type="$thread"
  3062. fi
  3063. done
  3064. if enabled pthreads; then
  3065. check_func pthread_cancel
  3066. fi
  3067. check_lib math.h sin -lm && LIBM="-lm"
  3068. disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd
  3069. enabled vaapi && require vaapi va/va.h vaInitialize -lva
  3070. check_mathfunc cbrtf
  3071. check_mathfunc exp2
  3072. check_mathfunc exp2f
  3073. check_mathfunc isinf
  3074. check_mathfunc isnan
  3075. check_mathfunc llrint
  3076. check_mathfunc llrintf
  3077. check_mathfunc log2
  3078. check_mathfunc log2f
  3079. check_mathfunc lrint
  3080. check_mathfunc lrintf
  3081. check_mathfunc rint
  3082. check_mathfunc round
  3083. check_mathfunc roundf
  3084. check_mathfunc trunc
  3085. check_mathfunc truncf
  3086. # these are off by default, so fail if requested and not available
  3087. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
  3088. enabled fontconfig && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit
  3089. enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
  3090. enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
  3091. enabled libiec61883 && require libiec61883 libiec61883/iec61883.h iec61883_cmp_connect -lraw1394 -lavc1394 -lrom1394 -liec61883
  3092. enabled libaacplus && require "libaacplus >= 2.0.0" aacplus.h aacplusEncOpen -laacplus
  3093. enabled libass && require_pkg_config libass ass/ass.h ass_library_init
  3094. enabled libbluray && require libbluray libbluray/bluray.h bd_open -lbluray
  3095. enabled libcelt && require libcelt celt/celt.h celt_decode -lcelt0 &&
  3096. { check_lib celt/celt.h celt_decoder_create_custom -lcelt0 ||
  3097. die "ERROR: libcelt version must be >= 0.11.0."; }
  3098. enabled libcaca && require_pkg_config caca caca.h caca_create_canvas
  3099. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  3100. enabled libfdk_aac && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
  3101. 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"
  3102. enabled libflite && require2 libflite "flite/flite.h" flite_init $flite_libs
  3103. enabled libfreetype && require_pkg_config freetype2 "ft2build.h freetype/freetype.h" FT_Init_FreeType
  3104. enabled libgsm && require libgsm gsm/gsm.h gsm_create -lgsm
  3105. enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
  3106. enabled libmodplug && require libmodplug libmodplug/modplug.h ModPlug_Load -lmodplug
  3107. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  3108. enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
  3109. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  3110. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  3111. enabled libopencv && require_pkg_config opencv opencv/cxcore.h cvCreateImageHeader
  3112. enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
  3113. enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
  3114. enabled libpulse && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
  3115. enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
  3116. enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
  3117. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  3118. enabled libstagefright_h264 && require_cpp libstagefright_h264 "binder/ProcessState.h media/stagefright/MetaData.h
  3119. media/stagefright/MediaBufferGroup.h media/stagefright/MediaDebug.h media/stagefright/MediaDefs.h
  3120. media/stagefright/OMXClient.h media/stagefright/OMXCodec.h" android::OMXClient -lstagefright -lmedia -lutils -lbinder -lgnustl_static
  3121. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  3122. enabled libtwolame && require libtwolame twolame.h twolame_init -ltwolame &&
  3123. { check_lib twolame.h twolame_encode_buffer_float32_interleaved -ltwolame ||
  3124. die "ERROR: libtwolame version must be >= 0.3.10"; }
  3125. enabled libutvideo && require_cpp utvideo "stdint.h stdlib.h utvideo/utvideo.h utvideo/Codec.h" 'CCodec*' -lutvideo -lstdc++
  3126. enabled libv4l2 && require_pkg_config libv4l2 libv4l2.h v4l2_ioctl
  3127. enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
  3128. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  3129. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  3130. enabled libvpx && {
  3131. enabled libvpx_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
  3132. die "ERROR: libvpx decoder version must be >=0.9.1"; }
  3133. enabled libvpx_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VP8E_SET_MAX_INTRA_BITRATE_PCT" -lvpx ||
  3134. die "ERROR: libvpx encoder version must be >=0.9.7"; } }
  3135. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
  3136. { check_cpp_condition x264.h "X264_BUILD >= 118" ||
  3137. die "ERROR: libx264 version must be >= 0.118."; }
  3138. enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
  3139. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  3140. enabled openal && { { for al_libs in "${OPENAL_LIBS}" "-lopenal" "-lOpenAL32"; do
  3141. check_lib 'AL/al.h' alGetError "${al_libs}" && break; done } ||
  3142. die "ERROR: openal not found"; } &&
  3143. { check_cpp_condition "AL/al.h" "defined(AL_VERSION_1_1)" ||
  3144. die "ERROR: openal version must be 1.1 or compatible"; }
  3145. enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
  3146. check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
  3147. check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
  3148. die "ERROR: openssl not found"; }
  3149. if enabled gnutls; then
  3150. { check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
  3151. { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
  3152. fi
  3153. # libdc1394 check
  3154. if enabled libdc1394; then
  3155. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  3156. enable libdc1394_2; } ||
  3157. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  3158. enable libdc1394_1; } ||
  3159. die "ERROR: No version of libdc1394 found "
  3160. fi
  3161. SDL_CONFIG="${cross_prefix}sdl-config"
  3162. if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
  3163. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  3164. enable sdl &&
  3165. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  3166. else
  3167. if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
  3168. sdl_cflags=$("${SDL_CONFIG}" --cflags)
  3169. sdl_libs=$("${SDL_CONFIG}" --libs)
  3170. check_func_headers SDL_version.h SDL_Linked_Version $sdl_cflags $sdl_libs &&
  3171. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  3172. enable sdl &&
  3173. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  3174. fi
  3175. fi
  3176. enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs
  3177. texi2html --help 2> /dev/null | grep -q 'init-file' && enable texi2html || disable texi2html
  3178. makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo
  3179. pod2man --help > /dev/null 2>&1 && enable pod2man || disable pod2man
  3180. check_header linux/fb.h
  3181. check_header linux/videodev.h
  3182. check_header linux/videodev2.h
  3183. check_struct linux/videodev2.h "struct v4l2_frmivalenum" discrete
  3184. check_header sys/videoio.h
  3185. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  3186. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  3187. # w32api 3.12 had it defined wrong
  3188. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  3189. check_type "dshow.h" IBaseFilter
  3190. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  3191. { check_header dev/bktr/ioctl_meteor.h &&
  3192. check_header dev/bktr/ioctl_bt848.h; } ||
  3193. { check_header machine/ioctl_meteor.h &&
  3194. check_header machine/ioctl_bt848.h; } ||
  3195. { check_header dev/video/meteor/ioctl_meteor.h &&
  3196. check_header dev/video/bktr/ioctl_bt848.h; } ||
  3197. check_header dev/ic/bt8xx.h
  3198. check_header sndio.h
  3199. if check_struct sys/soundcard.h audio_buf_info bytes; then
  3200. enable_safe sys/soundcard.h
  3201. else
  3202. check_cc -D__BSD_VISIBLE -D__XSI_VISIBLE <<EOF && add_cppflags -D__BSD_VISIBLE -D__XSI_VISIBLE && enable_safe sys/soundcard.h
  3203. #include <sys/soundcard.h>
  3204. audio_buf_info abc;
  3205. EOF
  3206. fi
  3207. check_header soundcard.h
  3208. enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  3209. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack && check_func sem_timedwait &&
  3210. check_func jack_port_get_latency_range -ljack
  3211. enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
  3212. enabled libcdio &&
  3213. check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open "-lcdio_paranoia -lcdio_cdda -lcdio"
  3214. enabled x11grab &&
  3215. require X11 X11/Xlib.h XOpenDisplay -lX11 &&
  3216. require Xext X11/extensions/XShm.h XShmCreateImage -lXext &&
  3217. require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
  3218. if ! disabled vaapi; then
  3219. check_lib va/va.h vaInitialize -lva && {
  3220. check_cpp_condition va/va_version.h "VA_CHECK_VERSION(0,32,0)" ||
  3221. warn "Please upgrade to VA-API >= 0.32 if you would like full VA-API support.";
  3222. } || disable vaapi
  3223. fi
  3224. if ! disabled vdpau && enabled vdpau_vdpau_h; then
  3225. check_cpp_condition \
  3226. vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  3227. { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." &&
  3228. disable vdpau; }
  3229. fi
  3230. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  3231. enabled coverage && add_cflags "-fprofile-arcs -ftest-coverage" && add_ldflags "-fprofile-arcs -ftest-coverage"
  3232. 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"
  3233. # add some useful compiler flags if supported
  3234. check_cflags -Wdeclaration-after-statement
  3235. check_cflags -Wall
  3236. check_cflags -Wno-parentheses
  3237. check_cflags -Wno-switch
  3238. check_cflags -Wno-format-zero-length
  3239. check_cflags -Wdisabled-optimization
  3240. check_cflags -Wpointer-arith
  3241. check_cflags -Wredundant-decls
  3242. check_cflags -Wno-pointer-sign
  3243. check_cflags -Wwrite-strings
  3244. check_cflags -Wtype-limits
  3245. check_cflags -Wundef
  3246. check_cflags -Wmissing-prototypes
  3247. check_cflags -Wno-pointer-to-int-cast
  3248. check_cflags -Wstrict-prototypes
  3249. enabled extra_warnings && check_cflags -Winline
  3250. # add some linker flags
  3251. check_ldflags -Wl,--warn-common
  3252. check_ldflags -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
  3253. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  3254. enabled xmm_clobber_test &&
  3255. check_ldflags -Wl,--wrap,avcodec_open2 \
  3256. -Wl,--wrap,avcodec_decode_audio4 \
  3257. -Wl,--wrap,avcodec_decode_video2 \
  3258. -Wl,--wrap,avcodec_decode_subtitle2 \
  3259. -Wl,--wrap,avcodec_encode_audio2 \
  3260. -Wl,--wrap,avcodec_encode_video \
  3261. -Wl,--wrap,avcodec_encode_subtitle \
  3262. -Wl,--wrap,sws_scale ||
  3263. disable xmm_clobber_test
  3264. echo "X{};" > $TMPV
  3265. if test_ldflags -Wl,--version-script,$TMPV; then
  3266. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  3267. check_cc <<EOF && enable symver_asm_label
  3268. void ff_foo(void) __asm__ ("av_foo@VERSION");
  3269. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  3270. EOF
  3271. check_cc <<EOF && enable symver_gnu_asm
  3272. __asm__(".symver ff_foo,av_foo@VERSION");
  3273. void ff_foo(void) {}
  3274. EOF
  3275. fi
  3276. if [ -n "$optflags" ]; then
  3277. add_cflags $optflags
  3278. elif enabled small; then
  3279. add_cflags $cflags_size
  3280. elif enabled optimizations; then
  3281. add_cflags $cflags_speed
  3282. else
  3283. add_cflags $cflags_noopt
  3284. fi
  3285. check_cflags -fno-math-errno
  3286. check_cflags -fno-signed-zeros
  3287. check_cc -mno-red-zone <<EOF && noredzone_flags="-mno-red-zone"
  3288. int x;
  3289. EOF
  3290. if enabled icc; then
  3291. # Just warnings, no remarks
  3292. check_cflags -w1
  3293. # -wd: Disable following warnings
  3294. # 144, 167, 556: -Wno-pointer-sign
  3295. # 1292: attribute "foo" ignored
  3296. # 1419: external declaration in primary source file
  3297. # 10006: ignoring unknown option -fno-signed-zeros
  3298. # 10148: ignoring unknown option -Wno-parentheses
  3299. # 10156: ignoring option '-W'; no argument required
  3300. check_cflags -wd144,167,556,1292,1419,10006,10148,10156
  3301. # 11030: Warning unknown option --as-needed
  3302. # 10156: ignoring option '-export'; no argument required
  3303. check_ldflags -wd10156,11030
  3304. # Allow to compile with optimizations
  3305. check_ldflags -march=$cpu
  3306. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  3307. enable ebp_available
  3308. if enabled x86_32; then
  3309. icc_version=$($cc -dumpversion)
  3310. test ${icc_version%%.*} -ge 11 &&
  3311. check_cflags -falign-stack=maintain-16-byte ||
  3312. disable aligned_stack
  3313. fi
  3314. elif enabled ccc; then
  3315. # disable some annoying warnings
  3316. add_cflags -msg_disable cvtu32to64
  3317. add_cflags -msg_disable embedcomment
  3318. add_cflags -msg_disable needconstext
  3319. add_cflags -msg_disable nomainieee
  3320. add_cflags -msg_disable ptrmismatch1
  3321. add_cflags -msg_disable unreachcode
  3322. elif enabled gcc; then
  3323. check_cflags -fno-tree-vectorize
  3324. check_cflags -Werror=implicit-function-declaration
  3325. check_cflags -Werror=missing-prototypes
  3326. elif enabled llvm_gcc; then
  3327. check_cflags -mllvm -stack-alignment=16
  3328. elif enabled clang; then
  3329. check_cflags -mllvm -stack-alignment=16
  3330. check_cflags -Qunused-arguments
  3331. elif enabled armcc; then
  3332. # 2523: use of inline assembler is deprecated
  3333. add_cflags -W${armcc_opt},--diag_suppress=2523
  3334. add_cflags -W${armcc_opt},--diag_suppress=1207
  3335. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  3336. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  3337. add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
  3338. add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
  3339. elif enabled tms470; then
  3340. add_cflags -pds=824 -pds=837
  3341. elif enabled pathscale; then
  3342. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  3343. fi
  3344. enabled_any $THREADS_LIST && enable threads
  3345. check_deps $CONFIG_LIST \
  3346. $CONFIG_EXTRA \
  3347. $HAVE_LIST \
  3348. $ALL_COMPONENTS \
  3349. $ALL_TESTS \
  3350. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  3351. if test $target_os = "haiku"; then
  3352. disable memalign
  3353. disable posix_memalign
  3354. fi
  3355. ! enabled_any memalign posix_memalign aligned_malloc &&
  3356. enabled_any $need_memalign && enable memalign_hack
  3357. # add_dep lib dep
  3358. # -> enable ${lib}_deps_${dep}
  3359. # -> add $dep to ${lib}_deps only once
  3360. add_dep() {
  3361. lib=$1
  3362. dep=$2
  3363. enabled "${lib}_deps_${dep}" && return 0
  3364. enable "${lib}_deps_${dep}"
  3365. prepend "${lib}_deps" $dep
  3366. }
  3367. # merge deps lib components
  3368. # merge all ${component}_deps into ${lib}_deps and ${lib}_deps_*
  3369. merge_deps() {
  3370. lib=$1
  3371. shift
  3372. for comp in $*; do
  3373. enabled $comp || continue
  3374. eval "dep=\"\$${comp}_deps\""
  3375. for d in $dep; do
  3376. add_dep $lib $d
  3377. done
  3378. done
  3379. }
  3380. merge_deps libavfilter $FILTER_LIST
  3381. echo "install prefix $prefix"
  3382. echo "source path $source_path"
  3383. echo "C compiler $cc"
  3384. echo "ARCH $arch ($cpu)"
  3385. if test "$build_suffix" != ""; then
  3386. echo "build suffix $build_suffix"
  3387. fi
  3388. if test "$progs_suffix" != ""; then
  3389. echo "progs suffix $progs_suffix"
  3390. fi
  3391. if test "$extra_version" != ""; then
  3392. echo "version string suffix $extra_version"
  3393. fi
  3394. echo "big-endian ${bigendian-no}"
  3395. echo "runtime cpu detection ${runtime_cpudetect-no}"
  3396. if enabled x86; then
  3397. echo "${yasmexe} ${yasm-no}"
  3398. echo "MMX enabled ${mmx-no}"
  3399. echo "MMXEXT enabled ${mmxext-no}"
  3400. echo "3DNow! enabled ${amd3dnow-no}"
  3401. echo "3DNow! extended enabled ${amd3dnowext-no}"
  3402. echo "SSE enabled ${sse-no}"
  3403. echo "SSSE3 enabled ${ssse3-no}"
  3404. echo "AVX enabled ${avx-no}"
  3405. echo "FMA4 enabled ${fma4-no}"
  3406. echo "CMOV enabled ${cmov-no}"
  3407. echo "CMOV is fast ${fast_cmov-no}"
  3408. echo "EBX available ${ebx_available-no}"
  3409. echo "EBP available ${ebp_available-no}"
  3410. fi
  3411. if enabled arm; then
  3412. echo "ARMv5TE enabled ${armv5te-no}"
  3413. echo "ARMv6 enabled ${armv6-no}"
  3414. echo "ARMv6T2 enabled ${armv6t2-no}"
  3415. echo "ARM VFP enabled ${armvfp-no}"
  3416. echo "NEON enabled ${neon-no}"
  3417. fi
  3418. if enabled mips; then
  3419. echo "MMI enabled ${mmi-no}"
  3420. echo "MIPS FPU enabled ${mipsfpu-no}"
  3421. echo "MIPS32R2 enabled ${mips32r2-no}"
  3422. echo "MIPS DSP R1 enabled ${mipsdspr1-no}"
  3423. echo "MIPS DSP R2 enabled ${mipsdspr2-no}"
  3424. fi
  3425. if enabled ppc; then
  3426. echo "AltiVec enabled ${altivec-no}"
  3427. echo "PPC 4xx optimizations ${ppc4xx-no}"
  3428. echo "dcbzl available ${dcbzl-no}"
  3429. fi
  3430. if enabled sparc; then
  3431. echo "VIS enabled ${vis-no}"
  3432. fi
  3433. echo "debug symbols ${debug-no}"
  3434. echo "strip symbols ${stripping-no}"
  3435. echo "optimize for size ${small-no}"
  3436. echo "optimizations ${optimizations-no}"
  3437. echo "static ${static-no}"
  3438. echo "shared ${shared-no}"
  3439. echo "postprocessing support ${postproc-no}"
  3440. echo "new filter support ${avfilter-no}"
  3441. echo "network support ${network-no}"
  3442. echo "threading support ${thread_type-no}"
  3443. echo "safe bitstream reader ${safe_bitstream_reader-no}"
  3444. echo "SDL support ${sdl-no}"
  3445. echo "libdxva2 enabled ${dxva2-no}"
  3446. echo "libva enabled ${vaapi-no}"
  3447. echo "libvdpau enabled ${vdpau-no}"
  3448. echo "AVISynth enabled ${avisynth-no}"
  3449. echo "frei0r enabled ${frei0r-no}"
  3450. echo "gnutls enabled ${gnutls-no}"
  3451. echo "libaacplus enabled ${libaacplus-no}"
  3452. echo "libass enabled ${libass-no}"
  3453. echo "libcaca enabled ${libcaca-no}"
  3454. echo "libcdio support ${libcdio-no}"
  3455. echo "libcelt enabled ${libcelt-no}"
  3456. echo "libdc1394 support ${libdc1394-no}"
  3457. echo "libfaac enabled ${libfaac-no}"
  3458. echo "libfdk-aac enabled ${libfdk_aac-no}"
  3459. echo "libgsm enabled ${libgsm-no}"
  3460. echo "libiec61883 support ${libiec61883-no}"
  3461. echo "libilbc enabled ${libilbc-no}"
  3462. echo "libmodplug enabled ${libmodplug-no}"
  3463. echo "libmp3lame enabled ${libmp3lame-no}"
  3464. echo "libnut enabled ${libnut-no}"
  3465. echo "libopencore-amrnb support ${libopencore_amrnb-no}"
  3466. echo "libopencore-amrwb support ${libopencore_amrwb-no}"
  3467. echo "libopencv support ${libopencv-no}"
  3468. echo "libopenjpeg enabled ${libopenjpeg-no}"
  3469. echo "libopus enabled ${libopus-no}"
  3470. echo "libpulse enabled ${libpulse-no}"
  3471. echo "librtmp enabled ${librtmp-no}"
  3472. echo "libschroedinger enabled ${libschroedinger-no}"
  3473. echo "libspeex enabled ${libspeex-no}"
  3474. echo "libstagefright-h264 enabled ${libstagefright_h264-no}"
  3475. echo "libtheora enabled ${libtheora-no}"
  3476. echo "libtwolame enabled ${libtwolame-no}"
  3477. echo "libutvideo enabled ${libutvideo-no}"
  3478. echo "libv4l2 enabled ${libv4l2-no}"
  3479. echo "libvo-aacenc support ${libvo_aacenc-no}"
  3480. echo "libvo-amrwbenc support ${libvo_amrwbenc-no}"
  3481. echo "libvorbis enabled ${libvorbis-no}"
  3482. echo "libvpx enabled ${libvpx-no}"
  3483. echo "libx264 enabled ${libx264-no}"
  3484. echo "libxavs enabled ${libxavs-no}"
  3485. echo "libxvid enabled ${libxvid-no}"
  3486. echo "openal enabled ${openal-no}"
  3487. echo "openssl enabled ${openssl-no}"
  3488. echo "zlib enabled ${zlib-no}"
  3489. echo "bzlib enabled ${bzlib-no}"
  3490. echo "texi2html enabled ${texi2html-no}"
  3491. echo "pod2man enabled ${pod2man-no}"
  3492. echo "makeinfo enabled ${makeinfo-no}"
  3493. test -n "$random_seed" &&
  3494. echo "random seed ${random_seed}"
  3495. echo
  3496. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  3497. echo "Enabled ${type}s:"
  3498. eval list=\$$(toupper $type)_LIST
  3499. print_enabled '_*' $list | sort | pr -r -3 -t
  3500. echo
  3501. done
  3502. license="LGPL version 2.1 or later"
  3503. if enabled nonfree; then
  3504. license="nonfree and unredistributable"
  3505. elif enabled gplv3; then
  3506. license="GPL version 3 or later"
  3507. elif enabled lgplv3; then
  3508. license="LGPL version 3 or later"
  3509. elif enabled gpl; then
  3510. license="GPL version 2 or later"
  3511. fi
  3512. echo "License: $license"
  3513. echo "Creating config.mak and config.h..."
  3514. test -e Makefile || $ln_s "$source_path/Makefile" .
  3515. enabled stripping || strip="echo skipping strip"
  3516. config_files="$TMPH config.mak"
  3517. cat > config.mak <<EOF
  3518. # Automatically generated by configure - do not modify!
  3519. ifndef FFMPEG_CONFIG_MAK
  3520. FFMPEG_CONFIG_MAK=1
  3521. FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
  3522. prefix=$prefix
  3523. LIBDIR=\$(DESTDIR)$libdir
  3524. SHLIBDIR=\$(DESTDIR)$shlibdir
  3525. INCDIR=\$(DESTDIR)$incdir
  3526. BINDIR=\$(DESTDIR)$bindir
  3527. DATADIR=\$(DESTDIR)$datadir
  3528. MANDIR=\$(DESTDIR)$mandir
  3529. SRC_PATH=$source_path
  3530. ifndef MAIN_MAKEFILE
  3531. SRC_PATH:=\$(SRC_PATH:.%=..%)
  3532. endif
  3533. CC_IDENT=$cc_ident
  3534. ARCH=$arch
  3535. CC=$cc
  3536. CXX=$cxx
  3537. AS=$as
  3538. LD=$ld
  3539. DEPCC=$dep_cc
  3540. DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
  3541. DEPAS=$as
  3542. DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
  3543. YASM=$yasmexe
  3544. DEPYASM=$yasmexe
  3545. AR=$ar
  3546. RANLIB=$ranlib
  3547. CP=cp -p
  3548. LN_S=$ln_s
  3549. STRIP=$strip
  3550. CPPFLAGS=$CPPFLAGS
  3551. CFLAGS=$CFLAGS
  3552. CXXFLAGS=$CXXFLAGS
  3553. ASFLAGS=$ASFLAGS
  3554. AS_C=$AS_C
  3555. AS_O=$AS_O
  3556. CC_C=$CC_C
  3557. CC_O=$CC_O
  3558. CXX_C=$CXX_C
  3559. CXX_O=$CXX_O
  3560. LD_O=$LD_O
  3561. DLLTOOL=$dlltool
  3562. LDFLAGS=$LDFLAGS
  3563. LDFLAGS-ffserver=$FFSERVERLDFLAGS
  3564. SHFLAGS=$SHFLAGS
  3565. YASMFLAGS=$YASMFLAGS
  3566. BUILDSUF=$build_suffix
  3567. PROGSSUF=$progs_suffix
  3568. FULLNAME=$FULLNAME
  3569. LIBPREF=$LIBPREF
  3570. LIBSUF=$LIBSUF
  3571. LIBNAME=$LIBNAME
  3572. SLIBPREF=$SLIBPREF
  3573. SLIBSUF=$SLIBSUF
  3574. EXESUF=$EXESUF
  3575. EXTRA_VERSION=$extra_version
  3576. CCDEP=$CCDEP
  3577. CXXDEP=$CXXDEP
  3578. CCDEP_FLAGS=$CCDEP_FLAGS
  3579. ASDEP=$ASDEP
  3580. ASDEP_FLAGS=$ASDEP_FLAGS
  3581. CC_DEPFLAGS=$CC_DEPFLAGS
  3582. AS_DEPFLAGS=$AS_DEPFLAGS
  3583. HOSTCC=$host_cc
  3584. HOSTCFLAGS=$host_cflags
  3585. HOSTEXESUF=$HOSTEXESUF
  3586. HOSTLDFLAGS=$host_ldflags
  3587. HOSTLIBS=$host_libs
  3588. DEPHOSTCC=$host_cc
  3589. DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
  3590. HOSTCCDEP=$HOSTCCDEP
  3591. HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
  3592. HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
  3593. HOSTCC_C=$HOSTCC_C
  3594. HOSTCC_O=$HOSTCC_O
  3595. TARGET_EXEC=$target_exec
  3596. TARGET_PATH=$target_path
  3597. LIBS-ffplay=$sdl_libs
  3598. CFLAGS-ffplay=$sdl_cflags
  3599. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  3600. EXTRALIBS=$extralibs
  3601. INSTALL=$install
  3602. LIBTARGET=${LIBTARGET}
  3603. SLIBNAME=${SLIBNAME}
  3604. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  3605. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  3606. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  3607. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  3608. SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
  3609. SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
  3610. SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
  3611. SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
  3612. SAMPLES:=${samples:-\$(FATE_SAMPLES)}
  3613. NOREDZONE_FLAGS=$noredzone_flags
  3614. EOF
  3615. get_version(){
  3616. lcname=$1
  3617. name=$(toupper $lcname)
  3618. file=$source_path/$lcname/version.h
  3619. eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
  3620. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  3621. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  3622. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  3623. }
  3624. get_version_old(){
  3625. name=$1
  3626. file=$source_path/$2
  3627. # This condition will be removed when we stop supporting old libpostproc versions
  3628. if ! test "$name" = LIBPOSTPROC || test "$postproc_version" = current; then
  3629. eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
  3630. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  3631. fi
  3632. lcname=$(tolower $name)
  3633. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  3634. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  3635. }
  3636. get_version_old LIBPOSTPROC libpostproc/postprocess.h
  3637. get_version_old LIBSWRESAMPLE libswresample/swresample.h
  3638. get_version libavcodec
  3639. get_version libavdevice
  3640. get_version libavfilter
  3641. get_version libavformat
  3642. get_version libavresample
  3643. get_version libavutil
  3644. get_version libswscale
  3645. cat > $TMPH <<EOF
  3646. /* Automatically generated by configure - do not modify! */
  3647. #ifndef FFMPEG_CONFIG_H
  3648. #define FFMPEG_CONFIG_H
  3649. #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
  3650. #define FFMPEG_LICENSE "$(c_escape $license)"
  3651. #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
  3652. #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  3653. #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
  3654. #define av_restrict $_restrict
  3655. #define EXTERN_PREFIX "${extern_prefix}"
  3656. #define EXTERN_ASM ${extern_prefix}
  3657. #define SLIBSUF "$SLIBSUF"
  3658. #define HAVE_MMX2 HAVE_MMXEXT
  3659. EOF
  3660. test -n "$assert_level" &&
  3661. echo "#define ASSERT_LEVEL $assert_level" >>$TMPH
  3662. test -n "$malloc_prefix" &&
  3663. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  3664. if enabled yasm; then
  3665. append config_files $TMPASM
  3666. printf '' >$TMPASM
  3667. fi
  3668. print_config ARCH_ "$config_files" $ARCH_LIST
  3669. print_config HAVE_ "$config_files" $HAVE_LIST
  3670. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  3671. $CONFIG_EXTRA \
  3672. $ALL_COMPONENTS \
  3673. cat >>config.mak <<EOF
  3674. LAVF_FATE_TESTS=$(print_enabled -n _test $LAVF_FATE_TESTS)
  3675. LAVF_TESTS=$(print_enabled -n _test $LAVF_TESTS)
  3676. LAVFI_TESTS=$(print_enabled -n _test $LAVFI_TESTS)
  3677. SEEK_TESTS=$(print_enabled -n _test $SEEK_TESTS)
  3678. EOF
  3679. echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
  3680. echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
  3681. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  3682. cp_if_changed $TMPH config.h
  3683. touch .config
  3684. enabled yasm && cp_if_changed $TMPASM config.asm
  3685. cat > $TMPH <<EOF
  3686. /* Generated by ffconf */
  3687. #ifndef AVUTIL_AVCONFIG_H
  3688. #define AVUTIL_AVCONFIG_H
  3689. EOF
  3690. test "$postproc_version" != current && cat >> $TMPH <<EOF
  3691. #define LIBPOSTPROC_VERSION_MAJOR $LIBPOSTPROC_VERSION_MAJOR
  3692. #define LIBPOSTPROC_VERSION_MINOR $LIBPOSTPROC_VERSION_MINOR
  3693. #define LIBPOSTPROC_VERSION_MICRO $LIBPOSTPROC_VERSION_MICRO
  3694. EOF
  3695. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  3696. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  3697. cp_if_changed $TMPH libavutil/avconfig.h
  3698. test -n "$WARNINGS" && printf "\n$WARNINGS"
  3699. # build pkg-config files
  3700. pkgconfig_generate(){
  3701. name=$1
  3702. shortname=${name#lib}${build_suffix}
  3703. comment=$2
  3704. version=$3
  3705. libs=$4
  3706. requires=$5
  3707. enabled ${name#lib} || return 0
  3708. mkdir -p $name
  3709. cat <<EOF > $name/$name.pc
  3710. prefix=$prefix
  3711. exec_prefix=\${prefix}
  3712. libdir=$libdir
  3713. includedir=$incdir
  3714. Name: $name
  3715. Description: $comment
  3716. Version: $version
  3717. Requires: $(enabled shared || echo $requires)
  3718. Requires.private: $(enabled shared && echo $requires)
  3719. Conflicts:
  3720. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  3721. Libs.private: $(enabled shared && echo $libs)
  3722. Cflags: -I\${includedir}
  3723. EOF
  3724. mkdir -p doc/examples/pc-uninstalled
  3725. includedir=${source_path}
  3726. [ "$includedir" = . ] && includedir="\${pcfiledir}/../../.."
  3727. cat <<EOF > doc/examples/pc-uninstalled/$name.pc
  3728. prefix=
  3729. exec_prefix=
  3730. libdir=\${pcfiledir}/../../../$name
  3731. includedir=${includedir}
  3732. Name: $name
  3733. Description: $comment
  3734. Version: $version
  3735. Requires: $requires
  3736. Conflicts:
  3737. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  3738. Cflags: -I\${includedir}
  3739. EOF
  3740. }
  3741. libavfilter_pc_deps=""
  3742. enabled libavfilter_deps_avcodec && prepend libavfilter_pc_deps "libavcodec = $LIBAVCODEC_VERSION,"
  3743. enabled libavfilter_deps_avformat && prepend libavfilter_pc_deps "libavformat = $LIBAVFORMAT_VERSION,"
  3744. enabled libavfilter_deps_swscale && prepend libavfilter_pc_deps "libswscale = $LIBSWSCALE_VERSION,"
  3745. enabled libavfilter_deps_swresample && prepend libavfilter_pc_deps "libswresample = $LIBSWRESAMPLE_VERSION,"
  3746. enabled libavfilter_deps_postproc && prepend libavfilter_pc_deps "libpostproc = $LIBPOSTPROC_VERSION,"
  3747. libavfilter_pc_deps=${libavfilter_pc_deps%, }
  3748. libavdevice_pc_deps="libavformat = $LIBAVFORMAT_VERSION"
  3749. enabled lavfi_indev && prepend libavdevice_pc_deps "libavfilter = $LIBAVFILTER_VERSION,"
  3750. pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION" "$LIBM"
  3751. pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3752. pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  3753. pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "$libavdevice_pc_deps"
  3754. pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "$libavfilter_pc_deps"
  3755. pkgconfig_generate libpostproc "FFmpeg postprocessing library" "$LIBPOSTPROC_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
  3756. pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$extralibs"
  3757. pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"
  3758. pkgconfig_generate libswresample "FFmpeg audio rescaling library" "$LIBSWRESAMPLE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"