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.

6939 lines
223KB

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