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.

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