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.

3978 lines
119KB

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