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.

6780 lines
218KB

  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. test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH
  51. show_help(){
  52. cat <<EOF
  53. Usage: configure [options]
  54. Options: [defaults in brackets after descriptions]
  55. Help options:
  56. --help print this message
  57. --list-decoders show all available decoders
  58. --list-encoders show all available encoders
  59. --list-hwaccels show all available hardware accelerators
  60. --list-demuxers show all available demuxers
  61. --list-muxers show all available muxers
  62. --list-parsers show all available parsers
  63. --list-protocols show all available protocols
  64. --list-bsfs show all available bitstream filters
  65. --list-indevs show all available input devices
  66. --list-outdevs show all available output devices
  67. --list-filters show all available filters
  68. Standard options:
  69. --logfile=FILE log tests and output to FILE [config.log]
  70. --disable-logging do not log configure debug information
  71. --fatal-warnings fail if any configure warning is generated
  72. --prefix=PREFIX install in PREFIX [$prefix]
  73. --bindir=DIR install binaries in DIR [PREFIX/bin]
  74. --datadir=DIR install data files in DIR [PREFIX/share/ffmpeg]
  75. --docdir=DIR install documentation in DIR [PREFIX/share/doc/ffmpeg]
  76. --libdir=DIR install libs in DIR [PREFIX/lib]
  77. --shlibdir=DIR install shared libs in DIR [LIBDIR]
  78. --incdir=DIR install includes in DIR [PREFIX/include]
  79. --mandir=DIR install man page in DIR [PREFIX/share/man]
  80. --pkgconfigdir=DIR install pkg-config files in DIR [LIBDIR/pkgconfig]
  81. --enable-rpath use rpath to allow installing libraries in paths
  82. not part of the dynamic linker search path
  83. use rpath when linking programs [USE WITH CARE]
  84. --install-name-dir=DIR Darwin directory name for installed targets
  85. Licensing options:
  86. --enable-gpl allow use of GPL code, the resulting libs
  87. and binaries will be under GPL [no]
  88. --enable-version3 upgrade (L)GPL to version 3 [no]
  89. --enable-nonfree allow use of nonfree code, the resulting libs
  90. and binaries will be unredistributable [no]
  91. Configuration options:
  92. --disable-static do not build static libraries [no]
  93. --enable-shared build shared libraries [no]
  94. --enable-small optimize for size instead of speed
  95. --disable-runtime-cpudetect disable detecting cpu capabilities at runtime (smaller binary)
  96. --enable-gray enable full grayscale support (slower color)
  97. --disable-swscale-alpha disable alpha channel support in swscale
  98. --disable-all disable building components, libraries and programs
  99. --enable-incompatible-libav-abi enable incompatible Libav fork ABI [no]
  100. --enable-raise-major increase major version numbers in sonames [no]
  101. Program options:
  102. --disable-programs do not build command line programs
  103. --disable-ffmpeg disable ffmpeg build
  104. --disable-ffplay disable ffplay build
  105. --disable-ffprobe disable ffprobe build
  106. --disable-ffserver disable ffserver build
  107. Documentation options:
  108. --disable-doc do not build documentation
  109. --disable-htmlpages do not build HTML documentation pages
  110. --disable-manpages do not build man documentation pages
  111. --disable-podpages do not build POD documentation pages
  112. --disable-txtpages do not build text documentation pages
  113. Component options:
  114. --disable-avdevice disable libavdevice build
  115. --disable-avcodec disable libavcodec build
  116. --disable-avformat disable libavformat build
  117. --disable-swresample disable libswresample build
  118. --disable-swscale disable libswscale build
  119. --disable-postproc disable libpostproc build
  120. --disable-avfilter disable libavfilter build
  121. --enable-avresample enable libavresample build [no]
  122. --disable-pthreads disable pthreads [autodetect]
  123. --disable-w32threads disable Win32 threads [autodetect]
  124. --disable-os2threads disable OS/2 threads [autodetect]
  125. --disable-network disable network support [no]
  126. --disable-dct disable DCT code
  127. --disable-dwt disable DWT code
  128. --disable-error-resilience disable error resilience code
  129. --disable-lsp disable LSP code
  130. --disable-lzo disable LZO decoder code
  131. --disable-mdct disable MDCT code
  132. --disable-rdft disable RDFT code
  133. --disable-fft disable FFT code
  134. --disable-faan disable floating point AAN (I)DCT code
  135. --disable-pixelutils disable pixel utils in libavutil
  136. Individual component options:
  137. --disable-everything disable all components listed below
  138. --disable-encoder=NAME disable encoder NAME
  139. --enable-encoder=NAME enable encoder NAME
  140. --disable-encoders disable all encoders
  141. --disable-decoder=NAME disable decoder NAME
  142. --enable-decoder=NAME enable decoder NAME
  143. --disable-decoders disable all decoders
  144. --disable-hwaccel=NAME disable hwaccel NAME
  145. --enable-hwaccel=NAME enable hwaccel NAME
  146. --disable-hwaccels disable all hwaccels
  147. --disable-muxer=NAME disable muxer NAME
  148. --enable-muxer=NAME enable muxer NAME
  149. --disable-muxers disable all muxers
  150. --disable-demuxer=NAME disable demuxer NAME
  151. --enable-demuxer=NAME enable demuxer NAME
  152. --disable-demuxers disable all demuxers
  153. --enable-parser=NAME enable parser NAME
  154. --disable-parser=NAME disable parser NAME
  155. --disable-parsers disable all parsers
  156. --enable-bsf=NAME enable bitstream filter NAME
  157. --disable-bsf=NAME disable bitstream filter NAME
  158. --disable-bsfs disable all bitstream filters
  159. --enable-protocol=NAME enable protocol NAME
  160. --disable-protocol=NAME disable protocol NAME
  161. --disable-protocols disable all protocols
  162. --enable-indev=NAME enable input device NAME
  163. --disable-indev=NAME disable input device NAME
  164. --disable-indevs disable input devices
  165. --enable-outdev=NAME enable output device NAME
  166. --disable-outdev=NAME disable output device NAME
  167. --disable-outdevs disable output devices
  168. --disable-devices disable all devices
  169. --enable-filter=NAME enable filter NAME
  170. --disable-filter=NAME disable filter NAME
  171. --disable-filters disable all filters
  172. External library support:
  173. Using any of the following switches will allow FFmpeg to link to the
  174. corresponding external library. All the components depending on that library
  175. will become enabled, if all their other dependencies are met and they are not
  176. explicitly disabled. E.g. --enable-libwavpack will enable linking to
  177. libwavpack and allow the libwavpack encoder to be built, unless it is
  178. specifically disabled with --disable-encoder=libwavpack.
  179. Note that only the system libraries are auto-detected. All the other external
  180. libraries must be explicitly enabled.
  181. Also note that the following help text describes the purpose of the libraries
  182. themselves, not all their features will necessarily be usable by FFmpeg.
  183. --enable-avisynth enable reading of AviSynth script files [no]
  184. --disable-bzlib disable bzlib [autodetect]
  185. --enable-chromaprint enable audio fingerprinting with chromaprint [no]
  186. --enable-frei0r enable frei0r video filtering [no]
  187. --enable-gcrypt enable gcrypt, needed for rtmp(t)e support
  188. if openssl, librtmp or gmp is not used [no]
  189. --enable-gmp enable gmp, needed for rtmp(t)e support
  190. if openssl or librtmp is not used [no]
  191. --enable-gnutls enable gnutls, needed for https support
  192. if openssl is not used [no]
  193. --disable-iconv disable iconv [autodetect]
  194. --enable-jni enable JNI support [no]
  195. --enable-ladspa enable LADSPA audio filtering [no]
  196. --enable-libass enable libass subtitles rendering,
  197. needed for subtitles and ass filter [no]
  198. --enable-libbluray enable BluRay reading using libbluray [no]
  199. --enable-libbs2b enable bs2b DSP library [no]
  200. --enable-libcaca enable textual display using libcaca [no]
  201. --enable-libcelt enable CELT decoding via libcelt [no]
  202. --enable-libcdio enable audio CD grabbing with libcdio [no]
  203. --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
  204. and libraw1394 [no]
  205. --enable-libebur128 enable libebur128 for EBU R128 measurement,
  206. needed for loudnorm filter [no]
  207. --enable-libfaac enable AAC encoding via libfaac [no]
  208. --enable-libfdk-aac enable AAC de/encoding via libfdk-aac [no]
  209. --enable-libflite enable flite (voice synthesis) support via libflite [no]
  210. --enable-libfontconfig enable libfontconfig, useful for drawtext filter [no]
  211. --enable-libfreetype enable libfreetype, needed for drawtext filter [no]
  212. --enable-libfribidi enable libfribidi, improves drawtext filter [no]
  213. --enable-libgme enable Game Music Emu via libgme [no]
  214. --enable-libgsm enable GSM de/encoding via libgsm [no]
  215. --enable-libiec61883 enable iec61883 via libiec61883 [no]
  216. --enable-libilbc enable iLBC de/encoding via libilbc [no]
  217. --enable-libkvazaar enable HEVC encoding via libkvazaar [no]
  218. --enable-libmodplug enable ModPlug via libmodplug [no]
  219. --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
  220. --enable-libnut enable NUT (de)muxing via libnut,
  221. native (de)muxer exists [no]
  222. --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
  223. --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
  224. --enable-libopencv enable video filtering via libopencv [no]
  225. --enable-libopenh264 enable H.264 encoding via OpenH264 [no]
  226. --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
  227. --enable-libopus enable Opus de/encoding via libopus [no]
  228. --enable-libpulse enable Pulseaudio input via libpulse [no]
  229. --enable-librubberband enable rubberband needed for rubberband filter [no]
  230. --enable-librtmp enable RTMP[E] support via librtmp [no]
  231. --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
  232. --enable-libshine enable fixed-point MP3 encoding via libshine [no]
  233. --enable-libsmbclient enable Samba protocol via libsmbclient [no]
  234. --enable-libsnappy enable Snappy compression, needed for hap encoding [no]
  235. --enable-libsoxr enable Include libsoxr resampling [no]
  236. --enable-libspeex enable Speex de/encoding via libspeex [no]
  237. --enable-libssh enable SFTP protocol via libssh [no]
  238. --enable-libtesseract enable Tesseract, needed for ocr filter [no]
  239. --enable-libtheora enable Theora encoding via libtheora [no]
  240. --enable-libtwolame enable MP2 encoding via libtwolame [no]
  241. --enable-libv4l2 enable libv4l2/v4l-utils [no]
  242. --enable-libvidstab enable video stabilization using vid.stab [no]
  243. --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
  244. --enable-libvorbis enable Vorbis en/decoding via libvorbis,
  245. native implementation exists [no]
  246. --enable-libvpx enable VP8 and VP9 de/encoding via libvpx [no]
  247. --enable-libwavpack enable wavpack encoding via libwavpack [no]
  248. --enable-libwebp enable WebP encoding via libwebp [no]
  249. --enable-libx264 enable H.264 encoding via x264 [no]
  250. --enable-libx265 enable HEVC encoding via x265 [no]
  251. --enable-libxavs enable AVS encoding via xavs [no]
  252. --enable-libxcb enable X11 grabbing using XCB [autodetect]
  253. --enable-libxcb-shm enable X11 grabbing shm communication [autodetect]
  254. --enable-libxcb-xfixes enable X11 grabbing mouse rendering [autodetect]
  255. --enable-libxcb-shape enable X11 grabbing shape rendering [autodetect]
  256. --enable-libxvid enable Xvid encoding via xvidcore,
  257. native MPEG-4/Xvid encoder exists [no]
  258. --enable-libzimg enable z.lib, needed for zscale filter [no]
  259. --enable-libzmq enable message passing via libzmq [no]
  260. --enable-libzvbi enable teletext support via libzvbi [no]
  261. --disable-lzma disable lzma [autodetect]
  262. --enable-decklink enable Blackmagic DeckLink I/O support [no]
  263. --enable-mediacodec enable Android MediaCodec support [no]
  264. --enable-netcdf enable NetCDF, needed for sofalizer filter [no]
  265. --enable-openal enable OpenAL 1.1 capture support [no]
  266. --enable-opencl enable OpenCL code
  267. --enable-opengl enable OpenGL rendering [no]
  268. --enable-openssl enable openssl, needed for https support
  269. if gnutls is not used [no]
  270. --disable-schannel disable SChannel SSP, needed for TLS support on
  271. Windows if openssl and gnutls are not used [autodetect]
  272. --disable-sdl disable sdl [autodetect]
  273. --disable-securetransport disable Secure Transport, needed for TLS support
  274. on OSX if openssl and gnutls are not used [autodetect]
  275. --enable-x11grab enable X11 grabbing (legacy) [no]
  276. --disable-xlib disable xlib [autodetect]
  277. --disable-zlib disable zlib [autodetect]
  278. The following libraries provide various hardware acceleration features:
  279. --disable-audiotoolbox disable Apple AudioToolbox code [autodetect]
  280. --enable-cuda enable dynamically linked Nvidia CUDA code [no]
  281. --enable-cuvid enable Nvidia CUVID support [autodetect]
  282. --disable-d3d11va disable Microsoft Direct3D 11 video acceleration code [autodetect]
  283. --disable-dxva2 disable Microsoft DirectX 9 video acceleration code [autodetect]
  284. --enable-libmfx enable Intel MediaSDK (AKA Quick Sync Video) code via libmfx [no]
  285. --enable-libnpp enable Nvidia Performance Primitives-based code [no]
  286. --enable-mmal enable Broadcom Multi-Media Abstraction Layer (Raspberry Pi) via MMAL [no]
  287. --enable-nvenc enable Nvidia video encoding code [no]
  288. --enable-omx enable OpenMAX IL code [no]
  289. --enable-omx-rpi enable OpenMAX IL code for Raspberry Pi [no]
  290. --disable-vaapi disable Video Acceleration API (mainly Unix/Intel) code [autodetect]
  291. --disable-vda disable Apple Video Decode Acceleration code [autodetect]
  292. --disable-vdpau disable Nvidia Video Decode and Presentation API for Unix code [autodetect]
  293. --disable-videotoolbox disable VideoToolbox code [autodetect]
  294. Toolchain options:
  295. --arch=ARCH select architecture [$arch]
  296. --cpu=CPU select the minimum required CPU (affects
  297. instruction selection, may crash on older CPUs)
  298. --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
  299. --progs-suffix=SUFFIX program name suffix []
  300. --enable-cross-compile assume a cross-compiler is used
  301. --sysroot=PATH root of cross-build tree
  302. --sysinclude=PATH location of cross-build system headers
  303. --target-os=OS compiler targets OS [$target_os]
  304. --target-exec=CMD command to run executables on target
  305. --target-path=DIR path to view of build directory on target
  306. --target-samples=DIR path to samples directory on target
  307. --tempprefix=PATH force fixed dir/prefix instead of mktemp for checks
  308. --toolchain=NAME set tool defaults according to NAME
  309. --nm=NM use nm tool NM [$nm_default]
  310. --ar=AR use archive tool AR [$ar_default]
  311. --as=AS use assembler AS [$as_default]
  312. --ln_s=LN_S use symbolic link tool LN_S [$ln_s_default]
  313. --strip=STRIP use strip tool STRIP [$strip_default]
  314. --windres=WINDRES use windows resource compiler WINDRES [$windres_default]
  315. --yasmexe=EXE use yasm-compatible assembler EXE [$yasmexe_default]
  316. --cc=CC use C compiler CC [$cc_default]
  317. --cxx=CXX use C compiler CXX [$cxx_default]
  318. --objcc=OCC use ObjC compiler OCC [$cc_default]
  319. --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
  320. --ld=LD use linker LD [$ld_default]
  321. --pkg-config=PKGCONFIG use pkg-config tool PKGCONFIG [$pkg_config_default]
  322. --pkg-config-flags=FLAGS pass additional flags to pkgconf []
  323. --ranlib=RANLIB use ranlib RANLIB [$ranlib_default]
  324. --doxygen=DOXYGEN use DOXYGEN to generate API doc [$doxygen_default]
  325. --host-cc=HOSTCC use host C compiler HOSTCC
  326. --host-cflags=HCFLAGS use HCFLAGS when compiling for host
  327. --host-cppflags=HCPPFLAGS use HCPPFLAGS when compiling for host
  328. --host-ld=HOSTLD use host linker HOSTLD
  329. --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
  330. --host-libs=HLIBS use libs HLIBS when linking for host
  331. --host-os=OS compiler host OS [$target_os]
  332. --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
  333. --extra-cxxflags=ECFLAGS add ECFLAGS to CXXFLAGS [$CXXFLAGS]
  334. --extra-objcflags=FLAGS add FLAGS to OBJCFLAGS [$CFLAGS]
  335. --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
  336. --extra-ldexeflags=ELDFLAGS add ELDFLAGS to LDEXEFLAGS [$LDEXEFLAGS]
  337. --extra-ldlibflags=ELDFLAGS add ELDFLAGS to LDLIBFLAGS [$LDLIBFLAGS]
  338. --extra-libs=ELIBS add ELIBS [$ELIBS]
  339. --extra-version=STRING version string suffix []
  340. --optflags=OPTFLAGS override optimization-related compiler flags
  341. --build-suffix=SUFFIX library name suffix []
  342. --enable-pic build position-independent code
  343. --enable-thumb compile for Thumb instruction set
  344. --enable-lto use link-time optimization
  345. --env="ENV=override" override the environment variables
  346. Advanced options (experts only):
  347. --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
  348. --custom-allocator=NAME use a supported custom allocator
  349. --disable-symver disable symbol versioning
  350. --enable-hardcoded-tables use hardcoded tables instead of runtime generation
  351. --disable-safe-bitstream-reader
  352. disable buffer boundary checking in bitreaders
  353. (faster, but may crash)
  354. --enable-memalign-hack emulate memalign, interferes with memory debuggers
  355. --sws-max-filter-size=N the max filter size swscale uses [$sws_max_filter_size_default]
  356. Optimization options (experts only):
  357. --disable-asm disable all assembly optimizations
  358. --disable-altivec disable AltiVec optimizations
  359. --disable-vsx disable VSX optimizations
  360. --disable-power8 disable POWER8 optimizations
  361. --disable-amd3dnow disable 3DNow! optimizations
  362. --disable-amd3dnowext disable 3DNow! extended optimizations
  363. --disable-mmx disable MMX optimizations
  364. --disable-mmxext disable MMXEXT optimizations
  365. --disable-sse disable SSE optimizations
  366. --disable-sse2 disable SSE2 optimizations
  367. --disable-sse3 disable SSE3 optimizations
  368. --disable-ssse3 disable SSSE3 optimizations
  369. --disable-sse4 disable SSE4 optimizations
  370. --disable-sse42 disable SSE4.2 optimizations
  371. --disable-avx disable AVX optimizations
  372. --disable-xop disable XOP optimizations
  373. --disable-fma3 disable FMA3 optimizations
  374. --disable-fma4 disable FMA4 optimizations
  375. --disable-avx2 disable AVX2 optimizations
  376. --disable-aesni disable AESNI optimizations
  377. --disable-armv5te disable armv5te optimizations
  378. --disable-armv6 disable armv6 optimizations
  379. --disable-armv6t2 disable armv6t2 optimizations
  380. --disable-vfp disable VFP optimizations
  381. --disable-neon disable NEON optimizations
  382. --disable-inline-asm disable use of inline assembly
  383. --disable-yasm disable use of nasm/yasm assembly
  384. --disable-mipsdsp disable MIPS DSP ASE R1 optimizations
  385. --disable-mipsdspr2 disable MIPS DSP ASE R2 optimizations
  386. --disable-msa disable MSA optimizations
  387. --disable-mipsfpu disable floating point MIPS optimizations
  388. --disable-mmi disable Loongson SIMD optimizations
  389. --disable-fast-unaligned consider unaligned accesses slow
  390. Developer options (useful when working on FFmpeg itself):
  391. --disable-debug disable debugging symbols
  392. --enable-debug=LEVEL set the debug level [$debuglevel]
  393. --disable-optimizations disable compiler optimizations
  394. --enable-extra-warnings enable more compiler warnings
  395. --disable-stripping disable stripping of executables and shared libraries
  396. --assert-level=level 0(default), 1 or 2, amount of assertion testing,
  397. 2 causes a slowdown at runtime.
  398. --enable-memory-poisoning fill heap uninitialized allocated space with arbitrary data
  399. --valgrind=VALGRIND run "make fate" tests through valgrind to detect memory
  400. leaks and errors, using the specified valgrind binary.
  401. Cannot be combined with --target-exec
  402. --enable-ftrapv Trap arithmetic overflows
  403. --samples=PATH location of test samples for FATE, if not set use
  404. \$FATE_SAMPLES at make invocation time.
  405. --enable-neon-clobber-test check NEON registers for clobbering (should be
  406. used only for debugging purposes)
  407. --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
  408. should be used only for debugging purposes)
  409. --enable-random randomly enable/disable components
  410. --disable-random
  411. --enable-random=LIST randomly enable/disable specific components or
  412. --disable-random=LIST component groups. LIST is a comma-separated list
  413. of NAME[:PROB] entries where NAME is a component
  414. (group) and PROB the probability associated with
  415. NAME (default 0.5).
  416. --random-seed=VALUE seed value for --enable/disable-random
  417. --disable-valgrind-backtrace do not print a backtrace under Valgrind
  418. (only applies to --disable-optimizations builds)
  419. NOTE: Object files are built at the place where configure is launched.
  420. EOF
  421. exit 0
  422. }
  423. quotes='""'
  424. if test -t 1 && which tput >/dev/null 2>&1; then
  425. ncolors=$(tput colors)
  426. if test -n "$ncolors" && test $ncolors -ge 8; then
  427. bold_color=$(tput bold)
  428. warn_color=$(tput setaf 3)
  429. error_color=$(tput setaf 1)
  430. reset_color=$(tput sgr0)
  431. fi
  432. # 72 used instead of 80 since that's the default of pr
  433. ncols=$(tput cols)
  434. fi
  435. : ${ncols:=72}
  436. log(){
  437. echo "$@" >> $logfile
  438. }
  439. log_file(){
  440. log BEGIN $1
  441. pr -n -t $1 >> $logfile
  442. log END $1
  443. }
  444. warn(){
  445. log "WARNING: $*"
  446. WARNINGS="${WARNINGS}WARNING: $*\n"
  447. }
  448. die(){
  449. log "$@"
  450. echo "$error_color$bold_color$@$reset_color"
  451. cat <<EOF
  452. If you think configure made a mistake, make sure you are using the latest
  453. version from Git. If the latest version fails, report the problem to the
  454. ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
  455. EOF
  456. if disabled logging; then
  457. cat <<EOF
  458. Rerun configure with logging enabled (do not use --disable-logging), and
  459. include the log this produces with your report.
  460. EOF
  461. else
  462. cat <<EOF
  463. Include the log file "$logfile" produced by configure as this will help
  464. solve the problem.
  465. EOF
  466. fi
  467. exit 1
  468. }
  469. # Avoid locale weirdness, besides we really just want to translate ASCII.
  470. toupper(){
  471. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  472. }
  473. tolower(){
  474. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  475. }
  476. c_escape(){
  477. echo "$*" | sed 's/["\\]/\\\0/g'
  478. }
  479. sh_quote(){
  480. v=$(echo "$1" | sed "s/'/'\\\\''/g")
  481. test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
  482. echo "$v"
  483. }
  484. cleanws(){
  485. echo "$@" | sed 's/^ *//;s/[[:space:]][[:space:]]*/ /g;s/ *$//'
  486. }
  487. filter(){
  488. pat=$1
  489. shift
  490. for v; do
  491. eval "case $v in $pat) echo $v ;; esac"
  492. done
  493. }
  494. filter_out(){
  495. pat=$1
  496. shift
  497. for v; do
  498. eval "case $v in $pat) ;; *) echo $v ;; esac"
  499. done
  500. }
  501. map(){
  502. m=$1
  503. shift
  504. for v; do eval $m; done
  505. }
  506. add_suffix(){
  507. suffix=$1
  508. shift
  509. for v; do echo ${v}${suffix}; done
  510. }
  511. set_all(){
  512. value=$1
  513. shift
  514. for var in $*; do
  515. eval $var=$value
  516. done
  517. }
  518. set_weak(){
  519. value=$1
  520. shift
  521. for var; do
  522. eval : \${$var:=$value}
  523. done
  524. }
  525. sanitize_var_name(){
  526. echo $@ | sed 's/[^A-Za-z0-9_]/_/g'
  527. }
  528. set_safe(){
  529. var=$1
  530. shift
  531. eval $(sanitize_var_name "$var")='$*'
  532. }
  533. get_safe(){
  534. eval echo \$$(sanitize_var_name "$1")
  535. }
  536. pushvar(){
  537. for pvar in $*; do
  538. eval level=\${${pvar}_level:=0}
  539. eval ${pvar}_${level}="\$$pvar"
  540. eval ${pvar}_level=$(($level+1))
  541. done
  542. }
  543. popvar(){
  544. for pvar in $*; do
  545. eval level=\${${pvar}_level:-0}
  546. test $level = 0 && continue
  547. eval level=$(($level-1))
  548. eval $pvar="\${${pvar}_${level}}"
  549. eval ${pvar}_level=$level
  550. eval unset ${pvar}_${level}
  551. done
  552. }
  553. enable(){
  554. set_all yes $*
  555. }
  556. disable(){
  557. set_all no $*
  558. }
  559. enable_weak(){
  560. set_weak yes $*
  561. }
  562. disable_weak(){
  563. set_weak no $*
  564. }
  565. enable_safe(){
  566. for var; do
  567. enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  568. done
  569. }
  570. disable_safe(){
  571. for var; do
  572. disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  573. done
  574. }
  575. do_enable_deep(){
  576. for var; do
  577. enabled $var && continue
  578. eval sel="\$${var}_select"
  579. eval sgs="\$${var}_suggest"
  580. pushvar var sgs
  581. enable_deep $sel
  582. popvar sgs
  583. enable_deep_weak $sgs
  584. popvar var
  585. done
  586. }
  587. enable_deep(){
  588. do_enable_deep $*
  589. enable $*
  590. }
  591. enable_deep_weak(){
  592. for var; do
  593. disabled $var && continue
  594. pushvar var
  595. do_enable_deep $var
  596. popvar var
  597. enable_weak $var
  598. done
  599. }
  600. enabled(){
  601. test "${1#!}" = "$1" && op='=' || op=!=
  602. eval test "x\$${1#!}" $op "xyes"
  603. }
  604. disabled(){
  605. test "${1#!}" = "$1" && op='=' || op=!=
  606. eval test "x\$${1#!}" $op "xno"
  607. }
  608. enabled_all(){
  609. for opt; do
  610. enabled $opt || return 1
  611. done
  612. }
  613. disabled_all(){
  614. for opt; do
  615. disabled $opt || return 1
  616. done
  617. }
  618. enabled_any(){
  619. for opt; do
  620. enabled $opt && return 0
  621. done
  622. }
  623. disabled_any(){
  624. for opt; do
  625. disabled $opt && return 0
  626. done
  627. return 1
  628. }
  629. set_default(){
  630. for opt; do
  631. eval : \${$opt:=\$${opt}_default}
  632. done
  633. }
  634. is_in(){
  635. value=$1
  636. shift
  637. for var in $*; do
  638. [ $var = $value ] && return 0
  639. done
  640. return 1
  641. }
  642. do_check_deps(){
  643. for cfg; do
  644. cfg="${cfg#!}"
  645. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  646. disabled ${cfg}_checking && continue
  647. enable ${cfg}_checking
  648. append allopts $cfg
  649. eval dep_all="\$${cfg}_deps"
  650. eval dep_any="\$${cfg}_deps_any"
  651. eval dep_sel="\$${cfg}_select"
  652. eval dep_sgs="\$${cfg}_suggest"
  653. eval dep_ifa="\$${cfg}_if"
  654. eval dep_ifn="\$${cfg}_if_any"
  655. pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  656. do_check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
  657. popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  658. [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
  659. [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
  660. enabled_all $dep_all || disable $cfg
  661. enabled_any $dep_any || disable $cfg
  662. disabled_any $dep_sel && disable $cfg
  663. if enabled $cfg; then
  664. enable_deep $dep_sel
  665. enable_deep_weak $dep_sgs
  666. fi
  667. disable ${cfg}_checking
  668. done
  669. }
  670. check_deps(){
  671. unset allopts
  672. do_check_deps "$@"
  673. for cfg in $allopts; do
  674. enabled $cfg || continue
  675. eval dep_extralibs="\$${cfg}_extralibs"
  676. test -n "$dep_extralibs" && add_extralibs $dep_extralibs
  677. done
  678. }
  679. print_config(){
  680. pfx=$1
  681. files=$2
  682. shift 2
  683. map 'eval echo "$v \${$v:-no}"' "$@" |
  684. awk "BEGIN { split(\"$files\", files) }
  685. {
  686. c = \"$pfx\" toupper(\$1);
  687. v = \$2;
  688. sub(/yes/, 1, v);
  689. sub(/no/, 0, v);
  690. for (f in files) {
  691. file = files[f];
  692. if (file ~ /\\.h\$/) {
  693. printf(\"#define %s %d\\n\", c, v) >>file;
  694. } else if (file ~ /\\.asm\$/) {
  695. printf(\"%%define %s %d\\n\", c, v) >>file;
  696. } else if (file ~ /\\.mak\$/) {
  697. n = -v ? \"\" : \"!\";
  698. printf(\"%s%s=yes\\n\", n, c) >>file;
  699. } else if (file ~ /\\.texi\$/) {
  700. pre = -v ? \"\" : \"@c \";
  701. yesno = \$2;
  702. c2 = tolower(c);
  703. gsub(/_/, \"-\", c2);
  704. printf(\"%s@set %s %s\\n\", pre, c2, yesno) >>file;
  705. }
  706. }
  707. }"
  708. }
  709. print_enabled(){
  710. suf=$1
  711. shift
  712. for v; do
  713. enabled $v && printf "%s\n" ${v%$suf}
  714. done
  715. }
  716. append(){
  717. var=$1
  718. shift
  719. eval "$var=\"\$$var $*\""
  720. }
  721. prepend(){
  722. var=$1
  723. shift
  724. eval "$var=\"$* \$$var\""
  725. }
  726. unique(){
  727. var=$1
  728. uniq_list=""
  729. for tok in $(eval echo \$$var); do
  730. uniq_list="$(filter_out $tok $uniq_list) $tok"
  731. done
  732. eval "$var=\"${uniq_list}\""
  733. }
  734. add_cppflags(){
  735. append CPPFLAGS "$@"
  736. }
  737. add_cflags(){
  738. append CFLAGS $($cflags_filter "$@")
  739. }
  740. add_cxxflags(){
  741. append CXXFLAGS $($cflags_filter "$@")
  742. }
  743. add_asflags(){
  744. append ASFLAGS $($asflags_filter "$@")
  745. }
  746. add_objcflags(){
  747. append OBJCFLAGS $($objcflags_filter "$@")
  748. }
  749. add_ldflags(){
  750. append LDFLAGS $($ldflags_filter "$@")
  751. }
  752. add_ldexeflags(){
  753. append LDEXEFLAGS $($ldflags_filter "$@")
  754. }
  755. add_ldlibflags(){
  756. append LDLIBFLAGS $($ldflags_filter "$@")
  757. }
  758. add_stripflags(){
  759. append ASMSTRIPFLAGS "$@"
  760. }
  761. add_extralibs(){
  762. prepend extralibs $($ldflags_filter "$@")
  763. }
  764. add_host_cppflags(){
  765. append host_cppflags "$@"
  766. }
  767. add_host_cflags(){
  768. append host_cflags $($host_cflags_filter "$@")
  769. }
  770. add_host_ldflags(){
  771. append host_ldflags $($host_ldflags_filter "$@")
  772. }
  773. add_compat(){
  774. append compat_objs $1
  775. shift
  776. map 'add_cppflags -D$v' "$@"
  777. }
  778. check_cmd(){
  779. log "$@"
  780. "$@" >> $logfile 2>&1
  781. }
  782. check_stat(){
  783. log check_stat "$@"
  784. stat "$1" >> $logfile 2>&1
  785. }
  786. cc_o(){
  787. eval printf '%s\\n' $CC_O
  788. }
  789. cc_e(){
  790. eval printf '%s\\n' $CC_E
  791. }
  792. check_cc(){
  793. log check_cc "$@"
  794. cat > $TMPC
  795. log_file $TMPC
  796. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
  797. }
  798. check_cxx(){
  799. log check_cxx "$@"
  800. cat > $TMPCPP
  801. log_file $TMPCPP
  802. check_cmd $cxx $CPPFLAGS $CFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
  803. }
  804. check_objcc(){
  805. log check_objcc "$@"
  806. cat > $TMPM
  807. log_file $TMPM
  808. check_cmd $objcc -Werror=missing-prototypes $CPPFLAGS $CFLAGS $OBJCFLAGS "$@" $OBJCC_C $(cc_o $TMPO) $TMPM
  809. }
  810. check_cpp(){
  811. log check_cpp "$@"
  812. cat > $TMPC
  813. log_file $TMPC
  814. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
  815. }
  816. as_o(){
  817. eval printf '%s\\n' $AS_O
  818. }
  819. check_as(){
  820. log check_as "$@"
  821. cat > $TMPS
  822. log_file $TMPS
  823. check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
  824. }
  825. check_inline_asm(){
  826. log check_inline_asm "$@"
  827. name="$1"
  828. code="$2"
  829. shift 2
  830. disable $name
  831. check_cc "$@" <<EOF && enable $name
  832. void foo(void){ __asm__ volatile($code); }
  833. EOF
  834. }
  835. check_inline_asm_flags(){
  836. log check_inline_asm_flags "$@"
  837. name="$1"
  838. code="$2"
  839. flags=''
  840. shift 2
  841. while [ "$1" != "" ]; do
  842. append flags $1
  843. shift
  844. done;
  845. disable $name
  846. cat > $TMPC <<EOF
  847. void foo(void){ __asm__ volatile($code); }
  848. EOF
  849. log_file $TMPC
  850. check_cmd $cc $CPPFLAGS $CFLAGS $flags "$@" $CC_C $(cc_o $TMPO) $TMPC &&
  851. enable $name && add_cflags $flags && add_asflags $flags && add_ldflags $flags
  852. }
  853. check_insn(){
  854. log check_insn "$@"
  855. check_inline_asm ${1}_inline "\"$2\""
  856. echo "$2" | check_as && enable ${1}_external || disable ${1}_external
  857. }
  858. check_yasm(){
  859. log check_yasm "$@"
  860. echo "$1" > $TMPS
  861. log_file $TMPS
  862. shift 1
  863. check_cmd $yasmexe $YASMFLAGS -Werror "$@" -o $TMPO $TMPS
  864. }
  865. ld_o(){
  866. eval printf '%s\\n' $LD_O
  867. }
  868. check_ld(){
  869. log check_ld "$@"
  870. type=$1
  871. shift 1
  872. flags=$(filter_out '-l*|*.so' $@)
  873. libs=$(filter '-l*|*.so' $@)
  874. check_$type $($cflags_filter $flags) || return
  875. flags=$($ldflags_filter $flags)
  876. libs=$($ldflags_filter $libs)
  877. check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
  878. }
  879. print_include(){
  880. hdr=$1
  881. test "${hdr%.h}" = "${hdr}" &&
  882. echo "#include $hdr" ||
  883. echo "#include <$hdr>"
  884. }
  885. check_code(){
  886. log check_code "$@"
  887. check=$1
  888. headers=$2
  889. code=$3
  890. shift 3
  891. {
  892. for hdr in $headers; do
  893. print_include $hdr
  894. done
  895. echo "int main(void) { $code; return 0; }"
  896. } | check_$check "$@"
  897. }
  898. check_cppflags(){
  899. log check_cppflags "$@"
  900. check_cc "$@" <<EOF && append CPPFLAGS "$@"
  901. int x;
  902. EOF
  903. }
  904. test_cflags(){
  905. log test_cflags "$@"
  906. set -- $($cflags_filter "$@")
  907. check_cc "$@" <<EOF
  908. int x;
  909. EOF
  910. }
  911. check_cflags(){
  912. log check_cflags "$@"
  913. test_cflags "$@" && add_cflags "$@"
  914. }
  915. check_cxxflags(){
  916. log check_cxxflags "$@"
  917. set -- $($cflags_filter "$@")
  918. check_cxx "$@" <<EOF && append CXXFLAGS "$@"
  919. int x;
  920. EOF
  921. }
  922. test_objcflags(){
  923. log test_cflags "$@"
  924. set -- $($cflags_filter "$@")
  925. check_objcc "$@" <<EOF
  926. int x;
  927. EOF
  928. }
  929. check_objcflags(){
  930. log check_cflags "$@"
  931. test_objcflags "$@" && add_objcflags "$@"
  932. }
  933. test_ldflags(){
  934. log test_ldflags "$@"
  935. check_ld "cc" "$@" <<EOF
  936. int main(void){ return 0; }
  937. EOF
  938. }
  939. check_ldflags(){
  940. log check_ldflags "$@"
  941. test_ldflags "$@" && add_ldflags "$@"
  942. }
  943. test_stripflags(){
  944. log test_stripflags "$@"
  945. # call check_cc to get a fresh TMPO
  946. check_cc <<EOF
  947. int main(void) { return 0; }
  948. EOF
  949. check_cmd $strip $ASMSTRIPFLAGS "$@" $TMPO
  950. }
  951. check_stripflags(){
  952. log check_stripflags "$@"
  953. test_stripflags "$@" && add_stripflags "$@"
  954. }
  955. check_header(){
  956. log check_header "$@"
  957. header=$1
  958. shift
  959. disable_safe $header
  960. check_cpp "$@" <<EOF && enable_safe $header
  961. #include <$header>
  962. int x;
  963. EOF
  964. }
  965. check_header_objcc(){
  966. log check_header_objcc "$@"
  967. rm -f -- "$TMPO"
  968. header=$1
  969. shift
  970. disable_safe $header
  971. {
  972. echo "#include <$header>"
  973. echo "int main(void) { return 0; }"
  974. } | check_objcc && check_stat "$TMPO" && enable_safe $headers
  975. }
  976. check_func(){
  977. log check_func "$@"
  978. func=$1
  979. shift
  980. disable $func
  981. check_ld "cc" "$@" <<EOF && enable $func
  982. extern int $func();
  983. int main(void){ $func(); }
  984. EOF
  985. }
  986. check_complexfunc(){
  987. log check_complexfunc "$@"
  988. func=$1
  989. narg=$2
  990. shift 2
  991. test $narg = 2 && args="f, g" || args="f * I"
  992. disable $func
  993. check_ld "cc" "$@" <<EOF && enable $func
  994. #include <complex.h>
  995. #include <math.h>
  996. float foo(complex float f, complex float g) { return $func($args); }
  997. int main(void){ return (int) foo; }
  998. EOF
  999. }
  1000. check_mathfunc(){
  1001. log check_mathfunc "$@"
  1002. func=$1
  1003. narg=$2
  1004. shift 2
  1005. test $narg = 2 && args="f, g" || args="f"
  1006. disable $func
  1007. check_ld "cc" "$@" <<EOF && enable $func
  1008. #include <math.h>
  1009. float foo(float f, float g) { return $func($args); }
  1010. int main(void){ return (int) foo; }
  1011. EOF
  1012. }
  1013. check_func_headers(){
  1014. log check_func_headers "$@"
  1015. headers=$1
  1016. funcs=$2
  1017. shift 2
  1018. {
  1019. for hdr in $headers; do
  1020. print_include $hdr
  1021. done
  1022. for func in $funcs; do
  1023. echo "long check_$func(void) { return (long) $func; }"
  1024. done
  1025. echo "int main(void) { return 0; }"
  1026. } | check_ld "cc" "$@" && enable $funcs && enable_safe $headers
  1027. }
  1028. check_class_headers_cpp(){
  1029. log check_class_headers_cpp "$@"
  1030. headers=$1
  1031. classes=$2
  1032. shift 2
  1033. {
  1034. for hdr in $headers; do
  1035. echo "#include <$hdr>"
  1036. done
  1037. echo "int main(void) { "
  1038. i=1
  1039. for class in $classes; do
  1040. echo "$class obj$i;"
  1041. i=$(expr $i + 1)
  1042. done
  1043. echo "return 0; }"
  1044. } | check_ld "cxx" "$@" && enable $funcs && enable_safe $headers
  1045. }
  1046. check_cpp_condition(){
  1047. log check_cpp_condition "$@"
  1048. header=$1
  1049. condition=$2
  1050. shift 2
  1051. check_cpp "$@" <<EOF
  1052. #include <$header>
  1053. #if !($condition)
  1054. #error "unsatisfied condition: $condition"
  1055. #endif
  1056. EOF
  1057. }
  1058. check_lib(){
  1059. log check_lib "$@"
  1060. header="$1"
  1061. func="$2"
  1062. shift 2
  1063. check_header $header && check_func $func "$@" && add_extralibs "$@"
  1064. }
  1065. check_lib2(){
  1066. log check_lib2 "$@"
  1067. headers="$1"
  1068. funcs="$2"
  1069. shift 2
  1070. check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
  1071. }
  1072. check_lib_cpp(){
  1073. log check_lib_cpp "$@"
  1074. headers="$1"
  1075. classes="$2"
  1076. shift 2
  1077. check_class_headers_cpp "$headers" "$classes" "$@" && add_extralibs "$@"
  1078. }
  1079. check_pkg_config(){
  1080. log check_pkg_config "$@"
  1081. pkgandversion="$1"
  1082. pkg="${1%% *}"
  1083. headers="$2"
  1084. funcs="$3"
  1085. shift 3
  1086. check_cmd $pkg_config --exists --print-errors $pkgandversion || return
  1087. pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
  1088. pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
  1089. check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
  1090. set_safe "${pkg}_cflags" $pkg_cflags &&
  1091. set_safe "${pkg}_libs" $pkg_libs
  1092. }
  1093. check_exec(){
  1094. check_ld "cc" "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
  1095. }
  1096. check_exec_crash(){
  1097. code=$(cat)
  1098. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  1099. # are safe but may not be available everywhere. Thus we use
  1100. # raise(SIGTERM) instead. The check is run in a subshell so we
  1101. # can redirect the "Terminated" message from the shell. SIGBUS
  1102. # is not defined by standard C so it is used conditionally.
  1103. (check_exec "$@") >> $logfile 2>&1 <<EOF
  1104. #include <signal.h>
  1105. static void sighandler(int sig){
  1106. raise(SIGTERM);
  1107. }
  1108. int foo(void){
  1109. $code
  1110. }
  1111. int (*func_ptr)(void) = foo;
  1112. int main(void){
  1113. signal(SIGILL, sighandler);
  1114. signal(SIGFPE, sighandler);
  1115. signal(SIGSEGV, sighandler);
  1116. #ifdef SIGBUS
  1117. signal(SIGBUS, sighandler);
  1118. #endif
  1119. return func_ptr();
  1120. }
  1121. EOF
  1122. }
  1123. check_type(){
  1124. log check_type "$@"
  1125. headers=$1
  1126. type=$2
  1127. shift 2
  1128. disable_safe "$type"
  1129. check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
  1130. }
  1131. check_struct(){
  1132. log check_struct "$@"
  1133. headers=$1
  1134. struct=$2
  1135. member=$3
  1136. shift 3
  1137. disable_safe "${struct}_${member}"
  1138. check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
  1139. enable_safe "${struct}_${member}"
  1140. }
  1141. check_builtin(){
  1142. log check_builtin "$@"
  1143. name=$1
  1144. headers=$2
  1145. builtin=$3
  1146. shift 3
  1147. disable "$name"
  1148. check_code ld "$headers" "$builtin" "cc" "$@" && enable "$name"
  1149. }
  1150. check_compile_assert(){
  1151. log check_compile_assert "$@"
  1152. name=$1
  1153. headers=$2
  1154. condition=$3
  1155. shift 3
  1156. disable "$name"
  1157. check_code cc "$headers" "char c[2 * !!($condition) - 1]" "$@" && enable "$name"
  1158. }
  1159. require(){
  1160. name="$1"
  1161. header="$2"
  1162. func="$3"
  1163. shift 3
  1164. check_lib $header $func "$@" || die "ERROR: $name not found"
  1165. }
  1166. require2(){
  1167. name="$1"
  1168. headers="$2"
  1169. func="$3"
  1170. shift 3
  1171. check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
  1172. }
  1173. require_cpp(){
  1174. name="$1"
  1175. headers="$2"
  1176. classes="$3"
  1177. shift 3
  1178. check_lib_cpp "$headers" "$classes" "$@" || die "ERROR: $name not found"
  1179. }
  1180. use_pkg_config(){
  1181. pkg="$1"
  1182. check_pkg_config "$@" || return 1
  1183. add_cflags $(get_safe "${pkg}_cflags")
  1184. add_extralibs $(get_safe "${pkg}_libs")
  1185. }
  1186. require_pkg_config(){
  1187. use_pkg_config "$@" || die "ERROR: $pkg not found using pkg-config$pkg_config_fail_message"
  1188. }
  1189. require_libfreetype(){
  1190. log require_libfreetype "$@"
  1191. pkg="freetype2"
  1192. check_cmd $pkg_config --exists --print-errors $pkg \
  1193. || die "ERROR: $pkg not found"
  1194. pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
  1195. pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
  1196. {
  1197. echo "#include <ft2build.h>"
  1198. echo "#include FT_FREETYPE_H"
  1199. echo "long check_func(void) { return (long) FT_Init_FreeType; }"
  1200. echo "int main(void) { return 0; }"
  1201. } | check_ld "cc" $pkg_cflags $pkg_libs \
  1202. && set_safe "${pkg}_cflags" $pkg_cflags \
  1203. && set_safe "${pkg}_libs" $pkg_libs \
  1204. || die "ERROR: $pkg not found"
  1205. add_cflags $(get_safe "${pkg}_cflags")
  1206. add_extralibs $(get_safe "${pkg}_libs")
  1207. }
  1208. hostcc_e(){
  1209. eval printf '%s\\n' $HOSTCC_E
  1210. }
  1211. hostcc_o(){
  1212. eval printf '%s\\n' $HOSTCC_O
  1213. }
  1214. check_host_cc(){
  1215. log check_host_cc "$@"
  1216. cat > $TMPC
  1217. log_file $TMPC
  1218. check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
  1219. }
  1220. check_host_cpp(){
  1221. log check_host_cpp "$@"
  1222. cat > $TMPC
  1223. log_file $TMPC
  1224. check_cmd $host_cc $host_cppflags $host_cflags "$@" $(hostcc_e $TMPO) $TMPC
  1225. }
  1226. check_host_cppflags(){
  1227. log check_host_cppflags "$@"
  1228. check_host_cc "$@" <<EOF && append host_cppflags "$@"
  1229. int x;
  1230. EOF
  1231. }
  1232. check_host_cflags(){
  1233. log check_host_cflags "$@"
  1234. set -- $($host_cflags_filter "$@")
  1235. check_host_cc "$@" <<EOF && append host_cflags "$@"
  1236. int x;
  1237. EOF
  1238. }
  1239. check_host_cpp_condition(){
  1240. log check_host_cpp_condition "$@"
  1241. header=$1
  1242. condition=$2
  1243. shift 2
  1244. check_host_cpp "$@" <<EOF
  1245. #include <$header>
  1246. #if !($condition)
  1247. #error "unsatisfied condition: $condition"
  1248. #endif
  1249. EOF
  1250. }
  1251. cp_if_changed(){
  1252. cmp -s "$1" "$2" && echo "$2 is unchanged" && return
  1253. mkdir -p "$(dirname $2)"
  1254. $cp_f "$1" "$2"
  1255. }
  1256. # CONFIG_LIST contains configurable options, while HAVE_LIST is for
  1257. # system-dependent things.
  1258. AVCODEC_COMPONENTS="
  1259. bsfs
  1260. decoders
  1261. encoders
  1262. hwaccels
  1263. parsers
  1264. "
  1265. AVDEVICE_COMPONENTS="
  1266. indevs
  1267. outdevs
  1268. "
  1269. AVFILTER_COMPONENTS="
  1270. filters
  1271. "
  1272. AVFORMAT_COMPONENTS="
  1273. demuxers
  1274. muxers
  1275. protocols
  1276. "
  1277. AVRESAMPLE_COMPONENTS=""
  1278. AVUTIL_COMPONENTS=""
  1279. COMPONENT_LIST="
  1280. $AVCODEC_COMPONENTS
  1281. $AVDEVICE_COMPONENTS
  1282. $AVFILTER_COMPONENTS
  1283. $AVFORMAT_COMPONENTS
  1284. $AVRESAMPLE_COMPONENTS
  1285. $AVUTIL_COMPONENTS
  1286. "
  1287. EXAMPLE_LIST="
  1288. avio_reading_example
  1289. avio_dir_cmd_example
  1290. decoding_encoding_example
  1291. demuxing_decoding_example
  1292. extract_mvs_example
  1293. filter_audio_example
  1294. filtering_audio_example
  1295. filtering_video_example
  1296. metadata_example
  1297. muxing_example
  1298. qsvdec_example
  1299. remuxing_example
  1300. resampling_audio_example
  1301. scaling_video_example
  1302. transcode_aac_example
  1303. transcoding_example
  1304. "
  1305. EXTERNAL_LIBRARY_LIST="
  1306. avisynth
  1307. bzlib
  1308. chromaprint
  1309. crystalhd
  1310. decklink
  1311. frei0r
  1312. gcrypt
  1313. gmp
  1314. gnutls
  1315. iconv
  1316. jni
  1317. ladspa
  1318. libass
  1319. libbluray
  1320. libbs2b
  1321. libcaca
  1322. libcdio
  1323. libcelt
  1324. libdc1394
  1325. libebur128
  1326. libfaac
  1327. libfdk_aac
  1328. libflite
  1329. libfontconfig
  1330. libfreetype
  1331. libfribidi
  1332. libgme
  1333. libgsm
  1334. libiec61883
  1335. libilbc
  1336. libkvazaar
  1337. libmodplug
  1338. libmp3lame
  1339. libnut
  1340. libopencore_amrnb
  1341. libopencore_amrwb
  1342. libopencv
  1343. libopenh264
  1344. libopenjpeg
  1345. libopus
  1346. libpulse
  1347. librtmp
  1348. librubberband
  1349. libschroedinger
  1350. libshine
  1351. libsmbclient
  1352. libsnappy
  1353. libsoxr
  1354. libspeex
  1355. libssh
  1356. libtesseract
  1357. libtheora
  1358. libtwolame
  1359. libv4l2
  1360. libvidstab
  1361. libvo_amrwbenc
  1362. libvorbis
  1363. libvpx
  1364. libwavpack
  1365. libwebp
  1366. libx264
  1367. libx265
  1368. libxavs
  1369. libxcb
  1370. libxcb_shm
  1371. libxcb_shape
  1372. libxcb_xfixes
  1373. libxvid
  1374. libzimg
  1375. libzmq
  1376. libzvbi
  1377. lzma
  1378. mediacodec
  1379. netcdf
  1380. openal
  1381. opencl
  1382. opengl
  1383. openssl
  1384. schannel
  1385. sdl
  1386. securetransport
  1387. videotoolbox
  1388. x11grab
  1389. xlib
  1390. zlib
  1391. "
  1392. HWACCEL_LIBRARY_LIST="
  1393. audiotoolbox
  1394. cuda
  1395. cuvid
  1396. d3d11va
  1397. dxva2
  1398. libmfx
  1399. libnpp
  1400. mmal
  1401. nvenc
  1402. omx
  1403. vaapi
  1404. vda
  1405. vdpau
  1406. videotoolbox_hwaccel
  1407. xvmc
  1408. "
  1409. DOCUMENT_LIST="
  1410. doc
  1411. htmlpages
  1412. manpages
  1413. podpages
  1414. txtpages
  1415. "
  1416. FEATURE_LIST="
  1417. ftrapv
  1418. gray
  1419. hardcoded_tables
  1420. omx_rpi
  1421. runtime_cpudetect
  1422. safe_bitstream_reader
  1423. shared
  1424. small
  1425. static
  1426. swscale_alpha
  1427. "
  1428. LIBRARY_LIST="
  1429. avcodec
  1430. avdevice
  1431. avfilter
  1432. avformat
  1433. avresample
  1434. avutil
  1435. postproc
  1436. swresample
  1437. swscale
  1438. "
  1439. LICENSE_LIST="
  1440. gpl
  1441. nonfree
  1442. version3
  1443. "
  1444. PROGRAM_LIST="
  1445. ffplay
  1446. ffprobe
  1447. ffserver
  1448. ffmpeg
  1449. "
  1450. SUBSYSTEM_LIST="
  1451. dct
  1452. dwt
  1453. error_resilience
  1454. faan
  1455. fast_unaligned
  1456. fft
  1457. lsp
  1458. lzo
  1459. mdct
  1460. pixelutils
  1461. network
  1462. rdft
  1463. "
  1464. CONFIG_LIST="
  1465. $COMPONENT_LIST
  1466. $DOCUMENT_LIST
  1467. $EXAMPLE_LIST
  1468. $EXTERNAL_LIBRARY_LIST
  1469. $HWACCEL_LIBRARY_LIST
  1470. $FEATURE_LIST
  1471. $LICENSE_LIST
  1472. $LIBRARY_LIST
  1473. $PROGRAM_LIST
  1474. $SUBSYSTEM_LIST
  1475. fontconfig
  1476. incompatible_libav_abi
  1477. memalign_hack
  1478. memory_poisoning
  1479. neon_clobber_test
  1480. pic
  1481. pod2man
  1482. raise_major
  1483. thumb
  1484. valgrind_backtrace
  1485. xmm_clobber_test
  1486. "
  1487. THREADS_LIST="
  1488. pthreads
  1489. os2threads
  1490. w32threads
  1491. "
  1492. ATOMICS_LIST="
  1493. atomics_gcc
  1494. atomics_suncc
  1495. atomics_win32
  1496. "
  1497. ARCH_LIST="
  1498. aarch64
  1499. alpha
  1500. arm
  1501. avr32
  1502. avr32_ap
  1503. avr32_uc
  1504. bfin
  1505. ia64
  1506. m68k
  1507. mips
  1508. mips64
  1509. parisc
  1510. ppc
  1511. ppc64
  1512. s390
  1513. sh4
  1514. sparc
  1515. sparc64
  1516. tilegx
  1517. tilepro
  1518. tomi
  1519. x86
  1520. x86_32
  1521. x86_64
  1522. "
  1523. ARCH_EXT_LIST_ARM="
  1524. armv5te
  1525. armv6
  1526. armv6t2
  1527. armv8
  1528. neon
  1529. vfp
  1530. vfpv3
  1531. setend
  1532. "
  1533. ARCH_EXT_LIST_MIPS="
  1534. mipsfpu
  1535. mips32r2
  1536. mips32r5
  1537. mips64r2
  1538. mips32r6
  1539. mips64r6
  1540. mipsdsp
  1541. mipsdspr2
  1542. msa
  1543. "
  1544. ARCH_EXT_LIST_LOONGSON="
  1545. loongson2
  1546. loongson3
  1547. mmi
  1548. "
  1549. ARCH_EXT_LIST_X86_SIMD="
  1550. aesni
  1551. amd3dnow
  1552. amd3dnowext
  1553. avx
  1554. avx2
  1555. fma3
  1556. fma4
  1557. mmx
  1558. mmxext
  1559. sse
  1560. sse2
  1561. sse3
  1562. sse4
  1563. sse42
  1564. ssse3
  1565. xop
  1566. "
  1567. ARCH_EXT_LIST_PPC="
  1568. altivec
  1569. dcbzl
  1570. ldbrx
  1571. power8
  1572. ppc4xx
  1573. vsx
  1574. "
  1575. ARCH_EXT_LIST_X86="
  1576. $ARCH_EXT_LIST_X86_SIMD
  1577. cpunop
  1578. i686
  1579. "
  1580. ARCH_EXT_LIST="
  1581. $ARCH_EXT_LIST_ARM
  1582. $ARCH_EXT_LIST_PPC
  1583. $ARCH_EXT_LIST_X86
  1584. $ARCH_EXT_LIST_MIPS
  1585. $ARCH_EXT_LIST_LOONGSON
  1586. "
  1587. ARCH_FEATURES="
  1588. aligned_stack
  1589. fast_64bit
  1590. fast_clz
  1591. fast_cmov
  1592. local_aligned_8
  1593. local_aligned_16
  1594. local_aligned_32
  1595. simd_align_16
  1596. "
  1597. BUILTIN_LIST="
  1598. atomic_cas_ptr
  1599. atomic_compare_exchange
  1600. machine_rw_barrier
  1601. MemoryBarrier
  1602. mm_empty
  1603. rdtsc
  1604. sarestart
  1605. sem_timedwait
  1606. sync_val_compare_and_swap
  1607. "
  1608. HAVE_LIST_CMDLINE="
  1609. inline_asm
  1610. symver
  1611. yasm
  1612. "
  1613. HAVE_LIST_PUB="
  1614. bigendian
  1615. fast_unaligned
  1616. incompatible_libav_abi
  1617. "
  1618. HEADERS_LIST="
  1619. alsa_asoundlib_h
  1620. altivec_h
  1621. arpa_inet_h
  1622. asm_types_h
  1623. cdio_paranoia_h
  1624. cdio_paranoia_paranoia_h
  1625. dispatch_dispatch_h
  1626. dev_bktr_ioctl_bt848_h
  1627. dev_bktr_ioctl_meteor_h
  1628. dev_ic_bt8xx_h
  1629. dev_video_bktr_ioctl_bt848_h
  1630. dev_video_meteor_ioctl_meteor_h
  1631. direct_h
  1632. dirent_h
  1633. dlfcn_h
  1634. d3d11_h
  1635. dxva_h
  1636. ES2_gl_h
  1637. gsm_h
  1638. io_h
  1639. mach_mach_time_h
  1640. machine_ioctl_bt848_h
  1641. machine_ioctl_meteor_h
  1642. malloc_h
  1643. opencv2_core_core_c_h
  1644. openjpeg_2_1_openjpeg_h
  1645. openjpeg_2_0_openjpeg_h
  1646. openjpeg_1_5_openjpeg_h
  1647. OpenGL_gl3_h
  1648. poll_h
  1649. sndio_h
  1650. soundcard_h
  1651. sys_mman_h
  1652. sys_param_h
  1653. sys_resource_h
  1654. sys_select_h
  1655. sys_soundcard_h
  1656. sys_time_h
  1657. sys_un_h
  1658. sys_videoio_h
  1659. termios_h
  1660. udplite_h
  1661. unistd_h
  1662. valgrind_valgrind_h
  1663. windows_h
  1664. winsock2_h
  1665. "
  1666. INTRINSICS_LIST="
  1667. intrinsics_neon
  1668. "
  1669. COMPLEX_FUNCS="
  1670. cabs
  1671. cexp
  1672. "
  1673. MATH_FUNCS="
  1674. atanf
  1675. atan2f
  1676. cbrt
  1677. cbrtf
  1678. copysign
  1679. cosf
  1680. erf
  1681. exp2
  1682. exp2f
  1683. expf
  1684. hypot
  1685. isfinite
  1686. isinf
  1687. isnan
  1688. ldexpf
  1689. llrint
  1690. llrintf
  1691. log2
  1692. log2f
  1693. log10f
  1694. lrint
  1695. lrintf
  1696. powf
  1697. rint
  1698. round
  1699. roundf
  1700. sinf
  1701. trunc
  1702. truncf
  1703. "
  1704. SYSTEM_FUNCS="
  1705. access
  1706. aligned_malloc
  1707. arc4random
  1708. clock_gettime
  1709. closesocket
  1710. CommandLineToArgvW
  1711. CoTaskMemFree
  1712. CryptGenRandom
  1713. dlopen
  1714. fcntl
  1715. flt_lim
  1716. fork
  1717. getaddrinfo
  1718. gethrtime
  1719. getopt
  1720. GetProcessAffinityMask
  1721. GetProcessMemoryInfo
  1722. GetProcessTimes
  1723. getrusage
  1724. GetSystemTimeAsFileTime
  1725. gettimeofday
  1726. glob
  1727. glXGetProcAddress
  1728. gmtime_r
  1729. inet_aton
  1730. isatty
  1731. jack_port_get_latency_range
  1732. kbhit
  1733. localtime_r
  1734. lstat
  1735. lzo1x_999_compress
  1736. mach_absolute_time
  1737. MapViewOfFile
  1738. memalign
  1739. mkstemp
  1740. mmap
  1741. mprotect
  1742. nanosleep
  1743. PeekNamedPipe
  1744. posix_memalign
  1745. pthread_cancel
  1746. sched_getaffinity
  1747. SetConsoleTextAttribute
  1748. SetConsoleCtrlHandler
  1749. setmode
  1750. setrlimit
  1751. Sleep
  1752. strerror_r
  1753. sysconf
  1754. sysctl
  1755. usleep
  1756. UTGetOSTypeFromString
  1757. VirtualAlloc
  1758. wglGetProcAddress
  1759. "
  1760. TOOLCHAIN_FEATURES="
  1761. as_dn_directive
  1762. as_func
  1763. as_object_arch
  1764. asm_mod_q
  1765. attribute_may_alias
  1766. attribute_packed
  1767. ebp_available
  1768. ebx_available
  1769. gnu_as
  1770. gnu_windres
  1771. ibm_asm
  1772. inline_asm_direct_symbol_refs
  1773. inline_asm_labels
  1774. inline_asm_nonlocal_labels
  1775. pragma_deprecated
  1776. rsync_contimeout
  1777. symver_asm_label
  1778. symver_gnu_asm
  1779. vfp_args
  1780. xform_asm
  1781. xmm_clobbers
  1782. "
  1783. TYPES_LIST="
  1784. CONDITION_VARIABLE_Ptr
  1785. socklen_t
  1786. struct_addrinfo
  1787. struct_group_source_req
  1788. struct_ip_mreq_source
  1789. struct_ipv6_mreq
  1790. struct_msghdr_msg_flags
  1791. struct_pollfd
  1792. struct_rusage_ru_maxrss
  1793. struct_sctp_event_subscribe
  1794. struct_sockaddr_in6
  1795. struct_sockaddr_sa_len
  1796. struct_sockaddr_storage
  1797. struct_stat_st_mtim_tv_nsec
  1798. struct_v4l2_frmivalenum_discrete
  1799. "
  1800. HAVE_LIST="
  1801. $ARCH_EXT_LIST
  1802. $(add_suffix _external $ARCH_EXT_LIST)
  1803. $(add_suffix _inline $ARCH_EXT_LIST)
  1804. $ARCH_FEATURES
  1805. $ATOMICS_LIST
  1806. $BUILTIN_LIST
  1807. $COMPLEX_FUNCS
  1808. $HAVE_LIST_CMDLINE
  1809. $HAVE_LIST_PUB
  1810. $HEADERS_LIST
  1811. $INTRINSICS_LIST
  1812. $MATH_FUNCS
  1813. $SYSTEM_FUNCS
  1814. $THREADS_LIST
  1815. $TOOLCHAIN_FEATURES
  1816. $TYPES_LIST
  1817. atomics_native
  1818. dos_paths
  1819. dxva2_lib
  1820. dxva2api_cobj
  1821. libc_msvcrt
  1822. libdc1394_1
  1823. libdc1394_2
  1824. makeinfo
  1825. makeinfo_html
  1826. MMAL_PARAMETER_VIDEO_MAX_NUM_CALLBACKS
  1827. perl
  1828. pod2man
  1829. sdl
  1830. section_data_rel_ro
  1831. texi2html
  1832. threads
  1833. vaapi_drm
  1834. vaapi_x11
  1835. vdpau_x11
  1836. winrt
  1837. xlib
  1838. "
  1839. # options emitted with CONFIG_ prefix but not available on the command line
  1840. CONFIG_EXTRA="
  1841. aandcttables
  1842. ac3dsp
  1843. audio_frame_queue
  1844. audiodsp
  1845. blockdsp
  1846. bswapdsp
  1847. cabac
  1848. dirac_parse
  1849. dvprofile
  1850. exif
  1851. faandct
  1852. faanidct
  1853. fdctdsp
  1854. flacdsp
  1855. fmtconvert
  1856. frame_thread_encoder
  1857. g722dsp
  1858. golomb
  1859. gplv3
  1860. h263dsp
  1861. h264chroma
  1862. h264dsp
  1863. h264pred
  1864. h264qpel
  1865. hpeldsp
  1866. huffman
  1867. huffyuvdsp
  1868. huffyuvencdsp
  1869. idctdsp
  1870. iirfilter
  1871. imdct15
  1872. intrax8
  1873. iso_media
  1874. ividsp
  1875. jpegtables
  1876. lgplv3
  1877. libx262
  1878. llauddsp
  1879. llviddsp
  1880. lpc
  1881. lzf
  1882. me_cmp
  1883. mpeg_er
  1884. mpegaudio
  1885. mpegaudiodsp
  1886. mpegvideo
  1887. mpegvideoenc
  1888. mss34dsp
  1889. pixblockdsp
  1890. qpeldsp
  1891. qsv
  1892. qsvdec
  1893. qsvenc
  1894. rangecoder
  1895. riffdec
  1896. riffenc
  1897. rtpdec
  1898. rtpenc_chain
  1899. rv34dsp
  1900. sinewin
  1901. snappy
  1902. srtp
  1903. startcode
  1904. texturedsp
  1905. texturedspenc
  1906. tpeldsp
  1907. vaapi_encode
  1908. vc1dsp
  1909. videodsp
  1910. vp3dsp
  1911. vp56dsp
  1912. vp8dsp
  1913. vt_bt2020
  1914. wma_freqs
  1915. wmv2dsp
  1916. "
  1917. CMDLINE_SELECT="
  1918. $ARCH_EXT_LIST
  1919. $CONFIG_LIST
  1920. $HAVE_LIST_CMDLINE
  1921. $THREADS_LIST
  1922. asm
  1923. cross_compile
  1924. debug
  1925. extra_warnings
  1926. logging
  1927. lto
  1928. optimizations
  1929. rpath
  1930. stripping
  1931. "
  1932. PATHS_LIST="
  1933. bindir
  1934. datadir
  1935. docdir
  1936. incdir
  1937. libdir
  1938. mandir
  1939. pkgconfigdir
  1940. prefix
  1941. shlibdir
  1942. install_name_dir
  1943. "
  1944. CMDLINE_SET="
  1945. $PATHS_LIST
  1946. ar
  1947. arch
  1948. as
  1949. assert_level
  1950. build_suffix
  1951. cc
  1952. objcc
  1953. cpu
  1954. cross_prefix
  1955. custom_allocator
  1956. cxx
  1957. dep_cc
  1958. doxygen
  1959. env
  1960. extra_version
  1961. gas
  1962. host_cc
  1963. host_cflags
  1964. host_ld
  1965. host_ldflags
  1966. host_libs
  1967. host_os
  1968. install
  1969. ld
  1970. ln_s
  1971. logfile
  1972. malloc_prefix
  1973. nm
  1974. optflags
  1975. pkg_config
  1976. pkg_config_flags
  1977. progs_suffix
  1978. random_seed
  1979. ranlib
  1980. samples
  1981. strip
  1982. sws_max_filter_size
  1983. sysinclude
  1984. sysroot
  1985. target_exec
  1986. target_os
  1987. target_path
  1988. target_samples
  1989. tempprefix
  1990. toolchain
  1991. valgrind
  1992. yasmexe
  1993. "
  1994. CMDLINE_APPEND="
  1995. extra_cflags
  1996. extra_cxxflags
  1997. extra_objcflags
  1998. host_cppflags
  1999. "
  2000. # code dependency declarations
  2001. # architecture extensions
  2002. armv5te_deps="arm"
  2003. armv6_deps="arm"
  2004. armv6t2_deps="arm"
  2005. armv8_deps="aarch64"
  2006. neon_deps_any="aarch64 arm"
  2007. intrinsics_neon_deps="neon"
  2008. vfp_deps_any="aarch64 arm"
  2009. vfpv3_deps="vfp"
  2010. setend_deps="arm"
  2011. map 'eval ${v}_inline_deps=inline_asm' $ARCH_EXT_LIST_ARM
  2012. mipsfpu_deps="mips"
  2013. mipsdsp_deps="mips"
  2014. mipsdspr2_deps="mips"
  2015. mips32r2_deps="mips"
  2016. mips32r5_deps="mips"
  2017. mips32r6_deps="mips"
  2018. mips64r2_deps="mips"
  2019. mips64r6_deps="mips"
  2020. msa_deps="mipsfpu"
  2021. mmi_deps="mips"
  2022. altivec_deps="ppc"
  2023. dcbzl_deps="ppc"
  2024. ldbrx_deps="ppc"
  2025. ppc4xx_deps="ppc"
  2026. vsx_deps="altivec"
  2027. power8_deps="vsx"
  2028. cpunop_deps="i686"
  2029. x86_64_select="i686"
  2030. x86_64_suggest="fast_cmov"
  2031. amd3dnow_deps="mmx"
  2032. amd3dnowext_deps="amd3dnow"
  2033. i686_deps="x86"
  2034. mmx_deps="x86"
  2035. mmxext_deps="mmx"
  2036. sse_deps="mmxext"
  2037. sse2_deps="sse"
  2038. sse3_deps="sse2"
  2039. ssse3_deps="sse3"
  2040. sse4_deps="ssse3"
  2041. sse42_deps="sse4"
  2042. aesni_deps="sse42"
  2043. avx_deps="sse42"
  2044. xop_deps="avx"
  2045. fma3_deps="avx"
  2046. fma4_deps="avx"
  2047. avx2_deps="avx"
  2048. mmx_external_deps="yasm"
  2049. mmx_inline_deps="inline_asm"
  2050. mmx_suggest="mmx_external mmx_inline"
  2051. for ext in $(filter_out mmx $ARCH_EXT_LIST_X86_SIMD); do
  2052. eval dep=\$${ext}_deps
  2053. eval ${ext}_external_deps='"${dep}_external"'
  2054. eval ${ext}_inline_deps='"${dep}_inline"'
  2055. eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
  2056. done
  2057. aligned_stack_if_any="aarch64 ppc x86"
  2058. fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
  2059. fast_clz_if_any="aarch64 alpha avr32 mips ppc x86"
  2060. fast_unaligned_if_any="aarch64 ppc x86"
  2061. simd_align_16_if_any="altivec neon sse"
  2062. # system capabilities
  2063. symver_if_any="symver_asm_label symver_gnu_asm"
  2064. valgrind_backtrace_deps="!optimizations valgrind_valgrind_h"
  2065. # threading support
  2066. atomics_gcc_if_any="sync_val_compare_and_swap atomic_compare_exchange"
  2067. atomics_suncc_if="atomic_cas_ptr machine_rw_barrier"
  2068. atomics_win32_if="MemoryBarrier"
  2069. atomics_native_if_any="$ATOMICS_LIST"
  2070. w32threads_deps="atomics_native"
  2071. threads_if_any="$THREADS_LIST"
  2072. # subsystems
  2073. dct_select="rdft"
  2074. dirac_parse_select="golomb"
  2075. error_resilience_select="me_cmp"
  2076. faandct_deps="faan fdctdsp"
  2077. faanidct_deps="faan idctdsp"
  2078. h264dsp_select="startcode"
  2079. frame_thread_encoder_deps="encoders threads"
  2080. intrax8_select="blockdsp idctdsp"
  2081. mdct_select="fft"
  2082. me_cmp_select="fdctdsp idctdsp pixblockdsp"
  2083. mpeg_er_select="error_resilience"
  2084. mpegaudio_select="mpegaudiodsp"
  2085. mpegaudiodsp_select="dct"
  2086. mpegvideo_select="blockdsp h264chroma hpeldsp idctdsp me_cmp mpeg_er videodsp"
  2087. mpegvideoenc_select="me_cmp mpegvideo pixblockdsp qpeldsp"
  2088. vc1dsp_select="h264chroma qpeldsp startcode"
  2089. rdft_select="fft"
  2090. # decoders / encoders
  2091. aac_decoder_select="imdct15 mdct sinewin"
  2092. aac_fixed_decoder_select="mdct sinewin"
  2093. aac_encoder_select="audio_frame_queue iirfilter lpc mdct sinewin"
  2094. aac_latm_decoder_select="aac_decoder aac_latm_parser"
  2095. ac3_decoder_select="ac3_parser ac3dsp bswapdsp fmtconvert mdct"
  2096. ac3_fixed_decoder_select="ac3_parser ac3dsp bswapdsp mdct"
  2097. ac3_encoder_select="ac3dsp audiodsp mdct me_cmp"
  2098. ac3_fixed_encoder_select="ac3dsp audiodsp mdct me_cmp"
  2099. adpcm_g722_decoder_select="g722dsp"
  2100. adpcm_g722_encoder_select="g722dsp"
  2101. aic_decoder_select="golomb idctdsp"
  2102. alac_encoder_select="lpc"
  2103. als_decoder_select="bswapdsp"
  2104. amrnb_decoder_select="lsp"
  2105. amrwb_decoder_select="lsp"
  2106. amv_decoder_select="sp5x_decoder exif"
  2107. amv_encoder_select="aandcttables jpegtables mpegvideoenc"
  2108. ape_decoder_select="bswapdsp llauddsp"
  2109. apng_decoder_select="zlib"
  2110. apng_encoder_select="huffyuvencdsp zlib"
  2111. asv1_decoder_select="blockdsp bswapdsp idctdsp"
  2112. asv1_encoder_select="bswapdsp fdctdsp pixblockdsp"
  2113. asv2_decoder_select="blockdsp bswapdsp idctdsp"
  2114. asv2_encoder_select="bswapdsp fdctdsp pixblockdsp"
  2115. atrac1_decoder_select="mdct sinewin"
  2116. atrac3_decoder_select="mdct"
  2117. atrac3p_decoder_select="mdct sinewin"
  2118. avrn_decoder_select="exif jpegtables"
  2119. bink_decoder_select="blockdsp hpeldsp"
  2120. binkaudio_dct_decoder_select="mdct rdft dct sinewin wma_freqs"
  2121. binkaudio_rdft_decoder_select="mdct rdft sinewin wma_freqs"
  2122. cavs_decoder_select="blockdsp golomb h264chroma idctdsp qpeldsp videodsp"
  2123. cllc_decoder_select="bswapdsp"
  2124. comfortnoise_encoder_select="lpc"
  2125. cook_decoder_select="audiodsp mdct sinewin"
  2126. cscd_decoder_select="lzo"
  2127. cscd_decoder_suggest="zlib"
  2128. dca_decoder_select="mdct"
  2129. dds_decoder_select="texturedsp"
  2130. dirac_decoder_select="dirac_parse dwt golomb videodsp mpegvideoenc"
  2131. dnxhd_decoder_select="blockdsp idctdsp"
  2132. dnxhd_encoder_select="aandcttables blockdsp fdctdsp idctdsp mpegvideoenc pixblockdsp"
  2133. dvvideo_decoder_select="dvprofile idctdsp"
  2134. dvvideo_encoder_select="dvprofile fdctdsp me_cmp pixblockdsp"
  2135. dxa_decoder_select="zlib"
  2136. dxv_decoder_select="lzf texturedsp"
  2137. eac3_decoder_select="ac3_decoder"
  2138. eac3_encoder_select="ac3_encoder"
  2139. eamad_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpegvideo"
  2140. eatgq_decoder_select="aandcttables"
  2141. eatqi_decoder_select="aandcttables blockdsp bswapdsp idctdsp"
  2142. exr_decoder_select="zlib"
  2143. ffv1_decoder_select="golomb rangecoder"
  2144. ffv1_encoder_select="rangecoder"
  2145. ffvhuff_decoder_select="huffyuv_decoder"
  2146. ffvhuff_encoder_select="huffyuv_encoder"
  2147. fic_decoder_select="golomb"
  2148. flac_decoder_select="flacdsp golomb"
  2149. flac_encoder_select="bswapdsp flacdsp golomb lpc"
  2150. flashsv2_decoder_select="zlib"
  2151. flashsv2_encoder_select="zlib"
  2152. flashsv_decoder_select="zlib"
  2153. flashsv_encoder_select="zlib"
  2154. flv_decoder_select="h263_decoder"
  2155. flv_encoder_select="h263_encoder"
  2156. fourxm_decoder_select="blockdsp bswapdsp"
  2157. fraps_decoder_select="bswapdsp huffman"
  2158. g2m_decoder_select="blockdsp idctdsp jpegtables zlib"
  2159. g729_decoder_select="audiodsp"
  2160. h261_decoder_select="mpegvideo"
  2161. h261_encoder_select="aandcttables mpegvideoenc"
  2162. h263_decoder_select="h263_parser h263dsp mpegvideo qpeldsp"
  2163. h263_encoder_select="aandcttables h263dsp mpegvideoenc"
  2164. h263i_decoder_select="h263_decoder"
  2165. h263p_decoder_select="h263_decoder"
  2166. h263p_encoder_select="h263_encoder"
  2167. h264_decoder_select="cabac golomb h264chroma h264dsp h264pred h264qpel videodsp"
  2168. h264_decoder_suggest="error_resilience"
  2169. hap_decoder_select="snappy texturedsp"
  2170. hap_encoder_deps="libsnappy"
  2171. hap_encoder_select="texturedspenc"
  2172. hevc_decoder_select="bswapdsp cabac golomb videodsp"
  2173. huffyuv_decoder_select="bswapdsp huffyuvdsp llviddsp"
  2174. huffyuv_encoder_select="bswapdsp huffman huffyuvencdsp llviddsp"
  2175. iac_decoder_select="imc_decoder"
  2176. imc_decoder_select="bswapdsp fft mdct sinewin"
  2177. indeo3_decoder_select="hpeldsp"
  2178. indeo4_decoder_select="ividsp"
  2179. indeo5_decoder_select="ividsp"
  2180. interplay_video_decoder_select="hpeldsp"
  2181. jpegls_decoder_select="golomb mjpeg_decoder"
  2182. jpegls_encoder_select="golomb"
  2183. jv_decoder_select="blockdsp"
  2184. lagarith_decoder_select="huffyuvdsp"
  2185. ljpeg_encoder_select="aandcttables idctdsp jpegtables"
  2186. loco_decoder_select="golomb"
  2187. magicyuv_decoder_select="huffyuvdsp"
  2188. mdec_decoder_select="blockdsp idctdsp mpegvideo"
  2189. metasound_decoder_select="lsp mdct sinewin"
  2190. mimic_decoder_select="blockdsp bswapdsp hpeldsp idctdsp"
  2191. mjpeg_decoder_select="blockdsp hpeldsp exif idctdsp jpegtables"
  2192. mjpeg_encoder_select="aandcttables jpegtables mpegvideoenc"
  2193. mjpegb_decoder_select="mjpeg_decoder"
  2194. mjpeg_vaapi_encoder_deps="VAEncPictureParameterBufferJPEG"
  2195. mjpeg_vaapi_encoder_select="vaapi_encode jpegtables"
  2196. mlp_decoder_select="mlp_parser"
  2197. motionpixels_decoder_select="bswapdsp"
  2198. mp1_decoder_select="mpegaudio"
  2199. mp1float_decoder_select="mpegaudio"
  2200. mp2_decoder_select="mpegaudio"
  2201. mp2float_decoder_select="mpegaudio"
  2202. mp3_decoder_select="mpegaudio"
  2203. mp3adu_decoder_select="mpegaudio"
  2204. mp3adufloat_decoder_select="mpegaudio"
  2205. mp3float_decoder_select="mpegaudio"
  2206. mp3on4_decoder_select="mpegaudio"
  2207. mp3on4float_decoder_select="mpegaudio"
  2208. mpc7_decoder_select="bswapdsp mpegaudiodsp"
  2209. mpc8_decoder_select="mpegaudiodsp"
  2210. mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
  2211. mpeg_xvmc_decoder_select="mpeg2video_decoder"
  2212. mpegvideo_decoder_select="mpegvideo"
  2213. mpeg1video_decoder_select="mpegvideo"
  2214. mpeg1video_encoder_select="aandcttables mpegvideoenc h263dsp"
  2215. mpeg2video_decoder_select="mpegvideo"
  2216. mpeg2video_encoder_select="aandcttables mpegvideoenc h263dsp"
  2217. mpeg4_decoder_select="h263_decoder mpeg4video_parser"
  2218. mpeg4_encoder_select="h263_encoder"
  2219. msa1_decoder_select="mss34dsp"
  2220. msmpeg4v1_decoder_select="h263_decoder"
  2221. msmpeg4v2_decoder_select="h263_decoder"
  2222. msmpeg4v2_encoder_select="h263_encoder"
  2223. msmpeg4v3_decoder_select="h263_decoder"
  2224. msmpeg4v3_encoder_select="h263_encoder"
  2225. mss2_decoder_select="vc1_decoder mpegvideo"
  2226. mts2_decoder_select="mss34dsp"
  2227. mxpeg_decoder_select="mjpeg_decoder"
  2228. nellymoser_decoder_select="mdct sinewin"
  2229. nellymoser_encoder_select="audio_frame_queue mdct sinewin"
  2230. nuv_decoder_select="idctdsp lzo"
  2231. on2avc_decoder_select="mdct"
  2232. opus_decoder_deps="swresample"
  2233. opus_decoder_select="imdct15"
  2234. png_decoder_select="zlib"
  2235. png_encoder_select="huffyuvencdsp zlib"
  2236. prores_decoder_select="blockdsp idctdsp"
  2237. prores_encoder_select="fdctdsp"
  2238. qcelp_decoder_select="lsp"
  2239. qdm2_decoder_select="mdct rdft mpegaudiodsp"
  2240. ra_144_decoder_select="audiodsp"
  2241. ra_144_encoder_select="audio_frame_queue lpc audiodsp"
  2242. ralf_decoder_select="golomb"
  2243. rawvideo_decoder_select="bswapdsp"
  2244. rscc_decoder_select="zlib"
  2245. rtjpeg_decoder_select="me_cmp"
  2246. rv10_decoder_select="h263_decoder"
  2247. rv10_encoder_select="h263_encoder"
  2248. rv20_decoder_select="h263_decoder"
  2249. rv20_encoder_select="h263_encoder"
  2250. rv30_decoder_select="golomb h264pred h264qpel mpegvideo rv34dsp"
  2251. rv40_decoder_select="golomb h264pred h264qpel mpegvideo rv34dsp"
  2252. screenpresso_decoder_select="zlib"
  2253. shorten_decoder_select="golomb"
  2254. sipr_decoder_select="lsp"
  2255. snow_decoder_select="dwt h264qpel hpeldsp me_cmp rangecoder videodsp"
  2256. snow_encoder_select="aandcttables dwt h264qpel hpeldsp me_cmp mpegvideoenc rangecoder"
  2257. sonic_decoder_select="golomb rangecoder"
  2258. sonic_encoder_select="golomb rangecoder"
  2259. sonic_ls_encoder_select="golomb rangecoder"
  2260. sp5x_decoder_select="mjpeg_decoder"
  2261. svq1_decoder_select="hpeldsp"
  2262. svq1_encoder_select="aandcttables hpeldsp me_cmp mpegvideoenc"
  2263. svq3_decoder_select="golomb h264dsp h264pred hpeldsp tpeldsp videodsp"
  2264. svq3_decoder_suggest="zlib"
  2265. tak_decoder_select="audiodsp"
  2266. tdsc_decoder_select="zlib mjpeg_decoder"
  2267. theora_decoder_select="vp3_decoder"
  2268. thp_decoder_select="mjpeg_decoder"
  2269. tiff_decoder_suggest="zlib lzma"
  2270. tiff_encoder_suggest="zlib"
  2271. truehd_decoder_select="mlp_parser"
  2272. truemotion2_decoder_select="bswapdsp"
  2273. truespeech_decoder_select="bswapdsp"
  2274. tscc_decoder_select="zlib"
  2275. twinvq_decoder_select="mdct lsp sinewin"
  2276. txd_decoder_select="texturedsp"
  2277. utvideo_decoder_select="bswapdsp"
  2278. utvideo_encoder_select="bswapdsp huffman huffyuvencdsp"
  2279. vble_decoder_select="huffyuvdsp"
  2280. vc1_decoder_select="blockdsp h263_decoder h264qpel intrax8 mpegvideo vc1dsp"
  2281. vc1_qsv_decoder_deps="libmfx"
  2282. vc1_qsv_decoder_select="qsvdec vc1_qsv_hwaccel"
  2283. vc1image_decoder_select="vc1_decoder"
  2284. vorbis_decoder_select="mdct"
  2285. vorbis_encoder_select="mdct"
  2286. vp3_decoder_select="hpeldsp vp3dsp videodsp"
  2287. vp5_decoder_select="h264chroma hpeldsp videodsp vp3dsp vp56dsp"
  2288. vp6_decoder_select="h264chroma hpeldsp huffman videodsp vp3dsp vp56dsp"
  2289. vp6a_decoder_select="vp6_decoder"
  2290. vp6f_decoder_select="vp6_decoder"
  2291. vp7_decoder_select="h264pred videodsp vp8dsp"
  2292. vp8_decoder_select="h264pred videodsp vp8dsp"
  2293. vp9_decoder_select="videodsp vp9_parser"
  2294. webp_decoder_select="vp8_decoder exif"
  2295. wmalossless_decoder_select="llauddsp"
  2296. wmapro_decoder_select="mdct sinewin wma_freqs"
  2297. wmav1_decoder_select="mdct sinewin wma_freqs"
  2298. wmav1_encoder_select="mdct sinewin wma_freqs"
  2299. wmav2_decoder_select="mdct sinewin wma_freqs"
  2300. wmav2_encoder_select="mdct sinewin wma_freqs"
  2301. wmavoice_decoder_select="lsp rdft dct mdct sinewin"
  2302. wmv1_decoder_select="h263_decoder"
  2303. wmv1_encoder_select="h263_encoder"
  2304. wmv2_decoder_select="blockdsp error_resilience h263_decoder idctdsp intrax8 videodsp wmv2dsp"
  2305. wmv2_encoder_select="h263_encoder wmv2dsp"
  2306. wmv3_decoder_select="vc1_decoder"
  2307. wmv3image_decoder_select="wmv3_decoder"
  2308. xma1_decoder_select="wmapro_decoder"
  2309. xma2_decoder_select="wmapro_decoder"
  2310. zerocodec_decoder_select="zlib"
  2311. zlib_decoder_select="zlib"
  2312. zlib_encoder_select="zlib"
  2313. zmbv_decoder_select="zlib"
  2314. zmbv_encoder_select="zlib"
  2315. # platform codecs
  2316. audiotoolbox_deps="AudioToolbox_AudioToolbox_h"
  2317. audiotoolbox_extralibs="-framework CoreFoundation -framework AudioToolbox -framework CoreMedia"
  2318. # hardware accelerators
  2319. crystalhd_deps="libcrystalhd_libcrystalhd_if_h"
  2320. cuvid_deps="cuda"
  2321. d3d11va_deps="d3d11_h dxva_h ID3D11VideoDecoder ID3D11VideoContext"
  2322. dxva2_deps="dxva2api_h DXVA2_ConfigPictureDecode"
  2323. vaapi_deps="va_va_h"
  2324. vda_framework_deps="VideoDecodeAcceleration_VDADecoder_h"
  2325. vda_framework_extralibs="-framework VideoDecodeAcceleration"
  2326. vda_deps="vda_framework pthreads"
  2327. vda_extralibs="-framework CoreFoundation -framework QuartzCore"
  2328. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  2329. videotoolbox_hwaccel_deps="videotoolbox pthreads"
  2330. videotoolbox_hwaccel_extralibs="-framework QuartzCore"
  2331. xvmc_deps="X11_extensions_XvMClib_h"
  2332. h263_vaapi_hwaccel_deps="vaapi"
  2333. h263_vaapi_hwaccel_select="h263_decoder"
  2334. h263_videotoolbox_hwaccel_deps="videotoolbox"
  2335. h263_videotoolbox_hwaccel_select="h263_decoder"
  2336. h264_crystalhd_decoder_select="crystalhd h264_mp4toannexb_bsf h264_parser"
  2337. h264_cuvid_hwaccel_deps="cuda cuvid CUVIDH264PICPARAMS"
  2338. h264_d3d11va_hwaccel_deps="d3d11va"
  2339. h264_d3d11va_hwaccel_select="h264_decoder"
  2340. h264_dxva2_hwaccel_deps="dxva2"
  2341. h264_dxva2_hwaccel_select="h264_decoder"
  2342. h264_mediacodec_decoder_deps="mediacodec"
  2343. h264_mediacodec_hwaccel_deps="mediacodec"
  2344. h264_mediacodec_decoder_select="h264_mp4toannexb_bsf h264_parser"
  2345. h264_mmal_decoder_deps="mmal"
  2346. h264_mmal_decoder_select="mmal"
  2347. h264_mmal_hwaccel_deps="mmal"
  2348. h264_omx_encoder_deps="omx"
  2349. h264_qsv_hwaccel_deps="libmfx"
  2350. h264_vaapi_hwaccel_deps="vaapi"
  2351. h264_vaapi_hwaccel_select="h264_decoder"
  2352. h264_vda_decoder_deps="vda"
  2353. h264_vda_decoder_select="h264_decoder"
  2354. h264_vda_hwaccel_deps="vda"
  2355. h264_vda_hwaccel_select="h264_decoder"
  2356. h264_vda_old_hwaccel_deps="vda"
  2357. h264_vda_old_hwaccel_select="h264_decoder"
  2358. h264_vdpau_decoder_deps="vdpau"
  2359. h264_vdpau_decoder_select="h264_decoder"
  2360. h264_vdpau_hwaccel_deps="vdpau"
  2361. h264_vdpau_hwaccel_select="h264_decoder"
  2362. h264_videotoolbox_hwaccel_deps="videotoolbox"
  2363. h264_videotoolbox_hwaccel_select="h264_decoder"
  2364. hevc_cuvid_hwaccel_deps="cuda cuvid CUVIDHEVCPICPARAMS"
  2365. hevc_d3d11va_hwaccel_deps="d3d11va DXVA_PicParams_HEVC"
  2366. hevc_d3d11va_hwaccel_select="hevc_decoder"
  2367. hevc_dxva2_hwaccel_deps="dxva2 DXVA_PicParams_HEVC"
  2368. hevc_dxva2_hwaccel_select="hevc_decoder"
  2369. hevc_qsv_hwaccel_deps="libmfx"
  2370. hevc_vaapi_hwaccel_deps="vaapi VAPictureParameterBufferHEVC"
  2371. hevc_vaapi_hwaccel_select="hevc_decoder"
  2372. hevc_vdpau_hwaccel_deps="vdpau VdpPictureInfoHEVC"
  2373. hevc_vdpau_hwaccel_select="hevc_decoder"
  2374. mpeg_vdpau_decoder_deps="vdpau"
  2375. mpeg_vdpau_decoder_select="mpeg2video_decoder"
  2376. mpeg_xvmc_hwaccel_deps="xvmc"
  2377. mpeg_xvmc_hwaccel_select="mpeg2video_decoder"
  2378. mpeg1_vdpau_decoder_deps="vdpau"
  2379. mpeg1_vdpau_decoder_select="mpeg1video_decoder"
  2380. mpeg1_vdpau_hwaccel_deps="vdpau"
  2381. mpeg1_vdpau_hwaccel_select="mpeg1video_decoder"
  2382. mpeg1_videotoolbox_hwaccel_deps="videotoolbox"
  2383. mpeg1_videotoolbox_hwaccel_select="mpeg1video_decoder"
  2384. mpeg1_xvmc_hwaccel_deps="xvmc"
  2385. mpeg1_xvmc_hwaccel_select="mpeg1video_decoder"
  2386. mpeg2_crystalhd_decoder_select="crystalhd"
  2387. mpeg2_d3d11va_hwaccel_deps="d3d11va"
  2388. mpeg2_d3d11va_hwaccel_select="mpeg2video_decoder"
  2389. mpeg2_dxva2_hwaccel_deps="dxva2"
  2390. mpeg2_dxva2_hwaccel_select="mpeg2video_decoder"
  2391. mpeg2_mmal_decoder_deps="mmal"
  2392. mpeg2_mmal_decoder_select="mmal"
  2393. mpeg2_mmal_hwaccel_deps="mmal"
  2394. mpeg2_qsv_hwaccel_deps="libmfx"
  2395. mpeg2_qsv_hwaccel_select="qsvdec_mpeg2"
  2396. mpeg2_vaapi_hwaccel_deps="vaapi"
  2397. mpeg2_vaapi_hwaccel_select="mpeg2video_decoder"
  2398. mpeg2_vdpau_hwaccel_deps="vdpau"
  2399. mpeg2_vdpau_hwaccel_select="mpeg2video_decoder"
  2400. mpeg2_videotoolbox_hwaccel_deps="videotoolbox"
  2401. mpeg2_videotoolbox_hwaccel_select="mpeg2video_decoder"
  2402. mpeg2_xvmc_hwaccel_deps="xvmc"
  2403. mpeg2_xvmc_hwaccel_select="mpeg2video_decoder"
  2404. mpeg4_crystalhd_decoder_select="crystalhd"
  2405. mpeg4_mmal_decoder_deps="mmal"
  2406. mpeg4_mmal_decoder_select="mmal"
  2407. mpeg4_mmal_hwaccel_deps="mmal"
  2408. mpeg4_omx_encoder_deps="omx"
  2409. mpeg4_vaapi_hwaccel_deps="vaapi"
  2410. mpeg4_vaapi_hwaccel_select="mpeg4_decoder"
  2411. mpeg4_vdpau_decoder_deps="vdpau"
  2412. mpeg4_vdpau_decoder_select="mpeg4_decoder"
  2413. mpeg4_vdpau_hwaccel_deps="vdpau"
  2414. mpeg4_vdpau_hwaccel_select="mpeg4_decoder"
  2415. mpeg4_videotoolbox_hwaccel_deps="videotoolbox"
  2416. mpeg4_videotoolbox_hwaccel_select="mpeg4_decoder"
  2417. msmpeg4_crystalhd_decoder_select="crystalhd"
  2418. vc1_crystalhd_decoder_select="crystalhd"
  2419. vc1_cuvid_hwaccel_deps="cuda cuvid CUVIDVC1PICPARAMS"
  2420. vc1_d3d11va_hwaccel_deps="d3d11va"
  2421. vc1_d3d11va_hwaccel_select="vc1_decoder"
  2422. vc1_dxva2_hwaccel_deps="dxva2"
  2423. vc1_dxva2_hwaccel_select="vc1_decoder"
  2424. vc1_mmal_decoder_deps="mmal"
  2425. vc1_mmal_decoder_select="mmal"
  2426. vc1_mmal_hwaccel_deps="mmal"
  2427. vc1_qsv_hwaccel_deps="libmfx"
  2428. vc1_qsv_hwaccel_select="qsvdec_vc1"
  2429. vc1_vaapi_hwaccel_deps="vaapi"
  2430. vc1_vaapi_hwaccel_select="vc1_decoder"
  2431. vc1_vdpau_decoder_deps="vdpau"
  2432. vc1_vdpau_decoder_select="vc1_decoder"
  2433. vc1_vdpau_hwaccel_deps="vdpau"
  2434. vc1_vdpau_hwaccel_select="vc1_decoder"
  2435. vp8_cuvid_hwaccel_deps="cuda cuvid CUVIDVP9PICPARAMS"
  2436. vp9_cuvid_hwaccel_deps="cuda cuvid CUVIDVP9PICPARAMS"
  2437. vp9_d3d11va_hwaccel_deps="d3d11va DXVA_PicParams_VP9"
  2438. vp9_d3d11va_hwaccel_select="vp9_decoder"
  2439. vp9_dxva2_hwaccel_deps="dxva2 DXVA_PicParams_VP9"
  2440. vp9_dxva2_hwaccel_select="vp9_decoder"
  2441. vp9_vaapi_hwaccel_deps="vaapi VADecPictureParameterBufferVP9"
  2442. vp9_vaapi_hwaccel_select="vp9_decoder"
  2443. wmv3_crystalhd_decoder_select="crystalhd"
  2444. wmv3_d3d11va_hwaccel_select="vc1_d3d11va_hwaccel"
  2445. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  2446. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  2447. wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
  2448. wmv3_vdpau_hwaccel_select="vc1_vdpau_hwaccel"
  2449. # hardware-accelerated codecs
  2450. omx_deps="dlopen pthreads"
  2451. omx_extralibs='$ldl'
  2452. qsvdec_select="qsv"
  2453. qsvenc_select="qsv"
  2454. vaapi_encode_deps="vaapi"
  2455. hwupload_cuda_filter_deps="cuda"
  2456. scale_npp_filter_deps="cuda libnpp"
  2457. nvenc_encoder_deps="nvenc"
  2458. h264_cuvid_decoder_deps="cuda cuvid CUVIDH264PICPARAMS"
  2459. h264_cuvid_decoder_select="h264_mp4toannexb_bsf h264_cuvid_hwaccel"
  2460. h264_nvenc_encoder_deps="nvenc"
  2461. h264_qsv_decoder_deps="libmfx"
  2462. h264_qsv_decoder_select="h264_mp4toannexb_bsf h264_parser qsvdec h264_qsv_hwaccel"
  2463. h264_qsv_encoder_deps="libmfx"
  2464. h264_qsv_encoder_select="qsvenc"
  2465. h264_vaapi_encoder_deps="VAEncPictureParameterBufferH264"
  2466. h264_vaapi_encoder_select="vaapi_encode golomb"
  2467. hevc_cuvid_decoder_deps="cuda cuvid CUVIDHEVCPICPARAMS"
  2468. hevc_cuvid_decoder_select="hevc_mp4toannexb_bsf hevc_cuvid_hwaccel"
  2469. hevc_nvenc_encoder_deps="nvenc"
  2470. hevc_qsv_decoder_deps="libmfx"
  2471. hevc_qsv_decoder_select="hevc_mp4toannexb_bsf hevc_parser qsvdec hevc_qsv_hwaccel"
  2472. hevc_qsv_encoder_deps="libmfx"
  2473. hevc_qsv_encoder_select="qsvenc"
  2474. hevc_vaapi_encoder_deps="VAEncPictureParameterBufferHEVC"
  2475. hevc_vaapi_encoder_select="vaapi_encode golomb"
  2476. mpeg2_qsv_decoder_deps="libmfx"
  2477. mpeg2_qsv_decoder_select="qsvdec mpeg2_qsv_hwaccel"
  2478. mpeg2_qsv_encoder_deps="libmfx"
  2479. mpeg2_qsv_encoder_select="qsvenc"
  2480. nvenc_h264_encoder_deps="nvenc"
  2481. nvenc_hevc_encoder_deps="nvenc"
  2482. vc1_cuvid_decoder_deps="cuda cuvid CUVIDVC1PICPARAMS"
  2483. vc1_cuvid_decoder_select="vc1_cuvid_hwaccel"
  2484. vp8_cuvid_decoder_deps="cuda cuvid CUVIDVP9PICPARAMS"
  2485. vp8_cuvid_decoder_select="vp8_cuvid_hwaccel"
  2486. vp9_cuvid_decoder_deps="cuda cuvid CUVIDVP9PICPARAMS"
  2487. vp9_cuvid_decoder_select="vp9_cuvid_hwaccel"
  2488. # parsers
  2489. h264_parser_select="golomb h264dsp"
  2490. hevc_parser_select="golomb"
  2491. mpegvideo_parser_select="mpegvideo"
  2492. mpeg4video_parser_select="h263dsp mpegvideo qpeldsp"
  2493. vc1_parser_select="vc1dsp"
  2494. # bitstream_filters
  2495. mjpeg2jpeg_bsf_select="jpegtables"
  2496. # external libraries
  2497. aac_at_decoder_deps="audiotoolbox"
  2498. ac3_at_decoder_deps="audiotoolbox"
  2499. ac3_at_decoder_select="ac3_parser"
  2500. adpcm_ima_qt_at_decoder_deps="audiotoolbox"
  2501. alac_at_decoder_deps="audiotoolbox"
  2502. amr_nb_at_decoder_deps="audiotoolbox"
  2503. eac3_at_decoder_deps="audiotoolbox"
  2504. eac3_at_decoder_select="ac3_parser"
  2505. gsm_ms_at_decoder_deps="audiotoolbox"
  2506. ilbc_at_decoder_deps="audiotoolbox"
  2507. mp1_at_decoder_deps="audiotoolbox"
  2508. mp2_at_decoder_deps="audiotoolbox"
  2509. mp3_at_decoder_deps="audiotoolbox"
  2510. pcm_alaw_at_decoder_deps="audiotoolbox"
  2511. pcm_mulaw_at_decoder_deps="audiotoolbox"
  2512. qdmc_at_decoder_deps="audiotoolbox"
  2513. qdm2_at_decoder_deps="audiotoolbox"
  2514. aac_at_encoder_deps="audiotoolbox"
  2515. aac_at_encoder_select="audio_frame_queue"
  2516. alac_at_encoder_deps="audiotoolbox"
  2517. alac_at_encoder_select="audio_frame_queue"
  2518. ilbc_at_encoder_deps="audiotoolbox"
  2519. ilbc_at_encoder_select="audio_frame_queue"
  2520. pcm_alaw_at_encoder_deps="audiotoolbox"
  2521. pcm_alaw_at_encoder_select="audio_frame_queue"
  2522. pcm_mulaw_at_encoder_deps="audiotoolbox"
  2523. pcm_mulaw_at_encoder_select="audio_frame_queue"
  2524. chromaprint_muxer_deps="chromaprint"
  2525. h264_videotoolbox_encoder_deps="videotoolbox_encoder pthreads"
  2526. libcelt_decoder_deps="libcelt"
  2527. libfaac_encoder_deps="libfaac"
  2528. libfaac_encoder_select="audio_frame_queue"
  2529. libfdk_aac_decoder_deps="libfdk_aac"
  2530. libfdk_aac_encoder_deps="libfdk_aac"
  2531. libfdk_aac_encoder_select="audio_frame_queue"
  2532. libgme_demuxer_deps="libgme"
  2533. libgsm_decoder_deps="libgsm"
  2534. libgsm_encoder_deps="libgsm"
  2535. libgsm_ms_decoder_deps="libgsm"
  2536. libgsm_ms_encoder_deps="libgsm"
  2537. libilbc_decoder_deps="libilbc"
  2538. libilbc_encoder_deps="libilbc"
  2539. libkvazaar_encoder_deps="libkvazaar"
  2540. libmodplug_demuxer_deps="libmodplug"
  2541. libmp3lame_encoder_deps="libmp3lame"
  2542. libmp3lame_encoder_select="audio_frame_queue"
  2543. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  2544. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  2545. libopencore_amrnb_encoder_select="audio_frame_queue"
  2546. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  2547. libopenh264_encoder_deps="libopenh264"
  2548. libopenjpeg_decoder_deps="libopenjpeg"
  2549. libopenjpeg_encoder_deps="libopenjpeg"
  2550. libopus_decoder_deps="libopus"
  2551. libopus_encoder_deps="libopus"
  2552. libopus_encoder_select="audio_frame_queue"
  2553. libschroedinger_decoder_deps="libschroedinger"
  2554. libschroedinger_encoder_deps="libschroedinger"
  2555. libshine_encoder_deps="libshine"
  2556. libshine_encoder_select="audio_frame_queue"
  2557. libspeex_decoder_deps="libspeex"
  2558. libspeex_encoder_deps="libspeex"
  2559. libspeex_encoder_select="audio_frame_queue"
  2560. libtheora_encoder_deps="libtheora"
  2561. libtwolame_encoder_deps="libtwolame"
  2562. libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
  2563. libvorbis_decoder_deps="libvorbis"
  2564. libvorbis_encoder_deps="libvorbis"
  2565. libvorbis_encoder_select="audio_frame_queue"
  2566. libvpx_vp8_decoder_deps="libvpx"
  2567. libvpx_vp8_encoder_deps="libvpx"
  2568. libvpx_vp9_decoder_deps="libvpx"
  2569. libvpx_vp9_encoder_deps="libvpx"
  2570. libwavpack_encoder_deps="libwavpack"
  2571. libwebp_encoder_deps="libwebp"
  2572. libwebp_anim_encoder_deps="libwebp"
  2573. libx262_encoder_deps="libx262"
  2574. libx264_encoder_deps="libx264"
  2575. libx264rgb_encoder_deps="libx264 x264_csp_bgr"
  2576. libx264rgb_encoder_select="libx264_encoder"
  2577. libx265_encoder_deps="libx265"
  2578. libxavs_encoder_deps="libxavs"
  2579. libxvid_encoder_deps="libxvid"
  2580. libzvbi_teletext_decoder_deps="libzvbi"
  2581. videotoolbox_deps="VideoToolbox_VideoToolbox_h"
  2582. videotoolbox_extralibs="-framework CoreFoundation -framework VideoToolbox -framework CoreMedia -framework CoreVideo"
  2583. videotoolbox_encoder_deps="videotoolbox VTCompressionSessionPrepareToEncodeFrames"
  2584. videotoolbox_encoder_suggest="vda_framework vt_bt2020"
  2585. vt_bt2020_deps="kCVImageBufferColorPrimaries_ITU_R_2020"
  2586. # demuxers / muxers
  2587. ac3_demuxer_select="ac3_parser"
  2588. asf_demuxer_select="riffdec"
  2589. asf_o_demuxer_select="riffdec"
  2590. asf_muxer_select="riffenc"
  2591. asf_stream_muxer_select="asf_muxer"
  2592. avi_demuxer_select="iso_media riffdec exif"
  2593. avi_muxer_select="riffenc"
  2594. avisynth_demuxer_deps="avisynth"
  2595. avisynth_demuxer_select="riffdec"
  2596. caf_demuxer_select="iso_media riffdec"
  2597. dash_muxer_select="mp4_muxer"
  2598. dirac_demuxer_select="dirac_parser"
  2599. dts_demuxer_select="dca_parser"
  2600. dtshd_demuxer_select="dca_parser"
  2601. dv_demuxer_select="dvprofile"
  2602. dv_muxer_select="dvprofile"
  2603. dxa_demuxer_select="riffdec"
  2604. eac3_demuxer_select="ac3_parser"
  2605. f4v_muxer_select="mov_muxer"
  2606. flac_demuxer_select="flac_parser"
  2607. hds_muxer_select="flv_muxer"
  2608. hls_muxer_select="mpegts_muxer"
  2609. image2_alias_pix_demuxer_select="image2_demuxer"
  2610. image2_brender_pix_demuxer_select="image2_demuxer"
  2611. ipod_muxer_select="mov_muxer"
  2612. ismv_muxer_select="mov_muxer"
  2613. libnut_demuxer_deps="libnut"
  2614. libnut_muxer_deps="libnut"
  2615. matroska_audio_muxer_select="matroska_muxer"
  2616. matroska_demuxer_select="iso_media riffdec"
  2617. matroska_demuxer_suggest="bzlib lzo zlib"
  2618. matroska_muxer_select="iso_media riffenc"
  2619. mmf_muxer_select="riffenc"
  2620. mov_demuxer_select="iso_media riffdec"
  2621. mov_demuxer_suggest="zlib"
  2622. mov_muxer_select="iso_media riffenc rtpenc_chain"
  2623. mp3_demuxer_select="mpegaudio_parser"
  2624. mp4_muxer_select="mov_muxer"
  2625. mpegts_demuxer_select="iso_media"
  2626. mpegts_muxer_select="adts_muxer latm_muxer"
  2627. mpegtsraw_demuxer_select="mpegts_demuxer"
  2628. mxf_d10_muxer_select="mxf_muxer"
  2629. mxf_opatom_muxer_select="mxf_muxer"
  2630. nut_muxer_select="riffenc"
  2631. nuv_demuxer_select="riffdec"
  2632. oga_muxer_select="ogg_muxer"
  2633. ogg_demuxer_select="dirac_parse"
  2634. opus_muxer_select="ogg_muxer"
  2635. psp_muxer_select="mov_muxer"
  2636. rtp_demuxer_select="sdp_demuxer"
  2637. rtpdec_select="asf_demuxer jpegtables mov_demuxer mpegts_demuxer rm_demuxer rtp_protocol srtp"
  2638. rtsp_demuxer_select="http_protocol rtpdec"
  2639. rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol rtpenc_chain"
  2640. sap_demuxer_select="sdp_demuxer"
  2641. sap_muxer_select="rtp_muxer rtp_protocol rtpenc_chain"
  2642. sdp_demuxer_select="rtpdec"
  2643. smoothstreaming_muxer_select="ismv_muxer"
  2644. spdif_muxer_select="aac_parser"
  2645. spx_muxer_select="ogg_muxer"
  2646. swf_demuxer_suggest="zlib"
  2647. tak_demuxer_select="tak_parser"
  2648. tg2_muxer_select="mov_muxer"
  2649. tgp_muxer_select="mov_muxer"
  2650. vobsub_demuxer_select="mpegps_demuxer"
  2651. w64_demuxer_select="wav_demuxer"
  2652. w64_muxer_select="wav_muxer"
  2653. wav_demuxer_select="riffdec"
  2654. wav_muxer_select="riffenc"
  2655. webm_muxer_select="iso_media riffenc"
  2656. webm_dash_manifest_demuxer_select="matroska_demuxer"
  2657. wtv_demuxer_select="mpegts_demuxer riffdec"
  2658. wtv_muxer_select="mpegts_muxer riffenc"
  2659. xmv_demuxer_select="riffdec"
  2660. xwma_demuxer_select="riffdec"
  2661. # indevs / outdevs
  2662. alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  2663. alsa_outdev_deps="alsa_asoundlib_h"
  2664. avfoundation_indev_extralibs="-framework CoreVideo -framework Foundation -framework AVFoundation -framework CoreMedia"
  2665. avfoundation_indev_select="avfoundation"
  2666. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  2667. caca_outdev_deps="libcaca"
  2668. decklink_indev_deps="decklink pthreads"
  2669. decklink_indev_extralibs="-lstdc++"
  2670. decklink_outdev_deps="decklink pthreads"
  2671. decklink_outdev_extralibs="-lstdc++"
  2672. dshow_indev_deps="IBaseFilter"
  2673. dshow_indev_extralibs="-lpsapi -lole32 -lstrmiids -luuid -loleaut32 -lshlwapi"
  2674. dv1394_indev_deps="dv1394"
  2675. dv1394_indev_select="dv_demuxer"
  2676. fbdev_indev_deps="linux_fb_h"
  2677. fbdev_outdev_deps="linux_fb_h"
  2678. gdigrab_indev_deps="CreateDIBSection"
  2679. gdigrab_indev_extralibs="-lgdi32"
  2680. gdigrab_indev_select="bmp_decoder"
  2681. iec61883_indev_deps="libiec61883"
  2682. jack_indev_deps="jack_jack_h"
  2683. jack_indev_deps_any="sem_timedwait dispatch_dispatch_h"
  2684. lavfi_indev_deps="avfilter"
  2685. libcdio_indev_deps="libcdio"
  2686. libdc1394_indev_deps="libdc1394"
  2687. libv4l2_indev_deps="libv4l2"
  2688. openal_indev_deps="openal"
  2689. opengl_outdev_deps="opengl"
  2690. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  2691. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  2692. pulse_indev_deps="libpulse"
  2693. pulse_outdev_deps="libpulse"
  2694. qtkit_indev_extralibs="-framework QTKit -framework Foundation -framework QuartzCore"
  2695. qtkit_indev_select="qtkit"
  2696. sdl_outdev_deps="sdl"
  2697. sndio_indev_deps="sndio_h"
  2698. sndio_outdev_deps="sndio_h"
  2699. v4l_indev_deps="linux_videodev_h"
  2700. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  2701. v4l2_outdev_deps_any="linux_videodev2_h sys_videoio_h"
  2702. vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
  2703. vfwcap_indev_extralibs="-lavicap32"
  2704. x11grab_indev_deps="x11grab"
  2705. x11grab_xcb_indev_deps="libxcb"
  2706. xv_outdev_deps="X11_extensions_Xvlib_h XvGetPortAttribute"
  2707. xv_outdev_extralibs="-lXv -lX11 -lXext"
  2708. # protocols
  2709. async_protocol_deps="threads"
  2710. bluray_protocol_deps="libbluray"
  2711. ffrtmpcrypt_protocol_deps="!librtmp_protocol"
  2712. ffrtmpcrypt_protocol_deps_any="gcrypt gmp openssl"
  2713. ffrtmpcrypt_protocol_select="tcp_protocol"
  2714. ffrtmphttp_protocol_deps="!librtmp_protocol"
  2715. ffrtmphttp_protocol_select="http_protocol"
  2716. ftp_protocol_select="tcp_protocol"
  2717. gopher_protocol_select="network"
  2718. http_protocol_select="tcp_protocol"
  2719. httpproxy_protocol_select="tcp_protocol"
  2720. https_protocol_select="tls_protocol"
  2721. icecast_protocol_select="http_protocol"
  2722. librtmp_protocol_deps="librtmp"
  2723. librtmpe_protocol_deps="librtmp"
  2724. librtmps_protocol_deps="librtmp"
  2725. librtmpt_protocol_deps="librtmp"
  2726. librtmpte_protocol_deps="librtmp"
  2727. libsmbclient_protocol_deps="libsmbclient gplv3"
  2728. libssh_protocol_deps="libssh"
  2729. mmsh_protocol_select="http_protocol"
  2730. mmst_protocol_select="network"
  2731. rtmp_protocol_deps="!librtmp_protocol"
  2732. rtmp_protocol_select="tcp_protocol"
  2733. rtmpe_protocol_select="ffrtmpcrypt_protocol"
  2734. rtmps_protocol_deps="!librtmp_protocol"
  2735. rtmps_protocol_select="tls_protocol"
  2736. rtmpt_protocol_select="ffrtmphttp_protocol"
  2737. rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
  2738. rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
  2739. rtp_protocol_select="udp_protocol"
  2740. sctp_protocol_deps="struct_sctp_event_subscribe struct_msghdr_msg_flags"
  2741. sctp_protocol_select="network"
  2742. srtp_protocol_select="rtp_protocol srtp"
  2743. tcp_protocol_select="network"
  2744. tls_gnutls_protocol_deps="gnutls !tls_schannel_protocol !tls_securetransport_protocol"
  2745. tls_gnutls_protocol_select="tcp_protocol"
  2746. tls_openssl_protocol_deps="openssl !tls_schannel_protocol !tls_securetransport_protocol !tls_gnutls_protocol"
  2747. tls_openssl_protocol_select="tcp_protocol"
  2748. tls_schannel_protocol_deps="schannel"
  2749. tls_schannel_protocol_select="tcp_protocol"
  2750. tls_securetransport_protocol_deps="securetransport"
  2751. tls_securetransport_protocol_select="tcp_protocol"
  2752. tls_protocol_deps_any="tls_schannel_protocol tls_securetransport_protocol tls_gnutls_protocol tls_openssl_protocol"
  2753. udp_protocol_select="network"
  2754. udplite_protocol_select="network"
  2755. unix_protocol_deps="sys_un_h"
  2756. unix_protocol_select="network"
  2757. # filters
  2758. afftfilt_filter_deps="avcodec"
  2759. afftfilt_filter_select="fft"
  2760. amovie_filter_deps="avcodec avformat"
  2761. aresample_filter_deps="swresample"
  2762. ass_filter_deps="libass"
  2763. asyncts_filter_deps="avresample"
  2764. atempo_filter_deps="avcodec"
  2765. atempo_filter_select="rdft"
  2766. azmq_filter_deps="libzmq"
  2767. blackframe_filter_deps="gpl"
  2768. boxblur_filter_deps="gpl"
  2769. bs2b_filter_deps="libbs2b"
  2770. colormatrix_filter_deps="gpl"
  2771. cover_rect_filter_deps="avcodec avformat gpl"
  2772. cropdetect_filter_deps="gpl"
  2773. delogo_filter_deps="gpl"
  2774. deshake_filter_select="pixelutils"
  2775. drawtext_filter_deps="libfreetype"
  2776. ebur128_filter_deps="gpl"
  2777. eq_filter_deps="gpl"
  2778. fftfilt_filter_deps="avcodec"
  2779. fftfilt_filter_select="rdft"
  2780. find_rect_filter_deps="avcodec avformat gpl"
  2781. firequalizer_filter_deps="avcodec"
  2782. firequalizer_filter_select="rdft"
  2783. flite_filter_deps="libflite"
  2784. framerate_filter_select="pixelutils"
  2785. frei0r_filter_deps="frei0r dlopen"
  2786. frei0r_src_filter_deps="frei0r dlopen"
  2787. fspp_filter_deps="gpl"
  2788. geq_filter_deps="gpl"
  2789. histeq_filter_deps="gpl"
  2790. hqdn3d_filter_deps="gpl"
  2791. interlace_filter_deps="gpl"
  2792. kerndeint_filter_deps="gpl"
  2793. ladspa_filter_deps="ladspa dlopen"
  2794. loudnorm_filter_deps="libebur128"
  2795. mcdeint_filter_deps="avcodec gpl"
  2796. movie_filter_deps="avcodec avformat"
  2797. mpdecimate_filter_deps="gpl"
  2798. mpdecimate_filter_select="pixelutils"
  2799. mptestsrc_filter_deps="gpl"
  2800. negate_filter_deps="lut_filter"
  2801. nnedi_filter_deps="gpl"
  2802. ocr_filter_deps="libtesseract"
  2803. ocv_filter_deps="libopencv"
  2804. owdenoise_filter_deps="gpl"
  2805. pan_filter_deps="swresample"
  2806. perspective_filter_deps="gpl"
  2807. phase_filter_deps="gpl"
  2808. pp7_filter_deps="gpl"
  2809. pp_filter_deps="gpl postproc"
  2810. pullup_filter_deps="gpl"
  2811. removelogo_filter_deps="avcodec avformat swscale"
  2812. repeatfields_filter_deps="gpl"
  2813. resample_filter_deps="avresample"
  2814. rubberband_filter_deps="librubberband"
  2815. sab_filter_deps="gpl swscale"
  2816. scale2ref_filter_deps="swscale"
  2817. scale_filter_deps="swscale"
  2818. select_filter_select="pixelutils"
  2819. showcqt_filter_deps="avcodec avformat swscale"
  2820. showcqt_filter_select="fft"
  2821. showfreqs_filter_deps="avcodec"
  2822. showfreqs_filter_select="fft"
  2823. showspectrum_filter_deps="avcodec"
  2824. showspectrum_filter_select="fft"
  2825. showspectrumpic_filter_deps="avcodec"
  2826. showspectrumpic_filter_select="fft"
  2827. smartblur_filter_deps="gpl swscale"
  2828. sofalizer_filter_deps="netcdf avcodec"
  2829. sofalizer_filter_select="fft"
  2830. spectrumsynth_filter_deps="avcodec"
  2831. spectrumsynth_filter_select="fft"
  2832. spp_filter_deps="gpl avcodec"
  2833. spp_filter_select="fft idctdsp fdctdsp me_cmp pixblockdsp"
  2834. stereo3d_filter_deps="gpl"
  2835. subtitles_filter_deps="avformat avcodec libass"
  2836. super2xsai_filter_deps="gpl"
  2837. pixfmts_super2xsai_test_deps="super2xsai_filter"
  2838. tinterlace_filter_deps="gpl"
  2839. tinterlace_merge_test_deps="tinterlace_filter"
  2840. tinterlace_pad_test_deps="tinterlace_filter"
  2841. uspp_filter_deps="gpl avcodec"
  2842. vidstabdetect_filter_deps="libvidstab"
  2843. vidstabtransform_filter_deps="libvidstab"
  2844. zmq_filter_deps="libzmq"
  2845. zoompan_filter_deps="swscale"
  2846. zscale_filter_deps="libzimg"
  2847. scale_vaapi_filter_deps="vaapi VAProcPipelineParameterBuffer"
  2848. # examples
  2849. avcodec_example_deps="avcodec avutil"
  2850. avio_dir_cmd="avformat avutil"
  2851. avio_reading="avformat avcodec avutil"
  2852. decoding_encoding_example_deps="avcodec avformat avutil"
  2853. demuxing_decoding_example_deps="avcodec avformat avutil"
  2854. extract_mvs_example_deps="avcodec avformat avutil"
  2855. filter_audio_example_deps="avfilter avutil"
  2856. filtering_audio_example_deps="avfilter avcodec avformat avutil"
  2857. filtering_video_example_deps="avfilter avcodec avformat avutil"
  2858. metadata_example_deps="avformat avutil"
  2859. muxing_example_deps="avcodec avformat avutil swscale"
  2860. qsvdec_example_deps="avcodec avutil libmfx h264_qsv_decoder vaapi_x11"
  2861. remuxing_example_deps="avcodec avformat avutil"
  2862. resampling_audio_example_deps="avutil swresample"
  2863. scaling_video_example_deps="avutil swscale"
  2864. transcode_aac_example_deps="avcodec avformat swresample"
  2865. transcoding_example_deps="avfilter avcodec avformat avutil"
  2866. # libraries, in linking order
  2867. avcodec_deps="avutil"
  2868. avdevice_deps="avformat avcodec avutil"
  2869. avfilter_deps="avutil"
  2870. avformat_deps="avcodec avutil"
  2871. avresample_deps="avutil"
  2872. postproc_deps="avutil gpl"
  2873. swresample_deps="avutil"
  2874. swscale_deps="avutil"
  2875. # programs
  2876. ffmpeg_deps="avcodec avfilter avformat swresample"
  2877. ffmpeg_select="aformat_filter anull_filter atrim_filter format_filter
  2878. null_filter
  2879. setpts_filter trim_filter"
  2880. ffplay_deps="avcodec avformat swscale swresample sdl"
  2881. ffplay_libs='$sdl_libs'
  2882. ffplay_select="rdft crop_filter transpose_filter hflip_filter vflip_filter rotate_filter"
  2883. ffprobe_deps="avcodec avformat"
  2884. ffserver_deps="avformat fork sarestart"
  2885. ffserver_select="ffm_muxer rtp_protocol rtsp_demuxer"
  2886. # documentation
  2887. podpages_deps="perl"
  2888. manpages_deps="perl pod2man"
  2889. htmlpages_deps="perl"
  2890. htmlpages_deps_any="makeinfo_html texi2html"
  2891. txtpages_deps="perl makeinfo"
  2892. doc_deps_any="manpages htmlpages podpages txtpages"
  2893. # default parameters
  2894. logfile="config.log"
  2895. # installation paths
  2896. prefix_default="/usr/local"
  2897. bindir_default='${prefix}/bin'
  2898. datadir_default='${prefix}/share/ffmpeg'
  2899. docdir_default='${prefix}/share/doc/ffmpeg'
  2900. incdir_default='${prefix}/include'
  2901. libdir_default='${prefix}/lib'
  2902. mandir_default='${prefix}/share/man'
  2903. # toolchain
  2904. ar_default="ar"
  2905. cc_default="gcc"
  2906. cxx_default="g++"
  2907. host_cc_default="gcc"
  2908. cp_f="cp -f"
  2909. doxygen_default="doxygen"
  2910. install="install"
  2911. ln_s_default="ln -s -f"
  2912. nm_default="nm -g"
  2913. objformat="elf"
  2914. pkg_config_default=pkg-config
  2915. ranlib_default="ranlib"
  2916. strip_default="strip"
  2917. version_script='--version-script'
  2918. yasmexe_default="yasm"
  2919. windres_default="windres"
  2920. # OS
  2921. target_os_default=$(tolower $(uname -s))
  2922. host_os=$target_os_default
  2923. # machine
  2924. if test "$target_os_default" = aix; then
  2925. arch_default=$(uname -p)
  2926. strip_default="strip -X32_64"
  2927. else
  2928. arch_default=$(uname -m)
  2929. fi
  2930. cpu="generic"
  2931. intrinsics="none"
  2932. # configurable options
  2933. enable $PROGRAM_LIST
  2934. enable $DOCUMENT_LIST
  2935. enable $EXAMPLE_LIST
  2936. enable $(filter_out avresample $LIBRARY_LIST)
  2937. enable stripping
  2938. enable asm
  2939. enable debug
  2940. enable doc
  2941. enable faan faandct faanidct
  2942. enable optimizations
  2943. enable runtime_cpudetect
  2944. enable safe_bitstream_reader
  2945. enable static
  2946. enable swscale_alpha
  2947. enable valgrind_backtrace
  2948. sws_max_filter_size_default=256
  2949. set_default sws_max_filter_size
  2950. # Enable platform codecs by default.
  2951. enable audiotoolbox
  2952. # Enable hwaccels by default.
  2953. enable d3d11va dxva2 vaapi vda vdpau videotoolbox_hwaccel xvmc
  2954. enable xlib
  2955. enable vda_framework videotoolbox videotoolbox_encoder
  2956. # build settings
  2957. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  2958. LIBPREF="lib"
  2959. LIBSUF=".a"
  2960. FULLNAME='$(NAME)$(BUILDSUF)'
  2961. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  2962. SLIBPREF="lib"
  2963. SLIBSUF=".so"
  2964. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  2965. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  2966. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  2967. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  2968. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
  2969. SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
  2970. VERSION_SCRIPT_POSTPROCESS_CMD="cat"
  2971. asflags_filter=echo
  2972. cflags_filter=echo
  2973. ldflags_filter=echo
  2974. AS_C='-c'
  2975. AS_O='-o $@'
  2976. CC_C='-c'
  2977. CC_E='-E -o $@'
  2978. CC_O='-o $@'
  2979. CXX_C='-c'
  2980. CXX_O='-o $@'
  2981. OBJCC_C='-c'
  2982. OBJCC_E='-E -o $@'
  2983. OBJCC_O='-o $@'
  2984. LD_O='-o $@'
  2985. LD_LIB='-l%'
  2986. LD_PATH='-L'
  2987. HOSTCC_C='-c'
  2988. HOSTCC_E='-E -o $@'
  2989. HOSTCC_O='-o $@'
  2990. HOSTLD_O='-o $@'
  2991. host_libs='-lm'
  2992. host_cflags_filter=echo
  2993. host_ldflags_filter=echo
  2994. target_path='$(CURDIR)'
  2995. # since the object filename is not given with the -MM flag, the compiler
  2996. # is only able to print the basename, and we must add the path ourselves
  2997. DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>/dev/null | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(@F),$(@D)/$(@F)," > $(@:.o=.d)'
  2998. DEPFLAGS='-MM'
  2999. # find source path
  3000. if test -f configure; then
  3001. source_path=.
  3002. else
  3003. source_path=$(cd $(dirname "$0"); pwd)
  3004. case "$source_path" in
  3005. *[[:blank:]]*) die "Out of tree builds are impossible with whitespace in source path." ;;
  3006. esac
  3007. test -e "$source_path/config.h" &&
  3008. die "Out of tree builds are impossible with config.h in source dir."
  3009. fi
  3010. for v in "$@"; do
  3011. r=${v#*=}
  3012. l=${v%"$r"}
  3013. r=$(sh_quote "$r")
  3014. FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
  3015. done
  3016. find_things(){
  3017. thing=$1
  3018. pattern=$2
  3019. file=$source_path/$3
  3020. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  3021. }
  3022. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  3023. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  3024. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  3025. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  3026. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  3027. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  3028. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  3029. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  3030. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  3031. find_things_extern(){
  3032. thing=$1
  3033. pattern=$2
  3034. file=$source_path/$3
  3035. sed -n "s/^[^#]*extern.*$pattern *ff_\([^ ]*\)_$thing;/\1_$thing/p" "$file"
  3036. }
  3037. BSF_LIST=$(find_things_extern bsf AVBitStreamFilter libavcodec/bitstream_filters.c)
  3038. PROTOCOL_LIST=$(find_things_extern protocol URLProtocol libavformat/protocols.c)
  3039. ALL_COMPONENTS="
  3040. $BSF_LIST
  3041. $DECODER_LIST
  3042. $DEMUXER_LIST
  3043. $ENCODER_LIST
  3044. $FILTER_LIST
  3045. $HWACCEL_LIST
  3046. $INDEV_LIST
  3047. $MUXER_LIST
  3048. $OUTDEV_LIST
  3049. $PARSER_LIST
  3050. $PROTOCOL_LIST
  3051. "
  3052. for n in $COMPONENT_LIST; do
  3053. v=$(toupper ${n%s})_LIST
  3054. eval enable \$$v
  3055. eval ${n}_if_any="\$$v"
  3056. done
  3057. enable $ARCH_EXT_LIST
  3058. die_unknown(){
  3059. echo "Unknown option \"$1\"."
  3060. echo "See $0 --help for available options."
  3061. exit 1
  3062. }
  3063. print_in_columns() {
  3064. cols=$(expr $ncols / 24)
  3065. cat | tr ' ' '\n' | sort | pr -r "-$cols" -w $ncols -t
  3066. }
  3067. show_list() {
  3068. suffix=_$1
  3069. shift
  3070. echo $* | sed s/$suffix//g | print_in_columns
  3071. exit 0
  3072. }
  3073. rand_list(){
  3074. IFS=', '
  3075. set -- $*
  3076. unset IFS
  3077. for thing; do
  3078. comp=${thing%:*}
  3079. prob=${thing#$comp}
  3080. prob=${prob#:}
  3081. is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
  3082. echo "prob ${prob:-0.5}"
  3083. printf '%s\n' $comp
  3084. done
  3085. }
  3086. do_random(){
  3087. action=$1
  3088. shift
  3089. random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
  3090. $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
  3091. }
  3092. for opt do
  3093. optval="${opt#*=}"
  3094. case "$opt" in
  3095. --extra-ldflags=*)
  3096. add_ldflags $optval
  3097. ;;
  3098. --extra-ldexeflags=*)
  3099. add_ldexeflags $optval
  3100. ;;
  3101. --extra-ldlibflags=*)
  3102. add_ldlibflags $optval
  3103. ;;
  3104. --extra-libs=*)
  3105. add_extralibs $optval
  3106. ;;
  3107. --disable-devices)
  3108. disable $INDEV_LIST $OUTDEV_LIST
  3109. ;;
  3110. --enable-debug=*)
  3111. debuglevel="$optval"
  3112. ;;
  3113. --disable-programs)
  3114. disable $PROGRAM_LIST
  3115. ;;
  3116. --disable-everything)
  3117. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  3118. ;;
  3119. --disable-all)
  3120. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  3121. disable $LIBRARY_LIST $PROGRAM_LIST doc
  3122. enable avutil
  3123. ;;
  3124. --enable-random|--disable-random)
  3125. action=${opt%%-random}
  3126. do_random ${action#--} $COMPONENT_LIST
  3127. ;;
  3128. --enable-random=*|--disable-random=*)
  3129. action=${opt%%-random=*}
  3130. do_random ${action#--} $optval
  3131. ;;
  3132. --enable-*=*|--disable-*=*)
  3133. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  3134. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  3135. eval list=\$$(toupper $thing)_LIST
  3136. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  3137. list=$(filter "$name" $list)
  3138. [ "$list" = "" ] && warn "Option $opt did not match anything"
  3139. $action $list
  3140. ;;
  3141. --enable-?*|--disable-?*)
  3142. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  3143. if is_in $option $COMPONENT_LIST; then
  3144. test $action = disable && action=unset
  3145. eval $action \$$(toupper ${option%s})_LIST
  3146. elif is_in $option $CMDLINE_SELECT; then
  3147. $action $option
  3148. else
  3149. die_unknown $opt
  3150. fi
  3151. ;;
  3152. --list-*)
  3153. NAME="${opt#--list-}"
  3154. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  3155. NAME=${NAME%s}
  3156. eval show_list $NAME \$$(toupper $NAME)_LIST
  3157. ;;
  3158. --help|-h) show_help
  3159. ;;
  3160. --fatal-warnings) enable fatal_warnings
  3161. ;;
  3162. *)
  3163. optname="${opt%%=*}"
  3164. optname="${optname#--}"
  3165. optname=$(echo "$optname" | sed 's/-/_/g')
  3166. if is_in $optname $CMDLINE_SET; then
  3167. eval $optname='$optval'
  3168. elif is_in $optname $CMDLINE_APPEND; then
  3169. append $optname "$optval"
  3170. else
  3171. die_unknown $opt
  3172. fi
  3173. ;;
  3174. esac
  3175. done
  3176. for e in $env; do
  3177. eval "export $e"
  3178. done
  3179. disabled logging && logfile=/dev/null
  3180. # Disable all the library-specific components if the library itself
  3181. # is disabled, see AVCODEC_LIST and following _LIST variables.
  3182. disable_components(){
  3183. disabled ${1} && disable $(
  3184. eval components="\$$(toupper ${1})_COMPONENTS"
  3185. map 'eval echo \${$(toupper ${v%s})_LIST}' $components
  3186. )
  3187. }
  3188. map 'disable_components $v' $LIBRARY_LIST
  3189. echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
  3190. set >> $logfile
  3191. test -n "$valgrind" && toolchain="valgrind-memcheck"
  3192. case "$toolchain" in
  3193. *-asan)
  3194. cc_default="${toolchain%-asan}"
  3195. add_cflags -fsanitize=address
  3196. add_ldflags -fsanitize=address
  3197. ;;
  3198. *-msan)
  3199. cc_default="${toolchain%-msan}"
  3200. add_cflags -fsanitize=memory -fsanitize-memory-track-origins
  3201. add_ldflags -fsanitize=memory
  3202. ;;
  3203. *-tsan)
  3204. cc_default="${toolchain%-tsan}"
  3205. add_cflags -fsanitize=thread -pie
  3206. add_ldflags -fsanitize=thread -pie
  3207. case "$toolchain" in
  3208. gcc-tsan)
  3209. add_cflags -fPIC
  3210. add_ldflags -fPIC
  3211. ;;
  3212. esac
  3213. ;;
  3214. *-usan)
  3215. cc_default="${toolchain%-usan}"
  3216. add_cflags -fsanitize=undefined
  3217. add_ldflags -fsanitize=undefined
  3218. ;;
  3219. valgrind-*)
  3220. target_exec_default="valgrind"
  3221. case "$toolchain" in
  3222. valgrind-massif)
  3223. target_exec_args="--tool=massif --alloc-fn=av_malloc --alloc-fn=av_mallocz --alloc-fn=av_calloc --alloc-fn=av_fast_padded_malloc --alloc-fn=av_fast_malloc --alloc-fn=av_realloc_f --alloc-fn=av_fast_realloc --alloc-fn=av_realloc"
  3224. ;;
  3225. valgrind-memcheck)
  3226. target_exec_args="--error-exitcode=1 --malloc-fill=0x2a --track-origins=yes --leak-check=full --gen-suppressions=all --suppressions=$source_path/tests/fate-valgrind.supp"
  3227. ;;
  3228. esac
  3229. ;;
  3230. msvc)
  3231. # Check whether the current MSVC version needs the C99 converter.
  3232. # From MSVC 2013 (compiler major version 18) onwards, it does actually
  3233. # support enough of C99 to build ffmpeg. Default to the new
  3234. # behaviour if the regexp was unable to match anything, since this
  3235. # successfully parses the version number of existing supported
  3236. # versions that require the converter (MSVC 2010 and 2012).
  3237. cl_major_ver=$(cl 2>&1 | sed -n 's/.*Version \([[:digit:]]\{1,\}\)\..*/\1/p')
  3238. if [ -z "$cl_major_ver" ] || [ $cl_major_ver -ge 18 ]; then
  3239. cc_default="cl"
  3240. else
  3241. cc_default="c99wrap cl"
  3242. fi
  3243. ld_default="$source_path/compat/windows/mslink"
  3244. nm_default="dumpbin -symbols"
  3245. ar_default="lib"
  3246. case "$arch" in
  3247. arm*)
  3248. as_default="armasm"
  3249. ;;
  3250. esac
  3251. target_os_default="win32"
  3252. # Use a relative path for TMPDIR. This makes sure all the
  3253. # ffconf temp files are written with a relative path, avoiding
  3254. # issues with msys/win32 path conversion for MSVC parameters
  3255. # such as -Fo<file> or -out:<file>.
  3256. TMPDIR=.
  3257. ;;
  3258. icl)
  3259. cc_default="icl"
  3260. ld_default="xilink"
  3261. nm_default="dumpbin -symbols"
  3262. ar_default="xilib"
  3263. target_os_default="win32"
  3264. TMPDIR=.
  3265. ;;
  3266. gcov)
  3267. add_cflags -fprofile-arcs -ftest-coverage
  3268. add_ldflags -fprofile-arcs -ftest-coverage
  3269. ;;
  3270. llvm-cov)
  3271. add_cflags -fprofile-arcs -ftest-coverage
  3272. add_ldflags --coverage
  3273. ;;
  3274. hardened)
  3275. add_cppflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
  3276. add_cflags -fno-strict-overflow -fstack-protector-all
  3277. add_ldflags -Wl,-z,relro -Wl,-z,now
  3278. ;;
  3279. ?*)
  3280. die "Unknown toolchain $toolchain"
  3281. ;;
  3282. esac
  3283. test -n "$cross_prefix" && enable cross_compile
  3284. if enabled cross_compile; then
  3285. test -n "$arch" && test -n "$target_os" ||
  3286. die "Must specify target arch and OS when cross-compiling"
  3287. fi
  3288. ar_default="${cross_prefix}${ar_default}"
  3289. cc_default="${cross_prefix}${cc_default}"
  3290. cxx_default="${cross_prefix}${cxx_default}"
  3291. nm_default="${cross_prefix}${nm_default}"
  3292. pkg_config_default="${cross_prefix}${pkg_config_default}"
  3293. if ${cross_prefix}${ranlib_default} 2>&1 | grep -q "\-D "; then
  3294. ranlib_default="${cross_prefix}${ranlib_default} -D"
  3295. else
  3296. ranlib_default="${cross_prefix}${ranlib_default}"
  3297. fi
  3298. strip_default="${cross_prefix}${strip_default}"
  3299. windres_default="${cross_prefix}${windres_default}"
  3300. sysinclude_default="${sysroot}/usr/include"
  3301. set_default arch cc cxx doxygen pkg_config ranlib strip sysinclude \
  3302. target_exec target_os yasmexe
  3303. enabled cross_compile || host_cc_default=$cc
  3304. set_default host_cc
  3305. pkg_config_fail_message=""
  3306. if ! $pkg_config --version >/dev/null 2>&1; then
  3307. warn "$pkg_config not found, library detection may fail."
  3308. pkg_config=false
  3309. elif is_in -static $cc $LDFLAGS && ! is_in --static $pkg_config $pkg_config_flags; then
  3310. pkg_config_fail_message="
  3311. Note: When building a static binary, add --pkg-config-flags=\"--static\"."
  3312. fi
  3313. if test $doxygen != $doxygen_default && \
  3314. ! $doxygen --version >/dev/null 2>&1; then
  3315. warn "Specified doxygen \"$doxygen\" not found, API documentation will fail to build."
  3316. fi
  3317. exesuf() {
  3318. case $1 in
  3319. mingw32*|mingw64*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
  3320. esac
  3321. }
  3322. EXESUF=$(exesuf $target_os)
  3323. HOSTEXESUF=$(exesuf $host_os)
  3324. # set temporary file name
  3325. : ${TMPDIR:=$TEMPDIR}
  3326. : ${TMPDIR:=$TMP}
  3327. : ${TMPDIR:=/tmp}
  3328. if [ -n "$tempprefix" ] ; then
  3329. mktemp(){
  3330. echo $tempprefix.${HOSTNAME}.${UID}
  3331. }
  3332. elif ! check_cmd mktemp -u XXXXXX; then
  3333. # simple replacement for missing mktemp
  3334. # NOT SAFE FOR GENERAL USE
  3335. mktemp(){
  3336. echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
  3337. }
  3338. fi
  3339. tmpfile(){
  3340. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  3341. (set -C; exec > $tmp) 2>/dev/null ||
  3342. die "Unable to create temporary file in $TMPDIR."
  3343. append TMPFILES $tmp
  3344. eval $1=$tmp
  3345. }
  3346. trap 'rm -f -- $TMPFILES' EXIT
  3347. tmpfile TMPASM .asm
  3348. tmpfile TMPC .c
  3349. tmpfile TMPCPP .cpp
  3350. tmpfile TMPE $EXESUF
  3351. tmpfile TMPH .h
  3352. tmpfile TMPM .m
  3353. tmpfile TMPO .o
  3354. tmpfile TMPS .S
  3355. tmpfile TMPSH .sh
  3356. tmpfile TMPV .ver
  3357. unset -f mktemp
  3358. chmod +x $TMPE
  3359. # make sure we can execute files in $TMPDIR
  3360. cat > $TMPSH 2>> $logfile <<EOF
  3361. #! /bin/sh
  3362. EOF
  3363. chmod +x $TMPSH >> $logfile 2>&1
  3364. if ! $TMPSH >> $logfile 2>&1; then
  3365. cat <<EOF
  3366. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  3367. variable to another directory and make sure that it is not mounted noexec.
  3368. EOF
  3369. die "Sanity test failed."
  3370. fi
  3371. armasm_flags(){
  3372. for flag; do
  3373. case $flag in
  3374. # Filter out MSVC cl.exe options from cflags that shouldn't
  3375. # be passed to gas-preprocessor
  3376. -M[TD]*) ;;
  3377. *) echo $flag ;;
  3378. esac
  3379. done
  3380. }
  3381. ccc_flags(){
  3382. for flag; do
  3383. case $flag in
  3384. -std=c99) echo -c99 ;;
  3385. -mcpu=*) echo -arch ${flag#*=} ;;
  3386. -mieee) echo -ieee ;;
  3387. -O*|-fast) echo $flag ;;
  3388. -fno-math-errno) echo -assume nomath_errno ;;
  3389. -g) echo -g3 ;;
  3390. -Wall) echo -msg_enable level2 ;;
  3391. -Wno-pointer-sign) echo -msg_disable ptrmismatch1 ;;
  3392. -Wl,*) echo $flag ;;
  3393. -f*|-W*) ;;
  3394. *) echo $flag ;;
  3395. esac
  3396. done
  3397. }
  3398. cparser_flags(){
  3399. for flag; do
  3400. case $flag in
  3401. -Wno-switch) echo -Wno-switch-enum ;;
  3402. -Wno-format-zero-length) ;;
  3403. -Wdisabled-optimization) ;;
  3404. -Wno-pointer-sign) echo -Wno-other ;;
  3405. *) echo $flag ;;
  3406. esac
  3407. done
  3408. }
  3409. msvc_common_flags(){
  3410. for flag; do
  3411. case $flag in
  3412. # In addition to specifying certain flags under the compiler
  3413. # specific filters, they must be specified here as well or else the
  3414. # generic catch all at the bottom will print the original flag.
  3415. -Wall) ;;
  3416. -std=c99) ;;
  3417. # Common flags
  3418. -fomit-frame-pointer) ;;
  3419. -g) echo -Z7 ;;
  3420. -fno-math-errno) ;;
  3421. -fno-common) ;;
  3422. -fno-signed-zeros) ;;
  3423. -fPIC) ;;
  3424. -mthumb) ;;
  3425. -march=*) ;;
  3426. -lz) echo zlib.lib ;;
  3427. -lavifil32) echo vfw32.lib ;;
  3428. -lavicap32) echo vfw32.lib user32.lib ;;
  3429. -lx264) echo libx264.lib ;;
  3430. -l*) echo ${flag#-l}.lib ;;
  3431. -LARGEADDRESSAWARE) echo $flag ;;
  3432. -L*) echo -libpath:${flag#-L} ;;
  3433. *) echo $flag ;;
  3434. esac
  3435. done
  3436. }
  3437. msvc_flags(){
  3438. msvc_common_flags "$@"
  3439. for flag; do
  3440. case $flag in
  3441. -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
  3442. -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
  3443. -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
  3444. -wd4307 \
  3445. -wd4273 -wd4554 -wd4701 ;;
  3446. esac
  3447. done
  3448. }
  3449. icl_flags(){
  3450. msvc_common_flags "$@"
  3451. for flag; do
  3452. case $flag in
  3453. # Despite what Intel's documentation says -Wall, which is supported
  3454. # on Windows, does enable remarks so disable them here.
  3455. -Wall) echo $flag -Qdiag-disable:remark ;;
  3456. -std=c99) echo -Qstd=c99 ;;
  3457. -flto) echo -ipo ;;
  3458. esac
  3459. done
  3460. }
  3461. icc_flags(){
  3462. for flag; do
  3463. case $flag in
  3464. -flto) echo -ipo ;;
  3465. *) echo $flag ;;
  3466. esac
  3467. done
  3468. }
  3469. pgi_flags(){
  3470. for flag; do
  3471. case $flag in
  3472. -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
  3473. -fomit-frame-pointer) echo -Mnoframe ;;
  3474. -g) echo -gopt ;;
  3475. *) echo $flag ;;
  3476. esac
  3477. done
  3478. }
  3479. suncc_flags(){
  3480. for flag; do
  3481. case $flag in
  3482. -march=*|-mcpu=*)
  3483. case "${flag#*=}" in
  3484. native) echo -xtarget=native ;;
  3485. v9|niagara) echo -xarch=sparc ;;
  3486. ultrasparc) echo -xarch=sparcvis ;;
  3487. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  3488. i586|pentium) echo -xchip=pentium ;;
  3489. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  3490. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  3491. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  3492. pentium4*) echo -xtarget=pentium4 ;;
  3493. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  3494. *-sse3) echo -xarch=sse3 ;;
  3495. core2) echo -xarch=ssse3 -xchip=core2 ;;
  3496. bonnell) echo -xarch=ssse3 ;;
  3497. corei7|nehalem) echo -xtarget=nehalem ;;
  3498. westmere) echo -xtarget=westmere ;;
  3499. silvermont) echo -xarch=sse4_2 ;;
  3500. corei7-avx|sandybridge) echo -xtarget=sandybridge ;;
  3501. core-avx*|ivybridge|haswell|broadwell)
  3502. echo -xarch=avx ;;
  3503. amdfam10|barcelona) echo -xtarget=barcelona ;;
  3504. btver1) echo -xarch=amdsse4a ;;
  3505. btver2|bdver*) echo -xarch=avx ;;
  3506. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  3507. k8|opteron|athlon64|athlon-fx)
  3508. echo -xarch=sse2a ;;
  3509. athlon*) echo -xarch=pentium_proa ;;
  3510. esac
  3511. ;;
  3512. -std=c99) echo -xc99 ;;
  3513. -fomit-frame-pointer) echo -xregs=frameptr ;;
  3514. -fPIC) echo -KPIC -xcode=pic32 ;;
  3515. -W*,*) echo $flag ;;
  3516. -f*-*|-W*|-mimpure-text) ;;
  3517. -shared) echo -G ;;
  3518. *) echo $flag ;;
  3519. esac
  3520. done
  3521. }
  3522. tms470_flags(){
  3523. for flag; do
  3524. case $flag in
  3525. -march=*|-mcpu=*)
  3526. case "${flag#*=}" in
  3527. armv7-a|cortex-a*) echo -mv=7a8 ;;
  3528. armv7-r|cortex-r*) echo -mv=7r4 ;;
  3529. armv7-m|cortex-m*) echo -mv=7m3 ;;
  3530. armv6*|arm11*) echo -mv=6 ;;
  3531. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  3532. echo -mv=5e ;;
  3533. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  3534. esac
  3535. ;;
  3536. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  3537. -mfpu=vfp) echo --float_support=vfpv2 ;;
  3538. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  3539. -mfpu=vfpv3-d16) echo --float_support=vfpv3d16 ;;
  3540. -msoft-float) echo --float_support=vfplib ;;
  3541. -O[0-3]|-mf=*) echo $flag ;;
  3542. -g) echo -g -mn ;;
  3543. -pds=*) echo $flag ;;
  3544. -D*|-I*) echo $flag ;;
  3545. --gcc|--abi=*) echo $flag ;;
  3546. -me) echo $flag ;;
  3547. esac
  3548. done
  3549. }
  3550. probe_cc(){
  3551. pfx=$1
  3552. _cc=$2
  3553. first=$3
  3554. unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
  3555. unset _ld_o _ldflags _ld_lib _ld_path
  3556. unset _depflags _DEPCMD _DEPFLAGS
  3557. _flags_filter=echo
  3558. if $_cc --version 2>&1 | grep -q '^GNU assembler'; then
  3559. true # no-op to avoid reading stdin in following checks
  3560. elif $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
  3561. _type=llvm_gcc
  3562. gcc_extra_ver=$(expr "$($_cc --version 2>/dev/null | head -n1)" : '.*\((.*)\)')
  3563. _ident="llvm-gcc $($_cc -dumpversion 2>/dev/null) $gcc_extra_ver"
  3564. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  3565. _cflags_speed='-O3'
  3566. _cflags_size='-Os'
  3567. elif $_cc -v 2>&1 | grep -qi ^gcc; then
  3568. _type=gcc
  3569. gcc_version=$($_cc --version | head -n1)
  3570. gcc_basever=$($_cc -dumpversion)
  3571. gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
  3572. gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
  3573. _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
  3574. case $gcc_basever in
  3575. 2) ;;
  3576. 2.*) ;;
  3577. *) _depflags='-MMD -MF $(@:.o=.d) -MT $@' ;;
  3578. esac
  3579. if [ "$first" = true ]; then
  3580. case $gcc_basever in
  3581. 4.2*)
  3582. warn "gcc 4.2 is outdated and may miscompile FFmpeg. Please use a newer compiler." ;;
  3583. esac
  3584. fi
  3585. _cflags_speed='-O3'
  3586. _cflags_size='-Os'
  3587. elif $_cc --version 2>/dev/null | grep -q ^icc; then
  3588. _type=icc
  3589. _ident=$($_cc --version | head -n1)
  3590. _depflags='-MMD'
  3591. _cflags_speed='-O3'
  3592. _cflags_size='-Os'
  3593. _cflags_noopt='-O1'
  3594. _flags_filter=icc_flags
  3595. elif $_cc -v 2>&1 | grep -q xlc; then
  3596. _type=xlc
  3597. _ident=$($_cc -qversion 2>/dev/null | head -n1)
  3598. _cflags_speed='-O5'
  3599. _cflags_size='-O5 -qcompact'
  3600. elif $_cc -V 2>/dev/null | grep -q Compaq; then
  3601. _type=ccc
  3602. _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
  3603. _DEPFLAGS='-M'
  3604. _cflags_speed='-fast'
  3605. _cflags_size='-O1'
  3606. _flags_filter=ccc_flags
  3607. elif $_cc --vsn 2>/dev/null | grep -Eq "ARM (C/C\+\+ )?Compiler"; then
  3608. test -d "$sysroot" || die "No valid sysroot specified."
  3609. _type=armcc
  3610. _ident=$($_cc --vsn | grep -i build | head -n1 | sed 's/.*: //')
  3611. armcc_conf="$PWD/armcc.conf"
  3612. $_cc --arm_linux_configure \
  3613. --arm_linux_config_file="$armcc_conf" \
  3614. --configure_sysroot="$sysroot" \
  3615. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  3616. die "Error creating armcc configuration file."
  3617. $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
  3618. _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
  3619. as_default="${cross_prefix}gcc"
  3620. _depflags='-MMD'
  3621. _cflags_speed='-O3'
  3622. _cflags_size='-Os'
  3623. elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
  3624. _type=tms470
  3625. _ident=$($_cc -version | head -n1 | tr -s ' ')
  3626. _flags='--gcc --abi=eabi -me'
  3627. _cc_e='-ppl -fe=$@'
  3628. _cc_o='-fe=$@'
  3629. _depflags='-ppa -ppd=$(@:.o=.d)'
  3630. _cflags_speed='-O3 -mf=5'
  3631. _cflags_size='-O3 -mf=2'
  3632. _flags_filter=tms470_flags
  3633. elif $_cc -v 2>&1 | grep -q clang; then
  3634. _type=clang
  3635. _ident=$($_cc --version 2>/dev/null | head -n1)
  3636. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  3637. _cflags_speed='-O3'
  3638. _cflags_size='-Os'
  3639. elif $_cc -V 2>&1 | grep -q Sun; then
  3640. _type=suncc
  3641. _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
  3642. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  3643. _DEPFLAGS='-xM1 -xc99'
  3644. _ldflags='-std=c99'
  3645. _cflags_speed='-O5'
  3646. _cflags_size='-O5 -xspace'
  3647. _flags_filter=suncc_flags
  3648. elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
  3649. _type=pathscale
  3650. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  3651. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  3652. _cflags_speed='-O2'
  3653. _cflags_size='-Os'
  3654. _flags_filter='filter_out -Wdisabled-optimization'
  3655. elif $_cc -v 2>&1 | grep -q Open64; then
  3656. _type=open64
  3657. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  3658. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  3659. _cflags_speed='-O2'
  3660. _cflags_size='-Os'
  3661. _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
  3662. elif $_cc -V 2>&1 | grep -q Portland; then
  3663. _type=pgi
  3664. _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
  3665. opt_common='-alias=ansi -Mdse -Mlre -Mpre'
  3666. _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
  3667. _cflags_size="-O2 -Munroll=c:1 $opt_common"
  3668. _cflags_noopt="-O"
  3669. _flags_filter=pgi_flags
  3670. elif $_cc 2>&1 | grep -q 'Microsoft.*ARM.*Assembler'; then
  3671. _type=armasm
  3672. _ident=$($_cc | head -n1)
  3673. # 4509: "This form of conditional instruction is deprecated"
  3674. _flags="-nologo -ignore 4509"
  3675. _flags_filter=armasm_flags
  3676. elif $_cc 2>&1 | grep -q Intel; then
  3677. _type=icl
  3678. _ident=$($_cc 2>&1 | head -n1)
  3679. _depflags='-QMMD -QMF$(@:.o=.d) -QMT$@'
  3680. # Not only is O3 broken on 13.x+ but it is slower on all previous
  3681. # versions (tested) as well.
  3682. _cflags_speed="-O2"
  3683. _cflags_size="-O1 -Oi" # -O1 without -Oi miscompiles stuff
  3684. if $_cc 2>&1 | grep -q Linker; then
  3685. _ld_o='-out:$@'
  3686. else
  3687. _ld_o='-Fe$@'
  3688. fi
  3689. _cc_o='-Fo$@'
  3690. _cc_e='-P'
  3691. _flags_filter=icl_flags
  3692. _ld_lib='lib%.a'
  3693. _ld_path='-libpath:'
  3694. # -Qdiag-error to make icl error when seeing certain unknown arguments
  3695. _flags='-nologo -Qdiag-error:4044,10157'
  3696. # -Qvec- -Qsimd- to prevent miscompilation, -GS, fp:precise for consistency
  3697. # with MSVC which enables it by default.
  3698. _cflags='-D_USE_MATH_DEFINES -Qms0 -Qvec- -Qsimd- -GS -fp:precise'
  3699. disable stripping
  3700. elif $_cc -nologo- 2>&1 | grep -q Microsoft; then
  3701. _type=msvc
  3702. _ident=$($_cc 2>&1 | head -n1)
  3703. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
  3704. _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
  3705. _cflags_speed="-O2"
  3706. _cflags_size="-O1"
  3707. if $_cc -nologo- 2>&1 | grep -q Linker; then
  3708. _ld_o='-out:$@'
  3709. else
  3710. _ld_o='-Fe$@'
  3711. fi
  3712. _cc_o='-Fo$@'
  3713. _cc_e='-P -Fi$@'
  3714. _flags_filter=msvc_flags
  3715. _ld_lib='lib%.a'
  3716. _ld_path='-libpath:'
  3717. _flags='-nologo'
  3718. _cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_WARNINGS'
  3719. disable stripping
  3720. elif $_cc --version 2>/dev/null | grep -q ^cparser; then
  3721. _type=cparser
  3722. _ident=$($_cc --version | head -n1)
  3723. _depflags='-MMD'
  3724. _cflags_speed='-O4'
  3725. _cflags_size='-O2'
  3726. _flags_filter=cparser_flags
  3727. fi
  3728. eval ${pfx}_type=\$_type
  3729. eval ${pfx}_ident=\$_ident
  3730. }
  3731. set_ccvars(){
  3732. eval ${1}_C=\${_cc_c-\${${1}_C}}
  3733. eval ${1}_E=\${_cc_e-\${${1}_E}}
  3734. eval ${1}_O=\${_cc_o-\${${1}_O}}
  3735. if [ -n "$_depflags" ]; then
  3736. eval ${1}_DEPFLAGS=\$_depflags
  3737. else
  3738. eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
  3739. eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
  3740. eval DEP${1}FLAGS=\$_flags
  3741. fi
  3742. }
  3743. probe_cc cc "$cc" "true"
  3744. cflags_filter=$_flags_filter
  3745. cflags_speed=$_cflags_speed
  3746. cflags_size=$_cflags_size
  3747. cflags_noopt=$_cflags_noopt
  3748. add_cflags $_flags $_cflags
  3749. cc_ldflags=$_ldflags
  3750. set_ccvars CC
  3751. probe_cc hostcc "$host_cc"
  3752. host_cflags_filter=$_flags_filter
  3753. add_host_cflags $_flags $_cflags
  3754. set_ccvars HOSTCC
  3755. test -n "$cc_type" && enable $cc_type ||
  3756. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  3757. : ${as_default:=$cc}
  3758. : ${objcc_default:=$cc}
  3759. : ${dep_cc_default:=$cc}
  3760. : ${ld_default:=$cc}
  3761. : ${host_ld_default:=$host_cc}
  3762. set_default ar as objcc dep_cc ld ln_s host_ld windres
  3763. probe_cc as "$as"
  3764. asflags_filter=$_flags_filter
  3765. add_asflags $_flags $_cflags
  3766. set_ccvars AS
  3767. probe_cc objcc "$objcc"
  3768. objcflags_filter=$_flags_filter
  3769. add_objcflags $_flags $_cflags
  3770. set_ccvars OBJC
  3771. probe_cc ld "$ld"
  3772. ldflags_filter=$_flags_filter
  3773. add_ldflags $_flags $_ldflags
  3774. test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
  3775. LD_O=${_ld_o-$LD_O}
  3776. LD_LIB=${_ld_lib-$LD_LIB}
  3777. LD_PATH=${_ld_path-$LD_PATH}
  3778. probe_cc hostld "$host_ld"
  3779. host_ldflags_filter=$_flags_filter
  3780. add_host_ldflags $_flags $_ldflags
  3781. HOSTLD_O=${_ld_o-$HOSTLD_O}
  3782. if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
  3783. probe_cc depcc "$dep_cc"
  3784. CCDEP=${_DEPCMD:-$DEPCMD}
  3785. CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
  3786. DEPCCFLAGS=$_flags
  3787. fi
  3788. if $ar 2>&1 | grep -q Microsoft; then
  3789. arflags="-nologo"
  3790. ar_o='-out:$@'
  3791. elif $ar 2>&1 | grep -q 'Texas Instruments'; then
  3792. arflags="rq"
  3793. ar_o='$@'
  3794. elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
  3795. arflags='-Xany -r -c'
  3796. ar_o='$@'
  3797. elif $ar 2>&1 | grep -q "\[D\] "; then
  3798. arflags="rcD"
  3799. ar_o='$@'
  3800. else
  3801. arflags="rc"
  3802. ar_o='$@'
  3803. fi
  3804. add_cflags $extra_cflags
  3805. add_cxxflags $extra_cxxflags
  3806. add_objcflags $extra_objcflags
  3807. add_asflags $extra_cflags
  3808. if test -n "$sysroot"; then
  3809. case "$cc_type" in
  3810. gcc|llvm_gcc|clang)
  3811. add_cppflags --sysroot="$sysroot"
  3812. add_ldflags --sysroot="$sysroot"
  3813. # On Darwin --sysroot may be ignored, -isysroot always affects headers and linking
  3814. add_cppflags -isysroot "$sysroot"
  3815. add_ldflags -isysroot "$sysroot"
  3816. ;;
  3817. tms470)
  3818. add_cppflags -I"$sysinclude"
  3819. add_ldflags --sysroot="$sysroot"
  3820. ;;
  3821. esac
  3822. fi
  3823. if test "$cpu" = host; then
  3824. enabled cross_compile &&
  3825. die "--cpu=host makes no sense when cross-compiling."
  3826. case "$cc_type" in
  3827. gcc|llvm_gcc)
  3828. check_native(){
  3829. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  3830. sed -n "/cc1.*$1=/{
  3831. s/.*$1=\\([^ ]*\\).*/\\1/
  3832. p
  3833. q
  3834. }" $TMPE
  3835. }
  3836. cpu=$(check_native -march || check_native -mcpu)
  3837. ;;
  3838. clang)
  3839. check_native(){
  3840. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  3841. sed -n "/cc1.*-target-cpu /{
  3842. s/.*-target-cpu \\([^ ]*\\).*/\\1/
  3843. p
  3844. q
  3845. }" $TMPE
  3846. }
  3847. cpu=$(check_native -march)
  3848. ;;
  3849. esac
  3850. test "${cpu:-host}" = host &&
  3851. die "--cpu=host not supported with compiler $cc"
  3852. fi
  3853. # Deal with common $arch aliases
  3854. case "$arch" in
  3855. aarch64|arm64)
  3856. arch="aarch64"
  3857. ;;
  3858. arm*|iPad*|iPhone*)
  3859. arch="arm"
  3860. ;;
  3861. mips*|IP*)
  3862. case "$arch" in
  3863. *el)
  3864. add_cppflags -EL
  3865. add_ldflags -EL
  3866. ;;
  3867. *eb)
  3868. add_cppflags -EB
  3869. add_ldflags -EB
  3870. ;;
  3871. esac
  3872. arch="mips"
  3873. ;;
  3874. parisc*|hppa*)
  3875. arch="parisc"
  3876. ;;
  3877. "Power Macintosh"|ppc*|powerpc*)
  3878. arch="ppc"
  3879. ;;
  3880. s390|s390x)
  3881. arch="s390"
  3882. ;;
  3883. sh4|sh)
  3884. arch="sh4"
  3885. ;;
  3886. sun4u|sparc*)
  3887. arch="sparc"
  3888. ;;
  3889. tilegx|tile-gx)
  3890. arch="tilegx"
  3891. ;;
  3892. i[3-6]86*|i86pc|BePC|x86pc|x86_64|x86_32|amd64)
  3893. arch="x86"
  3894. ;;
  3895. esac
  3896. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  3897. enable $arch
  3898. # Add processor-specific flags
  3899. if enabled aarch64; then
  3900. case $cpu in
  3901. armv*)
  3902. cpuflags="-march=$cpu"
  3903. ;;
  3904. *)
  3905. cpuflags="-mcpu=$cpu"
  3906. ;;
  3907. esac
  3908. elif enabled alpha; then
  3909. cpuflags="-mcpu=$cpu"
  3910. elif enabled arm; then
  3911. check_arm_arch() {
  3912. check_cpp_condition stddef.h \
  3913. "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
  3914. $cpuflags
  3915. }
  3916. probe_arm_arch() {
  3917. if check_arm_arch 4; then echo armv4
  3918. elif check_arm_arch 4T; then echo armv4t
  3919. elif check_arm_arch 5; then echo armv5
  3920. elif check_arm_arch 5E; then echo armv5e
  3921. elif check_arm_arch 5T; then echo armv5t
  3922. elif check_arm_arch 5TE; then echo armv5te
  3923. elif check_arm_arch 5TEJ; then echo armv5te
  3924. elif check_arm_arch 6; then echo armv6
  3925. elif check_arm_arch 6J; then echo armv6j
  3926. elif check_arm_arch 6K; then echo armv6k
  3927. elif check_arm_arch 6Z; then echo armv6z
  3928. elif check_arm_arch 6ZK; then echo armv6zk
  3929. elif check_arm_arch 6T2; then echo armv6t2
  3930. elif check_arm_arch 7; then echo armv7
  3931. elif check_arm_arch 7A 7_A; then echo armv7-a
  3932. elif check_arm_arch 7S; then echo armv7-a
  3933. elif check_arm_arch 7R 7_R; then echo armv7-r
  3934. elif check_arm_arch 7M 7_M; then echo armv7-m
  3935. elif check_arm_arch 7EM 7E_M; then echo armv7-m
  3936. elif check_arm_arch 8A 8_A; then echo armv8-a
  3937. fi
  3938. }
  3939. [ "$cpu" = generic ] && cpu=$(probe_arm_arch)
  3940. case $cpu in
  3941. armv*)
  3942. cpuflags="-march=$cpu"
  3943. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  3944. ;;
  3945. *)
  3946. cpuflags="-mcpu=$cpu"
  3947. case $cpu in
  3948. cortex-a*) subarch=armv7a ;;
  3949. cortex-r*) subarch=armv7r ;;
  3950. cortex-m*) enable thumb; subarch=armv7m ;;
  3951. arm11*) subarch=armv6 ;;
  3952. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  3953. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  3954. *) subarch=$(probe_arm_arch) ;;
  3955. esac
  3956. ;;
  3957. esac
  3958. case "$subarch" in
  3959. armv5t*) enable fast_clz ;;
  3960. armv[6-8]*)
  3961. enable fast_clz
  3962. disabled fast_unaligned || enable fast_unaligned
  3963. ;;
  3964. esac
  3965. elif enabled avr32; then
  3966. case $cpu in
  3967. ap7[02]0[0-2])
  3968. subarch="avr32_ap"
  3969. cpuflags="-mpart=$cpu"
  3970. ;;
  3971. ap)
  3972. subarch="avr32_ap"
  3973. cpuflags="-march=$cpu"
  3974. ;;
  3975. uc3[ab]*)
  3976. subarch="avr32_uc"
  3977. cpuflags="-mcpu=$cpu"
  3978. ;;
  3979. uc)
  3980. subarch="avr32_uc"
  3981. cpuflags="-march=$cpu"
  3982. ;;
  3983. esac
  3984. elif enabled bfin; then
  3985. cpuflags="-mcpu=$cpu"
  3986. elif enabled mips; then
  3987. cpuflags="-march=$cpu"
  3988. if [ "$cpu" != "generic" ]; then
  3989. disable mips32r2
  3990. disable mips32r5
  3991. disable mips64r2
  3992. disable mips32r6
  3993. disable mips64r6
  3994. disable loongson2
  3995. disable loongson3
  3996. case $cpu in
  3997. 24kc|24kf*|24kec|34kc|1004kc|24kef*|34kf*|1004kf*|74kc|74kf)
  3998. enable mips32r2
  3999. disable msa
  4000. ;;
  4001. p5600|i6400)
  4002. disable mipsdsp
  4003. disable mipsdspr2
  4004. ;;
  4005. loongson*)
  4006. enable loongson2
  4007. enable loongson3
  4008. enable local_aligned_8 local_aligned_16 local_aligned_32
  4009. enable simd_align_16
  4010. enable fast_64bit
  4011. enable fast_clz
  4012. enable fast_cmov
  4013. enable fast_unaligned
  4014. disable aligned_stack
  4015. case $cpu in
  4016. loongson3*)
  4017. cpuflags="-march=loongson3a -mhard-float -fno-expensive-optimizations"
  4018. ;;
  4019. loongson2e)
  4020. cpuflags="-march=loongson2e -mhard-float -fno-expensive-optimizations"
  4021. ;;
  4022. loongson2f)
  4023. cpuflags="-march=loongson2f -mhard-float -fno-expensive-optimizations"
  4024. ;;
  4025. esac
  4026. ;;
  4027. *)
  4028. # Unknown CPU. Disable everything.
  4029. warn "unknown CPU. Disabling all MIPS optimizations."
  4030. disable mipsfpu
  4031. disable mipsdsp
  4032. disable mipsdspr2
  4033. disable msa
  4034. disable mmi
  4035. ;;
  4036. esac
  4037. case $cpu in
  4038. 24kc)
  4039. disable mipsfpu
  4040. disable mipsdsp
  4041. disable mipsdspr2
  4042. ;;
  4043. 24kf*)
  4044. disable mipsdsp
  4045. disable mipsdspr2
  4046. ;;
  4047. 24kec|34kc|1004kc)
  4048. disable mipsfpu
  4049. disable mipsdspr2
  4050. ;;
  4051. 24kef*|34kf*|1004kf*)
  4052. disable mipsdspr2
  4053. ;;
  4054. 74kc)
  4055. disable mipsfpu
  4056. ;;
  4057. p5600)
  4058. enable mips32r5
  4059. check_cflags "-mtune=p5600" && check_cflags "-msched-weight -mload-store-pairs -funroll-loops"
  4060. ;;
  4061. i6400)
  4062. enable mips64r6
  4063. check_cflags "-mtune=i6400 -mabi=64" && check_cflags "-msched-weight -mload-store-pairs -funroll-loops" && check_ldflags "-mabi=64"
  4064. ;;
  4065. esac
  4066. else
  4067. # We do not disable anything. Is up to the user to disable the unwanted features.
  4068. warn 'generic cpu selected'
  4069. fi
  4070. elif enabled ppc; then
  4071. disable ldbrx
  4072. case $(tolower $cpu) in
  4073. 601|ppc601|powerpc601)
  4074. cpuflags="-mcpu=601"
  4075. disable altivec
  4076. ;;
  4077. 603*|ppc603*|powerpc603*)
  4078. cpuflags="-mcpu=603"
  4079. disable altivec
  4080. ;;
  4081. 604*|ppc604*|powerpc604*)
  4082. cpuflags="-mcpu=604"
  4083. disable altivec
  4084. ;;
  4085. g3|75*|ppc75*|powerpc75*)
  4086. cpuflags="-mcpu=750"
  4087. disable altivec
  4088. ;;
  4089. g4|745*|ppc745*|powerpc745*)
  4090. cpuflags="-mcpu=7450"
  4091. disable vsx
  4092. ;;
  4093. 74*|ppc74*|powerpc74*)
  4094. cpuflags="-mcpu=7400"
  4095. disable vsx
  4096. ;;
  4097. g5|970|ppc970|powerpc970)
  4098. cpuflags="-mcpu=970"
  4099. disable vsx
  4100. ;;
  4101. power[3-6]*)
  4102. cpuflags="-mcpu=$cpu"
  4103. disable vsx
  4104. ;;
  4105. power[7-8]*)
  4106. cpuflags="-mcpu=$cpu"
  4107. ;;
  4108. cell)
  4109. cpuflags="-mcpu=cell"
  4110. enable ldbrx
  4111. disable vsx
  4112. ;;
  4113. e500mc)
  4114. cpuflags="-mcpu=e500mc"
  4115. disable altivec
  4116. ;;
  4117. e500v2)
  4118. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  4119. disable altivec
  4120. disable dcbzl
  4121. ;;
  4122. e500)
  4123. cpuflags="-mcpu=8540 -mhard-float"
  4124. disable altivec
  4125. disable dcbzl
  4126. ;;
  4127. esac
  4128. elif enabled sparc; then
  4129. case $cpu in
  4130. cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
  4131. cpuflags="-mcpu=$cpu"
  4132. ;;
  4133. ultrasparc*|niagara[234])
  4134. cpuflags="-mcpu=$cpu"
  4135. ;;
  4136. esac
  4137. elif enabled x86; then
  4138. case $cpu in
  4139. i[345]86|pentium)
  4140. cpuflags="-march=$cpu"
  4141. disable i686
  4142. disable mmx
  4143. ;;
  4144. # targets that do NOT support nopl and conditional mov (cmov)
  4145. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  4146. cpuflags="-march=$cpu"
  4147. disable i686
  4148. ;;
  4149. # targets that do support nopl and conditional mov (cmov)
  4150. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx\
  4151. |core*|atom|bonnell|nehalem|westmere|silvermont|sandybridge|ivybridge|haswell|broadwell|amdfam10|barcelona|b[dt]ver*)
  4152. cpuflags="-march=$cpu"
  4153. enable i686
  4154. enable fast_cmov
  4155. ;;
  4156. # targets that do support conditional mov but on which it's slow
  4157. pentium4|pentium4m|prescott|nocona)
  4158. cpuflags="-march=$cpu"
  4159. enable i686
  4160. disable fast_cmov
  4161. ;;
  4162. esac
  4163. fi
  4164. if [ "$cpu" != generic ]; then
  4165. add_cflags $cpuflags
  4166. add_asflags $cpuflags
  4167. test "$cc_type" = "$ld_type" && add_ldflags $cpuflags
  4168. fi
  4169. # compiler sanity check
  4170. check_exec <<EOF
  4171. int main(void){ return 0; }
  4172. EOF
  4173. if test "$?" != 0; then
  4174. echo "$cc is unable to create an executable file."
  4175. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  4176. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  4177. echo "Only do this if you know what cross compiling means."
  4178. fi
  4179. die "C compiler test failed."
  4180. fi
  4181. add_cppflags -D_ISOC99_SOURCE
  4182. add_cxxflags -D__STDC_CONSTANT_MACROS
  4183. add_cxxflags -std=c++98
  4184. check_cflags -std=c99
  4185. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  4186. #include <stdlib.h>
  4187. EOF
  4188. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  4189. #include <stdlib.h>
  4190. EOF
  4191. add_host_cppflags -D_ISOC99_SOURCE
  4192. check_host_cflags -std=c99
  4193. check_host_cflags -Wall
  4194. check_host_cflags -O3
  4195. check_64bit(){
  4196. arch32=$1
  4197. arch64=$2
  4198. expr=$3
  4199. check_code cc "" "int test[2*($expr) - 1]" &&
  4200. subarch=$arch64 || subarch=$arch32
  4201. }
  4202. case "$arch" in
  4203. aarch64|alpha|ia64)
  4204. spic=$shared
  4205. ;;
  4206. mips)
  4207. check_64bit mips mips64 '_MIPS_SIM > 1'
  4208. spic=$shared
  4209. ;;
  4210. parisc)
  4211. check_64bit parisc parisc64 'sizeof(void *) > 4'
  4212. spic=$shared
  4213. ;;
  4214. ppc)
  4215. check_64bit ppc ppc64 'sizeof(void *) > 4'
  4216. spic=$shared
  4217. ;;
  4218. s390)
  4219. check_64bit s390 s390x 'sizeof(void *) > 4'
  4220. spic=$shared
  4221. ;;
  4222. sparc)
  4223. check_64bit sparc sparc64 'sizeof(void *) > 4'
  4224. spic=$shared
  4225. ;;
  4226. x86)
  4227. check_64bit x86_32 x86_64 'sizeof(void *) > 4'
  4228. # Treat x32 as x64 for now. Note it also needs spic=$shared
  4229. test "$subarch" = "x86_32" && check_cpp_condition stddef.h 'defined(__x86_64__)' &&
  4230. subarch=x86_64
  4231. if test "$subarch" = "x86_64"; then
  4232. spic=$shared
  4233. fi
  4234. ;;
  4235. ppc)
  4236. check_cc <<EOF && subarch="ppc64"
  4237. int test[(int)sizeof(char*) - 7];
  4238. EOF
  4239. ;;
  4240. esac
  4241. enable $subarch
  4242. enabled spic && enable_weak pic
  4243. # OS specific
  4244. case $target_os in
  4245. aix)
  4246. SHFLAGS=-shared
  4247. add_cppflags '-I\$(SRC_PATH)/compat/aix'
  4248. enabled shared && add_ldflags -Wl,-brtl
  4249. ;;
  4250. android)
  4251. disable symver
  4252. enable section_data_rel_ro
  4253. SLIB_INSTALL_NAME='$(SLIBNAME)'
  4254. SLIB_INSTALL_LINKS=
  4255. SHFLAGS='-shared -Wl,-soname,$(SLIBNAME)'
  4256. ;;
  4257. haiku)
  4258. prefix_default="/boot/common"
  4259. network_extralibs="-lnetwork"
  4260. host_libs=
  4261. ;;
  4262. sunos)
  4263. SHFLAGS='-shared -Wl,-h,$$(@F)'
  4264. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  4265. network_extralibs="-lsocket -lnsl"
  4266. add_cppflags -D__EXTENSIONS__
  4267. # When using suncc to build, the Solaris linker will mark
  4268. # an executable with each instruction set encountered by
  4269. # the Solaris assembler. As our libraries contain their own
  4270. # guards for processor-specific code, instead suppress
  4271. # generation of the HWCAPS ELF section on Solaris x86 only.
  4272. enabled_all suncc x86 &&
  4273. echo "hwcap_1 = OVERRIDE;" > mapfile &&
  4274. add_ldflags -Wl,-M,mapfile
  4275. nm_default='nm -P -g'
  4276. version_script='-M'
  4277. VERSION_SCRIPT_POSTPROCESS_CMD='perl $(SRC_PATH)/compat/solaris/make_sunver.pl - $(OBJS)'
  4278. ;;
  4279. netbsd)
  4280. disable symver
  4281. oss_indev_extralibs="-lossaudio"
  4282. oss_outdev_extralibs="-lossaudio"
  4283. enabled gcc || check_ldflags -Wl,-zmuldefs
  4284. ;;
  4285. openbsd|bitrig)
  4286. disable symver
  4287. SHFLAGS='-shared'
  4288. SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
  4289. SLIB_INSTALL_LINKS=
  4290. oss_indev_extralibs="-lossaudio"
  4291. oss_outdev_extralibs="-lossaudio"
  4292. ;;
  4293. dragonfly)
  4294. disable symver
  4295. ;;
  4296. freebsd)
  4297. ;;
  4298. bsd/os)
  4299. add_extralibs -lpoll -lgnugetopt
  4300. strip="strip -d"
  4301. ;;
  4302. darwin)
  4303. enabled ppc && add_asflags -force_cpusubtype_ALL
  4304. install_name_dir_default='$(SHLIBDIR)'
  4305. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(INSTALL_NAME_DIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  4306. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  4307. strip="${strip} -x"
  4308. add_ldflags -Wl,-dynamic,-search_paths_first
  4309. SLIBSUF=".dylib"
  4310. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  4311. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  4312. objformat="macho"
  4313. enabled x86_64 && objformat="macho64"
  4314. enabled_any pic shared x86_64 ||
  4315. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  4316. check_header dispatch/dispatch.h &&
  4317. add_cppflags '-I\$(SRC_PATH)/compat/dispatch_semaphore'
  4318. ;;
  4319. msys*)
  4320. die "Native MSYS builds are discouraged, please use the MINGW environment."
  4321. ;;
  4322. mingw32*|mingw64*)
  4323. if test $target_os = "mingw32ce"; then
  4324. disable network
  4325. else
  4326. target_os=mingw32
  4327. fi
  4328. decklink_outdev_extralibs="$decklink_outdev_extralibs -lole32 -loleaut32"
  4329. decklink_indev_extralibs="$decklink_indev_extralibs -lole32 -loleaut32"
  4330. LIBTARGET=i386
  4331. if enabled x86_64; then
  4332. LIBTARGET="i386:x86-64"
  4333. elif enabled arm; then
  4334. LIBTARGET=arm-wince
  4335. fi
  4336. enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres
  4337. enabled x86_32 && check_ldflags -Wl,--large-address-aware
  4338. shlibdir_default="$bindir_default"
  4339. SLIBPREF=""
  4340. SLIBSUF=".dll"
  4341. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  4342. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  4343. dlltool="${cross_prefix}dlltool"
  4344. if check_cmd lib.exe -list; then
  4345. SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  4346. if enabled x86_64; then
  4347. LIBTARGET=x64
  4348. fi
  4349. elif check_cmd $dlltool --version; then
  4350. SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); $(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
  4351. fi
  4352. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  4353. SLIB_INSTALL_LINKS=
  4354. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  4355. SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  4356. SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.orig.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--disable-auto-image-base'
  4357. objformat="win32"
  4358. ranlib=:
  4359. enable dos_paths
  4360. check_ldflags -Wl,--nxcompat,--dynamicbase
  4361. # Lets work around some stupidity in binutils.
  4362. # ld will strip relocations from executables even though we need them
  4363. # for dynamicbase (ASLR). Using -pie does retain the reloc section
  4364. # however ld then forgets what the entry point should be (oops) so we
  4365. # have to manually (re)set it.
  4366. if enabled x86_32; then
  4367. disabled debug && add_ldexeflags -Wl,--pic-executable,-e,_mainCRTStartup
  4368. elif enabled x86_64; then
  4369. disabled debug && add_ldexeflags -Wl,--pic-executable,-e,mainCRTStartup
  4370. check_ldflags -Wl,--high-entropy-va # binutils 2.25
  4371. # Set image base >4GB for extra entropy with HEASLR
  4372. add_ldexeflags -Wl,--image-base,0x140000000
  4373. append SHFLAGS -Wl,--image-base,0x180000000
  4374. fi
  4375. ;;
  4376. win32|win64)
  4377. disable symver
  4378. if enabled shared; then
  4379. # Link to the import library instead of the normal static library
  4380. # for shared libs.
  4381. LD_LIB='%.lib'
  4382. # Cannot build both shared and static libs with MSVC or icl.
  4383. disable static
  4384. fi
  4385. enabled x86_32 && check_ldflags -LARGEADDRESSAWARE
  4386. shlibdir_default="$bindir_default"
  4387. SLIBPREF=""
  4388. SLIBSUF=".dll"
  4389. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  4390. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  4391. SLIB_CREATE_DEF_CMD='$(SRC_PATH)/compat/windows/makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
  4392. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  4393. SLIB_INSTALL_LINKS=
  4394. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  4395. SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  4396. SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  4397. objformat="win32"
  4398. ranlib=:
  4399. enable dos_paths
  4400. ;;
  4401. cygwin*)
  4402. target_os=cygwin
  4403. shlibdir_default="$bindir_default"
  4404. SLIBPREF="cyg"
  4405. SLIBSUF=".dll"
  4406. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  4407. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  4408. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  4409. SLIB_INSTALL_LINKS=
  4410. SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
  4411. SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
  4412. objformat="win32"
  4413. enable dos_paths
  4414. enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres
  4415. ;;
  4416. *-dos|freedos|opendos)
  4417. network_extralibs="-lsocket"
  4418. objformat="coff"
  4419. enable dos_paths
  4420. add_cppflags -U__STRICT_ANSI__
  4421. ;;
  4422. linux)
  4423. enable dv1394
  4424. enable section_data_rel_ro
  4425. ;;
  4426. irix*)
  4427. target_os=irix
  4428. ranlib="echo ignoring ranlib"
  4429. ;;
  4430. os/2*)
  4431. strip="lxlite -CS"
  4432. objformat="aout"
  4433. add_cppflags -D_GNU_SOURCE
  4434. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
  4435. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  4436. LIBSUF="_s.a"
  4437. SLIBPREF=""
  4438. SLIBSUF=".dll"
  4439. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  4440. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(FULLNAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  4441. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(FULLNAME).def; \
  4442. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(FULLNAME).def; \
  4443. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(FULLNAME).def; \
  4444. echo EXPORTS >> $(SUBDIR)$(FULLNAME).def; \
  4445. emxexp $(OBJS) >> $(SUBDIR)$(FULLNAME).def'
  4446. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(FULLNAME)_dll.a $(SUBDIR)$(FULLNAME).def; \
  4447. emximp -o $(SUBDIR)$(LIBPREF)$(FULLNAME)_dll.lib $(SUBDIR)$(FULLNAME).def;'
  4448. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  4449. SLIB_INSTALL_LINKS=
  4450. SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(FULLNAME)_dll.a $(LIBPREF)$(FULLNAME)_dll.lib'
  4451. enable dos_paths
  4452. enable_weak os2threads
  4453. ;;
  4454. gnu/kfreebsd)
  4455. add_cppflags -D_BSD_SOURCE
  4456. ;;
  4457. gnu)
  4458. ;;
  4459. qnx)
  4460. add_cppflags -D_QNX_SOURCE
  4461. network_extralibs="-lsocket"
  4462. ;;
  4463. symbian)
  4464. SLIBSUF=".dll"
  4465. enable dos_paths
  4466. add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
  4467. add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
  4468. add_ldflags -Wl,--target1-abs,--no-undefined \
  4469. -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
  4470. -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
  4471. add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
  4472. -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
  4473. -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
  4474. ;;
  4475. osf1)
  4476. add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
  4477. ;;
  4478. minix)
  4479. ;;
  4480. plan9)
  4481. add_cppflags -D_C99_SNPRINTF_EXTENSION \
  4482. -D_REENTRANT_SOURCE \
  4483. -D_RESEARCH_SOURCE \
  4484. -DFD_SETSIZE=96 \
  4485. -DHAVE_SOCK_OPTS
  4486. add_compat strtod.o strtod=avpriv_strtod
  4487. network_extralibs='-lbsd'
  4488. exeobjs=compat/plan9/main.o
  4489. disable ffserver
  4490. cp_f='cp'
  4491. ;;
  4492. none)
  4493. ;;
  4494. *)
  4495. die "Unknown OS '$target_os'."
  4496. ;;
  4497. esac
  4498. # test if creating links works
  4499. link_dest=$(mktemp -u $TMPDIR/dest_XXXXXXXX)
  4500. link_name=$(mktemp -u $TMPDIR/name_XXXXXXXX)
  4501. mkdir "$link_dest"
  4502. $ln_s "$link_dest" "$link_name"
  4503. touch "$link_dest/test_file"
  4504. if [ "$source_path" != "." ] && ([ ! -d src ] || [ -L src ]) && [ -e "$link_name/test_file" ]; then
  4505. # create link to source path
  4506. [ -e src ] && rm src
  4507. $ln_s "$source_path" src
  4508. source_link=src
  4509. else
  4510. # creating directory links doesn't work
  4511. # fall back to using the full source path
  4512. source_link="$source_path"
  4513. fi
  4514. # cleanup
  4515. rm -r "$link_dest"
  4516. rm -r "$link_name"
  4517. # determine libc flavour
  4518. probe_libc(){
  4519. pfx=$1
  4520. pfx_no_=${pfx%_}
  4521. # uclibc defines __GLIBC__, so it needs to be checked before glibc.
  4522. if check_${pfx}cpp_condition features.h "defined __UCLIBC__"; then
  4523. eval ${pfx}libc_type=uclibc
  4524. add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  4525. elif check_${pfx}cpp_condition features.h "defined __GLIBC__"; then
  4526. eval ${pfx}libc_type=glibc
  4527. add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  4528. # MinGW headers can be installed on Cygwin, so check for newlib first.
  4529. elif check_${pfx}cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
  4530. eval ${pfx}libc_type=newlib
  4531. add_${pfx}cppflags -U__STRICT_ANSI__
  4532. # MinGW64 is backwards compatible with MinGW32, so check for it first.
  4533. elif check_${pfx}cpp_condition _mingw.h "defined __MINGW64_VERSION_MAJOR"; then
  4534. eval ${pfx}libc_type=mingw64
  4535. if check_${pfx}cpp_condition _mingw.h "__MINGW64_VERSION_MAJOR < 3"; then
  4536. add_compat msvcrt/snprintf.o
  4537. add_cflags "-include $source_path/compat/msvcrt/snprintf.h"
  4538. fi
  4539. add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
  4540. eval test \$${pfx_no_}cc_type = "gcc" &&
  4541. add_${pfx}cppflags -D__printf__=__gnu_printf__
  4542. elif check_${pfx}cpp_condition _mingw.h "defined __MINGW_VERSION" ||
  4543. check_${pfx}cpp_condition _mingw.h "defined __MINGW32_VERSION"; then
  4544. eval ${pfx}libc_type=mingw32
  4545. check_${pfx}cpp_condition _mingw.h "__MINGW32_MAJOR_VERSION > 3 || \
  4546. (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  4547. die "ERROR: MinGW32 runtime version must be >= 3.15."
  4548. add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
  4549. eval test \$${pfx_no_}cc_type = "gcc" &&
  4550. add_${pfx}cppflags -D__printf__=__gnu_printf__
  4551. elif check_${pfx}cpp_condition crtversion.h "defined _VC_CRT_MAJOR_VERSION"; then
  4552. eval ${pfx}libc_type=msvcrt
  4553. if check_${pfx}cpp_condition crtversion.h "_VC_CRT_MAJOR_VERSION < 14"; then
  4554. if [ "$pfx" = host_ ]; then
  4555. add_host_cppflags -Dsnprintf=_snprintf
  4556. else
  4557. add_compat strtod.o strtod=avpriv_strtod
  4558. add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \
  4559. _snprintf=avpriv_snprintf \
  4560. vsnprintf=avpriv_vsnprintf
  4561. fi
  4562. fi
  4563. # The MSVC 2010 headers (Win 7.0 SDK) set _WIN32_WINNT to
  4564. # 0x601 by default unless something else is set by the user.
  4565. # This can easily lead to us detecting functions only present
  4566. # in such new versions and producing binaries requiring windows 7.0.
  4567. # Therefore explicitly set the default to XP unless the user has
  4568. # set something else on the command line.
  4569. # Don't do this if WINAPI_FAMILY is set and is set to a non-desktop
  4570. # family. For these cases, configure is free to use any functions
  4571. # found in the SDK headers by default. (Alternatively, we could force
  4572. # _WIN32_WINNT to 0x0602 in that case.)
  4573. check_${pfx}cpp_condition stdlib.h "defined(_WIN32_WINNT)" ||
  4574. { check_${pfx}cpp <<EOF && add_${pfx}cppflags -D_WIN32_WINNT=0x0502; }
  4575. #ifdef WINAPI_FAMILY
  4576. #include <winapifamily.h>
  4577. #if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  4578. #error not desktop
  4579. #endif
  4580. #endif
  4581. EOF
  4582. elif check_${pfx}cpp_condition stddef.h "defined __KLIBC__"; then
  4583. eval ${pfx}libc_type=klibc
  4584. elif check_${pfx}cpp_condition sys/cdefs.h "defined __BIONIC__"; then
  4585. eval ${pfx}libc_type=bionic
  4586. elif check_${pfx}cpp_condition sys/brand.h "defined LABELED_BRAND_NAME"; then
  4587. eval ${pfx}libc_type=solaris
  4588. add_${pfx}cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
  4589. fi
  4590. check_${pfx}cc <<EOF
  4591. #include <time.h>
  4592. void *v = localtime_r;
  4593. EOF
  4594. test "$?" != 0 && check_${pfx}cc -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 <<EOF && add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  4595. #include <time.h>
  4596. void *v = localtime_r;
  4597. EOF
  4598. }
  4599. probe_libc
  4600. test -n "$libc_type" && enable libc_$libc_type
  4601. probe_libc host_
  4602. test -n "$host_libc_type" && enable host_libc_$host_libc_type
  4603. case $libc_type in
  4604. bionic)
  4605. add_compat strtod.o strtod=avpriv_strtod
  4606. ;;
  4607. esac
  4608. # hacks for compiler/libc/os combinations
  4609. if enabled_all tms470 libc_glibc; then
  4610. CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
  4611. add_cppflags -D__USER_LABEL_PREFIX__=
  4612. add_cppflags -D__builtin_memset=memset
  4613. add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
  4614. add_cflags -pds=48 # incompatible redefinition of macro
  4615. fi
  4616. if enabled_all ccc libc_glibc; then
  4617. add_ldflags -Wl,-z,now # calls to libots crash without this
  4618. fi
  4619. check_compile_assert flt_lim "float.h limits.h" "DBL_MAX == (double)DBL_MAX" ||
  4620. add_cppflags '-I\$(SRC_PATH)/compat/float'
  4621. esc(){
  4622. echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
  4623. }
  4624. echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $FFMPEG_CONFIGURATION)" >config.fate
  4625. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable_weak pic
  4626. set_default libdir
  4627. : ${shlibdir_default:="$libdir"}
  4628. : ${pkgconfigdir_default:="$libdir/pkgconfig"}
  4629. set_default $PATHS_LIST
  4630. set_default nm
  4631. # we need to build at least one lib type
  4632. if ! enabled_any static shared; then
  4633. cat <<EOF
  4634. At least one library type must be built.
  4635. Specify --enable-static to build the static libraries or --enable-shared to
  4636. build the shared libraries as well. To only build the shared libraries specify
  4637. --disable-static in addition to --enable-shared.
  4638. EOF
  4639. exit 1
  4640. fi
  4641. die_license_disabled() {
  4642. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  4643. }
  4644. die_license_disabled_gpl() {
  4645. enabled $1 || { enabled $2 && die "$2 is incompatible with the gpl and --enable-$1 is not specified."; }
  4646. }
  4647. die_license_disabled gpl frei0r
  4648. die_license_disabled gpl libcdio
  4649. die_license_disabled gpl librubberband
  4650. die_license_disabled gpl libsmbclient
  4651. die_license_disabled gpl libvidstab
  4652. die_license_disabled gpl libx264
  4653. die_license_disabled gpl libx265
  4654. die_license_disabled gpl libxavs
  4655. die_license_disabled gpl libxvid
  4656. die_license_disabled gpl x11grab
  4657. die_license_disabled nonfree cuda
  4658. die_license_disabled nonfree cuvid
  4659. die_license_disabled nonfree libfaac
  4660. die_license_disabled nonfree libnpp
  4661. enabled gpl && die_license_disabled_gpl nonfree libfdk_aac
  4662. enabled gpl && die_license_disabled_gpl nonfree openssl
  4663. die_license_disabled version3 gmp
  4664. die_license_disabled version3 libopencore_amrnb
  4665. die_license_disabled version3 libopencore_amrwb
  4666. die_license_disabled version3 libsmbclient
  4667. die_license_disabled version3 libvo_amrwbenc
  4668. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  4669. disabled optimizations || check_cflags -fomit-frame-pointer
  4670. enable_weak_pic() {
  4671. disabled pic && return
  4672. enable pic
  4673. add_cppflags -DPIC
  4674. case "$target_os" in
  4675. mingw*|cygwin*)
  4676. ;;
  4677. *)
  4678. add_cflags -fPIC
  4679. ;;
  4680. esac
  4681. add_asflags -fPIC
  4682. }
  4683. enabled pic && enable_weak_pic
  4684. check_cc <<EOF || die "Symbol mangling check failed."
  4685. int ff_extern;
  4686. EOF
  4687. sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  4688. extern_prefix=${sym%%ff_extern*}
  4689. check_cc <<EOF && enable_weak inline_asm
  4690. void foo(void) { __asm__ volatile ("" ::); }
  4691. EOF
  4692. _restrict=
  4693. for restrict_keyword in restrict __restrict__ __restrict; do
  4694. check_cc <<EOF && _restrict=$restrict_keyword && break
  4695. void foo(char * $restrict_keyword p);
  4696. EOF
  4697. done
  4698. check_cc <<EOF && enable pragma_deprecated
  4699. void foo(void) { _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") }
  4700. EOF
  4701. check_cc <<EOF && enable attribute_packed
  4702. struct { int x; } __attribute__((packed)) x;
  4703. EOF
  4704. check_cc <<EOF && enable attribute_may_alias
  4705. union { int x; } __attribute__((may_alias)) x;
  4706. EOF
  4707. check_cc <<EOF || die "endian test failed"
  4708. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  4709. EOF
  4710. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  4711. if ! enabled ppc64 || enabled bigendian; then
  4712. disable vsx
  4713. fi
  4714. check_gas() {
  4715. log "check_gas using '$as' as AS"
  4716. # :vararg is used on aarch64, arm and ppc altivec
  4717. check_as <<EOF || return 1
  4718. .macro m n, y:vararg=0
  4719. \n: .int \y
  4720. .endm
  4721. m x
  4722. EOF
  4723. # .altmacro is only used in arm asm
  4724. ! enabled arm || check_as <<EOF || return 1
  4725. .altmacro
  4726. EOF
  4727. enable gnu_as
  4728. return 0
  4729. }
  4730. if enabled_any arm aarch64 || enabled_all ppc altivec && enabled asm; then
  4731. nogas=:
  4732. enabled_any arm aarch64 && nogas=die
  4733. enabled_all ppc altivec && [ $target_os_default != aix ] && nogas=warn
  4734. as_noop=-v
  4735. case $as_type in
  4736. arm*) gaspp_as_type=armasm; as_noop=-h ;;
  4737. gcc) gaspp_as_type=gas ;;
  4738. *) gaspp_as_type=$as_type ;;
  4739. esac
  4740. [ $target_os = "darwin" ] && gaspp_as_type="apple-$gaspp_as_type"
  4741. test "${as#*gas-preprocessor.pl}" != "$as" ||
  4742. check_cmd gas-preprocessor.pl -arch $arch -as-type $gaspp_as_type -- ${as:=$cc} $as_noop &&
  4743. gas="${gas:=gas-preprocessor.pl} -arch $arch -as-type $gaspp_as_type -- ${as:=$cc}"
  4744. if ! check_gas ; then
  4745. as=${gas:=$as}
  4746. check_gas || \
  4747. $nogas "GNU assembler not found, install/update gas-preprocessor"
  4748. fi
  4749. check_as <<EOF && enable as_func
  4750. .func test
  4751. .endfunc
  4752. EOF
  4753. fi
  4754. check_inline_asm inline_asm_labels '"1:\n"'
  4755. check_inline_asm inline_asm_nonlocal_labels '"Label:\n"'
  4756. if enabled aarch64; then
  4757. enabled armv8 && check_insn armv8 'prfm pldl1strm, [x0]'
  4758. # internal assembler in clang 3.3 does not support this instruction
  4759. enabled neon && check_insn neon 'ext v0.8B, v0.8B, v1.8B, #1'
  4760. enabled vfp && check_insn vfp 'fmadd d0, d0, d1, d2'
  4761. map 'enabled_any ${v}_external ${v}_inline || disable $v' $ARCH_EXT_LIST_ARM
  4762. elif enabled alpha; then
  4763. check_cflags -mieee
  4764. elif enabled arm; then
  4765. enabled msvc && check_cpp_condition stddef.h "defined _M_ARMT" && enable thumb
  4766. check_cpp_condition stddef.h "defined __thumb__" && check_cc <<EOF && enable_weak thumb
  4767. float func(float a, float b){ return a+b; }
  4768. EOF
  4769. enabled thumb && check_cflags -mthumb || check_cflags -marm
  4770. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  4771. enable vfp_args
  4772. elif check_cpp_condition stddef.h "defined _M_ARM_FP && _M_ARM_FP >= 30"; then
  4773. enable vfp_args
  4774. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__" && [ $target_os != darwin ]; then
  4775. case "${cross_prefix:-$cc}" in
  4776. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  4777. *) check_ld "cc" <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  4778. __asm__ (".eabi_attribute 28, 1");
  4779. int main(void) { return 0; }
  4780. EOF
  4781. esac
  4782. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  4783. fi
  4784. enabled armv5te && check_insn armv5te 'qadd r0, r0, r0'
  4785. enabled armv6 && check_insn armv6 'sadd16 r0, r0, r0'
  4786. enabled armv6t2 && check_insn armv6t2 'movt r0, #0'
  4787. enabled neon && check_insn neon 'vadd.i16 q0, q0, q0'
  4788. enabled vfp && check_insn vfp 'fadds s0, s0, s0'
  4789. enabled vfpv3 && check_insn vfpv3 'vmov.f32 s0, #1.0'
  4790. enabled setend && check_insn setend 'setend be'
  4791. [ $target_os = linux ] || [ $target_os = android ] ||
  4792. map 'enabled_any ${v}_external ${v}_inline || disable $v' \
  4793. $ARCH_EXT_LIST_ARM
  4794. check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
  4795. check_as <<EOF && enable as_dn_directive
  4796. ra .dn d0.i16
  4797. .unreq ra
  4798. EOF
  4799. # llvm's integrated assembler supports .object_arch from llvm 3.5
  4800. [ "$objformat" = elf ] && check_as <<EOF && enable as_object_arch
  4801. .object_arch armv4
  4802. EOF
  4803. [ $target_os != win32 ] && enabled_all armv6t2 shared !pic && enable_weak_pic
  4804. elif enabled mips; then
  4805. enabled loongson2 && check_inline_asm loongson2 '"dmult.g $8, $9, $10"'
  4806. enabled loongson3 && check_inline_asm loongson3 '"gsldxc1 $f0, 0($2, $3)"'
  4807. enabled mmi && check_inline_asm mmi '"punpcklhw $f0, $f0, $f0"'
  4808. # Enable minimum ISA based on selected options
  4809. if enabled mips64; then
  4810. enabled mips64r6 && check_inline_asm_flags mips64r6 '"dlsa $0, $0, $0, 1"' '-mips64r6'
  4811. enabled mips64r2 && check_inline_asm_flags mips64r2 '"dext $0, $0, 0, 1"' '-mips64r2'
  4812. disabled mips64r6 && disabled mips64r2 && check_inline_asm_flags mips64r1 '"daddi $0, $0, 0"' '-mips64'
  4813. else
  4814. enabled mips32r6 && check_inline_asm_flags mips32r6 '"aui $0, $0, 0"' '-mips32r6'
  4815. enabled mips32r5 && check_inline_asm_flags mips32r5 '"eretnc"' '-mips32r5'
  4816. enabled mips32r2 && check_inline_asm_flags mips32r2 '"ext $0, $0, 0, 1"' '-mips32r2'
  4817. disabled mips32r6 && disabled mips32r5 && disabled mips32r2 && check_inline_asm_flags mips32r1 '"addi $0, $0, 0"' '-mips32'
  4818. fi
  4819. enabled mipsfpu && check_inline_asm_flags mipsfpu '"cvt.d.l $f0, $f2"' '-mhard-float'
  4820. enabled mipsfpu && (enabled mips32r5 || enabled mips32r6 || enabled mips64r6) && check_inline_asm_flags mipsfpu '"cvt.d.l $f0, $f1"' '-mfp64'
  4821. enabled mipsfpu && enabled msa && check_inline_asm_flags msa '"addvi.b $w0, $w1, 1"' '-mmsa' && check_header msa.h || disable msa
  4822. enabled mipsdsp && check_inline_asm_flags mipsdsp '"addu.qb $t0, $t1, $t2"' '-mdsp'
  4823. enabled mipsdspr2 && check_inline_asm_flags mipsdspr2 '"absq_s.qb $t0, $t1"' '-mdspr2'
  4824. elif enabled parisc; then
  4825. if enabled gcc; then
  4826. case $($cc -dumpversion) in
  4827. 4.[3-9].*) check_cflags -fno-optimize-sibling-calls ;;
  4828. esac
  4829. fi
  4830. elif enabled ppc; then
  4831. enable local_aligned_8 local_aligned_16 local_aligned_32
  4832. check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  4833. check_inline_asm ibm_asm '"add 0, 0, 0"'
  4834. check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
  4835. check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  4836. # AltiVec flags: The FSF version of GCC differs from the Apple version
  4837. if enabled altivec; then
  4838. check_cflags -maltivec -mabi=altivec &&
  4839. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  4840. check_cflags -faltivec
  4841. # check if our compiler supports Motorola AltiVec C API
  4842. check_cc <<EOF || disable altivec
  4843. $inc_altivec_h
  4844. int main(void) {
  4845. vector signed int v1 = (vector signed int) { 0 };
  4846. vector signed int v2 = (vector signed int) { 1 };
  4847. v1 = vec_add(v1, v2);
  4848. return 0;
  4849. }
  4850. EOF
  4851. enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
  4852. fi
  4853. if enabled vsx; then
  4854. check_cflags -mvsx &&
  4855. check_builtin vec_vsx_ld "altivec.h" "__builtin_vec_vsx_ld" || disable vsx
  4856. fi
  4857. if enabled power8; then
  4858. check_cpp_condition "altivec.h" "defined(_ARCH_PWR8)" || disable power8
  4859. fi
  4860. elif enabled x86; then
  4861. check_builtin rdtsc intrin.h "__rdtsc()"
  4862. check_builtin mm_empty mmintrin.h "_mm_empty()"
  4863. enable local_aligned_8 local_aligned_16 local_aligned_32
  4864. # check whether EBP is available on x86
  4865. # As 'i' is stored on the stack, this program will crash
  4866. # if the base pointer is used to access it because the
  4867. # base pointer is cleared in the inline assembly code.
  4868. check_exec_crash <<EOF && enable ebp_available
  4869. volatile int i=0;
  4870. __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
  4871. return i;
  4872. EOF
  4873. # check whether EBX is available on x86
  4874. check_inline_asm ebx_available '""::"b"(0)' &&
  4875. check_inline_asm ebx_available '"":::"%ebx"'
  4876. # check whether xmm clobbers are supported
  4877. check_inline_asm xmm_clobbers '"":::"%xmm0"'
  4878. check_inline_asm inline_asm_direct_symbol_refs '"movl '$extern_prefix'test, %eax"' ||
  4879. check_inline_asm inline_asm_direct_symbol_refs '"movl '$extern_prefix'test(%rip), %eax"'
  4880. # check whether binutils is new enough to compile SSSE3/MMXEXT
  4881. enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
  4882. enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
  4883. if ! disabled_any asm mmx yasm; then
  4884. if check_cmd $yasmexe --version; then
  4885. enabled x86_64 && yasm_extra="-m amd64"
  4886. yasm_debug="-g dwarf2"
  4887. elif check_cmd nasm -v; then
  4888. yasmexe=nasm
  4889. yasm_debug="-g -F dwarf"
  4890. if enabled x86_64; then
  4891. case "$objformat" in
  4892. elf) objformat=elf64 ;;
  4893. win32) objformat=win64 ;;
  4894. esac
  4895. fi
  4896. fi
  4897. YASMFLAGS="-f $objformat $yasm_extra"
  4898. enabled pic && append YASMFLAGS "-DPIC"
  4899. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  4900. case "$objformat" in
  4901. elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
  4902. esac
  4903. check_yasm "movbe ecx, [5]" && enable yasm ||
  4904. die "yasm/nasm not found or too old. Use --disable-yasm for a crippled build."
  4905. check_yasm "vextracti128 xmm0, ymm0, 0" || disable avx2_external
  4906. check_yasm "vpmacsdd xmm0, xmm1, xmm2, xmm3" || disable xop_external
  4907. check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
  4908. check_yasm "CPU amdnop" || disable cpunop
  4909. fi
  4910. case "$cpu" in
  4911. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  4912. disable fast_clz
  4913. ;;
  4914. esac
  4915. fi
  4916. check_code cc arm_neon.h "int16x8_t test = vdupq_n_s16(0)" && enable intrinsics_neon
  4917. check_ldflags -Wl,--as-needed
  4918. check_ldflags -Wl,-z,noexecstack
  4919. if check_func dlopen; then
  4920. ldl=
  4921. elif check_func dlopen -ldl; then
  4922. ldl=-ldl
  4923. fi
  4924. decklink_outdev_extralibs="$decklink_outdev_extralibs $ldl"
  4925. decklink_indev_extralibs="$decklink_indev_extralibs $ldl"
  4926. frei0r_filter_extralibs='$ldl'
  4927. frei0r_src_filter_extralibs='$ldl'
  4928. ladspa_filter_extralibs='$ldl'
  4929. nvenc_encoder_extralibs='$ldl'
  4930. coreimage_filter_extralibs="-framework QuartzCore -framework AppKit -framework OpenGL"
  4931. coreimagesrc_filter_extralibs="-framework QuartzCore -framework AppKit -framework OpenGL"
  4932. if ! disabled network; then
  4933. check_func getaddrinfo $network_extralibs
  4934. check_func inet_aton $network_extralibs
  4935. check_type netdb.h "struct addrinfo"
  4936. check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
  4937. check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
  4938. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  4939. check_type poll.h "struct pollfd"
  4940. check_type netinet/sctp.h "struct sctp_event_subscribe"
  4941. check_struct "sys/socket.h" "struct msghdr" msg_flags
  4942. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  4943. check_type netinet/in.h "struct sockaddr_in6"
  4944. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  4945. check_type "sys/types.h sys/socket.h" socklen_t
  4946. # Prefer arpa/inet.h over winsock2
  4947. if check_header arpa/inet.h ; then
  4948. check_func closesocket
  4949. elif check_header winsock2.h ; then
  4950. check_func_headers winsock2.h closesocket -lws2 &&
  4951. network_extralibs="-lws2" ||
  4952. { check_func_headers winsock2.h closesocket -lws2_32 &&
  4953. network_extralibs="-lws2_32"; } || disable winsock2_h network
  4954. check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
  4955. check_type ws2tcpip.h socklen_t
  4956. check_type ws2tcpip.h "struct addrinfo"
  4957. check_type ws2tcpip.h "struct group_source_req"
  4958. check_type ws2tcpip.h "struct ip_mreq_source"
  4959. check_type ws2tcpip.h "struct ipv6_mreq"
  4960. check_type winsock2.h "struct pollfd"
  4961. check_struct winsock2.h "struct sockaddr" sa_len
  4962. check_type ws2tcpip.h "struct sockaddr_in6"
  4963. check_type ws2tcpip.h "struct sockaddr_storage"
  4964. else
  4965. disable network
  4966. fi
  4967. fi
  4968. check_builtin atomic_cas_ptr atomic.h "void **ptr; void *oldval, *newval; atomic_cas_ptr(ptr, oldval, newval)"
  4969. check_builtin atomic_compare_exchange "" "int *ptr, *oldval; int newval; __atomic_compare_exchange_n(ptr, oldval, newval, 0, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)"
  4970. check_builtin machine_rw_barrier mbarrier.h "__machine_rw_barrier()"
  4971. check_builtin MemoryBarrier windows.h "MemoryBarrier()"
  4972. check_builtin sarestart signal.h "SA_RESTART"
  4973. check_builtin sem_timedwait semaphore.h "sem_t *s; sem_init(s,0,0); sem_timedwait(s,0); sem_destroy(s)" -lpthread
  4974. check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
  4975. check_builtin gmtime_r time.h "time_t *time; struct tm *tm; gmtime_r(time, tm)"
  4976. check_builtin localtime_r time.h "time_t *time; struct tm *tm; localtime_r(time, tm)"
  4977. check_builtin x264_csp_bgr "stdint.h x264.h" "X264_CSP_BGR"
  4978. case "$custom_allocator" in
  4979. jemalloc)
  4980. # jemalloc by default does not use a prefix
  4981. require libjemalloc jemalloc/jemalloc.h malloc -ljemalloc
  4982. ;;
  4983. tcmalloc)
  4984. require_pkg_config libtcmalloc gperftools/tcmalloc.h tc_malloc
  4985. malloc_prefix=tc_
  4986. ;;
  4987. esac
  4988. check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
  4989. check_func ${malloc_prefix}memalign && enable memalign
  4990. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  4991. check_func access
  4992. check_func arc4random
  4993. check_func_headers time.h clock_gettime || { check_func_headers time.h clock_gettime -lrt && add_extralibs -lrt && LIBRT="-lrt"; }
  4994. check_func fcntl
  4995. check_func fork
  4996. check_func gethrtime
  4997. check_func getopt
  4998. check_func getrusage
  4999. check_func gettimeofday
  5000. check_func isatty
  5001. check_func mach_absolute_time
  5002. check_func mkstemp
  5003. check_func mmap
  5004. check_func mprotect
  5005. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  5006. check_func_headers time.h nanosleep || { check_func_headers time.h nanosleep -lrt && add_extralibs -lrt && LIBRT="-lrt"; }
  5007. check_func sched_getaffinity
  5008. check_func setrlimit
  5009. check_struct "sys/stat.h" "struct stat" st_mtim.tv_nsec -D_BSD_SOURCE
  5010. check_func strerror_r
  5011. check_func sysconf
  5012. check_func sysctl
  5013. check_func usleep
  5014. check_func_headers conio.h kbhit
  5015. check_func_headers io.h setmode
  5016. check_func_headers lzo/lzo1x.h lzo1x_999_compress
  5017. check_func_headers stdlib.h getenv
  5018. check_func_headers sys/stat.h lstat
  5019. check_func_headers windows.h CoTaskMemFree -lole32
  5020. check_func_headers windows.h GetProcessAffinityMask
  5021. check_func_headers windows.h GetProcessTimes
  5022. check_func_headers windows.h GetSystemTimeAsFileTime
  5023. check_func_headers windows.h MapViewOfFile
  5024. check_func_headers windows.h PeekNamedPipe
  5025. check_func_headers windows.h SetConsoleTextAttribute
  5026. check_func_headers windows.h SetConsoleCtrlHandler
  5027. check_func_headers windows.h Sleep
  5028. check_func_headers windows.h VirtualAlloc
  5029. check_struct windows.h "CONDITION_VARIABLE" Ptr
  5030. check_func_headers glob.h glob
  5031. enabled xlib &&
  5032. check_func_headers "X11/Xlib.h X11/extensions/Xvlib.h" XvGetPortAttribute -lXv -lX11 -lXext
  5033. check_header AudioToolbox/AudioToolbox.h
  5034. check_header direct.h
  5035. check_header dirent.h
  5036. check_header dlfcn.h
  5037. check_header d3d11.h
  5038. check_header dxva.h
  5039. check_header dxva2api.h -D_WIN32_WINNT=0x0600
  5040. check_header io.h
  5041. check_header libcrystalhd/libcrystalhd_if.h
  5042. check_header mach/mach_time.h
  5043. check_header malloc.h
  5044. check_header net/udplite.h
  5045. check_header poll.h
  5046. check_header sys/mman.h
  5047. check_header sys/param.h
  5048. check_header sys/resource.h
  5049. check_header sys/select.h
  5050. check_header sys/time.h
  5051. check_header sys/un.h
  5052. check_header termios.h
  5053. check_header unistd.h
  5054. check_header valgrind/valgrind.h
  5055. check_header vdpau/vdpau.h
  5056. check_header vdpau/vdpau_x11.h
  5057. check_header VideoDecodeAcceleration/VDADecoder.h
  5058. check_header VideoToolbox/VideoToolbox.h
  5059. check_func_headers VideoToolbox/VTCompressionSession.h VTCompressionSessionPrepareToEncodeFrames -framework VideoToolbox
  5060. enabled videotoolbox && check_func_headers CoreVideo/CVImageBuffer.h kCVImageBufferColorPrimaries_ITU_R_2020 -framework CoreVideo
  5061. check_header windows.h
  5062. check_header X11/extensions/XvMClib.h
  5063. check_header asm/types.h
  5064. check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
  5065. check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
  5066. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  5067. check_lib "CoreServices/CoreServices.h" UTGetOSTypeFromString "-framework CoreServices"
  5068. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  5069. check_type "windows.h dxva.h" "DXVA_PicParams_HEVC" -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP -D_CRT_BUILD_DESKTOP_APP=0
  5070. check_type "windows.h dxva.h" "DXVA_PicParams_VP9" -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP -D_CRT_BUILD_DESKTOP_APP=0
  5071. check_type "windows.h d3d11.h" "ID3D11VideoDecoder"
  5072. check_type "windows.h d3d11.h" "ID3D11VideoContext"
  5073. check_type "d3d9.h dxva2api.h" DXVA2_ConfigPictureDecode -D_WIN32_WINNT=0x0602
  5074. check_type "va/va.h" "VAPictureParameterBufferHEVC"
  5075. check_type "va/va.h" "VADecPictureParameterBufferVP9"
  5076. check_type "va/va.h va/va_vpp.h" "VAProcPipelineParameterBuffer"
  5077. check_type "va/va.h va/va_enc_h264.h" "VAEncPictureParameterBufferH264"
  5078. check_type "va/va.h va/va_enc_hevc.h" "VAEncPictureParameterBufferHEVC"
  5079. check_type "va/va.h va/va_enc_jpeg.h" "VAEncPictureParameterBufferJPEG"
  5080. check_type "vdpau/vdpau.h" "VdpPictureInfoHEVC"
  5081. check_type "cuviddec.h" "CUVIDH264PICPARAMS"
  5082. check_type "cuviddec.h" "CUVIDHEVCPICPARAMS"
  5083. check_type "cuviddec.h" "CUVIDVC1PICPARAMS"
  5084. check_type "cuviddec.h" "CUVIDVP9PICPARAMS"
  5085. check_cpp_condition windows.h "!WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)" && enable winrt || disable winrt
  5086. if ! disabled w32threads && ! enabled pthreads; then
  5087. check_func_headers "windows.h process.h" _beginthreadex &&
  5088. enable w32threads || disable w32threads
  5089. if ! enabled w32threads && enabled winrt; then
  5090. check_func_headers "windows.h" CreateThread &&
  5091. enable w32threads || disable w32threads
  5092. fi
  5093. fi
  5094. # check for some common methods of building with pthread support
  5095. # do this before the optional library checks as some of them require pthreads
  5096. if ! disabled pthreads && ! enabled w32threads && ! enabled os2threads; then
  5097. enable pthreads
  5098. if check_func pthread_join -pthread && check_func pthread_create -pthread; then
  5099. add_cflags -pthread
  5100. add_extralibs -pthread
  5101. elif check_func pthread_join -pthreads && check_func pthread_create -pthreads; then
  5102. add_cflags -pthreads
  5103. add_extralibs -pthreads
  5104. elif check_func pthread_join -ldl -pthread && check_func pthread_create -ldl -pthread; then
  5105. add_cflags -ldl -pthread
  5106. add_extralibs -ldl -pthread
  5107. elif check_func pthread_join -lpthreadGC2 && check_func pthread_create -lpthreadGC2; then
  5108. add_extralibs -lpthreadGC2
  5109. elif check_lib pthread.h pthread_join -lpthread && check_lib pthread.h pthread_create -lpthread; then
  5110. :
  5111. elif ! check_func pthread_join && ! check_func pthread_create; then
  5112. disable pthreads
  5113. fi
  5114. check_code cc "pthread.h" "static pthread_mutex_t atomic_lock = PTHREAD_MUTEX_INITIALIZER" || disable pthreads
  5115. fi
  5116. if enabled pthreads; then
  5117. check_func pthread_cancel
  5118. fi
  5119. enabled pthreads &&
  5120. check_builtin sem_timedwait semaphore.h "sem_t *s; sem_init(s,0,0); sem_timedwait(s,0); sem_destroy(s)"
  5121. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  5122. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  5123. disabled lzma || check_lib2 lzma.h lzma_version_number -llzma || disable lzma
  5124. check_lib math.h sin -lm && LIBM="-lm"
  5125. disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd
  5126. atan2f_args=2
  5127. copysign_args=2
  5128. hypot_args=2
  5129. ldexpf_args=2
  5130. powf_args=2
  5131. for func in $MATH_FUNCS; do
  5132. eval check_mathfunc $func \${${func}_args:-1}
  5133. done
  5134. for func in $COMPLEX_FUNCS; do
  5135. eval check_complexfunc $func \${${func}_args:-1}
  5136. done
  5137. # Enable CUVID by default if CUDA is enabled
  5138. if enabled cuda && ! disabled cuvid; then
  5139. enable cuvid
  5140. fi
  5141. # these are off by default, so fail if requested and not available
  5142. enabled avfoundation_indev && { check_header_objcc AVFoundation/AVFoundation.h || disable avfoundation_indev; }
  5143. enabled avfoundation_indev && { check_lib2 CoreGraphics/CoreGraphics.h CGGetActiveDisplayList -framework CoreGraphics ||
  5144. check_lib2 ApplicationServices/ApplicationServices.h CGGetActiveDisplayList -framework ApplicationServices; }
  5145. enabled avisynth && { { check_lib2 "windows.h" LoadLibrary; } ||
  5146. { check_lib2 "dlfcn.h" dlopen -ldl; } ||
  5147. die "ERROR: LoadLibrary/dlopen not found for avisynth"; }
  5148. enabled cuda && { check_lib cuda.h cuInit -lcuda ||
  5149. die "ERROR: CUDA not found"; }
  5150. enabled cuvid && { check_lib cuviddec.h cuvidCreateDecoder -lnvcuvid ||
  5151. die "ERROR: CUVID not found"; } &&
  5152. { enabled cuda ||
  5153. die "ERROR: CUVID requires CUDA"; }
  5154. enabled chromaprint && require chromaprint chromaprint.h chromaprint_get_version -lchromaprint
  5155. enabled coreimage_filter && { check_header_objcc QuartzCore/CoreImage.h || disable coreimage_filter; }
  5156. enabled coreimagesrc_filter && { check_header_objcc QuartzCore/CoreImage.h || disable coreimagesrc_filter; }
  5157. enabled decklink && { { check_header DeckLinkAPI.h || die "ERROR: DeckLinkAPI.h header not found"; } &&
  5158. { check_cpp_condition DeckLinkAPIVersion.h "BLACKMAGIC_DECKLINK_API_VERSION >= 0x0a060100" || die "ERROR: Decklink API version must be >= 10.6.1."; } }
  5159. enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
  5160. enabled gmp && require2 gmp gmp.h mpz_export -lgmp
  5161. enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
  5162. enabled jni && { [ $target_os = "android" ] && check_header jni.h && enabled pthreads &&
  5163. check_lib2 "dlfcn.h" dlopen -ldl; }
  5164. enabled ladspa && { check_header ladspa.h || die "ERROR: ladspa.h header not found"; }
  5165. enabled libiec61883 && require libiec61883 libiec61883/iec61883.h iec61883_cmp_connect -lraw1394 -lavc1394 -lrom1394 -liec61883
  5166. enabled libass && require_pkg_config libass ass/ass.h ass_library_init
  5167. enabled libbluray && require_pkg_config libbluray libbluray/bluray.h bd_open
  5168. enabled libbs2b && require_pkg_config libbs2b bs2b.h bs2b_open
  5169. enabled libcelt && require libcelt celt/celt.h celt_decode -lcelt0 &&
  5170. { check_lib celt/celt.h celt_decoder_create_custom -lcelt0 ||
  5171. die "ERROR: libcelt must be installed and version must be >= 0.11.0."; }
  5172. enabled libcaca && require_pkg_config caca caca.h caca_create_canvas
  5173. enabled libebur128 && require ebur128 ebur128.h ebur128_relative_threshold -lebur128
  5174. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  5175. enabled libfdk_aac && { use_pkg_config fdk-aac "fdk-aac/aacenc_lib.h" aacEncOpen ||
  5176. { require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac &&
  5177. warn "using libfdk without pkg-config"; } }
  5178. flite_libs="-lflite_cmu_time_awb -lflite_cmu_us_awb -lflite_cmu_us_kal -lflite_cmu_us_kal16 -lflite_cmu_us_rms -lflite_cmu_us_slt -lflite_usenglish -lflite_cmulex -lflite"
  5179. enabled libflite && require2 libflite "flite/flite.h" flite_init $flite_libs
  5180. enabled fontconfig && enable libfontconfig
  5181. enabled libfontconfig && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit
  5182. enabled libfreetype && require_libfreetype
  5183. enabled libfribidi && require_pkg_config fribidi fribidi.h fribidi_version_info
  5184. enabled libgme && require libgme gme/gme.h gme_new_emu -lgme -lstdc++
  5185. enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
  5186. check_lib "${gsm_hdr}" gsm_create -lgsm && break;
  5187. done || die "ERROR: libgsm not found"; }
  5188. enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
  5189. enabled libkvazaar && require_pkg_config "kvazaar >= 0.8.1" kvazaar.h kvz_api_get
  5190. enabled libmfx && require_pkg_config libmfx "mfx/mfxvideo.h" MFXInit
  5191. enabled libmodplug && require_pkg_config libmodplug libmodplug/modplug.h ModPlug_Load
  5192. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  5193. enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
  5194. enabled libnpp && require libnpp npp.h nppGetLibVersion -lnppi -lnppc
  5195. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  5196. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  5197. enabled libopencv && { check_header opencv2/core/core_c.h &&
  5198. { use_pkg_config opencv opencv2/core/core_c.h cvCreateImageHeader ||
  5199. require opencv opencv2/core/core_c.h cvCreateImageHeader -lopencv_core -lopencv_imgproc; } ||
  5200. require_pkg_config opencv opencv/cxcore.h cvCreateImageHeader; }
  5201. enabled libopenh264 && require_pkg_config openh264 wels/codec_api.h WelsGetCodecVersion
  5202. enabled libopenjpeg && { check_lib openjpeg-2.1/openjpeg.h opj_version -lopenjp2 -DOPJ_STATIC ||
  5203. check_lib openjpeg-2.0/openjpeg.h opj_version -lopenjp2 -DOPJ_STATIC ||
  5204. check_lib openjpeg-1.5/openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC ||
  5205. check_lib openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC ||
  5206. die "ERROR: libopenjpeg not found"; }
  5207. enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
  5208. enabled libpulse && require_pkg_config libpulse pulse/pulseaudio.h pa_context_new
  5209. enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
  5210. enabled librubberband && require_pkg_config "rubberband >= 1.8.1" rubberband/rubberband-c.h rubberband_new
  5211. enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
  5212. enabled libshine && require_pkg_config shine shine/layer3.h shine_encode_buffer
  5213. enabled libsmbclient && { use_pkg_config smbclient libsmbclient.h smbc_init ||
  5214. require smbclient libsmbclient.h smbc_init -lsmbclient; }
  5215. enabled libsnappy && require snappy snappy-c.h snappy_compress -lsnappy
  5216. enabled libsoxr && require libsoxr soxr.h soxr_create -lsoxr && LIBSOXR="-lsoxr"
  5217. enabled libssh && require_pkg_config libssh libssh/sftp.h sftp_init
  5218. enabled libspeex && require_pkg_config speex speex/speex.h speex_decoder_init -lspeex
  5219. enabled libtesseract && require_pkg_config tesseract tesseract/capi.h TessBaseAPICreate
  5220. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  5221. enabled libtwolame && require libtwolame twolame.h twolame_init -ltwolame &&
  5222. { check_lib twolame.h twolame_encode_buffer_float32_interleaved -ltwolame ||
  5223. die "ERROR: libtwolame must be installed and version must be >= 0.3.10"; }
  5224. enabled libv4l2 && require_pkg_config libv4l2 libv4l2.h v4l2_ioctl
  5225. enabled libvidstab && require_pkg_config "vidstab >= 0.98" vid.stab/libvidstab.h vsMotionDetectInit
  5226. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  5227. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  5228. enabled libvpx && {
  5229. enabled libvpx_vp8_decoder && {
  5230. use_pkg_config "vpx >= 0.9.1" "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_vp8_dx ||
  5231. check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
  5232. die "ERROR: libvpx decoder version must be >=0.9.1";
  5233. }
  5234. enabled libvpx_vp8_encoder && {
  5235. use_pkg_config "vpx >= 0.9.7" "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_vp8_cx ||
  5236. check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VP8E_SET_MAX_INTRA_BITRATE_PCT" -lvpx ||
  5237. die "ERROR: libvpx encoder version must be >=0.9.7";
  5238. }
  5239. enabled libvpx_vp9_decoder && {
  5240. use_pkg_config "vpx >= 1.3.0" "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_vp9_dx ||
  5241. check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_vp9_dx" -lvpx ||
  5242. disable libvpx_vp9_decoder;
  5243. }
  5244. enabled libvpx_vp9_encoder && {
  5245. use_pkg_config "vpx >= 1.3.0" "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_vp9_cx ||
  5246. check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_vp9_cx VP9E_SET_AQ_MODE" -lvpx ||
  5247. disable libvpx_vp9_encoder;
  5248. }
  5249. if disabled_all libvpx_vp8_decoder libvpx_vp9_decoder libvpx_vp8_encoder libvpx_vp9_encoder; then
  5250. die "libvpx enabled but no supported decoders found"
  5251. fi
  5252. }
  5253. enabled libwavpack && require libwavpack wavpack/wavpack.h WavpackOpenFileOutput -lwavpack
  5254. enabled libwebp && {
  5255. enabled libwebp_encoder && require_pkg_config "libwebp >= 0.2.0" webp/encode.h WebPGetEncoderVersion
  5256. enabled libwebp_anim_encoder && { use_pkg_config "libwebpmux >= 0.4.0" webp/mux.h WebPAnimEncoderOptionsInit || disable libwebp_anim_encoder; } }
  5257. enabled libx264 && { use_pkg_config x264 "stdint.h x264.h" x264_encoder_encode ||
  5258. { require libx264 x264.h x264_encoder_encode -lx264 &&
  5259. warn "using libx264 without pkg-config"; } } &&
  5260. { check_cpp_condition x264.h "X264_BUILD >= 118" ||
  5261. die "ERROR: libx264 must be installed and version must be >= 0.118."; } &&
  5262. { check_cpp_condition x264.h "X264_MPEG2" &&
  5263. enable libx262; }
  5264. enabled libx265 && require_pkg_config x265 x265.h x265_api_get &&
  5265. { check_cpp_condition x265.h "X265_BUILD >= 68" ||
  5266. die "ERROR: libx265 version must be >= 68."; }
  5267. enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
  5268. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  5269. enabled libzimg && require_pkg_config zimg zimg.h zimg_get_api_version
  5270. enabled libzmq && require_pkg_config libzmq zmq.h zmq_ctx_new
  5271. enabled libzvbi && require libzvbi libzvbi.h vbi_decoder_new -lzvbi &&
  5272. { check_cpp_condition libzvbi.h "VBI_VERSION_MAJOR > 0 || VBI_VERSION_MINOR > 2 || VBI_VERSION_MINOR == 2 && VBI_VERSION_MICRO >= 28" ||
  5273. enabled gpl || die "ERROR: libzvbi requires version 0.2.28 or --enable-gpl."; }
  5274. enabled mediacodec && { enabled jni || die "ERROR: mediacodec requires --enable-jni"; }
  5275. enabled mmal && { check_lib interface/mmal/mmal.h mmal_port_connect -lmmal_core -lmmal_util -lmmal_vc_client -lbcm_host ||
  5276. { ! enabled cross_compile && {
  5277. add_cflags -isystem/opt/vc/include/ -isystem/opt/vc/include/interface/vmcs_host/linux -isystem/opt/vc/include/interface/vcos/pthreads -fgnu89-inline ;
  5278. add_extralibs -L/opt/vc/lib/ -lmmal_core -lmmal_util -lmmal_vc_client -lbcm_host ;
  5279. check_lib interface/mmal/mmal.h mmal_port_connect ; }
  5280. check_lib interface/mmal/mmal.h mmal_port_connect ; } ||
  5281. die "ERROR: mmal not found"; }
  5282. enabled mmal && check_func_headers interface/mmal/mmal.h "MMAL_PARAMETER_VIDEO_MAX_NUM_CALLBACKS"
  5283. enabled netcdf && require_pkg_config netcdf netcdf.h nc_inq_libvers
  5284. enabled nvenc && { check_header nvEncodeAPI.h || die "ERROR: nvEncodeAPI.h not found."; } &&
  5285. { check_cpp_condition nvEncodeAPI.h "NVENCAPI_MAJOR_VERSION >= 6" ||
  5286. die "ERROR: NVENC API version 5 or older is not supported"; } &&
  5287. { [ $target_os != cygwin ] || die "ERROR: NVENC is not supported on Cygwin currently."; }
  5288. enabled openal && { { for al_libs in "${OPENAL_LIBS}" "-lopenal" "-lOpenAL32"; do
  5289. check_lib 'AL/al.h' alGetError "${al_libs}" && break; done } ||
  5290. die "ERROR: openal not found"; } &&
  5291. { check_cpp_condition "AL/al.h" "defined(AL_VERSION_1_1)" ||
  5292. die "ERROR: openal must be installed and version must be 1.1 or compatible"; }
  5293. enabled opencl && { check_lib2 OpenCL/cl.h clEnqueueNDRangeKernel -Wl,-framework,OpenCL ||
  5294. check_lib2 CL/cl.h clEnqueueNDRangeKernel -lOpenCL ||
  5295. die "ERROR: opencl not found"; } &&
  5296. { check_cpp_condition "OpenCL/cl.h" "defined(CL_VERSION_1_2)" ||
  5297. check_cpp_condition "CL/cl.h" "defined(CL_VERSION_1_2)" ||
  5298. die "ERROR: opencl must be installed and version must be 1.2 or compatible"; }
  5299. enabled opengl && { check_lib GL/glx.h glXGetProcAddress "-lGL" ||
  5300. check_lib2 windows.h wglGetProcAddress "-lopengl32 -lgdi32" ||
  5301. check_lib2 OpenGL/gl3.h glGetError "-Wl,-framework,OpenGL" ||
  5302. check_lib2 ES2/gl.h glGetError "-isysroot=${sysroot} -Wl,-framework,OpenGLES" ||
  5303. die "ERROR: opengl not found."
  5304. }
  5305. enabled omx_rpi && enable omx
  5306. enabled omx && { check_header OMX_Core.h ||
  5307. { ! enabled cross_compile && enabled omx_rpi && {
  5308. add_cflags -isystem/opt/vc/include/IL ; }
  5309. check_header OMX_Core.h ; } ||
  5310. die "ERROR: OpenMAX IL headers not found"; }
  5311. enabled openssl && { use_pkg_config openssl openssl/ssl.h SSL_library_init ||
  5312. check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
  5313. check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
  5314. check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
  5315. die "ERROR: openssl not found"; }
  5316. enabled qtkit_indev && { check_header_objcc QTKit/QTKit.h || disable qtkit_indev; }
  5317. # libdc1394 check
  5318. if enabled libdc1394; then
  5319. { require_pkg_config libdc1394-2 dc1394/dc1394.h dc1394_new &&
  5320. enable libdc1394_2; } ||
  5321. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  5322. enable libdc1394_1; } ||
  5323. die "ERROR: No version of libdc1394 found "
  5324. fi
  5325. if enabled gcrypt; then
  5326. GCRYPT_CONFIG="${cross_prefix}libgcrypt-config"
  5327. if "${GCRYPT_CONFIG}" --version > /dev/null 2>&1; then
  5328. gcrypt_cflags=$("${GCRYPT_CONFIG}" --cflags)
  5329. gcrypt_libs=$("${GCRYPT_CONFIG}" --libs)
  5330. check_func_headers gcrypt.h gcry_mpi_new $gcrypt_cflags $gcrypt_libs ||
  5331. die "ERROR: gcrypt not found"
  5332. add_cflags $gcrypt_cflags && add_extralibs $gcrypt_libs
  5333. else
  5334. require2 gcrypt gcrypt.h gcry_mpi_new -lgcrypt
  5335. fi
  5336. fi
  5337. if ! disabled sdl; then
  5338. SDL_CONFIG="${cross_prefix}sdl-config"
  5339. if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
  5340. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  5341. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
  5342. enable sdl
  5343. else
  5344. if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
  5345. sdl_cflags=$("${SDL_CONFIG}" --cflags)
  5346. sdl_libs=$("${SDL_CONFIG}" --libs)
  5347. check_func_headers SDL_version.h SDL_Linked_Version $sdl_cflags $sdl_libs &&
  5348. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  5349. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
  5350. enable sdl
  5351. elif enabled sdl ; then
  5352. die "ERROR: SDL not found"
  5353. else
  5354. disable sdl
  5355. fi
  5356. fi
  5357. if test $target_os = "mingw32"; then
  5358. sdl_libs="$sdl_libs -mconsole"
  5359. fi
  5360. fi
  5361. enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs
  5362. disabled securetransport || { check_func SecIdentityCreate "-Wl,-framework,CoreFoundation -Wl,-framework,Security" &&
  5363. check_lib2 "Security/SecureTransport.h Security/Security.h" "SSLCreateContext SecItemImport" "-Wl,-framework,CoreFoundation -Wl,-framework,Security" &&
  5364. enable securetransport; }
  5365. disabled schannel || { check_func_headers "windows.h security.h" InitializeSecurityContext -DSECURITY_WIN32 -lsecur32 &&
  5366. check_cpp_condition winerror.h "defined(SEC_I_CONTEXT_EXPIRED)" && enable schannel && add_extralibs -lsecur32; }
  5367. makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo
  5368. enabled makeinfo \
  5369. && [ 0$(makeinfo --version | grep "texinfo" | sed 's/.*texinfo[^0-9]*\([0-9]*\)\..*/\1/') -ge 5 ] \
  5370. && enable makeinfo_html || disable makeinfo_html
  5371. disabled makeinfo_html && texi2html --help 2> /dev/null | grep -q 'init-file' && enable texi2html || disable texi2html
  5372. perl -v > /dev/null 2>&1 && enable perl || disable perl
  5373. pod2man --help > /dev/null 2>&1 && enable pod2man || disable pod2man
  5374. rsync --help 2> /dev/null | grep -q 'contimeout' && enable rsync_contimeout || disable rsync_contimeout
  5375. check_header linux/fb.h
  5376. check_header linux/videodev.h
  5377. check_header linux/videodev2.h
  5378. check_code cc linux/videodev2.h "struct v4l2_frmsizeenum vfse; vfse.discrete.width = 0;" && enable_safe struct_v4l2_frmivalenum_discrete
  5379. check_header sys/videoio.h
  5380. check_code cc sys/videoio.h "struct v4l2_frmsizeenum vfse; vfse.discrete.width = 0;" && enable_safe struct_v4l2_frmivalenum_discrete
  5381. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  5382. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  5383. # w32api 3.12 had it defined wrong
  5384. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  5385. check_type "dshow.h" IBaseFilter
  5386. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  5387. { check_header dev/bktr/ioctl_meteor.h &&
  5388. check_header dev/bktr/ioctl_bt848.h; } ||
  5389. { check_header machine/ioctl_meteor.h &&
  5390. check_header machine/ioctl_bt848.h; } ||
  5391. { check_header dev/video/meteor/ioctl_meteor.h &&
  5392. check_header dev/video/bktr/ioctl_bt848.h; } ||
  5393. check_header dev/ic/bt8xx.h
  5394. check_header sndio.h
  5395. if check_struct sys/soundcard.h audio_buf_info bytes; then
  5396. enable_safe sys/soundcard.h
  5397. else
  5398. check_cc -D__BSD_VISIBLE -D__XSI_VISIBLE <<EOF && add_cppflags -D__BSD_VISIBLE -D__XSI_VISIBLE && enable_safe sys/soundcard.h
  5399. #include <sys/soundcard.h>
  5400. audio_buf_info abc;
  5401. EOF
  5402. fi
  5403. check_header soundcard.h
  5404. enabled_any alsa_indev alsa_outdev &&
  5405. check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  5406. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack &&
  5407. check_func jack_port_get_latency_range -ljack
  5408. enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
  5409. if enabled libcdio; then
  5410. check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
  5411. check_lib2 "cdio/paranoia/cdda.h cdio/paranoia/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
  5412. die "ERROR: No usable libcdio/cdparanoia found"
  5413. fi
  5414. enabled xlib &&
  5415. check_lib X11/Xlib.h XOpenDisplay -lX11 || disable xlib
  5416. if ! disabled libxcb; then
  5417. check_pkg_config "xcb >= 1.4" xcb/xcb.h xcb_connect || {
  5418. enabled libxcb && die "ERROR: libxcb >= 1.4 not found";
  5419. } && disable x11grab && enable libxcb
  5420. if enabled libxcb; then
  5421. disabled libxcb_shm || {
  5422. check_pkg_config xcb-shm xcb/shm.h xcb_shm_attach || {
  5423. enabled libxcb_shm && die "ERROR: libxcb_shm not found";
  5424. } && check_header sys/shm.h && enable libxcb_shm; }
  5425. disabled libxcb_xfixes || {
  5426. check_pkg_config xcb-xfixes xcb/xfixes.h xcb_xfixes_get_cursor_image || {
  5427. enabled libxcb_xfixes && die "ERROR: libxcb_xfixes not found";
  5428. } && enable libxcb_xfixes; }
  5429. disabled libxcb_shape || {
  5430. check_pkg_config xcb-shape xcb/shape.h xcb_shape_get_rectangles || {
  5431. enabled libxcb_shape && die "ERROR: libxcb_shape not found";
  5432. } && enable libxcb_shape; }
  5433. add_cflags $xcb_cflags $xcb_shm_cflags $xcb_xfixes_cflags $xcb_shape_cflags
  5434. add_extralibs $xcb_libs $xcb_shm_libs $xcb_xfixes_libs $xcb_shape_libs
  5435. fi
  5436. fi
  5437. if enabled x11grab; then
  5438. enabled xlib || die "ERROR: Xlib not found"
  5439. require Xext X11/extensions/XShm.h XShmCreateImage -lXext
  5440. require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
  5441. fi
  5442. check_func_headers "windows.h" CreateDIBSection "$gdigrab_indev_extralibs"
  5443. enabled dxva2api_h &&
  5444. check_cc <<EOF && enable dxva2api_cobj
  5445. #define _WIN32_WINNT 0x0600
  5446. #define COBJMACROS
  5447. #include <windows.h>
  5448. #include <d3d9.h>
  5449. #include <dxva2api.h>
  5450. int main(void) { IDirectXVideoDecoder *o = NULL; IDirectXVideoDecoder_Release(o); return 0; }
  5451. EOF
  5452. enabled vaapi &&
  5453. check_lib va/va.h vaInitialize -lva ||
  5454. disable vaapi
  5455. enabled vaapi &&
  5456. check_code cc "va/va.h" "vaCreateSurfaces(0, 0, 0, 0, 0, 0, 0, 0)" ||
  5457. disable vaapi
  5458. if enabled vaapi ; then
  5459. enabled xlib &&
  5460. check_lib2 "va/va.h va/va_x11.h" vaGetDisplay -lva -lva-x11 &&
  5461. enable vaapi_x11
  5462. check_lib2 "va/va.h va/va_drm.h" vaGetDisplayDRM -lva -lva-drm &&
  5463. enable vaapi_drm
  5464. fi
  5465. enabled vdpau &&
  5466. check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  5467. disable vdpau
  5468. enabled vdpau && enabled xlib &&
  5469. check_lib2 "vdpau/vdpau.h vdpau/vdpau_x11.h" vdp_device_create_x11 -lvdpau &&
  5470. enable vdpau_x11
  5471. # Funny iconv installations are not unusual, so check it after all flags have been set
  5472. disabled iconv || check_func_headers iconv.h iconv || check_lib2 iconv.h iconv -liconv || disable iconv
  5473. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  5474. # add some useful compiler flags if supported
  5475. check_cflags -Wdeclaration-after-statement
  5476. check_cflags -Wall
  5477. check_cflags -Wdisabled-optimization
  5478. check_cflags -Wpointer-arith
  5479. check_cflags -Wredundant-decls
  5480. check_cflags -Wwrite-strings
  5481. check_cflags -Wtype-limits
  5482. check_cflags -Wundef
  5483. check_cflags -Wmissing-prototypes
  5484. check_cflags -Wno-pointer-to-int-cast
  5485. check_cflags -Wstrict-prototypes
  5486. check_cflags -Wempty-body
  5487. enabled extra_warnings && check_cflags -Winline
  5488. enabled extra_warnings && check_cflags -Wcast-qual
  5489. check_disable_warning(){
  5490. warning_flag=-W${1#-Wno-}
  5491. test_cflags $warning_flag && add_cflags $1
  5492. }
  5493. check_disable_warning -Wno-parentheses
  5494. check_disable_warning -Wno-switch
  5495. check_disable_warning -Wno-format-zero-length
  5496. check_disable_warning -Wno-pointer-sign
  5497. check_disable_warning -Wno-unused-const-variable
  5498. # add some linker flags
  5499. check_ldflags -Wl,--warn-common
  5500. check_ldflags -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
  5501. enabled rpath && add_ldexeflags -Wl,-rpath,$libdir
  5502. enabled rpath && add_ldlibflags -Wl,-rpath,$libdir
  5503. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  5504. # add some strip flags
  5505. # -wN '..@*' is more selective than -x, but not available everywhere.
  5506. check_stripflags -wN \'..@*\' || check_stripflags -x
  5507. enabled neon_clobber_test &&
  5508. check_ldflags -Wl,--wrap,avcodec_open2 \
  5509. -Wl,--wrap,avcodec_decode_audio4 \
  5510. -Wl,--wrap,avcodec_decode_video2 \
  5511. -Wl,--wrap,avcodec_decode_subtitle2 \
  5512. -Wl,--wrap,avcodec_encode_audio2 \
  5513. -Wl,--wrap,avcodec_encode_video2 \
  5514. -Wl,--wrap,avcodec_send_packet \
  5515. -Wl,--wrap,avcodec_receive_frame \
  5516. -Wl,--wrap,avcodec_encode_subtitle \
  5517. -Wl,--wrap,swr_convert \
  5518. -Wl,--wrap,avresample_convert ||
  5519. disable neon_clobber_test
  5520. enabled xmm_clobber_test &&
  5521. check_ldflags -Wl,--wrap,avcodec_open2 \
  5522. -Wl,--wrap,avcodec_decode_audio4 \
  5523. -Wl,--wrap,avcodec_decode_video2 \
  5524. -Wl,--wrap,avcodec_decode_subtitle2 \
  5525. -Wl,--wrap,avcodec_encode_audio2 \
  5526. -Wl,--wrap,avcodec_encode_video2 \
  5527. -Wl,--wrap,avcodec_encode_subtitle \
  5528. -Wl,--wrap,avcodec_send_packet \
  5529. -Wl,--wrap,avcodec_receive_frame \
  5530. -Wl,--wrap,swr_convert \
  5531. -Wl,--wrap,avresample_convert \
  5532. -Wl,--wrap,sws_scale ||
  5533. disable xmm_clobber_test
  5534. check_ld "cc" <<EOF && enable proper_dce
  5535. extern const int array[512];
  5536. static inline int func(void) { return array[0]; }
  5537. int main(void) { return 0; }
  5538. EOF
  5539. if enabled proper_dce; then
  5540. echo "X { local: *; };" > $TMPV
  5541. if test_ldflags -Wl,${version_script},$TMPV; then
  5542. append SHFLAGS '-Wl,${version_script},\$(SUBDIR)lib\$(NAME).ver'
  5543. check_cc <<EOF && enable symver_asm_label
  5544. void ff_foo(void) __asm__ ("av_foo@VERSION");
  5545. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  5546. EOF
  5547. check_cc <<EOF && enable symver_gnu_asm
  5548. __asm__(".symver ff_foo,av_foo@VERSION");
  5549. void ff_foo(void) {}
  5550. EOF
  5551. fi
  5552. fi
  5553. if [ -z "$optflags" ]; then
  5554. if enabled small; then
  5555. optflags=$cflags_size
  5556. elif enabled optimizations; then
  5557. optflags=$cflags_speed
  5558. else
  5559. optflags=$cflags_noopt
  5560. fi
  5561. fi
  5562. check_optflags(){
  5563. check_cflags "$@"
  5564. enabled lto && check_ldflags "$@"
  5565. }
  5566. if enabled lto; then
  5567. test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
  5568. check_cflags -flto
  5569. check_ldflags -flto $cpuflags
  5570. disable inline_asm_direct_symbol_refs
  5571. fi
  5572. check_optflags $optflags
  5573. check_optflags -fno-math-errno
  5574. check_optflags -fno-signed-zeros
  5575. enabled ftrapv && check_cflags -ftrapv
  5576. check_cc -mno-red-zone <<EOF && noredzone_flags="-mno-red-zone"
  5577. int x;
  5578. EOF
  5579. if enabled icc; then
  5580. # Just warnings, no remarks
  5581. check_cflags -w1
  5582. # -wd: Disable following warnings
  5583. # 144, 167, 556: -Wno-pointer-sign
  5584. # 188: enumerated type mixed with another type
  5585. # 1292: attribute "foo" ignored
  5586. # 1419: external declaration in primary source file
  5587. # 10006: ignoring unknown option -fno-signed-zeros
  5588. # 10148: ignoring unknown option -Wno-parentheses
  5589. # 10156: ignoring option '-W'; no argument required
  5590. # 13200: No EMMS instruction before call to function
  5591. # 13203: No EMMS instruction before return from function
  5592. check_cflags -wd144,167,188,556,1292,1419,10006,10148,10156,13200,13203
  5593. # 11030: Warning unknown option --as-needed
  5594. # 10156: ignoring option '-export'; no argument required
  5595. check_ldflags -wd10156,11030
  5596. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  5597. enable ebp_available
  5598. # The test above does not test linking
  5599. enabled lto && disable symver_asm_label
  5600. if enabled x86_32; then
  5601. icc_version=$($cc -dumpversion)
  5602. test ${icc_version%%.*} -ge 11 &&
  5603. check_cflags -falign-stack=maintain-16-byte ||
  5604. disable aligned_stack
  5605. fi
  5606. elif enabled ccc; then
  5607. # disable some annoying warnings
  5608. add_cflags -msg_disable bitnotint
  5609. add_cflags -msg_disable mixfuncvoid
  5610. add_cflags -msg_disable nonstandcast
  5611. add_cflags -msg_disable unsupieee
  5612. elif enabled gcc; then
  5613. check_optflags -fno-tree-vectorize
  5614. check_cflags -Werror=format-security
  5615. check_cflags -Werror=implicit-function-declaration
  5616. check_cflags -Werror=missing-prototypes
  5617. check_cflags -Werror=return-type
  5618. check_cflags -Werror=vla
  5619. check_cflags -Wformat
  5620. check_cflags -fdiagnostics-color=auto
  5621. enabled extra_warnings || check_disable_warning -Wno-maybe-uninitialized
  5622. elif enabled llvm_gcc; then
  5623. check_cflags -mllvm -stack-alignment=16
  5624. elif enabled clang; then
  5625. check_cflags -mllvm -stack-alignment=16
  5626. check_cflags -Qunused-arguments
  5627. check_cflags -Werror=implicit-function-declaration
  5628. check_cflags -Werror=missing-prototypes
  5629. check_cflags -Werror=return-type
  5630. elif enabled cparser; then
  5631. add_cflags -Wno-missing-variable-declarations
  5632. add_cflags -Wno-empty-statement
  5633. elif enabled armcc; then
  5634. add_cflags -W${armcc_opt},--diag_suppress=4343 # hardfp compat
  5635. add_cflags -W${armcc_opt},--diag_suppress=3036 # using . as system include dir
  5636. # 2523: use of inline assembly is deprecated
  5637. add_cflags -W${armcc_opt},--diag_suppress=2523
  5638. add_cflags -W${armcc_opt},--diag_suppress=1207
  5639. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  5640. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  5641. add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
  5642. add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
  5643. elif enabled tms470; then
  5644. add_cflags -pds=824 -pds=837
  5645. disable inline_asm
  5646. elif enabled pathscale; then
  5647. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  5648. elif enabled_any msvc icl; then
  5649. enabled x86_32 && disable aligned_stack
  5650. enabled_all x86_32 debug && add_cflags -Oy-
  5651. enabled debug && add_ldflags -debug
  5652. enable pragma_deprecated
  5653. if enabled icl; then
  5654. # -Qansi-alias is basically -fstrict-aliasing, but does not work
  5655. # (correctly) on icl 13.x.
  5656. check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" &&
  5657. add_cflags -Qansi-alias
  5658. # Some inline asm is not compilable in debug
  5659. if enabled debug; then
  5660. disable ebp_available
  5661. disable ebx_available
  5662. fi
  5663. fi
  5664. # msvcrt10 x64 incorrectly enables log2, only msvcrt12 (MSVC 2013) onwards actually has log2.
  5665. check_cpp_condition crtversion.h "_VC_CRT_MAJOR_VERSION >= 12" || disable log2
  5666. # The CRT headers contain __declspec(restrict) in a few places, but if redefining
  5667. # restrict, this might break. MSVC 2010 and 2012 fail with __declspec(__restrict)
  5668. # (as it ends up if the restrict redefine is done before including stdlib.h), while
  5669. # MSVC 2013 and newer can handle it fine.
  5670. # If this declspec fails, force including stdlib.h before the restrict redefinition
  5671. # happens in config.h.
  5672. if [ $_restrict != restrict ]; then
  5673. check_cc <<EOF || add_cflags -FIstdlib.h
  5674. __declspec($_restrict) void* foo(int);
  5675. EOF
  5676. fi
  5677. check_func strtoll || add_cflags -Dstrtoll=_strtoi64
  5678. # the new SSA optimzer in VS2015 U3 is mis-optimizing some parts of the code
  5679. # this flag should be re-checked on newer compiler releases and put under a
  5680. # version check once its fixed
  5681. check_cflags -d2SSAOptimizer-
  5682. fi
  5683. for pfx in "" host_; do
  5684. varname=${pfx%_}cc_type
  5685. eval "type=\$$varname"
  5686. if [ $type = "msvc" ]; then
  5687. check_${pfx}cc <<EOF || add_${pfx}cflags -Dinline=__inline
  5688. static inline int foo(int a) { return a; }
  5689. EOF
  5690. fi
  5691. done
  5692. case $as_type in
  5693. clang)
  5694. add_asflags -Qunused-arguments
  5695. ;;
  5696. esac
  5697. case $ld_type in
  5698. clang)
  5699. check_ldflags -Qunused-arguments
  5700. ;;
  5701. esac
  5702. case $target_os in
  5703. osf1)
  5704. enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
  5705. ;;
  5706. plan9)
  5707. add_cppflags -Dmain=plan9_main
  5708. ;;
  5709. esac
  5710. enable frame_thread_encoder
  5711. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  5712. check_deps $CONFIG_LIST \
  5713. $CONFIG_EXTRA \
  5714. $HAVE_LIST \
  5715. $ALL_COMPONENTS \
  5716. enabled threads && ! enabled pthreads && ! enabled atomics_native && die "non pthread threading without atomics not supported, try adding --enable-pthreads or --cpu=i486 or higher if you are on x86"
  5717. if test $target_os = "haiku"; then
  5718. disable memalign
  5719. disable posix_memalign
  5720. fi
  5721. enabled_all dxva2 dxva2api_cobj CoTaskMemFree &&
  5722. prepend ffmpeg_libs $($ldflags_filter "-lole32" "-luser32") &&
  5723. enable dxva2_lib
  5724. ! enabled_any memalign posix_memalign aligned_malloc &&
  5725. enabled simd_align_16 && enable memalign_hack
  5726. # add_dep lib dep
  5727. # -> enable ${lib}_deps_${dep}
  5728. # -> add $dep to ${lib}_deps only once
  5729. add_dep() {
  5730. lib=$1
  5731. dep=$2
  5732. enabled "${lib}_deps_${dep}" && return 0
  5733. enable "${lib}_deps_${dep}"
  5734. prepend "${lib}_deps" $dep
  5735. }
  5736. # merge deps lib components
  5737. # merge all ${component}_deps into ${lib}_deps and ${lib}_deps_*
  5738. merge_deps() {
  5739. lib=$1
  5740. shift
  5741. for comp in $*; do
  5742. enabled $comp || continue
  5743. eval "dep=\"\$${comp}_deps\""
  5744. for d in $dep; do
  5745. add_dep $lib $d
  5746. done
  5747. done
  5748. }
  5749. merge_deps libavfilter $FILTER_LIST
  5750. map 'enabled $v && intrinsics=${v#intrinsics_}' $INTRINSICS_LIST
  5751. for thread in $THREADS_LIST; do
  5752. if enabled $thread; then
  5753. test -n "$thread_type" &&
  5754. die "ERROR: Only one thread type must be selected." ||
  5755. thread_type="$thread"
  5756. fi
  5757. done
  5758. enabled zlib && add_cppflags -DZLIB_CONST
  5759. # conditional library dependencies, in linking order
  5760. enabled afftfilt_filter && prepend avfilter_deps "avcodec"
  5761. enabled amovie_filter && prepend avfilter_deps "avformat avcodec"
  5762. enabled aresample_filter && prepend avfilter_deps "swresample"
  5763. enabled asyncts_filter && prepend avfilter_deps "avresample"
  5764. enabled atempo_filter && prepend avfilter_deps "avcodec"
  5765. enabled cover_rect_filter && prepend avfilter_deps "avformat avcodec"
  5766. enabled ebur128_filter && enabled swresample && prepend avfilter_deps "swresample"
  5767. enabled elbg_filter && prepend avfilter_deps "avcodec"
  5768. enabled fftfilt_filter && prepend avfilter_deps "avcodec"
  5769. enabled find_rect_filter && prepend avfilter_deps "avformat avcodec"
  5770. enabled mcdeint_filter && prepend avfilter_deps "avcodec"
  5771. enabled movie_filter && prepend avfilter_deps "avformat avcodec"
  5772. enabled pan_filter && prepend avfilter_deps "swresample"
  5773. enabled pp_filter && prepend avfilter_deps "postproc"
  5774. enabled removelogo_filter && prepend avfilter_deps "avformat avcodec swscale"
  5775. enabled resample_filter && prepend avfilter_deps "avresample"
  5776. enabled sab_filter && prepend avfilter_deps "swscale"
  5777. enabled scale_filter && prepend avfilter_deps "swscale"
  5778. enabled scale2ref_filter && prepend avfilter_deps "swscale"
  5779. enabled sofalizer_filter && prepend avfilter_deps "avcodec"
  5780. enabled showcqt_filter && prepend avfilter_deps "avformat avcodec swscale"
  5781. enabled showfreqs_filter && prepend avfilter_deps "avcodec"
  5782. enabled showspectrum_filter && prepend avfilter_deps "avcodec"
  5783. enabled smartblur_filter && prepend avfilter_deps "swscale"
  5784. enabled spectrumsynth_filter && prepend avfilter_deps "avcodec"
  5785. enabled subtitles_filter && prepend avfilter_deps "avformat avcodec"
  5786. enabled uspp_filter && prepend avfilter_deps "avcodec"
  5787. enabled lavfi_indev && prepend avdevice_deps "avfilter"
  5788. enabled opus_decoder && prepend avcodec_deps "swresample"
  5789. expand_deps(){
  5790. lib_deps=${1}_deps
  5791. eval "deps=\$$lib_deps"
  5792. append $lib_deps $(map 'eval echo \$${v}_deps' $deps)
  5793. unique $lib_deps
  5794. }
  5795. #we have to remove gpl from the deps here as some code assumes all lib deps are libs
  5796. postproc_deps="$(filter_out 'gpl' $postproc_deps)"
  5797. map 'expand_deps $v' $LIBRARY_LIST
  5798. echo "install prefix $prefix"
  5799. echo "source path $source_path"
  5800. echo "C compiler $cc"
  5801. echo "C library $libc_type"
  5802. if test "$host_cc" != "$cc"; then
  5803. echo "host C compiler $host_cc"
  5804. echo "host C library $host_libc_type"
  5805. fi
  5806. echo "ARCH $arch ($cpu)"
  5807. if test "$build_suffix" != ""; then
  5808. echo "build suffix $build_suffix"
  5809. fi
  5810. if test "$progs_suffix" != ""; then
  5811. echo "progs suffix $progs_suffix"
  5812. fi
  5813. if test "$extra_version" != ""; then
  5814. echo "version string suffix $extra_version"
  5815. fi
  5816. echo "big-endian ${bigendian-no}"
  5817. echo "runtime cpu detection ${runtime_cpudetect-no}"
  5818. if enabled x86; then
  5819. echo "${yasmexe} ${yasm-no}"
  5820. echo "MMX enabled ${mmx-no}"
  5821. echo "MMXEXT enabled ${mmxext-no}"
  5822. echo "3DNow! enabled ${amd3dnow-no}"
  5823. echo "3DNow! extended enabled ${amd3dnowext-no}"
  5824. echo "SSE enabled ${sse-no}"
  5825. echo "SSSE3 enabled ${ssse3-no}"
  5826. echo "AESNI enabled ${aesni-no}"
  5827. echo "AVX enabled ${avx-no}"
  5828. echo "XOP enabled ${xop-no}"
  5829. echo "FMA3 enabled ${fma3-no}"
  5830. echo "FMA4 enabled ${fma4-no}"
  5831. echo "i686 features enabled ${i686-no}"
  5832. echo "CMOV is fast ${fast_cmov-no}"
  5833. echo "EBX available ${ebx_available-no}"
  5834. echo "EBP available ${ebp_available-no}"
  5835. fi
  5836. if enabled aarch64; then
  5837. echo "NEON enabled ${neon-no}"
  5838. echo "VFP enabled ${vfp-no}"
  5839. fi
  5840. if enabled arm; then
  5841. echo "ARMv5TE enabled ${armv5te-no}"
  5842. echo "ARMv6 enabled ${armv6-no}"
  5843. echo "ARMv6T2 enabled ${armv6t2-no}"
  5844. echo "VFP enabled ${vfp-no}"
  5845. echo "NEON enabled ${neon-no}"
  5846. echo "THUMB enabled ${thumb-no}"
  5847. fi
  5848. if enabled mips; then
  5849. echo "MIPS FPU enabled ${mipsfpu-no}"
  5850. echo "MIPS DSP R1 enabled ${mipsdsp-no}"
  5851. echo "MIPS DSP R2 enabled ${mipsdspr2-no}"
  5852. echo "MIPS MSA enabled ${msa-no}"
  5853. echo "LOONGSON MMI enabled ${mmi-no}"
  5854. fi
  5855. if enabled ppc; then
  5856. echo "AltiVec enabled ${altivec-no}"
  5857. echo "VSX enabled ${vsx-no}"
  5858. echo "POWER8 enabled ${power8-no}"
  5859. echo "PPC 4xx optimizations ${ppc4xx-no}"
  5860. echo "dcbzl available ${dcbzl-no}"
  5861. fi
  5862. echo "debug symbols ${debug-no}"
  5863. echo "strip symbols ${stripping-no}"
  5864. echo "optimize for size ${small-no}"
  5865. echo "optimizations ${optimizations-no}"
  5866. echo "static ${static-no}"
  5867. echo "shared ${shared-no}"
  5868. echo "postprocessing support ${postproc-no}"
  5869. echo "new filter support ${avfilter-no}"
  5870. echo "network support ${network-no}"
  5871. echo "threading support ${thread_type-no}"
  5872. echo "safe bitstream reader ${safe_bitstream_reader-no}"
  5873. echo "SDL support ${sdl-no}"
  5874. echo "opencl enabled ${opencl-no}"
  5875. echo "JNI support ${jni-no}"
  5876. echo "texi2html enabled ${texi2html-no}"
  5877. echo "perl enabled ${perl-no}"
  5878. echo "pod2man enabled ${pod2man-no}"
  5879. echo "makeinfo enabled ${makeinfo-no}"
  5880. echo "makeinfo supports HTML ${makeinfo_html-no}"
  5881. test -n "$random_seed" &&
  5882. echo "random seed ${random_seed}"
  5883. echo
  5884. echo "Enabled programs:"
  5885. print_enabled '' $PROGRAM_LIST | print_in_columns
  5886. echo
  5887. echo "External libraries:"
  5888. print_enabled '' $EXTERNAL_LIBRARY_LIST | print_in_columns
  5889. echo
  5890. echo "External libraries providing hardware acceleration:"
  5891. print_enabled '' $HWACCEL_LIBRARY_LIST | print_in_columns
  5892. echo
  5893. echo "Libraries:"
  5894. print_enabled '' $LIBRARY_LIST | print_in_columns
  5895. echo
  5896. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  5897. echo "Enabled ${type}s:"
  5898. eval list=\$$(toupper $type)_LIST
  5899. print_enabled '_*' $list | print_in_columns
  5900. echo
  5901. done
  5902. license="LGPL version 2.1 or later"
  5903. if enabled nonfree; then
  5904. license="nonfree and unredistributable"
  5905. elif enabled gplv3; then
  5906. license="GPL version 3 or later"
  5907. elif enabled lgplv3; then
  5908. license="LGPL version 3 or later"
  5909. elif enabled gpl; then
  5910. license="GPL version 2 or later"
  5911. fi
  5912. echo "License: $license"
  5913. echo "Creating config.mak, config.h, and doc/config.texi..."
  5914. test -e Makefile || echo "include $source_path/Makefile" > Makefile
  5915. enabled stripping || strip="echo skipping strip"
  5916. config_files="$TMPH config.mak doc/config.texi"
  5917. cat > config.mak <<EOF
  5918. # Automatically generated by configure - do not modify!
  5919. ifndef FFMPEG_CONFIG_MAK
  5920. FFMPEG_CONFIG_MAK=1
  5921. FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
  5922. prefix=$prefix
  5923. LIBDIR=\$(DESTDIR)$libdir
  5924. SHLIBDIR=\$(DESTDIR)$shlibdir
  5925. INCDIR=\$(DESTDIR)$incdir
  5926. BINDIR=\$(DESTDIR)$bindir
  5927. DATADIR=\$(DESTDIR)$datadir
  5928. DOCDIR=\$(DESTDIR)$docdir
  5929. MANDIR=\$(DESTDIR)$mandir
  5930. PKGCONFIGDIR=\$(DESTDIR)$pkgconfigdir
  5931. INSTALL_NAME_DIR=$install_name_dir
  5932. SRC_PATH=$source_path
  5933. SRC_LINK=$source_link
  5934. ifndef MAIN_MAKEFILE
  5935. SRC_PATH:=\$(SRC_PATH:.%=..%)
  5936. endif
  5937. CC_IDENT=$cc_ident
  5938. ARCH=$arch
  5939. INTRINSICS=$intrinsics
  5940. CC=$cc
  5941. CXX=$cxx
  5942. AS=$as
  5943. OBJCC=$objcc
  5944. LD=$ld
  5945. DEPCC=$dep_cc
  5946. DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
  5947. DEPAS=$as
  5948. DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
  5949. YASM=$yasmexe
  5950. DEPYASM=$yasmexe
  5951. AR=$ar
  5952. ARFLAGS=$arflags
  5953. AR_O=$ar_o
  5954. RANLIB=$ranlib
  5955. STRIP=$strip
  5956. CP=cp -p
  5957. LN_S=$ln_s
  5958. CPPFLAGS=$CPPFLAGS
  5959. CFLAGS=$CFLAGS
  5960. CXXFLAGS=$CXXFLAGS
  5961. OBJCFLAGS=$OBJCFLAGS
  5962. ASFLAGS=$ASFLAGS
  5963. AS_C=$AS_C
  5964. AS_O=$AS_O
  5965. OBJCC_C=$OBJCC_C
  5966. OBJCC_E=$OBJCC_E
  5967. OBJCC_O=$OBJCC_O
  5968. CC_C=$CC_C
  5969. CC_E=$CC_E
  5970. CC_O=$CC_O
  5971. CXX_C=$CXX_C
  5972. CXX_O=$CXX_O
  5973. LD_O=$LD_O
  5974. LD_LIB=$LD_LIB
  5975. LD_PATH=$LD_PATH
  5976. DLLTOOL=$dlltool
  5977. WINDRES=$windres
  5978. DEPWINDRES=$dep_cc
  5979. DOXYGEN=$doxygen
  5980. LDFLAGS=$LDFLAGS
  5981. LDEXEFLAGS=$LDEXEFLAGS
  5982. LDLIBFLAGS=$LDLIBFLAGS
  5983. SHFLAGS=$(echo $($ldflags_filter $SHFLAGS))
  5984. ASMSTRIPFLAGS=$ASMSTRIPFLAGS
  5985. YASMFLAGS=$YASMFLAGS
  5986. BUILDSUF=$build_suffix
  5987. PROGSSUF=$progs_suffix
  5988. FULLNAME=$FULLNAME
  5989. LIBPREF=$LIBPREF
  5990. LIBSUF=$LIBSUF
  5991. LIBNAME=$LIBNAME
  5992. SLIBPREF=$SLIBPREF
  5993. SLIBSUF=$SLIBSUF
  5994. EXESUF=$EXESUF
  5995. EXTRA_VERSION=$extra_version
  5996. CCDEP=$CCDEP
  5997. CXXDEP=$CXXDEP
  5998. CCDEP_FLAGS=$CCDEP_FLAGS
  5999. ASDEP=$ASDEP
  6000. ASDEP_FLAGS=$ASDEP_FLAGS
  6001. CC_DEPFLAGS=$CC_DEPFLAGS
  6002. AS_DEPFLAGS=$AS_DEPFLAGS
  6003. HOSTCC=$host_cc
  6004. HOSTLD=$host_ld
  6005. HOSTCFLAGS=$host_cflags
  6006. HOSTCPPFLAGS=$host_cppflags
  6007. HOSTEXESUF=$HOSTEXESUF
  6008. HOSTLDFLAGS=$host_ldflags
  6009. HOSTLIBS=$host_libs
  6010. DEPHOSTCC=$host_cc
  6011. DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
  6012. HOSTCCDEP=$HOSTCCDEP
  6013. HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
  6014. HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
  6015. HOSTCC_C=$HOSTCC_C
  6016. HOSTCC_O=$HOSTCC_O
  6017. HOSTLD_O=$HOSTLD_O
  6018. TARGET_EXEC=$target_exec $target_exec_args
  6019. TARGET_PATH=$target_path
  6020. TARGET_SAMPLES=${target_samples:-\$(SAMPLES)}
  6021. CFLAGS-ffplay=$sdl_cflags
  6022. ZLIB=$($ldflags_filter -lz)
  6023. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  6024. EXTRALIBS=$extralibs
  6025. COMPAT_OBJS=$compat_objs
  6026. EXEOBJS=$exeobjs
  6027. INSTALL=$install
  6028. LIBTARGET=${LIBTARGET}
  6029. SLIBNAME=${SLIBNAME}
  6030. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  6031. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  6032. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  6033. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  6034. SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
  6035. SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
  6036. SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
  6037. SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
  6038. VERSION_SCRIPT_POSTPROCESS_CMD=${VERSION_SCRIPT_POSTPROCESS_CMD}
  6039. SAMPLES:=${samples:-\$(FATE_SAMPLES)}
  6040. NOREDZONE_FLAGS=$noredzone_flags
  6041. EOF
  6042. get_version(){
  6043. lcname=lib${1}
  6044. name=$(toupper $lcname)
  6045. file=$source_path/$lcname/version.h
  6046. eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
  6047. enabled raise_major && eval ${name}_VERSION_MAJOR=$((${name}_VERSION_MAJOR+100))
  6048. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  6049. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  6050. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  6051. eval echo "${lcname}_VERSION_MINOR=\$${name}_VERSION_MINOR" >> config.mak
  6052. }
  6053. map 'get_version $v' $LIBRARY_LIST
  6054. map 'eval echo "${v}_FFLIBS=\$${v}_deps" >> config.mak' $LIBRARY_LIST
  6055. print_program_libs(){
  6056. eval "program_libs=\$${1}_libs"
  6057. eval echo "LIBS-${1}=${program_libs}" >> config.mak
  6058. }
  6059. map 'print_program_libs $v' $PROGRAM_LIST
  6060. cat > $TMPH <<EOF
  6061. /* Automatically generated by configure - do not modify! */
  6062. #ifndef FFMPEG_CONFIG_H
  6063. #define FFMPEG_CONFIG_H
  6064. #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
  6065. #define FFMPEG_LICENSE "$(c_escape $license)"
  6066. #define CONFIG_THIS_YEAR 2016
  6067. #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
  6068. #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  6069. #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
  6070. #define av_restrict $_restrict
  6071. #define EXTERN_PREFIX "${extern_prefix}"
  6072. #define EXTERN_ASM ${extern_prefix}
  6073. #define BUILDSUF "$build_suffix"
  6074. #define SLIBSUF "$SLIBSUF"
  6075. #define HAVE_MMX2 HAVE_MMXEXT
  6076. #define SWS_MAX_FILTER_SIZE $sws_max_filter_size
  6077. EOF
  6078. test -n "$assert_level" &&
  6079. echo "#define ASSERT_LEVEL $assert_level" >>$TMPH
  6080. test -n "$malloc_prefix" &&
  6081. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  6082. if enabled yasm; then
  6083. append config_files $TMPASM
  6084. printf '' >$TMPASM
  6085. fi
  6086. enabled getenv || echo "#define getenv(x) NULL" >> $TMPH
  6087. mkdir -p doc
  6088. mkdir -p tests
  6089. mkdir -p tests/api
  6090. echo "@c auto-generated by configure - do not modify! " > doc/config.texi
  6091. print_config ARCH_ "$config_files" $ARCH_LIST
  6092. print_config HAVE_ "$config_files" $HAVE_LIST
  6093. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  6094. $CONFIG_EXTRA \
  6095. $ALL_COMPONENTS \
  6096. echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
  6097. echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
  6098. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  6099. cp_if_changed $TMPH config.h
  6100. touch .config
  6101. enabled yasm && cp_if_changed $TMPASM config.asm
  6102. cat > $TMPH <<EOF
  6103. /* Generated by ffconf */
  6104. #ifndef AVUTIL_AVCONFIG_H
  6105. #define AVUTIL_AVCONFIG_H
  6106. EOF
  6107. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  6108. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  6109. cp_if_changed $TMPH libavutil/avconfig.h
  6110. if test -n "$WARNINGS"; then
  6111. printf "\n%s%s$WARNINGS%s" "$warn_color" "$bold_color" "$reset_color"
  6112. enabled fatal_warnings && exit 1
  6113. fi
  6114. # generate the lists of enabled components
  6115. print_enabled_components(){
  6116. file=$1
  6117. struct_name=$2
  6118. name=$3
  6119. shift 3
  6120. echo "static const $struct_name *$name[] = {" > $TMPH
  6121. for c in $*; do
  6122. enabled $c && printf " &ff_%s,\n" $c >> $TMPH
  6123. done
  6124. echo " NULL };" >> $TMPH
  6125. cp_if_changed $TMPH $file
  6126. }
  6127. print_enabled_components libavcodec/bsf_list.c AVBitStreamFilter bitstream_filters $BSF_LIST
  6128. print_enabled_components libavformat/protocol_list.c URLProtocol url_protocols $PROTOCOL_LIST
  6129. # build pkg-config files
  6130. lib_version(){
  6131. eval printf "\"lib${1}${build_suffix} >= \$LIB$(toupper ${1})_VERSION, \""
  6132. }
  6133. pkgconfig_generate(){
  6134. name=$1
  6135. shortname=${name#lib}${build_suffix}
  6136. comment=$2
  6137. version=$3
  6138. libs=$4
  6139. requires=$(map 'lib_version $v' $(eval echo \$${name#lib}_deps))
  6140. requires=${requires%, }
  6141. enabled ${name#lib} || return 0
  6142. mkdir -p $name
  6143. cat <<EOF > $name/$name${build_suffix}.pc
  6144. prefix=$prefix
  6145. exec_prefix=\${prefix}
  6146. libdir=$libdir
  6147. includedir=$incdir
  6148. Name: $name
  6149. Description: $comment
  6150. Version: $version
  6151. Requires: $(enabled shared || echo $requires)
  6152. Requires.private: $(enabled shared && echo $requires)
  6153. Conflicts:
  6154. Libs: -L\${libdir} $(enabled rpath && echo "-Wl,-rpath,\${libdir}") -l${shortname} $(enabled shared || echo $libs)
  6155. Libs.private: $(enabled shared && echo $libs)
  6156. Cflags: -I\${includedir}
  6157. EOF
  6158. mkdir -p doc/examples/pc-uninstalled
  6159. includedir=${source_path}
  6160. [ "$includedir" = . ] && includedir="\${pcfiledir}/../../.."
  6161. cat <<EOF > doc/examples/pc-uninstalled/$name.pc
  6162. prefix=
  6163. exec_prefix=
  6164. libdir=\${pcfiledir}/../../../$name
  6165. includedir=${includedir}
  6166. Name: $name
  6167. Description: $comment
  6168. Version: $version
  6169. Requires: $requires
  6170. Conflicts:
  6171. Libs: -L\${libdir} -Wl,-rpath,\${libdir} -l${shortname} $(enabled shared || echo $libs)
  6172. Cflags: -I\${includedir}
  6173. EOF
  6174. }
  6175. pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION" "$LIBRT $LIBM"
  6176. pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs"
  6177. pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs"
  6178. pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs"
  6179. pkgconfig_generate libavfilter "FFmpeg audio/video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
  6180. pkgconfig_generate libpostproc "FFmpeg postprocessing library" "$LIBPOSTPROC_VERSION" ""
  6181. pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$LIBM"
  6182. pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM"
  6183. pkgconfig_generate libswresample "FFmpeg audio resampling library" "$LIBSWRESAMPLE_VERSION" "$LIBM $LIBSOXR"