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.

4173 lines
126KB

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