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.

4101 lines
119KB

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