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.

3944 lines
118KB

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