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.

3948 lines
118KB

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