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.

6839 lines
220KB

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