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.

3789 lines
115KB

  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-swresample disable libswresample build
  82. --disable-swscale disable libswscale build
  83. --disable-postproc disable libpostproc build
  84. --disable-avfilter disable video filter support [no]
  85. --disable-pthreads disable pthreads [auto]
  86. --disable-w32threads disable Win32 threads [auto]
  87. --disable-os2threads disable OS/2 threads [auto]
  88. --enable-x11grab enable X11 grabbing [no]
  89. --disable-network disable network support [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-huffman disable Huffman code
  99. --disable-lpc disable LPC code
  100. --disable-mdct disable MDCT code
  101. --disable-rdft disable RDFT code
  102. --enable-vaapi enable VAAPI code [autodetect]
  103. --enable-vda enable VDA code [autodetect]
  104. --enable-vdpau enable VDPAU code [autodetect]
  105. --disable-dxva2 disable DXVA2 code
  106. --disable-vda disable VDA code
  107. --enable-runtime-cpudetect detect cpu capabilities at runtime (bigger binary)
  108. --enable-hardcoded-tables use hardcoded tables instead of runtime generation
  109. --disable-safe-bitstream-reader
  110. disable buffer boundary checking in bitreaders
  111. (faster, but may crash)
  112. --enable-memalign-hack emulate memalign, interferes with memory debuggers
  113. --disable-everything disable all components listed below
  114. --disable-encoder=NAME disable encoder NAME
  115. --enable-encoder=NAME enable encoder NAME
  116. --disable-encoders disable all encoders
  117. --disable-decoder=NAME disable decoder NAME
  118. --enable-decoder=NAME enable decoder NAME
  119. --disable-decoders disable all decoders
  120. --disable-hwaccel=NAME disable hwaccel NAME
  121. --enable-hwaccel=NAME enable hwaccel NAME
  122. --disable-hwaccels disable all hwaccels
  123. --disable-muxer=NAME disable muxer NAME
  124. --enable-muxer=NAME enable muxer NAME
  125. --disable-muxers disable all muxers
  126. --disable-demuxer=NAME disable demuxer NAME
  127. --enable-demuxer=NAME enable demuxer NAME
  128. --disable-demuxers disable all demuxers
  129. --enable-parser=NAME enable parser NAME
  130. --disable-parser=NAME disable parser NAME
  131. --disable-parsers disable all parsers
  132. --enable-bsf=NAME enable bitstream filter NAME
  133. --disable-bsf=NAME disable bitstream filter NAME
  134. --disable-bsfs disable all bitstream filters
  135. --enable-protocol=NAME enable protocol NAME
  136. --disable-protocol=NAME disable protocol NAME
  137. --disable-protocols disable all protocols
  138. --disable-indev=NAME disable input device NAME
  139. --disable-outdev=NAME disable output device NAME
  140. --disable-indevs disable input devices
  141. --disable-outdevs disable output devices
  142. --disable-devices disable all devices
  143. --enable-filter=NAME enable filter NAME
  144. --disable-filter=NAME disable filter NAME
  145. --disable-filters disable all filters
  146. --list-decoders show all available decoders
  147. --list-encoders show all available encoders
  148. --list-hwaccels show all available hardware accelerators
  149. --list-muxers show all available muxers
  150. --list-demuxers show all available demuxers
  151. --list-parsers show all available parsers
  152. --list-protocols show all available protocols
  153. --list-bsfs show all available bitstream filters
  154. --list-indevs show all available input devices
  155. --list-outdevs show all available output devices
  156. --list-filters show all available filters
  157. External library support:
  158. --enable-avisynth enable reading of AVISynth script files [no]
  159. --enable-bzlib enable bzlib [autodetect]
  160. --enable-frei0r enable frei0r video filtering
  161. --enable-gnutls enable gnutls [no]
  162. --enable-libaacplus enable AAC+ encoding via libaacplus [no]
  163. --enable-libass enable libass subtitles rendering [no]
  164. --enable-libcelt enable CELT decoding via libcelt [no]
  165. --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
  166. --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
  167. --enable-libopencv enable video filtering via libopencv [no]
  168. --enable-libcdio enable audio CD grabbing with libcdio
  169. --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
  170. and libraw1394 [no]
  171. --enable-libdirac enable Dirac support via libdirac [no]
  172. --enable-libfaac enable FAAC support via libfaac [no]
  173. --enable-libfreetype enable libfreetype [no]
  174. --enable-libgsm enable GSM support via libgsm [no]
  175. --enable-libmodplug enable ModPlug via libmodplug [no]
  176. --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
  177. --enable-libnut enable NUT (de)muxing via libnut,
  178. native (de)muxer exists [no]
  179. --enable-libopenjpeg enable JPEG 2000 encoding/decoding via OpenJPEG [no]
  180. --enable-libpulse enable Pulseaudio input via libpulse [no]
  181. --enable-librtmp enable RTMP[E] support via librtmp [no]
  182. --enable-libschroedinger enable Dirac support via libschroedinger [no]
  183. --enable-libspeex enable Speex support via libspeex [no]
  184. --enable-libstagefright-h264 enable H.264 decoding via libstagefright [no]
  185. --enable-libtheora enable Theora encoding via libtheora [no]
  186. --enable-libutvideo enable Ut Video decoding via libutvideo [no]
  187. --enable-libv4l2 enable libv4l2/v4l-utils [no]
  188. --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
  189. --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
  190. --enable-libvorbis enable Vorbis encoding via libvorbis,
  191. native implementation exists [no]
  192. --enable-libvpx enable VP8 support via libvpx [no]
  193. --enable-libx264 enable H.264 encoding via x264 [no]
  194. --enable-libxavs enable AVS encoding via xavs [no]
  195. --enable-libxvid enable Xvid encoding via xvidcore,
  196. native MPEG-4/Xvid encoder exists [no]
  197. --enable-openal enable OpenAL 1.1 capture support [no]
  198. --enable-openssl enable openssl [no]
  199. --enable-zlib enable zlib [autodetect]
  200. Advanced options (experts only):
  201. --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
  202. --enable-cross-compile assume a cross-compiler is used
  203. --sysroot=PATH root of cross-build tree
  204. --sysinclude=PATH location of cross-build system headers
  205. --target-os=OS compiler targets OS [$target_os]
  206. --target-exec=CMD command to run executables on target
  207. --target-path=DIR path to view of build directory on target
  208. --nm=NM use nm tool NM [$nm_default]
  209. --ar=AR use archive tool AR [$ar_default]
  210. --as=AS use assembler AS [$as_default]
  211. --yasmexe=EXE use yasm-compatible assembler EXE [$yasmexe_default]
  212. --cc=CC use C compiler CC [$cc_default]
  213. --cxx=CXX use C compiler CXX [$cxx_default]
  214. --ld=LD use linker LD [$ld_default]
  215. --host-cc=HOSTCC use host C compiler HOSTCC
  216. --host-cflags=HCFLAGS use HCFLAGS when compiling for host
  217. --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
  218. --host-libs=HLIBS use libs HLIBS when linking for host
  219. --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
  220. --extra-cxxflags=ECFLAGS add ECFLAGS to CXXFLAGS [$CXXFLAGS]
  221. --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
  222. --extra-libs=ELIBS add ELIBS [$ELIBS]
  223. --extra-version=STRING version string suffix []
  224. --build-suffix=SUFFIX library name suffix []
  225. --progs-suffix=SUFFIX program name suffix []
  226. --arch=ARCH select architecture [$arch]
  227. --cpu=CPU select the minimum required CPU (affects
  228. instruction selection, may crash on older CPUs)
  229. --disable-asm disable all assembler optimizations
  230. --disable-altivec disable AltiVec optimizations
  231. --disable-amd3dnow disable 3DNow! optimizations
  232. --disable-amd3dnowext disable 3DNow! extended optimizations
  233. --disable-mmx disable MMX optimizations
  234. --disable-mmx2 disable MMX2 optimizations
  235. --disable-sse disable SSE optimizations
  236. --disable-ssse3 disable SSSE3 optimizations
  237. --disable-avx disable AVX optimizations
  238. --disable-armv5te disable armv5te optimizations
  239. --disable-armv6 disable armv6 optimizations
  240. --disable-armv6t2 disable armv6t2 optimizations
  241. --disable-armvfp disable ARM VFP optimizations
  242. --disable-iwmmxt disable iwmmxt optimizations
  243. --disable-mmi disable MMI optimizations
  244. --disable-neon disable NEON optimizations
  245. --disable-vis disable VIS optimizations
  246. --disable-yasm disable use of yasm assembler
  247. --enable-pic build position-independent code
  248. --malloc-prefix=PFX prefix malloc and related names with PFX
  249. --enable-sram allow use of on-chip SRAM
  250. --disable-symver disable symbol versioning
  251. --optflags override optimization-related compiler flags
  252. --postproc-version=V build libpostproc version V.
  253. Where V can be '$ALT_PP_VER_MAJOR.$ALT_PP_VER_MINOR.$ALT_PP_VER_MICRO' or 'current'. [$postproc_version_default]
  254. Developer options (useful when working on FFmpeg itself):
  255. --enable-coverage build with test coverage instrumentation
  256. --disable-debug disable debugging symbols
  257. --enable-debug=LEVEL set the debug level [$debuglevel]
  258. --disable-optimizations disable compiler optimizations
  259. --enable-extra-warnings enable more compiler warnings
  260. --disable-stripping disable stripping of executables and shared libraries
  261. --valgrind=VALGRIND run "make fate" tests through valgrind to detect memory
  262. leaks and errors, using the specified valgrind binary.
  263. Cannot be combined with --target-exec
  264. --samples=PATH location of test samples for FATE, if not set use
  265. \$FATE_SAMPLES at make invocation time.
  266. --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
  267. should be used only for debugging purposes)
  268. NOTE: Object files are built at the place where configure is launched.
  269. EOF
  270. exit 0
  271. }
  272. quotes='""'
  273. log(){
  274. echo "$@" >> $logfile
  275. }
  276. log_file(){
  277. log BEGIN $1
  278. pr -n -t $1 >> $logfile
  279. log END $1
  280. }
  281. echolog(){
  282. log "$@"
  283. echo "$@"
  284. }
  285. warn(){
  286. log "WARNING: $*"
  287. WARNINGS="${WARNINGS}WARNING: $*\n"
  288. }
  289. die(){
  290. echolog "$@"
  291. cat <<EOF
  292. If you think configure made a mistake, make sure you are using the latest
  293. version from Git. If the latest version fails, report the problem to the
  294. ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
  295. EOF
  296. if disabled logging; then
  297. cat <<EOF
  298. Rerun configure with logging enabled (do not use --disable-logging), and
  299. include the log this produces with your report.
  300. EOF
  301. else
  302. cat <<EOF
  303. Include the log file "$logfile" produced by configure as this will help
  304. solving the problem.
  305. EOF
  306. fi
  307. exit 1
  308. }
  309. # Avoid locale weirdness, besides we really just want to translate ASCII.
  310. toupper(){
  311. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  312. }
  313. tolower(){
  314. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  315. }
  316. c_escape(){
  317. echo "$*" | sed 's/["\\]/\\\0/g'
  318. }
  319. sh_quote(){
  320. v=$(echo "$1" | sed "s/'/'\\\\''/g")
  321. test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
  322. echo "$v"
  323. }
  324. cleanws(){
  325. echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//'
  326. }
  327. filter(){
  328. pat=$1
  329. shift
  330. for v; do
  331. eval "case $v in $pat) echo $v ;; esac"
  332. done
  333. }
  334. filter_out(){
  335. pat=$1
  336. shift
  337. for v; do
  338. eval "case $v in $pat) ;; *) echo $v ;; esac"
  339. done
  340. }
  341. map(){
  342. m=$1
  343. shift
  344. for v; do eval $m; done
  345. }
  346. set_all(){
  347. value=$1
  348. shift
  349. for var in $*; do
  350. eval $var=$value
  351. done
  352. }
  353. set_weak(){
  354. value=$1
  355. shift
  356. for var; do
  357. eval : \${$var:=$value}
  358. done
  359. }
  360. set_safe(){
  361. var=$1
  362. shift
  363. eval $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')='$*'
  364. }
  365. get_safe(){
  366. eval echo \$$(echo "$1" | sed 's/[^A-Za-z0-9_]/_/g')
  367. }
  368. pushvar(){
  369. for var in $*; do
  370. eval level=\${${var}_level:=0}
  371. eval ${var}_${level}="\$$var"
  372. eval ${var}_level=$(($level+1))
  373. done
  374. }
  375. popvar(){
  376. for var in $*; do
  377. eval level=\${${var}_level:-0}
  378. test $level = 0 && continue
  379. eval level=$(($level-1))
  380. eval $var="\${${var}_${level}}"
  381. eval ${var}_level=$level
  382. eval unset ${var}_${level}
  383. done
  384. }
  385. enable(){
  386. set_all yes $*
  387. }
  388. disable(){
  389. set_all no $*
  390. }
  391. enable_weak(){
  392. set_weak yes $*
  393. }
  394. disable_weak(){
  395. set_weak no $*
  396. }
  397. enable_safe(){
  398. for var; do
  399. enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  400. done
  401. }
  402. disable_safe(){
  403. for var; do
  404. disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  405. done
  406. }
  407. do_enable_deep(){
  408. for var; do
  409. enabled $var && continue
  410. eval sel="\$${var}_select"
  411. eval sgs="\$${var}_suggest"
  412. pushvar var sgs
  413. enable_deep $sel
  414. popvar sgs
  415. enable_deep_weak $sgs
  416. popvar var
  417. done
  418. }
  419. enable_deep(){
  420. do_enable_deep $*
  421. enable $*
  422. }
  423. enable_deep_weak(){
  424. do_enable_deep $*
  425. enable_weak $*
  426. }
  427. enabled(){
  428. test "${1#!}" = "$1" && op== || op=!=
  429. eval test "x\$${1#!}" $op "xyes"
  430. }
  431. disabled(){
  432. test "${1#!}" = "$1" && op== || op=!=
  433. eval test "x\$${1#!}" $op "xno"
  434. }
  435. enabled_all(){
  436. for opt; do
  437. enabled $opt || return 1
  438. done
  439. }
  440. disabled_all(){
  441. for opt; do
  442. disabled $opt || return 1
  443. done
  444. }
  445. enabled_any(){
  446. for opt; do
  447. enabled $opt && return 0
  448. done
  449. }
  450. disabled_any(){
  451. for opt; do
  452. disabled $opt && return 0
  453. done
  454. return 1
  455. }
  456. set_default(){
  457. for opt; do
  458. eval : \${$opt:=\$${opt}_default}
  459. done
  460. }
  461. is_in(){
  462. value=$1
  463. shift
  464. for var in $*; do
  465. [ $var = $value ] && return 0
  466. done
  467. return 1
  468. }
  469. check_deps(){
  470. for cfg; do
  471. cfg="${cfg#!}"
  472. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  473. disabled ${cfg}_checking && continue
  474. enable ${cfg}_checking
  475. eval dep_all="\$${cfg}_deps"
  476. eval dep_any="\$${cfg}_deps_any"
  477. eval dep_sel="\$${cfg}_select"
  478. eval dep_sgs="\$${cfg}_suggest"
  479. eval dep_ifa="\$${cfg}_if"
  480. eval dep_ifn="\$${cfg}_if_any"
  481. pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  482. check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
  483. popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  484. [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
  485. [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
  486. enabled_all $dep_all || disable $cfg
  487. enabled_any $dep_any || disable $cfg
  488. disabled_any $dep_sel && disable $cfg
  489. if enabled $cfg; then
  490. eval dep_extralibs="\$${cfg}_extralibs"
  491. test -n "$dep_extralibs" && add_extralibs $dep_extralibs
  492. enable_deep $dep_sel
  493. enable_deep_weak $dep_sgs
  494. fi
  495. disable ${cfg}_checking
  496. done
  497. }
  498. print_config_h(){
  499. enabled $1 && v=1 || v=0
  500. echo "#define $2 $v"
  501. }
  502. print_config_mak(){
  503. enabled $1 && v= || v=!
  504. echo "$v$2=yes"
  505. }
  506. print_config_asm(){
  507. enabled $1 && v=1 || v=0
  508. echo "%define $2 $v"
  509. }
  510. print_config(){
  511. pfx=$1
  512. files=$2
  513. shift 2
  514. for cfg; do
  515. ucname="$(toupper $cfg)"
  516. for f in $files; do
  517. "print_config_${f##*.}" $cfg ${pfx}${ucname} >>$f
  518. done
  519. done
  520. }
  521. print_enabled(){
  522. test "$1" = -n && end=" " && shift || end="\n"
  523. suf=$1
  524. shift
  525. for v; do
  526. enabled $v && printf "%s$end" ${v%$suf};
  527. done
  528. }
  529. append(){
  530. var=$1
  531. shift
  532. eval "$var=\"\$$var $*\""
  533. }
  534. prepend(){
  535. var=$1
  536. shift
  537. eval "$var=\"$* \$$var\""
  538. }
  539. add_cppflags(){
  540. append CPPFLAGS $($filter_cppflags "$@")
  541. }
  542. add_cflags(){
  543. append CFLAGS $($filter_cflags "$@")
  544. }
  545. add_cxxflags(){
  546. append CXXFLAGS $($filter_cflags "$@")
  547. }
  548. add_asflags(){
  549. append ASFLAGS $($filter_asflags "$@")
  550. }
  551. add_ldflags(){
  552. append LDFLAGS "$@"
  553. }
  554. add_extralibs(){
  555. prepend extralibs "$@"
  556. }
  557. check_cmd(){
  558. log "$@"
  559. "$@" >> $logfile 2>&1
  560. }
  561. check_cc(){
  562. log check_cc "$@"
  563. cat > $TMPC
  564. log_file $TMPC
  565. check_cmd $cc $CPPFLAGS $CFLAGS "$@" -c -o $TMPO $TMPC
  566. }
  567. check_cxx(){
  568. log check_cxx "$@"
  569. cat > $TMPCPP
  570. log_file $TMPCPP
  571. check_cmd $cxx $CPPFLAGS $CFLAGS $CXXFLAGS "$@" -c -o $TMPO $TMPCPP
  572. }
  573. check_cpp(){
  574. log check_cpp "$@"
  575. cat > $TMPC
  576. log_file $TMPC
  577. check_cmd $cc $CPPFLAGS $CFLAGS "$@" -E -o $TMPO $TMPC
  578. }
  579. check_as(){
  580. log check_as "$@"
  581. cat > $TMPC
  582. log_file $TMPC
  583. check_cmd $as $CPPFLAGS $ASFLAGS "$@" -c -o $TMPO $TMPC
  584. }
  585. check_asm(){
  586. log check_asm "$@"
  587. name="$1"
  588. code="$2"
  589. shift 2
  590. disable $name
  591. check_as "$@" <<EOF && enable $name
  592. void foo(void){ __asm__ volatile($code); }
  593. EOF
  594. }
  595. check_yasm(){
  596. log check_yasm "$@"
  597. echo "$1" > $TMPS
  598. log_file $TMPS
  599. shift 1
  600. check_cmd $yasmexe $YASMFLAGS "$@" -o $TMPO $TMPS
  601. }
  602. check_ld(){
  603. log check_ld "$@"
  604. type=$1
  605. shift 1
  606. flags=''
  607. libs=''
  608. for f; do
  609. test "${f}" = "${f#-l}" && flags="$flags $f" || libs="$libs $f"
  610. done
  611. check_$type $($filter_cflags $flags) || return
  612. check_cmd $ld $LDFLAGS $flags -o $TMPE $TMPO $libs $extralibs
  613. }
  614. check_cppflags(){
  615. log check_cppflags "$@"
  616. set -- $($filter_cppflags "$@")
  617. check_cc "$@" <<EOF && append CPPFLAGS "$@"
  618. int x;
  619. EOF
  620. }
  621. check_cflags(){
  622. log check_cflags "$@"
  623. set -- $($filter_cflags "$@")
  624. check_cc "$@" <<EOF && append CFLAGS "$@"
  625. int x;
  626. EOF
  627. }
  628. check_cxxflags(){
  629. log check_cxxflags "$@"
  630. set -- $($filter_cflags "$@")
  631. check_cxx "$@" <<EOF && append CXXFLAGS "$@"
  632. int x;
  633. EOF
  634. }
  635. test_ldflags(){
  636. log test_ldflags "$@"
  637. check_ld "cc" "$@" <<EOF
  638. int main(void){ return 0; }
  639. EOF
  640. }
  641. check_ldflags(){
  642. log check_ldflags "$@"
  643. test_ldflags "$@" && add_ldflags "$@"
  644. }
  645. check_header(){
  646. log check_header "$@"
  647. header=$1
  648. shift
  649. disable_safe $header
  650. check_cpp "$@" <<EOF && enable_safe $header
  651. #include <$header>
  652. int x;
  653. EOF
  654. }
  655. check_func(){
  656. log check_func "$@"
  657. func=$1
  658. shift
  659. disable $func
  660. check_ld "cc" "$@" <<EOF && enable $func
  661. extern int $func();
  662. int main(void){ $func(); }
  663. EOF
  664. }
  665. check_mathfunc(){
  666. log check_mathfunc "$@"
  667. func=$1
  668. shift
  669. disable $func
  670. check_ld "cc" "$@" <<EOF && enable $func
  671. #include <math.h>
  672. float foo(float f) { return $func(f); }
  673. int main(void){ return (int) foo; }
  674. EOF
  675. }
  676. check_func_headers(){
  677. log check_func_headers "$@"
  678. headers=$1
  679. funcs=$2
  680. shift 2
  681. {
  682. for hdr in $headers; do
  683. echo "#include <$hdr>"
  684. done
  685. for func in $funcs; do
  686. echo "long check_$func(void) { return (long) $func; }"
  687. done
  688. echo "int main(void) { return 0; }"
  689. } | check_ld "cc" "$@" && enable $funcs && enable_safe $headers
  690. }
  691. check_class_headers_cpp(){
  692. log check_class_headers_cpp "$@"
  693. headers=$1
  694. classes=$2
  695. shift 2
  696. {
  697. for hdr in $headers; do
  698. echo "#include <$hdr>"
  699. done
  700. echo "int main(void) { "
  701. i=1
  702. for class in $classes; do
  703. echo "$class obj$i;"
  704. i=$(expr $i + 1)
  705. done
  706. echo "return 0; }"
  707. } | check_ld "cxx" "$@" && enable $funcs && enable_safe $headers
  708. }
  709. check_cpp_condition(){
  710. log check_cpp_condition "$@"
  711. header=$1
  712. condition=$2
  713. shift 2
  714. check_cpp $($filter_cppflags "$@") <<EOF
  715. #include <$header>
  716. #if !($condition)
  717. #error "unsatisfied condition: $condition"
  718. #endif
  719. EOF
  720. }
  721. check_lib(){
  722. log check_lib "$@"
  723. header="$1"
  724. func="$2"
  725. shift 2
  726. check_header $header && check_func $func "$@" && add_extralibs "$@"
  727. }
  728. check_lib2(){
  729. log check_lib2 "$@"
  730. headers="$1"
  731. funcs="$2"
  732. shift 2
  733. check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
  734. }
  735. check_lib_cpp(){
  736. log check_lib_cpp "$@"
  737. headers="$1"
  738. classes="$2"
  739. shift 2
  740. check_class_headers_cpp "$headers" "$classes" "$@" && add_extralibs "$@"
  741. }
  742. check_pkg_config(){
  743. log check_pkg_config "$@"
  744. pkg="$1"
  745. headers="$2"
  746. funcs="$3"
  747. shift 3
  748. $pkg_config --exists $pkg 2>/dev/null || return
  749. pkg_cflags=$($pkg_config --cflags $pkg)
  750. pkg_libs=$($pkg_config --libs $pkg)
  751. check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
  752. set_safe ${pkg}_cflags $pkg_cflags &&
  753. set_safe ${pkg}_libs $pkg_libs
  754. }
  755. check_exec(){
  756. check_ld "cc" "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
  757. }
  758. check_exec_crash(){
  759. code=$(cat)
  760. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  761. # are safe but may not be available everywhere. Thus we use
  762. # raise(SIGTERM) instead. The check is run in a subshell so we
  763. # can redirect the "Terminated" message from the shell. SIGBUS
  764. # is not defined by standard C so it is used conditionally.
  765. (check_exec "$@") >> $logfile 2>&1 <<EOF
  766. #include <signal.h>
  767. static void sighandler(int sig){
  768. raise(SIGTERM);
  769. }
  770. int func(void){
  771. $code
  772. }
  773. int (*func_ptr)(void) = func;
  774. int main(void){
  775. signal(SIGILL, sighandler);
  776. signal(SIGFPE, sighandler);
  777. signal(SIGSEGV, sighandler);
  778. #ifdef SIGBUS
  779. signal(SIGBUS, sighandler);
  780. #endif
  781. return func_ptr();
  782. }
  783. EOF
  784. }
  785. check_type(){
  786. log check_type "$@"
  787. headers=$1
  788. type=$2
  789. shift 2
  790. disable_safe "$type"
  791. incs=""
  792. for hdr in $headers; do
  793. incs="$incs
  794. #include <$hdr>"
  795. done
  796. check_cc "$@" <<EOF && enable_safe "$type"
  797. $incs
  798. $type v;
  799. EOF
  800. }
  801. check_struct(){
  802. log check_type "$@"
  803. headers=$1
  804. struct=$2
  805. member=$3
  806. shift 3
  807. disable_safe "${struct}_${member}"
  808. incs=""
  809. for hdr in $headers; do
  810. incs="$incs
  811. #include <$hdr>"
  812. done
  813. check_cc "$@" <<EOF && enable_safe "${struct}_${member}"
  814. $incs
  815. const void *p = &(($struct *)0)->$member;
  816. EOF
  817. }
  818. require(){
  819. name="$1"
  820. header="$2"
  821. func="$3"
  822. shift 3
  823. check_lib $header $func "$@" || die "ERROR: $name not found"
  824. }
  825. require2(){
  826. name="$1"
  827. headers="$2"
  828. func="$3"
  829. shift 3
  830. check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
  831. }
  832. require_cpp(){
  833. name="$1"
  834. headers="$2"
  835. classes="$3"
  836. shift 3
  837. check_lib_cpp "$headers" "$classes" "$@" || die "ERROR: $name not found"
  838. }
  839. require_pkg_config(){
  840. pkg="$1"
  841. check_pkg_config "$@" || die "ERROR: $pkg not found"
  842. add_cflags $(get_safe ${pkg}_cflags)
  843. add_extralibs $(get_safe ${pkg}_libs)
  844. }
  845. check_host_cc(){
  846. log check_host_cc "$@"
  847. cat > $TMPC
  848. log_file $TMPC
  849. check_cmd $host_cc $host_cflags "$@" -c -o $TMPO $TMPC
  850. }
  851. check_host_cflags(){
  852. log check_host_cflags "$@"
  853. check_host_cc "$@" <<EOF && append host_cflags "$@"
  854. int x;
  855. EOF
  856. }
  857. apply(){
  858. file=$1
  859. shift
  860. "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
  861. }
  862. cp_if_changed(){
  863. cmp -s "$1" "$2" && echo "$2 is unchanged" && return
  864. mkdir -p "$(dirname $2)"
  865. cp -f "$1" "$2"
  866. }
  867. # CONFIG_LIST contains configurable options, while HAVE_LIST is for
  868. # system-dependent things.
  869. COMPONENT_LIST="
  870. bsfs
  871. decoders
  872. demuxers
  873. encoders
  874. filters
  875. hwaccels
  876. indevs
  877. muxers
  878. outdevs
  879. parsers
  880. protocols
  881. "
  882. PROGRAM_LIST="
  883. ffplay
  884. ffprobe
  885. ffserver
  886. ffmpeg
  887. "
  888. CONFIG_LIST="
  889. $COMPONENT_LIST
  890. $PROGRAM_LIST
  891. avplay
  892. avprobe
  893. avserver
  894. aandct
  895. ac3dsp
  896. avcodec
  897. avdevice
  898. avfilter
  899. avformat
  900. avisynth
  901. bzlib
  902. crystalhd
  903. dct
  904. doc
  905. dwt
  906. dxva2
  907. fastdiv
  908. fft
  909. frei0r
  910. gnutls
  911. golomb
  912. gpl
  913. gray
  914. h264chroma
  915. h264dsp
  916. h264pred
  917. hardcoded_tables
  918. huffman
  919. libaacplus
  920. libass
  921. libcdio
  922. libcelt
  923. libdc1394
  924. libdirac
  925. libfaac
  926. libfreetype
  927. libgsm
  928. libmodplug
  929. libmp3lame
  930. libnut
  931. libopencore_amrnb
  932. libopencore_amrwb
  933. libopencv
  934. libopenjpeg
  935. libpulse
  936. librtmp
  937. libschroedinger
  938. libspeex
  939. libstagefright_h264
  940. libtheora
  941. libutvideo
  942. libv4l2
  943. libvo_aacenc
  944. libvo_amrwbenc
  945. libvorbis
  946. libvpx
  947. libx264
  948. libxavs
  949. libxvid
  950. lpc
  951. lsp
  952. mdct
  953. memalign_hack
  954. mpegaudiodsp
  955. network
  956. nonfree
  957. openal
  958. openssl
  959. pic
  960. postproc
  961. rdft
  962. rtpdec
  963. runtime_cpudetect
  964. safe_bitstream_reader
  965. shared
  966. sinewin
  967. small
  968. sram
  969. static
  970. swresample
  971. swscale
  972. swscale_alpha
  973. thumb
  974. vaapi
  975. vda
  976. vdpau
  977. version3
  978. xmm_clobber_test
  979. x11grab
  980. zlib
  981. "
  982. THREADS_LIST='
  983. pthreads
  984. w32threads
  985. os2threads
  986. '
  987. ARCH_LIST='
  988. alpha
  989. arm
  990. avr32
  991. avr32_ap
  992. avr32_uc
  993. bfin
  994. ia64
  995. m68k
  996. mips
  997. mips64
  998. parisc
  999. ppc
  1000. ppc64
  1001. s390
  1002. sh4
  1003. sparc
  1004. sparc64
  1005. tomi
  1006. x86
  1007. x86_32
  1008. x86_64
  1009. '
  1010. ARCH_EXT_LIST='
  1011. altivec
  1012. amd3dnow
  1013. amd3dnowext
  1014. armv5te
  1015. armv6
  1016. armv6t2
  1017. armvfp
  1018. avx
  1019. iwmmxt
  1020. mmi
  1021. mmx
  1022. mmx2
  1023. neon
  1024. ppc4xx
  1025. sse
  1026. ssse3
  1027. vfpv3
  1028. vis
  1029. '
  1030. HAVE_LIST_PUB='
  1031. bigendian
  1032. fast_unaligned
  1033. '
  1034. HAVE_LIST="
  1035. $ARCH_EXT_LIST
  1036. $HAVE_LIST_PUB
  1037. $THREADS_LIST
  1038. aligned_stack
  1039. alsa_asoundlib_h
  1040. altivec_h
  1041. arpa_inet_h
  1042. asm_mod_y
  1043. asm_types_h
  1044. attribute_may_alias
  1045. attribute_packed
  1046. cbrtf
  1047. closesocket
  1048. cmov
  1049. dcbzl
  1050. dev_bktr_ioctl_bt848_h
  1051. dev_bktr_ioctl_meteor_h
  1052. dev_ic_bt8xx_h
  1053. dev_video_bktr_ioctl_bt848_h
  1054. dev_video_meteor_ioctl_meteor_h
  1055. dlfcn_h
  1056. dlopen
  1057. dos_paths
  1058. ebp_available
  1059. ebx_available
  1060. exp2
  1061. exp2f
  1062. fast_64bit
  1063. fast_clz
  1064. fast_cmov
  1065. fcntl
  1066. fork
  1067. getaddrinfo
  1068. gethrtime
  1069. GetProcessAffinityMask
  1070. GetProcessMemoryInfo
  1071. GetProcessTimes
  1072. getrusage
  1073. gnu_as
  1074. ibm_asm
  1075. inet_aton
  1076. inline_asm
  1077. isatty
  1078. kbhit
  1079. ldbrx
  1080. libdc1394_1
  1081. libdc1394_2
  1082. llrint
  1083. llrintf
  1084. local_aligned_16
  1085. local_aligned_8
  1086. localtime_r
  1087. log2
  1088. log2f
  1089. loongson
  1090. lrint
  1091. lrintf
  1092. lzo1x_999_compress
  1093. machine_ioctl_bt848_h
  1094. machine_ioctl_meteor_h
  1095. makeinfo
  1096. malloc_h
  1097. MapViewOfFile
  1098. memalign
  1099. mkstemp
  1100. mmap
  1101. PeekNamedPipe
  1102. poll_h
  1103. posix_memalign
  1104. round
  1105. roundf
  1106. sched_getaffinity
  1107. sdl
  1108. sdl_video_size
  1109. setmode
  1110. setrlimit
  1111. sndio_h
  1112. socklen_t
  1113. soundcard_h
  1114. strerror_r
  1115. strptime
  1116. struct_addrinfo
  1117. struct_ipv6_mreq
  1118. struct_rusage_ru_maxrss
  1119. struct_sockaddr_in6
  1120. struct_sockaddr_sa_len
  1121. struct_sockaddr_storage
  1122. struct_v4l2_frmivalenum_discrete
  1123. symver
  1124. symver_asm_label
  1125. symver_gnu_asm
  1126. sysconf
  1127. sysctl
  1128. sys_mman_h
  1129. sys_param_h
  1130. sys_resource_h
  1131. sys_select_h
  1132. sys_soundcard_h
  1133. sys_videoio_h
  1134. termios_h
  1135. threads
  1136. trunc
  1137. truncf
  1138. vfp_args
  1139. VirtualAlloc
  1140. winsock2_h
  1141. xform_asm
  1142. xmm_clobbers
  1143. yasm
  1144. "
  1145. # options emitted with CONFIG_ prefix but not available on command line
  1146. CONFIG_EXTRA="
  1147. avutil
  1148. gplv3
  1149. lgplv3
  1150. "
  1151. CMDLINE_SELECT="
  1152. $ARCH_EXT_LIST
  1153. $CONFIG_LIST
  1154. $THREADS_LIST
  1155. asm
  1156. coverage
  1157. cross_compile
  1158. debug
  1159. extra_warnings
  1160. logging
  1161. optimizations
  1162. stripping
  1163. symver
  1164. yasm
  1165. "
  1166. PATHS_LIST='
  1167. bindir
  1168. datadir
  1169. incdir
  1170. libdir
  1171. mandir
  1172. prefix
  1173. shlibdir
  1174. '
  1175. CMDLINE_SET="
  1176. $PATHS_LIST
  1177. ar
  1178. arch
  1179. as
  1180. build_suffix
  1181. cc
  1182. cpu
  1183. cross_prefix
  1184. cxx
  1185. dep_cc
  1186. extra_version
  1187. host_cc
  1188. host_cflags
  1189. host_ldflags
  1190. host_libs
  1191. host_os
  1192. install
  1193. ld
  1194. logfile
  1195. malloc_prefix
  1196. nm
  1197. optflags
  1198. pkg_config
  1199. postproc_version
  1200. progs_suffix
  1201. samples
  1202. strip
  1203. sysinclude
  1204. sysroot
  1205. target_exec
  1206. target_os
  1207. target_path
  1208. valgrind
  1209. yasmexe
  1210. "
  1211. CMDLINE_APPEND="
  1212. extra_cflags
  1213. extra_cxxflags
  1214. "
  1215. # code dependency declarations
  1216. # architecture extensions
  1217. armv5te_deps="arm"
  1218. armv6_deps="arm"
  1219. armv6t2_deps="arm"
  1220. armvfp_deps="arm"
  1221. iwmmxt_deps="arm"
  1222. neon_deps="arm"
  1223. vfpv3_deps="armvfp"
  1224. mmi_deps="mips"
  1225. altivec_deps="ppc"
  1226. ppc4xx_deps="ppc"
  1227. vis_deps="sparc"
  1228. x86_64_suggest="cmov fast_cmov"
  1229. amd3dnow_deps="mmx"
  1230. amd3dnowext_deps="amd3dnow"
  1231. mmx_deps="x86"
  1232. mmx2_deps="mmx"
  1233. sse_deps="mmx"
  1234. ssse3_deps="sse"
  1235. avx_deps="ssse3"
  1236. aligned_stack_if_any="ppc x86"
  1237. fast_64bit_if_any="alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
  1238. fast_clz_if_any="alpha armv5te avr32 mips ppc x86"
  1239. fast_unaligned_if_any="armv6 ppc x86"
  1240. inline_asm_deps="!tms470"
  1241. need_memalign="altivec neon sse"
  1242. symver_if_any="symver_asm_label symver_gnu_asm"
  1243. # subsystems
  1244. dct_select="rdft"
  1245. mdct_select="fft"
  1246. rdft_select="fft"
  1247. mpegaudiodsp_select="dct"
  1248. # decoders / encoders / hardware accelerators
  1249. aac_decoder_select="mdct sinewin"
  1250. aac_encoder_select="mdct sinewin"
  1251. aac_latm_decoder_select="aac_decoder aac_latm_parser"
  1252. ac3_decoder_select="mdct ac3dsp ac3_parser"
  1253. ac3_encoder_select="mdct ac3dsp"
  1254. ac3_fixed_encoder_select="mdct ac3dsp"
  1255. alac_encoder_select="lpc"
  1256. amrnb_decoder_select="lsp"
  1257. amrwb_decoder_select="lsp"
  1258. atrac1_decoder_select="mdct sinewin"
  1259. atrac3_decoder_select="mdct"
  1260. binkaudio_dct_decoder_select="mdct rdft dct sinewin"
  1261. binkaudio_rdft_decoder_select="mdct rdft sinewin"
  1262. cavs_decoder_select="golomb"
  1263. cook_decoder_select="mdct sinewin"
  1264. cscd_decoder_suggest="zlib"
  1265. dca_decoder_select="mdct"
  1266. dnxhd_encoder_select="aandct"
  1267. dxa_decoder_select="zlib"
  1268. eac3_decoder_select="ac3_decoder"
  1269. eac3_encoder_select="mdct ac3dsp"
  1270. eamad_decoder_select="aandct"
  1271. eatgq_decoder_select="aandct"
  1272. eatqi_decoder_select="aandct"
  1273. ffv1_decoder_select="golomb"
  1274. flac_decoder_select="golomb"
  1275. flac_encoder_select="golomb lpc"
  1276. flashsv_decoder_select="zlib"
  1277. flashsv_encoder_select="zlib"
  1278. flashsv2_encoder_select="zlib"
  1279. flashsv2_decoder_select="zlib"
  1280. flv_decoder_select="h263_decoder"
  1281. flv_encoder_select="h263_encoder"
  1282. fraps_decoder_select="huffman"
  1283. h261_encoder_select="aandct"
  1284. h263_decoder_select="h263_parser"
  1285. h263_encoder_select="aandct"
  1286. h263_vaapi_hwaccel_select="vaapi h263_decoder"
  1287. h263i_decoder_select="h263_decoder"
  1288. h263p_encoder_select="h263_encoder"
  1289. h264_crystalhd_decoder_select="crystalhd h264_mp4toannexb_bsf h264_parser"
  1290. h264_decoder_select="golomb h264chroma h264dsp h264pred"
  1291. h264_dxva2_hwaccel_deps="dxva2api_h"
  1292. h264_dxva2_hwaccel_select="dxva2 h264_decoder"
  1293. h264_vaapi_hwaccel_select="vaapi h264_decoder"
  1294. h264_vda_hwaccel_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
  1295. h264_vda_hwaccel_select="vda h264_decoder"
  1296. h264_vdpau_decoder_select="vdpau h264_decoder"
  1297. imc_decoder_select="fft mdct sinewin"
  1298. jpegls_decoder_select="golomb"
  1299. jpegls_encoder_select="golomb"
  1300. ljpeg_encoder_select="aandct"
  1301. loco_decoder_select="golomb"
  1302. mjpeg_encoder_select="aandct"
  1303. mlp_decoder_select="mlp_parser"
  1304. mp1_decoder_select="mpegaudiodsp"
  1305. mp1float_decoder_select="mpegaudiodsp"
  1306. mp2_decoder_select="mpegaudiodsp"
  1307. mp2float_decoder_select="mpegaudiodsp"
  1308. mp3_decoder_select="mpegaudiodsp"
  1309. mp3adu_decoder_select="mpegaudiodsp"
  1310. mp3adufloat_decoder_select="mpegaudiodsp"
  1311. mp3float_decoder_select="mpegaudiodsp"
  1312. mp3on4_decoder_select="mpegaudiodsp"
  1313. mp3on4float_decoder_select="mpegaudiodsp"
  1314. mpc7_decoder_select="mpegaudiodsp"
  1315. mpc8_decoder_select="mpegaudiodsp"
  1316. mpeg_vdpau_decoder_select="vdpau mpegvideo_decoder"
  1317. mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
  1318. mpeg_xvmc_decoder_select="mpegvideo_decoder"
  1319. mpeg1_vdpau_decoder_select="vdpau mpeg1video_decoder"
  1320. mpeg1_vdpau_hwaccel_select="vdpau mpeg1video_decoder"
  1321. mpeg1video_encoder_select="aandct"
  1322. mpeg2_crystalhd_decoder_select="crystalhd"
  1323. mpeg2_dxva2_hwaccel_deps="dxva2api_h"
  1324. mpeg2_dxva2_hwaccel_select="dxva2 mpeg2video_decoder"
  1325. mpeg2_vdpau_hwaccel_select="vdpau mpeg2video_decoder"
  1326. mpeg2_vaapi_hwaccel_select="vaapi mpeg2video_decoder"
  1327. mpeg2video_encoder_select="aandct"
  1328. mpeg4_crystalhd_decoder_select="crystalhd"
  1329. mpeg4_decoder_select="h263_decoder mpeg4video_parser"
  1330. mpeg4_encoder_select="h263_encoder"
  1331. mpeg4_vaapi_hwaccel_select="vaapi mpeg4_decoder"
  1332. mpeg4_vdpau_decoder_select="vdpau mpeg4_decoder"
  1333. msmpeg4_crystalhd_decoder_select="crystalhd"
  1334. msmpeg4v1_decoder_select="h263_decoder"
  1335. msmpeg4v1_encoder_select="h263_encoder"
  1336. msmpeg4v2_decoder_select="h263_decoder"
  1337. msmpeg4v2_encoder_select="h263_encoder"
  1338. msmpeg4v3_decoder_select="h263_decoder"
  1339. msmpeg4v3_encoder_select="h263_encoder"
  1340. nellymoser_decoder_select="mdct sinewin"
  1341. nellymoser_encoder_select="mdct sinewin"
  1342. png_decoder_select="zlib"
  1343. png_encoder_select="zlib"
  1344. qcelp_decoder_select="lsp"
  1345. qdm2_decoder_select="mdct rdft mpegaudiodsp"
  1346. ra_144_encoder_select="lpc"
  1347. rv10_decoder_select="h263_decoder"
  1348. rv10_encoder_select="h263_encoder"
  1349. rv20_decoder_select="h263_decoder"
  1350. rv20_encoder_select="h263_encoder"
  1351. rv30_decoder_select="golomb h264chroma h264pred"
  1352. rv40_decoder_select="golomb h264chroma h264pred"
  1353. shorten_decoder_select="golomb"
  1354. sipr_decoder_select="lsp"
  1355. snow_decoder_select="dwt"
  1356. snow_encoder_select="aandct dwt"
  1357. sonic_decoder_select="golomb"
  1358. sonic_encoder_select="golomb"
  1359. sonic_ls_encoder_select="golomb"
  1360. svq1_encoder_select="aandct"
  1361. svq3_decoder_select="golomb h264chroma h264dsp h264pred"
  1362. svq3_decoder_suggest="zlib"
  1363. theora_decoder_select="vp3_decoder"
  1364. tiff_decoder_suggest="zlib"
  1365. tiff_encoder_suggest="zlib"
  1366. truehd_decoder_select="mlp_decoder"
  1367. tscc_decoder_select="zlib"
  1368. twinvq_decoder_select="mdct lsp sinewin"
  1369. vc1_crystalhd_decoder_select="crystalhd"
  1370. vc1_decoder_select="h263_decoder h264chroma"
  1371. vc1_dxva2_hwaccel_deps="dxva2api_h"
  1372. vc1_dxva2_hwaccel_select="dxva2 vc1_decoder"
  1373. vc1_vaapi_hwaccel_select="vaapi vc1_decoder"
  1374. vc1_vdpau_decoder_select="vdpau vc1_decoder"
  1375. vc1image_decoder_select="vc1_decoder"
  1376. vorbis_decoder_select="mdct"
  1377. vorbis_encoder_select="mdct"
  1378. vp6_decoder_select="huffman"
  1379. vp6a_decoder_select="vp6_decoder"
  1380. vp6f_decoder_select="vp6_decoder"
  1381. vp8_decoder_select="h264pred"
  1382. wmapro_decoder_select="mdct sinewin"
  1383. wmav1_decoder_select="mdct sinewin"
  1384. wmav1_encoder_select="mdct sinewin"
  1385. wmav2_decoder_select="mdct sinewin"
  1386. wmav2_encoder_select="mdct sinewin"
  1387. wmavoice_decoder_select="lsp rdft dct mdct sinewin"
  1388. wmv1_decoder_select="h263_decoder"
  1389. wmv1_encoder_select="h263_encoder"
  1390. wmv2_decoder_select="h263_decoder"
  1391. wmv2_encoder_select="h263_encoder"
  1392. wmv3_decoder_select="vc1_decoder"
  1393. wmv3_crystalhd_decoder_select="crystalhd"
  1394. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  1395. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  1396. wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
  1397. wmv3image_decoder_select="wmv3_decoder"
  1398. zlib_decoder_select="zlib"
  1399. zlib_encoder_select="zlib"
  1400. zmbv_decoder_select="zlib"
  1401. zmbv_encoder_select="zlib"
  1402. crystalhd_deps="libcrystalhd_libcrystalhd_if_h"
  1403. vaapi_deps="va_va_h"
  1404. vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
  1405. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  1406. # parsers
  1407. h264_parser_select="golomb h264chroma h264dsp h264pred"
  1408. # external libraries
  1409. libaacplus_encoder_deps="libaacplus"
  1410. libcelt_decoder_deps="libcelt"
  1411. libdirac_decoder_deps="libdirac !libschroedinger"
  1412. libdirac_encoder_deps="libdirac"
  1413. libfaac_encoder_deps="libfaac"
  1414. libgsm_decoder_deps="libgsm"
  1415. libgsm_encoder_deps="libgsm"
  1416. libgsm_ms_decoder_deps="libgsm"
  1417. libgsm_ms_encoder_deps="libgsm"
  1418. libmodplug_demuxer_deps="libmodplug"
  1419. libmp3lame_encoder_deps="libmp3lame"
  1420. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  1421. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  1422. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  1423. libopenjpeg_decoder_deps="libopenjpeg"
  1424. libopenjpeg_encoder_deps="libopenjpeg"
  1425. libschroedinger_decoder_deps="libschroedinger"
  1426. libschroedinger_encoder_deps="libschroedinger"
  1427. libspeex_decoder_deps="libspeex"
  1428. libspeex_encoder_deps="libspeex"
  1429. libstagefright_h264_decoder_deps="libstagefright_h264"
  1430. libtheora_encoder_deps="libtheora"
  1431. libvo_aacenc_encoder_deps="libvo_aacenc"
  1432. libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
  1433. libvorbis_encoder_deps="libvorbis"
  1434. libvpx_decoder_deps="libvpx"
  1435. libvpx_encoder_deps="libvpx"
  1436. libx264_encoder_deps="libx264"
  1437. libx264rgb_encoder_deps="libx264"
  1438. libxavs_encoder_deps="libxavs"
  1439. libxvid_encoder_deps="libxvid"
  1440. libutvideo_decoder_deps="libutvideo gpl"
  1441. # demuxers / muxers
  1442. ac3_demuxer_select="ac3_parser"
  1443. asf_stream_muxer_select="asf_muxer"
  1444. avisynth_demuxer_deps="avisynth"
  1445. dirac_demuxer_select="dirac_parser"
  1446. eac3_demuxer_select="ac3_parser"
  1447. flac_demuxer_select="flac_parser"
  1448. ipod_muxer_select="mov_muxer"
  1449. libnut_demuxer_deps="libnut"
  1450. libnut_muxer_deps="libnut"
  1451. matroska_audio_muxer_select="matroska_muxer"
  1452. matroska_demuxer_suggest="zlib bzlib"
  1453. mov_demuxer_suggest="zlib"
  1454. mp3_demuxer_select="mpegaudio_parser"
  1455. mp4_muxer_select="mov_muxer"
  1456. mpegtsraw_demuxer_select="mpegts_demuxer"
  1457. mxf_d10_muxer_select="mxf_muxer"
  1458. ogg_demuxer_select="golomb"
  1459. psp_muxer_select="mov_muxer"
  1460. rtp_demuxer_select="sdp_demuxer"
  1461. rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
  1462. rtsp_demuxer_select="http_protocol rtpdec"
  1463. rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol"
  1464. sap_demuxer_select="sdp_demuxer"
  1465. sap_muxer_select="rtp_muxer rtp_protocol"
  1466. sdp_demuxer_select="rtpdec"
  1467. spdif_muxer_select="aac_parser"
  1468. tg2_muxer_select="mov_muxer"
  1469. tgp_muxer_select="mov_muxer"
  1470. w64_demuxer_deps="wav_demuxer"
  1471. # indevs / outdevs
  1472. alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  1473. alsa_outdev_deps="alsa_asoundlib_h"
  1474. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  1475. dshow_indev_deps="IBaseFilter"
  1476. dshow_indev_extralibs="-lpsapi -lole32 -lstrmiids -luuid"
  1477. dv1394_indev_deps="dv1394 dv_demuxer"
  1478. fbdev_indev_deps="linux_fb_h"
  1479. jack_indev_deps="jack_jack_h sem_timedwait"
  1480. lavfi_indev_deps="avfilter"
  1481. libcdio_indev_deps="libcdio"
  1482. libdc1394_indev_deps="libdc1394"
  1483. libv4l2_indev_deps="libv4l2"
  1484. openal_indev_deps="openal"
  1485. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  1486. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  1487. pulse_indev_deps="libpulse"
  1488. sdl_outdev_deps="sdl"
  1489. sndio_indev_deps="sndio_h"
  1490. sndio_outdev_deps="sndio_h"
  1491. v4l_indev_deps="linux_videodev_h"
  1492. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  1493. vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
  1494. vfwcap_indev_extralibs="-lavicap32"
  1495. x11_grab_device_indev_deps="x11grab XShmCreateImage"
  1496. x11_grab_device_indev_extralibs="-lX11 -lXext -lXfixes"
  1497. # protocols
  1498. gopher_protocol_deps="network"
  1499. httpproxy_protocol_deps="network"
  1500. httpproxy_protocol_select="tcp_protocol"
  1501. http_protocol_deps="network"
  1502. http_protocol_select="tcp_protocol"
  1503. https_protocol_select="tls_protocol"
  1504. librtmp_protocol_deps="librtmp"
  1505. librtmpe_protocol_deps="librtmp"
  1506. librtmps_protocol_deps="librtmp"
  1507. librtmpt_protocol_deps="librtmp"
  1508. librtmpte_protocol_deps="librtmp"
  1509. mmsh_protocol_select="http_protocol"
  1510. mmst_protocol_deps="network"
  1511. rtmp_protocol_deps="!librtmp_protocol"
  1512. rtmp_protocol_select="tcp_protocol"
  1513. rtp_protocol_select="udp_protocol"
  1514. tcp_protocol_deps="network"
  1515. tls_protocol_deps_any="openssl gnutls"
  1516. tls_protocol_select="tcp_protocol"
  1517. udp_protocol_deps="network"
  1518. # filters
  1519. aconvert_filter_deps="swresample"
  1520. amovie_filter_deps="avcodec avformat"
  1521. aresample_filter_deps="swresample"
  1522. ass_filter_deps="libass"
  1523. blackframe_filter_deps="gpl"
  1524. boxblur_filter_deps="gpl"
  1525. cropdetect_filter_deps="gpl"
  1526. delogo_filter_deps="gpl"
  1527. drawtext_filter_deps="libfreetype"
  1528. frei0r_filter_deps="frei0r dlopen"
  1529. frei0r_src_filter_deps="frei0r dlopen"
  1530. hqdn3d_filter_deps="gpl"
  1531. movie_filter_deps="avcodec avformat"
  1532. mp_filter_deps="gpl avcodec swscale"
  1533. mptestsrc_filter_deps="gpl"
  1534. negate_filter_deps="lut_filter"
  1535. ocv_filter_deps="libopencv"
  1536. pan_filter_deps="swresample"
  1537. scale_filter_deps="swscale"
  1538. tinterlace_filter_deps="gpl"
  1539. yadif_filter_deps="gpl"
  1540. # libraries
  1541. avdevice_deps="avcodec avformat"
  1542. avformat_deps="avcodec"
  1543. postproc_deps="gpl"
  1544. # programs
  1545. ffplay_deps="avcodec avformat swscale swresample sdl"
  1546. ffplay_select="buffersink_filter rdft"
  1547. ffprobe_deps="avcodec avformat"
  1548. ffserver_deps="avformat ffm_muxer fork rtp_protocol rtsp_demuxer"
  1549. ffserver_extralibs='$ldl'
  1550. ffmpeg_deps="avcodec avformat swscale swresample"
  1551. ffmpeg_select="buffersink_filter"
  1552. doc_deps="texi2html"
  1553. # tests
  1554. test_deps(){
  1555. suf1=$1
  1556. suf2=$2
  1557. shift 2
  1558. for v; do
  1559. dep=${v%=*}
  1560. tests=${v#*=}
  1561. for name in ${tests}; do
  1562. append ${name}_test_deps ${dep}$suf1 ${dep}$suf2
  1563. done
  1564. done
  1565. }
  1566. mxf_d10_test_deps="avfilter"
  1567. seek_lavf_mxf_d10_test_deps="mxf_d10_test"
  1568. test_deps _encoder _decoder \
  1569. adpcm_ima_qt \
  1570. adpcm_ima_wav \
  1571. adpcm_ms \
  1572. adpcm_swf \
  1573. adpcm_yamaha=adpcm_yam \
  1574. alac \
  1575. asv1 \
  1576. asv2 \
  1577. bmp \
  1578. dnxhd="dnxhd_1080i dnxhd_720p dnxhd_720p_rd" \
  1579. dvvideo="dv dv_411 dv50" \
  1580. ffv1 \
  1581. flac \
  1582. flashsv \
  1583. flv \
  1584. adpcm_g726=g726 \
  1585. gif \
  1586. h261 \
  1587. h263="h263 h263p" \
  1588. huffyuv \
  1589. jpegls \
  1590. mjpeg="jpg mjpeg ljpeg" \
  1591. mp2 \
  1592. mpeg1video="mpeg mpeg1b" \
  1593. mpeg2video="mpeg2 mpeg2_422 mpeg2_idct_int mpeg2_ilace mpeg2_ivlc_qprd" \
  1594. mpeg2video="mpeg2thread mpeg2thread_ilace" \
  1595. mpeg4="mpeg4 mpeg4_adap mpeg4_qpel mpeg4_qprd mpeg4adv mpeg4nr" \
  1596. mpeg4="mpeg4thread error rc" \
  1597. msmpeg4v3=msmpeg4 \
  1598. msmpeg4v2 \
  1599. pbm=pbmpipe \
  1600. pcx \
  1601. pgm="pgm pgmpipe" \
  1602. png \
  1603. ppm="ppm ppmpipe" \
  1604. rawvideo="rgb yuv" \
  1605. roq \
  1606. rv10 \
  1607. rv20 \
  1608. sgi \
  1609. snow="snow snowll" \
  1610. svq1 \
  1611. targa=tga \
  1612. tiff \
  1613. wmav1 \
  1614. wmav2 \
  1615. wmv1 \
  1616. wmv2 \
  1617. test_deps _muxer _demuxer \
  1618. aiff \
  1619. pcm_alaw=alaw \
  1620. asf \
  1621. au \
  1622. avi \
  1623. dv=dv_fmt \
  1624. ffm \
  1625. flv=flv_fmt \
  1626. gxf \
  1627. matroska=mkv \
  1628. mmf \
  1629. mov="mov ismv" \
  1630. pcm_mulaw=mulaw \
  1631. mxf="mxf mxf_d10" \
  1632. nut \
  1633. ogg="ogg ogg_vp3" \
  1634. rawvideo=pixfmt \
  1635. rm \
  1636. swf \
  1637. mpegts=ts \
  1638. voc \
  1639. wav \
  1640. yuv4mpegpipe=yuv4mpeg \
  1641. ac3_fixed_test_deps="ac3_fixed_encoder ac3_decoder"
  1642. mpg_test_deps="mpeg1system_muxer mpegps_demuxer"
  1643. # default parameters
  1644. logfile="config.log"
  1645. # installation paths
  1646. prefix_default="/usr/local"
  1647. bindir_default='${prefix}/bin'
  1648. datadir_default='${prefix}/share/ffmpeg'
  1649. incdir_default='${prefix}/include'
  1650. libdir_default='${prefix}/lib'
  1651. mandir_default='${prefix}/share/man'
  1652. shlibdir_default="$libdir_default"
  1653. postproc_version_default="current"
  1654. # toolchain
  1655. ar_default="ar"
  1656. cc_default="gcc"
  1657. cxx_default="g++"
  1658. cc_version=\"unknown\"
  1659. host_cc_default="gcc"
  1660. install="install"
  1661. ln_s="ln -sf"
  1662. nm_default="nm"
  1663. objformat="elf"
  1664. pkg_config_default=pkg-config
  1665. ranlib="ranlib"
  1666. strip_default="strip"
  1667. yasmexe_default="yasm"
  1668. nm_opts='-g'
  1669. nogas=":"
  1670. # machine
  1671. arch_default=$(uname -m)
  1672. cpu="generic"
  1673. # OS
  1674. target_os_default=$(tolower $(uname -s))
  1675. host_os=$target_os_default
  1676. # alternative libpostproc version
  1677. ALT_PP_VER_MAJOR=51
  1678. ALT_PP_VER_MINOR=2
  1679. ALT_PP_VER_MICRO=101
  1680. ALT_PP_VER=$ALT_PP_VER_MAJOR.$ALT_PP_VER_MINOR.$ALT_PP_VER_MICRO
  1681. # configurable options
  1682. enable $PROGRAM_LIST
  1683. enable avcodec
  1684. enable avdevice
  1685. enable avfilter
  1686. enable avformat
  1687. enable avutil
  1688. enable postproc
  1689. enable stripping
  1690. enable swresample
  1691. enable swscale
  1692. enable asm
  1693. enable debug
  1694. enable doc
  1695. enable fastdiv
  1696. enable network
  1697. enable optimizations
  1698. enable safe_bitstream_reader
  1699. enable static
  1700. enable swscale_alpha
  1701. # build settings
  1702. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1703. FFSERVERLDFLAGS=-Wl,-E
  1704. LIBPREF="lib"
  1705. LIBSUF=".a"
  1706. FULLNAME='$(NAME)$(BUILDSUF)'
  1707. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1708. SLIBPREF="lib"
  1709. SLIBSUF=".so"
  1710. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1711. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  1712. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  1713. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  1714. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
  1715. SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
  1716. AS_O='-o $@'
  1717. CC_O='-o $@'
  1718. CXX_O='-o $@'
  1719. host_cflags='-D_ISOC99_SOURCE -O3 -g'
  1720. host_libs='-lm'
  1721. target_path='$(CURDIR)'
  1722. # since the object filename is not given with the -MM flag, the compiler
  1723. # is only able to print the basename, and we must add the path ourselves
  1724. DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  1725. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -MM'
  1726. # find source path
  1727. if test -f configure; then
  1728. source_path=.
  1729. else
  1730. source_path=$(cd $(dirname "$0"); pwd)
  1731. echo "$source_path" | grep -q '[[:blank:]]' &&
  1732. die "Out of tree builds are impossible with whitespace in source path."
  1733. test -e "$source_path/config.h" &&
  1734. die "Out of tree builds are impossible with config.h in source dir."
  1735. fi
  1736. for v in "$@"; do
  1737. r=${v#*=}
  1738. l=${v%"$r"}
  1739. r=$(sh_quote "$r")
  1740. FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
  1741. done
  1742. find_things(){
  1743. thing=$1
  1744. pattern=$2
  1745. file=$source_path/$3
  1746. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  1747. }
  1748. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  1749. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  1750. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  1751. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  1752. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  1753. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  1754. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  1755. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  1756. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  1757. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  1758. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  1759. ALL_COMPONENTS="
  1760. $BSF_LIST
  1761. $DECODER_LIST
  1762. $DEMUXER_LIST
  1763. $ENCODER_LIST
  1764. $FILTER_LIST
  1765. $HWACCEL_LIST
  1766. $INDEV_LIST
  1767. $MUXER_LIST
  1768. $OUTDEV_LIST
  1769. $PARSER_LIST
  1770. $PROTOCOL_LIST
  1771. "
  1772. find_tests(){
  1773. map "echo ${2}\${v}_test" $(ls "$source_path"/tests/ref/$1 | grep -v '[^-a-z0-9_]')
  1774. }
  1775. ACODEC_TESTS=$(find_tests acodec)
  1776. VCODEC_TESTS=$(find_tests vsynth1)
  1777. LAVF_FATE_TESTS=$(find_tests lavf-fate)
  1778. LAVF_TESTS=$(find_tests lavf)
  1779. LAVFI_TESTS=$(find_tests lavfi)
  1780. SEEK_TESTS=$(find_tests seek seek_)
  1781. ALL_TESTS="$ACODEC_TESTS $VCODEC_TESTS $LAVF_FATE_TESTS $LAVF_TESTS $LAVFI_TESTS $SEEK_TESTS"
  1782. pcm_test_deps=$(map 'echo ${v%_*}_decoder $v' $(filter pcm_* $ENCODER_LIST))
  1783. for n in $COMPONENT_LIST; do
  1784. v=$(toupper ${n%s})_LIST
  1785. eval enable \$$v
  1786. eval ${n}_if_any="\$$v"
  1787. done
  1788. enable $ARCH_EXT_LIST $ALL_TESTS
  1789. die_unknown(){
  1790. echo "Unknown option \"$1\"."
  1791. echo "See $0 --help for available options."
  1792. exit 1
  1793. }
  1794. show_list() {
  1795. suffix=_$1
  1796. shift
  1797. echo $* | sed s/$suffix//g | tr ' ' '\n' | sort | pr -3 -t
  1798. exit 0
  1799. }
  1800. for opt do
  1801. optval="${opt#*=}"
  1802. case "$opt" in
  1803. --extra-ldflags=*) add_ldflags $optval
  1804. ;;
  1805. --extra-libs=*) add_extralibs $optval
  1806. ;;
  1807. --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
  1808. ;;
  1809. --enable-debug=*) debuglevel="$optval"
  1810. ;;
  1811. --disable-everything)
  1812. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  1813. ;;
  1814. --enable-*=*|--disable-*=*)
  1815. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  1816. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  1817. eval list=\$$(toupper $thing)_LIST
  1818. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  1819. $action $(filter "$name" $list)
  1820. ;;
  1821. --enable-?*|--disable-?*)
  1822. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  1823. if is_in $option $COMPONENT_LIST; then
  1824. test $action = disable && action=unset
  1825. eval $action \$$(toupper ${option%s})_LIST
  1826. elif is_in $option $CMDLINE_SELECT; then
  1827. $action $option
  1828. else
  1829. die_unknown $opt
  1830. fi
  1831. ;;
  1832. --list-*)
  1833. NAME="${opt#--list-}"
  1834. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  1835. NAME=${NAME%s}
  1836. eval show_list $NAME \$$(toupper $NAME)_LIST
  1837. ;;
  1838. --help|-h) show_help
  1839. ;;
  1840. *)
  1841. optname="${opt%%=*}"
  1842. optname="${optname#--}"
  1843. optname=$(echo "$optname" | sed 's/-/_/g')
  1844. if is_in $optname $CMDLINE_SET; then
  1845. eval $optname='$optval'
  1846. elif is_in $optname $CMDLINE_APPEND; then
  1847. append $optname "$optval"
  1848. else
  1849. die_unknown $opt
  1850. fi
  1851. ;;
  1852. esac
  1853. done
  1854. disabled logging && logfile=/dev/null
  1855. echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
  1856. set >> $logfile
  1857. test -n "$cross_prefix" && enable cross_compile
  1858. if enabled cross_compile; then
  1859. test -n "$arch" && test -n "$target_os" ||
  1860. die "Must specify target arch and OS when cross-compiling"
  1861. fi
  1862. set_default arch target_os postproc_version
  1863. # Check if we should build alternative libpostproc version instead of current
  1864. if test "$postproc_version" = $ALT_PP_VER; then
  1865. LIBPOSTPROC_VERSION=$ALT_PP_VER
  1866. LIBPOSTPROC_VERSION_MAJOR=$ALT_PP_VER_MAJOR
  1867. LIBPOSTPROC_VERSION_MINOR=$ALT_PP_VER_MINOR
  1868. LIBPOSTPROC_VERSION_MICRO=$ALT_PP_VER_MICRO
  1869. elif test "$postproc_version" != current; then
  1870. die "Invalid argument to --postproc-version. See --help output."
  1871. fi
  1872. ar_default="${cross_prefix}${ar_default}"
  1873. cc_default="${cross_prefix}${cc_default}"
  1874. cxx_default="${cross_prefix}${cxx_default}"
  1875. nm_default="${cross_prefix}${nm_default}"
  1876. pkg_config_default="${cross_prefix}${pkg_config_default}"
  1877. ranlib="${cross_prefix}${ranlib}"
  1878. strip_default="${cross_prefix}${strip_default}"
  1879. sysinclude_default="${sysroot}/usr/include"
  1880. set_default cc cxx nm pkg_config strip sysinclude yasmexe
  1881. enabled cross_compile || host_cc_default=$cc
  1882. set_default host_cc
  1883. if ! $pkg_config --version >/dev/null 2>&1; then
  1884. warn "$pkg_config not found, library detection may fail."
  1885. pkg_config=false
  1886. fi
  1887. exesuf() {
  1888. case $1 in
  1889. mingw32*|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
  1890. esac
  1891. }
  1892. EXESUF=$(exesuf $target_os)
  1893. HOSTEXESUF=$(exesuf $host_os)
  1894. # set temporary file name
  1895. : ${TMPDIR:=$TEMPDIR}
  1896. : ${TMPDIR:=$TMP}
  1897. : ${TMPDIR:=/tmp}
  1898. if ! check_cmd mktemp -u XXXXXX; then
  1899. # simple replacement for missing mktemp
  1900. # NOT SAFE FOR GENERAL USE
  1901. mktemp(){
  1902. echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
  1903. }
  1904. fi
  1905. tmpfile(){
  1906. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  1907. (set -C; exec > $tmp) 2>/dev/null ||
  1908. die "Unable to create temporary file in $TMPDIR."
  1909. append TMPFILES $tmp
  1910. eval $1=$tmp
  1911. }
  1912. trap 'rm -f -- $TMPFILES' EXIT
  1913. tmpfile TMPASM .asm
  1914. tmpfile TMPC .c
  1915. tmpfile TMPCPP .cpp
  1916. tmpfile TMPE $EXESUF
  1917. tmpfile TMPH .h
  1918. tmpfile TMPO .o
  1919. tmpfile TMPS .S
  1920. tmpfile TMPSH .sh
  1921. tmpfile TMPV .ver
  1922. unset -f mktemp
  1923. chmod +x $TMPE
  1924. # make sure we can execute files in $TMPDIR
  1925. cat > $TMPSH 2>> $logfile <<EOF
  1926. #! /bin/sh
  1927. EOF
  1928. chmod +x $TMPSH >> $logfile 2>&1
  1929. if ! $TMPSH >> $logfile 2>&1; then
  1930. cat <<EOF
  1931. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  1932. variable to another directory and make sure that it is not mounted noexec.
  1933. EOF
  1934. die "Sanity test failed."
  1935. fi
  1936. filter_asflags=echo
  1937. filter_cflags=echo
  1938. filter_cppflags=echo
  1939. if $cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
  1940. cc_type=llvm_gcc
  1941. cc_version=__VERSION__
  1942. gcc_extra_ver=$(expr "$($cc --version | head -n1)" : '.*\((.*)\)')
  1943. cc_ident="llvm-gcc $($cc -dumpversion) $gcc_extra_ver"
  1944. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1945. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1946. speed_cflags='-O3'
  1947. size_cflags='-Os'
  1948. elif $cc -v 2>&1 | grep -qi ^gcc; then
  1949. cc_type=gcc
  1950. cc_version=__VERSION__
  1951. gcc_version=$($cc --version | head -n1)
  1952. gcc_basever=$($cc -dumpversion)
  1953. gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
  1954. gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
  1955. cc_ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
  1956. if ! $cc -dumpversion | grep -q '^2\.'; then
  1957. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1958. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1959. fi
  1960. speed_cflags='-O3'
  1961. size_cflags='-Os'
  1962. elif $cc --version 2>/dev/null | grep -q Intel; then
  1963. cc_type=icc
  1964. cc_version="AV_STRINGIFY(__INTEL_COMPILER)"
  1965. cc_ident=$($cc --version | head -n1)
  1966. icc_version=$($cc -dumpversion)
  1967. CC_DEPFLAGS='-MMD'
  1968. AS_DEPFLAGS='-MMD'
  1969. speed_cflags='-O3'
  1970. size_cflags='-Os'
  1971. noopt_cflags='-O1'
  1972. elif $cc -v 2>&1 | grep -q xlc; then
  1973. cc_type=xlc
  1974. cc_version="AV_STRINGIFY(__IBMC__)"
  1975. cc_ident=$($cc -qversion 2>/dev/null | head -n1)
  1976. speed_cflags='-O5'
  1977. size_cflags='-O5 -qcompact'
  1978. elif $cc -V 2>/dev/null | grep -q Compaq; then
  1979. cc_type=ccc
  1980. cc_version="AV_STRINGIFY(__DECC_VER)"
  1981. cc_ident=$($cc -V | head -n1 | cut -d' ' -f1-3)
  1982. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -M'
  1983. debuglevel=3
  1984. add_ldflags -Wl,-z,now # calls to libots crash without this
  1985. speed_cflags='-fast'
  1986. size_cflags='-O1'
  1987. elif $cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
  1988. test -d "$sysroot" || die "No valid sysroot specified."
  1989. cc_type=armcc
  1990. cc_version="AV_STRINGIFY(__ARMCC_VERSION)"
  1991. cc_ident=$($cc --vsn | head -n1)
  1992. armcc_conf="$PWD/armcc.conf"
  1993. $cc --arm_linux_configure \
  1994. --arm_linux_config_file="$armcc_conf" \
  1995. --configure_sysroot="$sysroot" \
  1996. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  1997. die "Error creating armcc configuration file."
  1998. $cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
  1999. cc="$cc --arm_linux_config_file=$armcc_conf --translate_gcc"
  2000. as_default="${cross_prefix}gcc"
  2001. CC_DEPFLAGS='-MMD'
  2002. AS_DEPFLAGS='-MMD'
  2003. speed_cflags='-O3'
  2004. size_cflags='-Os'
  2005. filter_asflags="filter_out -W${armcc_opt}*"
  2006. elif $cc -version 2>/dev/null | grep -q TMS470; then
  2007. cc_type=tms470
  2008. cc_version="AV_STRINGIFY(__TI_COMPILER_VERSION__)"
  2009. cc_ident=$($cc -version | head -n1 | tr -s ' ')
  2010. cc="$cc --gcc --abi=eabi -eo=.o -mc -me"
  2011. CC_O='-fr=$(@D)'
  2012. as_default="${cross_prefix}gcc"
  2013. ld_default="${cross_prefix}gcc"
  2014. TMPO=$(basename $TMPC .c).o
  2015. append TMPFILES $TMPO
  2016. add_cflags -D__gnuc_va_list=va_list -D__USER_LABEL_PREFIX__=
  2017. CC_DEPFLAGS='-ppa -ppd=$(@:.o=.d)'
  2018. AS_DEPFLAGS='-MMD'
  2019. speed_cflags='-O3 -mf=5'
  2020. size_cflags='-O3 -mf=2'
  2021. filter_cflags=tms470_flags
  2022. tms470_flags(){
  2023. for flag; do
  2024. case $flag in
  2025. -march=*|-mcpu=*)
  2026. case "${flag#*=}" in
  2027. armv7-a|cortex-a*) echo -mv=7a8 ;;
  2028. armv7-r|cortex-r*) echo -mv=7r4 ;;
  2029. armv7-m|cortex-m*) echo -mv=7m3 ;;
  2030. armv6*|arm11*) echo -mv=6 ;;
  2031. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  2032. echo -mv=5e ;;
  2033. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  2034. esac
  2035. ;;
  2036. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  2037. -mfpu=vfp) echo --float_support=vfpv2 ;;
  2038. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  2039. -msoft-float) echo --float_support=vfplib ;;
  2040. -O[0-3]|-mf=*) echo $flag ;;
  2041. -g) echo -g -mn ;;
  2042. -pds=*) echo $flag ;;
  2043. esac
  2044. done
  2045. }
  2046. elif $cc -v 2>&1 | grep -q clang; then
  2047. cc_type=clang
  2048. $cc -dM -E $TMPC | grep -q __clang_version__ &&
  2049. cc_version=__clang_version__ || cc_version=__VERSION__
  2050. cc_ident=$($cc --version | head -n1)
  2051. CC_DEPFLAGS='-MMD'
  2052. AS_DEPFLAGS='-MMD'
  2053. speed_cflags='-O3'
  2054. size_cflags='-Os'
  2055. elif $cc -V 2>&1 | grep -q Sun; then
  2056. cc_type=suncc
  2057. cc_version="AV_STRINGIFY(__SUNPRO_C)"
  2058. cc_ident=$($cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
  2059. DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  2060. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -xM1'
  2061. add_ldflags -xc99
  2062. speed_cflags='-O5'
  2063. size_cflags='-O5 -xspace'
  2064. filter_cflags=suncc_flags
  2065. suncc_flags(){
  2066. for flag; do
  2067. case $flag in
  2068. -march=*|-mcpu=*)
  2069. case "${flag#*=}" in
  2070. native) echo -xtarget=native ;;
  2071. v9|niagara) echo -xarch=sparc ;;
  2072. ultrasparc) echo -xarch=sparcvis ;;
  2073. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  2074. i586|pentium) echo -xchip=pentium ;;
  2075. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  2076. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  2077. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  2078. pentium4*) echo -xtarget=pentium4 ;;
  2079. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  2080. *-sse3) echo -xarch=sse3 ;;
  2081. core2) echo -xarch=ssse3 -xchip=core2 ;;
  2082. amdfam10|barcelona) echo -xarch=sse4_1 ;;
  2083. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  2084. k8|opteron|athlon64|athlon-fx)
  2085. echo -xarch=sse2a ;;
  2086. athlon*) echo -xarch=pentium_proa ;;
  2087. esac
  2088. ;;
  2089. -std=c99) echo -xc99 ;;
  2090. -fomit-frame-pointer) echo -xregs=frameptr ;;
  2091. -fPIC) echo -KPIC -xcode=pic32 ;;
  2092. -W*,*) echo $flag ;;
  2093. -f*-*|-W*) ;;
  2094. *) echo $flag ;;
  2095. esac
  2096. done
  2097. }
  2098. elif $cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
  2099. cc_type=pathscale
  2100. cc_version=__PATHSCALE__
  2101. cc_ident=$($cc -v 2>&1 | head -n1 | tr -d :)
  2102. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  2103. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  2104. speed_cflags='-O2'
  2105. size_cflags='-Os'
  2106. filter_cflags='filter_out -Wdisabled-optimization'
  2107. elif $cc -v 2>&1 | grep -q Open64; then
  2108. cc_type=open64
  2109. cc_version=__OPEN64__
  2110. cc_ident=$($cc -v 2>&1 | head -n1 | tr -d :)
  2111. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  2112. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  2113. speed_cflags='-O2'
  2114. size_cflags='-Os'
  2115. filter_cflags='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
  2116. fi
  2117. test -n "$cc_type" && enable $cc_type ||
  2118. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  2119. : ${as_default:=$cc}
  2120. : ${dep_cc_default:=$cc}
  2121. : ${ld_default:=$cc}
  2122. set_default ar as dep_cc ld
  2123. test -n "$CC_DEPFLAGS" || CCDEP=$DEPEND_CMD
  2124. test -n "$CXX_DEPFLAGS" || CXXDEP=$DEPEND_CMD
  2125. test -n "$AS_DEPFLAGS" || ASDEP=$DEPEND_CMD
  2126. add_cflags $extra_cflags
  2127. add_cxxflags $extra_cxxflags
  2128. add_asflags $extra_cflags
  2129. if test -n "$sysroot"; then
  2130. case "$cc_type" in
  2131. gcc|llvm_gcc|clang)
  2132. add_cppflags --sysroot="$sysroot"
  2133. add_ldflags --sysroot="$sysroot"
  2134. ;;
  2135. tms470)
  2136. add_cppflags -I"$sysinclude"
  2137. add_ldflags --sysroot="$sysroot"
  2138. ;;
  2139. esac
  2140. fi
  2141. if test "$cpu" = host; then
  2142. enabled cross_compile && die "--cpu=host makes no sense when cross-compiling."
  2143. case "$cc_type" in
  2144. gcc|llvm_gcc)
  2145. check_native(){
  2146. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  2147. sed -n "/cc1.*$1=/{
  2148. s/.*$1=\\([^ ]*\\).*/\\1/
  2149. p
  2150. q
  2151. }" $TMPE
  2152. }
  2153. cpu=$(check_native -march || check_native -mcpu)
  2154. ;;
  2155. esac
  2156. test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc"
  2157. fi
  2158. # Deal with common $arch aliases
  2159. case "$arch" in
  2160. arm*|iPad*)
  2161. arch="arm"
  2162. ;;
  2163. mips|mipsel|IP*)
  2164. arch="mips"
  2165. ;;
  2166. mips64*)
  2167. arch="mips"
  2168. subarch="mips64"
  2169. ;;
  2170. parisc|hppa)
  2171. arch="parisc"
  2172. ;;
  2173. parisc64|hppa64)
  2174. arch="parisc"
  2175. subarch="parisc64"
  2176. ;;
  2177. "Power Macintosh"|ppc|powerpc|ppc64|powerpc64)
  2178. arch="ppc"
  2179. ;;
  2180. s390|s390x)
  2181. arch="s390"
  2182. ;;
  2183. sh4|sh)
  2184. arch="sh4"
  2185. ;;
  2186. sun4u|sparc64)
  2187. arch="sparc"
  2188. subarch="sparc64"
  2189. ;;
  2190. i[3-6]86|i86pc|BePC|x86pc|x86_64|x86_32|amd64)
  2191. arch="x86"
  2192. ;;
  2193. esac
  2194. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  2195. enable $arch
  2196. # Add processor-specific flags
  2197. if test "$cpu" = generic; then
  2198. : do nothing
  2199. elif enabled ppc; then
  2200. case $(tolower $cpu) in
  2201. 601|ppc601|powerpc601)
  2202. cpuflags="-mcpu=601"
  2203. disable altivec
  2204. ;;
  2205. 603*|ppc603*|powerpc603*)
  2206. cpuflags="-mcpu=603"
  2207. disable altivec
  2208. ;;
  2209. 604*|ppc604*|powerpc604*)
  2210. cpuflags="-mcpu=604"
  2211. disable altivec
  2212. ;;
  2213. g3|75*|ppc75*|powerpc75*)
  2214. cpuflags="-mcpu=750 -mpowerpc-gfxopt"
  2215. disable altivec
  2216. ;;
  2217. g4|745*|ppc745*|powerpc745*)
  2218. cpuflags="-mcpu=7450 -mpowerpc-gfxopt"
  2219. ;;
  2220. 74*|ppc74*|powerpc74*)
  2221. cpuflags="-mcpu=7400 -mpowerpc-gfxopt"
  2222. ;;
  2223. g5|970|ppc970|powerpc970|power4*)
  2224. cpuflags="-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
  2225. ;;
  2226. cell)
  2227. cpuflags="-mcpu=cell"
  2228. enable ldbrx
  2229. ;;
  2230. e500v2)
  2231. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  2232. disable altivec
  2233. ;;
  2234. e500)
  2235. cpuflags="-mcpu=8540 -mhard-float"
  2236. disable altivec
  2237. ;;
  2238. esac
  2239. elif enabled x86; then
  2240. case $cpu in
  2241. i[345]86|pentium)
  2242. cpuflags="-march=$cpu"
  2243. disable mmx
  2244. ;;
  2245. # targets that do NOT support conditional mov (cmov)
  2246. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  2247. cpuflags="-march=$cpu"
  2248. disable cmov
  2249. ;;
  2250. # targets that do support conditional mov (cmov)
  2251. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|amdfam10|barcelona|atom)
  2252. cpuflags="-march=$cpu"
  2253. enable cmov
  2254. enable fast_cmov
  2255. ;;
  2256. # targets that do support conditional mov but on which it's slow
  2257. pentium4|pentium4m|prescott|nocona)
  2258. cpuflags="-march=$cpu"
  2259. enable cmov
  2260. disable fast_cmov
  2261. ;;
  2262. esac
  2263. elif enabled sparc; then
  2264. case $cpu in
  2265. niagara)
  2266. cpuflags="-mcpu=$cpu"
  2267. disable vis
  2268. ;;
  2269. sparc64)
  2270. cpuflags="-mcpu=v9"
  2271. ;;
  2272. esac
  2273. elif enabled arm; then
  2274. case $cpu in
  2275. armv*)
  2276. cpuflags="-march=$cpu"
  2277. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  2278. ;;
  2279. *)
  2280. cpuflags="-mcpu=$cpu"
  2281. case $cpu in
  2282. cortex-a*) subarch=armv7a ;;
  2283. cortex-r*) subarch=armv7r ;;
  2284. cortex-m*) enable thumb; subarch=armv7m ;;
  2285. arm11*) subarch=armv6 ;;
  2286. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  2287. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  2288. esac
  2289. ;;
  2290. esac
  2291. elif enabled alpha; then
  2292. enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
  2293. elif enabled bfin; then
  2294. cpuflags="-mcpu=$cpu"
  2295. elif enabled mips; then
  2296. cpuflags="-march=$cpu"
  2297. elif enabled avr32; then
  2298. case $cpu in
  2299. ap7[02]0[0-2])
  2300. subarch="avr32_ap"
  2301. cpuflags="-mpart=$cpu"
  2302. ;;
  2303. ap)
  2304. subarch="avr32_ap"
  2305. cpuflags="-march=$cpu"
  2306. ;;
  2307. uc3[ab]*)
  2308. subarch="avr32_uc"
  2309. cpuflags="-mcpu=$cpu"
  2310. ;;
  2311. uc)
  2312. subarch="avr32_uc"
  2313. cpuflags="-march=$cpu"
  2314. ;;
  2315. esac
  2316. fi
  2317. add_cflags $cpuflags
  2318. add_asflags $cpuflags
  2319. # compiler sanity check
  2320. check_exec <<EOF
  2321. int main(void){ return 0; }
  2322. EOF
  2323. if test "$?" != 0; then
  2324. echo "$cc is unable to create an executable file."
  2325. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  2326. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  2327. echo "Only do this if you know what cross compiling means."
  2328. fi
  2329. die "C compiler test failed."
  2330. fi
  2331. add_cppflags -D_ISOC99_SOURCE
  2332. add_cxxflags -D__STDC_CONSTANT_MACROS
  2333. check_cflags -std=c99
  2334. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  2335. #include <stdlib.h>
  2336. EOF
  2337. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  2338. #include <stdlib.h>
  2339. EOF
  2340. check_host_cflags -std=c99
  2341. check_host_cflags -Wall
  2342. case "$arch" in
  2343. alpha|ia64|mips|parisc|sparc)
  2344. spic=$shared
  2345. ;;
  2346. x86)
  2347. subarch="x86_32"
  2348. check_cc <<EOF && subarch="x86_64"
  2349. int test[(int)sizeof(char*) - 7];
  2350. EOF
  2351. if test "$subarch" = "x86_64"; then
  2352. spic=$shared
  2353. fi
  2354. ;;
  2355. ppc)
  2356. check_cc <<EOF && subarch="ppc64"
  2357. int test[(int)sizeof(char*) - 7];
  2358. EOF
  2359. ;;
  2360. esac
  2361. enable $subarch
  2362. enabled spic && enable pic
  2363. # OS specific
  2364. case $target_os in
  2365. haiku)
  2366. prefix_default="/boot/common"
  2367. network_extralibs="-lnetwork"
  2368. host_libs=
  2369. ;;
  2370. sunos)
  2371. FFSERVERLDFLAGS=""
  2372. SHFLAGS='-shared -Wl,-h,$$(@F)'
  2373. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  2374. network_extralibs="-lsocket -lnsl"
  2375. add_cppflags -D__EXTENSIONS__
  2376. # When using suncc to build, the Solaris linker will mark
  2377. # an executable with each instruction set encountered by
  2378. # the Solaris assembler. As our libraries contain their own
  2379. # guards for processor-specific code, instead suppress
  2380. # generation of the HWCAPS ELF section on Solaris x86 only.
  2381. enabled_all suncc x86 && echo "hwcap_1 = OVERRIDE;" > mapfile && add_ldflags -Wl,-M,mapfile
  2382. nm_opts='-P -g'
  2383. ;;
  2384. netbsd)
  2385. disable symver
  2386. oss_indev_extralibs="-lossaudio"
  2387. oss_outdev_extralibs="-lossaudio"
  2388. ;;
  2389. openbsd)
  2390. enable malloc_aligned
  2391. # On OpenBSD 4.5. the compiler does not use PIC unless
  2392. # explicitly using -fPIC. FFmpeg builds fine without PIC,
  2393. # however the generated executable will not do anything
  2394. # (simply quits with exit-code 1, no crash, no output).
  2395. # Thus explicitly enable PIC here.
  2396. enable pic
  2397. disable symver
  2398. SHFLAGS='-shared'
  2399. oss_indev_extralibs="-lossaudio"
  2400. oss_outdev_extralibs="-lossaudio"
  2401. ;;
  2402. dragonfly)
  2403. enable malloc_aligned
  2404. disable symver
  2405. ;;
  2406. freebsd)
  2407. enable malloc_aligned
  2408. ;;
  2409. bsd/os)
  2410. add_extralibs -lpoll -lgnugetopt
  2411. strip="strip -d"
  2412. ;;
  2413. darwin)
  2414. enable malloc_aligned
  2415. gas="gas-preprocessor.pl $cc"
  2416. enabled ppc && add_asflags -force_cpusubtype_ALL
  2417. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  2418. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  2419. strip="${strip} -x"
  2420. add_ldflags -Wl,-dynamic,-search_paths_first
  2421. SLIBSUF=".dylib"
  2422. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  2423. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  2424. FFSERVERLDFLAGS=-Wl,-bind_at_load
  2425. objformat="macho"
  2426. enabled x86_64 && objformat="macho64"
  2427. enabled_any pic shared ||
  2428. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  2429. ;;
  2430. mingw32*)
  2431. if test $target_os = "mingw32ce"; then
  2432. disable network
  2433. else
  2434. target_os=mingw32
  2435. fi
  2436. LIBTARGET=i386
  2437. if enabled x86_64; then
  2438. enable malloc_aligned
  2439. LIBTARGET=x64
  2440. elif enabled arm; then
  2441. LIBTARGET=arm-wince
  2442. fi
  2443. shlibdir_default="$bindir_default"
  2444. SLIBPREF=""
  2445. SLIBSUF=".dll"
  2446. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2447. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2448. SLIB_EXTRA_CMD='-lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  2449. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2450. SLIB_INSTALL_LINKS=
  2451. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  2452. SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  2453. 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'
  2454. objformat="win32"
  2455. enable dos_paths
  2456. check_cflags -fno-common
  2457. check_cpp_condition _mingw.h "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) \
  2458. || (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  2459. die "ERROR: MinGW runtime version must be >= 3.15."
  2460. add_cppflags -U__STRICT_ANSI__
  2461. ;;
  2462. cygwin*)
  2463. target_os=cygwin
  2464. shlibdir_default="$bindir_default"
  2465. SLIBPREF="cyg"
  2466. SLIBSUF=".dll"
  2467. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2468. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2469. SHFLAGS='-shared -Wl,--enable-auto-image-base'
  2470. objformat="win32"
  2471. enable dos_paths
  2472. check_cflags -fno-common
  2473. add_cppflags -U__STRICT_ANSI__
  2474. ;;
  2475. *-dos|freedos|opendos)
  2476. network_extralibs="-lsocket"
  2477. objformat="coff"
  2478. enable dos_paths
  2479. add_cppflags -U__STRICT_ANSI__
  2480. ;;
  2481. linux)
  2482. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2483. enable dv1394
  2484. ;;
  2485. irix*)
  2486. target_os=irix
  2487. ranlib="echo ignoring ranlib"
  2488. ;;
  2489. os/2*)
  2490. strip="lxlite -CS"
  2491. ln_s="cp -f"
  2492. objformat="aout"
  2493. add_cppflags -D_GNU_SOURCE
  2494. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
  2495. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  2496. FFSERVERLDFLAGS=""
  2497. LIBSUF="_s.a"
  2498. SLIBPREF=""
  2499. SLIBSUF=".dll"
  2500. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  2501. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  2502. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  2503. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  2504. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  2505. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  2506. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  2507. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  2508. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  2509. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  2510. SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
  2511. enable dos_paths
  2512. enable_weak os2threads
  2513. ;;
  2514. gnu/kfreebsd)
  2515. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
  2516. ;;
  2517. gnu)
  2518. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2519. ;;
  2520. qnx)
  2521. add_cppflags -D_QNX_SOURCE
  2522. network_extralibs="-lsocket"
  2523. ;;
  2524. symbian)
  2525. SLIBSUF=".dll"
  2526. enable dos_paths
  2527. add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
  2528. add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
  2529. add_ldflags -Wl,--target1-abs,--no-undefined \
  2530. -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
  2531. -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
  2532. add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
  2533. -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
  2534. -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
  2535. ;;
  2536. none)
  2537. ;;
  2538. *)
  2539. die "Unknown OS '$target_os'."
  2540. ;;
  2541. esac
  2542. echo "config:$arch:$subarch:$cpu:$target_os:$cc_ident:$FFMPEG_CONFIGURATION" >config.fate
  2543. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
  2544. set_default $PATHS_LIST
  2545. # we need to build at least one lib type
  2546. if ! enabled_any static shared; then
  2547. cat <<EOF
  2548. At least one library type must be built.
  2549. Specify --enable-static to build the static libraries or --enable-shared to
  2550. build the shared libraries as well. To only build the shared libraries specify
  2551. --disable-static in addition to --enable-shared.
  2552. EOF
  2553. exit 1;
  2554. fi
  2555. die_license_disabled() {
  2556. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  2557. }
  2558. die_license_disabled gpl libcdio
  2559. die_license_disabled gpl libx264
  2560. die_license_disabled gpl libxavs
  2561. die_license_disabled gpl libxvid
  2562. die_license_disabled gpl x11grab
  2563. die_license_disabled nonfree libaacplus
  2564. die_license_disabled nonfree libfaac
  2565. die_license_disabled nonfree openssl
  2566. die_license_disabled version3 libopencore_amrnb
  2567. die_license_disabled version3 libopencore_amrwb
  2568. die_license_disabled version3 libvo_aacenc
  2569. die_license_disabled version3 libvo_amrwbenc
  2570. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  2571. disabled optimizations || check_cflags -fomit-frame-pointer
  2572. enable_pic() {
  2573. enable pic
  2574. add_cppflags -DPIC
  2575. add_cflags -fPIC
  2576. add_asflags -fPIC
  2577. }
  2578. enabled pic && enable_pic
  2579. check_cc <<EOF || die "Symbol mangling check failed."
  2580. int ff_extern;
  2581. EOF
  2582. sym=$($nm $nm_opts $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  2583. extern_prefix=${sym%%ff_extern*}
  2584. check_cc <<EOF && enable inline_asm
  2585. void foo(void) { __asm__ volatile ("" ::); }
  2586. EOF
  2587. _restrict=
  2588. for restrict_keyword in restrict __restrict__ __restrict; do
  2589. check_cc <<EOF && _restrict=$restrict_keyword && break
  2590. void foo(char * $restrict_keyword p);
  2591. EOF
  2592. done
  2593. check_cc <<EOF && enable attribute_packed
  2594. struct { int x; } __attribute__((packed)) x;
  2595. EOF
  2596. check_cc <<EOF && enable attribute_may_alias
  2597. union { int x; } __attribute__((may_alias)) x;
  2598. EOF
  2599. check_cc <<EOF || die "endian test failed"
  2600. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  2601. EOF
  2602. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  2603. if enabled alpha; then
  2604. check_cflags -mieee
  2605. elif enabled arm; then
  2606. enabled thumb && check_cflags -mthumb || check_cflags -marm
  2607. nogas=die
  2608. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  2609. enable vfp_args
  2610. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
  2611. case "${cross_prefix:-$cc}" in
  2612. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  2613. *) check_ld "cc" <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  2614. __asm__ (".eabi_attribute 28, 1");
  2615. int main(void) { return 0; }
  2616. EOF
  2617. esac
  2618. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  2619. fi
  2620. enabled armv5te && check_asm armv5te '"qadd r0, r0, r0"'
  2621. enabled armv6 && check_asm armv6 '"sadd16 r0, r0, r0"'
  2622. enabled armv6t2 && check_asm armv6t2 '"movt r0, #0"'
  2623. enabled armvfp && check_asm armvfp '"fadds s0, s0, s0"'
  2624. enabled iwmmxt && check_asm iwmmxt '"wunpckelub wr6, wr4"'
  2625. enabled neon && check_asm neon '"vadd.i16 q0, q0, q0"'
  2626. enabled vfpv3 && check_asm vfpv3 '"vmov.f32 s0, #1.0"'
  2627. check_asm asm_mod_y '"vmul.i32 d0, d0, %y0" :: "x"(0)'
  2628. enabled_all armv6t2 shared !pic && enable_pic
  2629. elif enabled mips; then
  2630. check_asm loongson '"dmult.g $1, $2, $3"'
  2631. enabled mmi && check_asm mmi '"lq $2, 0($2)"'
  2632. elif enabled ppc; then
  2633. enable local_aligned_8 local_aligned_16
  2634. check_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  2635. check_asm ibm_asm '"add 0, 0, 0"'
  2636. check_asm ppc4xx '"maclhw r10, r11, r12"'
  2637. check_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  2638. # AltiVec flags: The FSF version of GCC differs from the Apple version
  2639. if enabled altivec; then
  2640. nogas=warn
  2641. check_cflags -maltivec -mabi=altivec &&
  2642. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  2643. check_cflags -faltivec
  2644. # check if our compiler supports Motorola AltiVec C API
  2645. check_cc <<EOF || disable altivec
  2646. $inc_altivec_h
  2647. int main(void) {
  2648. vector signed int v1, v2, v3;
  2649. v1 = vec_add(v2,v3);
  2650. return 0;
  2651. }
  2652. EOF
  2653. # check if our compiler supports braces for vector declarations
  2654. check_cc <<EOF || die "You need a compiler that supports {} in AltiVec vector declarations."
  2655. $inc_altivec_h
  2656. int main (void) { (vector int) {1}; return 0; }
  2657. EOF
  2658. fi
  2659. elif enabled sparc; then
  2660. enabled vis && check_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc &&
  2661. add_cflags -mcpu=ultrasparc -mtune=ultrasparc
  2662. elif enabled x86; then
  2663. enable local_aligned_8 local_aligned_16
  2664. # check whether EBP is available on x86
  2665. # As 'i' is stored on the stack, this program will crash
  2666. # if the base pointer is used to access it because the
  2667. # base pointer is cleared in the inline assembly code.
  2668. check_exec_crash <<EOF && enable ebp_available
  2669. volatile int i=0;
  2670. __asm__ volatile (
  2671. "xorl %%ebp, %%ebp"
  2672. ::: "%ebp");
  2673. return i;
  2674. EOF
  2675. # check whether EBX is available on x86
  2676. check_asm ebx_available '""::"b"(0)' &&
  2677. check_asm ebx_available '"":::"%ebx"'
  2678. # check whether xmm clobbers are supported
  2679. check_asm xmm_clobbers '"":::"%xmm0"'
  2680. # check whether binutils is new enough to compile SSSE3/MMX2
  2681. enabled ssse3 && check_asm ssse3 '"pabsw %xmm0, %xmm0"'
  2682. enabled mmx2 && check_asm mmx2 '"pmaxub %mm0, %mm1"'
  2683. if ! disabled_any asm mmx yasm; then
  2684. if check_cmd $yasmexe --version; then
  2685. enabled x86_64 && yasm_extra="-m amd64"
  2686. yasm_debug="-g dwarf2"
  2687. elif check_cmd nasm -v; then
  2688. yasmexe=nasm
  2689. yasm_debug="-g -F dwarf"
  2690. enabled x86_64 && test "$objformat" = elf && objformat=elf64
  2691. fi
  2692. YASMFLAGS="-f $objformat $yasm_extra"
  2693. enabled pic && append YASMFLAGS "-DPIC"
  2694. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  2695. case "$objformat" in
  2696. elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
  2697. esac
  2698. check_yasm "pextrd [eax], xmm0, 1" && enable yasm ||
  2699. die "yasm not found, use --disable-yasm for a crippled build"
  2700. check_yasm "vextractf128 xmm0, ymm0, 0" || disable avx
  2701. fi
  2702. case "$cpu" in
  2703. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  2704. disable fast_clz
  2705. ;;
  2706. esac
  2707. fi
  2708. if enabled asm; then
  2709. as=${gas:=$as}
  2710. check_asm gnu_as '".macro m n\n\\n:.int 0\n.endm\nm x"' ||
  2711. $nogas "GNU assembler not found, install gas-preprocessor"
  2712. fi
  2713. check_ldflags -Wl,--as-needed
  2714. if check_func dlopen; then
  2715. ldl=
  2716. elif check_func dlopen -ldl; then
  2717. ldl=-ldl
  2718. fi
  2719. if enabled network; then
  2720. check_type "sys/types.h sys/socket.h" socklen_t
  2721. check_type netdb.h "struct addrinfo"
  2722. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  2723. check_type netinet/in.h "struct sockaddr_in6"
  2724. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  2725. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  2726. # Prefer arpa/inet.h over winsock2
  2727. if check_header arpa/inet.h ; then
  2728. check_func closesocket
  2729. elif check_header winsock2.h ; then
  2730. check_func_headers winsock2.h closesocket -lws2 && \
  2731. network_extralibs="-lws2" || \
  2732. { check_func_headers winsock2.h closesocket -lws2_32 && \
  2733. network_extralibs="-lws2_32"; }
  2734. check_type ws2tcpip.h socklen_t
  2735. check_type ws2tcpip.h "struct addrinfo"
  2736. check_type ws2tcpip.h "struct ipv6_mreq"
  2737. check_type ws2tcpip.h "struct sockaddr_in6"
  2738. check_type ws2tcpip.h "struct sockaddr_storage"
  2739. check_struct winsock2.h "struct sockaddr" sa_len
  2740. else
  2741. disable network
  2742. fi
  2743. fi
  2744. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  2745. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  2746. check_func fcntl
  2747. check_func fork
  2748. check_func getaddrinfo $network_extralibs
  2749. check_func gethrtime
  2750. check_func getrusage
  2751. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  2752. check_func inet_aton $network_extralibs
  2753. check_func isatty
  2754. check_func localtime_r
  2755. check_func ${malloc_prefix}memalign && enable memalign
  2756. check_func mkstemp
  2757. check_func mmap
  2758. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  2759. check_func setrlimit
  2760. check_func strerror_r
  2761. check_func strptime
  2762. check_func sched_getaffinity
  2763. check_func sysconf
  2764. check_func sysctl
  2765. check_func_headers conio.h kbhit
  2766. check_func_headers windows.h PeekNamedPipe
  2767. check_func_headers io.h setmode
  2768. check_func_headers lzo/lzo1x.h lzo1x_999_compress
  2769. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  2770. check_func_headers windows.h GetProcessAffinityMask
  2771. check_func_headers windows.h GetProcessTimes
  2772. check_func_headers windows.h MapViewOfFile
  2773. check_func_headers windows.h VirtualAlloc
  2774. check_header dlfcn.h
  2775. check_header dxva2api.h -D_WIN32_WINNT=0x0600
  2776. check_header libcrystalhd/libcrystalhd_if.h
  2777. check_header malloc.h
  2778. check_header poll.h
  2779. check_header sys/mman.h
  2780. check_header sys/param.h
  2781. check_header sys/resource.h
  2782. check_header sys/select.h
  2783. check_header termios.h
  2784. check_header vdpau/vdpau.h
  2785. check_header vdpau/vdpau_x11.h
  2786. check_header X11/extensions/XvMClib.h
  2787. check_header asm/types.h
  2788. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  2789. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  2790. # check for VDA header
  2791. if ! disabled vda; then
  2792. if check_header VideoDecodeAcceleration/VDADecoder.h; then
  2793. enable vda
  2794. add_extralibs -framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore
  2795. fi
  2796. fi
  2797. if ! disabled w32threads && ! enabled pthreads; then
  2798. check_func _beginthreadex && enable w32threads
  2799. fi
  2800. # check for some common methods of building with pthread support
  2801. # do this before the optional library checks as some of them require pthreads
  2802. if ! disabled pthreads && ! enabled w32threads && ! enabled os2threads; then
  2803. enable pthreads
  2804. if check_func pthread_create; then
  2805. :
  2806. elif check_func pthread_create -pthread; then
  2807. add_cflags -pthread
  2808. add_extralibs -pthread
  2809. elif check_func pthread_create -pthreads; then
  2810. add_cflags -pthreads
  2811. add_extralibs -pthreads
  2812. elif check_func pthread_create -lpthreadGC2; then
  2813. add_extralibs -lpthreadGC2
  2814. elif ! check_lib pthread.h pthread_create -lpthread; then
  2815. disable pthreads
  2816. fi
  2817. fi
  2818. for thread in $THREADS_LIST; do
  2819. if enabled $thread; then
  2820. test -n "$thread_type" &&
  2821. die "ERROR: Only one thread type must be selected." ||
  2822. thread_type="$thread"
  2823. fi
  2824. done
  2825. check_lib math.h sin -lm && LIBM="-lm"
  2826. disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd
  2827. enabled vaapi && require vaapi va/va.h vaInitialize -lva
  2828. check_mathfunc cbrtf
  2829. check_mathfunc exp2
  2830. check_mathfunc exp2f
  2831. check_mathfunc llrint
  2832. check_mathfunc llrintf
  2833. check_mathfunc log2
  2834. check_mathfunc log2f
  2835. check_mathfunc lrint
  2836. check_mathfunc lrintf
  2837. check_mathfunc round
  2838. check_mathfunc roundf
  2839. check_mathfunc trunc
  2840. check_mathfunc truncf
  2841. # these are off by default, so fail if requested and not available
  2842. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
  2843. enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
  2844. enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
  2845. enabled libaacplus && require "libaacplus >= 2.0.0" aacplus.h aacplusEncOpen -laacplus
  2846. enabled libass && require_pkg_config libass ass/ass.h ass_library_init
  2847. enabled libcelt && require libcelt celt/celt.h celt_decode -lcelt0 &&
  2848. { check_lib celt/celt.h celt_decoder_create_custom -lcelt0 ||
  2849. die "ERROR: libcelt version must be >= 0.11.0."; }
  2850. enabled libdirac && require_pkg_config dirac \
  2851. "libdirac_decoder/dirac_parser.h libdirac_encoder/dirac_encoder.h" \
  2852. "dirac_decoder_init dirac_encoder_init"
  2853. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  2854. enabled libfreetype && require_pkg_config freetype2 "ft2build.h freetype/freetype.h" FT_Init_FreeType
  2855. enabled libgsm && require libgsm gsm/gsm.h gsm_create -lgsm
  2856. enabled libmodplug && require libmodplug libmodplug/modplug.h ModPlug_Load -lmodplug
  2857. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  2858. enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
  2859. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  2860. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  2861. enabled libopencv && require_pkg_config opencv opencv/cxcore.h cvCreateImageHeader
  2862. enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
  2863. enabled libpulse && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
  2864. enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
  2865. enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
  2866. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  2867. enabled libstagefright_h264 && require_cpp libstagefright_h264 "binder/ProcessState.h media/stagefright/MetaData.h
  2868. media/stagefright/MediaBufferGroup.h media/stagefright/MediaDebug.h media/stagefright/MediaDefs.h
  2869. media/stagefright/OMXClient.h media/stagefright/OMXCodec.h" android::OMXClient -lstagefright -lmedia -lutils -lbinder
  2870. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  2871. enabled libutvideo && require_cpp utvideo "stdint.h stdlib.h utvideo/utvideo.h utvideo/Codec.h" 'CCodec*' -lutvideo -lstdc++
  2872. enabled libv4l2 && require_pkg_config libv4l2 libv4l2.h v4l2_ioctl
  2873. enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
  2874. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  2875. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  2876. enabled libvpx && {
  2877. enabled libvpx_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
  2878. die "ERROR: libvpx decoder version must be >=0.9.1"; }
  2879. enabled libvpx_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VPX_CQ" -lvpx ||
  2880. die "ERROR: libvpx encoder version must be >=0.9.6"; } }
  2881. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
  2882. { check_cpp_condition x264.h "X264_BUILD >= 118" ||
  2883. die "ERROR: libx264 version must be >= 0.118."; }
  2884. enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
  2885. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  2886. enabled openal && { { for al_libs in "${OPENAL_LIBS}" "-lopenal" "-lOpenAL32"; do
  2887. check_lib 'AL/al.h' alGetError "${al_libs}" && break; done } ||
  2888. die "ERROR: openal not found"; } &&
  2889. { check_cpp_condition "AL/al.h" "defined(AL_VERSION_1_1)" ||
  2890. die "ERROR: openal version must be 1.1 or compatible"; }
  2891. enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
  2892. check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
  2893. check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
  2894. die "ERROR: openssl not found"; }
  2895. # libdc1394 check
  2896. if enabled libdc1394; then
  2897. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  2898. enable libdc1394_2; } ||
  2899. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  2900. enable libdc1394_1; } ||
  2901. die "ERROR: No version of libdc1394 found "
  2902. fi
  2903. SDL_CONFIG="${cross_prefix}sdl-config"
  2904. if check_pkg_config sdl SDL_version.h SDL_Linked_Version; then
  2905. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  2906. enable sdl &&
  2907. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  2908. else
  2909. if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
  2910. sdl_cflags=$("${SDL_CONFIG}" --cflags)
  2911. sdl_libs=$("${SDL_CONFIG}" --libs)
  2912. check_func_headers SDL_version.h SDL_Linked_Version $sdl_cflags $sdl_libs &&
  2913. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  2914. enable sdl &&
  2915. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  2916. fi
  2917. fi
  2918. enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs
  2919. texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
  2920. makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo
  2921. check_header linux/fb.h
  2922. check_header linux/videodev.h
  2923. check_header linux/videodev2.h
  2924. check_struct linux/videodev2.h "struct v4l2_frmivalenum" discrete
  2925. check_header sys/videoio.h
  2926. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  2927. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  2928. # w32api 3.12 had it defined wrong
  2929. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  2930. check_type "dshow.h" IBaseFilter
  2931. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  2932. { check_header dev/bktr/ioctl_meteor.h &&
  2933. check_header dev/bktr/ioctl_bt848.h; } ||
  2934. { check_header machine/ioctl_meteor.h &&
  2935. check_header machine/ioctl_bt848.h; } ||
  2936. { check_header dev/video/meteor/ioctl_meteor.h &&
  2937. check_header dev/video/bktr/ioctl_bt848.h; } ||
  2938. check_header dev/ic/bt8xx.h
  2939. check_header sndio.h
  2940. if check_struct sys/soundcard.h audio_buf_info bytes; then
  2941. enable_safe sys/soundcard.h
  2942. else
  2943. check_cc -D__BSD_VISIBLE -D__XSI_VISIBLE <<EOF && add_cppflags -D__BSD_VISIBLE -D__XSI_VISIBLE && enable_safe sys/soundcard.h
  2944. #include <sys/soundcard.h>
  2945. audio_buf_info abc;
  2946. EOF
  2947. fi
  2948. check_header soundcard.h
  2949. enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  2950. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack && check_func sem_timedwait
  2951. enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
  2952. enabled libcdio &&
  2953. check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open "-lcdio_paranoia -lcdio_cdda -lcdio"
  2954. enabled x11grab &&
  2955. check_header X11/Xlib.h &&
  2956. check_header X11/extensions/XShm.h &&
  2957. check_header X11/extensions/Xfixes.h &&
  2958. check_func XOpenDisplay -lX11 &&
  2959. check_func XShmCreateImage -lX11 -lXext &&
  2960. check_func XFixesGetCursorImage -lX11 -lXext -lXfixes
  2961. if ! disabled vaapi; then
  2962. check_lib va/va.h vaInitialize -lva && {
  2963. check_cpp_condition va/va_version.h "VA_CHECK_VERSION(0,32,0)" ||
  2964. warn "Please upgrade to VA-API >= 0.32 if you would like full VA-API support.";
  2965. } || disable vaapi
  2966. fi
  2967. if ! disabled vdpau && enabled vdpau_vdpau_h; then
  2968. check_cpp_condition \
  2969. vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  2970. { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." &&
  2971. disable vdpau; }
  2972. fi
  2973. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  2974. enabled coverage && add_cflags "-fprofile-arcs -ftest-coverage" && add_ldflags "-fprofile-arcs -ftest-coverage"
  2975. test -n "$valgrind" && target_exec="$valgrind --error-exitcode=1 --malloc-fill=0x2a --track-origins=yes --leak-check=full --gen-suppressions=all --suppressions=$source_path/tests/fate-valgrind.supp"
  2976. # add some useful compiler flags if supported
  2977. check_cflags -Wdeclaration-after-statement
  2978. check_cflags -Wall
  2979. check_cflags -Wno-parentheses
  2980. check_cflags -Wno-switch
  2981. check_cflags -Wno-format-zero-length
  2982. check_cflags -Wdisabled-optimization
  2983. check_cflags -Wpointer-arith
  2984. check_cflags -Wredundant-decls
  2985. check_cflags -Wno-pointer-sign
  2986. check_cflags -Wcast-qual
  2987. check_cflags -Wwrite-strings
  2988. check_cflags -Wtype-limits
  2989. check_cflags -Wundef
  2990. check_cflags -Wmissing-prototypes
  2991. check_cflags -Wno-pointer-to-int-cast
  2992. check_cflags -Wstrict-prototypes
  2993. enabled extra_warnings && check_cflags -Winline
  2994. # add some linker flags
  2995. check_ldflags -Wl,--warn-common
  2996. check_ldflags -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil
  2997. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  2998. enabled xmm_clobber_test && \
  2999. check_ldflags -Wl,--wrap,avcodec_open2 \
  3000. -Wl,--wrap,avcodec_decode_audio4 \
  3001. -Wl,--wrap,avcodec_decode_video2 \
  3002. -Wl,--wrap,avcodec_decode_subtitle2 \
  3003. -Wl,--wrap,avcodec_encode_audio2 \
  3004. -Wl,--wrap,avcodec_encode_video \
  3005. -Wl,--wrap,avcodec_encode_subtitle \
  3006. -Wl,--wrap,sws_scale || \
  3007. disable xmm_clobber_test
  3008. echo "X{};" > $TMPV
  3009. if test_ldflags -Wl,--version-script,$TMPV; then
  3010. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  3011. check_cc <<EOF && enable symver_asm_label
  3012. void ff_foo(void) __asm__ ("av_foo@VERSION");
  3013. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  3014. EOF
  3015. check_cc <<EOF && enable symver_gnu_asm
  3016. __asm__(".symver ff_foo,av_foo@VERSION");
  3017. void ff_foo(void) {}
  3018. EOF
  3019. fi
  3020. if [ -n "$optflags" ]; then
  3021. add_cflags $optflags
  3022. elif enabled small; then
  3023. add_cflags $size_cflags
  3024. elif enabled optimizations; then
  3025. add_cflags $speed_cflags
  3026. else
  3027. add_cflags $noopt_cflags
  3028. fi
  3029. check_cflags -fno-math-errno
  3030. check_cflags -fno-signed-zeros
  3031. check_cc -mno-red-zone <<EOF && noredzone_flags="-mno-red-zone"
  3032. int x;
  3033. EOF
  3034. if enabled icc; then
  3035. # Just warnings, no remarks
  3036. check_cflags -w1
  3037. # -wd: Disable following warnings
  3038. # 144, 167, 556: -Wno-pointer-sign
  3039. # 1292: attribute "foo" ignored
  3040. # 10006: ignoring unknown option -fno-signed-zeros
  3041. # 10148: ignoring unknown option -Wno-parentheses
  3042. # 10156: ignoring option '-W'; no argument required
  3043. check_cflags -wd144,167,556,1292,10006,10148,10156
  3044. # 11030: Warning unknown option --as-needed
  3045. # 10156: ignoring option '-export'; no argument required
  3046. check_ldflags -wd10156,11030
  3047. # Allow to compile with optimizations
  3048. check_ldflags -march=$cpu
  3049. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  3050. enable ebp_available
  3051. if enabled x86_32; then
  3052. test ${icc_version%%.*} -ge 11 && \
  3053. check_cflags -falign-stack=maintain-16-byte || \
  3054. disable aligned_stack
  3055. fi
  3056. elif enabled ccc; then
  3057. # disable some annoying warnings
  3058. add_cflags -msg_disable cvtu32to64
  3059. add_cflags -msg_disable embedcomment
  3060. add_cflags -msg_disable needconstext
  3061. add_cflags -msg_disable nomainieee
  3062. add_cflags -msg_disable ptrmismatch1
  3063. add_cflags -msg_disable unreachcode
  3064. elif enabled gcc; then
  3065. check_cflags -fno-tree-vectorize
  3066. check_cflags -Werror=implicit-function-declaration
  3067. check_cflags -Werror=missing-prototypes
  3068. elif enabled llvm_gcc; then
  3069. check_cflags -mllvm -stack-alignment=16
  3070. elif enabled clang; then
  3071. check_cflags -mllvm -stack-alignment=16
  3072. check_cflags -Qunused-arguments
  3073. elif enabled armcc; then
  3074. # 2523: use of inline assembler is deprecated
  3075. add_cflags -W${armcc_opt},--diag_suppress=2523
  3076. add_cflags -W${armcc_opt},--diag_suppress=1207
  3077. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  3078. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  3079. add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
  3080. add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
  3081. elif enabled tms470; then
  3082. add_cflags -pds=824 -pds=837
  3083. elif enabled pathscale; then
  3084. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  3085. fi
  3086. enabled_any $THREADS_LIST && enable threads
  3087. check_deps $CONFIG_LIST \
  3088. $CONFIG_EXTRA \
  3089. $HAVE_LIST \
  3090. $ALL_COMPONENTS \
  3091. $ALL_TESTS \
  3092. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  3093. if test $target_os = "haiku"; then
  3094. disable memalign
  3095. disable posix_memalign
  3096. fi
  3097. ! enabled_any memalign posix_memalign malloc_aligned &&
  3098. enabled_any $need_memalign && enable memalign_hack
  3099. echo "install prefix $prefix"
  3100. echo "source path $source_path"
  3101. echo "C compiler $cc"
  3102. echo "ARCH $arch ($cpu)"
  3103. if test "$build_suffix" != ""; then
  3104. echo "build suffix $build_suffix"
  3105. fi
  3106. if test "$progs_suffix" != ""; then
  3107. echo "progs suffix $progs_suffix"
  3108. fi
  3109. if test "$extra_version" != ""; then
  3110. echo "version string suffix $extra_version"
  3111. fi
  3112. echo "big-endian ${bigendian-no}"
  3113. echo "runtime cpu detection ${runtime_cpudetect-no}"
  3114. if enabled x86; then
  3115. echo "${yasmexe} ${yasm-no}"
  3116. echo "MMX enabled ${mmx-no}"
  3117. echo "MMX2 enabled ${mmx2-no}"
  3118. echo "3DNow! enabled ${amd3dnow-no}"
  3119. echo "3DNow! extended enabled ${amd3dnowext-no}"
  3120. echo "SSE enabled ${sse-no}"
  3121. echo "SSSE3 enabled ${ssse3-no}"
  3122. echo "AVX enabled ${avx-no}"
  3123. echo "CMOV enabled ${cmov-no}"
  3124. echo "CMOV is fast ${fast_cmov-no}"
  3125. echo "EBX available ${ebx_available-no}"
  3126. echo "EBP available ${ebp_available-no}"
  3127. fi
  3128. if enabled arm; then
  3129. echo "ARMv5TE enabled ${armv5te-no}"
  3130. echo "ARMv6 enabled ${armv6-no}"
  3131. echo "ARMv6T2 enabled ${armv6t2-no}"
  3132. echo "ARM VFP enabled ${armvfp-no}"
  3133. echo "IWMMXT enabled ${iwmmxt-no}"
  3134. echo "NEON enabled ${neon-no}"
  3135. fi
  3136. if enabled mips; then
  3137. echo "MMI enabled ${mmi-no}"
  3138. fi
  3139. if enabled ppc; then
  3140. echo "AltiVec enabled ${altivec-no}"
  3141. echo "PPC 4xx optimizations ${ppc4xx-no}"
  3142. echo "dcbzl available ${dcbzl-no}"
  3143. fi
  3144. if enabled sparc; then
  3145. echo "VIS enabled ${vis-no}"
  3146. fi
  3147. echo "debug symbols ${debug-no}"
  3148. echo "strip symbols ${stripping-no}"
  3149. echo "optimize for size ${small-no}"
  3150. echo "optimizations ${optimizations-no}"
  3151. echo "static ${static-no}"
  3152. echo "shared ${shared-no}"
  3153. echo "postprocessing support ${postproc-no}"
  3154. echo "new filter support ${avfilter-no}"
  3155. echo "network support ${network-no}"
  3156. echo "threading support ${thread_type-no}"
  3157. echo "safe bitstream reader ${safe_bitstream_reader-no}"
  3158. echo "SDL support ${sdl-no}"
  3159. echo "libdxva2 enabled ${dxva2-no}"
  3160. echo "libva enabled ${vaapi-no}"
  3161. echo "libvdpau enabled ${vdpau-no}"
  3162. echo "AVISynth enabled ${avisynth-no}"
  3163. echo "frei0r enabled ${frei0r-no}"
  3164. echo "gnutls enabled ${gnutls-no}"
  3165. echo "libaacplus enabled ${libaacplus-no}"
  3166. echo "libass enabled ${libass-no}"
  3167. echo "libcdio support ${libcdio-no}"
  3168. echo "libcelt enabled ${libcelt-no}"
  3169. echo "libdc1394 support ${libdc1394-no}"
  3170. echo "libdirac enabled ${libdirac-no}"
  3171. echo "libfaac enabled ${libfaac-no}"
  3172. echo "libgsm enabled ${libgsm-no}"
  3173. echo "libmodplug enabled ${libmodplug-no}"
  3174. echo "libmp3lame enabled ${libmp3lame-no}"
  3175. echo "libnut enabled ${libnut-no}"
  3176. echo "libopencore-amrnb support ${libopencore_amrnb-no}"
  3177. echo "libopencore-amrwb support ${libopencore_amrwb-no}"
  3178. echo "libopencv support ${libopencv-no}"
  3179. echo "libopenjpeg enabled ${libopenjpeg-no}"
  3180. echo "libpulse enabled ${libpulse-no}"
  3181. echo "librtmp enabled ${librtmp-no}"
  3182. echo "libschroedinger enabled ${libschroedinger-no}"
  3183. echo "libspeex enabled ${libspeex-no}"
  3184. echo "libstagefright-h264 enabled ${libstagefright_h264-no}"
  3185. echo "libtheora enabled ${libtheora-no}"
  3186. echo "libutvideo enabled ${libutvideo-no}"
  3187. echo "libv4l2 enabled ${libv4l2-no}"
  3188. echo "libvo-aacenc support ${libvo_aacenc-no}"
  3189. echo "libvo-amrwbenc support ${libvo_amrwbenc-no}"
  3190. echo "libvorbis enabled ${libvorbis-no}"
  3191. echo "libvpx enabled ${libvpx-no}"
  3192. echo "libx264 enabled ${libx264-no}"
  3193. echo "libxavs enabled ${libxavs-no}"
  3194. echo "libxvid enabled ${libxvid-no}"
  3195. echo "openal enabled ${openal-no}"
  3196. echo "openssl enabled ${openssl-no}"
  3197. echo "zlib enabled ${zlib-no}"
  3198. echo "bzlib enabled ${bzlib-no}"
  3199. echo
  3200. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  3201. echo "Enabled ${type}s:"
  3202. eval list=\$$(toupper $type)_LIST
  3203. print_enabled '_*' $list | sort | pr -r -3 -t
  3204. echo
  3205. done
  3206. license="LGPL version 2.1 or later"
  3207. if enabled nonfree; then
  3208. license="nonfree and unredistributable"
  3209. elif enabled gplv3; then
  3210. license="GPL version 3 or later"
  3211. elif enabled lgplv3; then
  3212. license="LGPL version 3 or later"
  3213. elif enabled gpl; then
  3214. license="GPL version 2 or later"
  3215. fi
  3216. echo "License: $license"
  3217. echo "Creating config.mak and config.h..."
  3218. test -e Makefile || $ln_s "$source_path/Makefile" .
  3219. enabled stripping || strip="echo skipping strip"
  3220. config_files="$TMPH config.mak"
  3221. cat > config.mak <<EOF
  3222. # Automatically generated by configure - do not modify!
  3223. ifndef FFMPEG_CONFIG_MAK
  3224. FFMPEG_CONFIG_MAK=1
  3225. FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
  3226. prefix=$prefix
  3227. LIBDIR=\$(DESTDIR)$libdir
  3228. SHLIBDIR=\$(DESTDIR)$shlibdir
  3229. INCDIR=\$(DESTDIR)$incdir
  3230. BINDIR=\$(DESTDIR)$bindir
  3231. DATADIR=\$(DESTDIR)$datadir
  3232. MANDIR=\$(DESTDIR)$mandir
  3233. SRC_PATH=$source_path
  3234. ifndef MAIN_MAKEFILE
  3235. SRC_PATH:=\$(SRC_PATH:.%=..%)
  3236. endif
  3237. CC_IDENT=$cc_ident
  3238. ARCH=$arch
  3239. CC=$cc
  3240. CXX=$cxx
  3241. AS=$as
  3242. LD=$ld
  3243. DEPCC=$dep_cc
  3244. YASM=$yasmexe
  3245. YASMDEP=$yasmexe
  3246. AR=$ar
  3247. RANLIB=$ranlib
  3248. CP=cp -p
  3249. LN_S=$ln_s
  3250. STRIP=$strip
  3251. CPPFLAGS=$CPPFLAGS
  3252. CFLAGS=$CFLAGS
  3253. CXXFLAGS=$CXXFLAGS
  3254. ASFLAGS=$ASFLAGS
  3255. AS_O=$CC_O
  3256. CC_O=$CC_O
  3257. CXX_O=$CXX_O
  3258. LDFLAGS=$LDFLAGS
  3259. FFSERVERLDFLAGS=$FFSERVERLDFLAGS
  3260. SHFLAGS=$SHFLAGS
  3261. YASMFLAGS=$YASMFLAGS
  3262. BUILDSUF=$build_suffix
  3263. PROGSSUF=$progs_suffix
  3264. FULLNAME=$FULLNAME
  3265. LIBPREF=$LIBPREF
  3266. LIBSUF=$LIBSUF
  3267. LIBNAME=$LIBNAME
  3268. SLIBPREF=$SLIBPREF
  3269. SLIBSUF=$SLIBSUF
  3270. EXESUF=$EXESUF
  3271. EXTRA_VERSION=$extra_version
  3272. DEPFLAGS=$DEPFLAGS
  3273. CCDEP=$CCDEP
  3274. CXXDEP=$CXXDEP
  3275. ASDEP=$ASDEP
  3276. CC_DEPFLAGS=$CC_DEPFLAGS
  3277. AS_DEPFLAGS=$AS_DEPFLAGS
  3278. HOSTCC=$host_cc
  3279. HOSTCFLAGS=$host_cflags
  3280. HOSTEXESUF=$HOSTEXESUF
  3281. HOSTLDFLAGS=$host_ldflags
  3282. HOSTLIBS=$host_libs
  3283. TARGET_EXEC=$target_exec
  3284. TARGET_PATH=$target_path
  3285. SDL_LIBS=$sdl_libs
  3286. SDL_CFLAGS=$sdl_cflags
  3287. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  3288. EXTRALIBS=$extralibs
  3289. INSTALL=$install
  3290. LIBTARGET=${LIBTARGET}
  3291. SLIBNAME=${SLIBNAME}
  3292. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  3293. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  3294. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  3295. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  3296. SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
  3297. SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
  3298. SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
  3299. SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
  3300. SAMPLES:=${samples:-\$(FATE_SAMPLES)}
  3301. NOREDZONE_FLAGS=$noredzone_flags
  3302. EOF
  3303. get_version(){
  3304. name=$1
  3305. file=$source_path/$2
  3306. # This condition will be removed when we stop supporting old libpostproc versions
  3307. if ! test "$name" = LIBPOSTPROC || test "$postproc_version" = current; then
  3308. eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
  3309. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  3310. fi
  3311. lcname=$(tolower $name)
  3312. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  3313. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  3314. }
  3315. get_version LIBAVCODEC libavcodec/version.h
  3316. get_version LIBAVDEVICE libavdevice/avdevice.h
  3317. get_version LIBAVFILTER libavfilter/version.h
  3318. get_version LIBAVFORMAT libavformat/version.h
  3319. get_version LIBAVUTIL libavutil/avutil.h
  3320. get_version LIBPOSTPROC libpostproc/postprocess.h
  3321. get_version LIBSWRESAMPLE libswresample/swresample.h
  3322. get_version LIBSWSCALE libswscale/swscale.h
  3323. cat > $TMPH <<EOF
  3324. /* Automatically generated by configure - do not modify! */
  3325. #ifndef FFMPEG_CONFIG_H
  3326. #define FFMPEG_CONFIG_H
  3327. #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
  3328. #define FFMPEG_LICENSE "$(c_escape $license)"
  3329. #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
  3330. #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  3331. #define CC_TYPE "$cc_type"
  3332. #define CC_VERSION $cc_version
  3333. #define restrict $_restrict
  3334. #define EXTERN_PREFIX "${extern_prefix}"
  3335. #define EXTERN_ASM ${extern_prefix}
  3336. #define SLIBSUF "$SLIBSUF"
  3337. EOF
  3338. test -n "$malloc_prefix" &&
  3339. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  3340. if enabled small || disabled optimizations; then
  3341. echo "#undef av_always_inline" >> $TMPH
  3342. if enabled small; then
  3343. echo "#define av_always_inline inline" >> $TMPH
  3344. else
  3345. echo "#define av_always_inline av_unused" >> $TMPH
  3346. fi
  3347. fi
  3348. if enabled yasm; then
  3349. append config_files $TMPASM
  3350. printf '' >$TMPASM
  3351. fi
  3352. print_config ARCH_ "$config_files" $ARCH_LIST
  3353. print_config HAVE_ "$config_files" $HAVE_LIST
  3354. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  3355. $CONFIG_EXTRA \
  3356. $ALL_COMPONENTS \
  3357. cat >>config.mak <<EOF
  3358. ACODEC_TESTS=$(print_enabled -n _test $ACODEC_TESTS)
  3359. VCODEC_TESTS=$(print_enabled -n _test $VCODEC_TESTS)
  3360. LAVF_FATE_TESTS=$(print_enabled -n _test $LAVF_FATE_TESTS)
  3361. LAVF_TESTS=$(print_enabled -n _test $LAVF_TESTS)
  3362. LAVFI_TESTS=$(print_enabled -n _test $LAVFI_TESTS)
  3363. SEEK_TESTS=$(print_enabled -n _test $SEEK_TESTS)
  3364. EOF
  3365. echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
  3366. echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
  3367. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  3368. cp_if_changed $TMPH config.h
  3369. touch .config
  3370. enabled yasm && cp_if_changed $TMPASM config.asm
  3371. cat > $TMPH <<EOF
  3372. /* Generated by ffconf */
  3373. #ifndef AVUTIL_AVCONFIG_H
  3374. #define AVUTIL_AVCONFIG_H
  3375. EOF
  3376. test "$postproc_version" != current && cat >> $TMPH <<EOF
  3377. #define LIBPOSTPROC_VERSION_MAJOR $LIBPOSTPROC_VERSION_MAJOR
  3378. #define LIBPOSTPROC_VERSION_MINOR $LIBPOSTPROC_VERSION_MINOR
  3379. #define LIBPOSTPROC_VERSION_MICRO $LIBPOSTPROC_VERSION_MICRO
  3380. EOF
  3381. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  3382. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  3383. cp_if_changed $TMPH libavutil/avconfig.h
  3384. test -n "$WARNINGS" && printf "\n$WARNINGS"
  3385. # build pkg-config files
  3386. pkgconfig_generate(){
  3387. name=$1
  3388. shortname=${name#lib}${build_suffix}
  3389. comment=$2
  3390. version=$3
  3391. libs=$4
  3392. requires=$5
  3393. enabled ${name#lib} || return 0
  3394. mkdir -p $name
  3395. cat <<EOF > $name/$name.pc
  3396. prefix=$prefix
  3397. exec_prefix=\${prefix}
  3398. libdir=$libdir
  3399. includedir=$incdir
  3400. Name: $name
  3401. Description: $comment
  3402. Version: $version
  3403. Requires: $(enabled shared || echo $requires)
  3404. Requires.private: $(enabled shared && echo $requires)
  3405. Conflicts:
  3406. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  3407. Libs.private: $(enabled shared && echo $libs)
  3408. Cflags: -I\${includedir}
  3409. EOF
  3410. cat <<EOF > $name/$name-uninstalled.pc
  3411. prefix=
  3412. exec_prefix=
  3413. libdir=\${pcfiledir}
  3414. includedir=${source_path}
  3415. Name: $name
  3416. Description: $comment
  3417. Version: $version
  3418. Requires: $requires
  3419. Conflicts:
  3420. Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
  3421. Cflags: -I\${includedir}
  3422. EOF
  3423. }
  3424. pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION" "$LIBM"
  3425. pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3426. pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  3427. pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
  3428. pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
  3429. pkgconfig_generate libpostproc "FFmpeg postprocessing library" "$LIBPOSTPROC_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
  3430. pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"
  3431. pkgconfig_generate libswresample "FFmpeg audio rescaling library" "$LIBSWRESAMPLE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"