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.

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