mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 01:47:31 +09:00
Vendor dav1d 1.5.3
This commit is contained in:
parent
a852c0a86a
commit
ee30135ecc
390 changed files with 325535 additions and 0 deletions
85
media/libdav1d/config/config.h
Normal file
85
media/libdav1d/config/config.h
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
/* Mozilla build configuration for bundled dav1d. */
|
||||
#ifndef MOZ_DAV1D_CONFIG_H
|
||||
#define MOZ_DAV1D_CONFIG_H
|
||||
|
||||
#if defined(__x86_64__) || defined(_M_X64)
|
||||
# define ARCH_X86 1
|
||||
# define ARCH_X86_64 1
|
||||
# define ARCH_X86_32 0
|
||||
#elif defined(__i386__) || defined(_M_IX86)
|
||||
# define ARCH_X86 1
|
||||
# define ARCH_X86_64 0
|
||||
# define ARCH_X86_32 1
|
||||
#else
|
||||
# define ARCH_X86 0
|
||||
# define ARCH_X86_64 0
|
||||
# define ARCH_X86_32 0
|
||||
#endif
|
||||
|
||||
#if defined(__aarch64__) || defined(_M_ARM64)
|
||||
# define ARCH_AARCH64 1
|
||||
#else
|
||||
# define ARCH_AARCH64 0
|
||||
#endif
|
||||
|
||||
#if defined(__arm__) || defined(_M_ARM)
|
||||
# define ARCH_ARM 1
|
||||
#else
|
||||
# define ARCH_ARM 0
|
||||
#endif
|
||||
|
||||
#if defined(__loongarch64)
|
||||
# define ARCH_LOONGARCH 1
|
||||
# define ARCH_LOONGARCH64 1
|
||||
#else
|
||||
# define ARCH_LOONGARCH 0
|
||||
# define ARCH_LOONGARCH64 0
|
||||
#endif
|
||||
|
||||
#if defined(__powerpc64__) && defined(_LITTLE_ENDIAN)
|
||||
# define ARCH_PPC64LE 1
|
||||
#else
|
||||
# define ARCH_PPC64LE 0
|
||||
#endif
|
||||
|
||||
#if defined(__riscv)
|
||||
# define ARCH_RISCV 1
|
||||
#else
|
||||
# define ARCH_RISCV 0
|
||||
#endif
|
||||
|
||||
#if defined(IS_BIG_ENDIAN) || defined(__BIG_ENDIAN__)
|
||||
# define ENDIANNESS_BIG 1
|
||||
#else
|
||||
# define ENDIANNESS_BIG 0
|
||||
#endif
|
||||
|
||||
#define CONFIG_8BPC 1
|
||||
#define CONFIG_16BPC 1
|
||||
#define CONFIG_LOG 0
|
||||
#define CONFIG_MACOS_KPERF 0
|
||||
#define HAVE_ASM 0
|
||||
#define TRIM_DSP_FUNCTIONS 0
|
||||
|
||||
#define HAVE_ALIGNED_ALLOC 0
|
||||
#define HAVE_DLSYM 0
|
||||
#define HAVE_ELF_AUX_INFO 0
|
||||
#define HAVE_GETAUXVAL 0
|
||||
#define HAVE_MEMALIGN 0
|
||||
#define HAVE_POSIX_MEMALIGN 0
|
||||
#define HAVE_PTHREAD_GETAFFINITY_NP 0
|
||||
#define HAVE_PTHREAD_NP_H 0
|
||||
#define HAVE_PTHREAD_SETNAME_NP 0
|
||||
#define HAVE_PTHREAD_SET_NAME_NP 0
|
||||
|
||||
#ifdef _WIN32
|
||||
# define HAVE_IO_H 1
|
||||
# define HAVE_SYS_TYPES_H 1
|
||||
# define HAVE_UNISTD_H 0
|
||||
#else
|
||||
# define HAVE_IO_H 0
|
||||
# define HAVE_SYS_TYPES_H 1
|
||||
# define HAVE_UNISTD_H 1
|
||||
#endif
|
||||
|
||||
#endif /* MOZ_DAV1D_CONFIG_H */
|
||||
1
media/libdav1d/config/vcs_version.h
Normal file
1
media/libdav1d/config/vcs_version.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#define DAV1D_VERSION "1.5.3"
|
||||
Loading…
Add table
Add a link
Reference in a new issue