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.

7414 lines
242KB

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