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.

4098 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. # build settings
  1731. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1732. AVSERVERLDFLAGS=-Wl,-E
  1733. LIBPREF="lib"
  1734. LIBSUF=".a"
  1735. FULLNAME='$(NAME)$(BUILDSUF)'
  1736. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1737. SLIBPREF="lib"
  1738. SLIBSUF=".so"
  1739. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1740. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  1741. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  1742. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  1743. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
  1744. SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
  1745. asflags_filter=echo
  1746. cflags_filter=echo
  1747. ldflags_filter=echo
  1748. AS_C='-c'
  1749. AS_O='-o $@'
  1750. CC_C='-c'
  1751. CC_E='-E -o $@'
  1752. CC_O='-o $@'
  1753. LD_O='-o $@'
  1754. LD_LIB='-l%'
  1755. LD_PATH='-L'
  1756. HOSTCC_C='-c'
  1757. HOSTCC_O='-o $@'
  1758. HOSTLD_O='-o $@'
  1759. host_cflags='-O3 -g'
  1760. host_cppflags='-D_ISOC99_SOURCE -D_XOPEN_SOURCE=600'
  1761. host_libs='-lm'
  1762. host_cflags_filter=echo
  1763. host_ldflags_filter=echo
  1764. target_path='$(CURDIR)'
  1765. # since the object filename is not given with the -MM flag, the compiler
  1766. # is only able to print the basename, and we must add the path ourselves
  1767. DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  1768. DEPFLAGS='-MM'
  1769. # find source path
  1770. if test -f configure; then
  1771. source_path=.
  1772. else
  1773. source_path=$(cd $(dirname "$0"); pwd)
  1774. echo "$source_path" | grep -q '[[:blank:]]' &&
  1775. die "Out of tree builds are impossible with whitespace in source path."
  1776. test -e "$source_path/config.h" &&
  1777. die "Out of tree builds are impossible with config.h in source dir."
  1778. fi
  1779. for v in "$@"; do
  1780. r=${v#*=}
  1781. l=${v%"$r"}
  1782. r=$(sh_quote "$r")
  1783. LIBAV_CONFIGURATION="${LIBAV_CONFIGURATION# } ${l}${r}"
  1784. done
  1785. find_things(){
  1786. thing=$1
  1787. pattern=$2
  1788. file=$source_path/$3
  1789. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  1790. }
  1791. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  1792. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  1793. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  1794. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  1795. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  1796. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  1797. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  1798. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  1799. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  1800. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  1801. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  1802. ALL_COMPONENTS="
  1803. $BSF_LIST
  1804. $DECODER_LIST
  1805. $DEMUXER_LIST
  1806. $ENCODER_LIST
  1807. $FILTER_LIST
  1808. $HWACCEL_LIST
  1809. $INDEV_LIST
  1810. $MUXER_LIST
  1811. $OUTDEV_LIST
  1812. $PARSER_LIST
  1813. $PROTOCOL_LIST
  1814. "
  1815. for n in $COMPONENT_LIST; do
  1816. v=$(toupper ${n%s})_LIST
  1817. eval enable \$$v
  1818. eval ${n}_if_any="\$$v"
  1819. done
  1820. enable $ARCH_EXT_LIST
  1821. die_unknown(){
  1822. echo "Unknown option \"$1\"."
  1823. echo "See $0 --help for available options."
  1824. exit 1
  1825. }
  1826. print_3_columns() {
  1827. cat | tr ' ' '\n' | sort | pr -r -3 -t
  1828. }
  1829. show_list() {
  1830. suffix=_$1
  1831. shift
  1832. echo $* | sed s/$suffix//g | print_3_columns
  1833. exit 0
  1834. }
  1835. rand_list(){
  1836. IFS=', '
  1837. set -- $*
  1838. unset IFS
  1839. for thing; do
  1840. comp=${thing%:*}
  1841. prob=${thing#$comp}
  1842. prob=${prob#:}
  1843. is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
  1844. echo "prob ${prob:-0.5}"
  1845. printf '%s\n' $comp
  1846. done
  1847. }
  1848. do_random(){
  1849. action=$1
  1850. shift
  1851. random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
  1852. $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
  1853. }
  1854. for opt do
  1855. optval="${opt#*=}"
  1856. case "$opt" in
  1857. --extra-ldflags=*)
  1858. add_ldflags $optval
  1859. ;;
  1860. --extra-libs=*)
  1861. add_extralibs $optval
  1862. ;;
  1863. --disable-devices)
  1864. disable $INDEV_LIST $OUTDEV_LIST
  1865. ;;
  1866. --enable-debug=*)
  1867. debuglevel="$optval"
  1868. ;;
  1869. --disable-programs)
  1870. disable $PROGRAM_LIST
  1871. ;;
  1872. --disable-everything)
  1873. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  1874. ;;
  1875. --disable-all)
  1876. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  1877. disable $LIBRARY_LIST $PROGRAM_LIST doc
  1878. ;;
  1879. --enable-random|--disable-random)
  1880. action=${opt%%-random}
  1881. do_random ${action#--} $COMPONENT_LIST
  1882. ;;
  1883. --enable-random=*|--disable-random=*)
  1884. action=${opt%%-random=*}
  1885. do_random ${action#--} $optval
  1886. ;;
  1887. --enable-*=*|--disable-*=*)
  1888. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  1889. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  1890. eval list=\$$(toupper $thing)_LIST
  1891. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  1892. $action $(filter "$name" $list)
  1893. ;;
  1894. --enable-?*|--disable-?*)
  1895. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  1896. if is_in $option $COMPONENT_LIST; then
  1897. test $action = disable && action=unset
  1898. eval $action \$$(toupper ${option%s})_LIST
  1899. elif is_in $option $CMDLINE_SELECT; then
  1900. $action $option
  1901. else
  1902. die_unknown $opt
  1903. fi
  1904. ;;
  1905. --list-*)
  1906. NAME="${opt#--list-}"
  1907. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  1908. NAME=${NAME%s}
  1909. eval show_list $NAME \$$(toupper $NAME)_LIST
  1910. ;;
  1911. --help|-h) show_help
  1912. ;;
  1913. *)
  1914. optname="${opt%%=*}"
  1915. optname="${optname#--}"
  1916. optname=$(echo "$optname" | sed 's/-/_/g')
  1917. if is_in $optname $CMDLINE_SET; then
  1918. eval $optname='$optval'
  1919. elif is_in $optname $CMDLINE_APPEND; then
  1920. append $optname "$optval"
  1921. else
  1922. die_unknown $opt
  1923. fi
  1924. ;;
  1925. esac
  1926. done
  1927. disabled logging && logfile=/dev/null
  1928. echo "# $0 $LIBAV_CONFIGURATION" > $logfile
  1929. set >> $logfile
  1930. test -n "$cross_prefix" && enable cross_compile
  1931. if enabled cross_compile; then
  1932. test -n "$arch" && test -n "$target_os" ||
  1933. die "Must specify target arch and OS when cross-compiling"
  1934. fi
  1935. ar_default="${cross_prefix}${ar_default}"
  1936. cc_default="${cross_prefix}${cc_default}"
  1937. nm_default="${cross_prefix}${nm_default}"
  1938. pkg_config_default="${cross_prefix}${pkg_config_default}"
  1939. ranlib="${cross_prefix}${ranlib}"
  1940. sysinclude_default="${sysroot}/usr/include"
  1941. case "$toolchain" in
  1942. clang-asan)
  1943. cc_default="clang"
  1944. add_cflags -faddress-sanitizer
  1945. add_ldflags -faddress-sanitizer
  1946. ;;
  1947. clang-tsan)
  1948. cc_default="clang"
  1949. add_cflags -fthread-sanitizer
  1950. add_ldflags -fthread-sanitizer
  1951. ;;
  1952. msvc)
  1953. cc_default="c99wrap cl"
  1954. ld_default="c99wrap link"
  1955. nm_default="dumpbin -symbols"
  1956. ar_default="lib"
  1957. target_os_default="win32"
  1958. ;;
  1959. ?*)
  1960. die "Unknown toolchain $toolchain"
  1961. ;;
  1962. esac
  1963. set_default arch cc pkg_config sysinclude target_os
  1964. enabled cross_compile || host_cc_default=$cc
  1965. set_default host_cc
  1966. if ! $pkg_config --version >/dev/null 2>&1; then
  1967. warn "$pkg_config not found, library detection may fail."
  1968. pkg_config=false
  1969. fi
  1970. exesuf() {
  1971. case $1 in
  1972. mingw32*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
  1973. esac
  1974. }
  1975. EXESUF=$(exesuf $target_os)
  1976. HOSTEXESUF=$(exesuf $host_os)
  1977. # set temporary file name
  1978. : ${TMPDIR:=$TEMPDIR}
  1979. : ${TMPDIR:=$TMP}
  1980. : ${TMPDIR:=/tmp}
  1981. if ! check_cmd mktemp -u XXXXXX; then
  1982. # simple replacement for missing mktemp
  1983. # NOT SAFE FOR GENERAL USE
  1984. mktemp(){
  1985. echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
  1986. }
  1987. fi
  1988. tmpfile(){
  1989. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  1990. (set -C; exec > $tmp) 2>/dev/null ||
  1991. die "Unable to create temporary file in $TMPDIR."
  1992. append TMPFILES $tmp
  1993. eval $1=$tmp
  1994. }
  1995. trap 'rm -f -- $TMPFILES' EXIT
  1996. tmpfile TMPASM .asm
  1997. tmpfile TMPC .c
  1998. tmpfile TMPE $EXESUF
  1999. tmpfile TMPH .h
  2000. tmpfile TMPO .o
  2001. tmpfile TMPS .S
  2002. tmpfile TMPSH .sh
  2003. tmpfile TMPV .ver
  2004. unset -f mktemp
  2005. chmod +x $TMPE
  2006. # make sure we can execute files in $TMPDIR
  2007. cat > $TMPSH 2>> $logfile <<EOF
  2008. #! /bin/sh
  2009. EOF
  2010. chmod +x $TMPSH >> $logfile 2>&1
  2011. if ! $TMPSH >> $logfile 2>&1; then
  2012. cat <<EOF
  2013. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  2014. variable to another directory and make sure that it is not mounted noexec.
  2015. EOF
  2016. die "Sanity test failed."
  2017. fi
  2018. ccc_flags(){
  2019. for flag; do
  2020. case $flag in
  2021. -std=c99) echo -c99 ;;
  2022. -mcpu=*) echo -arch ${flag#*=} ;;
  2023. -mieee) echo -ieee ;;
  2024. -O*|-fast) echo $flag ;;
  2025. -fno-math-errno) echo -assume nomath_errno ;;
  2026. -g) echo -g3 ;;
  2027. -Wall) echo -msg_enable level2 ;;
  2028. -Wno-pointer-sign) echo -msg_disable ptrmismatch1 ;;
  2029. -Wl,*) echo $flag ;;
  2030. -f*|-W*) ;;
  2031. *) echo $flag ;;
  2032. esac
  2033. done
  2034. }
  2035. msvc_flags(){
  2036. for flag; do
  2037. case $flag in
  2038. -fomit-frame-pointer) echo -Oy ;;
  2039. -g) echo -Z7 ;;
  2040. -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
  2041. -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
  2042. -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
  2043. -wd4996 -wd4273 ;;
  2044. -std=c99) ;;
  2045. -fno-math-errno) ;;
  2046. -fno-common) ;;
  2047. -fno-signed-zeros) ;;
  2048. -fPIC) ;;
  2049. -lz) echo zlib.lib ;;
  2050. -lavifil32) echo vfw32.lib ;;
  2051. -lavicap32) echo vfw32.lib user32.lib ;;
  2052. -l*) echo ${flag#-l}.lib ;;
  2053. *) echo $flag ;;
  2054. esac
  2055. done
  2056. }
  2057. pgi_flags(){
  2058. for flag; do
  2059. case $flag in
  2060. -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
  2061. -fomit-frame-pointer) echo -Mnoframe ;;
  2062. -g) echo -gopt ;;
  2063. *) echo $flag ;;
  2064. esac
  2065. done
  2066. }
  2067. suncc_flags(){
  2068. for flag; do
  2069. case $flag in
  2070. -march=*|-mcpu=*)
  2071. case "${flag#*=}" in
  2072. native) echo -xtarget=native ;;
  2073. v9|niagara) echo -xarch=sparc ;;
  2074. ultrasparc) echo -xarch=sparcvis ;;
  2075. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  2076. i586|pentium) echo -xchip=pentium ;;
  2077. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  2078. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  2079. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  2080. pentium4*) echo -xtarget=pentium4 ;;
  2081. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  2082. *-sse3) echo -xarch=sse3 ;;
  2083. core2) echo -xarch=ssse3 -xchip=core2 ;;
  2084. corei7) echo -xarch=sse4_2 -xchip=nehalem ;;
  2085. corei7-avx) echo -xarch=avx -xchip=sandybridge ;;
  2086. amdfam10|barcelona|bdver*) echo -xarch=sse4_1 ;;
  2087. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  2088. k8|opteron|athlon64|athlon-fx)
  2089. echo -xarch=sse2a ;;
  2090. athlon*) echo -xarch=pentium_proa ;;
  2091. esac
  2092. ;;
  2093. -std=c99) echo -xc99 ;;
  2094. -fomit-frame-pointer) echo -xregs=frameptr ;;
  2095. -fPIC) echo -KPIC -xcode=pic32 ;;
  2096. -W*,*) echo $flag ;;
  2097. -f*-*|-W*|-mimpure-text) ;;
  2098. -shared) echo -G ;;
  2099. *) echo $flag ;;
  2100. esac
  2101. done
  2102. }
  2103. tms470_flags(){
  2104. for flag; do
  2105. case $flag in
  2106. -march=*|-mcpu=*)
  2107. case "${flag#*=}" in
  2108. armv7-a|cortex-a*) echo -mv=7a8 ;;
  2109. armv7-r|cortex-r*) echo -mv=7r4 ;;
  2110. armv7-m|cortex-m*) echo -mv=7m3 ;;
  2111. armv6*|arm11*) echo -mv=6 ;;
  2112. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  2113. echo -mv=5e ;;
  2114. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  2115. esac
  2116. ;;
  2117. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  2118. -mfpu=vfp) echo --float_support=vfpv2 ;;
  2119. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  2120. -mfpu=vfpv3-d16) echo --float_support=vfpv3d16 ;;
  2121. -msoft-float) echo --float_support=vfplib ;;
  2122. -O[0-3]|-mf=*) echo $flag ;;
  2123. -g) echo -g -mn ;;
  2124. -pds=*) echo $flag ;;
  2125. -D*|-I*) echo $flag ;;
  2126. --gcc|--abi=*) echo $flag ;;
  2127. -me) echo $flag ;;
  2128. esac
  2129. done
  2130. }
  2131. probe_cc(){
  2132. pfx=$1
  2133. _cc=$2
  2134. unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
  2135. unset _ld_o _ldflags _ld_lib _ld_path
  2136. unset _depflags _DEPCMD _DEPFLAGS
  2137. _flags_filter=echo
  2138. if $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
  2139. _type=llvm_gcc
  2140. gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
  2141. _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
  2142. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2143. _cflags_speed='-O3'
  2144. _cflags_size='-Os'
  2145. elif $_cc -v 2>&1 | grep -qi ^gcc; then
  2146. _type=gcc
  2147. gcc_version=$($_cc --version | head -n1)
  2148. gcc_basever=$($_cc -dumpversion)
  2149. gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
  2150. gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
  2151. _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
  2152. if ! $_cc -dumpversion | grep -q '^2\.'; then
  2153. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2154. fi
  2155. _cflags_speed='-O3'
  2156. _cflags_size='-Os'
  2157. elif $_cc --version 2>/dev/null | grep -q ^icc; then
  2158. _type=icc
  2159. _ident=$($_cc --version | head -n1)
  2160. _depflags='-MMD'
  2161. _cflags_speed='-O3'
  2162. _cflags_size='-Os'
  2163. _cflags_noopt='-O1'
  2164. elif $_cc -v 2>&1 | grep -q xlc; then
  2165. _type=xlc
  2166. _ident=$($_cc -qversion 2>/dev/null | head -n1)
  2167. _cflags_speed='-O5'
  2168. _cflags_size='-O5 -qcompact'
  2169. elif $_cc -V 2>/dev/null | grep -q Compaq; then
  2170. _type=ccc
  2171. _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
  2172. _DEPFLAGS='-M'
  2173. _cflags_speed='-fast'
  2174. _cflags_size='-O1'
  2175. _flags_filter=ccc_flags
  2176. elif $_cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
  2177. test -d "$sysroot" || die "No valid sysroot specified."
  2178. _type=armcc
  2179. _ident=$($_cc --vsn | head -n1)
  2180. armcc_conf="$PWD/armcc.conf"
  2181. $_cc --arm_linux_configure \
  2182. --arm_linux_config_file="$armcc_conf" \
  2183. --configure_sysroot="$sysroot" \
  2184. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  2185. die "Error creating armcc configuration file."
  2186. $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
  2187. _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
  2188. as_default="${cross_prefix}gcc"
  2189. _depflags='-MMD'
  2190. _cflags_speed='-O3'
  2191. _cflags_size='-Os'
  2192. elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
  2193. _type=tms470
  2194. _ident=$($_cc -version | head -n1 | tr -s ' ')
  2195. _flags='--gcc --abi=eabi -me'
  2196. _cc_e='-ppl -fe=$@'
  2197. _cc_o='-fe=$@'
  2198. _depflags='-ppa -ppd=$(@:.o=.d)'
  2199. _cflags_speed='-O3 -mf=5'
  2200. _cflags_size='-O3 -mf=2'
  2201. _flags_filter=tms470_flags
  2202. elif $_cc -v 2>&1 | grep -q clang; then
  2203. _type=clang
  2204. _ident=$($_cc --version | head -n1)
  2205. _depflags='-MMD'
  2206. _cflags_speed='-O3'
  2207. _cflags_size='-Os'
  2208. elif $_cc -V 2>&1 | grep -q Sun; then
  2209. _type=suncc
  2210. _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
  2211. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  2212. _DEPFLAGS='-xM1 -xc99'
  2213. _ldflags='-std=c99'
  2214. _cflags_speed='-O5'
  2215. _cflags_size='-O5 -xspace'
  2216. _flags_filter=suncc_flags
  2217. elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
  2218. _type=pathscale
  2219. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2220. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2221. _cflags_speed='-O2'
  2222. _cflags_size='-Os'
  2223. _flags_filter='filter_out -Wdisabled-optimization'
  2224. elif $_cc -v 2>&1 | grep -q Open64; then
  2225. _type=open64
  2226. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2227. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2228. _cflags_speed='-O2'
  2229. _cflags_size='-Os'
  2230. _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
  2231. elif $_cc -V 2>&1 | grep -q Portland; then
  2232. _type=pgi
  2233. _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
  2234. opt_common='-alias=ansi -Mdse -Mlre -Mpre'
  2235. _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
  2236. _cflags_size="-O2 -Munroll=c:1 $opt_common"
  2237. _cflags_noopt="-O1"
  2238. _flags_filter=pgi_flags
  2239. elif $_cc 2>&1 | grep -q Microsoft; then
  2240. _type=msvc
  2241. _ident=$($cc 2>&1 | head -n1)
  2242. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
  2243. _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
  2244. _cflags_speed="-O2"
  2245. _cflags_size="-O1"
  2246. # Nonstandard output options, to avoid msys path conversion issues, relies on wrapper to remap it
  2247. if $_cc 2>&1 | grep -q Linker; then
  2248. _ld_o='-out $@'
  2249. else
  2250. _ld_o='-Fe$@'
  2251. fi
  2252. _cc_o='-Fo $@'
  2253. _cc_e='-P -Fi $@'
  2254. _flags_filter=msvc_flags
  2255. _ld_lib='lib%.a'
  2256. _ld_path='-libpath:'
  2257. _flags='-nologo'
  2258. _cflags='-D_USE_MATH_DEFINES -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64'
  2259. if [ $pfx = hostcc ]; then
  2260. append _cflags -Dsnprintf=_snprintf
  2261. fi
  2262. fi
  2263. eval ${pfx}_type=\$_type
  2264. eval ${pfx}_ident=\$_ident
  2265. }
  2266. set_ccvars(){
  2267. eval ${1}_C=\${_cc_c-\${${1}_C}}
  2268. eval ${1}_E=\${_cc_e-\${${1}_E}}
  2269. eval ${1}_O=\${_cc_o-\${${1}_O}}
  2270. if [ -n "$_depflags" ]; then
  2271. eval ${1}_DEPFLAGS=\$_depflags
  2272. else
  2273. eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
  2274. eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
  2275. eval DEP${1}FLAGS=\$_flags
  2276. fi
  2277. }
  2278. probe_cc cc "$cc"
  2279. cflags_filter=$_flags_filter
  2280. cflags_speed=$_cflags_speed
  2281. cflags_size=$_cflags_size
  2282. cflags_noopt=$_cflags_noopt
  2283. add_cflags $_flags $_cflags
  2284. cc_ldflags=$_ldflags
  2285. set_ccvars CC
  2286. probe_cc hostcc "$host_cc"
  2287. host_cflags_filter=$_flags_filter
  2288. add_host_cflags $_flags $_cflags
  2289. set_ccvars HOSTCC
  2290. test -n "$cc_type" && enable $cc_type ||
  2291. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  2292. : ${as_default:=$cc}
  2293. : ${dep_cc_default:=$cc}
  2294. : ${ld_default:=$cc}
  2295. : ${host_ld_default:=$host_cc}
  2296. set_default ar as dep_cc ld host_ld
  2297. probe_cc as "$as"
  2298. asflags_filter=$_flags_filter
  2299. add_asflags $_flags $_cflags
  2300. set_ccvars AS
  2301. probe_cc ld "$ld"
  2302. ldflags_filter=$_flags_filter
  2303. add_ldflags $_flags $_ldflags
  2304. test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
  2305. LD_O=${_ld_o-$LD_O}
  2306. LD_LIB=${_ld_lib-$LD_LIB}
  2307. LD_PATH=${_ld_path-$LD_PATH}
  2308. probe_cc hostld "$host_ld"
  2309. host_ldflags_filter=$_flags_filter
  2310. add_host_ldflags $_flags $_ldflags
  2311. HOSTLD_O=${_ld_o-$HOSTLD_O}
  2312. if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
  2313. probe_cc depcc "$dep_cc"
  2314. CCDEP=${_DEPCMD:-$DEPCMD}
  2315. CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
  2316. DEPCCFLAGS=$_flags
  2317. fi
  2318. if $ar 2>&1 | grep -q Microsoft; then
  2319. arflags="-nologo"
  2320. ar_o='-out:$@'
  2321. elif $ar 2>&1 | grep -q 'Texas Instruments'; then
  2322. arflags="rq"
  2323. ar_o='$@'
  2324. else
  2325. arflags="rc"
  2326. ar_o='$@'
  2327. fi
  2328. add_cflags $extra_cflags
  2329. add_asflags $extra_cflags
  2330. if test -n "$sysroot"; then
  2331. case "$cc_type" in
  2332. gcc|llvm_gcc|clang)
  2333. add_cppflags --sysroot="$sysroot"
  2334. add_ldflags --sysroot="$sysroot"
  2335. ;;
  2336. tms470)
  2337. add_cppflags -I"$sysinclude"
  2338. add_ldflags --sysroot="$sysroot"
  2339. ;;
  2340. esac
  2341. fi
  2342. if test "$cpu" = host; then
  2343. enabled cross_compile && die "--cpu=host makes no sense when cross-compiling."
  2344. case "$cc_type" in
  2345. gcc|llvm_gcc)
  2346. check_native(){
  2347. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  2348. sed -n "/cc1.*$1=/{
  2349. s/.*$1=\\([^ ]*\\).*/\\1/
  2350. p
  2351. q
  2352. }" $TMPE
  2353. }
  2354. cpu=$(check_native -march || check_native -mcpu)
  2355. ;;
  2356. esac
  2357. test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc"
  2358. fi
  2359. # Deal with common $arch aliases
  2360. case "$arch" in
  2361. aarch64|arm64)
  2362. arch="aarch64"
  2363. ;;
  2364. arm*)
  2365. arch="arm"
  2366. ;;
  2367. mips*|IP*)
  2368. arch="mips"
  2369. ;;
  2370. parisc*|hppa*)
  2371. arch="parisc"
  2372. ;;
  2373. "Power Macintosh"|ppc*|powerpc*)
  2374. arch="ppc"
  2375. ;;
  2376. s390|s390x)
  2377. arch="s390"
  2378. ;;
  2379. sh4|sh)
  2380. arch="sh4"
  2381. ;;
  2382. sun4u|sparc*)
  2383. arch="sparc"
  2384. ;;
  2385. tilegx|tile-gx)
  2386. arch="tilegx"
  2387. ;;
  2388. i[3-6]86|i86pc|BePC|x86pc|x86_64|amd64)
  2389. arch="x86"
  2390. ;;
  2391. esac
  2392. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  2393. enable $arch
  2394. # Add processor-specific flags
  2395. if enabled aarch64; then
  2396. case $cpu in
  2397. armv*)
  2398. cpuflags="-march=$cpu"
  2399. ;;
  2400. *)
  2401. cpuflags="-mcpu=$cpu"
  2402. ;;
  2403. esac
  2404. elif enabled alpha; then
  2405. cpuflags="-mcpu=$cpu"
  2406. elif enabled arm; then
  2407. check_arm_arch() {
  2408. check_cpp_condition stddef.h \
  2409. "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
  2410. $cpuflags
  2411. }
  2412. probe_arm_arch() {
  2413. if check_arm_arch 4; then echo armv4;
  2414. elif check_arm_arch 4T; then echo armv4t;
  2415. elif check_arm_arch 5; then echo armv5;
  2416. elif check_arm_arch 5E; then echo armv5e;
  2417. elif check_arm_arch 5T; then echo armv5t;
  2418. elif check_arm_arch 5TE; then echo armv5te;
  2419. elif check_arm_arch 5TEJ; then echo armv5te;
  2420. elif check_arm_arch 6; then echo armv6;
  2421. elif check_arm_arch 6J; then echo armv6j;
  2422. elif check_arm_arch 6K; then echo armv6k;
  2423. elif check_arm_arch 6Z; then echo armv6z;
  2424. elif check_arm_arch 6ZK; then echo armv6zk;
  2425. elif check_arm_arch 6T2; then echo armv6t2;
  2426. elif check_arm_arch 7; then echo armv7;
  2427. elif check_arm_arch 7A 7_A; then echo armv7-a;
  2428. elif check_arm_arch 7R 7_R; then echo armv7-r;
  2429. elif check_arm_arch 7M 7_M; then echo armv7-m;
  2430. elif check_arm_arch 7EM 7E_M; then echo armv7-m;
  2431. elif check_arm_arch 8A 8_A; then echo armv8-a;
  2432. fi
  2433. }
  2434. [ "$cpu" = generic ] && cpu=$(probe_arm_arch)
  2435. case $cpu in
  2436. armv*)
  2437. cpuflags="-march=$cpu"
  2438. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  2439. ;;
  2440. *)
  2441. cpuflags="-mcpu=$cpu"
  2442. case $cpu in
  2443. cortex-a*) subarch=armv7a ;;
  2444. cortex-r*) subarch=armv7r ;;
  2445. cortex-m*) enable thumb; subarch=armv7m ;;
  2446. arm11*) subarch=armv6 ;;
  2447. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  2448. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  2449. *) subarch=$(probe_arm_arch) ;;
  2450. esac
  2451. ;;
  2452. esac
  2453. case "$subarch" in
  2454. armv5t*) enable fast_clz ;;
  2455. armv[6-8]*) enable fast_clz fast_unaligned ;;
  2456. esac
  2457. elif enabled avr32; then
  2458. case $cpu in
  2459. ap7[02]0[0-2])
  2460. subarch="avr32_ap"
  2461. cpuflags="-mpart=$cpu"
  2462. ;;
  2463. ap)
  2464. subarch="avr32_ap"
  2465. cpuflags="-march=$cpu"
  2466. ;;
  2467. uc3[ab]*)
  2468. subarch="avr32_uc"
  2469. cpuflags="-mcpu=$cpu"
  2470. ;;
  2471. uc)
  2472. subarch="avr32_uc"
  2473. cpuflags="-march=$cpu"
  2474. ;;
  2475. esac
  2476. elif enabled bfin; then
  2477. cpuflags="-mcpu=$cpu"
  2478. elif enabled mips; then
  2479. cpuflags="-march=$cpu"
  2480. elif enabled ppc; then
  2481. case $(tolower $cpu) in
  2482. 601|ppc601|powerpc601)
  2483. cpuflags="-mcpu=601"
  2484. disable altivec
  2485. ;;
  2486. 603*|ppc603*|powerpc603*)
  2487. cpuflags="-mcpu=603"
  2488. disable altivec
  2489. ;;
  2490. 604*|ppc604*|powerpc604*)
  2491. cpuflags="-mcpu=604"
  2492. disable altivec
  2493. ;;
  2494. g3|75*|ppc75*|powerpc75*)
  2495. cpuflags="-mcpu=750"
  2496. disable altivec
  2497. ;;
  2498. g4|745*|ppc745*|powerpc745*)
  2499. cpuflags="-mcpu=7450"
  2500. ;;
  2501. 74*|ppc74*|powerpc74*)
  2502. cpuflags="-mcpu=7400"
  2503. ;;
  2504. g5|970|ppc970|powerpc970)
  2505. cpuflags="-mcpu=970"
  2506. ;;
  2507. power[3-7]*)
  2508. cpuflags="-mcpu=$cpu"
  2509. ;;
  2510. cell)
  2511. cpuflags="-mcpu=cell"
  2512. enable ldbrx
  2513. ;;
  2514. e500mc)
  2515. cpuflags="-mcpu=e500mc"
  2516. disable altivec
  2517. ;;
  2518. e500v2)
  2519. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  2520. disable altivec
  2521. ;;
  2522. e500)
  2523. cpuflags="-mcpu=8540 -mhard-float"
  2524. disable altivec
  2525. ;;
  2526. esac
  2527. elif enabled sparc; then
  2528. case $cpu in
  2529. cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
  2530. cpuflags="-mcpu=$cpu"
  2531. disable vis
  2532. ;;
  2533. ultrasparc*|niagara[234])
  2534. cpuflags="-mcpu=$cpu"
  2535. ;;
  2536. esac
  2537. elif enabled x86; then
  2538. case $cpu in
  2539. i[345]86|pentium)
  2540. cpuflags="-march=$cpu"
  2541. disable mmx
  2542. ;;
  2543. # targets that do NOT support conditional mov (cmov)
  2544. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  2545. cpuflags="-march=$cpu"
  2546. disable cmov
  2547. ;;
  2548. # targets that do support conditional mov (cmov)
  2549. 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*)
  2550. cpuflags="-march=$cpu"
  2551. enable cmov
  2552. enable fast_cmov
  2553. ;;
  2554. # targets that do support conditional mov but on which it's slow
  2555. pentium4|pentium4m|prescott|nocona)
  2556. cpuflags="-march=$cpu"
  2557. enable cmov
  2558. disable fast_cmov
  2559. ;;
  2560. esac
  2561. fi
  2562. if [ "$cpu" != generic ]; then
  2563. add_cflags $cpuflags
  2564. add_asflags $cpuflags
  2565. fi
  2566. # compiler sanity check
  2567. check_exec <<EOF
  2568. int main(void){ return 0; }
  2569. EOF
  2570. if test "$?" != 0; then
  2571. echo "$cc is unable to create an executable file."
  2572. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  2573. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  2574. echo "Only do this if you know what cross compiling means."
  2575. fi
  2576. die "C compiler test failed."
  2577. fi
  2578. add_cppflags -D_ISOC99_SOURCE
  2579. check_cflags -std=c99
  2580. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  2581. #include <stdlib.h>
  2582. EOF
  2583. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  2584. #include <stdlib.h>
  2585. EOF
  2586. check_host_cflags -std=c99
  2587. check_host_cflags -Wall
  2588. check_64bit(){
  2589. arch32=$1
  2590. arch64=$2
  2591. expr=$3
  2592. check_code cc "" "int test[2*($expr) - 1]" &&
  2593. subarch=$arch64 || subarch=$arch32
  2594. }
  2595. case "$arch" in
  2596. aarch64|alpha|ia64)
  2597. spic=$shared
  2598. ;;
  2599. mips)
  2600. check_64bit mips mips64 '_MIPS_SIM > 1'
  2601. spic=$shared
  2602. ;;
  2603. parisc)
  2604. check_64bit parisc parisc64 'sizeof(void *) > 4'
  2605. spic=$shared
  2606. ;;
  2607. ppc)
  2608. check_64bit ppc ppc64 'sizeof(void *) > 4'
  2609. spic=$shared
  2610. ;;
  2611. sparc)
  2612. check_64bit sparc sparc64 'sizeof(void *) > 4'
  2613. spic=$shared
  2614. ;;
  2615. x86)
  2616. check_64bit x86_32 x86_64 'sizeof(void *) > 4'
  2617. if test "$subarch" = "x86_64"; then
  2618. spic=$shared
  2619. fi
  2620. ;;
  2621. esac
  2622. enable $subarch
  2623. enabled spic && enable pic
  2624. # OS specific
  2625. case $target_os in
  2626. haiku)
  2627. prefix_default="/boot/common"
  2628. network_extralibs="-lnetwork"
  2629. host_libs=
  2630. ;;
  2631. sunos)
  2632. AVSERVERLDFLAGS=""
  2633. SHFLAGS='-shared -Wl,-h,$$(@F)'
  2634. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  2635. network_extralibs="-lsocket -lnsl"
  2636. add_cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
  2637. # When using suncc to build, the Solaris linker will mark
  2638. # an executable with each instruction set encountered by
  2639. # the Solaris assembler. As our libraries contain their own
  2640. # guards for processor-specific code, instead suppress
  2641. # generation of the HWCAPS ELF section on Solaris x86 only.
  2642. enabled_all suncc x86 && echo "hwcap_1 = OVERRIDE;" > mapfile && add_ldflags -Wl,-M,mapfile
  2643. nm_default='nm -P -g'
  2644. ;;
  2645. netbsd)
  2646. disable symver
  2647. oss_indev_extralibs="-lossaudio"
  2648. oss_outdev_extralibs="-lossaudio"
  2649. ;;
  2650. openbsd|bitrig)
  2651. disable symver
  2652. SHFLAGS='-shared'
  2653. SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
  2654. SLIB_INSTALL_LINKS=
  2655. oss_indev_extralibs="-lossaudio"
  2656. oss_outdev_extralibs="-lossaudio"
  2657. ;;
  2658. dragonfly)
  2659. disable symver
  2660. ;;
  2661. freebsd)
  2662. ;;
  2663. bsd/os)
  2664. add_extralibs -lpoll -lgnugetopt
  2665. ;;
  2666. darwin)
  2667. gas="gas-preprocessor.pl $cc"
  2668. enabled ppc && add_asflags -force_cpusubtype_ALL
  2669. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  2670. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  2671. add_ldflags -Wl,-dynamic,-search_paths_first
  2672. SLIBSUF=".dylib"
  2673. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  2674. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  2675. AVSERVERLDFLAGS=-Wl,-bind_at_load
  2676. objformat="macho"
  2677. enabled x86_64 && objformat="macho64"
  2678. enabled_any pic shared ||
  2679. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  2680. ;;
  2681. mingw32*)
  2682. if test $target_os = "mingw32ce"; then
  2683. disable network
  2684. else
  2685. target_os=mingw32
  2686. fi
  2687. LIBTARGET=i386
  2688. if enabled x86_64; then
  2689. LIBTARGET="i386:x86-64"
  2690. elif enabled arm; then
  2691. LIBTARGET=arm-wince
  2692. fi
  2693. shlibdir_default="$bindir_default"
  2694. SLIBPREF=""
  2695. SLIBSUF=".dll"
  2696. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2697. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2698. 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)'
  2699. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2700. SLIB_INSTALL_LINKS=
  2701. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  2702. SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  2703. 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'
  2704. objformat="win32"
  2705. dlltool="${cross_prefix}dlltool"
  2706. ranlib=:
  2707. enable dos_paths
  2708. ;;
  2709. win32|win64)
  2710. if enabled shared; then
  2711. # Link to the import library instead of the normal static library
  2712. # for shared libs.
  2713. LD_LIB='%.lib'
  2714. # Cannot build shared and static libraries at the same time with
  2715. # MSVC.
  2716. disable static
  2717. fi
  2718. shlibdir_default="$bindir_default"
  2719. SLIBPREF=""
  2720. SLIBSUF=".dll"
  2721. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2722. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2723. SLIB_CREATE_DEF_CMD='makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
  2724. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2725. SLIB_INSTALL_LINKS=
  2726. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  2727. SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  2728. SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  2729. objformat="win32"
  2730. ranlib=:
  2731. enable dos_paths
  2732. ;;
  2733. cygwin*)
  2734. target_os=cygwin
  2735. shlibdir_default="$bindir_default"
  2736. SLIBPREF="cyg"
  2737. SLIBSUF=".dll"
  2738. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2739. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2740. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2741. SLIB_INSTALL_LINKS=
  2742. SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
  2743. SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
  2744. objformat="win32"
  2745. enable dos_paths
  2746. ;;
  2747. *-dos|freedos|opendos)
  2748. network_extralibs="-lsocket"
  2749. objformat="coff"
  2750. enable dos_paths
  2751. add_cppflags -U__STRICT_ANSI__
  2752. ;;
  2753. linux)
  2754. enable dv1394
  2755. ;;
  2756. irix*)
  2757. target_os=irix
  2758. ranlib="echo ignoring ranlib"
  2759. ;;
  2760. os/2*)
  2761. ln_s="cp -f"
  2762. objformat="aout"
  2763. add_cppflags -D_GNU_SOURCE
  2764. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
  2765. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  2766. AVSERVERLDFLAGS=""
  2767. LIBSUF="_s.a"
  2768. SLIBPREF=""
  2769. SLIBSUF=".dll"
  2770. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  2771. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  2772. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  2773. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  2774. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  2775. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  2776. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  2777. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  2778. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  2779. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  2780. SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
  2781. enable dos_paths
  2782. ;;
  2783. gnu/kfreebsd)
  2784. add_cppflags -D_BSD_SOURCE
  2785. ;;
  2786. gnu)
  2787. ;;
  2788. qnx)
  2789. add_cppflags -D_QNX_SOURCE
  2790. network_extralibs="-lsocket"
  2791. ;;
  2792. symbian)
  2793. SLIBSUF=".dll"
  2794. enable dos_paths
  2795. add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
  2796. add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
  2797. add_ldflags -Wl,--target1-abs,--no-undefined \
  2798. -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
  2799. -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
  2800. add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
  2801. -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
  2802. -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
  2803. ;;
  2804. osf1)
  2805. add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
  2806. AVSERVERLDFLAGS=
  2807. ;;
  2808. minix)
  2809. ;;
  2810. plan9)
  2811. add_cppflags -D_C99_SNPRINTF_EXTENSION \
  2812. -D_REENTRANT_SOURCE \
  2813. -D_RESEARCH_SOURCE \
  2814. -DFD_SETSIZE=96 \
  2815. -DHAVE_SOCK_OPTS
  2816. add_compat strtod.o strtod=avpriv_strtod
  2817. network_extralibs='-lbsd'
  2818. exeobjs=compat/plan9/main.o
  2819. disable avserver
  2820. cp_f='cp'
  2821. ;;
  2822. none)
  2823. ;;
  2824. *)
  2825. die "Unknown OS '$target_os'."
  2826. ;;
  2827. esac
  2828. # determine libc flavour
  2829. # uclibc defines __GLIBC__, so it needs to be checked before glibc.
  2830. if check_cpp_condition features.h "defined __UCLIBC__"; then
  2831. libc_type=uclibc
  2832. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2833. elif check_cpp_condition features.h "defined __GLIBC__"; then
  2834. libc_type=glibc
  2835. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2836. # MinGW headers can be installed on Cygwin, so check for newlib first.
  2837. elif check_cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
  2838. libc_type=newlib
  2839. add_cppflags -U__STRICT_ANSI__
  2840. elif check_header _mingw.h; then
  2841. libc_type=mingw
  2842. check_cpp_condition _mingw.h \
  2843. "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) || \
  2844. (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  2845. die "ERROR: MinGW runtime version must be >= 3.15."
  2846. add_cppflags -U__STRICT_ANSI__
  2847. elif check_func_headers stdlib.h _get_doserrno; then
  2848. libc_type=msvcrt
  2849. add_compat strtod.o strtod=avpriv_strtod
  2850. add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \
  2851. _snprintf=avpriv_snprintf \
  2852. vsnprintf=avpriv_vsnprintf
  2853. elif check_cpp_condition stddef.h "defined __KLIBC__"; then
  2854. libc_type=klibc
  2855. fi
  2856. test -n "$libc_type" && enable $libc_type
  2857. # hacks for compiler/libc/os combinations
  2858. if enabled_all tms470 glibc; then
  2859. CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
  2860. add_cppflags -D__USER_LABEL_PREFIX__=
  2861. add_cppflags -D__builtin_memset=memset
  2862. add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
  2863. add_cflags -pds=48 # incompatible redefinition of macro
  2864. fi
  2865. if enabled_all ccc glibc; then
  2866. add_ldflags -Wl,-z,now # calls to libots crash without this
  2867. fi
  2868. esc(){
  2869. echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
  2870. }
  2871. echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $LIBAV_CONFIGURATION)" >config.fate
  2872. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
  2873. set_default $PATHS_LIST
  2874. set_default nm
  2875. # we need to build at least one lib type
  2876. if ! enabled_any static shared; then
  2877. cat <<EOF
  2878. At least one library type must be built.
  2879. Specify --enable-static to build the static libraries or --enable-shared to
  2880. build the shared libraries as well. To only build the shared libraries specify
  2881. --disable-static in addition to --enable-shared.
  2882. EOF
  2883. exit 1;
  2884. fi
  2885. die_license_disabled() {
  2886. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  2887. }
  2888. die_license_disabled gpl libcdio
  2889. die_license_disabled gpl libx264
  2890. die_license_disabled gpl libxavs
  2891. die_license_disabled gpl libxvid
  2892. die_license_disabled gpl x11grab
  2893. die_license_disabled nonfree libfaac
  2894. die_license_disabled nonfree libfdk_aac
  2895. die_license_disabled nonfree openssl
  2896. die_license_disabled version3 libopencore_amrnb
  2897. die_license_disabled version3 libopencore_amrwb
  2898. die_license_disabled version3 libvo_aacenc
  2899. die_license_disabled version3 libvo_amrwbenc
  2900. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  2901. disabled optimizations || check_cflags -fomit-frame-pointer
  2902. enable_pic() {
  2903. enable pic
  2904. add_cppflags -DPIC
  2905. add_cflags -fPIC
  2906. add_asflags -fPIC
  2907. }
  2908. enabled pic && enable_pic
  2909. check_cc <<EOF || die "Symbol mangling check failed."
  2910. int ff_extern;
  2911. EOF
  2912. sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  2913. extern_prefix=${sym%%ff_extern*}
  2914. check_cc <<EOF && enable_weak inline_asm
  2915. void foo(void) { __asm__ volatile ("" ::); }
  2916. EOF
  2917. _restrict=
  2918. for restrict_keyword in restrict __restrict__ __restrict; do
  2919. check_cc <<EOF && _restrict=$restrict_keyword && break
  2920. void foo(char * $restrict_keyword p);
  2921. EOF
  2922. done
  2923. check_cc <<EOF && enable attribute_packed
  2924. struct { int x; } __attribute__((packed)) x;
  2925. EOF
  2926. check_cc <<EOF && enable attribute_may_alias
  2927. union { int x; } __attribute__((may_alias)) x;
  2928. EOF
  2929. check_cc <<EOF || die "endian test failed"
  2930. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  2931. EOF
  2932. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  2933. if enabled alpha; then
  2934. check_cflags -mieee
  2935. elif enabled arm; then
  2936. check_cpp_condition stddef.h "defined __thumb__" && enable_weak thumb
  2937. enabled thumb && check_cflags -mthumb || check_cflags -marm
  2938. nogas=die
  2939. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  2940. enable vfp_args
  2941. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
  2942. case "${cross_prefix:-$cc}" in
  2943. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  2944. *) check_ld <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  2945. __asm__ (".eabi_attribute 28, 1");
  2946. int main(void) { return 0; }
  2947. EOF
  2948. esac
  2949. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  2950. fi
  2951. enabled armv5te && check_insn armv5te 'qadd r0, r0, r0'
  2952. enabled armv6 && check_insn armv6 'sadd16 r0, r0, r0'
  2953. enabled armv6t2 && check_insn armv6t2 'movt r0, #0'
  2954. enabled neon && check_insn neon 'vadd.i16 q0, q0, q0'
  2955. enabled vfp && check_insn vfp 'fadds s0, s0, s0'
  2956. enabled vfpv3 && check_insn vfpv3 'vmov.f32 s0, #1.0'
  2957. [ $target_os = linux ] ||
  2958. map 'enabled_any ${v}_external ${v}_inline || disable $v' \
  2959. $ARCH_EXT_LIST_ARM
  2960. check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
  2961. check_inline_asm asm_mod_y '"vmul.i32 d0, d0, %y0" :: "x"(0)'
  2962. enabled_all armv6t2 shared !pic && enable_pic
  2963. elif enabled mips; then
  2964. check_inline_asm loongson '"dmult.g $1, $2, $3"'
  2965. elif enabled parisc; then
  2966. if enabled gcc; then
  2967. case $($cc -dumpversion) in
  2968. 4.[3-8].*) check_cflags -fno-optimize-sibling-calls ;;
  2969. esac
  2970. fi
  2971. elif enabled ppc; then
  2972. enable local_aligned_8 local_aligned_16
  2973. check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  2974. check_inline_asm ibm_asm '"add 0, 0, 0"'
  2975. check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
  2976. check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  2977. # AltiVec flags: The FSF version of GCC differs from the Apple version
  2978. if enabled altivec; then
  2979. nogas=warn
  2980. check_cflags -maltivec -mabi=altivec &&
  2981. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  2982. check_cflags -faltivec
  2983. # check if our compiler supports Motorola AltiVec C API
  2984. check_cc <<EOF || disable altivec
  2985. $inc_altivec_h
  2986. int main(void) {
  2987. vector signed int v1 = (vector signed int) { 0 };
  2988. vector signed int v2 = (vector signed int) { 1 };
  2989. v1 = vec_add(v1, v2);
  2990. return 0;
  2991. }
  2992. EOF
  2993. enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
  2994. fi
  2995. elif enabled sparc; then
  2996. enabled vis && check_inline_asm vis '"pdist %f0, %f0, %f0"'
  2997. elif enabled x86; then
  2998. check_builtin rdtsc intrin.h "__rdtsc()"
  2999. check_builtin mm_empty mmintrin.h "_mm_empty()"
  3000. enable local_aligned_8 local_aligned_16
  3001. # check whether EBP is available on x86
  3002. # As 'i' is stored on the stack, this program will crash
  3003. # if the base pointer is used to access it because the
  3004. # base pointer is cleared in the inline assembly code.
  3005. check_exec_crash <<EOF && enable ebp_available
  3006. volatile int i=0;
  3007. __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
  3008. return i;
  3009. EOF
  3010. # check whether EBX is available on x86
  3011. check_inline_asm ebx_available '""::"b"(0)' &&
  3012. check_inline_asm ebx_available '"":::"%ebx"'
  3013. # check whether xmm clobbers are supported
  3014. check_inline_asm xmm_clobbers '"":::"%xmm0"'
  3015. # check whether binutils is new enough to compile SSSE3/MMXEXT
  3016. enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
  3017. enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
  3018. if ! disabled_any asm mmx yasm; then
  3019. if check_cmd $yasmexe --version; then
  3020. enabled x86_64 && yasm_extra="-m amd64"
  3021. yasm_debug="-g dwarf2"
  3022. elif check_cmd nasm -v; then
  3023. yasmexe=nasm
  3024. yasm_debug="-g -F dwarf"
  3025. enabled x86_64 && test "$objformat" = elf && objformat=elf64
  3026. fi
  3027. YASMFLAGS="-f $objformat $yasm_extra"
  3028. enabled pic && append YASMFLAGS "-DPIC"
  3029. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  3030. case "$objformat" in
  3031. elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
  3032. esac
  3033. check_yasm "vextractf128 xmm0, ymm0, 0" && enable yasm ||
  3034. die "yasm not found, use --disable-yasm for a crippled build"
  3035. check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
  3036. check_yasm "CPU amdnop" && enable cpunop
  3037. fi
  3038. case "$cpu" in
  3039. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  3040. disable fast_clz
  3041. ;;
  3042. esac
  3043. fi
  3044. if enabled asm; then
  3045. as=${gas:=$as}
  3046. check_as <<EOF && enable gnu_as || \
  3047. $nogas "GNU assembler not found, install gas-preprocessor"
  3048. .macro m n
  3049. \n: .int 0
  3050. .endm
  3051. m x
  3052. EOF
  3053. fi
  3054. check_ldflags -Wl,--as-needed
  3055. if check_func dlopen; then
  3056. ldl=
  3057. elif check_func dlopen -ldl; then
  3058. ldl=-ldl
  3059. fi
  3060. if ! disabled network; then
  3061. check_type "sys/types.h sys/socket.h" socklen_t
  3062. check_type netdb.h "struct addrinfo"
  3063. check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
  3064. check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
  3065. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  3066. check_type netinet/in.h "struct sockaddr_in6"
  3067. check_type poll.h "struct pollfd"
  3068. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  3069. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  3070. check_type netinet/sctp.h "struct sctp_event_subscribe"
  3071. check_func getaddrinfo $network_extralibs
  3072. check_func getservbyport $network_extralibs
  3073. # Prefer arpa/inet.h over winsock2
  3074. if check_header arpa/inet.h ; then
  3075. check_func closesocket
  3076. elif check_header winsock2.h ; then
  3077. check_func_headers winsock2.h closesocket -lws2 &&
  3078. network_extralibs="-lws2" ||
  3079. { check_func_headers winsock2.h closesocket -lws2_32 &&
  3080. network_extralibs="-lws2_32"; }
  3081. check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
  3082. check_type ws2tcpip.h socklen_t
  3083. check_type ws2tcpip.h "struct addrinfo"
  3084. check_type ws2tcpip.h "struct group_source_req"
  3085. check_type ws2tcpip.h "struct ip_mreq_source"
  3086. check_type ws2tcpip.h "struct ipv6_mreq"
  3087. check_type winsock2.h "struct pollfd"
  3088. check_type ws2tcpip.h "struct sockaddr_in6"
  3089. check_type ws2tcpip.h "struct sockaddr_storage"
  3090. check_struct winsock2.h "struct sockaddr" sa_len
  3091. else
  3092. disable network
  3093. fi
  3094. fi
  3095. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  3096. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  3097. check_func fcntl
  3098. check_func fork
  3099. check_func gethrtime
  3100. check_func getopt
  3101. check_func getrusage
  3102. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  3103. check_func gettimeofday
  3104. check_func inet_aton $network_extralibs
  3105. check_func isatty
  3106. check_func localtime_r
  3107. check_func ${malloc_prefix}memalign && enable memalign
  3108. check_func mkstemp
  3109. check_func mmap
  3110. check_func mprotect
  3111. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  3112. check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
  3113. check_func setrlimit
  3114. check_func strerror_r
  3115. check_func strptime
  3116. check_func strtok_r
  3117. check_func sched_getaffinity
  3118. check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
  3119. check_builtin machine_rw_barrier mbarrier.h "__machine_rw_barrier()"
  3120. check_builtin MemoryBarrier windows.h "MemoryBarrier()"
  3121. check_func sysconf
  3122. check_func sysctl
  3123. check_func usleep
  3124. check_func_headers io.h setmode
  3125. check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
  3126. check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
  3127. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  3128. check_func_headers windows.h GetProcessAffinityMask
  3129. check_func_headers windows.h GetProcessTimes
  3130. check_func_headers windows.h GetSystemTimeAsFileTime
  3131. check_func_headers windows.h MapViewOfFile
  3132. check_func_headers windows.h SetConsoleTextAttribute
  3133. check_func_headers windows.h Sleep
  3134. check_func_headers windows.h VirtualAlloc
  3135. check_header direct.h
  3136. check_header dlfcn.h
  3137. check_header dxva.h
  3138. check_header dxva2api.h
  3139. check_header io.h
  3140. check_header malloc.h
  3141. check_header poll.h
  3142. check_header sys/mman.h
  3143. check_header sys/param.h
  3144. check_header sys/resource.h
  3145. check_header sys/select.h
  3146. check_header sys/time.h
  3147. check_header unistd.h
  3148. check_header vdpau/vdpau.h
  3149. check_header vdpau/vdpau_x11.h
  3150. check_header VideoDecodeAcceleration/VDADecoder.h
  3151. check_header windows.h
  3152. check_header X11/extensions/XvMClib.h
  3153. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  3154. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  3155. if ! disabled w32threads && ! enabled pthreads; then
  3156. check_func_headers "windows.h process.h" _beginthreadex && enable w32threads
  3157. fi
  3158. # check for some common methods of building with pthread support
  3159. # do this before the optional library checks as some of them require pthreads
  3160. if ! disabled pthreads && ! enabled w32threads; then
  3161. enable pthreads
  3162. if check_func pthread_create; then
  3163. :
  3164. elif check_func pthread_create -pthread; then
  3165. add_cflags -pthread
  3166. add_extralibs -pthread
  3167. elif check_func pthread_create -pthreads; then
  3168. add_cflags -pthreads
  3169. add_extralibs -pthreads
  3170. elif check_func pthread_create -lpthreadGC2; then
  3171. add_extralibs -lpthreadGC2
  3172. elif ! check_lib pthread.h pthread_create -lpthread; then
  3173. disable pthreads
  3174. fi
  3175. fi
  3176. for thread in $THREADS_LIST; do
  3177. if enabled $thread; then
  3178. test -n "$thread_type" &&
  3179. die "ERROR: Only one thread type must be selected." ||
  3180. thread_type="$thread"
  3181. fi
  3182. done
  3183. check_lib math.h sin -lm && LIBM="-lm"
  3184. enabled vaapi && require vaapi va/va.h vaInitialize -lva
  3185. atan2f_args=2
  3186. ldexpf_args=2
  3187. powf_args=2
  3188. for func in $MATH_FUNCS; do
  3189. eval check_mathfunc $func \${${func}_args:-1}
  3190. done
  3191. # these are off by default, so fail if requested and not available
  3192. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
  3193. enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
  3194. enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
  3195. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  3196. enabled libfdk_aac && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
  3197. enabled libfreetype && require_pkg_config freetype2 "ft2build.h freetype/freetype.h" FT_Init_FreeType
  3198. enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
  3199. check_lib "${gsm_hdr}" gsm_create -lgsm && break;
  3200. done || die "ERROR: libgsm not found"; }
  3201. enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
  3202. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  3203. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  3204. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  3205. enabled libopencv && require_pkg_config opencv opencv/cv.h cvCreateImageHeader
  3206. enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
  3207. enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
  3208. enabled libpulse && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
  3209. enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
  3210. enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
  3211. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  3212. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  3213. enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
  3214. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  3215. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  3216. enabled libvpx && {
  3217. enabled libvpx_vp8_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
  3218. die "ERROR: libvpx decoder version must be >=0.9.1"; }
  3219. enabled libvpx_vp8_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VPX_CQ" -lvpx ||
  3220. die "ERROR: libvpx encoder version must be >=0.9.6"; }
  3221. enabled libvpx_vp9_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_vp9_dx" -lvpx || disable libvpx_vp9_decoder; }
  3222. enabled libvpx_vp9_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_vp9_cx" -lvpx || disable libvpx_vp9_encoder; } }
  3223. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
  3224. { check_cpp_condition x264.h "X264_BUILD >= 118" ||
  3225. die "ERROR: libx264 version must be >= 0.118."; }
  3226. enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
  3227. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  3228. enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
  3229. check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
  3230. check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
  3231. die "ERROR: openssl not found"; }
  3232. if enabled gnutls; then
  3233. { check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
  3234. { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
  3235. fi
  3236. # libdc1394 check
  3237. if enabled libdc1394; then
  3238. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  3239. enable libdc1394_2; } ||
  3240. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  3241. enable libdc1394_1; } ||
  3242. die "ERROR: No version of libdc1394 found "
  3243. fi
  3244. if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
  3245. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  3246. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
  3247. enable sdl
  3248. fi
  3249. texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
  3250. check_header linux/fb.h
  3251. check_header linux/videodev2.h
  3252. check_struct linux/videodev2.h "struct v4l2_frmivalenum" discrete
  3253. check_header sys/videoio.h
  3254. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  3255. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  3256. # w32api 3.12 had it defined wrong
  3257. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  3258. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  3259. { check_header dev/bktr/ioctl_meteor.h &&
  3260. check_header dev/bktr/ioctl_bt848.h; } ||
  3261. { check_header machine/ioctl_meteor.h &&
  3262. check_header machine/ioctl_bt848.h; } ||
  3263. { check_header dev/video/meteor/ioctl_meteor.h &&
  3264. check_header dev/video/bktr/ioctl_bt848.h; } ||
  3265. check_header dev/ic/bt8xx.h
  3266. check_header sndio.h
  3267. check_header sys/soundcard.h
  3268. check_header soundcard.h
  3269. enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  3270. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack &&
  3271. check_func jack_port_get_latency_range -ljack
  3272. enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
  3273. if enabled libcdio; then
  3274. 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
  3275. fi
  3276. enabled x11grab &&
  3277. require X11 X11/Xlib.h XOpenDisplay -lX11 &&
  3278. require Xext X11/extensions/XShm.h XShmCreateImage -lXext &&
  3279. require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
  3280. enabled vdpau &&
  3281. check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  3282. disable vdpau
  3283. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  3284. # add some useful compiler flags if supported
  3285. check_cflags -Wdeclaration-after-statement
  3286. check_cflags -Wall
  3287. check_cflags -Wno-parentheses
  3288. check_cflags -Wno-switch
  3289. check_cflags -Wno-format-zero-length
  3290. check_cflags -Wdisabled-optimization
  3291. check_cflags -Wpointer-arith
  3292. check_cflags -Wredundant-decls
  3293. check_cflags -Wno-pointer-sign
  3294. check_cflags -Wcast-qual
  3295. check_cflags -Wwrite-strings
  3296. check_cflags -Wtype-limits
  3297. check_cflags -Wundef
  3298. check_cflags -Wmissing-prototypes
  3299. check_cflags -Wstrict-prototypes
  3300. enabled extra_warnings && check_cflags -Winline
  3301. # add some linker flags
  3302. check_ldflags -Wl,--warn-common
  3303. check_ldflags -Wl,-rpath-link=libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
  3304. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  3305. enabled xmm_clobber_test &&
  3306. check_ldflags -Wl,--wrap,avcodec_open2 \
  3307. -Wl,--wrap,avcodec_decode_audio4 \
  3308. -Wl,--wrap,avcodec_decode_video2 \
  3309. -Wl,--wrap,avcodec_decode_subtitle2 \
  3310. -Wl,--wrap,avcodec_encode_audio2 \
  3311. -Wl,--wrap,avcodec_encode_video \
  3312. -Wl,--wrap,avcodec_encode_subtitle \
  3313. -Wl,--wrap,sws_scale ||
  3314. disable xmm_clobber_test
  3315. echo "X{};" > $TMPV
  3316. if test_ldflags -Wl,--version-script,$TMPV; then
  3317. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  3318. check_cc <<EOF && enable symver_asm_label
  3319. void ff_foo(void) __asm__ ("av_foo@VERSION");
  3320. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  3321. EOF
  3322. check_cc <<EOF && enable symver_gnu_asm
  3323. __asm__(".symver ff_foo,av_foo@VERSION");
  3324. void ff_foo(void) {}
  3325. EOF
  3326. fi
  3327. if [ -z "$optflags" ]; then
  3328. if enabled small; then
  3329. optflags=$cflags_size
  3330. elif enabled optimizations; then
  3331. optflags=$cflags_speed
  3332. else
  3333. optflags=$cflags_noopt
  3334. fi
  3335. fi
  3336. check_optflags(){
  3337. check_cflags "$@"
  3338. enabled lto && check_ldflags "$@"
  3339. }
  3340. if enabled lto; then
  3341. test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
  3342. check_cflags -flto
  3343. check_ldflags -flto $cpuflags
  3344. fi
  3345. check_optflags $optflags
  3346. check_optflags -fno-math-errno
  3347. check_optflags -fno-signed-zeros
  3348. if enabled icc; then
  3349. # Just warnings, no remarks
  3350. check_cflags -w1
  3351. # -wd: Disable following warnings
  3352. # 144, 167, 556: -Wno-pointer-sign
  3353. # 1292: attribute "foo" ignored
  3354. # 1419: external declaration in primary source file
  3355. # 10006: ignoring unknown option -fno-signed-zeros
  3356. # 10148: ignoring unknown option -Wno-parentheses
  3357. # 10156: ignoring option '-W'; no argument required
  3358. check_cflags -wd144,167,556,1292,1419,10006,10148,10156
  3359. # 11030: Warning unknown option --as-needed
  3360. # 10156: ignoring option '-export'; no argument required
  3361. check_ldflags -wd10156,11030
  3362. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  3363. enable ebp_available
  3364. if enabled x86_32; then
  3365. icc_version=$($cc -dumpversion)
  3366. test ${icc_version%%.*} -ge 11 &&
  3367. check_cflags -falign-stack=maintain-16-byte ||
  3368. disable aligned_stack
  3369. fi
  3370. elif enabled ccc; then
  3371. # disable some annoying warnings
  3372. add_cflags -msg_disable bitnotint
  3373. add_cflags -msg_disable mixfuncvoid
  3374. add_cflags -msg_disable nonstandcast
  3375. add_cflags -msg_disable unsupieee
  3376. elif enabled gcc; then
  3377. check_optflags -fno-tree-vectorize
  3378. check_cflags -Werror=implicit-function-declaration
  3379. check_cflags -Werror=missing-prototypes
  3380. check_cflags -Werror=return-type
  3381. check_cflags -Werror=declaration-after-statement
  3382. check_cflags -Werror=vla
  3383. elif enabled llvm_gcc; then
  3384. check_cflags -mllvm -stack-alignment=16
  3385. elif enabled clang; then
  3386. check_cflags -mllvm -stack-alignment=16
  3387. check_cflags -Qunused-arguments
  3388. check_cflags -Werror=implicit-function-declaration
  3389. check_cflags -Werror=missing-prototypes
  3390. check_cflags -Werror=return-type
  3391. elif enabled armcc; then
  3392. # 2523: use of inline assembler is deprecated
  3393. add_cflags -W${armcc_opt},--diag_suppress=2523
  3394. add_cflags -W${armcc_opt},--diag_suppress=1207
  3395. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  3396. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  3397. add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
  3398. add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
  3399. elif enabled tms470; then
  3400. add_cflags -pds=824 -pds=837
  3401. elif enabled pathscale; then
  3402. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  3403. elif enabled msvc; then
  3404. enabled x86_32 && disable aligned_stack
  3405. fi
  3406. case $target_os in
  3407. osf1)
  3408. enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
  3409. ;;
  3410. plan9)
  3411. add_cppflags -Dmain=plan9_main
  3412. ;;
  3413. esac
  3414. enabled_any $THREADS_LIST && enable threads
  3415. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  3416. check_deps $CONFIG_LIST \
  3417. $CONFIG_EXTRA \
  3418. $HAVE_LIST \
  3419. $ALL_COMPONENTS \
  3420. ! enabled_any memalign posix_memalign aligned_malloc &&
  3421. enabled_any $need_memalign && enable memalign_hack
  3422. echo "install prefix $prefix"
  3423. echo "source path $source_path"
  3424. echo "C compiler $cc"
  3425. echo "ARCH $arch ($cpu)"
  3426. if test "$build_suffix" != ""; then
  3427. echo "build suffix $build_suffix"
  3428. fi
  3429. if test "$extra_version" != ""; then
  3430. echo "version string suffix $extra_version"
  3431. fi
  3432. echo "big-endian ${bigendian-no}"
  3433. echo "runtime cpu detection ${runtime_cpudetect-no}"
  3434. if enabled x86; then
  3435. echo "${yasmexe} ${yasm-no}"
  3436. echo "MMX enabled ${mmx-no}"
  3437. echo "MMXEXT enabled ${mmxext-no}"
  3438. echo "3DNow! enabled ${amd3dnow-no}"
  3439. echo "3DNow! extended enabled ${amd3dnowext-no}"
  3440. echo "SSE enabled ${sse-no}"
  3441. echo "SSSE3 enabled ${ssse3-no}"
  3442. echo "AVX enabled ${avx-no}"
  3443. echo "FMA4 enabled ${fma4-no}"
  3444. echo "CMOV enabled ${cmov-no}"
  3445. echo "CMOV is fast ${fast_cmov-no}"
  3446. echo "EBX available ${ebx_available-no}"
  3447. echo "EBP available ${ebp_available-no}"
  3448. fi
  3449. if enabled arm; then
  3450. echo "ARMv5TE enabled ${armv5te-no}"
  3451. echo "ARMv6 enabled ${armv6-no}"
  3452. echo "ARMv6T2 enabled ${armv6t2-no}"
  3453. echo "VFP enabled ${vfp-no}"
  3454. echo "NEON enabled ${neon-no}"
  3455. fi
  3456. if enabled ppc; then
  3457. echo "AltiVec enabled ${altivec-no}"
  3458. echo "PPC 4xx optimizations ${ppc4xx-no}"
  3459. echo "dcbzl available ${dcbzl-no}"
  3460. fi
  3461. if enabled sparc; then
  3462. echo "VIS enabled ${vis-no}"
  3463. fi
  3464. echo "debug symbols ${debug-no}"
  3465. echo "optimize for size ${small-no}"
  3466. echo "optimizations ${optimizations-no}"
  3467. echo "static ${static-no}"
  3468. echo "shared ${shared-no}"
  3469. echo "new filter support ${avfilter-no}"
  3470. echo "network support ${network-no}"
  3471. echo "threading support ${thread_type-no}"
  3472. echo "safe bitstream reader ${safe_bitstream_reader-no}"
  3473. echo "SDL support ${sdl-no}"
  3474. test -n "$random_seed" &&
  3475. echo "random seed ${random_seed}"
  3476. echo
  3477. echo "External libraries:"
  3478. print_enabled '' $EXTERNAL_LIBRARY_LIST | print_3_columns
  3479. echo
  3480. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  3481. echo "Enabled ${type}s:"
  3482. eval list=\$$(toupper $type)_LIST
  3483. print_enabled '_*' $list | print_3_columns
  3484. echo
  3485. done
  3486. license="LGPL version 2.1 or later"
  3487. if enabled nonfree; then
  3488. license="nonfree and unredistributable"
  3489. elif enabled gplv3; then
  3490. license="GPL version 3 or later"
  3491. elif enabled lgplv3; then
  3492. license="LGPL version 3 or later"
  3493. elif enabled gpl; then
  3494. license="GPL version 2 or later"
  3495. fi
  3496. echo "License: $license"
  3497. echo "Creating config.mak and config.h..."
  3498. test -e Makefile || $ln_s "$source_path/Makefile" .
  3499. config_files="$TMPH config.mak"
  3500. cat > config.mak <<EOF
  3501. # Automatically generated by configure - do not modify!
  3502. LIBAV_CONFIGURATION=$LIBAV_CONFIGURATION
  3503. prefix=$prefix
  3504. LIBDIR=\$(DESTDIR)$libdir
  3505. SHLIBDIR=\$(DESTDIR)$shlibdir
  3506. INCDIR=\$(DESTDIR)$incdir
  3507. BINDIR=\$(DESTDIR)$bindir
  3508. DATADIR=\$(DESTDIR)$datadir
  3509. MANDIR=\$(DESTDIR)$mandir
  3510. SRC_PATH=$source_path
  3511. CC_IDENT=$cc_ident
  3512. ARCH=$arch
  3513. CC=$cc
  3514. AS=$as
  3515. LD=$ld
  3516. DEPCC=$dep_cc
  3517. DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
  3518. DEPAS=$as
  3519. DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
  3520. YASM=$yasmexe
  3521. DEPYASM=$yasmexe
  3522. AR=$ar
  3523. ARFLAGS=$arflags
  3524. AR_O=$ar_o
  3525. RANLIB=$ranlib
  3526. LN_S=$ln_s
  3527. CPPFLAGS=$CPPFLAGS
  3528. CFLAGS=$CFLAGS
  3529. ASFLAGS=$ASFLAGS
  3530. AS_C=$AS_C
  3531. AS_O=$AS_O
  3532. CC_C=$CC_C
  3533. CC_E=$CC_E
  3534. CC_O=$CC_O
  3535. LD_O=$LD_O
  3536. LD_LIB=$LD_LIB
  3537. LD_PATH=$LD_PATH
  3538. DLLTOOL=$dlltool
  3539. LDFLAGS=$LDFLAGS
  3540. LDFLAGS-avserver=$AVSERVERLDFLAGS
  3541. SHFLAGS=$(echo $($ldflags_filter $SHFLAGS))
  3542. YASMFLAGS=$YASMFLAGS
  3543. BUILDSUF=$build_suffix
  3544. FULLNAME=$FULLNAME
  3545. LIBPREF=$LIBPREF
  3546. LIBSUF=$LIBSUF
  3547. LIBNAME=$LIBNAME
  3548. SLIBPREF=$SLIBPREF
  3549. SLIBSUF=$SLIBSUF
  3550. EXESUF=$EXESUF
  3551. EXTRA_VERSION=$extra_version
  3552. CCDEP=$CCDEP
  3553. CCDEP_FLAGS=$CCDEP_FLAGS
  3554. ASDEP=$ASDEP
  3555. ASDEP_FLAGS=$ASDEP_FLAGS
  3556. CC_DEPFLAGS=$CC_DEPFLAGS
  3557. AS_DEPFLAGS=$AS_DEPFLAGS
  3558. HOSTCC=$host_cc
  3559. HOSTLD=$host_ld
  3560. HOSTCFLAGS=$host_cflags
  3561. HOSTCPPFLAGS=$host_cppflags
  3562. HOSTEXESUF=$HOSTEXESUF
  3563. HOSTLDFLAGS=$host_ldflags
  3564. HOSTLIBS=$host_libs
  3565. DEPHOSTCC=$host_cc
  3566. DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
  3567. HOSTCCDEP=$HOSTCCDEP
  3568. HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
  3569. HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
  3570. HOSTCC_C=$HOSTCC_C
  3571. HOSTCC_O=$HOSTCC_O
  3572. HOSTLD_O=$HOSTLD_O
  3573. TARGET_EXEC=$target_exec
  3574. TARGET_PATH=$target_path
  3575. LIBS-avplay=$sdl_libs
  3576. CFLAGS-avplay=$sdl_cflags
  3577. ZLIB=$($ldflags_filter -lz)
  3578. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  3579. EXTRALIBS=$extralibs
  3580. COMPAT_OBJS=$compat_objs
  3581. EXEOBJS=$exeobjs
  3582. INSTALL=install
  3583. LIBTARGET=${LIBTARGET}
  3584. SLIBNAME=${SLIBNAME}
  3585. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  3586. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  3587. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  3588. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  3589. SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
  3590. SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
  3591. SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
  3592. SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
  3593. SAMPLES:=${samples:-\$(LIBAV_SAMPLES)}
  3594. EOF
  3595. get_version(){
  3596. lcname=lib${1}
  3597. name=$(toupper $lcname)
  3598. file=$source_path/$lcname/version.h
  3599. eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
  3600. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  3601. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  3602. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  3603. eval echo "${lcname}_VERSION_MINOR=\$${name}_VERSION_MINOR" >> config.mak
  3604. }
  3605. map 'get_version $v' $LIBRARY_LIST
  3606. cat > $TMPH <<EOF
  3607. /* Automatically generated by configure - do not modify! */
  3608. #ifndef LIBAV_CONFIG_H
  3609. #define LIBAV_CONFIG_H
  3610. #define LIBAV_CONFIGURATION "$(c_escape $LIBAV_CONFIGURATION)"
  3611. #define LIBAV_LICENSE "$(c_escape $license)"
  3612. #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  3613. #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
  3614. #define restrict $_restrict
  3615. #define EXTERN_PREFIX "${extern_prefix}"
  3616. #define EXTERN_ASM ${extern_prefix}
  3617. #define SLIBSUF "$SLIBSUF"
  3618. EOF
  3619. test -n "$malloc_prefix" &&
  3620. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  3621. if enabled yasm; then
  3622. append config_files $TMPASM
  3623. printf '' >$TMPASM
  3624. fi
  3625. print_config ARCH_ "$config_files" $ARCH_LIST
  3626. print_config HAVE_ "$config_files" $HAVE_LIST
  3627. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  3628. $CONFIG_EXTRA \
  3629. $ALL_COMPONENTS \
  3630. echo "#endif /* LIBAV_CONFIG_H */" >> $TMPH
  3631. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  3632. cp_if_changed $TMPH config.h
  3633. touch .config
  3634. enabled yasm && cp_if_changed $TMPASM config.asm
  3635. cat > $TMPH <<EOF
  3636. /* Generated by ffconf */
  3637. #ifndef AVUTIL_AVCONFIG_H
  3638. #define AVUTIL_AVCONFIG_H
  3639. EOF
  3640. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  3641. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  3642. cp_if_changed $TMPH libavutil/avconfig.h
  3643. test -n "$WARNINGS" && printf "\n$WARNINGS"
  3644. # build pkg-config files
  3645. pkgconfig_generate(){
  3646. name=$1
  3647. shortname=${name#lib}${build_suffix}
  3648. comment=$2
  3649. version=$3
  3650. libs=$4
  3651. requires=$5
  3652. enabled ${name#lib} || return 0
  3653. mkdir -p $name
  3654. cat <<EOF > $name/$name.pc
  3655. prefix=$prefix
  3656. exec_prefix=\${prefix}
  3657. libdir=$libdir
  3658. includedir=$incdir
  3659. Name: $name
  3660. Description: $comment
  3661. Version: $version
  3662. Requires: $(enabled shared || echo $requires)
  3663. Requires.private: $(enabled shared && echo $requires)
  3664. Conflicts:
  3665. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  3666. Libs.private: $(enabled shared && echo $libs)
  3667. Cflags: -I\${includedir}
  3668. EOF
  3669. cat <<EOF > $name/$name-uninstalled.pc
  3670. prefix=
  3671. exec_prefix=
  3672. libdir=\${pcfiledir}
  3673. includedir=${source_path}
  3674. Name: $name
  3675. Description: $comment
  3676. Version: $version
  3677. Requires: $requires
  3678. Conflicts:
  3679. Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
  3680. Cflags: -I\${includedir}
  3681. EOF
  3682. }
  3683. pkgconfig_generate libavutil "Libav utility library" "$LIBAVUTIL_VERSION" "$LIBM"
  3684. pkgconfig_generate libavcodec "Libav codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3685. pkgconfig_generate libavformat "Libav container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  3686. pkgconfig_generate libavdevice "Libav device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
  3687. pkgconfig_generate libavfilter "Libav video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3688. pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3689. pkgconfig_generate libswscale "Libav image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"