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.

3971 lines
119KB

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