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.

3085 lines
87KB

  1. #!/bin/sh
  2. #
  3. # FFmpeg configure script
  4. #
  5. # Copyright (c) 2000-2002 Fabrice Bellard
  6. # Copyright (c) 2005-2008 Diego Biurrun
  7. # Copyright (c) 2005-2008 Mans Rullgard
  8. #
  9. # Prevent locale nonsense from breaking basic text processing.
  10. LC_ALL=C
  11. export LC_ALL
  12. # make sure we are running under a compatible shell
  13. # try to make this part work with most shells
  14. try_exec(){
  15. echo "Trying shell $1"
  16. type "$1" > /dev/null 2>&1 && exec "$@"
  17. }
  18. unset foo
  19. (: ${foo%%bar}) 2> /dev/null
  20. E1="$?"
  21. (: ${foo?}) 2> /dev/null
  22. E2="$?"
  23. if test "$E1" != 0 || test "$E2" = 0; then
  24. echo "Broken shell detected. Trying alternatives."
  25. export FF_CONF_EXEC
  26. if test "0$FF_CONF_EXEC" -lt 1; then
  27. FF_CONF_EXEC=1
  28. try_exec bash "$0" "$@"
  29. fi
  30. if test "0$FF_CONF_EXEC" -lt 2; then
  31. FF_CONF_EXEC=2
  32. try_exec ksh "$0" "$@"
  33. fi
  34. if test "0$FF_CONF_EXEC" -lt 3; then
  35. FF_CONF_EXEC=3
  36. try_exec /usr/xpg4/bin/sh "$0" "$@"
  37. fi
  38. echo "No compatible shell script interpreter found."
  39. echo "This configure script requires a POSIX-compatible shell"
  40. echo "such as bash or ksh."
  41. echo "THIS IS NOT A BUG IN FFMPEG, DO NOT REPORT IT AS SUCH."
  42. echo "Instead, install a working POSIX-compatible shell."
  43. echo "Disabling this configure test will create a broken FFmpeg."
  44. if test "$BASH_VERSION" = '2.04.0(1)-release'; then
  45. echo "This bash version ($BASH_VERSION) is broken on your platform."
  46. echo "Upgrade to a later version if available."
  47. fi
  48. exit 1
  49. fi
  50. show_help(){
  51. cat <<EOF
  52. Usage: configure [options]
  53. Options: [defaults in brackets after descriptions]
  54. Standard options:
  55. --help print this message
  56. --logfile=FILE log tests and output to FILE [config.log]
  57. --disable-logging do not log configure debug information
  58. --prefix=PREFIX install in PREFIX [$prefix]
  59. --bindir=DIR install binaries in DIR [PREFIX/bin]
  60. --datadir=DIR install data files in DIR [PREFIX/share/ffmpeg]
  61. --libdir=DIR install libs in DIR [PREFIX/lib]
  62. --shlibdir=DIR install shared libs in DIR [PREFIX/lib]
  63. --incdir=DIR install includes in DIR [PREFIX/include]
  64. --mandir=DIR install man page in DIR [PREFIX/share/man]
  65. Configuration options:
  66. --disable-static do not build static libraries [no]
  67. --enable-shared build shared libraries [no]
  68. --enable-gpl allow use of GPL code, the resulting libs
  69. and binaries will be under GPL [no]
  70. --enable-version3 upgrade (L)GPL to version 3 [no]
  71. --enable-nonfree allow use of nonfree code, the resulting libs
  72. and binaries will be unredistributable [no]
  73. --disable-doc do not build documentation
  74. --disable-ffmpeg disable ffmpeg build
  75. --disable-ffplay disable ffplay build
  76. --disable-ffprobe disable ffprobe build
  77. --disable-ffserver disable ffserver build
  78. --disable-avdevice disable libavdevice build
  79. --disable-avcodec disable libavcodec build
  80. --disable-avformat disable libavformat build
  81. --disable-swscale disable libswscale build
  82. --enable-postproc enable GPLed postprocessing support [no]
  83. --disable-avfilter disable video filter support [no]
  84. --enable-avfilter-lavf video filters dependent on avformat [no]
  85. --disable-pthreads disable pthreads [auto]
  86. --enable-w32threads use Win32 threads [no]
  87. --enable-x11grab enable X11 grabbing [no]
  88. --disable-network disable network support [no]
  89. --disable-mpegaudio-hp faster (but less accurate) MPEG audio decoding [no]
  90. --enable-gray enable full grayscale support (slower color)
  91. --disable-swscale-alpha disable alpha channel support in swscale
  92. --disable-fastdiv disable table-based division
  93. --enable-small optimize for size instead of speed
  94. --disable-aandct disable AAN DCT code
  95. --disable-dct disable DCT code
  96. --disable-fft disable FFT code
  97. --disable-golomb disable Golomb code
  98. --disable-lpc disable LPC code
  99. --disable-mdct disable MDCT code
  100. --disable-rdft disable RDFT code
  101. --disable-vaapi disable VAAPI code
  102. --disable-vdpau disable VDPAU code
  103. --disable-dxva2 disable DXVA2 code
  104. --enable-runtime-cpudetect detect cpu capabilities at runtime (bigger binary)
  105. --enable-hardcoded-tables use hardcoded tables instead of runtime generation
  106. --enable-memalign-hack emulate memalign, interferes with memory debuggers
  107. --disable-everything disable all components listed below
  108. --disable-encoder=NAME disable encoder NAME
  109. --enable-encoder=NAME enable encoder NAME
  110. --disable-encoders disable all encoders
  111. --disable-decoder=NAME disable decoder NAME
  112. --enable-decoder=NAME enable decoder NAME
  113. --disable-decoders disable all decoders
  114. --disable-hwaccel=NAME disable hwaccel NAME
  115. --enable-hwaccel=NAME enable hwaccel NAME
  116. --disable-hwaccels disable all hwaccels
  117. --disable-muxer=NAME disable muxer NAME
  118. --enable-muxer=NAME enable muxer NAME
  119. --disable-muxers disable all muxers
  120. --disable-demuxer=NAME disable demuxer NAME
  121. --enable-demuxer=NAME enable demuxer NAME
  122. --disable-demuxers disable all demuxers
  123. --enable-parser=NAME enable parser NAME
  124. --disable-parser=NAME disable parser NAME
  125. --disable-parsers disable all parsers
  126. --enable-bsf=NAME enable bitstream filter NAME
  127. --disable-bsf=NAME disable bitstream filter NAME
  128. --disable-bsfs disable all bitstream filters
  129. --enable-protocol=NAME enable protocol NAME
  130. --disable-protocol=NAME disable protocol NAME
  131. --disable-protocols disable all protocols
  132. --disable-indev=NAME disable input device NAME
  133. --disable-outdev=NAME disable output device NAME
  134. --disable-indevs disable input devices
  135. --disable-outdevs disable output devices
  136. --disable-devices disable all devices
  137. --enable-filter=NAME enable filter NAME
  138. --disable-filter=NAME disable filter NAME
  139. --disable-filters disable all filters
  140. --list-decoders show all available decoders
  141. --list-encoders show all available encoders
  142. --list-hwaccels show all available hardware accelerators
  143. --list-muxers show all available muxers
  144. --list-demuxers show all available demuxers
  145. --list-parsers show all available parsers
  146. --list-protocols show all available protocols
  147. --list-bsfs show all available bitstream filters
  148. --list-indevs show all available input devices
  149. --list-outdevs show all available output devices
  150. --list-filters show all available filters
  151. External library support:
  152. --enable-avisynth enable reading of AVISynth script files [no]
  153. --enable-bzlib enable bzlib [autodetect]
  154. --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
  155. --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
  156. --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
  157. and libraw1394 [no]
  158. --enable-libdirac enable Dirac support via libdirac [no]
  159. --enable-libfaac enable FAAC support via libfaac [no]
  160. --enable-libgsm enable GSM support via libgsm [no]
  161. --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
  162. --enable-libnut enable NUT (de)muxing via libnut,
  163. native (de)muxer exists [no]
  164. --enable-libopenjpeg enable JPEG 2000 decoding via OpenJPEG [no]
  165. --enable-librtmp enable RTMP[E] support via librtmp [no]
  166. --enable-libschroedinger enable Dirac support via libschroedinger [no]
  167. --enable-libspeex enable Speex decoding via libspeex [no]
  168. --enable-libtheora enable Theora encoding via libtheora [no]
  169. --enable-libvorbis enable Vorbis encoding via libvorbis,
  170. native implementation exists [no]
  171. --enable-libvpx enable VP8 support via libvpx [no]
  172. --enable-libx264 enable H.264 encoding via x264 [no]
  173. --enable-libxvid enable Xvid encoding via xvidcore,
  174. native MPEG-4/Xvid encoder exists [no]
  175. --enable-mlib enable Sun medialib [no]
  176. --enable-zlib enable zlib [autodetect]
  177. Advanced options (experts only):
  178. --source-path=PATH path to source code [$source_path]
  179. --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
  180. --enable-cross-compile assume a cross-compiler is used
  181. --sysroot=PATH root of cross-build tree
  182. --sysinclude=PATH location of cross-build system headers
  183. --target-os=OS compiler targets OS [$target_os]
  184. --target-exec=CMD command to run executables on target
  185. --target-path=DIR path to view of build directory on target
  186. --nm=NM use nm tool
  187. --ar=AR use archive tool AR [$ar_default]
  188. --as=AS use assembler AS [$as_default]
  189. --cc=CC use C compiler CC [$cc_default]
  190. --ld=LD use linker LD
  191. --host-cc=HOSTCC use host C compiler HOSTCC
  192. --host-cflags=HCFLAGS use HCFLAGS when compiling for host
  193. --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
  194. --host-libs=HLIBS use libs HLIBS when linking for host
  195. --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
  196. --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
  197. --extra-libs=ELIBS add ELIBS [$ELIBS]
  198. --extra-version=STRING version string suffix []
  199. --build-suffix=SUFFIX library name suffix []
  200. --arch=ARCH select architecture [$arch]
  201. --cpu=CPU select the minimum required CPU (affects
  202. instruction selection, may crash on older CPUs)
  203. --disable-asm disable all assembler optimizations
  204. --disable-altivec disable AltiVec optimizations
  205. --disable-amd3dnow disable 3DNow! optimizations
  206. --disable-amd3dnowext disable 3DNow! extended optimizations
  207. --disable-mmx disable MMX optimizations
  208. --disable-mmx2 disable MMX2 optimizations
  209. --disable-sse disable SSE optimizations
  210. --disable-ssse3 disable SSSE3 optimizations
  211. --disable-armv5te disable armv5te optimizations
  212. --disable-armv6 disable armv6 optimizations
  213. --disable-armv6t2 disable armv6t2 optimizations
  214. --disable-armvfp disable ARM VFP optimizations
  215. --disable-iwmmxt disable iwmmxt optimizations
  216. --disable-mmi disable MMI optimizations
  217. --disable-neon disable neon optimizations
  218. --disable-vis disable VIS optimizations
  219. --disable-yasm disable use of yasm assembler
  220. --enable-pic build position-independent code
  221. --malloc-prefix=PFX prefix malloc and related names with PFX
  222. --enable-sram allow use of on-chip SRAM
  223. Developer options (useful when working on FFmpeg itself):
  224. --disable-debug disable debugging symbols
  225. --enable-debug=LEVEL set the debug level [$debuglevel]
  226. --disable-optimizations disable compiler optimizations
  227. --enable-extra-warnings enable more compiler warnings
  228. --disable-stripping disable stripping of executables and shared libraries
  229. --samples=PATH location of test samples for FATE
  230. NOTE: Object files are built at the place where configure is launched.
  231. EOF
  232. exit 0
  233. }
  234. quotes='""'
  235. log(){
  236. echo "$@" >> $logfile
  237. }
  238. log_file(){
  239. log BEGIN $1
  240. pr -n -t $1 >> $logfile
  241. log END $1
  242. }
  243. echolog(){
  244. log "$@"
  245. echo "$@"
  246. }
  247. warn(){
  248. log "WARNING: $*"
  249. WARNINGS="${WARNINGS}WARNING: $*\n"
  250. }
  251. die(){
  252. echolog "$@"
  253. cat <<EOF
  254. If you think configure made a mistake, make sure you are using the latest
  255. version from SVN. If the latest version fails, report the problem to the
  256. ffmpeg-user@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net.
  257. EOF
  258. if disabled logging; then
  259. cat <<EOF
  260. Rerun configure with logging enabled (do not use --disable-logging), and
  261. include the log this produces with your report.
  262. EOF
  263. else
  264. cat <<EOF
  265. Include the log file "$logfile" produced by configure as this will help
  266. solving the problem.
  267. EOF
  268. fi
  269. exit 1
  270. }
  271. # Avoid locale weirdness, besides we really just want to translate ASCII.
  272. toupper(){
  273. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  274. }
  275. tolower(){
  276. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  277. }
  278. c_escape(){
  279. echo "$*" | sed 's/["\\]/\\\0/g'
  280. }
  281. sh_quote(){
  282. v=$(echo "$1" | sed "s/'/'\\\\''/g")
  283. test "$v" = "${v#*[ |&;<>()$\`\\\"\'*?\[\]#~=%]}" || v="'$v'"
  284. echo "$v"
  285. }
  286. filter(){
  287. pat=$1
  288. shift
  289. for v; do
  290. eval "case $v in $pat) echo $v ;; esac"
  291. done
  292. }
  293. map(){
  294. m=$1
  295. shift
  296. for v; do eval $m; done
  297. }
  298. set_all(){
  299. value=$1
  300. shift
  301. for var in $*; do
  302. eval $var=$value
  303. done
  304. }
  305. set_weak(){
  306. value=$1
  307. shift
  308. for var; do
  309. eval : \${$var:=$value}
  310. done
  311. }
  312. pushvar(){
  313. for var in $*; do
  314. eval level=\${${var}_level:=0}
  315. eval ${var}_${level}="\$$var"
  316. eval ${var}_level=$(($level+1))
  317. done
  318. }
  319. popvar(){
  320. for var in $*; do
  321. eval level=\${${var}_level:-0}
  322. test $level = 0 && continue
  323. eval level=$(($level-1))
  324. eval $var="\${${var}_${level}}"
  325. eval ${var}_level=$level
  326. eval unset ${var}_${level}
  327. done
  328. }
  329. enable(){
  330. set_all yes $*
  331. }
  332. disable(){
  333. set_all no $*
  334. }
  335. enable_weak(){
  336. set_weak yes $*
  337. }
  338. disable_weak(){
  339. set_weak no $*
  340. }
  341. enable_safe(){
  342. for var; do
  343. enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  344. done
  345. }
  346. disable_safe(){
  347. for var; do
  348. disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  349. done
  350. }
  351. do_enable_deep(){
  352. for var; do
  353. enabled $var && continue
  354. eval sel="\$${var}_select"
  355. eval sgs="\$${var}_suggest"
  356. pushvar var sgs
  357. enable_deep $sel
  358. popvar sgs
  359. enable_deep_weak $sgs
  360. popvar var
  361. done
  362. }
  363. enable_deep(){
  364. do_enable_deep $*
  365. enable $*
  366. }
  367. enable_deep_weak(){
  368. do_enable_deep $*
  369. enable_weak $*
  370. }
  371. enabled(){
  372. test "${1#!}" = "$1" && op== || op=!=
  373. eval test "x\$${1#!}" $op "xyes"
  374. }
  375. disabled(){
  376. test "${1#!}" = "$1" && op== || op=!=
  377. eval test "x\$${1#!}" $op "xno"
  378. }
  379. enabled_all(){
  380. for opt; do
  381. enabled $opt || return 1
  382. done
  383. }
  384. disabled_all(){
  385. for opt; do
  386. disabled $opt || return 1
  387. done
  388. }
  389. enabled_any(){
  390. for opt; do
  391. enabled $opt && return 0
  392. done
  393. }
  394. disabled_any(){
  395. for opt; do
  396. disabled $opt && return 0
  397. done
  398. return 1
  399. }
  400. set_default(){
  401. for opt; do
  402. eval : \${$opt:=\$${opt}_default}
  403. done
  404. }
  405. is_in(){
  406. value=$1
  407. shift
  408. for var in $*; do
  409. [ $var = $value ] && return 0
  410. done
  411. return 1
  412. }
  413. check_deps(){
  414. for cfg; do
  415. cfg="${cfg#!}"
  416. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  417. disabled ${cfg}_checking && continue
  418. enable ${cfg}_checking
  419. eval dep_all="\$${cfg}_deps"
  420. eval dep_any="\$${cfg}_deps_any"
  421. eval dep_sel="\$${cfg}_select"
  422. eval dep_sgs="\$${cfg}_suggest"
  423. eval dep_ifa="\$${cfg}_if"
  424. eval dep_ifn="\$${cfg}_if_any"
  425. pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  426. check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
  427. popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  428. [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
  429. [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
  430. enabled_all $dep_all || disable $cfg
  431. enabled_any $dep_any || disable $cfg
  432. disabled_any $dep_sel && disable $cfg
  433. if enabled $cfg; then
  434. eval dep_extralibs="\$${cfg}_extralibs"
  435. test -n "$dep_extralibs" && add_extralibs $dep_extralibs
  436. enable_deep $dep_sel
  437. enable_deep_weak $dep_sgs
  438. fi
  439. disable ${cfg}_checking
  440. done
  441. }
  442. print_config(){
  443. pfx=$1
  444. header=$2
  445. makefile=$3
  446. shift 3
  447. for cfg; do
  448. ucname="$(toupper $cfg)"
  449. if enabled $cfg; then
  450. echo "#define ${pfx}${ucname} 1" >> $header
  451. echo "${pfx}${ucname}=yes" >> $makefile
  452. else
  453. echo "#define ${pfx}${ucname} 0" >> $header
  454. echo "!${pfx}${ucname}=yes" >> $makefile
  455. fi
  456. done
  457. }
  458. append(){
  459. var=$1
  460. shift
  461. eval "$var=\"\$$var $*\""
  462. }
  463. prepend(){
  464. var=$1
  465. shift
  466. eval "$var=\"$* \$$var\""
  467. }
  468. add_cppflags(){
  469. append CPPFLAGS $($filter_cppflags "$@")
  470. }
  471. add_cflags(){
  472. append CFLAGS $($filter_cflags "$@")
  473. }
  474. add_asflags(){
  475. append ASFLAGS $($filter_asflags "$@")
  476. }
  477. add_ldflags(){
  478. append LDFLAGS "$@"
  479. }
  480. add_extralibs(){
  481. prepend extralibs "$@"
  482. }
  483. check_cmd(){
  484. log "$@"
  485. "$@" >> $logfile 2>&1
  486. }
  487. check_cc(){
  488. log check_cc "$@"
  489. cat > $TMPC
  490. log_file $TMPC
  491. check_cmd $cc $CPPFLAGS $CFLAGS "$@" -c -o $TMPO $TMPC
  492. }
  493. check_cpp(){
  494. log check_cpp "$@"
  495. cat > $TMPC
  496. log_file $TMPC
  497. check_cmd $cc $CPPFLAGS $CFLAGS "$@" -E -o $TMPO $TMPC
  498. }
  499. check_as(){
  500. log check_as "$@"
  501. cat > $TMPC
  502. log_file $TMPC
  503. check_cmd $as $CPPFLAGS $ASFLAGS "$@" -c -o $TMPO $TMPC
  504. }
  505. check_asm(){
  506. log check_asm "$@"
  507. name="$1"
  508. code="$2"
  509. shift 2
  510. disable $name
  511. check_as "$@" <<EOF && enable $name
  512. void foo(void){ __asm__ volatile($code); }
  513. EOF
  514. }
  515. check_yasm(){
  516. log check_yasm "$@"
  517. echo "$1" > $TMPS
  518. log_file $TMPS
  519. shift 1
  520. check_cmd $yasmexe $YASMFLAGS "$@" -o $TMPO $TMPS
  521. }
  522. check_ld(){
  523. log check_ld "$@"
  524. flags=''
  525. libs=''
  526. for f; do
  527. test "${f}" = "${f#-l}" && flags="$flags $f" || libs="$libs $f"
  528. done
  529. check_cc $($filter_cflags $flags) || return
  530. check_cmd $ld $LDFLAGS $flags -o $TMPE $TMPO $extralibs $libs
  531. }
  532. check_cppflags(){
  533. log check_cppflags "$@"
  534. set -- $($filter_cppflags "$@")
  535. check_cc "$@" <<EOF && append CPPFLAGS "$@"
  536. int x;
  537. EOF
  538. }
  539. check_cflags(){
  540. log check_cflags "$@"
  541. set -- $($filter_cflags "$@")
  542. check_cc "$@" <<EOF && append CFLAGS "$@"
  543. int x;
  544. EOF
  545. }
  546. test_ldflags(){
  547. log test_ldflags "$@"
  548. check_ld "$@" <<EOF
  549. int main(void){ return 0; }
  550. EOF
  551. }
  552. check_ldflags(){
  553. log check_ldflags "$@"
  554. test_ldflags "$@" && add_ldflags "$@"
  555. }
  556. check_header(){
  557. log check_header "$@"
  558. header=$1
  559. shift
  560. disable_safe $header
  561. check_cpp "$@" <<EOF && enable_safe $header
  562. #include <$header>
  563. int x;
  564. EOF
  565. }
  566. check_func(){
  567. log check_func "$@"
  568. func=$1
  569. shift
  570. disable $func
  571. check_ld "$@" <<EOF && enable $func
  572. extern int $func();
  573. int main(void){ $func(); }
  574. EOF
  575. }
  576. check_mathfunc(){
  577. log check_mathfunc "$@"
  578. func=$1
  579. shift
  580. disable $func
  581. check_ld "$@" <<EOF && enable $func
  582. #include <math.h>
  583. float foo(float f) { return $func(f); }
  584. int main(void){ return 0; }
  585. EOF
  586. }
  587. check_func_headers(){
  588. log check_func_headers "$@"
  589. headers=$1
  590. func=$2
  591. shift 2
  592. disable $func
  593. incs=""
  594. for hdr in $headers; do
  595. incs="$incs
  596. #include <$hdr>"
  597. done
  598. check_ld "$@" <<EOF && enable $func && enable_safe $headers
  599. $incs
  600. int main(int argc, char **argv){
  601. return (long) $func;
  602. }
  603. EOF
  604. }
  605. check_cpp_condition(){
  606. log check_cpp_condition "$@"
  607. header=$1
  608. condition=$2
  609. shift 2
  610. check_cpp $($filter_cppflags "$@") <<EOF
  611. #include <$header>
  612. #if !($condition)
  613. #error "unsatisfied condition: $condition"
  614. #endif
  615. EOF
  616. }
  617. check_lib(){
  618. log check_lib "$@"
  619. header="$1"
  620. func="$2"
  621. shift 2
  622. check_header $header && check_func $func "$@" && add_extralibs "$@"
  623. }
  624. check_lib2(){
  625. log check_lib2 "$@"
  626. headers="$1"
  627. func="$2"
  628. shift 2
  629. check_func_headers "$headers" $func "$@" && add_extralibs "$@"
  630. }
  631. check_exec(){
  632. check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
  633. }
  634. check_exec_crash(){
  635. code=$(cat)
  636. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  637. # are safe but may not be available everywhere. Thus we use
  638. # raise(SIGTERM) instead. The check is run in a subshell so we
  639. # can redirect the "Terminated" message from the shell. SIGBUS
  640. # is not defined by standard C so it is used conditionally.
  641. (check_exec "$@") >> $logfile 2>&1 <<EOF
  642. #include <signal.h>
  643. static void sighandler(int sig){
  644. raise(SIGTERM);
  645. }
  646. int main(void){
  647. signal(SIGILL, sighandler);
  648. signal(SIGFPE, sighandler);
  649. signal(SIGSEGV, sighandler);
  650. #ifdef SIGBUS
  651. signal(SIGBUS, sighandler);
  652. #endif
  653. { $code }
  654. }
  655. EOF
  656. }
  657. check_type(){
  658. log check_type "$@"
  659. headers=$1
  660. type=$2
  661. shift 2
  662. disable_safe "$type"
  663. incs=""
  664. for hdr in $headers; do
  665. incs="$incs
  666. #include <$hdr>"
  667. done
  668. check_cc "$@" <<EOF && enable_safe "$type"
  669. $incs
  670. $type v;
  671. EOF
  672. }
  673. check_struct(){
  674. log check_type "$@"
  675. headers=$1
  676. struct=$2
  677. member=$3
  678. shift 3
  679. disable_safe "${struct}_${member}"
  680. incs=""
  681. for hdr in $headers; do
  682. incs="$incs
  683. #include <$hdr>"
  684. done
  685. check_cc "$@" <<EOF && enable_safe "${struct}_${member}"
  686. $incs
  687. const void *p = &(($struct *)0)->$member;
  688. EOF
  689. }
  690. require(){
  691. name="$1"
  692. header="$2"
  693. func="$3"
  694. shift 3
  695. check_lib $header $func "$@" || die "ERROR: $name not found"
  696. }
  697. require2(){
  698. name="$1"
  699. headers="$2"
  700. func="$3"
  701. shift 3
  702. check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
  703. }
  704. check_host_cc(){
  705. log check_host_cc "$@"
  706. cat > $TMPC
  707. log_file $TMPC
  708. check_cmd $host_cc $host_cflags "$@" -c -o $TMPO $TMPC
  709. }
  710. check_host_cflags(){
  711. log check_host_cflags "$@"
  712. check_host_cc "$@" <<EOF && append host_cflags "$@"
  713. int x;
  714. EOF
  715. }
  716. apply(){
  717. file=$1
  718. shift
  719. "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
  720. }
  721. cp_if_changed(){
  722. cmp -s "$1" "$2" &&
  723. echo "$2 is unchanged" ||
  724. cp -f "$1" "$2"
  725. }
  726. # CONFIG_LIST contains configurable options, while HAVE_LIST is for
  727. # system-dependent things.
  728. COMPONENT_LIST="
  729. bsfs
  730. decoders
  731. demuxers
  732. encoders
  733. filters
  734. hwaccels
  735. indevs
  736. muxers
  737. outdevs
  738. parsers
  739. protocols
  740. "
  741. CONFIG_LIST="
  742. $COMPONENT_LIST
  743. aandct
  744. avcodec
  745. avdevice
  746. avfilter
  747. avfilter_lavf
  748. avformat
  749. avisynth
  750. bzlib
  751. dct
  752. doc
  753. dwt
  754. dxva2
  755. fastdiv
  756. ffmpeg
  757. ffplay
  758. ffprobe
  759. ffserver
  760. fft
  761. golomb
  762. gpl
  763. gray
  764. h264dsp
  765. hardcoded_tables
  766. libdc1394
  767. libdirac
  768. libfaac
  769. libgsm
  770. libmp3lame
  771. libnut
  772. libopencore_amrnb
  773. libopencore_amrwb
  774. libopenjpeg
  775. librtmp
  776. libschroedinger
  777. libspeex
  778. libtheora
  779. libvorbis
  780. libvpx
  781. libx264
  782. libxvid
  783. lpc
  784. lsp
  785. mdct
  786. memalign_hack
  787. mlib
  788. mpegaudio_hp
  789. network
  790. nonfree
  791. pic
  792. postproc
  793. rdft
  794. runtime_cpudetect
  795. shared
  796. small
  797. sram
  798. static
  799. swscale
  800. swscale_alpha
  801. vaapi
  802. vdpau
  803. version3
  804. x11grab
  805. zlib
  806. "
  807. THREADS_LIST='
  808. pthreads
  809. w32threads
  810. '
  811. ARCH_LIST='
  812. alpha
  813. arm
  814. avr32
  815. avr32_ap
  816. avr32_uc
  817. bfin
  818. ia64
  819. m68k
  820. mips
  821. mips64
  822. parisc
  823. ppc
  824. ppc64
  825. s390
  826. sh4
  827. sparc
  828. sparc64
  829. tomi
  830. x86
  831. x86_32
  832. x86_64
  833. '
  834. ARCH_EXT_LIST='
  835. altivec
  836. amd3dnow
  837. amd3dnowext
  838. armv5te
  839. armv6
  840. armv6t2
  841. armvfp
  842. iwmmxt
  843. mmi
  844. mmx
  845. mmx2
  846. neon
  847. ppc4xx
  848. sse
  849. ssse3
  850. vis
  851. '
  852. HAVE_LIST_PUB='
  853. bigendian
  854. '
  855. HAVE_LIST="
  856. $ARCH_EXT_LIST
  857. $HAVE_LIST_PUB
  858. $THREADS_LIST
  859. alsa_asoundlib_h
  860. altivec_h
  861. arpa_inet_h
  862. attribute_may_alias
  863. attribute_packed
  864. bswap
  865. closesocket
  866. cmov
  867. conio_h
  868. dcbzl
  869. dev_bktr_ioctl_bt848_h
  870. dev_bktr_ioctl_meteor_h
  871. dev_ic_bt8xx_h
  872. dev_video_meteor_ioctl_meteor_h
  873. dev_video_bktr_ioctl_bt848_h
  874. dlfcn_h
  875. dlopen
  876. dos_paths
  877. ebp_available
  878. ebx_available
  879. exp2
  880. exp2f
  881. fast_64bit
  882. fast_clz
  883. fast_cmov
  884. fast_unaligned
  885. fcntl
  886. fork
  887. getaddrinfo
  888. gethrtime
  889. GetProcessMemoryInfo
  890. GetProcessTimes
  891. getrusage
  892. gnu_as
  893. struct_rusage_ru_maxrss
  894. ibm_asm
  895. inet_aton
  896. inline_asm
  897. isatty
  898. ldbrx
  899. libdc1394_1
  900. libdc1394_2
  901. llrint
  902. llrintf
  903. local_aligned_16
  904. local_aligned_8
  905. log2
  906. log2f
  907. loongson
  908. lrint
  909. lrintf
  910. lzo1x_999_compress
  911. machine_ioctl_bt848_h
  912. machine_ioctl_meteor_h
  913. malloc_h
  914. memalign
  915. mkstemp
  916. pld
  917. posix_memalign
  918. round
  919. roundf
  920. sdl
  921. sdl_video_size
  922. setmode
  923. socklen_t
  924. soundcard_h
  925. poll_h
  926. setrlimit
  927. strerror_r
  928. struct_addrinfo
  929. struct_ipv6_mreq
  930. struct_sockaddr_in6
  931. struct_sockaddr_sa_len
  932. struct_sockaddr_storage
  933. symver
  934. symver_gnu_asm
  935. symver_asm_label
  936. sys_mman_h
  937. sys_resource_h
  938. sys_select_h
  939. sys_soundcard_h
  940. sys_videoio_h
  941. ten_operands
  942. termios_h
  943. threads
  944. truncf
  945. vfp_args
  946. VirtualAlloc
  947. winsock2_h
  948. xform_asm
  949. yasm
  950. "
  951. # options emitted with CONFIG_ prefix but not available on command line
  952. CONFIG_EXTRA="
  953. avutil
  954. gplv3
  955. lgplv3
  956. "
  957. CMDLINE_SELECT="
  958. $ARCH_EXT_LIST
  959. $CONFIG_LIST
  960. $THREADS_LIST
  961. asm
  962. cross_compile
  963. debug
  964. extra_warnings
  965. logging
  966. optimizations
  967. stripping
  968. yasm
  969. "
  970. PATHS_LIST='
  971. bindir
  972. datadir
  973. incdir
  974. libdir
  975. mandir
  976. prefix
  977. shlibdir
  978. '
  979. CMDLINE_SET="
  980. $PATHS_LIST
  981. ar
  982. arch
  983. as
  984. build_suffix
  985. cc
  986. cpu
  987. cross_prefix
  988. dep_cc
  989. extra_version
  990. host_cc
  991. host_cflags
  992. host_ldflags
  993. host_libs
  994. host_os
  995. ld
  996. logfile
  997. malloc_prefix
  998. nm
  999. samples
  1000. source_path
  1001. strip
  1002. sysinclude
  1003. sysroot
  1004. target_exec
  1005. target_os
  1006. target_path
  1007. "
  1008. CMDLINE_APPEND="
  1009. extra_cflags
  1010. "
  1011. # code dependency declarations
  1012. # architecture extensions
  1013. armv5te_deps="arm"
  1014. armv6_deps="arm"
  1015. armv6t2_deps="arm"
  1016. armvfp_deps="arm"
  1017. iwmmxt_deps="arm"
  1018. neon_deps="arm"
  1019. mmi_deps="mips"
  1020. altivec_deps="ppc"
  1021. ppc4xx_deps="ppc"
  1022. vis_deps="sparc"
  1023. x86_64_suggest="cmov fast_cmov"
  1024. amd3dnow_deps="mmx"
  1025. amd3dnowext_deps="amd3dnow"
  1026. mmx_deps="x86"
  1027. mmx2_deps="mmx"
  1028. sse_deps="mmx"
  1029. ssse3_deps="sse"
  1030. fast_64bit_if_any="alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
  1031. fast_clz_if_any="alpha armv5te avr32 mips ppc x86"
  1032. fast_unaligned_if_any="armv6 ppc x86"
  1033. need_memalign="altivec neon sse"
  1034. inline_asm_deps="!tms470"
  1035. symver_if_any="symver_asm_label symver_gnu_asm"
  1036. # subsystems
  1037. mdct_select="fft"
  1038. rdft_select="fft"
  1039. # decoders / encoders / hardware accelerators
  1040. aac_decoder_select="mdct rdft aac_parser"
  1041. aac_encoder_select="mdct"
  1042. ac3_decoder_select="mdct ac3_parser"
  1043. alac_encoder_select="lpc"
  1044. amrnb_decoder_select="lsp"
  1045. atrac1_decoder_select="mdct"
  1046. atrac3_decoder_select="mdct"
  1047. binkaudio_dct_decoder_select="mdct rdft dct"
  1048. binkaudio_rdft_decoder_select="mdct rdft"
  1049. cavs_decoder_select="golomb"
  1050. cook_decoder_select="mdct"
  1051. cscd_decoder_suggest="zlib"
  1052. dca_decoder_select="mdct"
  1053. dnxhd_encoder_select="aandct"
  1054. dxa_decoder_select="zlib"
  1055. eac3_decoder_select="ac3_decoder"
  1056. eamad_decoder_select="aandct"
  1057. eatgq_decoder_select="aandct"
  1058. eatqi_decoder_select="aandct"
  1059. ffv1_decoder_select="golomb"
  1060. flac_decoder_select="golomb"
  1061. flac_encoder_select="golomb lpc"
  1062. flashsv_decoder_select="zlib"
  1063. flashsv_encoder_select="zlib"
  1064. flv_decoder_select="h263_decoder"
  1065. flv_encoder_select="h263_encoder"
  1066. h261_encoder_select="aandct"
  1067. h263_decoder_select="h263_parser"
  1068. h263_encoder_select="aandct"
  1069. h263_vaapi_hwaccel_select="vaapi h263_decoder"
  1070. h263i_decoder_select="h263_decoder"
  1071. h263p_encoder_select="h263_encoder"
  1072. h264_decoder_select="golomb h264dsp"
  1073. h264_dxva2_hwaccel_deps="dxva2api_h"
  1074. h264_dxva2_hwaccel_select="dxva2 h264_decoder"
  1075. h264_vaapi_hwaccel_select="vaapi"
  1076. h264_vdpau_decoder_select="vdpau h264_decoder"
  1077. imc_decoder_select="fft mdct"
  1078. jpegls_decoder_select="golomb"
  1079. jpegls_encoder_select="golomb"
  1080. ljpeg_encoder_select="aandct"
  1081. loco_decoder_select="golomb"
  1082. mjpeg_encoder_select="aandct"
  1083. mlp_decoder_select="mlp_parser"
  1084. mp1float_decoder_select="dct"
  1085. mp2float_decoder_select="dct"
  1086. mp3adufloat_decoder_select="dct"
  1087. mp3float_decoder_select="dct"
  1088. mp3on4float_decoder_select="dct"
  1089. mpeg1video_encoder_select="aandct"
  1090. mpeg2video_encoder_select="aandct"
  1091. mpeg4_decoder_select="h263_decoder mpeg4video_parser"
  1092. mpeg4_encoder_select="h263_encoder"
  1093. mpeg_vdpau_decoder_select="vdpau mpegvideo_decoder"
  1094. mpeg1_vdpau_decoder_select="vdpau mpeg1video_decoder"
  1095. mpeg2_dxva2_hwaccel_deps="dxva2api_h"
  1096. mpeg2_dxva2_hwaccel_select="dxva2 mpeg2video_decoder"
  1097. mpeg2_vaapi_hwaccel_select="vaapi mpeg2video_decoder"
  1098. mpeg4_vaapi_hwaccel_select="vaapi mpeg4_decoder"
  1099. mpeg4_vdpau_decoder_select="vdpau mpeg4_decoder"
  1100. mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
  1101. mpeg_xvmc_decoder_select="mpegvideo_decoder"
  1102. msmpeg4v1_decoder_select="h263_decoder"
  1103. msmpeg4v1_encoder_select="h263_encoder"
  1104. msmpeg4v2_decoder_select="h263_decoder"
  1105. msmpeg4v2_encoder_select="h263_encoder"
  1106. msmpeg4v3_decoder_select="h263_decoder"
  1107. msmpeg4v3_encoder_select="h263_encoder"
  1108. nellymoser_decoder_select="mdct"
  1109. nellymoser_encoder_select="mdct"
  1110. png_decoder_select="zlib"
  1111. png_encoder_select="zlib"
  1112. qcelp_decoder_select="lsp"
  1113. qdm2_decoder_select="mdct rdft"
  1114. ra_144_encoder_select="lpc"
  1115. rv10_decoder_select="h263_decoder"
  1116. rv10_encoder_select="h263_encoder"
  1117. rv20_decoder_select="h263_decoder"
  1118. rv20_encoder_select="h263_encoder"
  1119. rv30_decoder_select="golomb h264dsp"
  1120. rv40_decoder_select="golomb h264dsp"
  1121. shorten_decoder_select="golomb"
  1122. sipr_decoder_select="lsp"
  1123. snow_decoder_select="dwt"
  1124. snow_encoder_select="aandct dwt"
  1125. sonic_decoder_select="golomb"
  1126. sonic_encoder_select="golomb"
  1127. sonic_ls_encoder_select="golomb"
  1128. svq1_encoder_select="aandct"
  1129. svq3_decoder_select="golomb h264dsp"
  1130. svq3_decoder_suggest="zlib"
  1131. theora_decoder_select="vp3_decoder"
  1132. tiff_decoder_suggest="zlib"
  1133. tiff_encoder_suggest="zlib"
  1134. truehd_decoder_select="mlp_decoder"
  1135. tscc_decoder_select="zlib"
  1136. twinvq_decoder_select="mdct lsp"
  1137. vc1_decoder_select="h263_decoder"
  1138. vc1_dxva2_hwaccel_deps="dxva2api_h DXVA_PictureParameters_wDecodedPictureIndex"
  1139. vc1_dxva2_hwaccel_select="dxva2 vc1_decoder"
  1140. vc1_vaapi_hwaccel_select="vaapi vc1_decoder"
  1141. vc1_vdpau_decoder_select="vdpau vc1_decoder"
  1142. vorbis_decoder_select="mdct"
  1143. vorbis_encoder_select="mdct"
  1144. vp6a_decoder_select="vp6_decoder"
  1145. vp6f_decoder_select="vp6_decoder"
  1146. vp8_decoder_select="h264dsp"
  1147. wmapro_decoder_select="mdct"
  1148. wmav1_decoder_select="mdct"
  1149. wmav1_encoder_select="mdct"
  1150. wmav2_decoder_select="mdct"
  1151. wmav2_encoder_select="mdct"
  1152. wmavoice_decoder_select="lsp rdft dct"
  1153. wmv1_decoder_select="h263_decoder"
  1154. wmv1_encoder_select="h263_encoder"
  1155. wmv2_decoder_select="h263_decoder"
  1156. wmv2_encoder_select="h263_encoder"
  1157. wmv3_decoder_select="vc1_decoder"
  1158. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  1159. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  1160. wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
  1161. zlib_decoder_select="zlib"
  1162. zlib_encoder_select="zlib"
  1163. zmbv_decoder_select="zlib"
  1164. zmbv_encoder_select="zlib"
  1165. vaapi_deps="va_va_h"
  1166. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  1167. # parsers
  1168. h264_parser_select="golomb h264dsp"
  1169. # bitstream_filters
  1170. aac_adtstoasc_bsf_select="aac_parser"
  1171. # external libraries
  1172. libdirac_decoder_deps="libdirac !libschroedinger"
  1173. libdirac_encoder_deps="libdirac"
  1174. libfaac_encoder_deps="libfaac"
  1175. libgsm_decoder_deps="libgsm"
  1176. libgsm_encoder_deps="libgsm"
  1177. libgsm_ms_decoder_deps="libgsm"
  1178. libgsm_ms_encoder_deps="libgsm"
  1179. libmp3lame_encoder_deps="libmp3lame"
  1180. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  1181. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  1182. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  1183. libopenjpeg_decoder_deps="libopenjpeg"
  1184. libschroedinger_decoder_deps="libschroedinger"
  1185. libschroedinger_encoder_deps="libschroedinger"
  1186. libspeex_decoder_deps="libspeex"
  1187. libtheora_encoder_deps="libtheora"
  1188. libvorbis_encoder_deps="libvorbis"
  1189. libvpx_decoder_deps="libvpx"
  1190. libvpx_encoder_deps="libvpx"
  1191. libx264_encoder_deps="libx264"
  1192. libxvid_encoder_deps="libxvid"
  1193. # demuxers / muxers
  1194. ac3_demuxer_deps="ac3_parser"
  1195. asf_stream_muxer_select="asf_muxer"
  1196. avisynth_demuxer_deps="avisynth"
  1197. dirac_demuxer_deps="dirac_parser"
  1198. eac3_demuxer_select="ac3_parser"
  1199. ipod_muxer_select="mov_muxer"
  1200. libnut_demuxer_deps="libnut"
  1201. libnut_muxer_deps="libnut"
  1202. matroska_audio_muxer_select="matroska_muxer"
  1203. matroska_demuxer_suggest="zlib bzlib"
  1204. mov_demuxer_suggest="zlib"
  1205. mp3_demuxer_deps="mpegaudio_parser"
  1206. mp4_muxer_select="mov_muxer"
  1207. mpegtsraw_demuxer_select="mpegts_demuxer"
  1208. mxf_d10_muxer_select="mxf_muxer"
  1209. ogg_demuxer_select="golomb"
  1210. psp_muxer_select="mov_muxer"
  1211. rtsp_demuxer_deps="sdp_demuxer"
  1212. rtsp_muxer_deps="sdp_demuxer"
  1213. rtsp_muxer_select="rtp_muxer"
  1214. sdp_demuxer_deps="rtp_protocol mpegts_demuxer"
  1215. sdp_demuxer_select="asf_demuxer rm_demuxer"
  1216. spdif_muxer_select="aac_parser"
  1217. tg2_muxer_select="mov_muxer"
  1218. tgp_muxer_select="mov_muxer"
  1219. w64_demuxer_deps="wav_demuxer"
  1220. # indevs / outdevs
  1221. alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  1222. alsa_indev_extralibs="-lasound"
  1223. alsa_outdev_deps="alsa_asoundlib_h"
  1224. alsa_outdev_extralibs="-lasound"
  1225. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  1226. dv1394_indev_deps="dv1394 dv_demuxer"
  1227. jack_indev_deps="jack_jack_h"
  1228. jack_indev_extralibs="-ljack"
  1229. libdc1394_indev_deps="libdc1394"
  1230. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  1231. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  1232. v4l_indev_deps="linux_videodev_h"
  1233. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  1234. vfwcap_indev_deps="capCreateCaptureWindow"
  1235. vfwcap_indev_extralibs="-lavicap32"
  1236. x11_grab_device_indev_deps="x11grab XShmCreateImage"
  1237. x11_grab_device_indev_extralibs="-lX11 -lXext -lXfixes"
  1238. # protocols
  1239. gopher_protocol_deps="network"
  1240. http_protocol_deps="network"
  1241. http_protocol_select="tcp_protocol"
  1242. mmst_protocol_deps="network"
  1243. rtmp_protocol_select="tcp_protocol"
  1244. rtp_protocol_select="udp_protocol"
  1245. tcp_protocol_deps="network"
  1246. udp_protocol_deps="network"
  1247. # filters
  1248. movie_filter_deps="avfilter_lavf"
  1249. avfilter_lavf_deps="avformat"
  1250. # libraries
  1251. avdevice_deps="avcodec avformat"
  1252. avformat_deps="avcodec"
  1253. # programs
  1254. ffmpeg_deps="avcodec avformat swscale"
  1255. ffmpeg_select="buffer_filter"
  1256. ffplay_deps="avcodec avformat swscale sdl"
  1257. ffplay_select="rdft"
  1258. ffprobe_deps="avcodec avformat"
  1259. ffserver_deps="avformat ffm_muxer rtp_protocol rtsp_demuxer"
  1260. ffserver_extralibs='$ldl'
  1261. doc_deps="texi2html"
  1262. # default parameters
  1263. logfile="config.log"
  1264. # installation paths
  1265. prefix_default="/usr/local"
  1266. bindir_default='${prefix}/bin'
  1267. datadir_default='${prefix}/share/ffmpeg'
  1268. incdir_default='${prefix}/include'
  1269. libdir_default='${prefix}/lib'
  1270. mandir_default='${prefix}/share/man'
  1271. shlibdir_default="$libdir_default"
  1272. # toolchain
  1273. ar_default="ar"
  1274. cc_default="gcc"
  1275. cc_version=\"unknown\"
  1276. host_cc_default="gcc"
  1277. ln_s="ln -sf"
  1278. nm_default="nm"
  1279. objformat="elf"
  1280. ranlib="ranlib"
  1281. strip_default="strip"
  1282. yasmexe="yasm"
  1283. nm_opts='-g'
  1284. # machine
  1285. arch_default=$(uname -m)
  1286. cpu="generic"
  1287. # OS
  1288. target_os_default=$(tolower $(uname -s))
  1289. host_os=$target_os_default
  1290. # configurable options
  1291. enable avcodec
  1292. enable avdevice
  1293. enable avfilter
  1294. enable avformat
  1295. enable avutil
  1296. enable asm
  1297. enable debug
  1298. enable doc
  1299. enable fastdiv
  1300. enable ffmpeg
  1301. enable ffplay
  1302. enable ffprobe
  1303. enable ffserver
  1304. enable mpegaudio_hp
  1305. enable network
  1306. enable optimizations
  1307. enable protocols
  1308. enable static
  1309. enable stripping
  1310. enable swscale
  1311. enable swscale_alpha
  1312. # build settings
  1313. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1314. FFSERVERLDFLAGS=-Wl,-E
  1315. LIBPREF="lib"
  1316. LIBSUF=".a"
  1317. FULLNAME='$(NAME)$(BUILDSUF)'
  1318. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1319. SLIBPREF="lib"
  1320. SLIBSUF=".so"
  1321. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1322. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  1323. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  1324. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  1325. CC_O='-o $@'
  1326. host_cflags='-D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112 -O3 -g -Wall'
  1327. host_libs='-lm'
  1328. target_path='$(CURDIR)'
  1329. # since the object filename is not given with the -MM flag, the compiler
  1330. # is only able to print the basename, and we must add the path ourselves
  1331. DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  1332. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -MM'
  1333. # find source path
  1334. source_path="$(dirname "$0")"
  1335. enable source_path_used
  1336. if test -f configure; then
  1337. source_path="$(pwd)"
  1338. disable source_path_used
  1339. else
  1340. source_path="$(cd "$source_path"; pwd)"
  1341. echo "$source_path" | grep -q '[[:blank:]]' &&
  1342. die "Out of tree builds are impossible with whitespace in source path."
  1343. test -e "$source_path/config.h" &&
  1344. die "Out of tree builds are impossible with config.h in source dir."
  1345. fi
  1346. for v in "$@"; do
  1347. r=${v#*=}
  1348. l=${v%"$r"}
  1349. r=$(sh_quote "$r")
  1350. FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
  1351. done
  1352. find_things(){
  1353. thing=$1
  1354. pattern=$2
  1355. file=$source_path/$3
  1356. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  1357. }
  1358. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  1359. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  1360. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  1361. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  1362. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  1363. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  1364. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  1365. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  1366. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  1367. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  1368. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  1369. for n in $COMPONENT_LIST; do
  1370. v=$(toupper ${n%s})_LIST
  1371. eval enable \$$v
  1372. eval ${n}_if_any="\$$v"
  1373. done
  1374. enable $ARCH_EXT_LIST
  1375. die_unknown(){
  1376. echo "Unknown option \"$1\"."
  1377. echo "See $0 --help for available options."
  1378. exit 1
  1379. }
  1380. show_list() {
  1381. suffix=_$1
  1382. shift
  1383. echo $* | sed s/$suffix//g | tr ' ' '\n' | sort | pr -3 -t
  1384. exit 0
  1385. }
  1386. for opt do
  1387. optval="${opt#*=}"
  1388. case "$opt" in
  1389. --extra-ldflags=*) add_ldflags $optval
  1390. ;;
  1391. --extra-libs=*) add_extralibs $optval
  1392. ;;
  1393. --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
  1394. ;;
  1395. --enable-debug=*) debuglevel="$optval"
  1396. ;;
  1397. --disable-everything)
  1398. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  1399. ;;
  1400. --enable-*=*|--disable-*=*)
  1401. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  1402. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  1403. eval list=\$$(toupper $thing)_LIST
  1404. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  1405. $action $(filter "$name" $list)
  1406. ;;
  1407. --enable-?*|--disable-?*)
  1408. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  1409. if is_in $option $COMPONENT_LIST; then
  1410. test $action = disable && action=unset
  1411. eval $action \$$(toupper ${option%s})_LIST
  1412. elif is_in $option $CMDLINE_SELECT; then
  1413. $action $option
  1414. else
  1415. die_unknown $opt
  1416. fi
  1417. ;;
  1418. --list-*)
  1419. NAME="${opt#--list-}"
  1420. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  1421. NAME=${NAME%s}
  1422. eval show_list $NAME \$$(toupper $NAME)_LIST
  1423. ;;
  1424. --help|-h) show_help
  1425. ;;
  1426. *)
  1427. optname="${opt%%=*}"
  1428. optname="${optname#--}"
  1429. optname=$(echo "$optname" | sed 's/-/_/g')
  1430. if is_in $optname $CMDLINE_SET; then
  1431. eval $optname='$optval'
  1432. elif is_in $optname $CMDLINE_APPEND; then
  1433. append $optname "$optval"
  1434. else
  1435. die_unknown $opt
  1436. fi
  1437. ;;
  1438. esac
  1439. done
  1440. disabled logging && logfile=/dev/null
  1441. echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
  1442. set >> $logfile
  1443. test -n "$cross_prefix" && enable cross_compile
  1444. if enabled cross_compile; then
  1445. test -n "$arch" && test -n "$target_os" ||
  1446. die "Must specify target arch and OS when cross-compiling"
  1447. fi
  1448. set_default arch target_os
  1449. ar_default="${cross_prefix}${ar_default}"
  1450. cc_default="${cross_prefix}${cc_default}"
  1451. nm_default="${cross_prefix}${nm_default}"
  1452. ranlib="${cross_prefix}${ranlib}"
  1453. strip_default="${cross_prefix}${strip_default}"
  1454. sysinclude_default="${sysroot}/usr/include"
  1455. set_default cc nm strip sysinclude
  1456. enabled cross_compile || host_cc_default=$cc
  1457. set_default host_cc
  1458. exesuf() {
  1459. case $1 in
  1460. mingw32*|cygwin*|*-dos|freedos|opendos|os/2*) echo .exe ;;
  1461. esac
  1462. }
  1463. EXESUF=$(exesuf $target_os)
  1464. HOSTEXESUF=$(exesuf $host_os)
  1465. # set temporary file name
  1466. : ${TMPDIR:=$TEMPDIR}
  1467. : ${TMPDIR:=$TMP}
  1468. : ${TMPDIR:=/tmp}
  1469. if ! check_cmd type mktemp; then
  1470. # simple replacement for missing mktemp
  1471. # NOT SAFE FOR GENERAL USE
  1472. mktemp(){
  1473. echo "${2%XXX*}.${HOSTNAME}.${UID}.$$"
  1474. }
  1475. fi
  1476. tmpfile(){
  1477. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  1478. (set -C; exec > $tmp) 2>/dev/null ||
  1479. die "Unable to create temporary file in $TMPDIR."
  1480. append TMPFILES $tmp
  1481. eval $1=$tmp
  1482. }
  1483. trap 'rm -f -- $TMPFILES' EXIT
  1484. trap exit HUP INT TERM
  1485. tmpfile TMPC .c
  1486. tmpfile TMPE $EXESUF
  1487. tmpfile TMPH .h
  1488. tmpfile TMPO .o
  1489. tmpfile TMPS .S
  1490. tmpfile TMPV .ver
  1491. tmpfile TMPSH .sh
  1492. unset -f mktemp
  1493. # make sure we can execute files in $TMPDIR
  1494. cat > $TMPSH 2>> $logfile <<EOF
  1495. #! /bin/sh
  1496. EOF
  1497. chmod +x $TMPSH >> $logfile 2>&1
  1498. if ! $TMPSH >> $logfile 2>&1; then
  1499. cat <<EOF
  1500. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  1501. variable to another directory and make sure that it is not mounted noexec.
  1502. EOF
  1503. die "Sanity test failed."
  1504. fi
  1505. filter_cflags=echo
  1506. filter_cppflags=echo
  1507. filter_asflags=echo
  1508. if $cc -v 2>&1 | grep -qi ^gcc; then
  1509. cc_type=gcc
  1510. cc_version=__VERSION__
  1511. if ! $cc -dumpversion | grep -q '^2\.'; then
  1512. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1513. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1514. fi
  1515. speed_cflags='-O3'
  1516. size_cflags='-Os'
  1517. elif $cc --version 2>/dev/null | grep -q Intel; then
  1518. cc_type=icc
  1519. cc_version="AV_STRINGIFY(__INTEL_COMPILER)"
  1520. CC_DEPFLAGS='-MMD'
  1521. AS_DEPFLAGS='-MMD'
  1522. speed_cflags='-O3'
  1523. size_cflags='-Os'
  1524. noopt_cflags='-O1'
  1525. elif $cc -v 2>&1 | grep -q xlc; then
  1526. cc_type=xlc
  1527. cc_version="AV_STRINGIFY(__IBMC__)"
  1528. speed_cflags='-O5'
  1529. size_cflags='-O5 -qcompact'
  1530. elif $cc -V 2>/dev/null | grep -q Compaq; then
  1531. cc_type=ccc
  1532. cc_version="AV_STRINGIFY(__DECC_VER)"
  1533. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -M'
  1534. debuglevel=3
  1535. add_ldflags -Wl,-z,now # calls to libots crash without this
  1536. speed_cflags='-fast'
  1537. size_cflags='-O1'
  1538. elif $cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
  1539. test -d "$sysroot" || die "No valid sysroot specified."
  1540. cc_type=armcc
  1541. cc_version="AV_STRINGIFY(__ARMCC_VERSION)"
  1542. armcc_conf="$PWD/armcc.conf"
  1543. $cc --arm_linux_configure \
  1544. --arm_linux_config_file="$armcc_conf" \
  1545. --configure_sysroot="$sysroot" \
  1546. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  1547. die "Error creating armcc configuration file."
  1548. cc="$cc --arm_linux_config_file=$armcc_conf --translate_gcc"
  1549. as_default="${cross_prefix}gcc"
  1550. CC_DEPFLAGS='-MMD'
  1551. AS_DEPFLAGS='-MMD'
  1552. speed_cflags='-O3'
  1553. size_cflags='-Os'
  1554. elif $cc -version 2>/dev/null | grep -q TMS470; then
  1555. cc_type=tms470
  1556. cc_version="AV_STRINGIFY(__TI_COMPILER_VERSION__)"
  1557. cc="$cc --gcc --abi=eabi -eo=.o -mc -me"
  1558. CC_O='-fr=$(@D)'
  1559. as_default="${cross_prefix}gcc"
  1560. ld_default="${cross_prefix}gcc"
  1561. TMPO=$(basename $TMPC .c).o
  1562. append TMPFILES $TMPO
  1563. add_cflags -D__gnuc_va_list=va_list -D__USER_LABEL_PREFIX__=
  1564. CC_DEPFLAGS='-ppa -ppd=$(@:.o=.d)'
  1565. AS_DEPFLAGS='-MMD'
  1566. speed_cflags='-O3 -mf=5'
  1567. size_cflags='-O3 -mf=2'
  1568. filter_cflags=tms470_flags
  1569. tms470_flags(){
  1570. for flag; do
  1571. case $flag in
  1572. -march=*|-mcpu=*)
  1573. case "${flag#*=}" in
  1574. armv7-a|cortex-a*) echo -mv=7a8 ;;
  1575. armv7-r|cortex-r*) echo -mv=7r4 ;;
  1576. armv7-m|cortex-m*) echo -mv=7m3 ;;
  1577. armv6*|arm11*) echo -mv=6 ;;
  1578. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  1579. echo -mv=5e ;;
  1580. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  1581. esac
  1582. ;;
  1583. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  1584. -mfpu=vfp) echo --float_support=vfpv2 ;;
  1585. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  1586. -msoft-float) echo --float_support=vfplib ;;
  1587. -O[0-3]|-mf=*) echo $flag ;;
  1588. -g) echo -g -mn ;;
  1589. -pds=*) echo $flag ;;
  1590. esac
  1591. done
  1592. }
  1593. elif $cc -v 2>&1 | grep -q clang; then
  1594. cc_type=clang
  1595. cc_version=__VERSION__
  1596. CC_DEPFLAGS='-MMD'
  1597. AS_DEPFLAGS='-MMD'
  1598. speed_cflags='-O3'
  1599. size_cflags='-Os'
  1600. elif $cc -V 2>&1 | grep -q Sun; then
  1601. cc_type=suncc
  1602. cc_version="AV_STRINGIFY(__SUNPRO_C)"
  1603. DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  1604. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -xM1'
  1605. speed_cflags='-O5'
  1606. size_cflags='-O5 -xspace'
  1607. filter_cflags=suncc_flags
  1608. suncc_flags(){
  1609. for flag; do
  1610. case $flag in
  1611. -march=*|-mcpu=*)
  1612. case "${flag#*=}" in
  1613. native) echo -xtarget=native ;;
  1614. v9|niagara) echo -xarch=sparc ;;
  1615. ultrasparc) echo -xarch=sparcvis ;;
  1616. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  1617. i586|pentium) echo -xchip=pentium ;;
  1618. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  1619. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  1620. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  1621. pentium4*) echo -xtarget=pentium4 ;;
  1622. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  1623. *-sse3) echo -xarch=sse3 ;;
  1624. core2) echo -xarch=ssse3 -xchip=core2 ;;
  1625. amdfam10|barcelona) echo -xarch=sse4_1 ;;
  1626. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  1627. k8|opteron|athlon64|athlon-fx)
  1628. echo -xarch=sse2a ;;
  1629. athlon*) echo -xarch=pentium_proa ;;
  1630. esac
  1631. ;;
  1632. -std=c99) echo -xc99 ;;
  1633. -fomit-frame-pointer) echo -xregs=frameptr ;;
  1634. -fPIC) echo -KPIC -xcode=pic32 ;;
  1635. -W*,*) echo $flag ;;
  1636. -f*-*|-W*) ;;
  1637. *) echo $flag ;;
  1638. esac
  1639. done
  1640. }
  1641. fi
  1642. test -n "$cc_type" && enable $cc_type ||
  1643. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  1644. : ${as_default:=$cc}
  1645. : ${dep_cc_default:=$cc}
  1646. : ${ld_default:=$cc}
  1647. set_default ar as dep_cc ld
  1648. test -n "$CC_DEPFLAGS" || CCDEP=$DEPEND_CMD
  1649. test -n "$AS_DEPFLAGS" || ASDEP=$DEPEND_CMD
  1650. add_cflags $extra_cflags
  1651. add_asflags $extra_cflags
  1652. if test -n "$sysroot"; then
  1653. case "$cc_type" in
  1654. gcc)
  1655. add_cppflags --sysroot="$sysroot"
  1656. add_ldflags --sysroot="$sysroot"
  1657. ;;
  1658. tms470)
  1659. add_cppflags -I"$sysinclude"
  1660. add_ldflags --sysroot="$sysroot"
  1661. ;;
  1662. clang)
  1663. add_cppflags -isysroot "$sysroot"
  1664. add_ldflags -isysroot "$sysroot"
  1665. ;;
  1666. esac
  1667. fi
  1668. if test "$cpu" = host; then
  1669. enabled cross_compile && die "--cpu=host makes no sense when cross-compiling."
  1670. case "$cc_type" in
  1671. gcc)
  1672. check_native(){
  1673. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  1674. sed -n "/$1=/{
  1675. s/.*$1=\\([^ ]*\\).*/\\1/
  1676. p
  1677. q
  1678. }" $TMPE
  1679. }
  1680. cpu=$(check_native -march || check_native -mcpu)
  1681. ;;
  1682. esac
  1683. test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc"
  1684. fi
  1685. # Deal with common $arch aliases
  1686. case "$arch" in
  1687. arm*)
  1688. arch="arm"
  1689. ;;
  1690. mips|mipsel|IP*)
  1691. arch="mips"
  1692. ;;
  1693. mips64*)
  1694. arch="mips"
  1695. subarch="mips64"
  1696. ;;
  1697. parisc|hppa)
  1698. arch="parisc"
  1699. ;;
  1700. parisc64|hppa64)
  1701. arch="parisc"
  1702. subarch="parisc64"
  1703. ;;
  1704. "Power Macintosh"|ppc|powerpc)
  1705. arch="ppc"
  1706. ;;
  1707. ppc64|powerpc64)
  1708. arch="ppc"
  1709. subarch="ppc64"
  1710. ;;
  1711. s390|s390x)
  1712. arch="s390"
  1713. ;;
  1714. sh4|sh)
  1715. arch="sh4"
  1716. ;;
  1717. sun4u|sparc64)
  1718. arch="sparc"
  1719. subarch="sparc64"
  1720. ;;
  1721. i[3-6]86|i86pc|BePC|x86_64|amd64)
  1722. arch="x86"
  1723. ;;
  1724. esac
  1725. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  1726. enable $arch
  1727. # Add processor-specific flags
  1728. if test "$cpu" = generic; then
  1729. : do nothing
  1730. elif enabled ppc; then
  1731. case $(tolower $cpu) in
  1732. 601|ppc601|powerpc601)
  1733. cpuflags="-mcpu=601"
  1734. disable altivec
  1735. ;;
  1736. 603*|ppc603*|powerpc603*)
  1737. cpuflags="-mcpu=603"
  1738. disable altivec
  1739. ;;
  1740. 604*|ppc604*|powerpc604*)
  1741. cpuflags="-mcpu=604"
  1742. disable altivec
  1743. ;;
  1744. g3|75*|ppc75*|powerpc75*)
  1745. cpuflags="-mcpu=750 -mpowerpc-gfxopt"
  1746. disable altivec
  1747. ;;
  1748. g4|745*|ppc745*|powerpc745*)
  1749. cpuflags="-mcpu=7450 -mpowerpc-gfxopt"
  1750. ;;
  1751. 74*|ppc74*|powerpc74*)
  1752. cpuflags="-mcpu=7400 -mpowerpc-gfxopt"
  1753. ;;
  1754. g5|970|ppc970|powerpc970|power4*)
  1755. cpuflags="-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
  1756. ;;
  1757. cell)
  1758. cpuflags="-mcpu=cell"
  1759. enable ldbrx
  1760. ;;
  1761. e500v2)
  1762. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  1763. disable altivec
  1764. ;;
  1765. e500)
  1766. cpuflags="-mcpu=8540 -mhard-float"
  1767. disable altivec
  1768. ;;
  1769. esac
  1770. elif enabled x86; then
  1771. case $cpu in
  1772. i[345]86|pentium)
  1773. cpuflags="-march=$cpu"
  1774. disable mmx
  1775. ;;
  1776. # targets that do NOT support conditional mov (cmov)
  1777. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  1778. cpuflags="-march=$cpu"
  1779. disable cmov
  1780. ;;
  1781. # targets that do support conditional mov (cmov)
  1782. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2|amdfam10|barcelona)
  1783. cpuflags="-march=$cpu"
  1784. enable cmov
  1785. enable fast_cmov
  1786. ;;
  1787. # targets that do support conditional mov but on which it's slow
  1788. pentium4|pentium4m|prescott|nocona)
  1789. cpuflags="-march=$cpu"
  1790. enable cmov
  1791. disable fast_cmov
  1792. ;;
  1793. esac
  1794. elif enabled sparc; then
  1795. case $cpu in
  1796. niagara)
  1797. cpuflags="-mcpu=$cpu"
  1798. disable vis
  1799. ;;
  1800. sparc64)
  1801. cpuflags="-mcpu=v9"
  1802. ;;
  1803. esac
  1804. elif enabled arm; then
  1805. case $cpu in
  1806. armv*)
  1807. cpuflags="-march=$cpu"
  1808. ;;
  1809. *)
  1810. cpuflags="-mcpu=$cpu"
  1811. ;;
  1812. esac
  1813. elif enabled alpha; then
  1814. enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
  1815. elif enabled bfin; then
  1816. cpuflags="-mcpu=$cpu"
  1817. elif enabled mips; then
  1818. cpuflags="-march=$cpu"
  1819. elif enabled avr32; then
  1820. case $cpu in
  1821. ap7[02]0[0-2])
  1822. subarch="avr32_ap"
  1823. cpuflags="-mpart=$cpu"
  1824. ;;
  1825. ap)
  1826. subarch="avr32_ap"
  1827. cpuflags="-march=$cpu"
  1828. ;;
  1829. uc3[ab]*)
  1830. subarch="avr32_uc"
  1831. cpuflags="-mcpu=$cpu"
  1832. ;;
  1833. uc)
  1834. subarch="avr32_uc"
  1835. cpuflags="-march=$cpu"
  1836. ;;
  1837. esac
  1838. fi
  1839. add_cflags $cpuflags
  1840. add_asflags $cpuflags
  1841. # compiler sanity check
  1842. check_exec <<EOF
  1843. int main(void){ return 0; }
  1844. EOF
  1845. if test "$?" != 0; then
  1846. echo "$cc is unable to create an executable file."
  1847. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  1848. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  1849. echo "Only do this if you know what cross compiling means."
  1850. fi
  1851. die "C compiler test failed."
  1852. fi
  1853. add_cppflags -D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112
  1854. check_cflags -std=c99
  1855. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  1856. #include <stdlib.h>
  1857. EOF
  1858. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  1859. #include <stdlib.h>
  1860. EOF
  1861. check_host_cflags -std=c99
  1862. case "$arch" in
  1863. alpha|ia64|mips|parisc|sparc)
  1864. spic=$shared
  1865. ;;
  1866. x86)
  1867. subarch="x86_32"
  1868. check_cc <<EOF && subarch="x86_64"
  1869. int test[(int)sizeof(char*) - 7];
  1870. EOF
  1871. if test "$subarch" = "x86_64"; then
  1872. spic=$shared
  1873. fi
  1874. ;;
  1875. esac
  1876. enable $subarch
  1877. enabled spic && enable pic
  1878. # OS specific
  1879. case $target_os in
  1880. haiku)
  1881. prefix_default="/boot/common"
  1882. network_extralibs="-lnetwork"
  1883. ;;
  1884. sunos)
  1885. FFSERVERLDFLAGS=""
  1886. SHFLAGS='-shared -Wl,-h,$$(@F)'
  1887. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  1888. network_extralibs="-lsocket -lnsl"
  1889. add_cppflags -D__EXTENSIONS__
  1890. nm_opts='-P -g'
  1891. ;;
  1892. netbsd)
  1893. oss_indev_extralibs="-lossaudio"
  1894. oss_outdev_extralibs="-lossaudio"
  1895. add_cppflags -D_XOPEN_SOURCE=600
  1896. ;;
  1897. openbsd)
  1898. enable malloc_aligned
  1899. # On OpenBSD 4.5. the compiler does not use PIC unless
  1900. # explicitly using -fPIC. FFmpeg builds fine without PIC,
  1901. # however the generated executable will not do anything
  1902. # (simply quits with exit-code 1, no crash, no output).
  1903. # Thus explicitly enable PIC here.
  1904. enable pic
  1905. SHFLAGS='-shared'
  1906. oss_indev_extralibs="-lossaudio"
  1907. oss_outdev_extralibs="-lossaudio"
  1908. ;;
  1909. freebsd|dragonfly)
  1910. enable malloc_aligned
  1911. ;;
  1912. bsd/os)
  1913. osextralibs="-lpoll -lgnugetopt"
  1914. strip="strip -d"
  1915. ;;
  1916. darwin)
  1917. enable malloc_aligned
  1918. as="gas-preprocessor.pl $cc"
  1919. enabled ppc && add_asflags -force_cpusubtype_ALL
  1920. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR) -Wl,-read_only_relocs,suppress'
  1921. strip="${strip} -x"
  1922. FFLDFLAGS="-Wl,-dynamic,-search_paths_first"
  1923. SLIBSUF=".dylib"
  1924. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  1925. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  1926. FFSERVERLDFLAGS=-Wl,-bind_at_load
  1927. objformat="macho"
  1928. enabled x86_64 && objformat="macho64"
  1929. enabled_any pic shared ||
  1930. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  1931. ;;
  1932. mingw32*)
  1933. if test $target_os = "mingw32ce"; then
  1934. disable network
  1935. else
  1936. target_os=mingw32
  1937. fi
  1938. LIBTARGET=i386
  1939. if enabled x86_64; then
  1940. enable malloc_aligned
  1941. LIBTARGET=x64
  1942. elif enabled arm; then
  1943. LIBTARGET=arm
  1944. fi
  1945. shlibdir_default="$bindir_default"
  1946. disable ffserver
  1947. SLIBPREF=""
  1948. SLIBSUF=".dll"
  1949. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  1950. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  1951. SLIB_EXTRA_CMD='-lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)'
  1952. SLIB_INSTALL_EXTRA_CMD='-install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"; \
  1953. install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)"; \
  1954. install -d "$(LIBDIR)"; \
  1955. install -m 644 $(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) "$(LIBDIR)/lib$(SLIBNAME:$(SLIBSUF)=.dll.a)"'
  1956. SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"'
  1957. SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
  1958. objformat="win32"
  1959. enable dos_paths
  1960. check_cflags -fno-common
  1961. if ! enabled x86_64; then
  1962. check_cpp_condition _mingw.h "(__MINGW32_MAJOR_VERSION > 3) || (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  1963. die "ERROR: MinGW runtime version must be >= 3.15."
  1964. enabled_any avisynth vfwcap_indev &&
  1965. { check_cpp_condition w32api.h "(__W32API_MAJOR_VERSION > 3) || (__W32API_MAJOR_VERSION == 3 && __W32API_MINOR_VERSION >= 13)" ||
  1966. die "ERROR: avisynth and vfwcap_indev require w32api version 3.13 or later."; }
  1967. fi
  1968. ;;
  1969. cygwin*)
  1970. target_os=cygwin
  1971. shlibdir_default="$bindir_default"
  1972. SLIBPREF="cyg"
  1973. SLIBSUF=".dll"
  1974. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  1975. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  1976. SHFLAGS='-shared -Wl,--enable-auto-image-base'
  1977. objformat="win32"
  1978. enable dos_paths
  1979. check_cflags -fno-common
  1980. ;;
  1981. *-dos|freedos|opendos)
  1982. disable ffplay ffserver
  1983. disable $INDEV_LIST $OUTDEV_LIST
  1984. network_extralibs="-lsocket"
  1985. objformat="coff"
  1986. enable dos_paths
  1987. ;;
  1988. linux)
  1989. enable dv1394
  1990. ;;
  1991. irix*)
  1992. target_os=irix
  1993. ranlib="echo ignoring ranlib"
  1994. ;;
  1995. os/2*)
  1996. strip="lxlite"
  1997. ln_s="cp -f"
  1998. FFLDFLAGS="-Zomf -Zbin-files -Zargs-wild -Zmap"
  1999. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  2000. FFSERVERLDFLAGS=""
  2001. LIBSUF="_s.a"
  2002. SLIBPREF=""
  2003. SLIBSUF=".dll"
  2004. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  2005. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  2006. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  2007. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  2008. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  2009. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  2010. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  2011. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  2012. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  2013. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  2014. SLIB_INSTALL_EXTRA_CMD='install -m 644 $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib "$(LIBDIR)"'
  2015. SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.a "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.lib'
  2016. enable dos_paths
  2017. ;;
  2018. gnu/kfreebsd)
  2019. ;;
  2020. gnu)
  2021. ;;
  2022. none)
  2023. ;;
  2024. *)
  2025. die "Unknown OS '$target_os'."
  2026. ;;
  2027. esac
  2028. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
  2029. set_default $PATHS_LIST
  2030. add_extralibs $osextralibs
  2031. # Combine FFLDFLAGS and the LDFLAGS environment variable.
  2032. LDFLAGS="$FFLDFLAGS $LDFLAGS"
  2033. # we need to build at least one lib type
  2034. if ! enabled_any static shared; then
  2035. cat <<EOF
  2036. At least one library type must be built.
  2037. Specify --enable-static to build the static libraries or --enable-shared to
  2038. build the shared libraries as well. To only build the shared libraries specify
  2039. --disable-static in addition to --enable-shared.
  2040. EOF
  2041. exit 1;
  2042. fi
  2043. disabled static && LIBNAME=""
  2044. die_license_disabled() {
  2045. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  2046. }
  2047. die_license_disabled gpl libx264
  2048. die_license_disabled gpl libxvid
  2049. die_license_disabled gpl postproc
  2050. die_license_disabled gpl x11grab
  2051. die_license_disabled nonfree libfaac
  2052. die_license_disabled version3 libopencore_amrnb
  2053. die_license_disabled version3 libopencore_amrwb
  2054. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  2055. check_deps $ARCH_EXT_LIST
  2056. disabled optimizations || check_cflags -fomit-frame-pointer
  2057. enable_pic() {
  2058. enable pic
  2059. add_cppflags -DPIC
  2060. add_cflags -fPIC
  2061. add_asflags -fPIC
  2062. }
  2063. enabled pic && enable_pic
  2064. check_cc <<EOF || die "Symbol mangling check failed."
  2065. int ff_extern;
  2066. EOF
  2067. sym=$($nm $nm_opts $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  2068. extern_prefix=${sym%%ff_extern*}
  2069. check_cc <<EOF && enable inline_asm
  2070. void foo(void) { __asm__ volatile ("" ::); }
  2071. EOF
  2072. _restrict=
  2073. for restrict_keyword in restrict __restrict__ __restrict; do
  2074. check_cc <<EOF && _restrict=$restrict_keyword && break
  2075. void foo(char * $restrict_keyword p);
  2076. EOF
  2077. done
  2078. check_cc <<EOF && enable attribute_packed
  2079. struct { int x; } __attribute__((packed)) x;
  2080. EOF
  2081. check_cc <<EOF && enable attribute_may_alias
  2082. union { int x; } __attribute__((may_alias)) x;
  2083. EOF
  2084. check_cc <<EOF || die "endian test failed"
  2085. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  2086. EOF
  2087. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  2088. check_asm gnu_as '".macro m n\n\\n:.int 0\n.endm\nm x"' ||
  2089. warn "GNU assembler not found, install gas-preprocessor"
  2090. if enabled alpha; then
  2091. check_cflags -mieee
  2092. elif enabled arm; then
  2093. check_cflags -marm
  2094. check_ld <<EOF && enable vfp_args
  2095. __asm__ (".eabi_attribute 28, 1");
  2096. int main(void) { return 0; }
  2097. EOF
  2098. # We have to check if pld is a nop and disable it.
  2099. check_asm pld '"pld [r0]"'
  2100. enabled armv5te && check_asm armv5te '"qadd r0, r0, r0"'
  2101. enabled armv6 && check_asm armv6 '"sadd16 r0, r0, r0"'
  2102. enabled armv6t2 && check_asm armv6t2 '"movt r0, #0"'
  2103. enabled armvfp && check_asm armvfp '"fadds s0, s0, s0"'
  2104. enabled iwmmxt && check_asm iwmmxt '"wunpckelub wr6, wr4"'
  2105. enabled neon && check_asm neon '"vadd.i16 q0, q0, q0"'
  2106. enabled_all armv6t2 shared !pic && enable_pic
  2107. elif enabled mips; then
  2108. check_asm loongson '"dmult.g $1, $2, $3"'
  2109. enabled mmi && check_asm mmi '"lq $2, 0($2)"'
  2110. elif enabled ppc; then
  2111. enable local_aligned_8 local_aligned_16
  2112. check_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  2113. check_asm ibm_asm '"add 0, 0, 0"'
  2114. check_asm ppc4xx '"maclhw r10, r11, r12"'
  2115. check_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  2116. # AltiVec flags: The FSF version of GCC differs from the Apple version
  2117. if enabled altivec; then
  2118. check_cflags -maltivec -mabi=altivec &&
  2119. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  2120. check_cflags -faltivec
  2121. # check if our compiler supports Motorola AltiVec C API
  2122. check_cc <<EOF || disable altivec
  2123. $inc_altivec_h
  2124. int main(void) {
  2125. vector signed int v1, v2, v3;
  2126. v1 = vec_add(v2,v3);
  2127. return 0;
  2128. }
  2129. EOF
  2130. # check if our compiler supports braces for vector declarations
  2131. check_cc <<EOF || die "You need a compiler that supports {} in AltiVec vector declarations."
  2132. $inc_altivec_h
  2133. int main (void) { (vector int) {1}; return 0; }
  2134. EOF
  2135. fi
  2136. elif enabled sparc; then
  2137. enabled vis && check_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc &&
  2138. add_cflags -mcpu=ultrasparc -mtune=ultrasparc
  2139. elif enabled x86; then
  2140. enable local_aligned_8 local_aligned_16
  2141. # check whether EBP is available on x86
  2142. # As 'i' is stored on the stack, this program will crash
  2143. # if the base pointer is used to access it because the
  2144. # base pointer is cleared in the inline assembly code.
  2145. check_exec_crash <<EOF && enable ebp_available
  2146. volatile int i=0;
  2147. __asm__ volatile (
  2148. "xorl %%ebp, %%ebp"
  2149. ::: "%ebp");
  2150. return i;
  2151. EOF
  2152. # check whether EBX is available on x86
  2153. check_asm ebx_available '""::"b"(0)' &&
  2154. check_asm ebx_available '"":::"%ebx"'
  2155. # check whether more than 10 operands are supported
  2156. check_cc <<EOF && enable ten_operands
  2157. int main(void) {
  2158. int x=0;
  2159. __asm__ volatile(
  2160. ""
  2161. :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
  2162. );
  2163. return 0;
  2164. }
  2165. EOF
  2166. # check whether binutils is new enough to compile SSSE3/MMX2
  2167. enabled ssse3 && check_asm ssse3 '"pabsw %xmm0, %xmm0"'
  2168. enabled mmx2 && check_asm mmx2 '"pmaxub %mm0, %mm1"'
  2169. check_asm bswap '"bswap %%eax" ::: "%eax"'
  2170. YASMFLAGS="-f $objformat -DARCH_$(toupper $subarch)"
  2171. enabled x86_64 && append YASMFLAGS "-m amd64"
  2172. enabled pic && append YASMFLAGS "-DPIC"
  2173. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  2174. case "$objformat" in
  2175. elf) enabled debug && append YASMFLAGS "-g dwarf2" ;;
  2176. esac
  2177. if ! disabled yasm; then
  2178. check_yasm "pabsw xmm0, xmm0" && enable yasm ||
  2179. warn "yasm not found, performance will suffer"
  2180. fi
  2181. case "$cpu" in
  2182. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  2183. disable fast_clz
  2184. ;;
  2185. esac
  2186. fi
  2187. if check_func dlopen; then
  2188. ldl=
  2189. elif check_func dlopen -ldl; then
  2190. ldl=-ldl
  2191. fi
  2192. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  2193. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  2194. check_func fcntl
  2195. check_func fork
  2196. check_func getaddrinfo $network_extralibs
  2197. check_func gethrtime
  2198. check_func getrusage
  2199. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  2200. check_func inet_aton $network_extralibs
  2201. check_func isatty
  2202. check_func ${malloc_prefix}memalign && enable memalign
  2203. check_func mkstemp
  2204. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  2205. check_func setrlimit
  2206. check_func strerror_r
  2207. check_func_headers io.h setmode
  2208. check_func_headers lzo/lzo1x.h lzo1x_999_compress
  2209. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  2210. check_func_headers windows.h GetProcessTimes
  2211. check_func_headers windows.h VirtualAlloc
  2212. check_header conio.h
  2213. check_header dlfcn.h
  2214. check_header dxva2api.h
  2215. check_header malloc.h
  2216. check_header poll.h
  2217. check_header sys/mman.h
  2218. check_header sys/resource.h
  2219. check_header sys/select.h
  2220. check_header termios.h
  2221. check_header vdpau/vdpau.h
  2222. check_header vdpau/vdpau_x11.h
  2223. check_header X11/extensions/XvMClib.h
  2224. check_struct dxva2api.h DXVA_PictureParameters wDecodedPictureIndex
  2225. if ! enabled_any memalign memalign_hack posix_memalign malloc_aligned &&
  2226. enabled_any $need_memalign ; then
  2227. die "Error, no aligned memory allocator but SSE enabled, disable it or use --enable-memalign-hack."
  2228. fi
  2229. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  2230. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  2231. # check for some common methods of building with pthread support
  2232. # do this before the optional library checks as some of them require pthreads
  2233. if ! disabled pthreads && ! enabled w32threads; then
  2234. enable pthreads
  2235. if check_func pthread_create; then
  2236. :
  2237. elif check_func pthread_create -pthread; then
  2238. add_cflags -pthread
  2239. add_extralibs -pthread
  2240. elif check_func pthread_create -pthreads; then
  2241. add_cflags -pthreads
  2242. add_extralibs -pthreads
  2243. elif check_func pthread_create -lpthreadGC2; then
  2244. add_extralibs -lpthreadGC2
  2245. elif ! check_lib pthread.h pthread_create -lpthread; then
  2246. disable pthreads
  2247. fi
  2248. fi
  2249. for thread in $THREADS_LIST; do
  2250. if enabled $thread; then
  2251. test -n "$thread_type" &&
  2252. die "ERROR: Only one thread type must be selected." ||
  2253. thread_type="$thread"
  2254. fi
  2255. done
  2256. check_lib math.h sin -lm
  2257. disabled vaapi || check_lib va/va.h vaInitialize -lva
  2258. check_mathfunc exp2
  2259. check_mathfunc exp2f
  2260. check_mathfunc llrint
  2261. check_mathfunc llrintf
  2262. check_mathfunc log2
  2263. check_mathfunc log2f
  2264. check_mathfunc lrint
  2265. check_mathfunc lrintf
  2266. check_mathfunc round
  2267. check_mathfunc roundf
  2268. check_mathfunc truncf
  2269. # these are off by default, so fail if requested and not available
  2270. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
  2271. enabled libdirac && add_cflags $(pkg-config --cflags dirac) &&
  2272. require libdirac libdirac_decoder/dirac_parser.h dirac_decoder_init $(pkg-config --libs dirac) &&
  2273. require libdirac libdirac_encoder/dirac_encoder.h dirac_encoder_init $(pkg-config --libs dirac)
  2274. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  2275. enabled libgsm && require libgsm gsm/gsm.h gsm_create -lgsm
  2276. enabled libmp3lame && require libmp3lame lame/lame.h lame_init -lmp3lame
  2277. enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
  2278. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  2279. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  2280. enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
  2281. enabled librtmp && require librtmp librtmp/rtmp.h RTMP_Init $(pkg-config --libs librtmp)
  2282. enabled libschroedinger && add_cflags $(pkg-config --cflags schroedinger-1.0) &&
  2283. require libschroedinger schroedinger/schro.h schro_init $(pkg-config --libs schroedinger-1.0)
  2284. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  2285. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  2286. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  2287. enabled libvpx && require2 libvpx "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_dec_init_ver" -lvpx &&
  2288. require2 libvpx "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver" -lvpx
  2289. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
  2290. { check_cpp_condition x264.h "X264_BUILD >= 98" ||
  2291. die "ERROR: libx264 version must be >= 0.98."; }
  2292. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  2293. enabled mlib && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib
  2294. # libdc1394 check
  2295. if enabled libdc1394; then
  2296. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  2297. enable libdc1394_2; } ||
  2298. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  2299. enable libdc1394_1; } ||
  2300. die "ERROR: No version of libdc1394 found "
  2301. fi
  2302. SDL_CONFIG="${cross_prefix}sdl-config"
  2303. if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
  2304. sdl_cflags=$("${SDL_CONFIG}" --cflags)
  2305. sdl_libs=$("${SDL_CONFIG}" --libs)
  2306. check_func_headers SDL.h SDL_Init $sdl_cflags $sdl_libs &&
  2307. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  2308. enable sdl &&
  2309. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  2310. fi
  2311. texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
  2312. if enabled network; then
  2313. check_type "sys/types.h sys/socket.h" socklen_t
  2314. check_type netdb.h "struct addrinfo"
  2315. check_type netinet/in.h "struct ipv6_mreq"
  2316. check_type netinet/in.h "struct sockaddr_in6"
  2317. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  2318. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  2319. # Prefer arpa/inet.h over winsock2
  2320. if check_header arpa/inet.h ; then
  2321. check_func closesocket
  2322. elif check_header winsock2.h ; then
  2323. check_func_headers winsock2.h closesocket -lws2 && \
  2324. network_extralibs="-lws2" || \
  2325. { check_func_headers winsock2.h closesocket -lws2_32 && \
  2326. network_extralibs="-lws2_32"; }
  2327. check_type ws2tcpip.h socklen_t
  2328. check_type ws2tcpip.h "struct addrinfo"
  2329. check_type ws2tcpip.h "struct ipv6_mreq"
  2330. check_type ws2tcpip.h "struct sockaddr_in6"
  2331. check_type ws2tcpip.h "struct sockaddr_storage"
  2332. check_struct winsock2.h "struct sockaddr" sa_len
  2333. else
  2334. disable network
  2335. fi
  2336. fi
  2337. check_header linux/videodev.h
  2338. check_header linux/videodev2.h
  2339. check_header sys/videoio.h
  2340. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  2341. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  2342. { check_header dev/bktr/ioctl_meteor.h &&
  2343. check_header dev/bktr/ioctl_bt848.h; } ||
  2344. { check_header machine/ioctl_meteor.h &&
  2345. check_header machine/ioctl_bt848.h; } ||
  2346. { check_header dev/video/meteor/ioctl_meteor.h &&
  2347. check_header dev/video/bktr/ioctl_bt848.h; } ||
  2348. check_header dev/ic/bt8xx.h
  2349. check_header sys/soundcard.h
  2350. check_header soundcard.h
  2351. enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  2352. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack
  2353. enabled x11grab &&
  2354. check_header X11/Xlib.h &&
  2355. check_header X11/extensions/XShm.h &&
  2356. check_header X11/extensions/Xfixes.h &&
  2357. check_func XOpenDisplay -lX11 &&
  2358. check_func XShmCreateImage -lX11 -lXext &&
  2359. check_func XFixesGetCursorImage -lX11 -lXext -lXfixes
  2360. if ! disabled vdpau && enabled vdpau_vdpau_h; then
  2361. check_cpp_condition \
  2362. vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  2363. { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." &&
  2364. disable vdpau; }
  2365. fi
  2366. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  2367. # add some useful compiler flags if supported
  2368. check_cflags -Wdeclaration-after-statement
  2369. check_cflags -Wall
  2370. check_cflags -Wno-switch
  2371. check_cflags -Wdisabled-optimization
  2372. check_cflags -Wpointer-arith
  2373. check_cflags -Wredundant-decls
  2374. check_cflags -Wno-pointer-sign
  2375. check_cflags -Wcast-qual
  2376. check_cflags -Wwrite-strings
  2377. check_cflags -Wtype-limits
  2378. check_cflags -Wundef
  2379. check_cflags -Wmissing-prototypes
  2380. enabled extra_warnings && check_cflags -Winline
  2381. # add some linker flags
  2382. check_ldflags -Wl,--warn-common
  2383. check_ldflags -Wl,--as-needed
  2384. check_ldflags '-Wl,-rpath-link,\$(BUILD_ROOT)/libpostproc -Wl,-rpath-link,\$(BUILD_ROOT)/libswscale -Wl,-rpath-link,\$(BUILD_ROOT)/libavfilter -Wl,-rpath-link,\$(BUILD_ROOT)/libavdevice -Wl,-rpath-link,\$(BUILD_ROOT)/libavformat -Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec -Wl,-rpath-link,\$(BUILD_ROOT)/libavutil'
  2385. check_ldflags -Wl,-Bsymbolic
  2386. echo "X{};" > $TMPV
  2387. if test_ldflags -Wl,--version-script,$TMPV; then
  2388. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  2389. check_cc <<EOF && enable symver_asm_label
  2390. void ff_foo(void) __asm__ ("av_foo@VERSION");
  2391. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  2392. EOF
  2393. check_cc <<EOF && enable symver_gnu_asm
  2394. __asm__(".symver ff_foo,av_foo@VERSION");
  2395. void ff_foo(void) {}
  2396. EOF
  2397. fi
  2398. if enabled small; then
  2399. add_cflags $size_cflags
  2400. optimizations="small"
  2401. elif enabled optimizations; then
  2402. add_cflags $speed_cflags
  2403. else
  2404. add_cflags $noopt_cflags
  2405. fi
  2406. check_cflags -fno-math-errno
  2407. check_cflags -fno-signed-zeros
  2408. if enabled icc; then
  2409. # Just warnings, no remarks
  2410. check_cflags -w1
  2411. # -wd: Disable following warnings
  2412. # 144, 167, 556: -Wno-pointer-sign
  2413. # 10006: ignoring unknown option -fno-signed-zeros
  2414. # 10156: ignoring option '-W'; no argument required
  2415. check_cflags -wd144,167,556,10006,10156
  2416. # 11030: Warning unknown option --as-needed
  2417. # 10156: ignoring option '-export'; no argument required
  2418. check_ldflags -wd10156,11030
  2419. # Allow to compile with optimizations
  2420. check_ldflags -march=$cpu
  2421. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  2422. enable ebp_available
  2423. elif enabled ccc; then
  2424. # disable some annoying warnings
  2425. add_cflags -msg_disable cvtu32to64
  2426. add_cflags -msg_disable embedcomment
  2427. add_cflags -msg_disable needconstext
  2428. add_cflags -msg_disable nomainieee
  2429. add_cflags -msg_disable ptrmismatch1
  2430. add_cflags -msg_disable unreachcode
  2431. elif enabled gcc; then
  2432. check_cflags -fno-tree-vectorize
  2433. check_cflags -Werror=implicit-function-declaration
  2434. check_cflags -Werror=missing-prototypes
  2435. elif enabled clang; then
  2436. check_cflags -Qunused-arguments
  2437. elif enabled armcc; then
  2438. # 2523: use of inline assembler is deprecated
  2439. add_cflags -Wrvct,--diag_suppress=2523
  2440. add_cflags -Wrvct,--diag_suppress=1207
  2441. elif enabled tms470; then
  2442. add_cflags -pds=824 -pds=837
  2443. fi
  2444. enabled_any $THREADS_LIST && enable threads
  2445. check_deps $CONFIG_LIST \
  2446. $CONFIG_EXTRA \
  2447. $HAVE_LIST \
  2448. $DECODER_LIST \
  2449. $ENCODER_LIST \
  2450. $HWACCEL_LIST \
  2451. $PARSER_LIST \
  2452. $BSF_LIST \
  2453. $DEMUXER_LIST \
  2454. $MUXER_LIST \
  2455. $FILTER_LIST \
  2456. $INDEV_LIST \
  2457. $OUTDEV_LIST \
  2458. $PROTOCOL_LIST \
  2459. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  2460. echo "install prefix $prefix"
  2461. echo "source path $source_path"
  2462. echo "C compiler $cc"
  2463. echo "ARCH $arch ($cpu)"
  2464. if test "$build_suffix" != ""; then
  2465. echo "build suffix $build_suffix"
  2466. fi
  2467. if test "$extra_version" != ""; then
  2468. echo "version string suffix $extra_version"
  2469. fi
  2470. echo "big-endian ${bigendian-no}"
  2471. echo "runtime cpu detection ${runtime_cpudetect-no}"
  2472. if enabled x86; then
  2473. echo "yasm ${yasm-no}"
  2474. echo "MMX enabled ${mmx-no}"
  2475. echo "MMX2 enabled ${mmx2-no}"
  2476. echo "3DNow! enabled ${amd3dnow-no}"
  2477. echo "3DNow! extended enabled ${amd3dnowext-no}"
  2478. echo "SSE enabled ${sse-no}"
  2479. echo "SSSE3 enabled ${ssse3-no}"
  2480. echo "CMOV enabled ${cmov-no}"
  2481. echo "CMOV is fast ${fast_cmov-no}"
  2482. echo "EBX available ${ebx_available-no}"
  2483. echo "EBP available ${ebp_available-no}"
  2484. echo "10 operands supported ${ten_operands-no}"
  2485. fi
  2486. if enabled arm; then
  2487. echo "ARMv5TE enabled ${armv5te-no}"
  2488. echo "ARMv6 enabled ${armv6-no}"
  2489. echo "ARMv6T2 enabled ${armv6t2-no}"
  2490. echo "ARM VFP enabled ${armvfp-no}"
  2491. echo "IWMMXT enabled ${iwmmxt-no}"
  2492. echo "NEON enabled ${neon-no}"
  2493. fi
  2494. if enabled mips; then
  2495. echo "MMI enabled ${mmi-no}"
  2496. fi
  2497. if enabled ppc; then
  2498. echo "AltiVec enabled ${altivec-no}"
  2499. echo "PPC 4xx optimizations ${ppc4xx-no}"
  2500. echo "dcbzl available ${dcbzl-no}"
  2501. fi
  2502. if enabled sparc; then
  2503. echo "VIS enabled ${vis-no}"
  2504. fi
  2505. echo "debug symbols ${debug-no}"
  2506. echo "strip symbols ${stripping-no}"
  2507. echo "optimizations ${optimizations-no}"
  2508. echo "static ${static-no}"
  2509. echo "shared ${shared-no}"
  2510. echo "postprocessing support ${postproc-no}"
  2511. echo "new filter support ${avfilter-no}"
  2512. echo "filters using lavformat ${avfilter_lavf-no}"
  2513. echo "network support ${network-no}"
  2514. echo "threading support ${thread_type-no}"
  2515. echo "SDL support ${sdl-no}"
  2516. echo "Sun medialib support ${mlib-no}"
  2517. echo "AVISynth enabled ${avisynth-no}"
  2518. echo "libdc1394 support ${libdc1394-no}"
  2519. echo "libdirac enabled ${libdirac-no}"
  2520. echo "libfaac enabled ${libfaac-no}"
  2521. echo "libgsm enabled ${libgsm-no}"
  2522. echo "libmp3lame enabled ${libmp3lame-no}"
  2523. echo "libnut enabled ${libnut-no}"
  2524. echo "libopencore-amrnb support ${libopencore_amrnb-no}"
  2525. echo "libopencore-amrwb support ${libopencore_amrwb-no}"
  2526. echo "libopenjpeg enabled ${libopenjpeg-no}"
  2527. echo "librtmp enabled ${librtmp-no}"
  2528. echo "libschroedinger enabled ${libschroedinger-no}"
  2529. echo "libspeex enabled ${libspeex-no}"
  2530. echo "libtheora enabled ${libtheora-no}"
  2531. echo "libvorbis enabled ${libvorbis-no}"
  2532. echo "libvpx enabled ${libvpx-no}"
  2533. echo "libx264 enabled ${libx264-no}"
  2534. echo "libxvid enabled ${libxvid-no}"
  2535. echo "zlib enabled ${zlib-no}"
  2536. echo "bzlib enabled ${bzlib-no}"
  2537. echo
  2538. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  2539. echo "Enabled ${type}s:"
  2540. eval list=\$$(toupper $type)_LIST
  2541. for part in $list; do
  2542. enabled $part && echo ${part%_*}
  2543. done | sort | pr -3 -t
  2544. echo
  2545. done
  2546. license="LGPL version 2.1 or later"
  2547. if enabled nonfree; then
  2548. license="nonfree and unredistributable"
  2549. elif enabled gplv3; then
  2550. license="GPL version 3 or later"
  2551. elif enabled lgplv3; then
  2552. license="LGPL version 3 or later"
  2553. elif enabled gpl; then
  2554. license="GPL version 2 or later"
  2555. fi
  2556. echo "License: $license"
  2557. echo "Creating config.mak and config.h..."
  2558. # build tree in object directory if source path is different from current one
  2559. if enabled source_path_used; then
  2560. DIRS="
  2561. doc
  2562. libavcodec
  2563. libavcodec/$arch
  2564. libavdevice
  2565. libavfilter
  2566. libavformat
  2567. libavutil
  2568. libavutil/$arch
  2569. libpostproc
  2570. libswscale
  2571. libswscale/$arch
  2572. tests
  2573. tools
  2574. "
  2575. FILES="
  2576. Makefile
  2577. common.mak
  2578. subdir.mak
  2579. doc/texi2pod.pl
  2580. libavcodec/Makefile
  2581. libavcodec/${arch}/Makefile
  2582. libavdevice/Makefile
  2583. libavfilter/Makefile
  2584. libavformat/Makefile
  2585. libavutil/Makefile
  2586. libpostproc/Makefile
  2587. libswscale/Makefile
  2588. "
  2589. map 'mkdir -p $v' $DIRS;
  2590. map 'test -f "$source_path/$v" && $ln_s "$source_path/$v" $v' $FILES
  2591. fi
  2592. enabled stripping || strip="echo skipping strip"
  2593. cat > config.mak <<EOF
  2594. # Automatically generated by configure - do not modify!
  2595. ifndef FFMPEG_CONFIG_MAK
  2596. FFMPEG_CONFIG_MAK=1
  2597. FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
  2598. prefix=$prefix
  2599. LIBDIR=\$(DESTDIR)$libdir
  2600. SHLIBDIR=\$(DESTDIR)$shlibdir
  2601. INCDIR=\$(DESTDIR)$incdir
  2602. BINDIR=\$(DESTDIR)$bindir
  2603. DATADIR=\$(DESTDIR)$datadir
  2604. MANDIR=\$(DESTDIR)$mandir
  2605. SRC_PATH="$source_path"
  2606. SRC_PATH_BARE=$source_path
  2607. BUILD_ROOT="$PWD"
  2608. ARCH=$arch
  2609. CC=$cc
  2610. AS=$as
  2611. LD=$ld
  2612. DEPCC=$dep_cc
  2613. YASM=$yasmexe
  2614. YASMDEP=$yasmexe
  2615. AR=$ar
  2616. RANLIB=$ranlib
  2617. CP=cp -p
  2618. LN_S=$ln_s
  2619. STRIP=$strip
  2620. CPPFLAGS=$CPPFLAGS
  2621. CFLAGS=$CFLAGS
  2622. ASFLAGS=$ASFLAGS
  2623. CC_O=$CC_O
  2624. LDFLAGS=$LDFLAGS
  2625. FFSERVERLDFLAGS=$FFSERVERLDFLAGS
  2626. SHFLAGS=$SHFLAGS
  2627. YASMFLAGS=$YASMFLAGS
  2628. BUILDSUF=$build_suffix
  2629. FULLNAME=$FULLNAME
  2630. LIBPREF=$LIBPREF
  2631. LIBSUF=$LIBSUF
  2632. LIBNAME=$LIBNAME
  2633. SLIBPREF=$SLIBPREF
  2634. SLIBSUF=$SLIBSUF
  2635. EXESUF=$EXESUF
  2636. EXTRA_VERSION=$extra_version
  2637. DEPFLAGS=$DEPFLAGS
  2638. CCDEP=$CCDEP
  2639. ASDEP=$ASDEP
  2640. CC_DEPFLAGS=$CC_DEPFLAGS
  2641. AS_DEPFLAGS=$AS_DEPFLAGS
  2642. HOSTCC=$host_cc
  2643. HOSTCFLAGS=$host_cflags
  2644. HOSTEXESUF=$HOSTEXESUF
  2645. HOSTLDFLAGS=$host_ldflags
  2646. HOSTLIBS=$host_libs
  2647. TARGET_EXEC=$target_exec
  2648. TARGET_PATH=$target_path
  2649. SDL_LIBS=$sdl_libs
  2650. SDL_CFLAGS=$sdl_cflags
  2651. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  2652. EXTRALIBS=$extralibs
  2653. INSTALL=install
  2654. LIBTARGET=${LIBTARGET}
  2655. SLIBNAME=${SLIBNAME}
  2656. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  2657. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  2658. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  2659. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  2660. SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD}
  2661. SLIB_UNINSTALL_EXTRA_CMD=${SLIB_UNINSTALL_EXTRA_CMD}
  2662. SAMPLES=$samples
  2663. EOF
  2664. get_version(){
  2665. name=$1
  2666. file=$source_path/$2
  2667. eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
  2668. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  2669. lcname=$(tolower $name)
  2670. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  2671. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  2672. }
  2673. get_version LIBSWSCALE libswscale/swscale.h
  2674. get_version LIBPOSTPROC libpostproc/postprocess.h
  2675. get_version LIBAVCODEC libavcodec/avcodec.h
  2676. get_version LIBAVDEVICE libavdevice/avdevice.h
  2677. get_version LIBAVFORMAT libavformat/avformat.h
  2678. get_version LIBAVUTIL libavutil/avutil.h
  2679. get_version LIBAVFILTER libavfilter/avfilter.h
  2680. cat > $TMPH <<EOF
  2681. /* Automatically generated by configure - do not modify! */
  2682. #ifndef FFMPEG_CONFIG_H
  2683. #define FFMPEG_CONFIG_H
  2684. #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
  2685. #define FFMPEG_LICENSE "$(c_escape $license)"
  2686. #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
  2687. #define CC_TYPE "$cc_type"
  2688. #define CC_VERSION $cc_version
  2689. #define restrict $_restrict
  2690. #define ASMALIGN(ZEROBITS) ".p2align " #ZEROBITS "\\n\\t"
  2691. #define EXTERN_PREFIX "${extern_prefix}"
  2692. #define EXTERN_ASM ${extern_prefix}
  2693. EOF
  2694. test -n "$malloc_prefix" &&
  2695. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  2696. if enabled small || disabled optimizations; then
  2697. echo "#undef av_always_inline" >> $TMPH
  2698. echo "#define av_always_inline" >> $TMPH
  2699. fi
  2700. print_config ARCH_ $TMPH config.mak $ARCH_LIST
  2701. print_config HAVE_ $TMPH config.mak $HAVE_LIST
  2702. print_config CONFIG_ $TMPH config.mak $CONFIG_LIST \
  2703. $CONFIG_EXTRA \
  2704. $DECODER_LIST \
  2705. $ENCODER_LIST \
  2706. $HWACCEL_LIST \
  2707. $PARSER_LIST \
  2708. $BSF_LIST \
  2709. $DEMUXER_LIST \
  2710. $MUXER_LIST \
  2711. $FILTER_LIST \
  2712. $PROTOCOL_LIST \
  2713. $INDEV_LIST \
  2714. $OUTDEV_LIST \
  2715. echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
  2716. echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
  2717. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  2718. cp_if_changed $TMPH config.h
  2719. cat > $TMPH <<EOF
  2720. /* Generated by ffconf */
  2721. #ifndef AVUTIL_AVCONFIG_H
  2722. #define AVUTIL_AVCONFIG_H
  2723. EOF
  2724. print_config AV_HAVE_ $TMPH /dev/null $HAVE_LIST_PUB
  2725. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  2726. cp_if_changed $TMPH libavutil/avconfig.h
  2727. test -n "$WARNINGS" && printf "\n$WARNINGS"
  2728. # build pkg-config files
  2729. pkgconfig_generate(){
  2730. name=$1
  2731. shortname=${name#lib}${build_suffix}
  2732. comment=$2
  2733. version=$3
  2734. libs=$4
  2735. requires=$5
  2736. cat <<EOF > $name/$name.pc
  2737. prefix=$prefix
  2738. exec_prefix=\${prefix}
  2739. libdir=$libdir
  2740. includedir=$incdir
  2741. Name: $name
  2742. Description: $comment
  2743. Version: $version
  2744. Requires: $(enabled shared || echo $requires)
  2745. Requires.private: $(enabled shared && echo $requires)
  2746. Conflicts:
  2747. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  2748. Libs.private: $(enabled shared && echo $libs)
  2749. Cflags: -I\${includedir}
  2750. EOF
  2751. cat <<EOF > $name/$name-uninstalled.pc
  2752. prefix=
  2753. exec_prefix=
  2754. libdir=\${pcfiledir}
  2755. includedir=${source_path}
  2756. Name: $name
  2757. Description: $comment
  2758. Version: $version
  2759. Requires: $requires
  2760. Conflicts:
  2761. Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
  2762. Cflags: -I\${includedir}
  2763. EOF
  2764. }
  2765. pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION"
  2766. pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  2767. pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  2768. pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
  2769. enabled avfilter &&
  2770. pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  2771. enabled postproc &&
  2772. pkgconfig_generate libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION"
  2773. pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"