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.

7375 lines
241KB

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