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.

3894 lines
118KB

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