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.

3847 lines
116KB

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