commit cfdd56d095932d22709db6a5c63964cfb5183a1e Author: Ryan Date: Wed Jun 12 10:31:15 2024 +0200 Hello FFmpeg diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..176a458 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c96e1ec --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +.bdep/ + +# Local default options files. +# +.build2/local/ + +# Compiler/linker output. +# +*.d +*.t +*.i +*.i.* +*.ii +*.ii.* +*.o +*.obj +*.gcm +*.pcm +*.ifc +*.so +*.dylib +*.dll +*.a +*.lib +*.exp +*.pdb +*.ilk +*.exe +*.exe.dlls/ +*.exe.manifest +*.pc diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..39f2c48 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "upstream"] + path = upstream + url = https://github.com/FFmpeg/FFmpeg.git diff --git a/PACKAGE-README.md b/PACKAGE-README.md new file mode 100644 index 0000000..726097b --- /dev/null +++ b/PACKAGE-README.md @@ -0,0 +1,42 @@ +# libffmpeg - A C++ library + +This is a `build2` package for the [``](https://) +C++ library. It provides . + + +## Usage + +To start using `libffmpeg` in your project, add the following `depends` +value to your `manifest`, adjusting the version constraint as appropriate: + +``` +depends: libffmpeg ^ +``` + +Then import the library in your `buildfile`: + +``` +import libs = libffmpeg%lib{} +``` + + +## Importable targets + +This package provides the following importable targets: + +``` +lib{} +``` + + + + +## Configuration variables + +This package provides the following configuration variables: + +``` +[bool] config.libffmpeg. ?= false +``` + + diff --git a/build/.gitignore b/build/.gitignore new file mode 100644 index 0000000..974e01d --- /dev/null +++ b/build/.gitignore @@ -0,0 +1,4 @@ +/config.build +/root/ +/bootstrap/ +build/ diff --git a/build/bootstrap.build b/build/bootstrap.build new file mode 100644 index 0000000..a1f4a00 --- /dev/null +++ b/build/bootstrap.build @@ -0,0 +1,7 @@ +project = FFmpeg + +using version +using config +using test +using install +using dist diff --git a/build/export.build b/build/export.build new file mode 100644 index 0000000..3506215 --- /dev/null +++ b/build/export.build @@ -0,0 +1,6 @@ +$out_root/ +{ + include libffmpeg-avutil/ +} + +export $out_root/libffmpeg-avutil/$import.target diff --git a/build/root.build b/build/root.build new file mode 100644 index 0000000..610cd1c --- /dev/null +++ b/build/root.build @@ -0,0 +1,2795 @@ +# Uncomment to suppress warnings coming from external libraries. +# +#cxx.internal.scope = current + +using c +using c.as-cpp + +h{*}: extension = h +c{*}: extension = c +S{*}: extension = asm + +config [uint64] config.FFmpeg.ARCH_AARCH64 ?= 0 +config [uint64] config.FFmpeg.ARCH_ALPHA ?= 0 +config [uint64] config.FFmpeg.ARCH_ARM ?= 0 +config [uint64] config.FFmpeg.ARCH_AVR32 ?= 0 +config [uint64] config.FFmpeg.ARCH_AVR32_AP ?= 0 +config [uint64] config.FFmpeg.ARCH_IA64 ?= 0 +config [uint64] config.FFmpeg.ARCH_LOONGARCH ?= 0 +config [uint64] config.FFmpeg.ARCH_LOONGARCH64 ?= 0 +config [uint64] config.FFmpeg.ARCH_MIPS ?= 0 +config [uint64] config.FFmpeg.ARCH_MIPS64 ?= 0 +config [uint64] config.FFmpeg.ARCH_PPC ?= 0 +config [uint64] config.FFmpeg.ARCH_PPC64 ?= 0 +config [uint64] config.FFmpeg.ARCH_RISCV ?= 0 +config [uint64] config.FFmpeg.ARCH_SH4 ?= 0 +config [uint64] config.FFmpeg.ARCH_X86 ?= 1 +config [uint64] config.FFmpeg.ARCH_X86_32 ?= 0 +config [uint64] config.FFmpeg.ARCH_X86_64 ?= ($c.target.cpu == 'x86_64' ? 1 : 0) +config [uint64] config.FFmpeg.HAVE_ARMV5TE ?= 0 +config [uint64] config.FFmpeg.HAVE_ARMV6 ?= 0 +config [uint64] config.FFmpeg.HAVE_ARMV6T2 ?= 0 +config [uint64] config.FFmpeg.HAVE_ARMV8 ?= 0 +config [uint64] config.FFmpeg.HAVE_I8MM ?= 0 +config [uint64] config.FFmpeg.HAVE_NEON ?= 0 +config [uint64] config.FFmpeg.HAVE_VFP ?= 0 +config [uint64] config.FFmpeg.HAVE_VFPV3 ?= 0 +config [uint64] config.FFmpeg.HAVE_ALTIVEC ?= 0 +config [uint64] config.FFmpeg.HAVE_DCBZL ?= 0 +config [uint64] config.FFmpeg.HAVE_LDBRX ?= 0 +config [uint64] config.FFmpeg.HAVE_PPC4XX ?= 0 +config [uint64] config.FFmpeg.HAVE_VSX ?= 0 +config [uint64] config.FFmpeg.HAVE_RV ?= 0 +config [uint64] config.FFmpeg.HAVE_RVV ?= 0 +config [uint64] config.FFmpeg.HAVE_RV_ZVBB ?= 0 +config [uint64] config.FFmpeg.HAVE_AVX ?= 1 +config [uint64] config.FFmpeg.HAVE_AVX2 ?= 1 +config [uint64] config.FFmpeg.HAVE_AVX512 ?= 1 +config [uint64] config.FFmpeg.HAVE_AVX512ICL ?= 1 +config [uint64] config.FFmpeg.HAVE_FMA3 ?= 1 +config [uint64] config.FFmpeg.HAVE_FMA4 ?= 1 +config [uint64] config.FFmpeg.HAVE_MMX ?= 1 +config [uint64] config.FFmpeg.HAVE_MMXEXT ?= 1 +config [uint64] config.FFmpeg.HAVE_SSE ?= 1 +config [uint64] config.FFmpeg.HAVE_SSE2 ?= 1 +config [uint64] config.FFmpeg.HAVE_SSE4 ?= 1 +config [uint64] config.FFmpeg.HAVE_SSSE3 ?= 1 +config [uint64] config.FFmpeg.HAVE_XOP ?= 1 +config [uint64] config.FFmpeg.HAVE_I686 ?= 1 +config [uint64] config.FFmpeg.HAVE_MIPSFPU ?= 0 +config [uint64] config.FFmpeg.HAVE_MIPS32R2 ?= 0 +config [uint64] config.FFmpeg.HAVE_MIPS64R2 ?= 0 +config [uint64] config.FFmpeg.HAVE_MIPS32R6 ?= 0 +config [uint64] config.FFmpeg.HAVE_MIPS64R6 ?= 0 +config [uint64] config.FFmpeg.HAVE_MIPSDSP ?= 0 +config [uint64] config.FFmpeg.HAVE_MSA ?= 0 +config [uint64] config.FFmpeg.HAVE_LOONGSON2 ?= 0 +config [uint64] config.FFmpeg.HAVE_LOONGSON3 ?= 0 +config [uint64] config.FFmpeg.HAVE_MMI ?= 0 +config [uint64] config.FFmpeg.HAVE_LASX ?= 0 +config [uint64] config.FFmpeg.HAVE_ARMV5TE_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_ARMV6_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_ARMV6T2_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_AVX_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_AVX2_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_AVX512_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_AVX512ICL_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_FMA3_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_FMA4_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_MMX_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_MMXEXT_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_SSE2_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_SSE4_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_SSSE3_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_XOP_EXTERNAL ?= 0 +config [uint64] config.FFmpeg.HAVE_ARMV5TE_INLINE ?= 0 +config [uint64] config.FFmpeg.HAVE_ARMV6_INLINE ?= 0 +config [uint64] config.FFmpeg.HAVE_ARMV6T2_INLINE ?= 0 +config [uint64] config.FFmpeg.HAVE_NEON_INLINE ?= 0 +config [uint64] config.FFmpeg.HAVE_MMX_INLINE ?= 1 +config [uint64] config.FFmpeg.HAVE_MMXEXT_INLINE ?= 1 +config [uint64] config.FFmpeg.HAVE_SSE_INLINE ?= 1 +config [uint64] config.FFmpeg.HAVE_SSE2_INLINE ?= 1 +config [uint64] config.FFmpeg.HAVE_SSSE3_INLINE ?= 1 +config [uint64] config.FFmpeg.HAVE_ALIGNED_STACK ?= 1 +config [uint64] config.FFmpeg.HAVE_FAST_64BIT ?= 1 +config [uint64] config.FFmpeg.HAVE_FAST_CLZ ?= 1 +config [uint64] config.FFmpeg.HAVE_FAST_CMOV ?= 1 +config [uint64] config.FFmpeg.HAVE_FAST_FLOAT16 ?= 0 +config [uint64] config.FFmpeg.HAVE_LOCAL_ALIGNED ?= 1 +config [uint64] config.FFmpeg.HAVE_SIMD_ALIGN_16 ?= 1 +config [uint64] config.FFmpeg.HAVE_SIMD_ALIGN_32 ?= 1 +config [uint64] config.FFmpeg.HAVE_SIMD_ALIGN_64 ?= 1 +config [uint64] config.FFmpeg.HAVE_MM_EMPTY ?= 1 +config [uint64] config.FFmpeg.HAVE_RDTSC ?= 0 +config [uint64] config.FFmpeg.HAVE_INLINE_ASM ?= 1 +config [uint64] config.FFmpeg.HAVE_X86ASM ?= 0 +config [uint64] config.FFmpeg.HAVE_BIGENDIAN ?= 0 +config [uint64] config.FFmpeg.HAVE_FAST_UNALIGNED ?= 1 +config [uint64] config.FFmpeg.HAVE_ARPA_INET_H ?= 1 +config [uint64] config.FFmpeg.HAVE_ASM_HWPROBE_H ?= 0 +config [uint64] config.FFmpeg.HAVE_ASM_TYPES_H ?= 1 +config [uint64] config.FFmpeg.HAVE_CDIO_PARANOIA_H ?= 0 +config [uint64] config.FFmpeg.HAVE_CDIO_PARANOIA_PARANOIA_H ?= 0 +config [uint64] config.FFmpeg.HAVE_CUDA_H ?= 0 +config [uint64] config.FFmpeg.HAVE_DEV_BKTR_IOCTL_BT848_H ?= 0 +config [uint64] config.FFmpeg.HAVE_DEV_BKTR_IOCTL_METEOR_H ?= 0 +config [uint64] config.FFmpeg.HAVE_DEV_IC_BT8XX_H ?= 0 +config [uint64] config.FFmpeg.HAVE_DEV_VIDEO_BKTR_IOCTL_BT848_H ?= 0 +config [uint64] config.FFmpeg.HAVE_DEV_VIDEO_METEOR_IOCTL_METEOR_H ?= 0 +config [uint64] config.FFmpeg.HAVE_DIRECT_H ?= 0 +config [uint64] config.FFmpeg.HAVE_DIRENT_H ?= 1 +config [uint64] config.FFmpeg.HAVE_DXGIDEBUG_H ?= 0 +config [uint64] config.FFmpeg.HAVE_DXVA_H ?= 0 +config [uint64] config.FFmpeg.HAVE_ES2_GL_H ?= 0 +config [uint64] config.FFmpeg.HAVE_GSM_H ?= 0 +config [uint64] config.FFmpeg.HAVE_IO_H ?= 0 +config [uint64] config.FFmpeg.HAVE_LINUX_DMA_BUF_H ?= 1 +config [uint64] config.FFmpeg.HAVE_MACHINE_IOCTL_BT848_H ?= 0 +config [uint64] config.FFmpeg.HAVE_MACHINE_IOCTL_METEOR_H ?= 0 +config [uint64] config.FFmpeg.HAVE_MALLOC_H ?= 1 +config [uint64] config.FFmpeg.HAVE_OPENCV2_CORE_CORE_C_H ?= 0 +config [uint64] config.FFmpeg.HAVE_OPENGL_GL3_H ?= 0 +config [uint64] config.FFmpeg.HAVE_POLL_H ?= 1 +config [uint64] config.FFmpeg.HAVE_PTHREAD_NP_H ?= 0 +config [uint64] config.FFmpeg.HAVE_SYS_HWPROBE_H ?= 0 +config [uint64] config.FFmpeg.HAVE_SYS_PARAM_H ?= 1 +config [uint64] config.FFmpeg.HAVE_SYS_RESOURCE_H ?= 1 +config [uint64] config.FFmpeg.HAVE_SYS_SELECT_H ?= 1 +config [uint64] config.FFmpeg.HAVE_SYS_TIME_H ?= 1 +config [uint64] config.FFmpeg.HAVE_SYS_VIDEOIO_H ?= 0 +config [uint64] config.FFmpeg.HAVE_TERMIOS_H ?= 1 +config [uint64] config.FFmpeg.HAVE_UDPLITE_H ?= 0 +config [uint64] config.FFmpeg.HAVE_UNISTD_H ?= 1 +config [uint64] config.FFmpeg.HAVE_VALGRIND_VALGRIND_H ?= 0 +config [uint64] config.FFmpeg.HAVE_WINDOWS_H ?= 0 +config [uint64] config.FFmpeg.HAVE_WINSOCK2_H ?= 0 +config [uint64] config.FFmpeg.HAVE_INTRINSICS_NEON ?= 0 +config [uint64] config.FFmpeg.HAVE_ATANF ?= 1 +config [uint64] config.FFmpeg.HAVE_ATAN2F ?= 1 +config [uint64] config.FFmpeg.HAVE_CBRT ?= 1 +config [uint64] config.FFmpeg.HAVE_CBRTF ?= 1 +config [uint64] config.FFmpeg.HAVE_COPYSIGN ?= 1 +config [uint64] config.FFmpeg.HAVE_COSF ?= 1 +config [uint64] config.FFmpeg.HAVE_ERF ?= 1 +config [uint64] config.FFmpeg.HAVE_EXP2 ?= 1 +config [uint64] config.FFmpeg.HAVE_EXP2F ?= 1 +config [uint64] config.FFmpeg.HAVE_EXPF ?= 1 +config [uint64] config.FFmpeg.HAVE_HYPOT ?= 1 +config [uint64] config.FFmpeg.HAVE_ISFINITE ?= 1 +config [uint64] config.FFmpeg.HAVE_ISINF ?= 1 +config [uint64] config.FFmpeg.HAVE_ISNAN ?= 1 +config [uint64] config.FFmpeg.HAVE_LDEXPF ?= 1 +config [uint64] config.FFmpeg.HAVE_LLRINT ?= 1 +config [uint64] config.FFmpeg.HAVE_LLRINTF ?= 1 +config [uint64] config.FFmpeg.HAVE_LOG2 ?= 1 +config [uint64] config.FFmpeg.HAVE_LOG2F ?= 1 +config [uint64] config.FFmpeg.HAVE_LOG10F ?= 1 +config [uint64] config.FFmpeg.HAVE_LRINT ?= 1 +config [uint64] config.FFmpeg.HAVE_LRINTF ?= 1 +config [uint64] config.FFmpeg.HAVE_POWF ?= 1 +config [uint64] config.FFmpeg.HAVE_RINT ?= 1 +config [uint64] config.FFmpeg.HAVE_ROUND ?= 1 +config [uint64] config.FFmpeg.HAVE_ROUNDF ?= 1 +config [uint64] config.FFmpeg.HAVE_SINF ?= 1 +config [uint64] config.FFmpeg.HAVE_TRUNC ?= 1 +config [uint64] config.FFmpeg.HAVE_TRUNCF ?= 1 +config [uint64] config.FFmpeg.HAVE_DOS_PATHS ?= 0 +config [uint64] config.FFmpeg.HAVE_LIBC_MSVCRT ?= 0 +config [uint64] config.FFmpeg.HAVE_MMAL_PARAMETER_VIDEO_MAX_NUM_CALLBACKS ?= 0 +config [uint64] config.FFmpeg.HAVE_SECTION_DATA_REL_RO ?= 1 +config [uint64] config.FFmpeg.HAVE_THREADS ?= 1 +config [uint64] config.FFmpeg.HAVE_UWP ?= 0 +config [uint64] config.FFmpeg.HAVE_WINRT ?= 0 +config [uint64] config.FFmpeg.HAVE_ACCESS ?= 1 +config [uint64] config.FFmpeg.HAVE_ALIGNED_MALLOC ?= 0 +config [uint64] config.FFmpeg.HAVE_ARC4RANDOM_BUF ?= 0 +config [uint64] config.FFmpeg.HAVE_CLOCK_GETTIME ?= 1 +config [uint64] config.FFmpeg.HAVE_CLOSESOCKET ?= 0 +config [uint64] config.FFmpeg.HAVE_COMMANDLINETOARGVW ?= 0 +config [uint64] config.FFmpeg.HAVE_FCNTL ?= 1 +config [uint64] config.FFmpeg.HAVE_GETADDRINFO ?= 1 +config [uint64] config.FFmpeg.HAVE_GETAUXVAL ?= 1 +config [uint64] config.FFmpeg.HAVE_GETENV ?= 1 +config [uint64] config.FFmpeg.HAVE_GETHRTIME ?= 0 +config [uint64] config.FFmpeg.HAVE_GETOPT ?= 1 +config [uint64] config.FFmpeg.HAVE_GETMODULEHANDLE ?= 0 +config [uint64] config.FFmpeg.HAVE_GETPROCESSAFFINITYMASK ?= 0 +config [uint64] config.FFmpeg.HAVE_GETPROCESSMEMORYINFO ?= 0 +config [uint64] config.FFmpeg.HAVE_GETPROCESSTIMES ?= 0 +config [uint64] config.FFmpeg.HAVE_GETRUSAGE ?= 1 +config [uint64] config.FFmpeg.HAVE_GETSTDHANDLE ?= 0 +config [uint64] config.FFmpeg.HAVE_GETSYSTEMTIMEASFILETIME ?= 0 +config [uint64] config.FFmpeg.HAVE_GETTIMEOFDAY ?= 1 +config [uint64] config.FFmpeg.HAVE_GLOB ?= 1 +config [uint64] config.FFmpeg.HAVE_GLXGETPROCADDRESS ?= 0 +config [uint64] config.FFmpeg.HAVE_GMTIME_R ?= 1 +config [uint64] config.FFmpeg.HAVE_INET_ATON ?= 1 +config [uint64] config.FFmpeg.HAVE_ISATTY ?= 1 +config [uint64] config.FFmpeg.HAVE_KBHIT ?= 0 +config [uint64] config.FFmpeg.HAVE_LOCALTIME_R ?= 1 +config [uint64] config.FFmpeg.HAVE_LSTAT ?= 1 +config [uint64] config.FFmpeg.HAVE_LZO1X_999_COMPRESS ?= 0 +config [uint64] config.FFmpeg.HAVE_MACH_ABSOLUTE_TIME ?= 0 +config [uint64] config.FFmpeg.HAVE_MAPVIEWOFFILE ?= 0 +config [uint64] config.FFmpeg.HAVE_MEMALIGN ?= 1 +config [uint64] config.FFmpeg.HAVE_MKSTEMP ?= 1 +config [uint64] config.FFmpeg.HAVE_MMAP ?= 1 +config [uint64] config.FFmpeg.HAVE_NANOSLEEP ?= 1 +config [uint64] config.FFmpeg.HAVE_PEEKNAMEDPIPE ?= 0 +config [uint64] config.FFmpeg.HAVE_POSIX_MEMALIGN ?= 1 +config [uint64] config.FFmpeg.HAVE_PRCTL ?= 1 +config [uint64] config.FFmpeg.HAVE_PTHREAD_CANCEL ?= 1 +config [uint64] config.FFmpeg.HAVE_PTHREAD_SET_NAME_NP ?= 0 +config [uint64] config.FFmpeg.HAVE_PTHREAD_SETNAME_NP ?= 0 +config [uint64] config.FFmpeg.HAVE_SCHED_GETAFFINITY ?= 1 +config [uint64] config.FFmpeg.HAVE_SECITEMIMPORT ?= 0 +config [uint64] config.FFmpeg.HAVE_SETCONSOLETEXTATTRIBUTE ?= 0 +config [uint64] config.FFmpeg.HAVE_SETCONSOLECTRLHANDLER ?= 0 +config [uint64] config.FFmpeg.HAVE_SETDLLDIRECTORY ?= 0 +config [uint64] config.FFmpeg.HAVE_SETMODE ?= 0 +config [uint64] config.FFmpeg.HAVE_SETRLIMIT ?= 1 +config [uint64] config.FFmpeg.HAVE_SLEEP ?= 0 +config [uint64] config.FFmpeg.HAVE_STRERROR_R ?= 1 +config [uint64] config.FFmpeg.HAVE_SYSCONF ?= 1 +config [uint64] config.FFmpeg.HAVE_SYSCTL ?= 0 +config [uint64] config.FFmpeg.HAVE_SYSCTLBYNAME ?= 0 +config [uint64] config.FFmpeg.HAVE_USLEEP ?= 1 +config [uint64] config.FFmpeg.HAVE_WGLGETPROCADDRESS ?= 0 +config [uint64] config.FFmpeg.HAVE_BCRYPT ?= 0 +config [uint64] config.FFmpeg.HAVE_VAAPI_DRM ?= 0 +config [uint64] config.FFmpeg.HAVE_VAAPI_X11 ?= 0 +config [uint64] config.FFmpeg.HAVE_VAAPI_WIN32 ?= 0 +config [uint64] config.FFmpeg.HAVE_VDPAU_X11 ?= 0 +config [uint64] config.FFmpeg.HAVE_PTHREADS ?= 1 +config [uint64] config.FFmpeg.HAVE_OS2THREADS ?= 0 +config [uint64] config.FFmpeg.HAVE_W32THREADS ?= 0 +config [uint64] config.FFmpeg.HAVE_AS_ARCH_DIRECTIVE ?= 0 +config [uint64] config.FFmpeg.HAVE_AS_ARCHEXT_DOTPROD_DIRECTIVE ?= 0 +config [uint64] config.FFmpeg.HAVE_AS_ARCHEXT_I8MM_DIRECTIVE ?= 0 +config [uint64] config.FFmpeg.HAVE_AS_FPU_DIRECTIVE ?= 0 +config [uint64] config.FFmpeg.HAVE_AS_FUNC ?= 0 +config [uint64] config.FFmpeg.HAVE_AS_OBJECT_ARCH ?= 0 +config [uint64] config.FFmpeg.HAVE_ASM_MOD_Q ?= 0 +config [uint64] config.FFmpeg.HAVE_EBP_AVAILABLE ?= 1 +config [uint64] config.FFmpeg.HAVE_EBX_AVAILABLE ?= 1 +config [uint64] config.FFmpeg.HAVE_GNU_WINDRES ?= 0 +config [uint64] config.FFmpeg.HAVE_IBM_ASM ?= 0 +config [uint64] config.FFmpeg.HAVE_INLINE_ASM_DIRECT_SYMBOL_REFS ?= 1 +config [uint64] config.FFmpeg.HAVE_INLINE_ASM_NONLOCAL_LABELS ?= 1 +config [uint64] config.FFmpeg.HAVE_PRAGMA_DEPRECATED ?= 1 +config [uint64] config.FFmpeg.HAVE_VFP_ARGS ?= 0 +config [uint64] config.FFmpeg.HAVE_XFORM_ASM ?= 0 +config [uint64] config.FFmpeg.HAVE_XMM_CLOBBERS ?= 1 +config [uint64] config.FFmpeg.HAVE_DPI_AWARENESS_CONTEXT ?= 0 +config [uint64] config.FFmpeg.HAVE_IDXGIOUTPUT5 ?= 0 +config [uint64] config.FFmpeg.HAVE_KCMVIDEOCODECTYPE_HEVC ?= 0 +config [uint64] config.FFmpeg.HAVE_KCMVIDEOCODECTYPE_HEVCWITHALPHA ?= 0 +config [uint64] config.FFmpeg.HAVE_KCMVIDEOCODECTYPE_VP9 ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVPIXELFORMATTYPE_420YPCBCR10BIPLANARVIDEORANGE ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVPIXELFORMATTYPE_422YPCBCR8BIPLANARVIDEORANGE ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVPIXELFORMATTYPE_422YPCBCR10BIPLANARVIDEORANGE ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVPIXELFORMATTYPE_422YPCBCR16BIPLANARVIDEORANGE ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVPIXELFORMATTYPE_444YPCBCR8BIPLANARVIDEORANGE ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVPIXELFORMATTYPE_444YPCBCR10BIPLANARVIDEORANGE ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVPIXELFORMATTYPE_444YPCBCR16BIPLANARVIDEORANGE ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVIMAGEBUFFERTRANSFERFUNCTION_SMPTE_ST_2084_PQ ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVIMAGEBUFFERTRANSFERFUNCTION_ITU_R_2100_HLG ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVIMAGEBUFFERYCBCRMATRIX_ITU_R_2020 ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVIMAGEBUFFERCOLORPRIMARIES_ITU_R_2020 ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVIMAGEBUFFERTRANSFERFUNCTION_ITU_R_2020 ?= 0 +config [uint64] config.FFmpeg.HAVE_KCVIMAGEBUFFERTRANSFERFUNCTION_SMPTE_ST_428_1 ?= 0 +config [uint64] config.FFmpeg.HAVE_SOCKLEN_T ?= 1 +config [uint64] config.FFmpeg.HAVE_STRUCT_ADDRINFO ?= 1 +config [uint64] config.FFmpeg.HAVE_STRUCT_GROUP_SOURCE_REQ ?= 1 +config [uint64] config.FFmpeg.HAVE_STRUCT_IP_MREQ_SOURCE ?= 1 +config [uint64] config.FFmpeg.HAVE_STRUCT_IPV6_MREQ ?= 1 +config [uint64] config.FFmpeg.HAVE_STRUCT_POLLFD ?= 1 +config [uint64] config.FFmpeg.HAVE_STRUCT_RUSAGE_RU_MAXRSS ?= 1 +config [uint64] config.FFmpeg.HAVE_STRUCT_SOCKADDR_IN6 ?= 1 +config [uint64] config.FFmpeg.HAVE_STRUCT_SOCKADDR_SA_LEN ?= 0 +config [uint64] config.FFmpeg.HAVE_STRUCT_SOCKADDR_STORAGE ?= 1 +config [uint64] config.FFmpeg.HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC ?= 1 +config [uint64] config.FFmpeg.HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE ?= 1 +config [uint64] config.FFmpeg.HAVE_STRUCT_MFXCONFIGINTERFACE ?= 0 +config [uint64] config.FFmpeg.HAVE_LIBDRM_GETFB2 ?= 0 +config [uint64] config.FFmpeg.HAVE_MAKEINFO ?= 0 +config [uint64] config.FFmpeg.HAVE_MAKEINFO_HTML ?= 0 +config [uint64] config.FFmpeg.HAVE_OPENCL_D3D11 ?= 0 +config [uint64] config.FFmpeg.HAVE_OPENCL_DRM_ARM ?= 0 +config [uint64] config.FFmpeg.HAVE_OPENCL_DRM_BEIGNET ?= 0 +config [uint64] config.FFmpeg.HAVE_OPENCL_DXVA2 ?= 0 +config [uint64] config.FFmpeg.HAVE_OPENCL_VAAPI_BEIGNET ?= 0 +config [uint64] config.FFmpeg.HAVE_OPENCL_VAAPI_INTEL_MEDIA ?= 0 +config [uint64] config.FFmpeg.HAVE_OPENCL_VIDEOTOOLBOX ?= 0 +config [uint64] config.FFmpeg.HAVE_OPENVINO2 ?= 0 +config [uint64] config.FFmpeg.CONFIG_DOC ?= 1 +config [uint64] config.FFmpeg.CONFIG_HTMLPAGES ?= 0 +config [uint64] config.FFmpeg.CONFIG_MANPAGES ?= 1 +config [uint64] config.FFmpeg.CONFIG_PODPAGES ?= 1 +config [uint64] config.FFmpeg.CONFIG_TXTPAGES ?= 0 +config [uint64] config.FFmpeg.CONFIG_AVIO_LIST_DIR_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVIO_READ_CALLBACK_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_DECODE_AUDIO_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_DECODE_FILTER_AUDIO_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_DECODE_FILTER_VIDEO_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_DECODE_VIDEO_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_DEMUX_DECODE_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_ENCODE_AUDIO_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_ENCODE_VIDEO_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_EXTRACT_MVS_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_FILTER_AUDIO_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_HW_DECODE_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_MUX_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_QSV_DECODE_EXAMPLE ?= 0 +config [uint64] config.FFmpeg.CONFIG_REMUX_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_RESAMPLE_AUDIO_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_SCALE_VIDEO_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOW_METADATA_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRANSCODE_AAC_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRANSCODE_EXAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_VAAPI_ENCODE_EXAMPLE ?= 0 +config [uint64] config.FFmpeg.CONFIG_VAAPI_TRANSCODE_EXAMPLE ?= 0 +config [uint64] config.FFmpeg.CONFIG_QSV_TRANSCODE_EXAMPLE ?= 0 +config [uint64] config.FFmpeg.CONFIG_AVISYNTH ?= 0 +config [uint64] config.FFmpeg.CONFIG_FREI0R ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBCDIO ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBDAVS2 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVIDSTAB ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBX264 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBX265 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXAVS ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXAVS2 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXVID ?= 0 +config [uint64] config.FFmpeg.CONFIG_DECKLINK ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBFDK_AAC ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBTLS ?= 0 +config [uint64] config.FFmpeg.CONFIG_GMP ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBARIBB24 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENCORE_AMRNB ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENCORE_AMRWB ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVO_AMRWBENC ?= 0 +config [uint64] config.FFmpeg.CONFIG_MBEDTLS ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSMBCLIENT ?= 0 +config [uint64] config.FFmpeg.CONFIG_CHROMAPRINT ?= 0 +config [uint64] config.FFmpeg.CONFIG_GCRYPT ?= 0 +config [uint64] config.FFmpeg.CONFIG_GNUTLS ?= 0 +config [uint64] config.FFmpeg.CONFIG_JNI ?= 0 +config [uint64] config.FFmpeg.CONFIG_LADSPA ?= 0 +config [uint64] config.FFmpeg.CONFIG_LCMS2 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBAOM ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBARIBCAPTION ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBCELT ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBCODEC2 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBDAV1D ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBDC1394 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBFONTCONFIG ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBFREETYPE ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBFRIBIDI ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBGLSLANG ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBGME ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBGSM ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBILBC ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBJXL ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBKLVANC ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBKVAZAAR ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBLC3 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBMODPLUG ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBMP3LAME ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENH264 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENJPEG ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENMPT ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENVINO ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPUS ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBPLACEBO ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBPULSE ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBRAV1E ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBRIST ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBRSVG ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBRTMP ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSHADERC ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSHINE ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSMBCLIENT ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSPEEX ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSRT ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSSH ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSVTAV1 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBTENSORFLOW ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBTHEORA ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBTORCH ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBTWOLAME ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBUAVS3D ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBV4L2 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVMAF ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVORBIS ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVPX ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBWEBP ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXEVD ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXEVE ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBZMQ ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBZVBI ?= 0 +config [uint64] config.FFmpeg.CONFIG_LV2 ?= 0 +config [uint64] config.FFmpeg.CONFIG_MEDIACODEC ?= 0 +config [uint64] config.FFmpeg.CONFIG_OPENAL ?= 0 +config [uint64] config.FFmpeg.CONFIG_OPENGL ?= 0 +config [uint64] config.FFmpeg.CONFIG_OPENSSL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VAPOURSYNTH ?= 0 +config [uint64] config.FFmpeg.CONFIG_ALSA ?= 0 +config [uint64] config.FFmpeg.CONFIG_AVFOUNDATION ?= 0 +config [uint64] config.FFmpeg.CONFIG_BZLIB ?= 0 +config [uint64] config.FFmpeg.CONFIG_COREIMAGE ?= 0 +config [uint64] config.FFmpeg.CONFIG_ICONV ?= 1 +config [uint64] config.FFmpeg.CONFIG_LIBXCB ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXCB_SHM ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXCB_SHAPE ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXCB_XFIXES ?= 0 +config [uint64] config.FFmpeg.CONFIG_LZMA ?= 0 +config [uint64] config.FFmpeg.CONFIG_MEDIAFOUNDATION ?= 0 +config [uint64] config.FFmpeg.CONFIG_SCHANNEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_SDL2 ?= 0 +config [uint64] config.FFmpeg.CONFIG_SECURETRANSPORT ?= 0 +config [uint64] config.FFmpeg.CONFIG_SNDIO ?= 0 +config [uint64] config.FFmpeg.CONFIG_ZLIB ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBMFX ?= 0 +config [uint64] config.FFmpeg.CONFIG_OMX ?= 0 +config [uint64] config.FFmpeg.CONFIG_OPENCL ?= 0 +config [uint64] config.FFmpeg.CONFIG_AMF ?= 0 +config [uint64] config.FFmpeg.CONFIG_AUDIOTOOLBOX ?= 0 +config [uint64] config.FFmpeg.CONFIG_CUDA ?= 0 +config [uint64] config.FFmpeg.CONFIG_D3D11VA ?= 0 +config [uint64] config.FFmpeg.CONFIG_D3D12VA ?= 0 +config [uint64] config.FFmpeg.CONFIG_DXVA2 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBDRM ?= 0 +config [uint64] config.FFmpeg.CONFIG_NVDEC ?= 0 +config [uint64] config.FFmpeg.CONFIG_NVENC ?= 0 +config [uint64] config.FFmpeg.CONFIG_VAAPI ?= 0 +config [uint64] config.FFmpeg.CONFIG_VDPAU ?= 0 +config [uint64] config.FFmpeg.CONFIG_VIDEOTOOLBOX ?= 0 +config [uint64] config.FFmpeg.CONFIG_VULKAN ?= 0 +config [uint64] config.FFmpeg.CONFIG_V4L2_M2M ?= 1 +config [uint64] config.FFmpeg.CONFIG_FTRAPV ?= 0 +config [uint64] config.FFmpeg.CONFIG_GRAY ?= 0 +config [uint64] config.FFmpeg.CONFIG_HARDCODED_TABLES ?= 0 +config [uint64] config.FFmpeg.CONFIG_OMX_RPI ?= 0 +config [uint64] config.FFmpeg.CONFIG_RUNTIME_CPUDETECT ?= 1 +config [uint64] config.FFmpeg.CONFIG_SAFE_BITSTREAM_READER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHARED ?= 0 +config [uint64] config.FFmpeg.CONFIG_SMALL ?= 0 +config [uint64] config.FFmpeg.CONFIG_GPL ?= 0 +config [uint64] config.FFmpeg.CONFIG_NONFREE ?= 0 +config [uint64] config.FFmpeg.CONFIG_AVDEVICE ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVFILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SWSCALE ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVFORMAT ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVCODEC ?= 1 +config [uint64] config.FFmpeg.CONFIG_SWRESAMPLE ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVUTIL ?= 1 +config [uint64] config.FFmpeg.CONFIG_FFPLAY ?= 0 +config [uint64] config.FFmpeg.CONFIG_FFPROBE ?= 1 +config [uint64] config.FFmpeg.CONFIG_FFMPEG ?= 1 +config [uint64] config.FFmpeg.CONFIG_DWT ?= 1 +config [uint64] config.FFmpeg.CONFIG_ERROR_RESILIENCE ?= 1 +config [uint64] config.FFmpeg.CONFIG_FAAN ?= 1 +config [uint64] config.FFmpeg.CONFIG_IAMF ?= 1 +config [uint64] config.FFmpeg.CONFIG_LSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_PIXELUTILS ?= 1 +config [uint64] config.FFmpeg.CONFIG_NETWORK ?= 1 +config [uint64] config.FFmpeg.CONFIG_LINUX_PERF ?= 0 +config [uint64] config.FFmpeg.CONFIG_MACOS_KPERF ?= 0 +config [uint64] config.FFmpeg.CONFIG_MEMORY_POISONING ?= 0 +config [uint64] config.FFmpeg.CONFIG_NEON_CLOBBER_TEST ?= 0 +config [uint64] config.FFmpeg.CONFIG_OSSFUZZ ?= 0 +config [uint64] config.FFmpeg.CONFIG_PIC ?= 0 +config [uint64] config.FFmpeg.CONFIG_PTX_COMPRESSION ?= 0 +config [uint64] config.FFmpeg.CONFIG_THUMB ?= 0 +config [uint64] config.FFmpeg.CONFIG_VALGRIND_BACKTRACE ?= 0 +config [uint64] config.FFmpeg.CONFIG_XMM_CLOBBER_TEST ?= 0 +config [uint64] config.FFmpeg.CONFIG_AANDCTTABLES ?= 1 +config [uint64] config.FFmpeg.CONFIG_AC3DSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADTS_HEADER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ATSC_A53 ?= 1 +config [uint64] config.FFmpeg.CONFIG_AUDIO_FRAME_QUEUE ?= 1 +config [uint64] config.FFmpeg.CONFIG_AUDIODSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_BLOCKDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_BSWAPDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_CABAC ?= 1 +config [uint64] config.FFmpeg.CONFIG_CBS ?= 1 +config [uint64] config.FFmpeg.CONFIG_CBS_AV1 ?= 1 +config [uint64] config.FFmpeg.CONFIG_CBS_H264 ?= 1 +config [uint64] config.FFmpeg.CONFIG_CBS_H265 ?= 1 +config [uint64] config.FFmpeg.CONFIG_CBS_H266 ?= 1 +config [uint64] config.FFmpeg.CONFIG_CBS_JPEG ?= 0 +config [uint64] config.FFmpeg.CONFIG_CBS_MPEG2 ?= 1 +config [uint64] config.FFmpeg.CONFIG_CBS_VP8 ?= 1 +config [uint64] config.FFmpeg.CONFIG_CBS_VP9 ?= 1 +config [uint64] config.FFmpeg.CONFIG_DEFLATE_WRAPPER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DIRAC_PARSE ?= 1 +config [uint64] config.FFmpeg.CONFIG_DNN ?= 0 +config [uint64] config.FFmpeg.CONFIG_DOVI_RPUDEC ?= 1 +config [uint64] config.FFmpeg.CONFIG_DOVI_RPUENC ?= 0 +config [uint64] config.FFmpeg.CONFIG_DVPROFILE ?= 1 +config [uint64] config.FFmpeg.CONFIG_EVCPARSE ?= 1 +config [uint64] config.FFmpeg.CONFIG_EXIF ?= 1 +config [uint64] config.FFmpeg.CONFIG_FAANDCT ?= 1 +config [uint64] config.FFmpeg.CONFIG_FAANIDCT ?= 1 +config [uint64] config.FFmpeg.CONFIG_FDCTDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_FMTCONVERT ?= 1 +config [uint64] config.FFmpeg.CONFIG_FRAME_THREAD_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G722DSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_GOLOMB ?= 1 +config [uint64] config.FFmpeg.CONFIG_GPLV3 ?= 0 +config [uint64] config.FFmpeg.CONFIG_H263DSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264CHROMA ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264DSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264PARSE ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264PRED ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264QPEL ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264_SEI ?= 1 +config [uint64] config.FFmpeg.CONFIG_HEVCPARSE ?= 1 +config [uint64] config.FFmpeg.CONFIG_HEVC_SEI ?= 1 +config [uint64] config.FFmpeg.CONFIG_HPELDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_HUFFMAN ?= 1 +config [uint64] config.FFmpeg.CONFIG_HUFFYUVDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_HUFFYUVENCDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_IAMFDEC ?= 1 +config [uint64] config.FFmpeg.CONFIG_IAMFENC ?= 1 +config [uint64] config.FFmpeg.CONFIG_IDCTDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_IIRFILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_INFLATE_WRAPPER ?= 0 +config [uint64] config.FFmpeg.CONFIG_INTRAX8 ?= 1 +config [uint64] config.FFmpeg.CONFIG_ISO_MEDIA ?= 1 +config [uint64] config.FFmpeg.CONFIG_ISO_WRITER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IVIDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_JPEGTABLES ?= 1 +config [uint64] config.FFmpeg.CONFIG_LGPLV3 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBX262 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBX264_HDR10 ?= 0 +config [uint64] config.FFmpeg.CONFIG_LLAUDDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_LLVIDDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_LLVIDENCDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_LPC ?= 1 +config [uint64] config.FFmpeg.CONFIG_LZF ?= 1 +config [uint64] config.FFmpeg.CONFIG_ME_CMP ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG_ER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGAUDIO ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGAUDIODSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGAUDIOHEADER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG4AUDIO ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGVIDEO ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGVIDEODEC ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGVIDEOENC ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSMPEG4DEC ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSMPEG4ENC ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSS34DSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_PIXBLOCKDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_QPELDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_QSV ?= 0 +config [uint64] config.FFmpeg.CONFIG_QSVDEC ?= 0 +config [uint64] config.FFmpeg.CONFIG_QSVENC ?= 0 +config [uint64] config.FFmpeg.CONFIG_QSVVPP ?= 0 +config [uint64] config.FFmpeg.CONFIG_RANGECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RIFFDEC ?= 1 +config [uint64] config.FFmpeg.CONFIG_RIFFENC ?= 1 +config [uint64] config.FFmpeg.CONFIG_RTPDEC ?= 1 +config [uint64] config.FFmpeg.CONFIG_RTPENC_CHAIN ?= 1 +config [uint64] config.FFmpeg.CONFIG_RV34DSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_SCENE_SAD ?= 1 +config [uint64] config.FFmpeg.CONFIG_SINEWIN ?= 1 +config [uint64] config.FFmpeg.CONFIG_SNAPPY ?= 1 +config [uint64] config.FFmpeg.CONFIG_SRTP ?= 1 +config [uint64] config.FFmpeg.CONFIG_STARTCODE ?= 1 +config [uint64] config.FFmpeg.CONFIG_TEXTUREDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_TEXTUREDSPENC ?= 1 +config [uint64] config.FFmpeg.CONFIG_TPELDSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_VAAPI_1 ?= 0 +config [uint64] config.FFmpeg.CONFIG_VAAPI_ENCODE ?= 0 +config [uint64] config.FFmpeg.CONFIG_VC1DSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_VIDEODSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP3DSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP56DSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP8DSP ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMA_FREQS ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMV2DSP ?= 1 + +config [uint64] config.FFmpeg.CONFIG_AAC_ADTSTOASC_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_AV1_FRAME_MERGE_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_AV1_FRAME_SPLIT_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_AV1_METADATA_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_CHOMP_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_DUMP_EXTRADATA_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_DCA_CORE_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_DTS2PTS_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_DV_ERROR_MARKER_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_EAC3_CORE_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_EVC_FRAME_MERGE_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_EXTRACT_EXTRADATA_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_FILTER_UNITS_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264_METADATA_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264_MP4TOANNEXB_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264_REDUNDANT_PPS_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_HAPQA_EXTRACT_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_HEVC_METADATA_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_HEVC_MP4TOANNEXB_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMX_DUMP_HEADER_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_MEDIA100_TO_MJPEGB_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_MJPEG2JPEG_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_MJPEGA_DUMP_HEADER_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG2_METADATA_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG4_UNPACK_BFRAMES_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_MOV2TEXTSUB_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_NOISE_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_NULL_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_OPUS_METADATA_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_RECHUNK_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_PGS_FRAME_MERGE_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_PRORES_METADATA_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_REMOVE_EXTRADATA_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_SETTS_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOWINFO_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_TEXT2MOVSUB_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRACE_HEADERS_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRUEHD_CORE_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP9_METADATA_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP9_RAW_REORDER_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP9_SUPERFRAME_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP9_SUPERFRAME_SPLIT_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_VVC_METADATA_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_VVC_MP4TOANNEXB_BSF ?= 1 +config [uint64] config.FFmpeg.CONFIG_AASC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AIC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALIAS_PIX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AGM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANSI_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APNG_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ARBC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ARGO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASV1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASV2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AURA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AURA2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVRP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVRN_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVUI_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BETHSOFTVID_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BFI_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BINK_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BITPACKED_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BMP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BMV_VIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BRENDER_PIX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_C93_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CAVS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CDGRAPHICS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CDTOONS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CDXL_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CFHD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CINEPAK_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CLEARVIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CLJR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CLLC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COMFORTNOISE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CPIA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CRI_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CSCD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CYUV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DDS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DFA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DIRAC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DNXHD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DPX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DSICINVIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVAUDIO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVVIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DXA_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DXTORY_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DXV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EACMV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EAMAD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EATGQ_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EATGV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EATQI_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EIGHTBPS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EIGHTSVX_EXP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EIGHTSVX_FIB_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ESCAPE124_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ESCAPE130_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EXR_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_FFV1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FFVHUFF_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FIC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FITS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLASHSV_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_FLASHSV2_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_FLIC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FMVC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FOURXM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FRAPS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FRWU_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G2M_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_GDV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GEM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GIF_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H261_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H263_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H263I_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H263_V4L2M2M_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264_V4L2M2M_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264_MEDIACODEC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_MMAL_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_QSV_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_RKMPP_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HAP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HEVC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HEVC_QSV_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_RKMPP_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_V4L2M2M_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HNM4_VIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HQ_HQA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HQX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HUFFYUV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HYMT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IDCIN_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IFF_ILBM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMM4_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMM5_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_INDEO2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_INDEO3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_INDEO4_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_INDEO5_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_INTERPLAY_VIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IPU_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JPEG2000_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JPEGLS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_KGV1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_KMVC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LAGARITH_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LEAD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LOCO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LSCR_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_M101_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MAGICYUV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MDEC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MEDIA100_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MIMIC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MJPEG_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MJPEGB_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MMVIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MOBICLIP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MOTIONPIXELS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG1VIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG2VIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG4_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG4_V4L2M2M_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGVIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG1_V4L2M2M_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG2_MMAL_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_V4L2M2M_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG2_QSV_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_MEDIACODEC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MSA1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSCC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MSP2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSRLE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSS1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSS2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSVIDEO1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSZH_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MTS2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MV30_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MVC1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MVC2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MVDV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MVHA_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MWSC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MXPEG_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NOTCHLC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NUV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PAF_VIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PAM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PBM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PDV_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PFM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PGM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PGMYUV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PGX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PHM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PHOTOCD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PICTOR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PIXLET_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PNG_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PPM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PRORES_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PROSUMER_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PSD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PTX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QDRAW_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QOI_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QPEG_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QTRLE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_R10K_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_R210_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RASC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_RAWVIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RKA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RL2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ROQ_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RPZA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RSCC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_RTV1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RV10_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RV20_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RV30_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RV40_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_S302M_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SANM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SCPR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SCREENPRESSO_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SGA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SGI_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SGIRLE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHEERVIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SIMBIOSIS_IMX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMACKER_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMVJPEG_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SNOW_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SP5X_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SPEEDHQ_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SPEEX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SRGC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SUNRAST_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SVQ1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SVQ3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TARGA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TARGA_Y216_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TDSC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_THEORA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_THP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TIERTEXSEQVIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TIFF_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TMV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRUEMOTION1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRUEMOTION2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRUEMOTION2RT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TSCC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_TSCC2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TXD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ULTI_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_UTVIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_V210_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_V210X_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_V308_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_V408_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_V410_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VB_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VBN_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VBLE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VC1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VC1IMAGE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VC1_MMAL_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VC1_QSV_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VC1_V4L2M2M_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VCR1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VMDVIDEO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VMIX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VMNC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP4_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP5_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP6_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP7_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP8_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP8_RKMPP_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP8_V4L2M2M_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP9_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP9_RKMPP_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_V4L2M2M_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VQA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VQC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VVC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WBMP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WEBP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WCMV_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_WRAPPED_AVFRAME_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMV2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMV3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMV3IMAGE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WNV1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XAN_WC3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XAN_WC4_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XBM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XFACE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XL_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XPM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XWD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_Y41P_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_YLC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_YOP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_YUV4_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ZERO12V_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ZEROCODEC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ZLIB_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ZMBV_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AAC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AAC_FIXED_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AAC_LATM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AC3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AC3_FIXED_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ACELP_KELVIN_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALAC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMRNB_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMRWB_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APAC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APTX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APTX_HD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ATRAC1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ATRAC3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ATRAC3AL_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ATRAC3P_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ATRAC3PAL_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ATRAC9_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BINKAUDIO_DCT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BINKAUDIO_RDFT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BMV_AUDIO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BONK_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COOK_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DCA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DFPWM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DOLBY_E_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DSD_LSBF_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DSD_MSBF_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DSD_LSBF_PLANAR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DSD_MSBF_PLANAR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DSICINAUDIO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DSS_SP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DST_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EAC3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EVRC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FASTAUDIO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FFWAVESYNTH_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLAC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FTR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G723_1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G729_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GSM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GSM_MS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HCA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HCOM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HDR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IAC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ILBC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_INTERPLAY_ACM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MACE3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MACE6_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_METASOUND_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MISC4_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MLP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP1FLOAT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP2FLOAT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP3FLOAT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP3ADUFLOAT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP3ADU_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP3ON4FLOAT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP3ON4_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPC7_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPC8_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSNSIREN_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NELLYMOSER_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ON2AVC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OPUS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OSQ_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PAF_AUDIO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QCELP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QDM2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QDMC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QOA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RA_144_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RA_288_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RALF_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SBC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHORTEN_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SIPR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SIREN_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMACKAUD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SONIC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TAK_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRUEHD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRUESPEECH_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TTA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TWINVQ_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VMDAUDIO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VORBIS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WAVARC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WAVPACK_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMALOSSLESS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMAPRO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMAV1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMAV2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMAVOICE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WS_SND1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XMA1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XMA2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_ALAW_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_BLURAY_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_DVD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F16LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F24LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F32BE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F32LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F64BE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F64LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_LXF_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_MULAW_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S8_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S8_PLANAR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S16BE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S16BE_PLANAR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S16LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S16LE_PLANAR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S24BE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S24DAUD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S24LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S24LE_PLANAR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S32BE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S32LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S32LE_PLANAR_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S64BE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S64LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_SGA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U8_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U16BE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U16LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U24BE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U24LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U32BE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U32LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_VIDC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CBD2_DPCM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DERF_DPCM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GREMLIN_DPCM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_INTERPLAY_DPCM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ROQ_DPCM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SDX2_DPCM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SOL_DPCM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XAN_DPCM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WADY_DPCM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_4XM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_ADX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_AFC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_AGM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_AICA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_ARGO_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_CT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_DTK_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_EA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_EA_MAXIS_XA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_EA_R1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_EA_R2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_EA_R3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_EA_XAS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_G722_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_G726_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_G726LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_ACORN_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_AMV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_ALP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_APC_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_APM_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_CUNNING_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_DAT4_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_DK3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_DK4_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_EA_EACS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_EA_SEAD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_ISS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_MOFLEX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_MTF_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_OKI_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_QT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_RAD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_SSI_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_SMJPEG_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_WAV_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_WS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_MS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_MTAF_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_PSX_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_SBPRO_2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_SBPRO_3_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_SBPRO_4_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_SWF_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_THP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_THP_LE_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_VIMA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_XA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_XMD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_YAMAHA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_ZORK_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SSA_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CCAPTION_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVBSUB_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVDSUB_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JACOSUB_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MICRODVD_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MOVTEXT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPL2_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PGSSUB_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PJS_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_REALTEXT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SAMI_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SRT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_STL_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SUBRIP_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SUBVIEWER_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SUBVIEWER1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TEXT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VPLAYER_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WEBVTT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XSUB_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AAC_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AC3_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_QT_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ALAC_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AMR_NB_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_EAC3_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_GSM_MS_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ILBC_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MP1_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MP2_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MP3_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PCM_ALAW_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PCM_MULAW_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_QDMC_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_QDM2_AT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBARIBCAPTION_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBARIBB24_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBCELT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBCODEC2_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBDAV1D_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBDAVS2_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBFDK_AAC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBGSM_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBGSM_MS_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBILBC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBJXL_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBLC3_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENCORE_AMRNB_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENCORE_AMRWB_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPUS_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBRSVG_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSPEEX_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBUAVS3D_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVORBIS_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVPX_VP8_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVPX_VP9_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXEVD_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBZVBI_TELETEXT_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_BINTEXT_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XBIN_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IDF_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LIBAOM_AV1_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AV1_CUVID_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_MEDIACODEC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_QSV_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENH264_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_CUVID_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_CUVID_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_MEDIACODEC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MJPEG_CUVID_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MJPEG_QSV_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG1_CUVID_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_CUVID_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG4_CUVID_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG4_MEDIACODEC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VC1_CUVID_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP8_CUVID_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP8_MEDIACODEC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP8_QSV_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_CUVID_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_MEDIACODEC_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_QSV_DECODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VNULL_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANULL_DECODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_A64MULTI_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_A64MULTI5_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALIAS_PIX_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMV_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APNG_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ASV1_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASV2_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVRP_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVUI_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BITPACKED_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BMP_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CFHD_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CINEPAK_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CLJR_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COMFORTNOISE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DNXHD_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DPX_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVVIDEO_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DXV_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EXR_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_FFV1_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FFVHUFF_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FITS_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLASHSV_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_FLASHSV2_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_FLV_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GIF_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H261_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H263_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H263P_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264_MEDIACODEC_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HAP_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HUFFYUV_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JPEG2000_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JPEGLS_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LJPEG_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MAGICYUV_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MJPEG_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG1VIDEO_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG2VIDEO_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG4_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSRLE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSVIDEO1_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PAM_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PBM_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCX_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PFM_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PGM_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PGMYUV_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PHM_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PNG_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PPM_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PRORES_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PRORES_AW_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PRORES_KS_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QOI_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QTRLE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_R10K_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_R210_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RAWVIDEO_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ROQ_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RPZA_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RV10_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RV20_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_S302M_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SGI_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMC_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SNOW_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SPEEDHQ_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SUNRAST_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SVQ1_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TARGA_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TIFF_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_UTVIDEO_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_V210_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_V308_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_V408_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_V410_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VBN_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VC2_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WBMP_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WRAPPED_AVFRAME_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMV2_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XBM_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XFACE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XWD_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_Y41P_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_YUV4_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ZLIB_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ZMBV_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AAC_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AC3_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AC3_FIXED_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALAC_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APTX_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APTX_HD_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DCA_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DFPWM_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EAC3_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLAC_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G723_1_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HDR_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MLP_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP2_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP2FIXED_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NELLYMOSER_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OPUS_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RA_144_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SBC_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SONIC_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SONIC_LS_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRUEHD_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TTA_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VORBIS_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WAVPACK_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMAV1_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WMAV2_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_ALAW_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_BLURAY_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_DVD_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F32BE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F32LE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F64BE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F64LE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_MULAW_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S8_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S8_PLANAR_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S16BE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S16BE_PLANAR_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S16LE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S16LE_PLANAR_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S24BE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S24DAUD_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S24LE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S24LE_PLANAR_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S32BE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S32LE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S32LE_PLANAR_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S64BE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S64LE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U8_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U16BE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U16LE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U24BE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U24LE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U32BE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U32LE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_VIDC_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ROQ_DPCM_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_ADX_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_ARGO_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_G722_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_G726_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_G726LE_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_AMV_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_ALP_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_APM_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_QT_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_SSI_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_WAV_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_IMA_WS_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_MS_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_SWF_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADPCM_YAMAHA_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SSA_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASS_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVBSUB_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVDSUB_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MOVTEXT_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SRT_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SUBRIP_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TEXT_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TTML_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WEBVTT_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XSUB_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AAC_AT_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ALAC_AT_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ILBC_AT_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PCM_ALAW_AT_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PCM_MULAW_AT_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBAOM_AV1_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBCODEC2_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBFDK_AAC_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBGSM_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBGSM_MS_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBILBC_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBJXL_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBLC3_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBMP3LAME_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENCORE_AMRNB_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENJPEG_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPUS_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBRAV1E_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSHINE_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSPEEX_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSVTAV1_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBTHEORA_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBTWOLAME_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVO_AMRWBENC_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVORBIS_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVPX_VP8_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVPX_VP9_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBWEBP_ANIM_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBWEBP_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBX262_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBX264_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBX264RGB_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBX265_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXEVE_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXAVS_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXAVS2_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBXVID_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AAC_MF_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AC3_MF_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_H263_V4L2M2M_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AV1_MEDIACODEC_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_NVENC_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_QSV_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_AMF_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_VAAPI_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENH264_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_AMF_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_MF_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_NVENC_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_OMX_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_QSV_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_V4L2M2M_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264_VAAPI_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_VIDEOTOOLBOX_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_AMF_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_MEDIACODEC_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_MF_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_NVENC_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_QSV_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_V4L2M2M_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HEVC_VAAPI_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_VIDEOTOOLBOX_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBKVAZAAR_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MJPEG_QSV_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MJPEG_VAAPI_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MP3_MF_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_QSV_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_VAAPI_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG4_MEDIACODEC_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG4_OMX_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG4_V4L2M2M_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PRORES_VIDEOTOOLBOX_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP8_MEDIACODEC_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP8_V4L2M2M_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP8_VAAPI_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_MEDIACODEC_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_VAAPI_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_QSV_ENCODER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VNULL_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANULL_ENCODER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AV1_D3D11VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_D3D11VA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_D3D12VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_DXVA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_NVDEC_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_VAAPI_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_VDPAU_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_AV1_VULKAN_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_H263_VAAPI_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_H263_VIDEOTOOLBOX_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_D3D11VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_D3D11VA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_D3D12VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_DXVA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_NVDEC_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_VAAPI_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_VDPAU_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_VIDEOTOOLBOX_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_H264_VULKAN_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_D3D11VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_D3D11VA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_D3D12VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_DXVA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_NVDEC_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_VAAPI_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_VDPAU_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_VIDEOTOOLBOX_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_HEVC_VULKAN_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MJPEG_NVDEC_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MJPEG_VAAPI_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG1_NVDEC_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG1_VDPAU_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG1_VIDEOTOOLBOX_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_D3D11VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_D3D11VA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_D3D12VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_DXVA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_NVDEC_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_VAAPI_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_VDPAU_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG2_VIDEOTOOLBOX_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG4_NVDEC_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG4_VAAPI_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG4_VDPAU_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_MPEG4_VIDEOTOOLBOX_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_PRORES_VIDEOTOOLBOX_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VC1_D3D11VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VC1_D3D11VA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VC1_D3D12VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VC1_DXVA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VC1_NVDEC_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VC1_VAAPI_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VC1_VDPAU_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP8_NVDEC_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP8_VAAPI_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_D3D11VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_D3D11VA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_D3D12VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_DXVA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_NVDEC_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_VAAPI_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_VDPAU_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_VP9_VIDEOTOOLBOX_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_WMV3_D3D11VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_WMV3_D3D11VA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_WMV3_D3D12VA_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_WMV3_DXVA2_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_WMV3_NVDEC_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_WMV3_VAAPI_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_WMV3_VDPAU_HWACCEL ?= 0 +config [uint64] config.FFmpeg.CONFIG_AAC_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AAC_LATM_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AC3_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADX_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMR_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AV1_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVS2_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVS3_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BMP_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CAVSVIDEO_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COOK_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CRI_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DCA_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DIRAC_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DNXHD_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DOLBY_E_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DPX_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVAUDIO_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVBSUB_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVDSUB_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVD_NAV_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EVC_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLAC_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FTR_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G723_1_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G729_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GIF_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GSM_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H261_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H263_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HEVC_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HDR_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IPU_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JPEG2000_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JPEGXL_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MISC4_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MJPEG_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MLP_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG4VIDEO_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGAUDIO_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGVIDEO_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OPUS_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PNG_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PNM_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QOI_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RV34_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SBC_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SIPR_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TAK_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VC1_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VORBIS_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP3_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP8_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VP9_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VVC_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WEBP_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XBM_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XMA_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XWD_PARSER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALSA_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_ANDROID_CAMERA_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_AVFOUNDATION_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_BKTR_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_DECKLINK_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_DSHOW_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_FBDEV_INDEV ?= 1 +config [uint64] config.FFmpeg.CONFIG_GDIGRAB_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_IEC61883_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_JACK_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_KMSGRAB_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_LAVFI_INDEV ?= 1 +config [uint64] config.FFmpeg.CONFIG_OPENAL_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_OSS_INDEV ?= 1 +config [uint64] config.FFmpeg.CONFIG_PULSE_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_SNDIO_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_V4L2_INDEV ?= 1 +config [uint64] config.FFmpeg.CONFIG_VFWCAP_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_XCBGRAB_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBCDIO_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBDC1394_INDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_ALSA_OUTDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_AUDIOTOOLBOX_OUTDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_CACA_OUTDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_DECKLINK_OUTDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_FBDEV_OUTDEV ?= 1 +config [uint64] config.FFmpeg.CONFIG_OPENGL_OUTDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_OSS_OUTDEV ?= 1 +config [uint64] config.FFmpeg.CONFIG_PULSE_OUTDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_SDL2_OUTDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_SNDIO_OUTDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_V4L2_OUTDEV ?= 1 +config [uint64] config.FFmpeg.CONFIG_XV_OUTDEV ?= 0 +config [uint64] config.FFmpeg.CONFIG_AAP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ABENCH_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ACOMPRESSOR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ACONTRAST_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ACOPY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ACUE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ACROSSFADE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ACROSSOVER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ACRUSHER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADECLICK_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADECLIP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADECORRELATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADELAY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADENORM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADERIVATIVE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADRC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADYNAMICEQUALIZER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADYNAMICSMOOTH_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AECHO_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AEMPHASIS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AEVAL_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AEXCITER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AFADE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AFFTDN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AFFTFILT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AFIR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AFORMAT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AFREQSHIFT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AFWTDN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AGATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AIIR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AINTEGRAL_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AINTERLEAVE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALATENCY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALIMITER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALLPASS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALOOP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMERGE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMETADATA_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMIX_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMULTIPLY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANEQUALIZER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANLMDN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANLMF_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANLMS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANULL_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APAD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APERMS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APHASER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APHASESHIFT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APSNR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APSYCLIP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APULSATOR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AREALTIME_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ARESAMPLE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AREVERSE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ARLS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ARNNDN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASDR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASEGMENT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASELECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASENDCMD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASETNSAMPLES_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASETPTS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASETRATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASETTB_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASHOWINFO_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASIDEDATA_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASISDR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASOFTCLIP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASPECTRALSTATS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASPLIT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASR_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ASTATS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASTREAMSELECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASUBBOOST_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASUBCUT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASUPERCUT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASUPERPASS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASUPERSTOP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ATEMPO_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ATILT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ATRIM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AXCORRELATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AZMQ_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_BANDPASS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BANDREJECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BASS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BIQUAD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BS2B_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_CHANNELMAP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CHANNELSPLIT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CHORUS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COMPAND_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COMPENSATIONDELAY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CROSSFEED_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CRYSTALIZER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DCSHIFT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DEESSER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DIALOGUENHANCE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DRMETER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DYNAUDNORM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EARWAX_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EBUR128_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EQUALIZER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EXTRASTEREO_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FIREQUALIZER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLANGER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HAAS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HDCD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HEADPHONE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HIGHPASS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HIGHSHELF_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JOIN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LADSPA_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LOUDNORM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LOWPASS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LOWSHELF_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LV2_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MCOMPAND_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PAN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_REPLAYGAIN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RUBBERBAND_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SIDECHAINCOMPRESS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SIDECHAINGATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SILENCEDETECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SILENCEREMOVE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SOFALIZER_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SPEECHNORM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_STEREOTOOLS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_STEREOWIDEN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SUPEREQUALIZER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SURROUND_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TILTSHELF_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TREBLE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TREMOLO_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VIBRATO_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VIRTUALBASS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VOLUME_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VOLUMEDETECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AEVALSRC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AFDELAYSRC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AFIREQSRC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AFIRSRC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANOISESRC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANULLSRC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLITE_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HILBERT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SINC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SINE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANULLSINK_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADDROI_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALPHAEXTRACT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALPHAMERGE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMPLIFY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASS_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ATADENOISE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVGBLUR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVGBLUR_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AVGBLUR_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_BACKGROUNDKEY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BBOX_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BENCH_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BILATERAL_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BILATERAL_CUDA_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_BITPLANENOISE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BLACKDETECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BLACKFRAME_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_BLEND_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BLEND_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_BLOCKDETECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BLURDETECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BM3D_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BOXBLUR_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_BOXBLUR_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_BWDIF_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BWDIF_CUDA_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_BWDIF_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_CAS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CCREPACK_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CHROMABER_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_CHROMAHOLD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CHROMAKEY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CHROMAKEY_CUDA_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_CHROMANR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CHROMASHIFT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CIESCOPE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CODECVIEW_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLORBALANCE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLORCHANNELMIXER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLORCONTRAST_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLORCORRECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLORIZE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLORKEY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLORKEY_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_COLORHOLD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLORLEVELS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLORMAP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLORMATRIX_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_COLORSPACE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLORSPACE_CUDA_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_COLORTEMPERATURE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CONVOLUTION_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CONVOLUTION_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_CONVOLVE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COPY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COREIMAGE_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_CORR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COVER_RECT_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_CROP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CROPDETECT_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_CUE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CURVES_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DATASCOPE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DBLUR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DCTDNOIZ_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DEBAND_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DEBLOCK_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DECIMATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DECONVOLVE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DEDOT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DEFLATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DEFLICKER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DEINTERLACE_QSV_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DEINTERLACE_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DEJUDDER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DELOGO_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DENOISE_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DERAIN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DESHAKE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DESHAKE_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DESPILL_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DETELECINE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DILATION_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DILATION_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DISPLACE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DNN_CLASSIFY_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DNN_DETECT_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DNN_PROCESSING_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DOUBLEWEAVE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DRAWBOX_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DRAWGRAPH_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DRAWGRID_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DRAWTEXT_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_EDGEDETECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ELBG_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ENTROPY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EPX_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EQ_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_EROSION_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EROSION_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ESTDIF_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EXPOSURE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EXTRACTPLANES_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FADE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FEEDBACK_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FFTDNOIZ_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FFTFILT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FIELD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FIELDHINT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FIELDMATCH_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FIELDORDER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FILLBORDERS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FIND_RECT_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_FLOODFILL_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FORMAT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FPS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FRAMEPACK_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FRAMERATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FRAMESTEP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FREEZEDETECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FREEZEFRAMES_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FREI0R_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_FSPP_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_FSYNC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GBLUR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GBLUR_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_GEQ_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GRADFUN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GRAPHMONITOR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GRAYWORLD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GREYEDGE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GUIDED_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HALDCLUT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HFLIP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HFLIP_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HISTEQ_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HISTOGRAM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HQDN3D_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HQX_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HSTACK_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HSVHOLD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HSVKEY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HUE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HUESATURATION_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HWDOWNLOAD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HWMAP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HWUPLOAD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HWUPLOAD_CUDA_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HYSTERESIS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ICCDETECT_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ICCGEN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_IDENTITY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IDET_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IL_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_INFLATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_INTERLACE_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_INTERLEAVE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_KERNDEINT_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_KIRSCH_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LAGFUN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LATENCY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LENSCORRECTION_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LENSFUN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBPLACEBO_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVMAF_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBVMAF_CUDA_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIMITDIFF_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LIMITER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LOOP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LUMAKEY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LUT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LUT1D_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LUT2_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LUT3D_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LUTRGB_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LUTYUV_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MASKEDCLAMP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MASKEDMAX_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MASKEDMERGE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MASKEDMIN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MASKEDTHRESHOLD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MASKFUN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MCDEINT_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MEDIAN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MERGEPLANES_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MESTIMATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_METADATA_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MIDEQUALIZER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MINTERPOLATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MIX_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MONOCHROME_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MORPHO_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPDECIMATE_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_MSAD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MULTIPLY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NEGATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NLMEANS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NLMEANS_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_NLMEANS_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_NNEDI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_NOFORMAT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NOISE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NORMALIZE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NULL_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OCR_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_OCV_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_OSCILLOSCOPE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OVERLAY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OVERLAY_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_OVERLAY_QSV_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_OVERLAY_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_OVERLAY_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_OVERLAY_CUDA_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_OWDENOISE_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PAD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PAD_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PALETTEGEN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PALETTEUSE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PERMS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PERSPECTIVE_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PHASE_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PHOTOSENSITIVITY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PIXDESCTEST_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PIXELIZE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PIXSCOPE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PP_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PP7_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PREMULTIPLY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PREWITT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PREWITT_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PROCAMP_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PROGRAM_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PSEUDOCOLOR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PSNR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PULLUP_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_QP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QRENCODE_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_QUIRC_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_RANDOM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_READEIA608_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_READVITC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_REALTIME_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_REMAP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_REMAP_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_REMOVEGRAIN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_REMOVELOGO_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_REPEATFIELDS_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_REVERSE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RGBASHIFT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ROBERTS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ROBERTS_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ROTATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SAB_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SCALE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SCALE_CUDA_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SCALE_NPP_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SCALE_QSV_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SCALE_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SCALE_VT_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SCALE_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SCALE2REF_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SCALE2REF_NPP_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SCDET_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SCHARR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SCROLL_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SEGMENT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SELECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SELECTIVECOLOR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SENDCMD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SEPARATEFIELDS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SETDAR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SETFIELD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SETPARAMS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SETPTS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SETRANGE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SETSAR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SETTB_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHARPEN_NPP_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SHARPNESS_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SHEAR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOWINFO_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOWPALETTE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHUFFLEFRAMES_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHUFFLEPIXELS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHUFFLEPLANES_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SIDEDATA_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SIGNALSTATS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SIGNATURE_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SITI_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMARTBLUR_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SOBEL_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SOBEL_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SPLIT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SPP_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SR_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SSIM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SSIM360_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_STEREO3D_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_STREAMSELECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SUBTITLES_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SUPER2XSAI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_SWAPRECT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SWAPUV_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TBLEND_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TELECINE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_THISTOGRAM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_THRESHOLD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_THUMBNAIL_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_THUMBNAIL_CUDA_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_TILE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TILTANDSHIFT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TINTERLACE_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_TLUT2_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TMEDIAN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TMIDEQUALIZER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TMIX_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TONEMAP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TONEMAP_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_TONEMAP_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_TPAD_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRANSPOSE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRANSPOSE_NPP_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_TRANSPOSE_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_TRANSPOSE_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_TRANSPOSE_VT_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_TRANSPOSE_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_TRIM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_UNPREMULTIPLY_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_UNSHARP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_UNSHARP_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_UNTILE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_USPP_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_V360_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VAGUEDENOISER_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VARBLUR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VECTORSCOPE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VFLIP_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VFLIP_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VFRDET_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VIBRANCE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VIDSTABDETECT_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VIDSTABTRANSFORM_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VIF_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VIGNETTE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VMAFMOTION_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VPP_QSV_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VSTACK_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_W3FDIF_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WAVEFORM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WEAVE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XBR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XCORRELATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XFADE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XFADE_OPENCL_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_XFADE_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_XMEDIAN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XSTACK_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_YADIF_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_YADIF_CUDA_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_YADIF_VIDEOTOOLBOX_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_YAEPBLUR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ZMQ_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ZOOMPAN_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ZSCALE_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HSTACK_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VSTACK_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_XSTACK_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_HSTACK_QSV_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VSTACK_QSV_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_XSTACK_QSV_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PAD_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DRAWBOX_VAAPI_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ALLRGB_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALLYUV_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CELLAUTO_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLOR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLOR_VULKAN_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_COLORCHART_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COLORSPECTRUM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_COREIMAGESRC_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DDAGRAB_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_FREI0R_SRC_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_GRADIENTS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HALDCLUTSRC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LIFE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MANDELBROT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPTESTSRC_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_NULLSRC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OPENCLSRC_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_QRENCODESRC_FILTER ?= 0 +config [uint64] config.FFmpeg.CONFIG_PAL75BARS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PAL100BARS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RGBTESTSRC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SIERPINSKI_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMPTEBARS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMPTEHDBARS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TESTSRC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TESTSRC2_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_YUVTESTSRC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ZONEPLATE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NULLSINK_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_A3DSCOPE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ABITSCOPE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADRAWGRAPH_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AGRAPHMONITOR_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AHISTOGRAM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APHASEMETER_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVECTORSCOPE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CONCAT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOWCQT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOWCWT_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOWFREQS_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOWSPATIAL_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOWSPECTRUM_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOWSPECTRUMPIC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOWVOLUME_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOWWAVES_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHOWWAVESPIC_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SPECTRUMSYNTH_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVSYNCTEST_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMOVIE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MOVIE_FILTER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AAC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AAX_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AC3_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AC4_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ACE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ACM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ACT_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADX_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AEA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AFC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AIFF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AIX_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMR_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMRNB_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMRWB_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ANM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APAC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APNG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APTX_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APTX_HD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AQTITLE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ARGO_ASF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ARGO_BRP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ARGO_CVG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASF_O_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AST_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AU_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AV1_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVI_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVISYNTH_DEMUXER ?= 0 +config [uint64] config.FFmpeg.CONFIG_AVR_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVS2_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVS3_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BETHSOFTVID_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BFI_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BINTEXT_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BINK_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BINKA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BIT_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BITPACKED_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BMV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BFSTM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BRSTM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BOA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BONK_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_C93_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CAF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CAVSVIDEO_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CDG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CDXL_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CINE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CODEC2_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CODEC2RAW_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CONCAT_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DASH_DEMUXER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DATA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DAUD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DCSTR_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DERF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DFA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DFPWM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DHAV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DIRAC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DNXHD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DSF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DSICIN_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DSS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DTS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DTSHD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVBSUB_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVBTXT_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DVDVIDEO_DEMUXER ?= 0 +config [uint64] config.FFmpeg.CONFIG_DXA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EA_CDATA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EAC3_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EPAF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EVC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FFMETADATA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FILMSTRIP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FITS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLAC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLIC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LIVE_FLV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FOURXM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FRM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FSB_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FWSE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G722_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G723_1_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G726_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G726LE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G729_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GDV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GENH_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GIF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GSM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GXF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H261_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H263_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HCA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HCOM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HEVC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HLS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HNM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IAMF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ICO_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IDCIN_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IDF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IFF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IFV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ILBC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE2_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE2PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE2_ALIAS_PIX_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE2_BRENDER_PIX_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMF_DEMUXER ?= 0 +config [uint64] config.FFmpeg.CONFIG_INGENIENT_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IPMOVIE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IPU_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IRCAM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ISS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IV8_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IVF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IVR_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JACOSUB_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JPEGXL_ANIM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_KUX_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_KVAG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LAF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LC3_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LMLM4_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LOAS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LUODAT_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LRC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LVF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LXF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_M4V_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MCA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MCC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MATROSKA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MGSTS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MICRODVD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MJPEG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MJPEG_2000_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MLP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MLV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MMF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MODS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MOFLEX_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MOV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP3_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPC8_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGPS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGTS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGVIDEO_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPJPEG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPL2_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPSUB_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSNWC_TCP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MSP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MTAF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MTV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MUSX_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MVI_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MXF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MXG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NISTSPHERE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NSP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NSV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NUT_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NUV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OBU_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OGG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OMA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OSQ_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PAF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_ALAW_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_MULAW_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_VIDC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F64BE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F64LE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F32BE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F32LE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S32BE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S32LE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S24BE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S24LE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S16BE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S16LE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S8_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U32BE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U32LE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U24BE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U24LE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U16BE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U16LE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U8_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PDV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PJS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PMP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PP_BNK_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PVA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PVF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QCP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_QOA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_R3D_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RAWVIDEO_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RCWT_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_REALTEXT_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_REDSPARK_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RKA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RL2_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ROQ_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RPL_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RSD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RSO_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RTP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RTSP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_S337M_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SAMI_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SAP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SBC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SBG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SCC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SCD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SDNS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SDP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SDR2_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SDS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SDX_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SEGAFILM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SER_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SGA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SHORTEN_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SIFF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SIMBIOSIS_IMX_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SLN_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMACKER_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMJPEG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMUSH_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SOL_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SOX_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SPDIF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SRT_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_STR_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_STL_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SUBVIEWER1_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SUBVIEWER_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SUP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SVAG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SVS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SWF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TAK_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TEDCAPTIONS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_THP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_THREEDOSTR_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TIERTEXSEQ_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TMV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRUEHD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TTA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TXD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TTY_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TY_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_USM_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_V210_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_V210X_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VAG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VC1_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VC1T_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VIVIDAS_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VIVO_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VMD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VOBSUB_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VOC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VPK_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VPLAYER_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VQF_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VVC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_W64_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WADY_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WAVARC_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WAV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WC3_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WEBM_DASH_MANIFEST_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WEBVTT_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WSAUD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WSD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WSVQA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WTV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WVE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XBIN_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XMD_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XMV_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XVAG_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_XWMA_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_YOP_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_YUV4MPEGPIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_BMP_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_CRI_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_DDS_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_DPX_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_EXR_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_GEM_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_GIF_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_HDR_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_J2K_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_JPEG_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_JPEGLS_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_JPEGXL_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PAM_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PBM_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PCX_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PFM_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PGMYUV_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PGM_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PGX_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PHM_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PHOTOCD_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PICTOR_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PNG_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PPM_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_PSD_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_QDRAW_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_QOI_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_SGI_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_SVG_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_SUNRAST_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_TIFF_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_WEBP_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_XBM_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_XPM_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE_XWD_PIPE_DEMUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LIBGME_DEMUXER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBMODPLUG_DEMUXER ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBOPENMPT_DEMUXER ?= 0 +config [uint64] config.FFmpeg.CONFIG_VAPOURSYNTH_DEMUXER ?= 0 +config [uint64] config.FFmpeg.CONFIG_A64_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AC3_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AC4_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADTS_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ADX_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AEA_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AIFF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ALP_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMR_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AMV_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APM_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APNG_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APTX_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_APTX_HD_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ARGO_ASF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ARGO_CVG_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASS_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AST_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ASF_STREAM_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AU_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVI_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVIF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVM2_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVS2_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_AVS3_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_BIT_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CAF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CAVSVIDEO_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CODEC2_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CODEC2RAW_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CRC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DASH_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DATA_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DAUD_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DFPWM_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DIRAC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DNXHD_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DTS_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_DV_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EAC3_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_EVC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_F4V_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FFMETADATA_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FIFO_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FILMSTRIP_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FITS_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLAC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FLV_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FRAMECRC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FRAMEHASH_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_FRAMEMD5_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G722_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G723_1_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G726_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_G726LE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GIF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GSM_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_GXF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H261_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H263_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_H264_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HASH_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HDS_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HEVC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_HLS_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IAMF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ICO_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ILBC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE2_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IMAGE2PIPE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IPOD_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IRCAM_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ISMV_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_IVF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_JACOSUB_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_KVAG_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LATM_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LC3_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_LRC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_M4V_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MD5_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MATROSKA_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MATROSKA_AUDIO_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MICRODVD_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MJPEG_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MLP_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MMF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MOV_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP2_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP3_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MP4_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG1SYSTEM_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG1VCD_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG1VIDEO_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG2DVD_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG2SVCD_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG2VIDEO_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEG2VOB_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPEGTS_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MPJPEG_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MXF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NULL_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_NUT_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OBU_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OGA_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OGG_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OGV_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OMA_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_OPUS_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_ALAW_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_MULAW_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_VIDC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F64BE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F64LE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F32BE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_F32LE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S32BE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S32LE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S24BE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S24LE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S16BE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S16LE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_S8_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U32BE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U32LE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U24BE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U24LE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U16BE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U16LE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PCM_U8_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_PSP_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RAWVIDEO_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RCWT_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RM_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_ROQ_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RSO_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RTP_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RTP_MPEGTS_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_RTSP_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SAP_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SBC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SCC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SEGAFILM_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SEGMENT_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_STREAM_SEGMENT_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMJPEG_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SMOOTHSTREAMING_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SOX_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SPX_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SPDIF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SRT_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_STREAMHASH_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SUP_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_SWF_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TEE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TG2_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TGP_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_MKVTIMESTAMP_V2_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TRUEHD_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TTA_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_TTML_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_UNCODEDFRAMECRC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VC1_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VC1T_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VOC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_VVC_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_W64_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WAV_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WEBM_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WEBM_DASH_MANIFEST_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WEBM_CHUNK_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WEBP_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WEBVTT_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WSAUD_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WTV_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_WV_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_YUV4MPEGPIPE_MUXER ?= 1 +config [uint64] config.FFmpeg.CONFIG_CHROMAPRINT_MUXER ?= 0 +config [uint64] config.FFmpeg.CONFIG_ANDROID_CONTENT_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_ASYNC_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_BLURAY_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_CACHE_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_CONCAT_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_CONCATF_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_CRYPTO_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_DATA_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_FD_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_FFRTMPCRYPT_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_FFRTMPHTTP_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_FILE_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_FTP_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_GOPHER_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_GOPHERS_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_HLS_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_HTTP_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_HTTPPROXY_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_HTTPS_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_ICECAST_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_MMSH_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_MMST_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_MD5_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_PIPE_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_PROMPEG_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_RTMP_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_RTMPE_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_RTMPS_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_RTMPT_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_RTMPTE_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_RTMPTS_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_RTP_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_SCTP_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_SRTP_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_SUBFILE_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_TEE_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_TCP_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_TLS_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_UDP_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_UDPLITE_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_UNIX_PROTOCOL ?= 1 +config [uint64] config.FFmpeg.CONFIG_LIBAMQP_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBRIST_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBRTMP_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBRTMPE_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBRTMPS_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBRTMPT_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBRTMPTE_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSRT_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSSH_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBSMBCLIENT_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_LIBZMQ_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_IPFS_GATEWAY_PROTOCOL ?= 0 +config [uint64] config.FFmpeg.CONFIG_IPNS_GATEWAY_PROTOCOL ?= 0 + +# The test target for cross-testing (running tests under Wine, etc). +# +test.target = $c.target diff --git a/buildfile b/buildfile new file mode 100644 index 0000000..5185670 --- /dev/null +++ b/buildfile @@ -0,0 +1,6 @@ +./: {libffmpeg-avutil/} doc{PACKAGE-README.md} manifest +#.#/: doc{PACKAGE-README.md} manifest + +# Don't install tests. +# +tests/: install = false diff --git a/config.h b/config.h new file mode 100644 index 0000000..699b464 --- /dev/null +++ b/config.h @@ -0,0 +1,782 @@ +/* Automatically generated by configure - do not modify! */ +#ifndef FFMPEG_CONFIG_H +#define FFMPEG_CONFIG_H +#define FFMPEG_CONFIGURATION "--disable-x86asm" +#define FFMPEG_LICENSE "LGPL version 2.1 or later" +#define CONFIG_THIS_YEAR 2024 +#define FFMPEG_DATADIR "/usr/local/share/ffmpeg" +#define AVCONV_DATADIR "/usr/local/share/ffmpeg" +#define CC_IDENT "gcc 14 (GCC)" +#define OS_NAME linux +#define EXTERN_PREFIX "" +#define EXTERN_ASM +#define BUILDSUF "" +#define SLIBSUF ".so" +#define SWS_MAX_FILTER_SIZE 256 +#define ARCH_AARCH64 0 +#define ARCH_ALPHA 0 +#define ARCH_ARM 0 +#define ARCH_AVR32 0 +#define ARCH_AVR32_AP 0 +#define ARCH_AVR32_UC 0 +#define ARCH_BFIN 0 +#define ARCH_IA64 0 +#define ARCH_LOONGARCH 0 +#define ARCH_LOONGARCH32 0 +#define ARCH_LOONGARCH64 0 +#define ARCH_M68K 0 +#define ARCH_MIPS 0 +#define ARCH_MIPS64 0 +#define ARCH_PARISC 0 +#define ARCH_PPC 0 +#define ARCH_PPC64 0 +#define ARCH_RISCV 0 +#define ARCH_S390 0 +#define ARCH_SH4 0 +#define ARCH_SPARC 0 +#define ARCH_SPARC64 0 +#define ARCH_TILEGX 0 +#define ARCH_TILEPRO 0 +#define ARCH_X86 1 +#define ARCH_X86_32 0 +#define ARCH_X86_64 1 +#define HAVE_ARMV5TE 0 +#define HAVE_ARMV6 0 +#define HAVE_ARMV6T2 0 +#define HAVE_ARMV8 0 +#define HAVE_DOTPROD 0 +#define HAVE_I8MM 0 +#define HAVE_NEON 0 +#define HAVE_VFP 0 +#define HAVE_VFPV3 0 +#define HAVE_SETEND 0 +#define HAVE_ALTIVEC 0 +#define HAVE_DCBZL 0 +#define HAVE_LDBRX 0 +#define HAVE_POWER8 0 +#define HAVE_PPC4XX 0 +#define HAVE_VSX 0 +#define HAVE_RV 0 +#define HAVE_RVV 0 +#define HAVE_RV_ZVBB 0 +#define HAVE_AESNI 1 +#define HAVE_AMD3DNOW 1 +#define HAVE_AMD3DNOWEXT 1 +#define HAVE_AVX 1 +#define HAVE_AVX2 1 +#define HAVE_AVX512 1 +#define HAVE_AVX512ICL 1 +#define HAVE_FMA3 1 +#define HAVE_FMA4 1 +#define HAVE_MMX 1 +#define HAVE_MMXEXT 1 +#define HAVE_SSE 1 +#define HAVE_SSE2 1 +#define HAVE_SSE3 1 +#define HAVE_SSE4 1 +#define HAVE_SSE42 1 +#define HAVE_SSSE3 1 +#define HAVE_XOP 1 +#define HAVE_I686 1 +#define HAVE_MIPSFPU 0 +#define HAVE_MIPS32R2 0 +#define HAVE_MIPS32R5 0 +#define HAVE_MIPS64R2 0 +#define HAVE_MIPS32R6 0 +#define HAVE_MIPS64R6 0 +#define HAVE_MIPSDSP 0 +#define HAVE_MIPSDSPR2 0 +#define HAVE_MSA 0 +#define HAVE_LOONGSON2 0 +#define HAVE_LOONGSON3 0 +#define HAVE_MMI 0 +#define HAVE_LSX 0 +#define HAVE_LASX 0 +#define HAVE_ARMV5TE_EXTERNAL 0 +#define HAVE_ARMV6_EXTERNAL 0 +#define HAVE_ARMV6T2_EXTERNAL 0 +#define HAVE_ARMV8_EXTERNAL 0 +#define HAVE_DOTPROD_EXTERNAL 0 +#define HAVE_I8MM_EXTERNAL 0 +#define HAVE_NEON_EXTERNAL 0 +#define HAVE_VFP_EXTERNAL 0 +#define HAVE_VFPV3_EXTERNAL 0 +#define HAVE_SETEND_EXTERNAL 0 +#define HAVE_ALTIVEC_EXTERNAL 0 +#define HAVE_DCBZL_EXTERNAL 0 +#define HAVE_LDBRX_EXTERNAL 0 +#define HAVE_POWER8_EXTERNAL 0 +#define HAVE_PPC4XX_EXTERNAL 0 +#define HAVE_VSX_EXTERNAL 0 +#define HAVE_RV_EXTERNAL 0 +#define HAVE_RVV_EXTERNAL 0 +#define HAVE_RV_ZVBB_EXTERNAL 0 +#define HAVE_AESNI_EXTERNAL 0 +#define HAVE_AMD3DNOW_EXTERNAL 0 +#define HAVE_AMD3DNOWEXT_EXTERNAL 0 +#define HAVE_AVX_EXTERNAL 0 +#define HAVE_AVX2_EXTERNAL 0 +#define HAVE_AVX512_EXTERNAL 0 +#define HAVE_AVX512ICL_EXTERNAL 0 +#define HAVE_FMA3_EXTERNAL 0 +#define HAVE_FMA4_EXTERNAL 0 +#define HAVE_MMX_EXTERNAL 0 +#define HAVE_MMXEXT_EXTERNAL 0 +#define HAVE_SSE_EXTERNAL 0 +#define HAVE_SSE2_EXTERNAL 0 +#define HAVE_SSE3_EXTERNAL 0 +#define HAVE_SSE4_EXTERNAL 0 +#define HAVE_SSE42_EXTERNAL 0 +#define HAVE_SSSE3_EXTERNAL 0 +#define HAVE_XOP_EXTERNAL 0 +#define HAVE_I686_EXTERNAL 0 +#define HAVE_MIPSFPU_EXTERNAL 0 +#define HAVE_MIPS32R2_EXTERNAL 0 +#define HAVE_MIPS32R5_EXTERNAL 0 +#define HAVE_MIPS64R2_EXTERNAL 0 +#define HAVE_MIPS32R6_EXTERNAL 0 +#define HAVE_MIPS64R6_EXTERNAL 0 +#define HAVE_MIPSDSP_EXTERNAL 0 +#define HAVE_MIPSDSPR2_EXTERNAL 0 +#define HAVE_MSA_EXTERNAL 0 +#define HAVE_LOONGSON2_EXTERNAL 0 +#define HAVE_LOONGSON3_EXTERNAL 0 +#define HAVE_MMI_EXTERNAL 0 +#define HAVE_LSX_EXTERNAL 0 +#define HAVE_LASX_EXTERNAL 0 +#define HAVE_ARMV5TE_INLINE 0 +#define HAVE_ARMV6_INLINE 0 +#define HAVE_ARMV6T2_INLINE 0 +#define HAVE_ARMV8_INLINE 0 +#define HAVE_DOTPROD_INLINE 0 +#define HAVE_I8MM_INLINE 0 +#define HAVE_NEON_INLINE 0 +#define HAVE_VFP_INLINE 0 +#define HAVE_VFPV3_INLINE 0 +#define HAVE_SETEND_INLINE 0 +#define HAVE_ALTIVEC_INLINE 0 +#define HAVE_DCBZL_INLINE 0 +#define HAVE_LDBRX_INLINE 0 +#define HAVE_POWER8_INLINE 0 +#define HAVE_PPC4XX_INLINE 0 +#define HAVE_VSX_INLINE 0 +#define HAVE_RV_INLINE 0 +#define HAVE_RVV_INLINE 0 +#define HAVE_RV_ZVBB_INLINE 0 +#define HAVE_AESNI_INLINE 1 +#define HAVE_AMD3DNOW_INLINE 1 +#define HAVE_AMD3DNOWEXT_INLINE 1 +#define HAVE_AVX_INLINE 1 +#define HAVE_AVX2_INLINE 1 +#define HAVE_AVX512_INLINE 1 +#define HAVE_AVX512ICL_INLINE 1 +#define HAVE_FMA3_INLINE 1 +#define HAVE_FMA4_INLINE 1 +#define HAVE_MMX_INLINE 1 +#define HAVE_MMXEXT_INLINE 1 +#define HAVE_SSE_INLINE 1 +#define HAVE_SSE2_INLINE 1 +#define HAVE_SSE3_INLINE 1 +#define HAVE_SSE4_INLINE 1 +#define HAVE_SSE42_INLINE 1 +#define HAVE_SSSE3_INLINE 1 +#define HAVE_XOP_INLINE 1 +#define HAVE_I686_INLINE 0 +#define HAVE_MIPSFPU_INLINE 0 +#define HAVE_MIPS32R2_INLINE 0 +#define HAVE_MIPS32R5_INLINE 0 +#define HAVE_MIPS64R2_INLINE 0 +#define HAVE_MIPS32R6_INLINE 0 +#define HAVE_MIPS64R6_INLINE 0 +#define HAVE_MIPSDSP_INLINE 0 +#define HAVE_MIPSDSPR2_INLINE 0 +#define HAVE_MSA_INLINE 0 +#define HAVE_LOONGSON2_INLINE 0 +#define HAVE_LOONGSON3_INLINE 0 +#define HAVE_MMI_INLINE 0 +#define HAVE_LSX_INLINE 0 +#define HAVE_LASX_INLINE 0 +#define HAVE_ALIGNED_STACK 1 +#define HAVE_FAST_64BIT 1 +#define HAVE_FAST_CLZ 1 +#define HAVE_FAST_CMOV 1 +#define HAVE_FAST_FLOAT16 0 +#define HAVE_LOCAL_ALIGNED 1 +#define HAVE_SIMD_ALIGN_16 1 +#define HAVE_SIMD_ALIGN_32 1 +#define HAVE_SIMD_ALIGN_64 1 +#define HAVE_ATOMIC_CAS_PTR 0 +#define HAVE_MACHINE_RW_BARRIER 0 +#define HAVE_MEMORYBARRIER 0 +#define HAVE_MM_EMPTY 1 +#define HAVE_RDTSC 0 +#define HAVE_SEM_TIMEDWAIT 1 +#define HAVE_SYNC_VAL_COMPARE_AND_SWAP 1 +#define HAVE_INLINE_ASM 1 +#define HAVE_SYMVER 1 +#define HAVE_X86ASM 0 +#define HAVE_BIGENDIAN 0 +#define HAVE_FAST_UNALIGNED 1 +#define HAVE_ARPA_INET_H 1 +#define HAVE_ASM_HWPROBE_H 0 +#define HAVE_ASM_TYPES_H 1 +#define HAVE_CDIO_PARANOIA_H 0 +#define HAVE_CDIO_PARANOIA_PARANOIA_H 0 +#define HAVE_CUDA_H 0 +#define HAVE_DISPATCH_DISPATCH_H 0 +#define HAVE_DEV_BKTR_IOCTL_BT848_H 0 +#define HAVE_DEV_BKTR_IOCTL_METEOR_H 0 +#define HAVE_DEV_IC_BT8XX_H 0 +#define HAVE_DEV_VIDEO_BKTR_IOCTL_BT848_H 0 +#define HAVE_DEV_VIDEO_METEOR_IOCTL_METEOR_H 0 +#define HAVE_DIRECT_H 0 +#define HAVE_DIRENT_H 1 +#define HAVE_DXGIDEBUG_H 0 +#define HAVE_DXVA_H 0 +#define HAVE_ES2_GL_H 0 +#define HAVE_GSM_H 0 +#define HAVE_IO_H 0 +#define HAVE_LINUX_DMA_BUF_H 1 +#define HAVE_LINUX_PERF_EVENT_H 1 +#define HAVE_MACHINE_IOCTL_BT848_H 0 +#define HAVE_MACHINE_IOCTL_METEOR_H 0 +#define HAVE_MALLOC_H 1 +#define HAVE_OPENCV2_CORE_CORE_C_H 0 +#define HAVE_OPENGL_GL3_H 0 +#define HAVE_POLL_H 1 +#define HAVE_PTHREAD_NP_H 0 +#define HAVE_SYS_HWPROBE_H 0 +#define HAVE_SYS_PARAM_H 1 +#define HAVE_SYS_RESOURCE_H 1 +#define HAVE_SYS_SELECT_H 1 +#define HAVE_SYS_SOUNDCARD_H 1 +#define HAVE_SYS_TIME_H 1 +#define HAVE_SYS_UN_H 1 +#define HAVE_SYS_VIDEOIO_H 0 +#define HAVE_TERMIOS_H 1 +#define HAVE_UDPLITE_H 0 +#define HAVE_UNISTD_H 1 +#define HAVE_VALGRIND_VALGRIND_H 0 +#define HAVE_WINDOWS_H 0 +#define HAVE_WINSOCK2_H 0 +#define HAVE_INTRINSICS_NEON 0 +#define HAVE_ATANF 1 +#define HAVE_ATAN2F 1 +#define HAVE_CBRT 1 +#define HAVE_CBRTF 1 +#define HAVE_COPYSIGN 1 +#define HAVE_COSF 1 +#define HAVE_ERF 1 +#define HAVE_EXP2 1 +#define HAVE_EXP2F 1 +#define HAVE_EXPF 1 +#define HAVE_HYPOT 1 +#define HAVE_ISFINITE 1 +#define HAVE_ISINF 1 +#define HAVE_ISNAN 1 +#define HAVE_LDEXPF 1 +#define HAVE_LLRINT 1 +#define HAVE_LLRINTF 1 +#define HAVE_LOG2 1 +#define HAVE_LOG2F 1 +#define HAVE_LOG10F 1 +#define HAVE_LRINT 1 +#define HAVE_LRINTF 1 +#define HAVE_POWF 1 +#define HAVE_RINT 1 +#define HAVE_ROUND 1 +#define HAVE_ROUNDF 1 +#define HAVE_SINF 1 +#define HAVE_TRUNC 1 +#define HAVE_TRUNCF 1 +#define HAVE_DOS_PATHS 0 +#define HAVE_LIBC_MSVCRT 0 +#define HAVE_MMAL_PARAMETER_VIDEO_MAX_NUM_CALLBACKS 0 +#define HAVE_SECTION_DATA_REL_RO 1 +#define HAVE_THREADS 1 +#define HAVE_UWP 0 +#define HAVE_WINRT 0 +#define HAVE_ACCESS 1 +#define HAVE_ALIGNED_MALLOC 0 +#define HAVE_ARC4RANDOM_BUF 0 +#define HAVE_CLOCK_GETTIME 1 +#define HAVE_CLOSESOCKET 0 +#define HAVE_COMMANDLINETOARGVW 0 +#define HAVE_FCNTL 1 +#define HAVE_GETADDRINFO 1 +#define HAVE_GETAUXVAL 1 +#define HAVE_GETENV 1 +#define HAVE_GETHRTIME 0 +#define HAVE_GETOPT 1 +#define HAVE_GETMODULEHANDLE 0 +#define HAVE_GETPROCESSAFFINITYMASK 0 +#define HAVE_GETPROCESSMEMORYINFO 0 +#define HAVE_GETPROCESSTIMES 0 +#define HAVE_GETRUSAGE 1 +#define HAVE_GETSTDHANDLE 0 +#define HAVE_GETSYSTEMTIMEASFILETIME 0 +#define HAVE_GETTIMEOFDAY 1 +#define HAVE_GLOB 1 +#define HAVE_GLXGETPROCADDRESS 0 +#define HAVE_GMTIME_R 1 +#define HAVE_INET_ATON 1 +#define HAVE_ISATTY 1 +#define HAVE_KBHIT 0 +#define HAVE_LOCALTIME_R 1 +#define HAVE_LSTAT 1 +#define HAVE_LZO1X_999_COMPRESS 0 +#define HAVE_MACH_ABSOLUTE_TIME 0 +#define HAVE_MAPVIEWOFFILE 0 +#define HAVE_MEMALIGN 1 +#define HAVE_MKSTEMP 1 +#define HAVE_MMAP 1 +#define HAVE_MPROTECT 1 +#define HAVE_NANOSLEEP 1 +#define HAVE_PEEKNAMEDPIPE 0 +#define HAVE_POSIX_MEMALIGN 1 +#define HAVE_PRCTL 1 +#define HAVE_PTHREAD_CANCEL 1 +#define HAVE_PTHREAD_SET_NAME_NP 0 +#define HAVE_PTHREAD_SETNAME_NP 0 +#define HAVE_SCHED_GETAFFINITY 1 +#define HAVE_SECITEMIMPORT 0 +#define HAVE_SETCONSOLETEXTATTRIBUTE 0 +#define HAVE_SETCONSOLECTRLHANDLER 0 +#define HAVE_SETDLLDIRECTORY 0 +#define HAVE_SETMODE 0 +#define HAVE_SETRLIMIT 1 +#define HAVE_SLEEP 0 +#define HAVE_STRERROR_R 1 +#define HAVE_SYSCONF 1 +#define HAVE_SYSCTL 0 +#define HAVE_SYSCTLBYNAME 0 +#define HAVE_USLEEP 1 +#define HAVE_UTGETOSTYPEFROMSTRING 0 +#define HAVE_VIRTUALALLOC 0 +#define HAVE_WGLGETPROCADDRESS 0 +#define HAVE_BCRYPT 0 +#define HAVE_VAAPI_DRM 0 +#define HAVE_VAAPI_X11 0 +#define HAVE_VAAPI_WIN32 0 +#define HAVE_VDPAU_X11 0 +#define HAVE_PTHREADS 1 +#define HAVE_OS2THREADS 0 +#define HAVE_W32THREADS 0 +#define HAVE_AS_ARCH_DIRECTIVE 0 +#define HAVE_AS_ARCHEXT_DOTPROD_DIRECTIVE 0 +#define HAVE_AS_ARCHEXT_I8MM_DIRECTIVE 0 +#define HAVE_AS_DN_DIRECTIVE 0 +#define HAVE_AS_FPU_DIRECTIVE 0 +#define HAVE_AS_FUNC 0 +#define HAVE_AS_OBJECT_ARCH 0 +#define HAVE_ASM_MOD_Q 0 +#define HAVE_BLOCKS_EXTENSION 0 +#define HAVE_EBP_AVAILABLE 1 +#define HAVE_EBX_AVAILABLE 1 +#define HAVE_GNU_AS 0 +#define HAVE_GNU_WINDRES 0 +#define HAVE_IBM_ASM 0 +#define HAVE_INLINE_ASM_DIRECT_SYMBOL_REFS 1 +#define HAVE_INLINE_ASM_LABELS 1 +#define HAVE_INLINE_ASM_NONLOCAL_LABELS 1 +#define HAVE_PRAGMA_DEPRECATED 1 +#define HAVE_RSYNC_CONTIMEOUT 1 +#define HAVE_SYMVER_ASM_LABEL 0 +#define HAVE_SYMVER_GNU_ASM 1 +#define HAVE_VFP_ARGS 0 +#define HAVE_XFORM_ASM 0 +#define HAVE_XMM_CLOBBERS 1 +#define HAVE_DPI_AWARENESS_CONTEXT 0 +#define HAVE_IDXGIOUTPUT5 0 +#define HAVE_KCMVIDEOCODECTYPE_HEVC 0 +#define HAVE_KCMVIDEOCODECTYPE_HEVCWITHALPHA 0 +#define HAVE_KCMVIDEOCODECTYPE_VP9 0 +#define HAVE_KCVPIXELFORMATTYPE_420YPCBCR10BIPLANARVIDEORANGE 0 +#define HAVE_KCVPIXELFORMATTYPE_422YPCBCR8BIPLANARVIDEORANGE 0 +#define HAVE_KCVPIXELFORMATTYPE_422YPCBCR10BIPLANARVIDEORANGE 0 +#define HAVE_KCVPIXELFORMATTYPE_422YPCBCR16BIPLANARVIDEORANGE 0 +#define HAVE_KCVPIXELFORMATTYPE_444YPCBCR8BIPLANARVIDEORANGE 0 +#define HAVE_KCVPIXELFORMATTYPE_444YPCBCR10BIPLANARVIDEORANGE 0 +#define HAVE_KCVPIXELFORMATTYPE_444YPCBCR16BIPLANARVIDEORANGE 0 +#define HAVE_KCVIMAGEBUFFERTRANSFERFUNCTION_SMPTE_ST_2084_PQ 0 +#define HAVE_KCVIMAGEBUFFERTRANSFERFUNCTION_ITU_R_2100_HLG 0 +#define HAVE_KCVIMAGEBUFFERTRANSFERFUNCTION_LINEAR 0 +#define HAVE_KCVIMAGEBUFFERYCBCRMATRIX_ITU_R_2020 0 +#define HAVE_KCVIMAGEBUFFERCOLORPRIMARIES_ITU_R_2020 0 +#define HAVE_KCVIMAGEBUFFERTRANSFERFUNCTION_ITU_R_2020 0 +#define HAVE_KCVIMAGEBUFFERTRANSFERFUNCTION_SMPTE_ST_428_1 0 +#define HAVE_SOCKLEN_T 1 +#define HAVE_STRUCT_ADDRINFO 1 +#define HAVE_STRUCT_GROUP_SOURCE_REQ 1 +#define HAVE_STRUCT_IP_MREQ_SOURCE 1 +#define HAVE_STRUCT_IPV6_MREQ 1 +#define HAVE_STRUCT_MSGHDR_MSG_FLAGS 1 +#define HAVE_STRUCT_POLLFD 1 +#define HAVE_STRUCT_RUSAGE_RU_MAXRSS 1 +#define HAVE_STRUCT_SCTP_EVENT_SUBSCRIBE 0 +#define HAVE_STRUCT_SOCKADDR_IN6 1 +#define HAVE_STRUCT_SOCKADDR_SA_LEN 0 +#define HAVE_STRUCT_SOCKADDR_STORAGE 1 +#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 +#define HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE 1 +#define HAVE_STRUCT_MFXCONFIGINTERFACE 0 +#define HAVE_GZIP 1 +#define HAVE_LIBDRM_GETFB2 0 +#define HAVE_MAKEINFO 0 +#define HAVE_MAKEINFO_HTML 0 +#define HAVE_OPENCL_D3D11 0 +#define HAVE_OPENCL_DRM_ARM 0 +#define HAVE_OPENCL_DRM_BEIGNET 0 +#define HAVE_OPENCL_DXVA2 0 +#define HAVE_OPENCL_VAAPI_BEIGNET 0 +#define HAVE_OPENCL_VAAPI_INTEL_MEDIA 0 +#define HAVE_OPENCL_VIDEOTOOLBOX 0 +#define HAVE_PERL 1 +#define HAVE_POD2MAN 1 +#define HAVE_TEXI2HTML 0 +#define HAVE_XMLLINT 1 +#define HAVE_ZLIB_GZIP 0 +#define HAVE_OPENVINO2 0 +#define CONFIG_DOC 1 +#define CONFIG_HTMLPAGES 0 +#define CONFIG_MANPAGES 1 +#define CONFIG_PODPAGES 1 +#define CONFIG_TXTPAGES 0 +#define CONFIG_AVIO_HTTP_SERVE_FILES_EXAMPLE 1 +#define CONFIG_AVIO_LIST_DIR_EXAMPLE 1 +#define CONFIG_AVIO_READ_CALLBACK_EXAMPLE 1 +#define CONFIG_DECODE_AUDIO_EXAMPLE 1 +#define CONFIG_DECODE_FILTER_AUDIO_EXAMPLE 1 +#define CONFIG_DECODE_FILTER_VIDEO_EXAMPLE 1 +#define CONFIG_DECODE_VIDEO_EXAMPLE 1 +#define CONFIG_DEMUX_DECODE_EXAMPLE 1 +#define CONFIG_ENCODE_AUDIO_EXAMPLE 1 +#define CONFIG_ENCODE_VIDEO_EXAMPLE 1 +#define CONFIG_EXTRACT_MVS_EXAMPLE 1 +#define CONFIG_FILTER_AUDIO_EXAMPLE 1 +#define CONFIG_HW_DECODE_EXAMPLE 1 +#define CONFIG_MUX_EXAMPLE 1 +#define CONFIG_QSV_DECODE_EXAMPLE 0 +#define CONFIG_REMUX_EXAMPLE 1 +#define CONFIG_RESAMPLE_AUDIO_EXAMPLE 1 +#define CONFIG_SCALE_VIDEO_EXAMPLE 1 +#define CONFIG_SHOW_METADATA_EXAMPLE 1 +#define CONFIG_TRANSCODE_AAC_EXAMPLE 1 +#define CONFIG_TRANSCODE_EXAMPLE 1 +#define CONFIG_VAAPI_ENCODE_EXAMPLE 0 +#define CONFIG_VAAPI_TRANSCODE_EXAMPLE 0 +#define CONFIG_QSV_TRANSCODE_EXAMPLE 0 +#define CONFIG_AVISYNTH 0 +#define CONFIG_FREI0R 0 +#define CONFIG_LIBCDIO 0 +#define CONFIG_LIBDAVS2 0 +#define CONFIG_LIBDVDNAV 0 +#define CONFIG_LIBDVDREAD 0 +#define CONFIG_LIBRUBBERBAND 0 +#define CONFIG_LIBVIDSTAB 0 +#define CONFIG_LIBX264 0 +#define CONFIG_LIBX265 0 +#define CONFIG_LIBXAVS 0 +#define CONFIG_LIBXAVS2 0 +#define CONFIG_LIBXVID 0 +#define CONFIG_DECKLINK 0 +#define CONFIG_LIBFDK_AAC 0 +#define CONFIG_LIBTLS 0 +#define CONFIG_GMP 0 +#define CONFIG_LIBARIBB24 0 +#define CONFIG_LIBLENSFUN 0 +#define CONFIG_LIBOPENCORE_AMRNB 0 +#define CONFIG_LIBOPENCORE_AMRWB 0 +#define CONFIG_LIBVO_AMRWBENC 0 +#define CONFIG_MBEDTLS 0 +#define CONFIG_RKMPP 0 +#define CONFIG_LIBSMBCLIENT 0 +#define CONFIG_CHROMAPRINT 0 +#define CONFIG_GCRYPT 0 +#define CONFIG_GNUTLS 0 +#define CONFIG_JNI 0 +#define CONFIG_LADSPA 0 +#define CONFIG_LCMS2 0 +#define CONFIG_LIBAOM 0 +#define CONFIG_LIBARIBCAPTION 0 +#define CONFIG_LIBASS 0 +#define CONFIG_LIBBLURAY 0 +#define CONFIG_LIBBS2B 0 +#define CONFIG_LIBCACA 0 +#define CONFIG_LIBCELT 0 +#define CONFIG_LIBCODEC2 0 +#define CONFIG_LIBDAV1D 0 +#define CONFIG_LIBDC1394 0 +#define CONFIG_LIBFLITE 0 +#define CONFIG_LIBFONTCONFIG 0 +#define CONFIG_LIBFREETYPE 0 +#define CONFIG_LIBFRIBIDI 0 +#define CONFIG_LIBHARFBUZZ 0 +#define CONFIG_LIBGLSLANG 0 +#define CONFIG_LIBGME 0 +#define CONFIG_LIBGSM 0 +#define CONFIG_LIBIEC61883 0 +#define CONFIG_LIBILBC 0 +#define CONFIG_LIBJACK 0 +#define CONFIG_LIBJXL 0 +#define CONFIG_LIBKLVANC 0 +#define CONFIG_LIBKVAZAAR 0 +#define CONFIG_LIBLC3 0 +#define CONFIG_LIBMODPLUG 0 +#define CONFIG_LIBMP3LAME 0 +#define CONFIG_LIBMYSOFA 0 +#define CONFIG_LIBOPENCV 0 +#define CONFIG_LIBOPENH264 0 +#define CONFIG_LIBOPENJPEG 0 +#define CONFIG_LIBOPENMPT 0 +#define CONFIG_LIBOPENVINO 0 +#define CONFIG_LIBOPUS 0 +#define CONFIG_LIBPLACEBO 0 +#define CONFIG_LIBPULSE 0 +#define CONFIG_LIBQRENCODE 0 +#define CONFIG_LIBQUIRC 0 +#define CONFIG_LIBRABBITMQ 0 +#define CONFIG_LIBRAV1E 0 +#define CONFIG_LIBRIST 0 +#define CONFIG_LIBRSVG 0 +#define CONFIG_LIBRTMP 0 +#define CONFIG_LIBSHADERC 0 +#define CONFIG_LIBSHINE 0 +#define CONFIG_LIBSMBCLIENT 0 +#define CONFIG_LIBSNAPPY 0 +#define CONFIG_LIBSOXR 0 +#define CONFIG_LIBSPEEX 0 +#define CONFIG_LIBSRT 0 +#define CONFIG_LIBSSH 0 +#define CONFIG_LIBSVTAV1 0 +#define CONFIG_LIBTENSORFLOW 0 +#define CONFIG_LIBTESSERACT 0 +#define CONFIG_LIBTHEORA 0 +#define CONFIG_LIBTORCH 0 +#define CONFIG_LIBTWOLAME 0 +#define CONFIG_LIBUAVS3D 0 +#define CONFIG_LIBV4L2 0 +#define CONFIG_LIBVMAF 0 +#define CONFIG_LIBVORBIS 0 +#define CONFIG_LIBVPX 0 +#define CONFIG_LIBWEBP 0 +#define CONFIG_LIBXEVD 0 +#define CONFIG_LIBXEVE 0 +#define CONFIG_LIBXML2 0 +#define CONFIG_LIBZIMG 0 +#define CONFIG_LIBZMQ 0 +#define CONFIG_LIBZVBI 0 +#define CONFIG_LV2 0 +#define CONFIG_MEDIACODEC 0 +#define CONFIG_OPENAL 0 +#define CONFIG_OPENGL 0 +#define CONFIG_OPENSSL 0 +#define CONFIG_POCKETSPHINX 0 +#define CONFIG_VAPOURSYNTH 0 +#define CONFIG_ALSA 0 +#define CONFIG_APPKIT 0 +#define CONFIG_AVFOUNDATION 0 +#define CONFIG_BZLIB 0 +#define CONFIG_COREIMAGE 0 +#define CONFIG_ICONV 1 +#define CONFIG_LIBXCB 0 +#define CONFIG_LIBXCB_SHM 0 +#define CONFIG_LIBXCB_SHAPE 0 +#define CONFIG_LIBXCB_XFIXES 0 +#define CONFIG_LZMA 0 +#define CONFIG_MEDIAFOUNDATION 0 +#define CONFIG_METAL 0 +#define CONFIG_SCHANNEL 0 +#define CONFIG_SDL2 0 +#define CONFIG_SECURETRANSPORT 0 +#define CONFIG_SNDIO 0 +#define CONFIG_XLIB 0 +#define CONFIG_ZLIB 0 +#define CONFIG_CUDA_NVCC 0 +#define CONFIG_CUDA_SDK 0 +#define CONFIG_LIBNPP 0 +#define CONFIG_LIBMFX 0 +#define CONFIG_LIBVPL 0 +#define CONFIG_MMAL 0 +#define CONFIG_OMX 0 +#define CONFIG_OPENCL 0 +#define CONFIG_AMF 0 +#define CONFIG_AUDIOTOOLBOX 0 +#define CONFIG_CUDA 0 +#define CONFIG_CUDA_LLVM 1 +#define CONFIG_CUVID 0 +#define CONFIG_D3D11VA 0 +#define CONFIG_D3D12VA 0 +#define CONFIG_DXVA2 0 +#define CONFIG_FFNVCODEC 0 +#define CONFIG_LIBDRM 0 +#define CONFIG_NVDEC 0 +#define CONFIG_NVENC 0 +#define CONFIG_VAAPI 0 +#define CONFIG_VDPAU 0 +#define CONFIG_VIDEOTOOLBOX 0 +#define CONFIG_VULKAN 0 +#define CONFIG_V4L2_M2M 1 +#define CONFIG_FTRAPV 0 +#define CONFIG_GRAY 0 +#define CONFIG_HARDCODED_TABLES 0 +#define CONFIG_OMX_RPI 0 +#define CONFIG_RUNTIME_CPUDETECT 1 +#define CONFIG_SAFE_BITSTREAM_READER 1 +#define CONFIG_SHARED 0 +#define CONFIG_SMALL 0 +#define CONFIG_STATIC 1 +#define CONFIG_SWSCALE_ALPHA 1 +#define CONFIG_GPL 0 +#define CONFIG_NONFREE 0 +#define CONFIG_VERSION3 0 +#define CONFIG_AVDEVICE 1 +#define CONFIG_AVFILTER 1 +#define CONFIG_SWSCALE 1 +#define CONFIG_POSTPROC 0 +#define CONFIG_AVFORMAT 1 +#define CONFIG_AVCODEC 1 +#define CONFIG_SWRESAMPLE 1 +#define CONFIG_AVUTIL 1 +#define CONFIG_FFPLAY 0 +#define CONFIG_FFPROBE 1 +#define CONFIG_FFMPEG 1 +#define CONFIG_DWT 1 +#define CONFIG_ERROR_RESILIENCE 1 +#define CONFIG_FAAN 1 +#define CONFIG_FAST_UNALIGNED 1 +#define CONFIG_IAMF 1 +#define CONFIG_LSP 1 +#define CONFIG_PIXELUTILS 1 +#define CONFIG_NETWORK 1 +#define CONFIG_AUTODETECT 0 +#define CONFIG_FONTCONFIG 0 +#define CONFIG_LARGE_TESTS 1 +#define CONFIG_LINUX_PERF 0 +#define CONFIG_MACOS_KPERF 0 +#define CONFIG_MEMORY_POISONING 0 +#define CONFIG_NEON_CLOBBER_TEST 0 +#define CONFIG_OSSFUZZ 0 +#define CONFIG_PIC 0 +#define CONFIG_PTX_COMPRESSION 0 +#define CONFIG_THUMB 0 +#define CONFIG_VALGRIND_BACKTRACE 0 +#define CONFIG_XMM_CLOBBER_TEST 0 +#define CONFIG_BSFS 1 +#define CONFIG_DECODERS 1 +#define CONFIG_ENCODERS 1 +#define CONFIG_HWACCELS 0 +#define CONFIG_PARSERS 1 +#define CONFIG_INDEVS 1 +#define CONFIG_OUTDEVS 1 +#define CONFIG_FILTERS 1 +#define CONFIG_DEMUXERS 1 +#define CONFIG_MUXERS 1 +#define CONFIG_PROTOCOLS 1 +#define CONFIG_AANDCTTABLES 1 +#define CONFIG_AC3DSP 1 +#define CONFIG_ADTS_HEADER 1 +#define CONFIG_ATSC_A53 1 +#define CONFIG_AUDIO_FRAME_QUEUE 1 +#define CONFIG_AUDIODSP 1 +#define CONFIG_BLOCKDSP 1 +#define CONFIG_BSWAPDSP 1 +#define CONFIG_CABAC 1 +#define CONFIG_CBS 1 +#define CONFIG_CBS_AV1 1 +#define CONFIG_CBS_H264 1 +#define CONFIG_CBS_H265 1 +#define CONFIG_CBS_H266 1 +#define CONFIG_CBS_JPEG 0 +#define CONFIG_CBS_MPEG2 1 +#define CONFIG_CBS_VP8 1 +#define CONFIG_CBS_VP9 1 +#define CONFIG_DEFLATE_WRAPPER 0 +#define CONFIG_DIRAC_PARSE 1 +#define CONFIG_DNN 0 +#define CONFIG_DOVI_RPUDEC 1 +#define CONFIG_DOVI_RPUENC 0 +#define CONFIG_DVPROFILE 1 +#define CONFIG_EVCPARSE 1 +#define CONFIG_EXIF 1 +#define CONFIG_FAANDCT 1 +#define CONFIG_FAANIDCT 1 +#define CONFIG_FDCTDSP 1 +#define CONFIG_FMTCONVERT 1 +#define CONFIG_FRAME_THREAD_ENCODER 1 +#define CONFIG_G722DSP 1 +#define CONFIG_GOLOMB 1 +#define CONFIG_GPLV3 0 +#define CONFIG_H263DSP 1 +#define CONFIG_H264CHROMA 1 +#define CONFIG_H264DSP 1 +#define CONFIG_H264PARSE 1 +#define CONFIG_H264PRED 1 +#define CONFIG_H264QPEL 1 +#define CONFIG_H264_SEI 1 +#define CONFIG_HEVCPARSE 1 +#define CONFIG_HEVC_SEI 1 +#define CONFIG_HPELDSP 1 +#define CONFIG_HUFFMAN 1 +#define CONFIG_HUFFYUVDSP 1 +#define CONFIG_HUFFYUVENCDSP 1 +#define CONFIG_IAMFDEC 1 +#define CONFIG_IAMFENC 1 +#define CONFIG_IDCTDSP 1 +#define CONFIG_IIRFILTER 1 +#define CONFIG_INFLATE_WRAPPER 0 +#define CONFIG_INTRAX8 1 +#define CONFIG_ISO_MEDIA 1 +#define CONFIG_ISO_WRITER 1 +#define CONFIG_IVIDSP 1 +#define CONFIG_JPEGTABLES 1 +#define CONFIG_LGPLV3 0 +#define CONFIG_LIBX262 0 +#define CONFIG_LIBX264_HDR10 0 +#define CONFIG_LLAUDDSP 1 +#define CONFIG_LLVIDDSP 1 +#define CONFIG_LLVIDENCDSP 1 +#define CONFIG_LPC 1 +#define CONFIG_LZF 1 +#define CONFIG_ME_CMP 1 +#define CONFIG_MPEG_ER 1 +#define CONFIG_MPEGAUDIO 1 +#define CONFIG_MPEGAUDIODSP 1 +#define CONFIG_MPEGAUDIOHEADER 1 +#define CONFIG_MPEG4AUDIO 1 +#define CONFIG_MPEGVIDEO 1 +#define CONFIG_MPEGVIDEODEC 1 +#define CONFIG_MPEGVIDEOENC 1 +#define CONFIG_MSMPEG4DEC 1 +#define CONFIG_MSMPEG4ENC 1 +#define CONFIG_MSS34DSP 1 +#define CONFIG_PIXBLOCKDSP 1 +#define CONFIG_QPELDSP 1 +#define CONFIG_QSV 0 +#define CONFIG_QSVDEC 0 +#define CONFIG_QSVENC 0 +#define CONFIG_QSVVPP 0 +#define CONFIG_RANGECODER 1 +#define CONFIG_RIFFDEC 1 +#define CONFIG_RIFFENC 1 +#define CONFIG_RTPDEC 1 +#define CONFIG_RTPENC_CHAIN 1 +#define CONFIG_RV34DSP 1 +#define CONFIG_SCENE_SAD 1 +#define CONFIG_SINEWIN 1 +#define CONFIG_SNAPPY 1 +#define CONFIG_SRTP 1 +#define CONFIG_STARTCODE 1 +#define CONFIG_TEXTUREDSP 1 +#define CONFIG_TEXTUREDSPENC 1 +#define CONFIG_TPELDSP 1 +#define CONFIG_VAAPI_1 0 +#define CONFIG_VAAPI_ENCODE 0 +#define CONFIG_VC1DSP 1 +#define CONFIG_VIDEODSP 1 +#define CONFIG_VP3DSP 1 +#define CONFIG_VP56DSP 1 +#define CONFIG_VP8DSP 1 +#define CONFIG_WMA_FREQS 1 +#define CONFIG_WMV2DSP 1 +#endif /* FFMPEG_CONFIG_H */ diff --git a/config_components.h b/config_components.h new file mode 100644 index 0000000..8c062ea --- /dev/null +++ b/config_components.h @@ -0,0 +1,2218 @@ +/* Automatically generated by configure - do not modify! */ +#ifndef FFMPEG_CONFIG_COMPONENTS_H +#define FFMPEG_CONFIG_COMPONENTS_H +#define CONFIG_AAC_ADTSTOASC_BSF 1 +#define CONFIG_AV1_FRAME_MERGE_BSF 1 +#define CONFIG_AV1_FRAME_SPLIT_BSF 1 +#define CONFIG_AV1_METADATA_BSF 1 +#define CONFIG_CHOMP_BSF 1 +#define CONFIG_DUMP_EXTRADATA_BSF 1 +#define CONFIG_DCA_CORE_BSF 1 +#define CONFIG_DTS2PTS_BSF 1 +#define CONFIG_DV_ERROR_MARKER_BSF 1 +#define CONFIG_EAC3_CORE_BSF 1 +#define CONFIG_EVC_FRAME_MERGE_BSF 1 +#define CONFIG_EXTRACT_EXTRADATA_BSF 1 +#define CONFIG_FILTER_UNITS_BSF 1 +#define CONFIG_H264_METADATA_BSF 1 +#define CONFIG_H264_MP4TOANNEXB_BSF 1 +#define CONFIG_H264_REDUNDANT_PPS_BSF 1 +#define CONFIG_HAPQA_EXTRACT_BSF 1 +#define CONFIG_HEVC_METADATA_BSF 1 +#define CONFIG_HEVC_MP4TOANNEXB_BSF 1 +#define CONFIG_IMX_DUMP_HEADER_BSF 1 +#define CONFIG_MEDIA100_TO_MJPEGB_BSF 1 +#define CONFIG_MJPEG2JPEG_BSF 1 +#define CONFIG_MJPEGA_DUMP_HEADER_BSF 1 +#define CONFIG_MPEG2_METADATA_BSF 1 +#define CONFIG_MPEG4_UNPACK_BFRAMES_BSF 1 +#define CONFIG_MOV2TEXTSUB_BSF 1 +#define CONFIG_NOISE_BSF 1 +#define CONFIG_NULL_BSF 1 +#define CONFIG_OPUS_METADATA_BSF 1 +#define CONFIG_PCM_RECHUNK_BSF 1 +#define CONFIG_PGS_FRAME_MERGE_BSF 1 +#define CONFIG_PRORES_METADATA_BSF 1 +#define CONFIG_REMOVE_EXTRADATA_BSF 1 +#define CONFIG_SETTS_BSF 1 +#define CONFIG_SHOWINFO_BSF 1 +#define CONFIG_TEXT2MOVSUB_BSF 1 +#define CONFIG_TRACE_HEADERS_BSF 1 +#define CONFIG_TRUEHD_CORE_BSF 1 +#define CONFIG_VP9_METADATA_BSF 1 +#define CONFIG_VP9_RAW_REORDER_BSF 1 +#define CONFIG_VP9_SUPERFRAME_BSF 1 +#define CONFIG_VP9_SUPERFRAME_SPLIT_BSF 1 +#define CONFIG_VVC_METADATA_BSF 1 +#define CONFIG_VVC_MP4TOANNEXB_BSF 1 +#define CONFIG_AASC_DECODER 1 +#define CONFIG_AIC_DECODER 1 +#define CONFIG_ALIAS_PIX_DECODER 1 +#define CONFIG_AGM_DECODER 1 +#define CONFIG_AMV_DECODER 1 +#define CONFIG_ANM_DECODER 1 +#define CONFIG_ANSI_DECODER 1 +#define CONFIG_APNG_DECODER 0 +#define CONFIG_ARBC_DECODER 1 +#define CONFIG_ARGO_DECODER 1 +#define CONFIG_ASV1_DECODER 1 +#define CONFIG_ASV2_DECODER 1 +#define CONFIG_AURA_DECODER 1 +#define CONFIG_AURA2_DECODER 1 +#define CONFIG_AVRP_DECODER 1 +#define CONFIG_AVRN_DECODER 1 +#define CONFIG_AVS_DECODER 1 +#define CONFIG_AVUI_DECODER 1 +#define CONFIG_BETHSOFTVID_DECODER 1 +#define CONFIG_BFI_DECODER 1 +#define CONFIG_BINK_DECODER 1 +#define CONFIG_BITPACKED_DECODER 1 +#define CONFIG_BMP_DECODER 1 +#define CONFIG_BMV_VIDEO_DECODER 1 +#define CONFIG_BRENDER_PIX_DECODER 1 +#define CONFIG_C93_DECODER 1 +#define CONFIG_CAVS_DECODER 1 +#define CONFIG_CDGRAPHICS_DECODER 1 +#define CONFIG_CDTOONS_DECODER 1 +#define CONFIG_CDXL_DECODER 1 +#define CONFIG_CFHD_DECODER 1 +#define CONFIG_CINEPAK_DECODER 1 +#define CONFIG_CLEARVIDEO_DECODER 1 +#define CONFIG_CLJR_DECODER 1 +#define CONFIG_CLLC_DECODER 1 +#define CONFIG_COMFORTNOISE_DECODER 1 +#define CONFIG_CPIA_DECODER 1 +#define CONFIG_CRI_DECODER 1 +#define CONFIG_CSCD_DECODER 1 +#define CONFIG_CYUV_DECODER 1 +#define CONFIG_DDS_DECODER 1 +#define CONFIG_DFA_DECODER 1 +#define CONFIG_DIRAC_DECODER 1 +#define CONFIG_DNXHD_DECODER 1 +#define CONFIG_DPX_DECODER 1 +#define CONFIG_DSICINVIDEO_DECODER 1 +#define CONFIG_DVAUDIO_DECODER 1 +#define CONFIG_DVVIDEO_DECODER 1 +#define CONFIG_DXA_DECODER 0 +#define CONFIG_DXTORY_DECODER 1 +#define CONFIG_DXV_DECODER 1 +#define CONFIG_EACMV_DECODER 1 +#define CONFIG_EAMAD_DECODER 1 +#define CONFIG_EATGQ_DECODER 1 +#define CONFIG_EATGV_DECODER 1 +#define CONFIG_EATQI_DECODER 1 +#define CONFIG_EIGHTBPS_DECODER 1 +#define CONFIG_EIGHTSVX_EXP_DECODER 1 +#define CONFIG_EIGHTSVX_FIB_DECODER 1 +#define CONFIG_ESCAPE124_DECODER 1 +#define CONFIG_ESCAPE130_DECODER 1 +#define CONFIG_EXR_DECODER 0 +#define CONFIG_FFV1_DECODER 1 +#define CONFIG_FFVHUFF_DECODER 1 +#define CONFIG_FIC_DECODER 1 +#define CONFIG_FITS_DECODER 1 +#define CONFIG_FLASHSV_DECODER 0 +#define CONFIG_FLASHSV2_DECODER 0 +#define CONFIG_FLIC_DECODER 1 +#define CONFIG_FLV_DECODER 1 +#define CONFIG_FMVC_DECODER 1 +#define CONFIG_FOURXM_DECODER 1 +#define CONFIG_FRAPS_DECODER 1 +#define CONFIG_FRWU_DECODER 1 +#define CONFIG_G2M_DECODER 0 +#define CONFIG_GDV_DECODER 1 +#define CONFIG_GEM_DECODER 1 +#define CONFIG_GIF_DECODER 1 +#define CONFIG_H261_DECODER 1 +#define CONFIG_H263_DECODER 1 +#define CONFIG_H263I_DECODER 1 +#define CONFIG_H263P_DECODER 1 +#define CONFIG_H263_V4L2M2M_DECODER 1 +#define CONFIG_H264_DECODER 1 +#define CONFIG_H264_V4L2M2M_DECODER 1 +#define CONFIG_H264_MEDIACODEC_DECODER 0 +#define CONFIG_H264_MMAL_DECODER 0 +#define CONFIG_H264_QSV_DECODER 0 +#define CONFIG_H264_RKMPP_DECODER 0 +#define CONFIG_HAP_DECODER 1 +#define CONFIG_HEVC_DECODER 1 +#define CONFIG_HEVC_QSV_DECODER 0 +#define CONFIG_HEVC_RKMPP_DECODER 0 +#define CONFIG_HEVC_V4L2M2M_DECODER 1 +#define CONFIG_HNM4_VIDEO_DECODER 1 +#define CONFIG_HQ_HQA_DECODER 1 +#define CONFIG_HQX_DECODER 1 +#define CONFIG_HUFFYUV_DECODER 1 +#define CONFIG_HYMT_DECODER 1 +#define CONFIG_IDCIN_DECODER 1 +#define CONFIG_IFF_ILBM_DECODER 1 +#define CONFIG_IMM4_DECODER 1 +#define CONFIG_IMM5_DECODER 1 +#define CONFIG_INDEO2_DECODER 1 +#define CONFIG_INDEO3_DECODER 1 +#define CONFIG_INDEO4_DECODER 1 +#define CONFIG_INDEO5_DECODER 1 +#define CONFIG_INTERPLAY_VIDEO_DECODER 1 +#define CONFIG_IPU_DECODER 1 +#define CONFIG_JPEG2000_DECODER 1 +#define CONFIG_JPEGLS_DECODER 1 +#define CONFIG_JV_DECODER 1 +#define CONFIG_KGV1_DECODER 1 +#define CONFIG_KMVC_DECODER 1 +#define CONFIG_LAGARITH_DECODER 1 +#define CONFIG_LEAD_DECODER 1 +#define CONFIG_LOCO_DECODER 1 +#define CONFIG_LSCR_DECODER 0 +#define CONFIG_M101_DECODER 1 +#define CONFIG_MAGICYUV_DECODER 1 +#define CONFIG_MDEC_DECODER 1 +#define CONFIG_MEDIA100_DECODER 1 +#define CONFIG_MIMIC_DECODER 1 +#define CONFIG_MJPEG_DECODER 1 +#define CONFIG_MJPEGB_DECODER 1 +#define CONFIG_MMVIDEO_DECODER 1 +#define CONFIG_MOBICLIP_DECODER 1 +#define CONFIG_MOTIONPIXELS_DECODER 1 +#define CONFIG_MPEG1VIDEO_DECODER 1 +#define CONFIG_MPEG2VIDEO_DECODER 1 +#define CONFIG_MPEG4_DECODER 1 +#define CONFIG_MPEG4_V4L2M2M_DECODER 1 +#define CONFIG_MPEG4_MMAL_DECODER 0 +#define CONFIG_MPEGVIDEO_DECODER 1 +#define CONFIG_MPEG1_V4L2M2M_DECODER 1 +#define CONFIG_MPEG2_MMAL_DECODER 0 +#define CONFIG_MPEG2_V4L2M2M_DECODER 1 +#define CONFIG_MPEG2_QSV_DECODER 0 +#define CONFIG_MPEG2_MEDIACODEC_DECODER 0 +#define CONFIG_MSA1_DECODER 1 +#define CONFIG_MSCC_DECODER 0 +#define CONFIG_MSMPEG4V1_DECODER 1 +#define CONFIG_MSMPEG4V2_DECODER 1 +#define CONFIG_MSMPEG4V3_DECODER 1 +#define CONFIG_MSP2_DECODER 1 +#define CONFIG_MSRLE_DECODER 1 +#define CONFIG_MSS1_DECODER 1 +#define CONFIG_MSS2_DECODER 1 +#define CONFIG_MSVIDEO1_DECODER 1 +#define CONFIG_MSZH_DECODER 1 +#define CONFIG_MTS2_DECODER 1 +#define CONFIG_MV30_DECODER 1 +#define CONFIG_MVC1_DECODER 1 +#define CONFIG_MVC2_DECODER 1 +#define CONFIG_MVDV_DECODER 1 +#define CONFIG_MVHA_DECODER 0 +#define CONFIG_MWSC_DECODER 0 +#define CONFIG_MXPEG_DECODER 1 +#define CONFIG_NOTCHLC_DECODER 1 +#define CONFIG_NUV_DECODER 1 +#define CONFIG_PAF_VIDEO_DECODER 1 +#define CONFIG_PAM_DECODER 1 +#define CONFIG_PBM_DECODER 1 +#define CONFIG_PCX_DECODER 1 +#define CONFIG_PDV_DECODER 0 +#define CONFIG_PFM_DECODER 1 +#define CONFIG_PGM_DECODER 1 +#define CONFIG_PGMYUV_DECODER 1 +#define CONFIG_PGX_DECODER 1 +#define CONFIG_PHM_DECODER 1 +#define CONFIG_PHOTOCD_DECODER 1 +#define CONFIG_PICTOR_DECODER 1 +#define CONFIG_PIXLET_DECODER 1 +#define CONFIG_PNG_DECODER 0 +#define CONFIG_PPM_DECODER 1 +#define CONFIG_PRORES_DECODER 1 +#define CONFIG_PROSUMER_DECODER 1 +#define CONFIG_PSD_DECODER 1 +#define CONFIG_PTX_DECODER 1 +#define CONFIG_QDRAW_DECODER 1 +#define CONFIG_QOI_DECODER 1 +#define CONFIG_QPEG_DECODER 1 +#define CONFIG_QTRLE_DECODER 1 +#define CONFIG_R10K_DECODER 1 +#define CONFIG_R210_DECODER 1 +#define CONFIG_RASC_DECODER 0 +#define CONFIG_RAWVIDEO_DECODER 1 +#define CONFIG_RKA_DECODER 1 +#define CONFIG_RL2_DECODER 1 +#define CONFIG_ROQ_DECODER 1 +#define CONFIG_RPZA_DECODER 1 +#define CONFIG_RSCC_DECODER 0 +#define CONFIG_RTV1_DECODER 1 +#define CONFIG_RV10_DECODER 1 +#define CONFIG_RV20_DECODER 1 +#define CONFIG_RV30_DECODER 1 +#define CONFIG_RV40_DECODER 1 +#define CONFIG_S302M_DECODER 1 +#define CONFIG_SANM_DECODER 1 +#define CONFIG_SCPR_DECODER 1 +#define CONFIG_SCREENPRESSO_DECODER 0 +#define CONFIG_SGA_DECODER 1 +#define CONFIG_SGI_DECODER 1 +#define CONFIG_SGIRLE_DECODER 1 +#define CONFIG_SHEERVIDEO_DECODER 1 +#define CONFIG_SIMBIOSIS_IMX_DECODER 1 +#define CONFIG_SMACKER_DECODER 1 +#define CONFIG_SMC_DECODER 1 +#define CONFIG_SMVJPEG_DECODER 1 +#define CONFIG_SNOW_DECODER 1 +#define CONFIG_SP5X_DECODER 1 +#define CONFIG_SPEEDHQ_DECODER 1 +#define CONFIG_SPEEX_DECODER 1 +#define CONFIG_SRGC_DECODER 0 +#define CONFIG_SUNRAST_DECODER 1 +#define CONFIG_SVQ1_DECODER 1 +#define CONFIG_SVQ3_DECODER 1 +#define CONFIG_TARGA_DECODER 1 +#define CONFIG_TARGA_Y216_DECODER 1 +#define CONFIG_TDSC_DECODER 0 +#define CONFIG_THEORA_DECODER 1 +#define CONFIG_THP_DECODER 1 +#define CONFIG_TIERTEXSEQVIDEO_DECODER 1 +#define CONFIG_TIFF_DECODER 1 +#define CONFIG_TMV_DECODER 1 +#define CONFIG_TRUEMOTION1_DECODER 1 +#define CONFIG_TRUEMOTION2_DECODER 1 +#define CONFIG_TRUEMOTION2RT_DECODER 1 +#define CONFIG_TSCC_DECODER 0 +#define CONFIG_TSCC2_DECODER 1 +#define CONFIG_TXD_DECODER 1 +#define CONFIG_ULTI_DECODER 1 +#define CONFIG_UTVIDEO_DECODER 1 +#define CONFIG_V210_DECODER 1 +#define CONFIG_V210X_DECODER 1 +#define CONFIG_V308_DECODER 1 +#define CONFIG_V408_DECODER 1 +#define CONFIG_V410_DECODER 1 +#define CONFIG_VB_DECODER 1 +#define CONFIG_VBN_DECODER 1 +#define CONFIG_VBLE_DECODER 1 +#define CONFIG_VC1_DECODER 1 +#define CONFIG_VC1IMAGE_DECODER 1 +#define CONFIG_VC1_MMAL_DECODER 0 +#define CONFIG_VC1_QSV_DECODER 0 +#define CONFIG_VC1_V4L2M2M_DECODER 1 +#define CONFIG_VCR1_DECODER 1 +#define CONFIG_VMDVIDEO_DECODER 1 +#define CONFIG_VMIX_DECODER 1 +#define CONFIG_VMNC_DECODER 1 +#define CONFIG_VP3_DECODER 1 +#define CONFIG_VP4_DECODER 1 +#define CONFIG_VP5_DECODER 1 +#define CONFIG_VP6_DECODER 1 +#define CONFIG_VP6A_DECODER 1 +#define CONFIG_VP6F_DECODER 1 +#define CONFIG_VP7_DECODER 1 +#define CONFIG_VP8_DECODER 1 +#define CONFIG_VP8_RKMPP_DECODER 0 +#define CONFIG_VP8_V4L2M2M_DECODER 1 +#define CONFIG_VP9_DECODER 1 +#define CONFIG_VP9_RKMPP_DECODER 0 +#define CONFIG_VP9_V4L2M2M_DECODER 1 +#define CONFIG_VQA_DECODER 1 +#define CONFIG_VQC_DECODER 1 +#define CONFIG_VVC_DECODER 1 +#define CONFIG_WBMP_DECODER 1 +#define CONFIG_WEBP_DECODER 1 +#define CONFIG_WCMV_DECODER 0 +#define CONFIG_WRAPPED_AVFRAME_DECODER 1 +#define CONFIG_WMV1_DECODER 1 +#define CONFIG_WMV2_DECODER 1 +#define CONFIG_WMV3_DECODER 1 +#define CONFIG_WMV3IMAGE_DECODER 1 +#define CONFIG_WNV1_DECODER 1 +#define CONFIG_XAN_WC3_DECODER 1 +#define CONFIG_XAN_WC4_DECODER 1 +#define CONFIG_XBM_DECODER 1 +#define CONFIG_XFACE_DECODER 1 +#define CONFIG_XL_DECODER 1 +#define CONFIG_XPM_DECODER 1 +#define CONFIG_XWD_DECODER 1 +#define CONFIG_Y41P_DECODER 1 +#define CONFIG_YLC_DECODER 1 +#define CONFIG_YOP_DECODER 1 +#define CONFIG_YUV4_DECODER 1 +#define CONFIG_ZERO12V_DECODER 1 +#define CONFIG_ZEROCODEC_DECODER 0 +#define CONFIG_ZLIB_DECODER 0 +#define CONFIG_ZMBV_DECODER 0 +#define CONFIG_AAC_DECODER 1 +#define CONFIG_AAC_FIXED_DECODER 1 +#define CONFIG_AAC_LATM_DECODER 1 +#define CONFIG_AC3_DECODER 1 +#define CONFIG_AC3_FIXED_DECODER 1 +#define CONFIG_ACELP_KELVIN_DECODER 1 +#define CONFIG_ALAC_DECODER 1 +#define CONFIG_ALS_DECODER 1 +#define CONFIG_AMRNB_DECODER 1 +#define CONFIG_AMRWB_DECODER 1 +#define CONFIG_APAC_DECODER 1 +#define CONFIG_APE_DECODER 1 +#define CONFIG_APTX_DECODER 1 +#define CONFIG_APTX_HD_DECODER 1 +#define CONFIG_ATRAC1_DECODER 1 +#define CONFIG_ATRAC3_DECODER 1 +#define CONFIG_ATRAC3AL_DECODER 1 +#define CONFIG_ATRAC3P_DECODER 1 +#define CONFIG_ATRAC3PAL_DECODER 1 +#define CONFIG_ATRAC9_DECODER 1 +#define CONFIG_BINKAUDIO_DCT_DECODER 1 +#define CONFIG_BINKAUDIO_RDFT_DECODER 1 +#define CONFIG_BMV_AUDIO_DECODER 1 +#define CONFIG_BONK_DECODER 1 +#define CONFIG_COOK_DECODER 1 +#define CONFIG_DCA_DECODER 1 +#define CONFIG_DFPWM_DECODER 1 +#define CONFIG_DOLBY_E_DECODER 1 +#define CONFIG_DSD_LSBF_DECODER 1 +#define CONFIG_DSD_MSBF_DECODER 1 +#define CONFIG_DSD_LSBF_PLANAR_DECODER 1 +#define CONFIG_DSD_MSBF_PLANAR_DECODER 1 +#define CONFIG_DSICINAUDIO_DECODER 1 +#define CONFIG_DSS_SP_DECODER 1 +#define CONFIG_DST_DECODER 1 +#define CONFIG_EAC3_DECODER 1 +#define CONFIG_EVRC_DECODER 1 +#define CONFIG_FASTAUDIO_DECODER 1 +#define CONFIG_FFWAVESYNTH_DECODER 1 +#define CONFIG_FLAC_DECODER 1 +#define CONFIG_FTR_DECODER 1 +#define CONFIG_G723_1_DECODER 1 +#define CONFIG_G729_DECODER 1 +#define CONFIG_GSM_DECODER 1 +#define CONFIG_GSM_MS_DECODER 1 +#define CONFIG_HCA_DECODER 1 +#define CONFIG_HCOM_DECODER 1 +#define CONFIG_HDR_DECODER 1 +#define CONFIG_IAC_DECODER 1 +#define CONFIG_ILBC_DECODER 1 +#define CONFIG_IMC_DECODER 1 +#define CONFIG_INTERPLAY_ACM_DECODER 1 +#define CONFIG_MACE3_DECODER 1 +#define CONFIG_MACE6_DECODER 1 +#define CONFIG_METASOUND_DECODER 1 +#define CONFIG_MISC4_DECODER 1 +#define CONFIG_MLP_DECODER 1 +#define CONFIG_MP1_DECODER 1 +#define CONFIG_MP1FLOAT_DECODER 1 +#define CONFIG_MP2_DECODER 1 +#define CONFIG_MP2FLOAT_DECODER 1 +#define CONFIG_MP3FLOAT_DECODER 1 +#define CONFIG_MP3_DECODER 1 +#define CONFIG_MP3ADUFLOAT_DECODER 1 +#define CONFIG_MP3ADU_DECODER 1 +#define CONFIG_MP3ON4FLOAT_DECODER 1 +#define CONFIG_MP3ON4_DECODER 1 +#define CONFIG_MPC7_DECODER 1 +#define CONFIG_MPC8_DECODER 1 +#define CONFIG_MSNSIREN_DECODER 1 +#define CONFIG_NELLYMOSER_DECODER 1 +#define CONFIG_ON2AVC_DECODER 1 +#define CONFIG_OPUS_DECODER 1 +#define CONFIG_OSQ_DECODER 1 +#define CONFIG_PAF_AUDIO_DECODER 1 +#define CONFIG_QCELP_DECODER 1 +#define CONFIG_QDM2_DECODER 1 +#define CONFIG_QDMC_DECODER 1 +#define CONFIG_QOA_DECODER 1 +#define CONFIG_RA_144_DECODER 1 +#define CONFIG_RA_288_DECODER 1 +#define CONFIG_RALF_DECODER 1 +#define CONFIG_SBC_DECODER 1 +#define CONFIG_SHORTEN_DECODER 1 +#define CONFIG_SIPR_DECODER 1 +#define CONFIG_SIREN_DECODER 1 +#define CONFIG_SMACKAUD_DECODER 1 +#define CONFIG_SONIC_DECODER 1 +#define CONFIG_TAK_DECODER 1 +#define CONFIG_TRUEHD_DECODER 1 +#define CONFIG_TRUESPEECH_DECODER 1 +#define CONFIG_TTA_DECODER 1 +#define CONFIG_TWINVQ_DECODER 1 +#define CONFIG_VMDAUDIO_DECODER 1 +#define CONFIG_VORBIS_DECODER 1 +#define CONFIG_WAVARC_DECODER 1 +#define CONFIG_WAVPACK_DECODER 1 +#define CONFIG_WMALOSSLESS_DECODER 1 +#define CONFIG_WMAPRO_DECODER 1 +#define CONFIG_WMAV1_DECODER 1 +#define CONFIG_WMAV2_DECODER 1 +#define CONFIG_WMAVOICE_DECODER 1 +#define CONFIG_WS_SND1_DECODER 1 +#define CONFIG_XMA1_DECODER 1 +#define CONFIG_XMA2_DECODER 1 +#define CONFIG_PCM_ALAW_DECODER 1 +#define CONFIG_PCM_BLURAY_DECODER 1 +#define CONFIG_PCM_DVD_DECODER 1 +#define CONFIG_PCM_F16LE_DECODER 1 +#define CONFIG_PCM_F24LE_DECODER 1 +#define CONFIG_PCM_F32BE_DECODER 1 +#define CONFIG_PCM_F32LE_DECODER 1 +#define CONFIG_PCM_F64BE_DECODER 1 +#define CONFIG_PCM_F64LE_DECODER 1 +#define CONFIG_PCM_LXF_DECODER 1 +#define CONFIG_PCM_MULAW_DECODER 1 +#define CONFIG_PCM_S8_DECODER 1 +#define CONFIG_PCM_S8_PLANAR_DECODER 1 +#define CONFIG_PCM_S16BE_DECODER 1 +#define CONFIG_PCM_S16BE_PLANAR_DECODER 1 +#define CONFIG_PCM_S16LE_DECODER 1 +#define CONFIG_PCM_S16LE_PLANAR_DECODER 1 +#define CONFIG_PCM_S24BE_DECODER 1 +#define CONFIG_PCM_S24DAUD_DECODER 1 +#define CONFIG_PCM_S24LE_DECODER 1 +#define CONFIG_PCM_S24LE_PLANAR_DECODER 1 +#define CONFIG_PCM_S32BE_DECODER 1 +#define CONFIG_PCM_S32LE_DECODER 1 +#define CONFIG_PCM_S32LE_PLANAR_DECODER 1 +#define CONFIG_PCM_S64BE_DECODER 1 +#define CONFIG_PCM_S64LE_DECODER 1 +#define CONFIG_PCM_SGA_DECODER 1 +#define CONFIG_PCM_U8_DECODER 1 +#define CONFIG_PCM_U16BE_DECODER 1 +#define CONFIG_PCM_U16LE_DECODER 1 +#define CONFIG_PCM_U24BE_DECODER 1 +#define CONFIG_PCM_U24LE_DECODER 1 +#define CONFIG_PCM_U32BE_DECODER 1 +#define CONFIG_PCM_U32LE_DECODER 1 +#define CONFIG_PCM_VIDC_DECODER 1 +#define CONFIG_CBD2_DPCM_DECODER 1 +#define CONFIG_DERF_DPCM_DECODER 1 +#define CONFIG_GREMLIN_DPCM_DECODER 1 +#define CONFIG_INTERPLAY_DPCM_DECODER 1 +#define CONFIG_ROQ_DPCM_DECODER 1 +#define CONFIG_SDX2_DPCM_DECODER 1 +#define CONFIG_SOL_DPCM_DECODER 1 +#define CONFIG_XAN_DPCM_DECODER 1 +#define CONFIG_WADY_DPCM_DECODER 1 +#define CONFIG_ADPCM_4XM_DECODER 1 +#define CONFIG_ADPCM_ADX_DECODER 1 +#define CONFIG_ADPCM_AFC_DECODER 1 +#define CONFIG_ADPCM_AGM_DECODER 1 +#define CONFIG_ADPCM_AICA_DECODER 1 +#define CONFIG_ADPCM_ARGO_DECODER 1 +#define CONFIG_ADPCM_CT_DECODER 1 +#define CONFIG_ADPCM_DTK_DECODER 1 +#define CONFIG_ADPCM_EA_DECODER 1 +#define CONFIG_ADPCM_EA_MAXIS_XA_DECODER 1 +#define CONFIG_ADPCM_EA_R1_DECODER 1 +#define CONFIG_ADPCM_EA_R2_DECODER 1 +#define CONFIG_ADPCM_EA_R3_DECODER 1 +#define CONFIG_ADPCM_EA_XAS_DECODER 1 +#define CONFIG_ADPCM_G722_DECODER 1 +#define CONFIG_ADPCM_G726_DECODER 1 +#define CONFIG_ADPCM_G726LE_DECODER 1 +#define CONFIG_ADPCM_IMA_ACORN_DECODER 1 +#define CONFIG_ADPCM_IMA_AMV_DECODER 1 +#define CONFIG_ADPCM_IMA_ALP_DECODER 1 +#define CONFIG_ADPCM_IMA_APC_DECODER 1 +#define CONFIG_ADPCM_IMA_APM_DECODER 1 +#define CONFIG_ADPCM_IMA_CUNNING_DECODER 1 +#define CONFIG_ADPCM_IMA_DAT4_DECODER 1 +#define CONFIG_ADPCM_IMA_DK3_DECODER 1 +#define CONFIG_ADPCM_IMA_DK4_DECODER 1 +#define CONFIG_ADPCM_IMA_EA_EACS_DECODER 1 +#define CONFIG_ADPCM_IMA_EA_SEAD_DECODER 1 +#define CONFIG_ADPCM_IMA_ISS_DECODER 1 +#define CONFIG_ADPCM_IMA_MOFLEX_DECODER 1 +#define CONFIG_ADPCM_IMA_MTF_DECODER 1 +#define CONFIG_ADPCM_IMA_OKI_DECODER 1 +#define CONFIG_ADPCM_IMA_QT_DECODER 1 +#define CONFIG_ADPCM_IMA_RAD_DECODER 1 +#define CONFIG_ADPCM_IMA_SSI_DECODER 1 +#define CONFIG_ADPCM_IMA_SMJPEG_DECODER 1 +#define CONFIG_ADPCM_IMA_WAV_DECODER 1 +#define CONFIG_ADPCM_IMA_WS_DECODER 1 +#define CONFIG_ADPCM_MS_DECODER 1 +#define CONFIG_ADPCM_MTAF_DECODER 1 +#define CONFIG_ADPCM_PSX_DECODER 1 +#define CONFIG_ADPCM_SBPRO_2_DECODER 1 +#define CONFIG_ADPCM_SBPRO_3_DECODER 1 +#define CONFIG_ADPCM_SBPRO_4_DECODER 1 +#define CONFIG_ADPCM_SWF_DECODER 1 +#define CONFIG_ADPCM_THP_DECODER 1 +#define CONFIG_ADPCM_THP_LE_DECODER 1 +#define CONFIG_ADPCM_VIMA_DECODER 1 +#define CONFIG_ADPCM_XA_DECODER 1 +#define CONFIG_ADPCM_XMD_DECODER 1 +#define CONFIG_ADPCM_YAMAHA_DECODER 1 +#define CONFIG_ADPCM_ZORK_DECODER 1 +#define CONFIG_SSA_DECODER 1 +#define CONFIG_ASS_DECODER 1 +#define CONFIG_CCAPTION_DECODER 1 +#define CONFIG_DVBSUB_DECODER 1 +#define CONFIG_DVDSUB_DECODER 1 +#define CONFIG_JACOSUB_DECODER 1 +#define CONFIG_MICRODVD_DECODER 1 +#define CONFIG_MOVTEXT_DECODER 1 +#define CONFIG_MPL2_DECODER 1 +#define CONFIG_PGSSUB_DECODER 1 +#define CONFIG_PJS_DECODER 1 +#define CONFIG_REALTEXT_DECODER 1 +#define CONFIG_SAMI_DECODER 1 +#define CONFIG_SRT_DECODER 1 +#define CONFIG_STL_DECODER 1 +#define CONFIG_SUBRIP_DECODER 1 +#define CONFIG_SUBVIEWER_DECODER 1 +#define CONFIG_SUBVIEWER1_DECODER 1 +#define CONFIG_TEXT_DECODER 1 +#define CONFIG_VPLAYER_DECODER 1 +#define CONFIG_WEBVTT_DECODER 1 +#define CONFIG_XSUB_DECODER 1 +#define CONFIG_AAC_AT_DECODER 0 +#define CONFIG_AC3_AT_DECODER 0 +#define CONFIG_ADPCM_IMA_QT_AT_DECODER 0 +#define CONFIG_ALAC_AT_DECODER 0 +#define CONFIG_AMR_NB_AT_DECODER 0 +#define CONFIG_EAC3_AT_DECODER 0 +#define CONFIG_GSM_MS_AT_DECODER 0 +#define CONFIG_ILBC_AT_DECODER 0 +#define CONFIG_MP1_AT_DECODER 0 +#define CONFIG_MP2_AT_DECODER 0 +#define CONFIG_MP3_AT_DECODER 0 +#define CONFIG_PCM_ALAW_AT_DECODER 0 +#define CONFIG_PCM_MULAW_AT_DECODER 0 +#define CONFIG_QDMC_AT_DECODER 0 +#define CONFIG_QDM2_AT_DECODER 0 +#define CONFIG_LIBARIBCAPTION_DECODER 0 +#define CONFIG_LIBARIBB24_DECODER 0 +#define CONFIG_LIBCELT_DECODER 0 +#define CONFIG_LIBCODEC2_DECODER 0 +#define CONFIG_LIBDAV1D_DECODER 0 +#define CONFIG_LIBDAVS2_DECODER 0 +#define CONFIG_LIBFDK_AAC_DECODER 0 +#define CONFIG_LIBGSM_DECODER 0 +#define CONFIG_LIBGSM_MS_DECODER 0 +#define CONFIG_LIBILBC_DECODER 0 +#define CONFIG_LIBJXL_DECODER 0 +#define CONFIG_LIBLC3_DECODER 0 +#define CONFIG_LIBOPENCORE_AMRNB_DECODER 0 +#define CONFIG_LIBOPENCORE_AMRWB_DECODER 0 +#define CONFIG_LIBOPUS_DECODER 0 +#define CONFIG_LIBRSVG_DECODER 0 +#define CONFIG_LIBSPEEX_DECODER 0 +#define CONFIG_LIBUAVS3D_DECODER 0 +#define CONFIG_LIBVORBIS_DECODER 0 +#define CONFIG_LIBVPX_VP8_DECODER 0 +#define CONFIG_LIBVPX_VP9_DECODER 0 +#define CONFIG_LIBXEVD_DECODER 0 +#define CONFIG_LIBZVBI_TELETEXT_DECODER 0 +#define CONFIG_BINTEXT_DECODER 1 +#define CONFIG_XBIN_DECODER 1 +#define CONFIG_IDF_DECODER 1 +#define CONFIG_LIBAOM_AV1_DECODER 0 +#define CONFIG_AV1_DECODER 1 +#define CONFIG_AV1_CUVID_DECODER 0 +#define CONFIG_AV1_MEDIACODEC_DECODER 0 +#define CONFIG_AV1_QSV_DECODER 0 +#define CONFIG_LIBOPENH264_DECODER 0 +#define CONFIG_H264_CUVID_DECODER 0 +#define CONFIG_HEVC_CUVID_DECODER 0 +#define CONFIG_HEVC_MEDIACODEC_DECODER 0 +#define CONFIG_MJPEG_CUVID_DECODER 0 +#define CONFIG_MJPEG_QSV_DECODER 0 +#define CONFIG_MPEG1_CUVID_DECODER 0 +#define CONFIG_MPEG2_CUVID_DECODER 0 +#define CONFIG_MPEG4_CUVID_DECODER 0 +#define CONFIG_MPEG4_MEDIACODEC_DECODER 0 +#define CONFIG_VC1_CUVID_DECODER 0 +#define CONFIG_VP8_CUVID_DECODER 0 +#define CONFIG_VP8_MEDIACODEC_DECODER 0 +#define CONFIG_VP8_QSV_DECODER 0 +#define CONFIG_VP9_CUVID_DECODER 0 +#define CONFIG_VP9_MEDIACODEC_DECODER 0 +#define CONFIG_VP9_QSV_DECODER 0 +#define CONFIG_VNULL_DECODER 1 +#define CONFIG_ANULL_DECODER 1 +#define CONFIG_A64MULTI_ENCODER 1 +#define CONFIG_A64MULTI5_ENCODER 1 +#define CONFIG_ALIAS_PIX_ENCODER 1 +#define CONFIG_AMV_ENCODER 1 +#define CONFIG_APNG_ENCODER 0 +#define CONFIG_ASV1_ENCODER 1 +#define CONFIG_ASV2_ENCODER 1 +#define CONFIG_AVRP_ENCODER 1 +#define CONFIG_AVUI_ENCODER 1 +#define CONFIG_BITPACKED_ENCODER 1 +#define CONFIG_BMP_ENCODER 1 +#define CONFIG_CFHD_ENCODER 1 +#define CONFIG_CINEPAK_ENCODER 1 +#define CONFIG_CLJR_ENCODER 1 +#define CONFIG_COMFORTNOISE_ENCODER 1 +#define CONFIG_DNXHD_ENCODER 1 +#define CONFIG_DPX_ENCODER 1 +#define CONFIG_DVVIDEO_ENCODER 1 +#define CONFIG_DXV_ENCODER 1 +#define CONFIG_EXR_ENCODER 0 +#define CONFIG_FFV1_ENCODER 1 +#define CONFIG_FFVHUFF_ENCODER 1 +#define CONFIG_FITS_ENCODER 1 +#define CONFIG_FLASHSV_ENCODER 0 +#define CONFIG_FLASHSV2_ENCODER 0 +#define CONFIG_FLV_ENCODER 1 +#define CONFIG_GIF_ENCODER 1 +#define CONFIG_H261_ENCODER 1 +#define CONFIG_H263_ENCODER 1 +#define CONFIG_H263P_ENCODER 1 +#define CONFIG_H264_MEDIACODEC_ENCODER 0 +#define CONFIG_HAP_ENCODER 0 +#define CONFIG_HUFFYUV_ENCODER 1 +#define CONFIG_JPEG2000_ENCODER 1 +#define CONFIG_JPEGLS_ENCODER 1 +#define CONFIG_LJPEG_ENCODER 1 +#define CONFIG_MAGICYUV_ENCODER 1 +#define CONFIG_MJPEG_ENCODER 1 +#define CONFIG_MPEG1VIDEO_ENCODER 1 +#define CONFIG_MPEG2VIDEO_ENCODER 1 +#define CONFIG_MPEG4_ENCODER 1 +#define CONFIG_MSMPEG4V2_ENCODER 1 +#define CONFIG_MSMPEG4V3_ENCODER 1 +#define CONFIG_MSRLE_ENCODER 1 +#define CONFIG_MSVIDEO1_ENCODER 1 +#define CONFIG_PAM_ENCODER 1 +#define CONFIG_PBM_ENCODER 1 +#define CONFIG_PCX_ENCODER 1 +#define CONFIG_PFM_ENCODER 1 +#define CONFIG_PGM_ENCODER 1 +#define CONFIG_PGMYUV_ENCODER 1 +#define CONFIG_PHM_ENCODER 1 +#define CONFIG_PNG_ENCODER 0 +#define CONFIG_PPM_ENCODER 1 +#define CONFIG_PRORES_ENCODER 1 +#define CONFIG_PRORES_AW_ENCODER 1 +#define CONFIG_PRORES_KS_ENCODER 1 +#define CONFIG_QOI_ENCODER 1 +#define CONFIG_QTRLE_ENCODER 1 +#define CONFIG_R10K_ENCODER 1 +#define CONFIG_R210_ENCODER 1 +#define CONFIG_RAWVIDEO_ENCODER 1 +#define CONFIG_ROQ_ENCODER 1 +#define CONFIG_RPZA_ENCODER 1 +#define CONFIG_RV10_ENCODER 1 +#define CONFIG_RV20_ENCODER 1 +#define CONFIG_S302M_ENCODER 1 +#define CONFIG_SGI_ENCODER 1 +#define CONFIG_SMC_ENCODER 1 +#define CONFIG_SNOW_ENCODER 1 +#define CONFIG_SPEEDHQ_ENCODER 1 +#define CONFIG_SUNRAST_ENCODER 1 +#define CONFIG_SVQ1_ENCODER 1 +#define CONFIG_TARGA_ENCODER 1 +#define CONFIG_TIFF_ENCODER 1 +#define CONFIG_UTVIDEO_ENCODER 1 +#define CONFIG_V210_ENCODER 1 +#define CONFIG_V308_ENCODER 1 +#define CONFIG_V408_ENCODER 1 +#define CONFIG_V410_ENCODER 1 +#define CONFIG_VBN_ENCODER 1 +#define CONFIG_VC2_ENCODER 1 +#define CONFIG_WBMP_ENCODER 1 +#define CONFIG_WRAPPED_AVFRAME_ENCODER 1 +#define CONFIG_WMV1_ENCODER 1 +#define CONFIG_WMV2_ENCODER 1 +#define CONFIG_XBM_ENCODER 1 +#define CONFIG_XFACE_ENCODER 1 +#define CONFIG_XWD_ENCODER 1 +#define CONFIG_Y41P_ENCODER 1 +#define CONFIG_YUV4_ENCODER 1 +#define CONFIG_ZLIB_ENCODER 0 +#define CONFIG_ZMBV_ENCODER 0 +#define CONFIG_AAC_ENCODER 1 +#define CONFIG_AC3_ENCODER 1 +#define CONFIG_AC3_FIXED_ENCODER 1 +#define CONFIG_ALAC_ENCODER 1 +#define CONFIG_APTX_ENCODER 1 +#define CONFIG_APTX_HD_ENCODER 1 +#define CONFIG_DCA_ENCODER 1 +#define CONFIG_DFPWM_ENCODER 1 +#define CONFIG_EAC3_ENCODER 1 +#define CONFIG_FLAC_ENCODER 1 +#define CONFIG_G723_1_ENCODER 1 +#define CONFIG_HDR_ENCODER 1 +#define CONFIG_MLP_ENCODER 1 +#define CONFIG_MP2_ENCODER 1 +#define CONFIG_MP2FIXED_ENCODER 1 +#define CONFIG_NELLYMOSER_ENCODER 1 +#define CONFIG_OPUS_ENCODER 1 +#define CONFIG_RA_144_ENCODER 1 +#define CONFIG_SBC_ENCODER 1 +#define CONFIG_SONIC_ENCODER 1 +#define CONFIG_SONIC_LS_ENCODER 1 +#define CONFIG_TRUEHD_ENCODER 1 +#define CONFIG_TTA_ENCODER 1 +#define CONFIG_VORBIS_ENCODER 1 +#define CONFIG_WAVPACK_ENCODER 1 +#define CONFIG_WMAV1_ENCODER 1 +#define CONFIG_WMAV2_ENCODER 1 +#define CONFIG_PCM_ALAW_ENCODER 1 +#define CONFIG_PCM_BLURAY_ENCODER 1 +#define CONFIG_PCM_DVD_ENCODER 1 +#define CONFIG_PCM_F32BE_ENCODER 1 +#define CONFIG_PCM_F32LE_ENCODER 1 +#define CONFIG_PCM_F64BE_ENCODER 1 +#define CONFIG_PCM_F64LE_ENCODER 1 +#define CONFIG_PCM_MULAW_ENCODER 1 +#define CONFIG_PCM_S8_ENCODER 1 +#define CONFIG_PCM_S8_PLANAR_ENCODER 1 +#define CONFIG_PCM_S16BE_ENCODER 1 +#define CONFIG_PCM_S16BE_PLANAR_ENCODER 1 +#define CONFIG_PCM_S16LE_ENCODER 1 +#define CONFIG_PCM_S16LE_PLANAR_ENCODER 1 +#define CONFIG_PCM_S24BE_ENCODER 1 +#define CONFIG_PCM_S24DAUD_ENCODER 1 +#define CONFIG_PCM_S24LE_ENCODER 1 +#define CONFIG_PCM_S24LE_PLANAR_ENCODER 1 +#define CONFIG_PCM_S32BE_ENCODER 1 +#define CONFIG_PCM_S32LE_ENCODER 1 +#define CONFIG_PCM_S32LE_PLANAR_ENCODER 1 +#define CONFIG_PCM_S64BE_ENCODER 1 +#define CONFIG_PCM_S64LE_ENCODER 1 +#define CONFIG_PCM_U8_ENCODER 1 +#define CONFIG_PCM_U16BE_ENCODER 1 +#define CONFIG_PCM_U16LE_ENCODER 1 +#define CONFIG_PCM_U24BE_ENCODER 1 +#define CONFIG_PCM_U24LE_ENCODER 1 +#define CONFIG_PCM_U32BE_ENCODER 1 +#define CONFIG_PCM_U32LE_ENCODER 1 +#define CONFIG_PCM_VIDC_ENCODER 1 +#define CONFIG_ROQ_DPCM_ENCODER 1 +#define CONFIG_ADPCM_ADX_ENCODER 1 +#define CONFIG_ADPCM_ARGO_ENCODER 1 +#define CONFIG_ADPCM_G722_ENCODER 1 +#define CONFIG_ADPCM_G726_ENCODER 1 +#define CONFIG_ADPCM_G726LE_ENCODER 1 +#define CONFIG_ADPCM_IMA_AMV_ENCODER 1 +#define CONFIG_ADPCM_IMA_ALP_ENCODER 1 +#define CONFIG_ADPCM_IMA_APM_ENCODER 1 +#define CONFIG_ADPCM_IMA_QT_ENCODER 1 +#define CONFIG_ADPCM_IMA_SSI_ENCODER 1 +#define CONFIG_ADPCM_IMA_WAV_ENCODER 1 +#define CONFIG_ADPCM_IMA_WS_ENCODER 1 +#define CONFIG_ADPCM_MS_ENCODER 1 +#define CONFIG_ADPCM_SWF_ENCODER 1 +#define CONFIG_ADPCM_YAMAHA_ENCODER 1 +#define CONFIG_SSA_ENCODER 1 +#define CONFIG_ASS_ENCODER 1 +#define CONFIG_DVBSUB_ENCODER 1 +#define CONFIG_DVDSUB_ENCODER 1 +#define CONFIG_MOVTEXT_ENCODER 1 +#define CONFIG_SRT_ENCODER 1 +#define CONFIG_SUBRIP_ENCODER 1 +#define CONFIG_TEXT_ENCODER 1 +#define CONFIG_TTML_ENCODER 1 +#define CONFIG_WEBVTT_ENCODER 1 +#define CONFIG_XSUB_ENCODER 1 +#define CONFIG_AAC_AT_ENCODER 0 +#define CONFIG_ALAC_AT_ENCODER 0 +#define CONFIG_ILBC_AT_ENCODER 0 +#define CONFIG_PCM_ALAW_AT_ENCODER 0 +#define CONFIG_PCM_MULAW_AT_ENCODER 0 +#define CONFIG_LIBAOM_AV1_ENCODER 0 +#define CONFIG_LIBCODEC2_ENCODER 0 +#define CONFIG_LIBFDK_AAC_ENCODER 0 +#define CONFIG_LIBGSM_ENCODER 0 +#define CONFIG_LIBGSM_MS_ENCODER 0 +#define CONFIG_LIBILBC_ENCODER 0 +#define CONFIG_LIBJXL_ENCODER 0 +#define CONFIG_LIBLC3_ENCODER 0 +#define CONFIG_LIBMP3LAME_ENCODER 0 +#define CONFIG_LIBOPENCORE_AMRNB_ENCODER 0 +#define CONFIG_LIBOPENJPEG_ENCODER 0 +#define CONFIG_LIBOPUS_ENCODER 0 +#define CONFIG_LIBRAV1E_ENCODER 0 +#define CONFIG_LIBSHINE_ENCODER 0 +#define CONFIG_LIBSPEEX_ENCODER 0 +#define CONFIG_LIBSVTAV1_ENCODER 0 +#define CONFIG_LIBTHEORA_ENCODER 0 +#define CONFIG_LIBTWOLAME_ENCODER 0 +#define CONFIG_LIBVO_AMRWBENC_ENCODER 0 +#define CONFIG_LIBVORBIS_ENCODER 0 +#define CONFIG_LIBVPX_VP8_ENCODER 0 +#define CONFIG_LIBVPX_VP9_ENCODER 0 +#define CONFIG_LIBWEBP_ANIM_ENCODER 0 +#define CONFIG_LIBWEBP_ENCODER 0 +#define CONFIG_LIBX262_ENCODER 0 +#define CONFIG_LIBX264_ENCODER 0 +#define CONFIG_LIBX264RGB_ENCODER 0 +#define CONFIG_LIBX265_ENCODER 0 +#define CONFIG_LIBXEVE_ENCODER 0 +#define CONFIG_LIBXAVS_ENCODER 0 +#define CONFIG_LIBXAVS2_ENCODER 0 +#define CONFIG_LIBXVID_ENCODER 0 +#define CONFIG_AAC_MF_ENCODER 0 +#define CONFIG_AC3_MF_ENCODER 0 +#define CONFIG_H263_V4L2M2M_ENCODER 1 +#define CONFIG_AV1_MEDIACODEC_ENCODER 0 +#define CONFIG_AV1_NVENC_ENCODER 0 +#define CONFIG_AV1_QSV_ENCODER 0 +#define CONFIG_AV1_AMF_ENCODER 0 +#define CONFIG_AV1_VAAPI_ENCODER 0 +#define CONFIG_LIBOPENH264_ENCODER 0 +#define CONFIG_H264_AMF_ENCODER 0 +#define CONFIG_H264_MF_ENCODER 0 +#define CONFIG_H264_NVENC_ENCODER 0 +#define CONFIG_H264_OMX_ENCODER 0 +#define CONFIG_H264_QSV_ENCODER 0 +#define CONFIG_H264_V4L2M2M_ENCODER 1 +#define CONFIG_H264_VAAPI_ENCODER 0 +#define CONFIG_H264_VIDEOTOOLBOX_ENCODER 0 +#define CONFIG_HEVC_AMF_ENCODER 0 +#define CONFIG_HEVC_MEDIACODEC_ENCODER 0 +#define CONFIG_HEVC_MF_ENCODER 0 +#define CONFIG_HEVC_NVENC_ENCODER 0 +#define CONFIG_HEVC_QSV_ENCODER 0 +#define CONFIG_HEVC_V4L2M2M_ENCODER 1 +#define CONFIG_HEVC_VAAPI_ENCODER 0 +#define CONFIG_HEVC_VIDEOTOOLBOX_ENCODER 0 +#define CONFIG_LIBKVAZAAR_ENCODER 0 +#define CONFIG_MJPEG_QSV_ENCODER 0 +#define CONFIG_MJPEG_VAAPI_ENCODER 0 +#define CONFIG_MP3_MF_ENCODER 0 +#define CONFIG_MPEG2_QSV_ENCODER 0 +#define CONFIG_MPEG2_VAAPI_ENCODER 0 +#define CONFIG_MPEG4_MEDIACODEC_ENCODER 0 +#define CONFIG_MPEG4_OMX_ENCODER 0 +#define CONFIG_MPEG4_V4L2M2M_ENCODER 1 +#define CONFIG_PRORES_VIDEOTOOLBOX_ENCODER 0 +#define CONFIG_VP8_MEDIACODEC_ENCODER 0 +#define CONFIG_VP8_V4L2M2M_ENCODER 1 +#define CONFIG_VP8_VAAPI_ENCODER 0 +#define CONFIG_VP9_MEDIACODEC_ENCODER 0 +#define CONFIG_VP9_VAAPI_ENCODER 0 +#define CONFIG_VP9_QSV_ENCODER 0 +#define CONFIG_VNULL_ENCODER 1 +#define CONFIG_ANULL_ENCODER 1 +#define CONFIG_AV1_D3D11VA_HWACCEL 0 +#define CONFIG_AV1_D3D11VA2_HWACCEL 0 +#define CONFIG_AV1_D3D12VA_HWACCEL 0 +#define CONFIG_AV1_DXVA2_HWACCEL 0 +#define CONFIG_AV1_NVDEC_HWACCEL 0 +#define CONFIG_AV1_VAAPI_HWACCEL 0 +#define CONFIG_AV1_VDPAU_HWACCEL 0 +#define CONFIG_AV1_VULKAN_HWACCEL 0 +#define CONFIG_H263_VAAPI_HWACCEL 0 +#define CONFIG_H263_VIDEOTOOLBOX_HWACCEL 0 +#define CONFIG_H264_D3D11VA_HWACCEL 0 +#define CONFIG_H264_D3D11VA2_HWACCEL 0 +#define CONFIG_H264_D3D12VA_HWACCEL 0 +#define CONFIG_H264_DXVA2_HWACCEL 0 +#define CONFIG_H264_NVDEC_HWACCEL 0 +#define CONFIG_H264_VAAPI_HWACCEL 0 +#define CONFIG_H264_VDPAU_HWACCEL 0 +#define CONFIG_H264_VIDEOTOOLBOX_HWACCEL 0 +#define CONFIG_H264_VULKAN_HWACCEL 0 +#define CONFIG_HEVC_D3D11VA_HWACCEL 0 +#define CONFIG_HEVC_D3D11VA2_HWACCEL 0 +#define CONFIG_HEVC_D3D12VA_HWACCEL 0 +#define CONFIG_HEVC_DXVA2_HWACCEL 0 +#define CONFIG_HEVC_NVDEC_HWACCEL 0 +#define CONFIG_HEVC_VAAPI_HWACCEL 0 +#define CONFIG_HEVC_VDPAU_HWACCEL 0 +#define CONFIG_HEVC_VIDEOTOOLBOX_HWACCEL 0 +#define CONFIG_HEVC_VULKAN_HWACCEL 0 +#define CONFIG_MJPEG_NVDEC_HWACCEL 0 +#define CONFIG_MJPEG_VAAPI_HWACCEL 0 +#define CONFIG_MPEG1_NVDEC_HWACCEL 0 +#define CONFIG_MPEG1_VDPAU_HWACCEL 0 +#define CONFIG_MPEG1_VIDEOTOOLBOX_HWACCEL 0 +#define CONFIG_MPEG2_D3D11VA_HWACCEL 0 +#define CONFIG_MPEG2_D3D11VA2_HWACCEL 0 +#define CONFIG_MPEG2_D3D12VA_HWACCEL 0 +#define CONFIG_MPEG2_DXVA2_HWACCEL 0 +#define CONFIG_MPEG2_NVDEC_HWACCEL 0 +#define CONFIG_MPEG2_VAAPI_HWACCEL 0 +#define CONFIG_MPEG2_VDPAU_HWACCEL 0 +#define CONFIG_MPEG2_VIDEOTOOLBOX_HWACCEL 0 +#define CONFIG_MPEG4_NVDEC_HWACCEL 0 +#define CONFIG_MPEG4_VAAPI_HWACCEL 0 +#define CONFIG_MPEG4_VDPAU_HWACCEL 0 +#define CONFIG_MPEG4_VIDEOTOOLBOX_HWACCEL 0 +#define CONFIG_PRORES_VIDEOTOOLBOX_HWACCEL 0 +#define CONFIG_VC1_D3D11VA_HWACCEL 0 +#define CONFIG_VC1_D3D11VA2_HWACCEL 0 +#define CONFIG_VC1_D3D12VA_HWACCEL 0 +#define CONFIG_VC1_DXVA2_HWACCEL 0 +#define CONFIG_VC1_NVDEC_HWACCEL 0 +#define CONFIG_VC1_VAAPI_HWACCEL 0 +#define CONFIG_VC1_VDPAU_HWACCEL 0 +#define CONFIG_VP8_NVDEC_HWACCEL 0 +#define CONFIG_VP8_VAAPI_HWACCEL 0 +#define CONFIG_VP9_D3D11VA_HWACCEL 0 +#define CONFIG_VP9_D3D11VA2_HWACCEL 0 +#define CONFIG_VP9_D3D12VA_HWACCEL 0 +#define CONFIG_VP9_DXVA2_HWACCEL 0 +#define CONFIG_VP9_NVDEC_HWACCEL 0 +#define CONFIG_VP9_VAAPI_HWACCEL 0 +#define CONFIG_VP9_VDPAU_HWACCEL 0 +#define CONFIG_VP9_VIDEOTOOLBOX_HWACCEL 0 +#define CONFIG_WMV3_D3D11VA_HWACCEL 0 +#define CONFIG_WMV3_D3D11VA2_HWACCEL 0 +#define CONFIG_WMV3_D3D12VA_HWACCEL 0 +#define CONFIG_WMV3_DXVA2_HWACCEL 0 +#define CONFIG_WMV3_NVDEC_HWACCEL 0 +#define CONFIG_WMV3_VAAPI_HWACCEL 0 +#define CONFIG_WMV3_VDPAU_HWACCEL 0 +#define CONFIG_AAC_PARSER 1 +#define CONFIG_AAC_LATM_PARSER 1 +#define CONFIG_AC3_PARSER 1 +#define CONFIG_ADX_PARSER 1 +#define CONFIG_AMR_PARSER 1 +#define CONFIG_AV1_PARSER 1 +#define CONFIG_AVS2_PARSER 1 +#define CONFIG_AVS3_PARSER 1 +#define CONFIG_BMP_PARSER 1 +#define CONFIG_CAVSVIDEO_PARSER 1 +#define CONFIG_COOK_PARSER 1 +#define CONFIG_CRI_PARSER 1 +#define CONFIG_DCA_PARSER 1 +#define CONFIG_DIRAC_PARSER 1 +#define CONFIG_DNXHD_PARSER 1 +#define CONFIG_DOLBY_E_PARSER 1 +#define CONFIG_DPX_PARSER 1 +#define CONFIG_DVAUDIO_PARSER 1 +#define CONFIG_DVBSUB_PARSER 1 +#define CONFIG_DVDSUB_PARSER 1 +#define CONFIG_DVD_NAV_PARSER 1 +#define CONFIG_EVC_PARSER 1 +#define CONFIG_FLAC_PARSER 1 +#define CONFIG_FTR_PARSER 1 +#define CONFIG_G723_1_PARSER 1 +#define CONFIG_G729_PARSER 1 +#define CONFIG_GIF_PARSER 1 +#define CONFIG_GSM_PARSER 1 +#define CONFIG_H261_PARSER 1 +#define CONFIG_H263_PARSER 1 +#define CONFIG_H264_PARSER 1 +#define CONFIG_HEVC_PARSER 1 +#define CONFIG_HDR_PARSER 1 +#define CONFIG_IPU_PARSER 1 +#define CONFIG_JPEG2000_PARSER 1 +#define CONFIG_JPEGXL_PARSER 1 +#define CONFIG_MISC4_PARSER 1 +#define CONFIG_MJPEG_PARSER 1 +#define CONFIG_MLP_PARSER 1 +#define CONFIG_MPEG4VIDEO_PARSER 1 +#define CONFIG_MPEGAUDIO_PARSER 1 +#define CONFIG_MPEGVIDEO_PARSER 1 +#define CONFIG_OPUS_PARSER 1 +#define CONFIG_PNG_PARSER 1 +#define CONFIG_PNM_PARSER 1 +#define CONFIG_QOI_PARSER 1 +#define CONFIG_RV34_PARSER 1 +#define CONFIG_SBC_PARSER 1 +#define CONFIG_SIPR_PARSER 1 +#define CONFIG_TAK_PARSER 1 +#define CONFIG_VC1_PARSER 1 +#define CONFIG_VORBIS_PARSER 1 +#define CONFIG_VP3_PARSER 1 +#define CONFIG_VP8_PARSER 1 +#define CONFIG_VP9_PARSER 1 +#define CONFIG_VVC_PARSER 1 +#define CONFIG_WEBP_PARSER 1 +#define CONFIG_XBM_PARSER 1 +#define CONFIG_XMA_PARSER 1 +#define CONFIG_XWD_PARSER 1 +#define CONFIG_ALSA_INDEV 0 +#define CONFIG_ANDROID_CAMERA_INDEV 0 +#define CONFIG_AVFOUNDATION_INDEV 0 +#define CONFIG_BKTR_INDEV 0 +#define CONFIG_DECKLINK_INDEV 0 +#define CONFIG_DSHOW_INDEV 0 +#define CONFIG_FBDEV_INDEV 1 +#define CONFIG_GDIGRAB_INDEV 0 +#define CONFIG_IEC61883_INDEV 0 +#define CONFIG_JACK_INDEV 0 +#define CONFIG_KMSGRAB_INDEV 0 +#define CONFIG_LAVFI_INDEV 1 +#define CONFIG_OPENAL_INDEV 0 +#define CONFIG_OSS_INDEV 1 +#define CONFIG_PULSE_INDEV 0 +#define CONFIG_SNDIO_INDEV 0 +#define CONFIG_V4L2_INDEV 1 +#define CONFIG_VFWCAP_INDEV 0 +#define CONFIG_XCBGRAB_INDEV 0 +#define CONFIG_LIBCDIO_INDEV 0 +#define CONFIG_LIBDC1394_INDEV 0 +#define CONFIG_ALSA_OUTDEV 0 +#define CONFIG_AUDIOTOOLBOX_OUTDEV 0 +#define CONFIG_CACA_OUTDEV 0 +#define CONFIG_DECKLINK_OUTDEV 0 +#define CONFIG_FBDEV_OUTDEV 1 +#define CONFIG_OPENGL_OUTDEV 0 +#define CONFIG_OSS_OUTDEV 1 +#define CONFIG_PULSE_OUTDEV 0 +#define CONFIG_SDL2_OUTDEV 0 +#define CONFIG_SNDIO_OUTDEV 0 +#define CONFIG_V4L2_OUTDEV 1 +#define CONFIG_XV_OUTDEV 0 +#define CONFIG_AAP_FILTER 1 +#define CONFIG_ABENCH_FILTER 1 +#define CONFIG_ACOMPRESSOR_FILTER 1 +#define CONFIG_ACONTRAST_FILTER 1 +#define CONFIG_ACOPY_FILTER 1 +#define CONFIG_ACUE_FILTER 1 +#define CONFIG_ACROSSFADE_FILTER 1 +#define CONFIG_ACROSSOVER_FILTER 1 +#define CONFIG_ACRUSHER_FILTER 1 +#define CONFIG_ADECLICK_FILTER 1 +#define CONFIG_ADECLIP_FILTER 1 +#define CONFIG_ADECORRELATE_FILTER 1 +#define CONFIG_ADELAY_FILTER 1 +#define CONFIG_ADENORM_FILTER 1 +#define CONFIG_ADERIVATIVE_FILTER 1 +#define CONFIG_ADRC_FILTER 1 +#define CONFIG_ADYNAMICEQUALIZER_FILTER 1 +#define CONFIG_ADYNAMICSMOOTH_FILTER 1 +#define CONFIG_AECHO_FILTER 1 +#define CONFIG_AEMPHASIS_FILTER 1 +#define CONFIG_AEVAL_FILTER 1 +#define CONFIG_AEXCITER_FILTER 1 +#define CONFIG_AFADE_FILTER 1 +#define CONFIG_AFFTDN_FILTER 1 +#define CONFIG_AFFTFILT_FILTER 1 +#define CONFIG_AFIR_FILTER 1 +#define CONFIG_AFORMAT_FILTER 1 +#define CONFIG_AFREQSHIFT_FILTER 1 +#define CONFIG_AFWTDN_FILTER 1 +#define CONFIG_AGATE_FILTER 1 +#define CONFIG_AIIR_FILTER 1 +#define CONFIG_AINTEGRAL_FILTER 1 +#define CONFIG_AINTERLEAVE_FILTER 1 +#define CONFIG_ALATENCY_FILTER 1 +#define CONFIG_ALIMITER_FILTER 1 +#define CONFIG_ALLPASS_FILTER 1 +#define CONFIG_ALOOP_FILTER 1 +#define CONFIG_AMERGE_FILTER 1 +#define CONFIG_AMETADATA_FILTER 1 +#define CONFIG_AMIX_FILTER 1 +#define CONFIG_AMULTIPLY_FILTER 1 +#define CONFIG_ANEQUALIZER_FILTER 1 +#define CONFIG_ANLMDN_FILTER 1 +#define CONFIG_ANLMF_FILTER 1 +#define CONFIG_ANLMS_FILTER 1 +#define CONFIG_ANULL_FILTER 1 +#define CONFIG_APAD_FILTER 1 +#define CONFIG_APERMS_FILTER 1 +#define CONFIG_APHASER_FILTER 1 +#define CONFIG_APHASESHIFT_FILTER 1 +#define CONFIG_APSNR_FILTER 1 +#define CONFIG_APSYCLIP_FILTER 1 +#define CONFIG_APULSATOR_FILTER 1 +#define CONFIG_AREALTIME_FILTER 1 +#define CONFIG_ARESAMPLE_FILTER 1 +#define CONFIG_AREVERSE_FILTER 1 +#define CONFIG_ARLS_FILTER 1 +#define CONFIG_ARNNDN_FILTER 1 +#define CONFIG_ASDR_FILTER 1 +#define CONFIG_ASEGMENT_FILTER 1 +#define CONFIG_ASELECT_FILTER 1 +#define CONFIG_ASENDCMD_FILTER 1 +#define CONFIG_ASETNSAMPLES_FILTER 1 +#define CONFIG_ASETPTS_FILTER 1 +#define CONFIG_ASETRATE_FILTER 1 +#define CONFIG_ASETTB_FILTER 1 +#define CONFIG_ASHOWINFO_FILTER 1 +#define CONFIG_ASIDEDATA_FILTER 1 +#define CONFIG_ASISDR_FILTER 1 +#define CONFIG_ASOFTCLIP_FILTER 1 +#define CONFIG_ASPECTRALSTATS_FILTER 1 +#define CONFIG_ASPLIT_FILTER 1 +#define CONFIG_ASR_FILTER 0 +#define CONFIG_ASTATS_FILTER 1 +#define CONFIG_ASTREAMSELECT_FILTER 1 +#define CONFIG_ASUBBOOST_FILTER 1 +#define CONFIG_ASUBCUT_FILTER 1 +#define CONFIG_ASUPERCUT_FILTER 1 +#define CONFIG_ASUPERPASS_FILTER 1 +#define CONFIG_ASUPERSTOP_FILTER 1 +#define CONFIG_ATEMPO_FILTER 1 +#define CONFIG_ATILT_FILTER 1 +#define CONFIG_ATRIM_FILTER 1 +#define CONFIG_AXCORRELATE_FILTER 1 +#define CONFIG_AZMQ_FILTER 0 +#define CONFIG_BANDPASS_FILTER 1 +#define CONFIG_BANDREJECT_FILTER 1 +#define CONFIG_BASS_FILTER 1 +#define CONFIG_BIQUAD_FILTER 1 +#define CONFIG_BS2B_FILTER 0 +#define CONFIG_CHANNELMAP_FILTER 1 +#define CONFIG_CHANNELSPLIT_FILTER 1 +#define CONFIG_CHORUS_FILTER 1 +#define CONFIG_COMPAND_FILTER 1 +#define CONFIG_COMPENSATIONDELAY_FILTER 1 +#define CONFIG_CROSSFEED_FILTER 1 +#define CONFIG_CRYSTALIZER_FILTER 1 +#define CONFIG_DCSHIFT_FILTER 1 +#define CONFIG_DEESSER_FILTER 1 +#define CONFIG_DIALOGUENHANCE_FILTER 1 +#define CONFIG_DRMETER_FILTER 1 +#define CONFIG_DYNAUDNORM_FILTER 1 +#define CONFIG_EARWAX_FILTER 1 +#define CONFIG_EBUR128_FILTER 1 +#define CONFIG_EQUALIZER_FILTER 1 +#define CONFIG_EXTRASTEREO_FILTER 1 +#define CONFIG_FIREQUALIZER_FILTER 1 +#define CONFIG_FLANGER_FILTER 1 +#define CONFIG_HAAS_FILTER 1 +#define CONFIG_HDCD_FILTER 1 +#define CONFIG_HEADPHONE_FILTER 1 +#define CONFIG_HIGHPASS_FILTER 1 +#define CONFIG_HIGHSHELF_FILTER 1 +#define CONFIG_JOIN_FILTER 1 +#define CONFIG_LADSPA_FILTER 0 +#define CONFIG_LOUDNORM_FILTER 1 +#define CONFIG_LOWPASS_FILTER 1 +#define CONFIG_LOWSHELF_FILTER 1 +#define CONFIG_LV2_FILTER 0 +#define CONFIG_MCOMPAND_FILTER 1 +#define CONFIG_PAN_FILTER 1 +#define CONFIG_REPLAYGAIN_FILTER 1 +#define CONFIG_RUBBERBAND_FILTER 0 +#define CONFIG_SIDECHAINCOMPRESS_FILTER 1 +#define CONFIG_SIDECHAINGATE_FILTER 1 +#define CONFIG_SILENCEDETECT_FILTER 1 +#define CONFIG_SILENCEREMOVE_FILTER 1 +#define CONFIG_SOFALIZER_FILTER 0 +#define CONFIG_SPEECHNORM_FILTER 1 +#define CONFIG_STEREOTOOLS_FILTER 1 +#define CONFIG_STEREOWIDEN_FILTER 1 +#define CONFIG_SUPEREQUALIZER_FILTER 1 +#define CONFIG_SURROUND_FILTER 1 +#define CONFIG_TILTSHELF_FILTER 1 +#define CONFIG_TREBLE_FILTER 1 +#define CONFIG_TREMOLO_FILTER 1 +#define CONFIG_VIBRATO_FILTER 1 +#define CONFIG_VIRTUALBASS_FILTER 1 +#define CONFIG_VOLUME_FILTER 1 +#define CONFIG_VOLUMEDETECT_FILTER 1 +#define CONFIG_AEVALSRC_FILTER 1 +#define CONFIG_AFDELAYSRC_FILTER 1 +#define CONFIG_AFIREQSRC_FILTER 1 +#define CONFIG_AFIRSRC_FILTER 1 +#define CONFIG_ANOISESRC_FILTER 1 +#define CONFIG_ANULLSRC_FILTER 1 +#define CONFIG_FLITE_FILTER 0 +#define CONFIG_HILBERT_FILTER 1 +#define CONFIG_SINC_FILTER 1 +#define CONFIG_SINE_FILTER 1 +#define CONFIG_ANULLSINK_FILTER 1 +#define CONFIG_ADDROI_FILTER 1 +#define CONFIG_ALPHAEXTRACT_FILTER 1 +#define CONFIG_ALPHAMERGE_FILTER 1 +#define CONFIG_AMPLIFY_FILTER 1 +#define CONFIG_ASS_FILTER 0 +#define CONFIG_ATADENOISE_FILTER 1 +#define CONFIG_AVGBLUR_FILTER 1 +#define CONFIG_AVGBLUR_OPENCL_FILTER 0 +#define CONFIG_AVGBLUR_VULKAN_FILTER 0 +#define CONFIG_BACKGROUNDKEY_FILTER 1 +#define CONFIG_BBOX_FILTER 1 +#define CONFIG_BENCH_FILTER 1 +#define CONFIG_BILATERAL_FILTER 1 +#define CONFIG_BILATERAL_CUDA_FILTER 0 +#define CONFIG_BITPLANENOISE_FILTER 1 +#define CONFIG_BLACKDETECT_FILTER 1 +#define CONFIG_BLACKFRAME_FILTER 0 +#define CONFIG_BLEND_FILTER 1 +#define CONFIG_BLEND_VULKAN_FILTER 0 +#define CONFIG_BLOCKDETECT_FILTER 1 +#define CONFIG_BLURDETECT_FILTER 1 +#define CONFIG_BM3D_FILTER 1 +#define CONFIG_BOXBLUR_FILTER 0 +#define CONFIG_BOXBLUR_OPENCL_FILTER 0 +#define CONFIG_BWDIF_FILTER 1 +#define CONFIG_BWDIF_CUDA_FILTER 0 +#define CONFIG_BWDIF_VULKAN_FILTER 0 +#define CONFIG_CAS_FILTER 1 +#define CONFIG_CCREPACK_FILTER 1 +#define CONFIG_CHROMABER_VULKAN_FILTER 0 +#define CONFIG_CHROMAHOLD_FILTER 1 +#define CONFIG_CHROMAKEY_FILTER 1 +#define CONFIG_CHROMAKEY_CUDA_FILTER 0 +#define CONFIG_CHROMANR_FILTER 1 +#define CONFIG_CHROMASHIFT_FILTER 1 +#define CONFIG_CIESCOPE_FILTER 1 +#define CONFIG_CODECVIEW_FILTER 1 +#define CONFIG_COLORBALANCE_FILTER 1 +#define CONFIG_COLORCHANNELMIXER_FILTER 1 +#define CONFIG_COLORCONTRAST_FILTER 1 +#define CONFIG_COLORCORRECT_FILTER 1 +#define CONFIG_COLORIZE_FILTER 1 +#define CONFIG_COLORKEY_FILTER 1 +#define CONFIG_COLORKEY_OPENCL_FILTER 0 +#define CONFIG_COLORHOLD_FILTER 1 +#define CONFIG_COLORLEVELS_FILTER 1 +#define CONFIG_COLORMAP_FILTER 1 +#define CONFIG_COLORMATRIX_FILTER 0 +#define CONFIG_COLORSPACE_FILTER 1 +#define CONFIG_COLORSPACE_CUDA_FILTER 0 +#define CONFIG_COLORTEMPERATURE_FILTER 1 +#define CONFIG_CONVOLUTION_FILTER 1 +#define CONFIG_CONVOLUTION_OPENCL_FILTER 0 +#define CONFIG_CONVOLVE_FILTER 1 +#define CONFIG_COPY_FILTER 1 +#define CONFIG_COREIMAGE_FILTER 0 +#define CONFIG_CORR_FILTER 1 +#define CONFIG_COVER_RECT_FILTER 0 +#define CONFIG_CROP_FILTER 1 +#define CONFIG_CROPDETECT_FILTER 0 +#define CONFIG_CUE_FILTER 1 +#define CONFIG_CURVES_FILTER 1 +#define CONFIG_DATASCOPE_FILTER 1 +#define CONFIG_DBLUR_FILTER 1 +#define CONFIG_DCTDNOIZ_FILTER 1 +#define CONFIG_DEBAND_FILTER 1 +#define CONFIG_DEBLOCK_FILTER 1 +#define CONFIG_DECIMATE_FILTER 1 +#define CONFIG_DECONVOLVE_FILTER 1 +#define CONFIG_DEDOT_FILTER 1 +#define CONFIG_DEFLATE_FILTER 1 +#define CONFIG_DEFLICKER_FILTER 1 +#define CONFIG_DEINTERLACE_QSV_FILTER 0 +#define CONFIG_DEINTERLACE_VAAPI_FILTER 0 +#define CONFIG_DEJUDDER_FILTER 1 +#define CONFIG_DELOGO_FILTER 0 +#define CONFIG_DENOISE_VAAPI_FILTER 0 +#define CONFIG_DERAIN_FILTER 0 +#define CONFIG_DESHAKE_FILTER 1 +#define CONFIG_DESHAKE_OPENCL_FILTER 0 +#define CONFIG_DESPILL_FILTER 1 +#define CONFIG_DETELECINE_FILTER 1 +#define CONFIG_DILATION_FILTER 1 +#define CONFIG_DILATION_OPENCL_FILTER 0 +#define CONFIG_DISPLACE_FILTER 1 +#define CONFIG_DNN_CLASSIFY_FILTER 0 +#define CONFIG_DNN_DETECT_FILTER 0 +#define CONFIG_DNN_PROCESSING_FILTER 0 +#define CONFIG_DOUBLEWEAVE_FILTER 1 +#define CONFIG_DRAWBOX_FILTER 1 +#define CONFIG_DRAWGRAPH_FILTER 1 +#define CONFIG_DRAWGRID_FILTER 1 +#define CONFIG_DRAWTEXT_FILTER 0 +#define CONFIG_EDGEDETECT_FILTER 1 +#define CONFIG_ELBG_FILTER 1 +#define CONFIG_ENTROPY_FILTER 1 +#define CONFIG_EPX_FILTER 1 +#define CONFIG_EQ_FILTER 0 +#define CONFIG_EROSION_FILTER 1 +#define CONFIG_EROSION_OPENCL_FILTER 0 +#define CONFIG_ESTDIF_FILTER 1 +#define CONFIG_EXPOSURE_FILTER 1 +#define CONFIG_EXTRACTPLANES_FILTER 1 +#define CONFIG_FADE_FILTER 1 +#define CONFIG_FEEDBACK_FILTER 1 +#define CONFIG_FFTDNOIZ_FILTER 1 +#define CONFIG_FFTFILT_FILTER 1 +#define CONFIG_FIELD_FILTER 1 +#define CONFIG_FIELDHINT_FILTER 1 +#define CONFIG_FIELDMATCH_FILTER 1 +#define CONFIG_FIELDORDER_FILTER 1 +#define CONFIG_FILLBORDERS_FILTER 1 +#define CONFIG_FIND_RECT_FILTER 0 +#define CONFIG_FLIP_VULKAN_FILTER 0 +#define CONFIG_FLOODFILL_FILTER 1 +#define CONFIG_FORMAT_FILTER 1 +#define CONFIG_FPS_FILTER 1 +#define CONFIG_FRAMEPACK_FILTER 1 +#define CONFIG_FRAMERATE_FILTER 1 +#define CONFIG_FRAMESTEP_FILTER 1 +#define CONFIG_FREEZEDETECT_FILTER 1 +#define CONFIG_FREEZEFRAMES_FILTER 1 +#define CONFIG_FREI0R_FILTER 0 +#define CONFIG_FSPP_FILTER 0 +#define CONFIG_FSYNC_FILTER 1 +#define CONFIG_GBLUR_FILTER 1 +#define CONFIG_GBLUR_VULKAN_FILTER 0 +#define CONFIG_GEQ_FILTER 1 +#define CONFIG_GRADFUN_FILTER 1 +#define CONFIG_GRAPHMONITOR_FILTER 1 +#define CONFIG_GRAYWORLD_FILTER 1 +#define CONFIG_GREYEDGE_FILTER 1 +#define CONFIG_GUIDED_FILTER 1 +#define CONFIG_HALDCLUT_FILTER 1 +#define CONFIG_HFLIP_FILTER 1 +#define CONFIG_HFLIP_VULKAN_FILTER 0 +#define CONFIG_HISTEQ_FILTER 0 +#define CONFIG_HISTOGRAM_FILTER 1 +#define CONFIG_HQDN3D_FILTER 0 +#define CONFIG_HQX_FILTER 1 +#define CONFIG_HSTACK_FILTER 1 +#define CONFIG_HSVHOLD_FILTER 1 +#define CONFIG_HSVKEY_FILTER 1 +#define CONFIG_HUE_FILTER 1 +#define CONFIG_HUESATURATION_FILTER 1 +#define CONFIG_HWDOWNLOAD_FILTER 1 +#define CONFIG_HWMAP_FILTER 1 +#define CONFIG_HWUPLOAD_FILTER 1 +#define CONFIG_HWUPLOAD_CUDA_FILTER 0 +#define CONFIG_HYSTERESIS_FILTER 1 +#define CONFIG_ICCDETECT_FILTER 0 +#define CONFIG_ICCGEN_FILTER 0 +#define CONFIG_IDENTITY_FILTER 1 +#define CONFIG_IDET_FILTER 1 +#define CONFIG_IL_FILTER 1 +#define CONFIG_INFLATE_FILTER 1 +#define CONFIG_INTERLACE_FILTER 0 +#define CONFIG_INTERLEAVE_FILTER 1 +#define CONFIG_KERNDEINT_FILTER 0 +#define CONFIG_KIRSCH_FILTER 1 +#define CONFIG_LAGFUN_FILTER 1 +#define CONFIG_LATENCY_FILTER 1 +#define CONFIG_LENSCORRECTION_FILTER 1 +#define CONFIG_LENSFUN_FILTER 0 +#define CONFIG_LIBPLACEBO_FILTER 0 +#define CONFIG_LIBVMAF_FILTER 0 +#define CONFIG_LIBVMAF_CUDA_FILTER 0 +#define CONFIG_LIMITDIFF_FILTER 1 +#define CONFIG_LIMITER_FILTER 1 +#define CONFIG_LOOP_FILTER 1 +#define CONFIG_LUMAKEY_FILTER 1 +#define CONFIG_LUT_FILTER 1 +#define CONFIG_LUT1D_FILTER 1 +#define CONFIG_LUT2_FILTER 1 +#define CONFIG_LUT3D_FILTER 1 +#define CONFIG_LUTRGB_FILTER 1 +#define CONFIG_LUTYUV_FILTER 1 +#define CONFIG_MASKEDCLAMP_FILTER 1 +#define CONFIG_MASKEDMAX_FILTER 1 +#define CONFIG_MASKEDMERGE_FILTER 1 +#define CONFIG_MASKEDMIN_FILTER 1 +#define CONFIG_MASKEDTHRESHOLD_FILTER 1 +#define CONFIG_MASKFUN_FILTER 1 +#define CONFIG_MCDEINT_FILTER 0 +#define CONFIG_MEDIAN_FILTER 1 +#define CONFIG_MERGEPLANES_FILTER 1 +#define CONFIG_MESTIMATE_FILTER 1 +#define CONFIG_METADATA_FILTER 1 +#define CONFIG_MIDEQUALIZER_FILTER 1 +#define CONFIG_MINTERPOLATE_FILTER 1 +#define CONFIG_MIX_FILTER 1 +#define CONFIG_MONOCHROME_FILTER 1 +#define CONFIG_MORPHO_FILTER 1 +#define CONFIG_MPDECIMATE_FILTER 0 +#define CONFIG_MSAD_FILTER 1 +#define CONFIG_MULTIPLY_FILTER 1 +#define CONFIG_NEGATE_FILTER 1 +#define CONFIG_NLMEANS_FILTER 1 +#define CONFIG_NLMEANS_OPENCL_FILTER 0 +#define CONFIG_NLMEANS_VULKAN_FILTER 0 +#define CONFIG_NNEDI_FILTER 0 +#define CONFIG_NOFORMAT_FILTER 1 +#define CONFIG_NOISE_FILTER 1 +#define CONFIG_NORMALIZE_FILTER 1 +#define CONFIG_NULL_FILTER 1 +#define CONFIG_OCR_FILTER 0 +#define CONFIG_OCV_FILTER 0 +#define CONFIG_OSCILLOSCOPE_FILTER 1 +#define CONFIG_OVERLAY_FILTER 1 +#define CONFIG_OVERLAY_OPENCL_FILTER 0 +#define CONFIG_OVERLAY_QSV_FILTER 0 +#define CONFIG_OVERLAY_VAAPI_FILTER 0 +#define CONFIG_OVERLAY_VULKAN_FILTER 0 +#define CONFIG_OVERLAY_CUDA_FILTER 0 +#define CONFIG_OWDENOISE_FILTER 0 +#define CONFIG_PAD_FILTER 1 +#define CONFIG_PAD_OPENCL_FILTER 0 +#define CONFIG_PALETTEGEN_FILTER 1 +#define CONFIG_PALETTEUSE_FILTER 1 +#define CONFIG_PERMS_FILTER 1 +#define CONFIG_PERSPECTIVE_FILTER 0 +#define CONFIG_PHASE_FILTER 0 +#define CONFIG_PHOTOSENSITIVITY_FILTER 1 +#define CONFIG_PIXDESCTEST_FILTER 1 +#define CONFIG_PIXELIZE_FILTER 1 +#define CONFIG_PIXSCOPE_FILTER 1 +#define CONFIG_PP_FILTER 0 +#define CONFIG_PP7_FILTER 0 +#define CONFIG_PREMULTIPLY_FILTER 1 +#define CONFIG_PREWITT_FILTER 1 +#define CONFIG_PREWITT_OPENCL_FILTER 0 +#define CONFIG_PROCAMP_VAAPI_FILTER 0 +#define CONFIG_PROGRAM_OPENCL_FILTER 0 +#define CONFIG_PSEUDOCOLOR_FILTER 1 +#define CONFIG_PSNR_FILTER 1 +#define CONFIG_PULLUP_FILTER 0 +#define CONFIG_QP_FILTER 1 +#define CONFIG_QRENCODE_FILTER 0 +#define CONFIG_QUIRC_FILTER 0 +#define CONFIG_RANDOM_FILTER 1 +#define CONFIG_READEIA608_FILTER 1 +#define CONFIG_READVITC_FILTER 1 +#define CONFIG_REALTIME_FILTER 1 +#define CONFIG_REMAP_FILTER 1 +#define CONFIG_REMAP_OPENCL_FILTER 0 +#define CONFIG_REMOVEGRAIN_FILTER 1 +#define CONFIG_REMOVELOGO_FILTER 1 +#define CONFIG_REPEATFIELDS_FILTER 0 +#define CONFIG_REVERSE_FILTER 1 +#define CONFIG_RGBASHIFT_FILTER 1 +#define CONFIG_ROBERTS_FILTER 1 +#define CONFIG_ROBERTS_OPENCL_FILTER 0 +#define CONFIG_ROTATE_FILTER 1 +#define CONFIG_SAB_FILTER 0 +#define CONFIG_SCALE_FILTER 1 +#define CONFIG_SCALE_CUDA_FILTER 0 +#define CONFIG_SCALE_NPP_FILTER 0 +#define CONFIG_SCALE_QSV_FILTER 0 +#define CONFIG_SCALE_VAAPI_FILTER 0 +#define CONFIG_SCALE_VT_FILTER 0 +#define CONFIG_SCALE_VULKAN_FILTER 0 +#define CONFIG_SCALE2REF_FILTER 1 +#define CONFIG_SCALE2REF_NPP_FILTER 0 +#define CONFIG_SCDET_FILTER 1 +#define CONFIG_SCHARR_FILTER 1 +#define CONFIG_SCROLL_FILTER 1 +#define CONFIG_SEGMENT_FILTER 1 +#define CONFIG_SELECT_FILTER 1 +#define CONFIG_SELECTIVECOLOR_FILTER 1 +#define CONFIG_SENDCMD_FILTER 1 +#define CONFIG_SEPARATEFIELDS_FILTER 1 +#define CONFIG_SETDAR_FILTER 1 +#define CONFIG_SETFIELD_FILTER 1 +#define CONFIG_SETPARAMS_FILTER 1 +#define CONFIG_SETPTS_FILTER 1 +#define CONFIG_SETRANGE_FILTER 1 +#define CONFIG_SETSAR_FILTER 1 +#define CONFIG_SETTB_FILTER 1 +#define CONFIG_SHARPEN_NPP_FILTER 0 +#define CONFIG_SHARPNESS_VAAPI_FILTER 0 +#define CONFIG_SHEAR_FILTER 1 +#define CONFIG_SHOWINFO_FILTER 1 +#define CONFIG_SHOWPALETTE_FILTER 1 +#define CONFIG_SHUFFLEFRAMES_FILTER 1 +#define CONFIG_SHUFFLEPIXELS_FILTER 1 +#define CONFIG_SHUFFLEPLANES_FILTER 1 +#define CONFIG_SIDEDATA_FILTER 1 +#define CONFIG_SIGNALSTATS_FILTER 1 +#define CONFIG_SIGNATURE_FILTER 0 +#define CONFIG_SITI_FILTER 1 +#define CONFIG_SMARTBLUR_FILTER 0 +#define CONFIG_SOBEL_FILTER 1 +#define CONFIG_SOBEL_OPENCL_FILTER 0 +#define CONFIG_SPLIT_FILTER 1 +#define CONFIG_SPP_FILTER 0 +#define CONFIG_SR_FILTER 0 +#define CONFIG_SSIM_FILTER 1 +#define CONFIG_SSIM360_FILTER 1 +#define CONFIG_STEREO3D_FILTER 0 +#define CONFIG_STREAMSELECT_FILTER 1 +#define CONFIG_SUBTITLES_FILTER 0 +#define CONFIG_SUPER2XSAI_FILTER 0 +#define CONFIG_SWAPRECT_FILTER 1 +#define CONFIG_SWAPUV_FILTER 1 +#define CONFIG_TBLEND_FILTER 1 +#define CONFIG_TELECINE_FILTER 1 +#define CONFIG_THISTOGRAM_FILTER 1 +#define CONFIG_THRESHOLD_FILTER 1 +#define CONFIG_THUMBNAIL_FILTER 1 +#define CONFIG_THUMBNAIL_CUDA_FILTER 0 +#define CONFIG_TILE_FILTER 1 +#define CONFIG_TILTANDSHIFT_FILTER 1 +#define CONFIG_TINTERLACE_FILTER 0 +#define CONFIG_TLUT2_FILTER 1 +#define CONFIG_TMEDIAN_FILTER 1 +#define CONFIG_TMIDEQUALIZER_FILTER 1 +#define CONFIG_TMIX_FILTER 1 +#define CONFIG_TONEMAP_FILTER 1 +#define CONFIG_TONEMAP_OPENCL_FILTER 0 +#define CONFIG_TONEMAP_VAAPI_FILTER 0 +#define CONFIG_TPAD_FILTER 1 +#define CONFIG_TRANSPOSE_FILTER 1 +#define CONFIG_TRANSPOSE_NPP_FILTER 0 +#define CONFIG_TRANSPOSE_OPENCL_FILTER 0 +#define CONFIG_TRANSPOSE_VAAPI_FILTER 0 +#define CONFIG_TRANSPOSE_VT_FILTER 0 +#define CONFIG_TRANSPOSE_VULKAN_FILTER 0 +#define CONFIG_TRIM_FILTER 1 +#define CONFIG_UNPREMULTIPLY_FILTER 1 +#define CONFIG_UNSHARP_FILTER 1 +#define CONFIG_UNSHARP_OPENCL_FILTER 0 +#define CONFIG_UNTILE_FILTER 1 +#define CONFIG_USPP_FILTER 0 +#define CONFIG_V360_FILTER 1 +#define CONFIG_VAGUEDENOISER_FILTER 0 +#define CONFIG_VARBLUR_FILTER 1 +#define CONFIG_VECTORSCOPE_FILTER 1 +#define CONFIG_VFLIP_FILTER 1 +#define CONFIG_VFLIP_VULKAN_FILTER 0 +#define CONFIG_VFRDET_FILTER 1 +#define CONFIG_VIBRANCE_FILTER 1 +#define CONFIG_VIDSTABDETECT_FILTER 0 +#define CONFIG_VIDSTABTRANSFORM_FILTER 0 +#define CONFIG_VIF_FILTER 1 +#define CONFIG_VIGNETTE_FILTER 1 +#define CONFIG_VMAFMOTION_FILTER 1 +#define CONFIG_VPP_QSV_FILTER 0 +#define CONFIG_VSTACK_FILTER 1 +#define CONFIG_W3FDIF_FILTER 1 +#define CONFIG_WAVEFORM_FILTER 1 +#define CONFIG_WEAVE_FILTER 1 +#define CONFIG_XBR_FILTER 1 +#define CONFIG_XCORRELATE_FILTER 1 +#define CONFIG_XFADE_FILTER 1 +#define CONFIG_XFADE_OPENCL_FILTER 0 +#define CONFIG_XFADE_VULKAN_FILTER 0 +#define CONFIG_XMEDIAN_FILTER 1 +#define CONFIG_XSTACK_FILTER 1 +#define CONFIG_YADIF_FILTER 1 +#define CONFIG_YADIF_CUDA_FILTER 0 +#define CONFIG_YADIF_VIDEOTOOLBOX_FILTER 0 +#define CONFIG_YAEPBLUR_FILTER 1 +#define CONFIG_ZMQ_FILTER 0 +#define CONFIG_ZOOMPAN_FILTER 1 +#define CONFIG_ZSCALE_FILTER 0 +#define CONFIG_HSTACK_VAAPI_FILTER 0 +#define CONFIG_VSTACK_VAAPI_FILTER 0 +#define CONFIG_XSTACK_VAAPI_FILTER 0 +#define CONFIG_HSTACK_QSV_FILTER 0 +#define CONFIG_VSTACK_QSV_FILTER 0 +#define CONFIG_XSTACK_QSV_FILTER 0 +#define CONFIG_PAD_VAAPI_FILTER 0 +#define CONFIG_DRAWBOX_VAAPI_FILTER 0 +#define CONFIG_ALLRGB_FILTER 1 +#define CONFIG_ALLYUV_FILTER 1 +#define CONFIG_CELLAUTO_FILTER 1 +#define CONFIG_COLOR_FILTER 1 +#define CONFIG_COLOR_VULKAN_FILTER 0 +#define CONFIG_COLORCHART_FILTER 1 +#define CONFIG_COLORSPECTRUM_FILTER 1 +#define CONFIG_COREIMAGESRC_FILTER 0 +#define CONFIG_DDAGRAB_FILTER 0 +#define CONFIG_FREI0R_SRC_FILTER 0 +#define CONFIG_GRADIENTS_FILTER 1 +#define CONFIG_HALDCLUTSRC_FILTER 1 +#define CONFIG_LIFE_FILTER 1 +#define CONFIG_MANDELBROT_FILTER 1 +#define CONFIG_MPTESTSRC_FILTER 0 +#define CONFIG_NULLSRC_FILTER 1 +#define CONFIG_OPENCLSRC_FILTER 0 +#define CONFIG_QRENCODESRC_FILTER 0 +#define CONFIG_PAL75BARS_FILTER 1 +#define CONFIG_PAL100BARS_FILTER 1 +#define CONFIG_RGBTESTSRC_FILTER 1 +#define CONFIG_SIERPINSKI_FILTER 1 +#define CONFIG_SMPTEBARS_FILTER 1 +#define CONFIG_SMPTEHDBARS_FILTER 1 +#define CONFIG_TESTSRC_FILTER 1 +#define CONFIG_TESTSRC2_FILTER 1 +#define CONFIG_YUVTESTSRC_FILTER 1 +#define CONFIG_ZONEPLATE_FILTER 1 +#define CONFIG_NULLSINK_FILTER 1 +#define CONFIG_A3DSCOPE_FILTER 1 +#define CONFIG_ABITSCOPE_FILTER 1 +#define CONFIG_ADRAWGRAPH_FILTER 1 +#define CONFIG_AGRAPHMONITOR_FILTER 1 +#define CONFIG_AHISTOGRAM_FILTER 1 +#define CONFIG_APHASEMETER_FILTER 1 +#define CONFIG_AVECTORSCOPE_FILTER 1 +#define CONFIG_CONCAT_FILTER 1 +#define CONFIG_SHOWCQT_FILTER 1 +#define CONFIG_SHOWCWT_FILTER 1 +#define CONFIG_SHOWFREQS_FILTER 1 +#define CONFIG_SHOWSPATIAL_FILTER 1 +#define CONFIG_SHOWSPECTRUM_FILTER 1 +#define CONFIG_SHOWSPECTRUMPIC_FILTER 1 +#define CONFIG_SHOWVOLUME_FILTER 1 +#define CONFIG_SHOWWAVES_FILTER 1 +#define CONFIG_SHOWWAVESPIC_FILTER 1 +#define CONFIG_SPECTRUMSYNTH_FILTER 1 +#define CONFIG_AVSYNCTEST_FILTER 1 +#define CONFIG_AMOVIE_FILTER 1 +#define CONFIG_MOVIE_FILTER 1 +#define CONFIG_AA_DEMUXER 1 +#define CONFIG_AAC_DEMUXER 1 +#define CONFIG_AAX_DEMUXER 1 +#define CONFIG_AC3_DEMUXER 1 +#define CONFIG_AC4_DEMUXER 1 +#define CONFIG_ACE_DEMUXER 1 +#define CONFIG_ACM_DEMUXER 1 +#define CONFIG_ACT_DEMUXER 1 +#define CONFIG_ADF_DEMUXER 1 +#define CONFIG_ADP_DEMUXER 1 +#define CONFIG_ADS_DEMUXER 1 +#define CONFIG_ADX_DEMUXER 1 +#define CONFIG_AEA_DEMUXER 1 +#define CONFIG_AFC_DEMUXER 1 +#define CONFIG_AIFF_DEMUXER 1 +#define CONFIG_AIX_DEMUXER 1 +#define CONFIG_ALP_DEMUXER 1 +#define CONFIG_AMR_DEMUXER 1 +#define CONFIG_AMRNB_DEMUXER 1 +#define CONFIG_AMRWB_DEMUXER 1 +#define CONFIG_ANM_DEMUXER 1 +#define CONFIG_APAC_DEMUXER 1 +#define CONFIG_APC_DEMUXER 1 +#define CONFIG_APE_DEMUXER 1 +#define CONFIG_APM_DEMUXER 1 +#define CONFIG_APNG_DEMUXER 1 +#define CONFIG_APTX_DEMUXER 1 +#define CONFIG_APTX_HD_DEMUXER 1 +#define CONFIG_AQTITLE_DEMUXER 1 +#define CONFIG_ARGO_ASF_DEMUXER 1 +#define CONFIG_ARGO_BRP_DEMUXER 1 +#define CONFIG_ARGO_CVG_DEMUXER 1 +#define CONFIG_ASF_DEMUXER 1 +#define CONFIG_ASF_O_DEMUXER 1 +#define CONFIG_ASS_DEMUXER 1 +#define CONFIG_AST_DEMUXER 1 +#define CONFIG_AU_DEMUXER 1 +#define CONFIG_AV1_DEMUXER 1 +#define CONFIG_AVI_DEMUXER 1 +#define CONFIG_AVISYNTH_DEMUXER 0 +#define CONFIG_AVR_DEMUXER 1 +#define CONFIG_AVS_DEMUXER 1 +#define CONFIG_AVS2_DEMUXER 1 +#define CONFIG_AVS3_DEMUXER 1 +#define CONFIG_BETHSOFTVID_DEMUXER 1 +#define CONFIG_BFI_DEMUXER 1 +#define CONFIG_BINTEXT_DEMUXER 1 +#define CONFIG_BINK_DEMUXER 1 +#define CONFIG_BINKA_DEMUXER 1 +#define CONFIG_BIT_DEMUXER 1 +#define CONFIG_BITPACKED_DEMUXER 1 +#define CONFIG_BMV_DEMUXER 1 +#define CONFIG_BFSTM_DEMUXER 1 +#define CONFIG_BRSTM_DEMUXER 1 +#define CONFIG_BOA_DEMUXER 1 +#define CONFIG_BONK_DEMUXER 1 +#define CONFIG_C93_DEMUXER 1 +#define CONFIG_CAF_DEMUXER 1 +#define CONFIG_CAVSVIDEO_DEMUXER 1 +#define CONFIG_CDG_DEMUXER 1 +#define CONFIG_CDXL_DEMUXER 1 +#define CONFIG_CINE_DEMUXER 1 +#define CONFIG_CODEC2_DEMUXER 1 +#define CONFIG_CODEC2RAW_DEMUXER 1 +#define CONFIG_CONCAT_DEMUXER 1 +#define CONFIG_DASH_DEMUXER 0 +#define CONFIG_DATA_DEMUXER 1 +#define CONFIG_DAUD_DEMUXER 1 +#define CONFIG_DCSTR_DEMUXER 1 +#define CONFIG_DERF_DEMUXER 1 +#define CONFIG_DFA_DEMUXER 1 +#define CONFIG_DFPWM_DEMUXER 1 +#define CONFIG_DHAV_DEMUXER 1 +#define CONFIG_DIRAC_DEMUXER 1 +#define CONFIG_DNXHD_DEMUXER 1 +#define CONFIG_DSF_DEMUXER 1 +#define CONFIG_DSICIN_DEMUXER 1 +#define CONFIG_DSS_DEMUXER 1 +#define CONFIG_DTS_DEMUXER 1 +#define CONFIG_DTSHD_DEMUXER 1 +#define CONFIG_DV_DEMUXER 1 +#define CONFIG_DVBSUB_DEMUXER 1 +#define CONFIG_DVBTXT_DEMUXER 1 +#define CONFIG_DVDVIDEO_DEMUXER 0 +#define CONFIG_DXA_DEMUXER 1 +#define CONFIG_EA_DEMUXER 1 +#define CONFIG_EA_CDATA_DEMUXER 1 +#define CONFIG_EAC3_DEMUXER 1 +#define CONFIG_EPAF_DEMUXER 1 +#define CONFIG_EVC_DEMUXER 1 +#define CONFIG_FFMETADATA_DEMUXER 1 +#define CONFIG_FILMSTRIP_DEMUXER 1 +#define CONFIG_FITS_DEMUXER 1 +#define CONFIG_FLAC_DEMUXER 1 +#define CONFIG_FLIC_DEMUXER 1 +#define CONFIG_FLV_DEMUXER 1 +#define CONFIG_LIVE_FLV_DEMUXER 1 +#define CONFIG_FOURXM_DEMUXER 1 +#define CONFIG_FRM_DEMUXER 1 +#define CONFIG_FSB_DEMUXER 1 +#define CONFIG_FWSE_DEMUXER 1 +#define CONFIG_G722_DEMUXER 1 +#define CONFIG_G723_1_DEMUXER 1 +#define CONFIG_G726_DEMUXER 1 +#define CONFIG_G726LE_DEMUXER 1 +#define CONFIG_G729_DEMUXER 1 +#define CONFIG_GDV_DEMUXER 1 +#define CONFIG_GENH_DEMUXER 1 +#define CONFIG_GIF_DEMUXER 1 +#define CONFIG_GSM_DEMUXER 1 +#define CONFIG_GXF_DEMUXER 1 +#define CONFIG_H261_DEMUXER 1 +#define CONFIG_H263_DEMUXER 1 +#define CONFIG_H264_DEMUXER 1 +#define CONFIG_HCA_DEMUXER 1 +#define CONFIG_HCOM_DEMUXER 1 +#define CONFIG_HEVC_DEMUXER 1 +#define CONFIG_HLS_DEMUXER 1 +#define CONFIG_HNM_DEMUXER 1 +#define CONFIG_IAMF_DEMUXER 1 +#define CONFIG_ICO_DEMUXER 1 +#define CONFIG_IDCIN_DEMUXER 1 +#define CONFIG_IDF_DEMUXER 1 +#define CONFIG_IFF_DEMUXER 1 +#define CONFIG_IFV_DEMUXER 1 +#define CONFIG_ILBC_DEMUXER 1 +#define CONFIG_IMAGE2_DEMUXER 1 +#define CONFIG_IMAGE2PIPE_DEMUXER 1 +#define CONFIG_IMAGE2_ALIAS_PIX_DEMUXER 1 +#define CONFIG_IMAGE2_BRENDER_PIX_DEMUXER 1 +#define CONFIG_IMF_DEMUXER 0 +#define CONFIG_INGENIENT_DEMUXER 1 +#define CONFIG_IPMOVIE_DEMUXER 1 +#define CONFIG_IPU_DEMUXER 1 +#define CONFIG_IRCAM_DEMUXER 1 +#define CONFIG_ISS_DEMUXER 1 +#define CONFIG_IV8_DEMUXER 1 +#define CONFIG_IVF_DEMUXER 1 +#define CONFIG_IVR_DEMUXER 1 +#define CONFIG_JACOSUB_DEMUXER 1 +#define CONFIG_JV_DEMUXER 1 +#define CONFIG_JPEGXL_ANIM_DEMUXER 1 +#define CONFIG_KUX_DEMUXER 1 +#define CONFIG_KVAG_DEMUXER 1 +#define CONFIG_LAF_DEMUXER 1 +#define CONFIG_LC3_DEMUXER 1 +#define CONFIG_LMLM4_DEMUXER 1 +#define CONFIG_LOAS_DEMUXER 1 +#define CONFIG_LUODAT_DEMUXER 1 +#define CONFIG_LRC_DEMUXER 1 +#define CONFIG_LVF_DEMUXER 1 +#define CONFIG_LXF_DEMUXER 1 +#define CONFIG_M4V_DEMUXER 1 +#define CONFIG_MCA_DEMUXER 1 +#define CONFIG_MCC_DEMUXER 1 +#define CONFIG_MATROSKA_DEMUXER 1 +#define CONFIG_MGSTS_DEMUXER 1 +#define CONFIG_MICRODVD_DEMUXER 1 +#define CONFIG_MJPEG_DEMUXER 1 +#define CONFIG_MJPEG_2000_DEMUXER 1 +#define CONFIG_MLP_DEMUXER 1 +#define CONFIG_MLV_DEMUXER 1 +#define CONFIG_MM_DEMUXER 1 +#define CONFIG_MMF_DEMUXER 1 +#define CONFIG_MODS_DEMUXER 1 +#define CONFIG_MOFLEX_DEMUXER 1 +#define CONFIG_MOV_DEMUXER 1 +#define CONFIG_MP3_DEMUXER 1 +#define CONFIG_MPC_DEMUXER 1 +#define CONFIG_MPC8_DEMUXER 1 +#define CONFIG_MPEGPS_DEMUXER 1 +#define CONFIG_MPEGTS_DEMUXER 1 +#define CONFIG_MPEGTSRAW_DEMUXER 1 +#define CONFIG_MPEGVIDEO_DEMUXER 1 +#define CONFIG_MPJPEG_DEMUXER 1 +#define CONFIG_MPL2_DEMUXER 1 +#define CONFIG_MPSUB_DEMUXER 1 +#define CONFIG_MSF_DEMUXER 1 +#define CONFIG_MSNWC_TCP_DEMUXER 1 +#define CONFIG_MSP_DEMUXER 1 +#define CONFIG_MTAF_DEMUXER 1 +#define CONFIG_MTV_DEMUXER 1 +#define CONFIG_MUSX_DEMUXER 1 +#define CONFIG_MV_DEMUXER 1 +#define CONFIG_MVI_DEMUXER 1 +#define CONFIG_MXF_DEMUXER 1 +#define CONFIG_MXG_DEMUXER 1 +#define CONFIG_NC_DEMUXER 1 +#define CONFIG_NISTSPHERE_DEMUXER 1 +#define CONFIG_NSP_DEMUXER 1 +#define CONFIG_NSV_DEMUXER 1 +#define CONFIG_NUT_DEMUXER 1 +#define CONFIG_NUV_DEMUXER 1 +#define CONFIG_OBU_DEMUXER 1 +#define CONFIG_OGG_DEMUXER 1 +#define CONFIG_OMA_DEMUXER 1 +#define CONFIG_OSQ_DEMUXER 1 +#define CONFIG_PAF_DEMUXER 1 +#define CONFIG_PCM_ALAW_DEMUXER 1 +#define CONFIG_PCM_MULAW_DEMUXER 1 +#define CONFIG_PCM_VIDC_DEMUXER 1 +#define CONFIG_PCM_F64BE_DEMUXER 1 +#define CONFIG_PCM_F64LE_DEMUXER 1 +#define CONFIG_PCM_F32BE_DEMUXER 1 +#define CONFIG_PCM_F32LE_DEMUXER 1 +#define CONFIG_PCM_S32BE_DEMUXER 1 +#define CONFIG_PCM_S32LE_DEMUXER 1 +#define CONFIG_PCM_S24BE_DEMUXER 1 +#define CONFIG_PCM_S24LE_DEMUXER 1 +#define CONFIG_PCM_S16BE_DEMUXER 1 +#define CONFIG_PCM_S16LE_DEMUXER 1 +#define CONFIG_PCM_S8_DEMUXER 1 +#define CONFIG_PCM_U32BE_DEMUXER 1 +#define CONFIG_PCM_U32LE_DEMUXER 1 +#define CONFIG_PCM_U24BE_DEMUXER 1 +#define CONFIG_PCM_U24LE_DEMUXER 1 +#define CONFIG_PCM_U16BE_DEMUXER 1 +#define CONFIG_PCM_U16LE_DEMUXER 1 +#define CONFIG_PCM_U8_DEMUXER 1 +#define CONFIG_PDV_DEMUXER 1 +#define CONFIG_PJS_DEMUXER 1 +#define CONFIG_PMP_DEMUXER 1 +#define CONFIG_PP_BNK_DEMUXER 1 +#define CONFIG_PVA_DEMUXER 1 +#define CONFIG_PVF_DEMUXER 1 +#define CONFIG_QCP_DEMUXER 1 +#define CONFIG_QOA_DEMUXER 1 +#define CONFIG_R3D_DEMUXER 1 +#define CONFIG_RAWVIDEO_DEMUXER 1 +#define CONFIG_RCWT_DEMUXER 1 +#define CONFIG_REALTEXT_DEMUXER 1 +#define CONFIG_REDSPARK_DEMUXER 1 +#define CONFIG_RKA_DEMUXER 1 +#define CONFIG_RL2_DEMUXER 1 +#define CONFIG_RM_DEMUXER 1 +#define CONFIG_ROQ_DEMUXER 1 +#define CONFIG_RPL_DEMUXER 1 +#define CONFIG_RSD_DEMUXER 1 +#define CONFIG_RSO_DEMUXER 1 +#define CONFIG_RTP_DEMUXER 1 +#define CONFIG_RTSP_DEMUXER 1 +#define CONFIG_S337M_DEMUXER 1 +#define CONFIG_SAMI_DEMUXER 1 +#define CONFIG_SAP_DEMUXER 1 +#define CONFIG_SBC_DEMUXER 1 +#define CONFIG_SBG_DEMUXER 1 +#define CONFIG_SCC_DEMUXER 1 +#define CONFIG_SCD_DEMUXER 1 +#define CONFIG_SDNS_DEMUXER 1 +#define CONFIG_SDP_DEMUXER 1 +#define CONFIG_SDR2_DEMUXER 1 +#define CONFIG_SDS_DEMUXER 1 +#define CONFIG_SDX_DEMUXER 1 +#define CONFIG_SEGAFILM_DEMUXER 1 +#define CONFIG_SER_DEMUXER 1 +#define CONFIG_SGA_DEMUXER 1 +#define CONFIG_SHORTEN_DEMUXER 1 +#define CONFIG_SIFF_DEMUXER 1 +#define CONFIG_SIMBIOSIS_IMX_DEMUXER 1 +#define CONFIG_SLN_DEMUXER 1 +#define CONFIG_SMACKER_DEMUXER 1 +#define CONFIG_SMJPEG_DEMUXER 1 +#define CONFIG_SMUSH_DEMUXER 1 +#define CONFIG_SOL_DEMUXER 1 +#define CONFIG_SOX_DEMUXER 1 +#define CONFIG_SPDIF_DEMUXER 1 +#define CONFIG_SRT_DEMUXER 1 +#define CONFIG_STR_DEMUXER 1 +#define CONFIG_STL_DEMUXER 1 +#define CONFIG_SUBVIEWER1_DEMUXER 1 +#define CONFIG_SUBVIEWER_DEMUXER 1 +#define CONFIG_SUP_DEMUXER 1 +#define CONFIG_SVAG_DEMUXER 1 +#define CONFIG_SVS_DEMUXER 1 +#define CONFIG_SWF_DEMUXER 1 +#define CONFIG_TAK_DEMUXER 1 +#define CONFIG_TEDCAPTIONS_DEMUXER 1 +#define CONFIG_THP_DEMUXER 1 +#define CONFIG_THREEDOSTR_DEMUXER 1 +#define CONFIG_TIERTEXSEQ_DEMUXER 1 +#define CONFIG_TMV_DEMUXER 1 +#define CONFIG_TRUEHD_DEMUXER 1 +#define CONFIG_TTA_DEMUXER 1 +#define CONFIG_TXD_DEMUXER 1 +#define CONFIG_TTY_DEMUXER 1 +#define CONFIG_TY_DEMUXER 1 +#define CONFIG_USM_DEMUXER 1 +#define CONFIG_V210_DEMUXER 1 +#define CONFIG_V210X_DEMUXER 1 +#define CONFIG_VAG_DEMUXER 1 +#define CONFIG_VC1_DEMUXER 1 +#define CONFIG_VC1T_DEMUXER 1 +#define CONFIG_VIVIDAS_DEMUXER 1 +#define CONFIG_VIVO_DEMUXER 1 +#define CONFIG_VMD_DEMUXER 1 +#define CONFIG_VOBSUB_DEMUXER 1 +#define CONFIG_VOC_DEMUXER 1 +#define CONFIG_VPK_DEMUXER 1 +#define CONFIG_VPLAYER_DEMUXER 1 +#define CONFIG_VQF_DEMUXER 1 +#define CONFIG_VVC_DEMUXER 1 +#define CONFIG_W64_DEMUXER 1 +#define CONFIG_WADY_DEMUXER 1 +#define CONFIG_WAVARC_DEMUXER 1 +#define CONFIG_WAV_DEMUXER 1 +#define CONFIG_WC3_DEMUXER 1 +#define CONFIG_WEBM_DASH_MANIFEST_DEMUXER 1 +#define CONFIG_WEBVTT_DEMUXER 1 +#define CONFIG_WSAUD_DEMUXER 1 +#define CONFIG_WSD_DEMUXER 1 +#define CONFIG_WSVQA_DEMUXER 1 +#define CONFIG_WTV_DEMUXER 1 +#define CONFIG_WVE_DEMUXER 1 +#define CONFIG_WV_DEMUXER 1 +#define CONFIG_XA_DEMUXER 1 +#define CONFIG_XBIN_DEMUXER 1 +#define CONFIG_XMD_DEMUXER 1 +#define CONFIG_XMV_DEMUXER 1 +#define CONFIG_XVAG_DEMUXER 1 +#define CONFIG_XWMA_DEMUXER 1 +#define CONFIG_YOP_DEMUXER 1 +#define CONFIG_YUV4MPEGPIPE_DEMUXER 1 +#define CONFIG_IMAGE_BMP_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_CRI_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_DDS_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_DPX_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_EXR_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_GEM_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_GIF_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_HDR_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_J2K_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_JPEG_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_JPEGLS_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_JPEGXL_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PAM_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PBM_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PCX_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PFM_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PGMYUV_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PGM_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PGX_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PHM_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PHOTOCD_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PICTOR_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PNG_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PPM_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_PSD_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_QDRAW_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_QOI_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_SGI_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_SVG_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_SUNRAST_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_TIFF_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_VBN_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_WEBP_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_XBM_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_XPM_PIPE_DEMUXER 1 +#define CONFIG_IMAGE_XWD_PIPE_DEMUXER 1 +#define CONFIG_LIBGME_DEMUXER 0 +#define CONFIG_LIBMODPLUG_DEMUXER 0 +#define CONFIG_LIBOPENMPT_DEMUXER 0 +#define CONFIG_VAPOURSYNTH_DEMUXER 0 +#define CONFIG_A64_MUXER 1 +#define CONFIG_AC3_MUXER 1 +#define CONFIG_AC4_MUXER 1 +#define CONFIG_ADTS_MUXER 1 +#define CONFIG_ADX_MUXER 1 +#define CONFIG_AEA_MUXER 1 +#define CONFIG_AIFF_MUXER 1 +#define CONFIG_ALP_MUXER 1 +#define CONFIG_AMR_MUXER 1 +#define CONFIG_AMV_MUXER 1 +#define CONFIG_APM_MUXER 1 +#define CONFIG_APNG_MUXER 1 +#define CONFIG_APTX_MUXER 1 +#define CONFIG_APTX_HD_MUXER 1 +#define CONFIG_ARGO_ASF_MUXER 1 +#define CONFIG_ARGO_CVG_MUXER 1 +#define CONFIG_ASF_MUXER 1 +#define CONFIG_ASS_MUXER 1 +#define CONFIG_AST_MUXER 1 +#define CONFIG_ASF_STREAM_MUXER 1 +#define CONFIG_AU_MUXER 1 +#define CONFIG_AVI_MUXER 1 +#define CONFIG_AVIF_MUXER 1 +#define CONFIG_AVM2_MUXER 1 +#define CONFIG_AVS2_MUXER 1 +#define CONFIG_AVS3_MUXER 1 +#define CONFIG_BIT_MUXER 1 +#define CONFIG_CAF_MUXER 1 +#define CONFIG_CAVSVIDEO_MUXER 1 +#define CONFIG_CODEC2_MUXER 1 +#define CONFIG_CODEC2RAW_MUXER 1 +#define CONFIG_CRC_MUXER 1 +#define CONFIG_DASH_MUXER 1 +#define CONFIG_DATA_MUXER 1 +#define CONFIG_DAUD_MUXER 1 +#define CONFIG_DFPWM_MUXER 1 +#define CONFIG_DIRAC_MUXER 1 +#define CONFIG_DNXHD_MUXER 1 +#define CONFIG_DTS_MUXER 1 +#define CONFIG_DV_MUXER 1 +#define CONFIG_EAC3_MUXER 1 +#define CONFIG_EVC_MUXER 1 +#define CONFIG_F4V_MUXER 1 +#define CONFIG_FFMETADATA_MUXER 1 +#define CONFIG_FIFO_MUXER 1 +#define CONFIG_FILMSTRIP_MUXER 1 +#define CONFIG_FITS_MUXER 1 +#define CONFIG_FLAC_MUXER 1 +#define CONFIG_FLV_MUXER 1 +#define CONFIG_FRAMECRC_MUXER 1 +#define CONFIG_FRAMEHASH_MUXER 1 +#define CONFIG_FRAMEMD5_MUXER 1 +#define CONFIG_G722_MUXER 1 +#define CONFIG_G723_1_MUXER 1 +#define CONFIG_G726_MUXER 1 +#define CONFIG_G726LE_MUXER 1 +#define CONFIG_GIF_MUXER 1 +#define CONFIG_GSM_MUXER 1 +#define CONFIG_GXF_MUXER 1 +#define CONFIG_H261_MUXER 1 +#define CONFIG_H263_MUXER 1 +#define CONFIG_H264_MUXER 1 +#define CONFIG_HASH_MUXER 1 +#define CONFIG_HDS_MUXER 1 +#define CONFIG_HEVC_MUXER 1 +#define CONFIG_HLS_MUXER 1 +#define CONFIG_IAMF_MUXER 1 +#define CONFIG_ICO_MUXER 1 +#define CONFIG_ILBC_MUXER 1 +#define CONFIG_IMAGE2_MUXER 1 +#define CONFIG_IMAGE2PIPE_MUXER 1 +#define CONFIG_IPOD_MUXER 1 +#define CONFIG_IRCAM_MUXER 1 +#define CONFIG_ISMV_MUXER 1 +#define CONFIG_IVF_MUXER 1 +#define CONFIG_JACOSUB_MUXER 1 +#define CONFIG_KVAG_MUXER 1 +#define CONFIG_LATM_MUXER 1 +#define CONFIG_LC3_MUXER 1 +#define CONFIG_LRC_MUXER 1 +#define CONFIG_M4V_MUXER 1 +#define CONFIG_MD5_MUXER 1 +#define CONFIG_MATROSKA_MUXER 1 +#define CONFIG_MATROSKA_AUDIO_MUXER 1 +#define CONFIG_MICRODVD_MUXER 1 +#define CONFIG_MJPEG_MUXER 1 +#define CONFIG_MLP_MUXER 1 +#define CONFIG_MMF_MUXER 1 +#define CONFIG_MOV_MUXER 1 +#define CONFIG_MP2_MUXER 1 +#define CONFIG_MP3_MUXER 1 +#define CONFIG_MP4_MUXER 1 +#define CONFIG_MPEG1SYSTEM_MUXER 1 +#define CONFIG_MPEG1VCD_MUXER 1 +#define CONFIG_MPEG1VIDEO_MUXER 1 +#define CONFIG_MPEG2DVD_MUXER 1 +#define CONFIG_MPEG2SVCD_MUXER 1 +#define CONFIG_MPEG2VIDEO_MUXER 1 +#define CONFIG_MPEG2VOB_MUXER 1 +#define CONFIG_MPEGTS_MUXER 1 +#define CONFIG_MPJPEG_MUXER 1 +#define CONFIG_MXF_MUXER 1 +#define CONFIG_MXF_D10_MUXER 1 +#define CONFIG_MXF_OPATOM_MUXER 1 +#define CONFIG_NULL_MUXER 1 +#define CONFIG_NUT_MUXER 1 +#define CONFIG_OBU_MUXER 1 +#define CONFIG_OGA_MUXER 1 +#define CONFIG_OGG_MUXER 1 +#define CONFIG_OGV_MUXER 1 +#define CONFIG_OMA_MUXER 1 +#define CONFIG_OPUS_MUXER 1 +#define CONFIG_PCM_ALAW_MUXER 1 +#define CONFIG_PCM_MULAW_MUXER 1 +#define CONFIG_PCM_VIDC_MUXER 1 +#define CONFIG_PCM_F64BE_MUXER 1 +#define CONFIG_PCM_F64LE_MUXER 1 +#define CONFIG_PCM_F32BE_MUXER 1 +#define CONFIG_PCM_F32LE_MUXER 1 +#define CONFIG_PCM_S32BE_MUXER 1 +#define CONFIG_PCM_S32LE_MUXER 1 +#define CONFIG_PCM_S24BE_MUXER 1 +#define CONFIG_PCM_S24LE_MUXER 1 +#define CONFIG_PCM_S16BE_MUXER 1 +#define CONFIG_PCM_S16LE_MUXER 1 +#define CONFIG_PCM_S8_MUXER 1 +#define CONFIG_PCM_U32BE_MUXER 1 +#define CONFIG_PCM_U32LE_MUXER 1 +#define CONFIG_PCM_U24BE_MUXER 1 +#define CONFIG_PCM_U24LE_MUXER 1 +#define CONFIG_PCM_U16BE_MUXER 1 +#define CONFIG_PCM_U16LE_MUXER 1 +#define CONFIG_PCM_U8_MUXER 1 +#define CONFIG_PSP_MUXER 1 +#define CONFIG_RAWVIDEO_MUXER 1 +#define CONFIG_RCWT_MUXER 1 +#define CONFIG_RM_MUXER 1 +#define CONFIG_ROQ_MUXER 1 +#define CONFIG_RSO_MUXER 1 +#define CONFIG_RTP_MUXER 1 +#define CONFIG_RTP_MPEGTS_MUXER 1 +#define CONFIG_RTSP_MUXER 1 +#define CONFIG_SAP_MUXER 1 +#define CONFIG_SBC_MUXER 1 +#define CONFIG_SCC_MUXER 1 +#define CONFIG_SEGAFILM_MUXER 1 +#define CONFIG_SEGMENT_MUXER 1 +#define CONFIG_STREAM_SEGMENT_MUXER 1 +#define CONFIG_SMJPEG_MUXER 1 +#define CONFIG_SMOOTHSTREAMING_MUXER 1 +#define CONFIG_SOX_MUXER 1 +#define CONFIG_SPX_MUXER 1 +#define CONFIG_SPDIF_MUXER 1 +#define CONFIG_SRT_MUXER 1 +#define CONFIG_STREAMHASH_MUXER 1 +#define CONFIG_SUP_MUXER 1 +#define CONFIG_SWF_MUXER 1 +#define CONFIG_TEE_MUXER 1 +#define CONFIG_TG2_MUXER 1 +#define CONFIG_TGP_MUXER 1 +#define CONFIG_MKVTIMESTAMP_V2_MUXER 1 +#define CONFIG_TRUEHD_MUXER 1 +#define CONFIG_TTA_MUXER 1 +#define CONFIG_TTML_MUXER 1 +#define CONFIG_UNCODEDFRAMECRC_MUXER 1 +#define CONFIG_VC1_MUXER 1 +#define CONFIG_VC1T_MUXER 1 +#define CONFIG_VOC_MUXER 1 +#define CONFIG_VVC_MUXER 1 +#define CONFIG_W64_MUXER 1 +#define CONFIG_WAV_MUXER 1 +#define CONFIG_WEBM_MUXER 1 +#define CONFIG_WEBM_DASH_MANIFEST_MUXER 1 +#define CONFIG_WEBM_CHUNK_MUXER 1 +#define CONFIG_WEBP_MUXER 1 +#define CONFIG_WEBVTT_MUXER 1 +#define CONFIG_WSAUD_MUXER 1 +#define CONFIG_WTV_MUXER 1 +#define CONFIG_WV_MUXER 1 +#define CONFIG_YUV4MPEGPIPE_MUXER 1 +#define CONFIG_CHROMAPRINT_MUXER 0 +#define CONFIG_ANDROID_CONTENT_PROTOCOL 0 +#define CONFIG_ASYNC_PROTOCOL 1 +#define CONFIG_BLURAY_PROTOCOL 0 +#define CONFIG_CACHE_PROTOCOL 1 +#define CONFIG_CONCAT_PROTOCOL 1 +#define CONFIG_CONCATF_PROTOCOL 1 +#define CONFIG_CRYPTO_PROTOCOL 1 +#define CONFIG_DATA_PROTOCOL 1 +#define CONFIG_FD_PROTOCOL 1 +#define CONFIG_FFRTMPCRYPT_PROTOCOL 0 +#define CONFIG_FFRTMPHTTP_PROTOCOL 1 +#define CONFIG_FILE_PROTOCOL 1 +#define CONFIG_FTP_PROTOCOL 1 +#define CONFIG_GOPHER_PROTOCOL 1 +#define CONFIG_GOPHERS_PROTOCOL 0 +#define CONFIG_HLS_PROTOCOL 1 +#define CONFIG_HTTP_PROTOCOL 1 +#define CONFIG_HTTPPROXY_PROTOCOL 1 +#define CONFIG_HTTPS_PROTOCOL 0 +#define CONFIG_ICECAST_PROTOCOL 1 +#define CONFIG_MMSH_PROTOCOL 1 +#define CONFIG_MMST_PROTOCOL 1 +#define CONFIG_MD5_PROTOCOL 1 +#define CONFIG_PIPE_PROTOCOL 1 +#define CONFIG_PROMPEG_PROTOCOL 1 +#define CONFIG_RTMP_PROTOCOL 1 +#define CONFIG_RTMPE_PROTOCOL 0 +#define CONFIG_RTMPS_PROTOCOL 0 +#define CONFIG_RTMPT_PROTOCOL 1 +#define CONFIG_RTMPTE_PROTOCOL 0 +#define CONFIG_RTMPTS_PROTOCOL 0 +#define CONFIG_RTP_PROTOCOL 1 +#define CONFIG_SCTP_PROTOCOL 0 +#define CONFIG_SRTP_PROTOCOL 1 +#define CONFIG_SUBFILE_PROTOCOL 1 +#define CONFIG_TEE_PROTOCOL 1 +#define CONFIG_TCP_PROTOCOL 1 +#define CONFIG_TLS_PROTOCOL 0 +#define CONFIG_UDP_PROTOCOL 1 +#define CONFIG_UDPLITE_PROTOCOL 1 +#define CONFIG_UNIX_PROTOCOL 1 +#define CONFIG_LIBAMQP_PROTOCOL 0 +#define CONFIG_LIBRIST_PROTOCOL 0 +#define CONFIG_LIBRTMP_PROTOCOL 0 +#define CONFIG_LIBRTMPE_PROTOCOL 0 +#define CONFIG_LIBRTMPS_PROTOCOL 0 +#define CONFIG_LIBRTMPT_PROTOCOL 0 +#define CONFIG_LIBRTMPTE_PROTOCOL 0 +#define CONFIG_LIBSRT_PROTOCOL 0 +#define CONFIG_LIBSSH_PROTOCOL 0 +#define CONFIG_LIBSMBCLIENT_PROTOCOL 0 +#define CONFIG_LIBZMQ_PROTOCOL 0 +#define CONFIG_IPFS_GATEWAY_PROTOCOL 0 +#define CONFIG_IPNS_GATEWAY_PROTOCOL 0 +#endif /* FFMPEG_CONFIG_COMPONENTS_H */ diff --git a/libffmpeg-avcodec/buildfile b/libffmpeg-avcodec/buildfile new file mode 100644 index 0000000..cbe7dd4 --- /dev/null +++ b/libffmpeg-avcodec/buildfile @@ -0,0 +1,144 @@ +intf_libs = # Interface dependencies. +impl_libs = # Implementation dependencies. +#import _libs += libhello%lib{hello} + +lib{ffmpeg-avcodec}: h{libavcodec/ac3_parser \ + libavcodec/adts_parser \ + libavcodec/avcodec \ + libavcodec/avdct \ + libavcodec/avfft \ + libavcodec/bsf \ + libavcodec/codec \ + libavcodec/codec_desc \ + libavcodec/codec_id \ + libavcodec/codec_par \ + libavcodec/d3d11va \ + libavcodec/defs \ + libavcodec/dirac \ + libavcodec/dv_profile \ + libavcodec/dxva2 \ + libavcodec/jni \ + libavcodec/mediacodec \ + libavcodec/packet \ + libavcodec/qsv \ + libavcodec/vdpau \ + libavcodec/version \ + libavcodec/version_major \ + libavcodec/videotoolbox \ + libavcodec/vorbis_parser \ + } \ + c{libavcodec/ac3_parser \ + libavcodec/adts_parser \ + libavcodec/allcodecs \ + libavcodec/avcodec \ + libavcodec/avdct \ + libavcodec/avfft \ + libavcodec/packet \ + libavcodec/bsf \ + libavcodec/codec_desc \ + libavcodec/codec_par \ + libavcodec/d3d11va \ + libavcodec/decode \ + libavcodec/dirac \ + libavcodec/dv_profile \ + libavcodec/encode \ + libavcodec/get_buffer \ + libavcodec/imgconvert \ + libavcodec/jni \ + libavcodec/mathtables \ + libavcodec/mediacodec \ + libavcodec/mpeg12framerate \ + libavcodec/options \ + libavcodec/parser \ + libavcodec/parsers \ + libavcodec/profiles \ + libavcodec/qsv_api \ + libavcodec/raw \ + libavcodec/refstruct \ + libavcodec/threadprogress \ + libavcodec/utils \ + libavcodec/version \ + libavcodec/vlc \ + libavcodec/vorbis_parser \ + libavcodec/xiph \ + } \ + $impl_libs $intf_libs + +# Build options. +# +c.poptions =+ "-I$out_root" "-I$src_root" "-I$src_root/libffmpeg-avcodec" "-I$src_root/libffmpeg-avcodec/libavuti" + +c.coptions =+ -D_ISOC11_SOURCE +c.coptions =+ -D_FILE_OFFSET_BITS=64 +c.coptions =+ -D_LARGEFILE_SOURCE +c.coptions =+ -D_POSIX_C_SOURCE=200112 +c.coptions =+ -D_XOPEN_SOURCE=600 +c.coptions =+ -DHAVE_AV_CONFIG_H +c.coptions =+ -DBUILDING_avfilter +c.coptions =+ -std=c17 +c.coptions =+ -fomit-frame-pointer +c.coptions =+ -pthread +c.coptions =+ -g +c.coptions =+ -Wdeclaration-after-statement +c.coptions =+ -Wall +c.coptions =+ -Wdisabled-optimization +c.coptions =+ -Wpointer-arith +c.coptions =+ -Wredundant-decls +c.coptions =+ -Wwrite-strings +c.coptions =+ -Wtype-limits +c.coptions =+ -Wundef +c.coptions =+ -Wmissing-prototypes +c.coptions =+ -Wstrict-prototypes +c.coptions =+ -Wempty-body +c.coptions =+ -Wno-parentheses +c.coptions =+ -Wno-switch +c.coptions =+ -Wno-format-zero-length +c.coptions =+ -Wno-pointer-sign +c.coptions =+ -Wno-unused-const-variable +c.coptions =+ -Wno-bool-operation +c.coptions =+ -Wno-char-subscripts +c.coptions =+ -O3 +c.coptions =+ -fno-math-errno +c.coptions =+ -fno-signed-zeros +c.coptions =+ -fno-tree-vectorize +c.coptions =+ -Werror=format-security +c.coptions =+ -Werror=implicit-function-declaration +c.coptions =+ -Werror=missing-prototypes +c.coptions =+ -Werror=return-type +c.coptions =+ -Werror=vla +c.coptions =+ -Wformat +c.coptions =+ -fdiagnostics-color=auto +c.coptions =+ -Wno-maybe-uninitialized + +#obja{*}: c.poptions += -DLIBFFMPEG_STATIC_BUILD +#objs{*}: c.poptions += -DLIBFFMPEG_SHARED_BUILD + + +# Export options. +# +lib{ffmpeg-avcodec}: +{ + c.export.poptions = "-I$out_root" "-I$src_root" + c.export.libs = $intf_libs +} + +#liba{ffmpeg}: c.export.poptions += -DLIBFFMPEG_STATIC +#libs{ffmpeg}: c.export.poptions += -DLIBFFMPEG_SHARED + +# For pre-releases use the complete version to make sure they cannot +# be used in place of another pre-release or the final version. See +# the version module for details on the version.* variable values. +# +if $version.pre_release + lib{ffmpeg-avcodec}: bin.lib.version = "-$version.project_id" +else + lib{ffmpeg-avcodec}: bin.lib.version = "-$version.major.$version.minor" + +# Install into the libffmpeg/ subdirectory of, say, /usr/include/ +# recreating subdirectories. +# +{h}{*}: +{ + install = include/libffmpeg/ + install.subdirs = true +} diff --git a/libffmpeg-avcodec/compat b/libffmpeg-avcodec/compat new file mode 120000 index 0000000..82bf8c5 --- /dev/null +++ b/libffmpeg-avcodec/compat @@ -0,0 +1 @@ +../upstream/compat/ \ No newline at end of file diff --git a/libffmpeg-avcodec/headers b/libffmpeg-avcodec/headers new file mode 100644 index 0000000..44399b8 --- /dev/null +++ b/libffmpeg-avcodec/headers @@ -0,0 +1,567 @@ +libavcodec/a64colors.h +libavcodec/a64tables.h +libavcodec/aac_ac3_parser.h +libavcodec/aaccoder_trellis.h +libavcodec/aaccoder_twoloop.h +libavcodec/aac_defines.h +libavcodec/aacencdsp.h +libavcodec/aacenc.h +libavcodec/aacenc_is.h +libavcodec/aacenc_ltp.h +libavcodec/aacenc_pred.h +libavcodec/aacenc_quantization.h +libavcodec/aacenc_quantization_misc.h +libavcodec/aacenctab.h +libavcodec/aacenc_tns.h +libavcodec/aacenc_utils.h +libavcodec/aac.h +libavcodec/aacpsdsp.h +libavcodec/aacps_fixed_tablegen.h +libavcodec/aacps.h +libavcodec/aacps_tablegen.h +libavcodec/aacsbrdata.h +libavcodec/aacsbr.h +libavcodec/aactab.h +libavcodec/aandcttab.h +libavcodec/ac3_channel_layout_tab.h +libavcodec/ac3dec_data.h +libavcodec/ac3dec.h +libavcodec/ac3defs.h +libavcodec/ac3dsp.h +libavcodec/ac3enc.h +libavcodec/ac3.h +libavcodec/ac3_parser.h +libavcodec/ac3_parser_internal.h +libavcodec/ac3tab.h +libavcodec/acelp_filters.h +libavcodec/acelp_pitch_delay.h +libavcodec/acelp_vectors.h +libavcodec/adpcm_data.h +libavcodec/adpcm.h +libavcodec/adts_header.h +libavcodec/adts_parser.h +libavcodec/adx.h +libavcodec/alac_data.h +libavcodec/alacdsp.h +libavcodec/amfenc.h +libavcodec/amr.h +libavcodec/amrnbdata.h +libavcodec/amrwbdata.h +libavcodec/aom_film_grain.h +libavcodec/apng.h +libavcodec/aptx.h +libavcodec/ass.h +libavcodec/ass_split.h +libavcodec/asv.h +libavcodec/atrac1data.h +libavcodec/atrac3data.h +libavcodec/atrac3plus_data.h +libavcodec/atrac3plus.h +libavcodec/atrac9tab.h +libavcodec/atrac.h +libavcodec/atsc_a53.h +libavcodec/audiodsp.h +libavcodec/audio_frame_queue.h +libavcodec/av1dec.h +libavcodec/av1.h +libavcodec/av1_levels.h +libavcodec/av1_parse.h +libavcodec/avcodec.h +libavcodec/avcodec_internal.h +libavcodec/avdct.h +libavcodec/avfft.h +libavcodec/avs2.h +libavcodec/avs3.h +libavcodec/bethsoftvideo.h +libavcodec/bgmc.h +libavcodec/binkdata.h +libavcodec/binkdsp.h +libavcodec/bintext.h +libavcodec/bitstream.h +libavcodec/bitstream_template.h +libavcodec/blockdsp.h +libavcodec/bmp.h +libavcodec/bsf.h +libavcodec/bsf_internal.h +libavcodec/bswapdsp.h +libavcodec/bytestream.h +libavcodec/cabac_functions.h +libavcodec/cabac.h +libavcodec/canopus.h +libavcodec/cavsdsp.h +libavcodec/cavs.h +libavcodec/cbrt_data.h +libavcodec/cbrt_tablegen.h +libavcodec/cbs_av1.h +libavcodec/cbs_bsf.h +libavcodec/cbs.h +libavcodec/cbs_h2645.h +libavcodec/cbs_h264.h +libavcodec/cbs_h265.h +libavcodec/cbs_h266.h +libavcodec/cbs_internal.h +libavcodec/cbs_jpeg.h +libavcodec/cbs_mpeg2.h +libavcodec/cbs_sei.h +libavcodec/cbs_vp8.h +libavcodec/cbs_vp9.h +libavcodec/celp_filters.h +libavcodec/celp_math.h +libavcodec/cfhddsp.h +libavcodec/cfhdencdsp.h +libavcodec/cfhd.h +libavcodec/cga_data.h +libavcodec/clearvideodata.h +libavcodec/codec2utils.h +libavcodec/codec_desc.h +libavcodec/codec.h +libavcodec/codec_id.h +libavcodec/codec_internal.h +libavcodec/codec_par.h +libavcodec/cookdata.h +libavcodec/copy_block.h +libavcodec/d3d11va.h +libavcodec/d3d12va_decode.h +libavcodec/dcaadpcm.h +libavcodec/dca_core.h +libavcodec/dcadata.h +libavcodec/dcadct.h +libavcodec/dcadec.h +libavcodec/dcadsp.h +libavcodec/dcaenc.h +libavcodec/dca_exss.h +libavcodec/dca.h +libavcodec/dcahuff.h +libavcodec/dca_lbr.h +libavcodec/dcamath.h +libavcodec/dca_sample_rate_tab.h +libavcodec/dca_syncwords.h +libavcodec/dca_xll.h +libavcodec/dct32.h +libavcodec/dct.h +libavcodec/dctref.h +libavcodec/decode.h +libavcodec/defs.h +libavcodec/dirac_arith.h +libavcodec/diracdsp.h +libavcodec/dirac_dwt.h +libavcodec/dirac.h +libavcodec/diractab.h +libavcodec/dirac_vlc.h +libavcodec/dnxhddata.h +libavcodec/dnxhdenc.h +libavcodec/dolby_e.h +libavcodec/dovi_rpu.h +libavcodec/dsd.h +libavcodec/dvaudio.h +libavcodec/dvbtxt.h +libavcodec/dvdata.h +libavcodec/dvdsub.h +libavcodec/dv.h +libavcodec/dv_internal.h +libavcodec/dv_profile.h +libavcodec/dv_profile_internal.h +libavcodec/dv_tablegen.h +libavcodec/dxva2.h +libavcodec/dxva2_internal.h +libavcodec/dxv.h +libavcodec/dynamic_hdr_vivid.h +libavcodec/eac3_data.h +libavcodec/eac3enc.h +libavcodec/eaidct.h +libavcodec/elbg.h +libavcodec/elsdec.h +libavcodec/encode.h +libavcodec/error_resilience.h +libavcodec/evc.h +libavcodec/evc_parse.h +libavcodec/evc_ps.h +libavcodec/evrcdata.h +libavcodec/exif.h +libavcodec/exrdsp.h +libavcodec/faandct.h +libavcodec/faanidct.h +libavcodec/faxcompr.h +libavcodec/fdctdsp.h +libavcodec/ffjni.h +libavcodec/fflcms2.h +libavcodec/ffv1.h +libavcodec/fits.h +libavcodec/flacdata.h +libavcodec/flacdsp.h +libavcodec/flacencdsp.h +libavcodec/flac.h +libavcodec/flac_parse.h +libavcodec/flvdec.h +libavcodec/flvenc.h +libavcodec/fmtconvert.h +libavcodec/frame_thread_encoder.h +libavcodec/g722dsp.h +libavcodec/g722.h +libavcodec/g723_1.h +libavcodec/g729data.h +libavcodec/g729.h +libavcodec/g729postfilter.h +libavcodec/get_bits.h +libavcodec/gif.h +libavcodec/golomb.h +libavcodec/gsmdec_data.h +libavcodec/gsm.h +libavcodec/h261enc.h +libavcodec/h261.h +libavcodec/h263data.h +libavcodec/h263dec.h +libavcodec/h263dsp.h +libavcodec/h263enc.h +libavcodec/h263.h +libavcodec/h2645data.h +libavcodec/h2645_parse.h +libavcodec/h2645_sei.h +libavcodec/h2645_vui.h +libavcodec/h264chroma.h +libavcodec/h264data.h +libavcodec/h264dec.h +libavcodec/h264dsp.h +libavcodec/h264.h +libavcodec/h264idct.h +libavcodec/h264_levels.h +libavcodec/h264_mvpred.h +libavcodec/h264_parse.h +libavcodec/h264pred.h +libavcodec/h264_ps.h +libavcodec/h264qpel.h +libavcodec/h264_sei.h +libavcodec/h265_profile_level.h +libavcodec/h274.h +libavcodec/hap.h +libavcodec/hca_data.h +libavcodec/hpeldsp.h +libavcodec/hq_hqadata.h +libavcodec/hq_hqadsp.h +libavcodec/hqxdsp.h +libavcodec/hqx.h +libavcodec/htmlsubtitles.h +libavcodec/huffman.h +libavcodec/huffyuvdsp.h +libavcodec/huffyuvencdsp.h +libavcodec/huffyuv.h +libavcodec/hwaccel_internal.h +libavcodec/hwaccels.h +libavcodec/hwconfig.h +libavcodec/idctdsp.h +libavcodec/iirfilter.h +libavcodec/ilbcdata.h +libavcodec/imcdata.h +libavcodec/indeo2data.h +libavcodec/indeo3data.h +libavcodec/indeo4data.h +libavcodec/indeo5data.h +libavcodec/internal.h +libavcodec/intrax8dsp.h +libavcodec/intrax8.h +libavcodec/intrax8huf.h +libavcodec/itut35.h +libavcodec/ivi_dsp.h +libavcodec/ivi.h +libavcodec/jacosub.h +libavcodec/jni.h +libavcodec/jpeg2000dec.h +libavcodec/jpeg2000dsp.h +libavcodec/jpeg2000dwt.h +libavcodec/jpeg2000.h +libavcodec/jpeg2000htdec.h +libavcodec/jpeglsdec.h +libavcodec/jpegls.h +libavcodec/jpegquanttables.h +libavcodec/jpegtables.h +libavcodec/jpegtabs.h +libavcodec/jpegxl.h +libavcodec/jpegxl_parse.h +libavcodec/kbdwin.h +libavcodec/lagarithrac.h +libavcodec/lcl.h +libavcodec/leaddata.h +libavcodec/leb.h +libavcodec/libaom.h +libavcodec/libjxl.h +libavcodec/libopenh264.h +libavcodec/libopus.h +libavcodec/libvpx.h +libavcodec/libwebpenc_common.h +libavcodec/lossless_audiodsp.h +libavcodec/lossless_videodsp.h +libavcodec/lossless_videoencdsp.h +libavcodec/lpc_functions.h +libavcodec/lpc.h +libavcodec/lsp.h +libavcodec/lzf.h +libavcodec/lzw.h +libavcodec/mathops.h +libavcodec/me_cmp.h +libavcodec/mediacodecdec_common.h +libavcodec/mediacodec.h +libavcodec/mediacodec_surface.h +libavcodec/mediacodec_sw_buffer.h +libavcodec/mediacodec_wrapper.h +libavcodec/metasound_data.h +libavcodec/metasound_twinvq_data.h +libavcodec/mf_utils.h +libavcodec/mjpegdec.h +libavcodec/mjpegenc_common.h +libavcodec/mjpegenc.h +libavcodec/mjpegenc_huffman.h +libavcodec/mjpeg.h +libavcodec/mlpdsp.h +libavcodec/mlp.h +libavcodec/mlp_parse.h +libavcodec/mlz.h +libavcodec/motion_est.h +libavcodec/motionpixels_tablegen.h +libavcodec/mpc7data.h +libavcodec/mpc8data.h +libavcodec/mpc8huff.h +libavcodec/mpcdata.h +libavcodec/mpc.h +libavcodec/mpeg12codecs.h +libavcodec/mpeg12data.h +libavcodec/mpeg12dec.h +libavcodec/mpeg12enc.h +libavcodec/mpeg12.h +libavcodec/mpeg12vlc.h +libavcodec/mpeg4audio_copy_pce.h +libavcodec/mpeg4audio.h +libavcodec/mpeg4audio_sample_rates.h +libavcodec/mpeg4data.h +libavcodec/mpeg4videodata.h +libavcodec/mpeg4videodec.h +libavcodec/mpeg4videodefs.h +libavcodec/mpeg4videodsp.h +libavcodec/mpeg4videoenc.h +libavcodec/mpeg4video.h +libavcodec/mpegaudiodata.h +libavcodec/mpegaudiodec_common_tablegen.h +libavcodec/mpegaudiodecheader.h +libavcodec/mpegaudiodsp.h +libavcodec/mpegaudio.h +libavcodec/mpegaudiotab.h +libavcodec/mpegaudio_tablegen.h +libavcodec/mpegaudiotabs.h +libavcodec/mpeg_er.h +libavcodec/mpegpicture.h +libavcodec/mpegutils.h +libavcodec/mpegvideodata.h +libavcodec/mpegvideodec.h +libavcodec/mpegvideoencdsp.h +libavcodec/mpegvideoenc.h +libavcodec/mpegvideo.h +libavcodec/mqc.h +libavcodec/msgsmdec.h +libavcodec/msmpeg4data.h +libavcodec/msmpeg4dec.h +libavcodec/msmpeg4enc.h +libavcodec/msmpeg4.h +libavcodec/msmpeg4_vc1_data.h +libavcodec/msrledec.h +libavcodec/mss12.h +libavcodec/mss2dsp.h +libavcodec/mss34dsp.h +libavcodec/nellymoser.h +libavcodec/nvdec.h +libavcodec/nvenc.h +libavcodec/on2avcdata.h +libavcodec/options_table.h +libavcodec/opus_celt.h +libavcodec/opusdsp.h +libavcodec/opusenc.h +libavcodec/opusenc_psy.h +libavcodec/opusenc_utils.h +libavcodec/opus.h +libavcodec/opus_parse.h +libavcodec/opus_pvq.h +libavcodec/opus_rc.h +libavcodec/opus_silk.h +libavcodec/opustab.h +libavcodec/packet.h +libavcodec/packet_internal.h +libavcodec/paf.h +libavcodec/parser.h +libavcodec/pcm_tablegen.h +libavcodec/pixblockdsp.h +libavcodec/pixels.h +libavcodec/pngdsp.h +libavcodec/png.h +libavcodec/pnm.h +libavcodec/profiles.h +libavcodec/progressframe.h +libavcodec/proresdata.h +libavcodec/proresdec.h +libavcodec/proresdsp.h +libavcodec/psymodel.h +libavcodec/pthread_internal.h +libavcodec/put_bits.h +libavcodec/put_golomb.h +libavcodec/qcelpdata.h +libavcodec/qdm2data.h +libavcodec/qdm2_tablegen.h +libavcodec/qoi.h +libavcodec/qpeldsp.h +libavcodec/qsvenc.h +libavcodec/qsv.h +libavcodec/qsv_internal.h +libavcodec/ra144.h +libavcodec/ra288.h +libavcodec/ralfdata.h +libavcodec/rangecoder.h +libavcodec/ratecontrol.h +libavcodec/raw.h +libavcodec/rectangle.h +libavcodec/refstruct.h +libavcodec/rle.h +libavcodec/rl.h +libavcodec/rnd_avg.h +libavcodec/roqvideo.h +libavcodec/rtjpeg.h +libavcodec/rv10dec.h +libavcodec/rv10enc.h +libavcodec/rv30data.h +libavcodec/rv34data.h +libavcodec/rv34dsp.h +libavcodec/rv34.h +libavcodec/rv34vlc.h +libavcodec/rv40data.h +libavcodec/rv40vlc2.h +libavcodec/sbcdec_data.h +libavcodec/sbcdsp_data.h +libavcodec/sbcdsp.h +libavcodec/sbc.h +libavcodec/sbrdsp.h +libavcodec/sbr.h +libavcodec/scpr3.h +libavcodec/scpr.h +libavcodec/sei.h +libavcodec/sgi.h +libavcodec/sheervideodata.h +libavcodec/simple_idct.h +libavcodec/sinewin_fixed_tablegen.h +libavcodec/sinewin.h +libavcodec/sinewin_tablegen.h +libavcodec/sipr16kdata.h +libavcodec/siprdata.h +libavcodec/sipr.h +libavcodec/snappy.h +libavcodec/snowdata.h +libavcodec/snow_dwt.h +libavcodec/snow.h +libavcodec/sp5x.h +libavcodec/speedhqenc.h +libavcodec/speedhq.h +libavcodec/speexdata.h +libavcodec/startcode.h +libavcodec/sunrast.h +libavcodec/svq1_cb.h +libavcodec/svq1enc_cb.h +libavcodec/svq1encdsp.h +libavcodec/svq1.h +libavcodec/svq1_vlc.h +libavcodec/synth_filter.h +libavcodec/tableprint.h +libavcodec/tableprint_vlc.h +libavcodec/takdsp.h +libavcodec/tak.h +libavcodec/targa.h +libavcodec/texturedsp.h +libavcodec/threadframe.h +libavcodec/thread.h +libavcodec/threadprogress.h +libavcodec/tiff_common.h +libavcodec/tiff_data.h +libavcodec/tiff.h +libavcodec/to_upper4.h +libavcodec/tpeldsp.h +libavcodec/truemotion1data.h +libavcodec/truespeech_data.h +libavcodec/tscc2data.h +libavcodec/ttadata.h +libavcodec/ttadsp.h +libavcodec/ttaencdsp.h +libavcodec/ttmlenc.h +libavcodec/twinvq_data.h +libavcodec/twinvq.h +libavcodec/ulti_cb.h +libavcodec/unary.h +libavcodec/utvideodsp.h +libavcodec/utvideo.h +libavcodec/v210dec.h +libavcodec/v210dec_init.h +libavcodec/v210enc.h +libavcodec/v210enc_init.h +libavcodec/v4l2_buffers.h +libavcodec/v4l2_context.h +libavcodec/v4l2_fmt.h +libavcodec/v4l2_m2m.h +libavcodec/vaapi_decode.h +libavcodec/vaapi_encode.h +libavcodec/vaapi_hevc.h +libavcodec/vbn.h +libavcodec/vc1acdata.h +libavcodec/vc1_common.h +libavcodec/vc1data.h +libavcodec/vc1dsp.h +libavcodec/vc1.h +libavcodec/vc1_pred.h +libavcodec/vc1_vlc_data.h +libavcodec/vc2enc_dwt.h +libavcodec/vdpau.h +libavcodec/vdpau_internal.h +libavcodec/version.h +libavcodec/version_major.h +libavcodec/videodsp.h +libavcodec/videotoolbox.h +libavcodec/vlc.h +libavcodec/vorbis_data.h +libavcodec/vorbisdsp.h +libavcodec/vorbis_enc_data.h +libavcodec/vorbis.h +libavcodec/vorbis_parser.h +libavcodec/vorbis_parser_internal.h +libavcodec/vp3data.h +libavcodec/vp3dsp.h +libavcodec/vp4data.h +libavcodec/vp56data.h +libavcodec/vp56dsp.h +libavcodec/vp56.h +libavcodec/vp5data.h +libavcodec/vp6data.h +libavcodec/vp89_rac.h +libavcodec/vp8data.h +libavcodec/vp8dsp.h +libavcodec/vp8.h +libavcodec/vp9data.h +libavcodec/vp9dec.h +libavcodec/vp9dsp.h +libavcodec/vp9.h +libavcodec/vp9shared.h +libavcodec/vpx_rac.h +libavcodec/vt_internal.h +libavcodec/vulkan_decode.h +libavcodec/vulkan.h +libavcodec/vulkan_video.h +libavcodec/vvc.h +libavcodec/wavpackenc.h +libavcodec/wavpack.h +libavcodec/wma_common.h +libavcodec/wmadata.h +libavcodec/wma_freqs.h +libavcodec/wma.h +libavcodec/wmaprodata.h +libavcodec/wmavoice_data.h +libavcodec/wmv2data.h +libavcodec/wmv2dec.h +libavcodec/wmv2dsp.h +libavcodec/wmv2enc.h +libavcodec/wmv2.h +libavcodec/xface.h +libavcodec/xiph.h +libavcodec/xvididct.h +libavcodec/xwd.h +libavcodec/zlib_wrapper.h diff --git a/libffmpeg-avcodec/headers2 b/libffmpeg-avcodec/headers2 new file mode 100644 index 0000000..0a76615 --- /dev/null +++ b/libffmpeg-avcodec/headers2 @@ -0,0 +1,567 @@ +libavcodec/a64colors \ +libavcodec/a64tables \ +libavcodec/aac_ac3_parser \ +libavcodec/aaccoder_trellis \ +libavcodec/aaccoder_twoloop \ +libavcodec/aac_defines \ +libavcodec/aacencdsp \ +libavcodec/aacenc \ +libavcodec/aacenc_is \ +libavcodec/aacenc_ltp \ +libavcodec/aacenc_pred \ +libavcodec/aacenc_quantization \ +libavcodec/aacenc_quantization_misc \ +libavcodec/aacenctab \ +libavcodec/aacenc_tns \ +libavcodec/aacenc_utils \ +libavcodec/aac \ +libavcodec/aacpsdsp \ +libavcodec/aacps_fixed_tablegen \ +libavcodec/aacps \ +libavcodec/aacps_tablegen \ +libavcodec/aacsbrdata \ +libavcodec/aacsbr \ +libavcodec/aactab \ +libavcodec/aandcttab \ +libavcodec/ac3_channel_layout_tab \ +libavcodec/ac3dec_data \ +libavcodec/ac3dec \ +libavcodec/ac3defs \ +libavcodec/ac3dsp \ +libavcodec/ac3enc \ +libavcodec/ac3 \ +libavcodec/ac3_parser \ +libavcodec/ac3_parser_internal \ +libavcodec/ac3tab \ +libavcodec/acelp_filters \ +libavcodec/acelp_pitch_delay \ +libavcodec/acelp_vectors \ +libavcodec/adpcm_data \ +libavcodec/adpcm \ +libavcodec/adts_header \ +libavcodec/adts_parser \ +libavcodec/adx \ +libavcodec/alac_data \ +libavcodec/alacdsp \ +libavcodec/amfenc \ +libavcodec/amr \ +libavcodec/amrnbdata \ +libavcodec/amrwbdata \ +libavcodec/aom_film_grain \ +libavcodec/apng \ +libavcodec/aptx \ +libavcodec/ass \ +libavcodec/ass_split \ +libavcodec/asv \ +libavcodec/atrac1data \ +libavcodec/atrac3data \ +libavcodec/atrac3plus_data \ +libavcodec/atrac3plus \ +libavcodec/atrac9tab \ +libavcodec/atrac \ +libavcodec/atsc_a53 \ +libavcodec/audiodsp \ +libavcodec/audio_frame_queue \ +libavcodec/av1dec \ +libavcodec/av1 \ +libavcodec/av1_levels \ +libavcodec/av1_parse \ +libavcodec/avcodec \ +libavcodec/avcodec_internal \ +libavcodec/avdct \ +libavcodec/avfft \ +libavcodec/avs2 \ +libavcodec/avs3 \ +libavcodec/bethsoftvideo \ +libavcodec/bgmc \ +libavcodec/binkdata \ +libavcodec/binkdsp \ +libavcodec/bintext \ +libavcodec/bitstream \ +libavcodec/bitstream_template \ +libavcodec/blockdsp \ +libavcodec/bmp \ +libavcodec/bsf \ +libavcodec/bsf_internal \ +libavcodec/bswapdsp \ +libavcodec/bytestream \ +libavcodec/cabac_functions \ +libavcodec/cabac \ +libavcodec/canopus \ +libavcodec/cavsdsp \ +libavcodec/cavs \ +libavcodec/cbrt_data \ +libavcodec/cbrt_tablegen \ +libavcodec/cbs_av1 \ +libavcodec/cbs_bsf \ +libavcodec/cbs \ +libavcodec/cbs_h2645 \ +libavcodec/cbs_h264 \ +libavcodec/cbs_h265 \ +libavcodec/cbs_h266 \ +libavcodec/cbs_internal \ +libavcodec/cbs_jpeg \ +libavcodec/cbs_mpeg2 \ +libavcodec/cbs_sei \ +libavcodec/cbs_vp8 \ +libavcodec/cbs_vp9 \ +libavcodec/celp_filters \ +libavcodec/celp_math \ +libavcodec/cfhddsp \ +libavcodec/cfhdencdsp \ +libavcodec/cfhd \ +libavcodec/cga_data \ +libavcodec/clearvideodata \ +libavcodec/codec2utils \ +libavcodec/codec_desc \ +libavcodec/codec \ +libavcodec/codec_id \ +libavcodec/codec_internal \ +libavcodec/codec_par \ +libavcodec/cookdata \ +libavcodec/copy_block \ +libavcodec/d3d11va \ +libavcodec/d3d12va_decode \ +libavcodec/dcaadpcm \ +libavcodec/dca_core \ +libavcodec/dcadata \ +libavcodec/dcadct \ +libavcodec/dcadec \ +libavcodec/dcadsp \ +libavcodec/dcaenc \ +libavcodec/dca_exss \ +libavcodec/dca \ +libavcodec/dcahuff \ +libavcodec/dca_lbr \ +libavcodec/dcamath \ +libavcodec/dca_sample_rate_tab \ +libavcodec/dca_syncwords \ +libavcodec/dca_xll \ +libavcodec/dct32 \ +libavcodec/dct \ +libavcodec/dctref \ +libavcodec/decode \ +libavcodec/defs \ +libavcodec/dirac_arith \ +libavcodec/diracdsp \ +libavcodec/dirac_dwt \ +libavcodec/dirac \ +libavcodec/diractab \ +libavcodec/dirac_vlc \ +libavcodec/dnxhddata \ +libavcodec/dnxhdenc \ +libavcodec/dolby_e \ +libavcodec/dovi_rpu \ +libavcodec/dsd \ +libavcodec/dvaudio \ +libavcodec/dvbtxt \ +libavcodec/dvdata \ +libavcodec/dvdsub \ +libavcodec/dv \ +libavcodec/dv_internal \ +libavcodec/dv_profile \ +libavcodec/dv_profile_internal \ +libavcodec/dv_tablegen \ +libavcodec/dxva2 \ +libavcodec/dxva2_internal \ +libavcodec/dxv \ +libavcodec/dynamic_hdr_vivid \ +libavcodec/eac3_data \ +libavcodec/eac3enc \ +libavcodec/eaidct \ +libavcodec/elbg \ +libavcodec/elsdec \ +libavcodec/encode \ +libavcodec/error_resilience \ +libavcodec/evc \ +libavcodec/evc_parse \ +libavcodec/evc_ps \ +libavcodec/evrcdata \ +libavcodec/exif \ +libavcodec/exrdsp \ +libavcodec/faandct \ +libavcodec/faanidct \ +libavcodec/faxcompr \ +libavcodec/fdctdsp \ +libavcodec/ffjni \ +libavcodec/fflcms2 \ +libavcodec/ffv1 \ +libavcodec/fits \ +libavcodec/flacdata \ +libavcodec/flacdsp \ +libavcodec/flacencdsp \ +libavcodec/flac \ +libavcodec/flac_parse \ +libavcodec/flvdec \ +libavcodec/flvenc \ +libavcodec/fmtconvert \ +libavcodec/frame_thread_encoder \ +libavcodec/g722dsp \ +libavcodec/g722 \ +libavcodec/g723_1 \ +libavcodec/g729data \ +libavcodec/g729 \ +libavcodec/g729postfilter \ +libavcodec/get_bits \ +libavcodec/gif \ +libavcodec/golomb \ +libavcodec/gsmdec_data \ +libavcodec/gsm \ +libavcodec/h261enc \ +libavcodec/h261 \ +libavcodec/h263data \ +libavcodec/h263dec \ +libavcodec/h263dsp \ +libavcodec/h263enc \ +libavcodec/h263 \ +libavcodec/h2645data \ +libavcodec/h2645_parse \ +libavcodec/h2645_sei \ +libavcodec/h2645_vui \ +libavcodec/h264chroma \ +libavcodec/h264data \ +libavcodec/h264dec \ +libavcodec/h264dsp \ +libavcodec/h264 \ +libavcodec/h264idct \ +libavcodec/h264_levels \ +libavcodec/h264_mvpred \ +libavcodec/h264_parse \ +libavcodec/h264pred \ +libavcodec/h264_ps \ +libavcodec/h264qpel \ +libavcodec/h264_sei \ +libavcodec/h265_profile_level \ +libavcodec/h274 \ +libavcodec/hap \ +libavcodec/hca_data \ +libavcodec/hpeldsp \ +libavcodec/hq_hqadata \ +libavcodec/hq_hqadsp \ +libavcodec/hqxdsp \ +libavcodec/hqx \ +libavcodec/htmlsubtitles \ +libavcodec/huffman \ +libavcodec/huffyuvdsp \ +libavcodec/huffyuvencdsp \ +libavcodec/huffyuv \ +libavcodec/hwaccel_internal \ +libavcodec/hwaccels \ +libavcodec/hwconfig \ +libavcodec/idctdsp \ +libavcodec/iirfilter \ +libavcodec/ilbcdata \ +libavcodec/imcdata \ +libavcodec/indeo2data \ +libavcodec/indeo3data \ +libavcodec/indeo4data \ +libavcodec/indeo5data \ +libavcodec/internal \ +libavcodec/intrax8dsp \ +libavcodec/intrax8 \ +libavcodec/intrax8huf \ +libavcodec/itut35 \ +libavcodec/ivi_dsp \ +libavcodec/ivi \ +libavcodec/jacosub \ +libavcodec/jni \ +libavcodec/jpeg2000dec \ +libavcodec/jpeg2000dsp \ +libavcodec/jpeg2000dwt \ +libavcodec/jpeg2000 \ +libavcodec/jpeg2000htdec \ +libavcodec/jpeglsdec \ +libavcodec/jpegls \ +libavcodec/jpegquanttables \ +libavcodec/jpegtables \ +libavcodec/jpegtabs \ +libavcodec/jpegxl \ +libavcodec/jpegxl_parse \ +libavcodec/kbdwin \ +libavcodec/lagarithrac \ +libavcodec/lcl \ +libavcodec/leaddata \ +libavcodec/leb \ +libavcodec/libaom \ +libavcodec/libjxl \ +libavcodec/libopenh264 \ +libavcodec/libopus \ +libavcodec/libvpx \ +libavcodec/libwebpenc_common \ +libavcodec/lossless_audiodsp \ +libavcodec/lossless_videodsp \ +libavcodec/lossless_videoencdsp \ +libavcodec/lpc_functions \ +libavcodec/lpc \ +libavcodec/lsp \ +libavcodec/lzf \ +libavcodec/lzw \ +libavcodec/mathops \ +libavcodec/me_cmp \ +libavcodec/mediacodecdec_common \ +libavcodec/mediacodec \ +libavcodec/mediacodec_surface \ +libavcodec/mediacodec_sw_buffer \ +libavcodec/mediacodec_wrapper \ +libavcodec/metasound_data \ +libavcodec/metasound_twinvq_data \ +libavcodec/mf_utils \ +libavcodec/mjpegdec \ +libavcodec/mjpegenc_common \ +libavcodec/mjpegenc \ +libavcodec/mjpegenc_huffman \ +libavcodec/mjpeg \ +libavcodec/mlpdsp \ +libavcodec/mlp \ +libavcodec/mlp_parse \ +libavcodec/mlz \ +libavcodec/motion_est \ +libavcodec/motionpixels_tablegen \ +libavcodec/mpc7data \ +libavcodec/mpc8data \ +libavcodec/mpc8huff \ +libavcodec/mpcdata \ +libavcodec/mpc \ +libavcodec/mpeg12codecs \ +libavcodec/mpeg12data \ +libavcodec/mpeg12dec \ +libavcodec/mpeg12enc \ +libavcodec/mpeg12 \ +libavcodec/mpeg12vlc \ +libavcodec/mpeg4audio_copy_pce \ +libavcodec/mpeg4audio \ +libavcodec/mpeg4audio_sample_rates \ +libavcodec/mpeg4data \ +libavcodec/mpeg4videodata \ +libavcodec/mpeg4videodec \ +libavcodec/mpeg4videodefs \ +libavcodec/mpeg4videodsp \ +libavcodec/mpeg4videoenc \ +libavcodec/mpeg4video \ +libavcodec/mpegaudiodata \ +libavcodec/mpegaudiodec_common_tablegen \ +libavcodec/mpegaudiodecheader \ +libavcodec/mpegaudiodsp \ +libavcodec/mpegaudio \ +libavcodec/mpegaudiotab \ +libavcodec/mpegaudio_tablegen \ +libavcodec/mpegaudiotabs \ +libavcodec/mpeg_er \ +libavcodec/mpegpicture \ +libavcodec/mpegutils \ +libavcodec/mpegvideodata \ +libavcodec/mpegvideodec \ +libavcodec/mpegvideoencdsp \ +libavcodec/mpegvideoenc \ +libavcodec/mpegvideo \ +libavcodec/mqc \ +libavcodec/msgsmdec \ +libavcodec/msmpeg4data \ +libavcodec/msmpeg4dec \ +libavcodec/msmpeg4enc \ +libavcodec/msmpeg4 \ +libavcodec/msmpeg4_vc1_data \ +libavcodec/msrledec \ +libavcodec/mss12 \ +libavcodec/mss2dsp \ +libavcodec/mss34dsp \ +libavcodec/nellymoser \ +libavcodec/nvdec \ +libavcodec/nvenc \ +libavcodec/on2avcdata \ +libavcodec/options_table \ +libavcodec/opus_celt \ +libavcodec/opusdsp \ +libavcodec/opusenc \ +libavcodec/opusenc_psy \ +libavcodec/opusenc_utils \ +libavcodec/opus \ +libavcodec/opus_parse \ +libavcodec/opus_pvq \ +libavcodec/opus_rc \ +libavcodec/opus_silk \ +libavcodec/opustab \ +libavcodec/packet \ +libavcodec/packet_internal \ +libavcodec/paf \ +libavcodec/parser \ +libavcodec/pcm_tablegen \ +libavcodec/pixblockdsp \ +libavcodec/pixels \ +libavcodec/pngdsp \ +libavcodec/png \ +libavcodec/pnm \ +libavcodec/profiles \ +libavcodec/progressframe \ +libavcodec/proresdata \ +libavcodec/proresdec \ +libavcodec/proresdsp \ +libavcodec/psymodel \ +libavcodec/pthread_internal \ +libavcodec/put_bits \ +libavcodec/put_golomb \ +libavcodec/qcelpdata \ +libavcodec/qdm2data \ +libavcodec/qdm2_tablegen \ +libavcodec/qoi \ +libavcodec/qpeldsp \ +libavcodec/qsvenc \ +libavcodec/qsv \ +libavcodec/qsv_internal \ +libavcodec/ra144 \ +libavcodec/ra288 \ +libavcodec/ralfdata \ +libavcodec/rangecoder \ +libavcodec/ratecontrol \ +libavcodec/raw \ +libavcodec/rectangle \ +libavcodec/refstruct \ +libavcodec/rle \ +libavcodec/rl \ +libavcodec/rnd_avg \ +libavcodec/roqvideo \ +libavcodec/rtjpeg \ +libavcodec/rv10dec \ +libavcodec/rv10enc \ +libavcodec/rv30data \ +libavcodec/rv34data \ +libavcodec/rv34dsp \ +libavcodec/rv34 \ +libavcodec/rv34vlc \ +libavcodec/rv40data \ +libavcodec/rv40vlc2 \ +libavcodec/sbcdec_data \ +libavcodec/sbcdsp_data \ +libavcodec/sbcdsp \ +libavcodec/sbc \ +libavcodec/sbrdsp \ +libavcodec/sbr \ +libavcodec/scpr3 \ +libavcodec/scpr \ +libavcodec/sei \ +libavcodec/sgi \ +libavcodec/sheervideodata \ +libavcodec/simple_idct \ +libavcodec/sinewin_fixed_tablegen \ +libavcodec/sinewin \ +libavcodec/sinewin_tablegen \ +libavcodec/sipr16kdata \ +libavcodec/siprdata \ +libavcodec/sipr \ +libavcodec/snappy \ +libavcodec/snowdata \ +libavcodec/snow_dwt \ +libavcodec/snow \ +libavcodec/sp5x \ +libavcodec/speedhqenc \ +libavcodec/speedhq \ +libavcodec/speexdata \ +libavcodec/startcode \ +libavcodec/sunrast \ +libavcodec/svq1_cb \ +libavcodec/svq1enc_cb \ +libavcodec/svq1encdsp \ +libavcodec/svq1 \ +libavcodec/svq1_vlc \ +libavcodec/synth_filter \ +libavcodec/tableprint \ +libavcodec/tableprint_vlc \ +libavcodec/takdsp \ +libavcodec/tak \ +libavcodec/targa \ +libavcodec/texturedsp \ +libavcodec/threadframe \ +libavcodec/thread \ +libavcodec/threadprogress \ +libavcodec/tiff_common \ +libavcodec/tiff_data \ +libavcodec/tiff \ +libavcodec/to_upper4 \ +libavcodec/tpeldsp \ +libavcodec/truemotion1data \ +libavcodec/truespeech_data \ +libavcodec/tscc2data \ +libavcodec/ttadata \ +libavcodec/ttadsp \ +libavcodec/ttaencdsp \ +libavcodec/ttmlenc \ +libavcodec/twinvq_data \ +libavcodec/twinvq \ +libavcodec/ulti_cb \ +libavcodec/unary \ +libavcodec/utvideodsp \ +libavcodec/utvideo \ +libavcodec/v210dec \ +libavcodec/v210dec_init \ +libavcodec/v210enc \ +libavcodec/v210enc_init \ +libavcodec/v4l2_buffers \ +libavcodec/v4l2_context \ +libavcodec/v4l2_fmt \ +libavcodec/v4l2_m2m \ +libavcodec/vaapi_decode \ +libavcodec/vaapi_encode \ +libavcodec/vaapi_hevc \ +libavcodec/vbn \ +libavcodec/vc1acdata \ +libavcodec/vc1_common \ +libavcodec/vc1data \ +libavcodec/vc1dsp \ +libavcodec/vc1 \ +libavcodec/vc1_pred \ +libavcodec/vc1_vlc_data \ +libavcodec/vc2enc_dwt \ +libavcodec/vdpau \ +libavcodec/vdpau_internal \ +libavcodec/version \ +libavcodec/version_major \ +libavcodec/videodsp \ +libavcodec/videotoolbox \ +libavcodec/vlc \ +libavcodec/vorbis_data \ +libavcodec/vorbisdsp \ +libavcodec/vorbis_enc_data \ +libavcodec/vorbis \ +libavcodec/vorbis_parser \ +libavcodec/vorbis_parser_internal \ +libavcodec/vp3data \ +libavcodec/vp3dsp \ +libavcodec/vp4data \ +libavcodec/vp56data \ +libavcodec/vp56dsp \ +libavcodec/vp56 \ +libavcodec/vp5data \ +libavcodec/vp6data \ +libavcodec/vp89_rac \ +libavcodec/vp8data \ +libavcodec/vp8dsp \ +libavcodec/vp8 \ +libavcodec/vp9data \ +libavcodec/vp9dec \ +libavcodec/vp9dsp \ +libavcodec/vp9 \ +libavcodec/vp9shared \ +libavcodec/vpx_rac \ +libavcodec/vt_internal \ +libavcodec/vulkan_decode \ +libavcodec/vulkan \ +libavcodec/vulkan_video \ +libavcodec/vvc \ +libavcodec/wavpackenc \ +libavcodec/wavpack \ +libavcodec/wma_common \ +libavcodec/wmadata \ +libavcodec/wma_freqs \ +libavcodec/wma \ +libavcodec/wmaprodata \ +libavcodec/wmavoice_data \ +libavcodec/wmv2data \ +libavcodec/wmv2dec \ +libavcodec/wmv2dsp \ +libavcodec/wmv2enc \ +libavcodec/wmv2 \ +libavcodec/xface \ +libavcodec/xiph \ +libavcodec/xvididct \ +libavcodec/xwd \ +libavcodec/zlib_wrapper \ diff --git a/libffmpeg-avcodec/libavcodec/012v.c b/libffmpeg-avcodec/libavcodec/012v.c new file mode 120000 index 0000000..197b450 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/012v.c @@ -0,0 +1 @@ +../../upstream/libavcodec/012v.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/4xm.c b/libffmpeg-avcodec/libavcodec/4xm.c new file mode 120000 index 0000000..f65cc46 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/4xm.c @@ -0,0 +1 @@ +../../upstream/libavcodec/4xm.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/8bps.c b/libffmpeg-avcodec/libavcodec/8bps.c new file mode 120000 index 0000000..5690957 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/8bps.c @@ -0,0 +1 @@ +../../upstream/libavcodec/8bps.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/8svx.c b/libffmpeg-avcodec/libavcodec/8svx.c new file mode 120000 index 0000000..03fcb51 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/8svx.c @@ -0,0 +1 @@ +../../upstream/libavcodec/8svx.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/a64colors.h b/libffmpeg-avcodec/libavcodec/a64colors.h new file mode 120000 index 0000000..c282b0a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/a64colors.h @@ -0,0 +1 @@ +../../upstream/libavcodec/a64colors.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/a64multienc.c b/libffmpeg-avcodec/libavcodec/a64multienc.c new file mode 120000 index 0000000..b9d59c2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/a64multienc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/a64multienc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/a64tables.h b/libffmpeg-avcodec/libavcodec/a64tables.h new file mode 120000 index 0000000..8621e94 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/a64tables.h @@ -0,0 +1 @@ +../../upstream/libavcodec/a64tables.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aac.h b/libffmpeg-avcodec/libavcodec/aac.h new file mode 120000 index 0000000..0c992f0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aac.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aac_ac3_parser.c b/libffmpeg-avcodec/libavcodec/aac_ac3_parser.c new file mode 120000 index 0000000..9f306cc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aac_ac3_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aac_ac3_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aac_ac3_parser.h b/libffmpeg-avcodec/libavcodec/aac_ac3_parser.h new file mode 120000 index 0000000..0636276 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aac_ac3_parser.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aac_ac3_parser.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aac_defines.h b/libffmpeg-avcodec/libavcodec/aac_defines.h new file mode 120000 index 0000000..8265b4b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aac_defines.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aac_defines.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aac_parser.c b/libffmpeg-avcodec/libavcodec/aac_parser.c new file mode 120000 index 0000000..72202b0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aac_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aac_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aaccoder.c b/libffmpeg-avcodec/libavcodec/aaccoder.c new file mode 120000 index 0000000..2cbbbe0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aaccoder.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aaccoder.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aaccoder_trellis.h b/libffmpeg-avcodec/libavcodec/aaccoder_trellis.h new file mode 120000 index 0000000..2d6dd7f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aaccoder_trellis.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aaccoder_trellis.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aaccoder_twoloop.h b/libffmpeg-avcodec/libavcodec/aaccoder_twoloop.h new file mode 120000 index 0000000..24247ec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aaccoder_twoloop.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aaccoder_twoloop.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc.c b/libffmpeg-avcodec/libavcodec/aacenc.c new file mode 120000 index 0000000..4fac13b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc.h b/libffmpeg-avcodec/libavcodec/aacenc.h new file mode 120000 index 0000000..1cd4064 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc_is.c b/libffmpeg-avcodec/libavcodec/aacenc_is.c new file mode 120000 index 0000000..b77ddb5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc_is.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_is.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc_is.h b/libffmpeg-avcodec/libavcodec/aacenc_is.h new file mode 120000 index 0000000..cfe1f06 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc_is.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_is.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc_ltp.c b/libffmpeg-avcodec/libavcodec/aacenc_ltp.c new file mode 120000 index 0000000..3b7b2bd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc_ltp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_ltp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc_ltp.h b/libffmpeg-avcodec/libavcodec/aacenc_ltp.h new file mode 120000 index 0000000..1c33f3b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc_ltp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_ltp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc_pred.c b/libffmpeg-avcodec/libavcodec/aacenc_pred.c new file mode 120000 index 0000000..b848295 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc_pred.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_pred.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc_pred.h b/libffmpeg-avcodec/libavcodec/aacenc_pred.h new file mode 120000 index 0000000..da5cd84 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc_pred.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_pred.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc_quantization.h b/libffmpeg-avcodec/libavcodec/aacenc_quantization.h new file mode 120000 index 0000000..dd01b82 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc_quantization.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_quantization.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc_quantization_misc.h b/libffmpeg-avcodec/libavcodec/aacenc_quantization_misc.h new file mode 120000 index 0000000..fce345b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc_quantization_misc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_quantization_misc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc_tns.c b/libffmpeg-avcodec/libavcodec/aacenc_tns.c new file mode 120000 index 0000000..a38b718 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc_tns.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_tns.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc_tns.h b/libffmpeg-avcodec/libavcodec/aacenc_tns.h new file mode 120000 index 0000000..abf9927 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc_tns.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_tns.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenc_utils.h b/libffmpeg-avcodec/libavcodec/aacenc_utils.h new file mode 120000 index 0000000..ee16555 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenc_utils.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_utils.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacencdsp.h b/libffmpeg-avcodec/libavcodec/aacencdsp.h new file mode 120000 index 0000000..f8fe516 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacencdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenctab.c b/libffmpeg-avcodec/libavcodec/aacenctab.c new file mode 120000 index 0000000..6a83cec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenctab.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenctab.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacenctab.h b/libffmpeg-avcodec/libavcodec/aacenctab.h new file mode 120000 index 0000000..82e0bb6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacenctab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenctab.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacps.c b/libffmpeg-avcodec/libavcodec/aacps.c new file mode 120000 index 0000000..cd8edae --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacps.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacps.h b/libffmpeg-avcodec/libavcodec/aacps.h new file mode 120000 index 0000000..ada630e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacps.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacps_common.c b/libffmpeg-avcodec/libavcodec/aacps_common.c new file mode 120000 index 0000000..e289ce3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacps_common.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps_common.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacps_fixed.c b/libffmpeg-avcodec/libavcodec/aacps_fixed.c new file mode 120000 index 0000000..9d5dd82 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacps_fixed.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps_fixed.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacps_fixed_tablegen.c b/libffmpeg-avcodec/libavcodec/aacps_fixed_tablegen.c new file mode 120000 index 0000000..25c0fe2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacps_fixed_tablegen.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps_fixed_tablegen.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacps_fixed_tablegen.h b/libffmpeg-avcodec/libavcodec/aacps_fixed_tablegen.h new file mode 120000 index 0000000..c96f6cd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacps_fixed_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps_fixed_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacps_float.c b/libffmpeg-avcodec/libavcodec/aacps_float.c new file mode 120000 index 0000000..d8df660 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacps_float.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps_float.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacps_tablegen.c b/libffmpeg-avcodec/libavcodec/aacps_tablegen.c new file mode 120000 index 0000000..de72d91 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacps_tablegen.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps_tablegen.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacps_tablegen.h b/libffmpeg-avcodec/libavcodec/aacps_tablegen.h new file mode 120000 index 0000000..37d42ec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacps_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacps_tablegen_template.c b/libffmpeg-avcodec/libavcodec/aacps_tablegen_template.c new file mode 120000 index 0000000..d689d8a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacps_tablegen_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps_tablegen_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacpsdata.c b/libffmpeg-avcodec/libavcodec/aacpsdata.c new file mode 120000 index 0000000..d192e35 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacpsdata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacpsdata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacpsdsp.h b/libffmpeg-avcodec/libavcodec/aacpsdsp.h new file mode 120000 index 0000000..91dedaf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacpsdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacpsdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacpsdsp_fixed.c b/libffmpeg-avcodec/libavcodec/aacpsdsp_fixed.c new file mode 120000 index 0000000..0154bdb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacpsdsp_fixed.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacpsdsp_fixed.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacpsdsp_float.c b/libffmpeg-avcodec/libavcodec/aacpsdsp_float.c new file mode 120000 index 0000000..cb098d6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacpsdsp_float.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacpsdsp_float.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacpsdsp_template.c b/libffmpeg-avcodec/libavcodec/aacpsdsp_template.c new file mode 120000 index 0000000..ead1a92 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacpsdsp_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacpsdsp_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacpsy.c b/libffmpeg-avcodec/libavcodec/aacpsy.c new file mode 120000 index 0000000..d00558e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacpsy.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacpsy.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacsbr.c b/libffmpeg-avcodec/libavcodec/aacsbr.c new file mode 120000 index 0000000..87ecdab --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacsbr.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacsbr.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacsbr.h b/libffmpeg-avcodec/libavcodec/aacsbr.h new file mode 120000 index 0000000..9b888e1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacsbr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacsbr.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacsbr_fixed.c b/libffmpeg-avcodec/libavcodec/aacsbr_fixed.c new file mode 120000 index 0000000..018eea8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacsbr_fixed.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacsbr_fixed.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacsbr_template.c b/libffmpeg-avcodec/libavcodec/aacsbr_template.c new file mode 120000 index 0000000..58e00ca --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacsbr_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aacsbr_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aacsbrdata.h b/libffmpeg-avcodec/libavcodec/aacsbrdata.h new file mode 120000 index 0000000..760d6b7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aacsbrdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacsbrdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aactab.c b/libffmpeg-avcodec/libavcodec/aactab.c new file mode 120000 index 0000000..8550f30 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aactab.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aactab.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aactab.h b/libffmpeg-avcodec/libavcodec/aactab.h new file mode 120000 index 0000000..2390b57 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aactab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aactab.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aandcttab.c b/libffmpeg-avcodec/libavcodec/aandcttab.c new file mode 120000 index 0000000..d7f2871 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aandcttab.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aandcttab.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aandcttab.h b/libffmpeg-avcodec/libavcodec/aandcttab.h new file mode 120000 index 0000000..ced7953 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aandcttab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aandcttab.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aasc.c b/libffmpeg-avcodec/libavcodec/aasc.c new file mode 120000 index 0000000..af1df26 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aasc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aasc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3.c b/libffmpeg-avcodec/libavcodec/ac3.c new file mode 120000 index 0000000..f558999 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3.h b/libffmpeg-avcodec/libavcodec/ac3.h new file mode 120000 index 0000000..063a371 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3_channel_layout_tab.c b/libffmpeg-avcodec/libavcodec/ac3_channel_layout_tab.c new file mode 120000 index 0000000..341642c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3_channel_layout_tab.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3_channel_layout_tab.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3_channel_layout_tab.h b/libffmpeg-avcodec/libavcodec/ac3_channel_layout_tab.h new file mode 120000 index 0000000..4be53a7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3_channel_layout_tab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3_channel_layout_tab.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3_parser.c b/libffmpeg-avcodec/libavcodec/ac3_parser.c new file mode 120000 index 0000000..35743ca --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3_parser.h b/libffmpeg-avcodec/libavcodec/ac3_parser.h new file mode 120000 index 0000000..7df1a2a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3_parser.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3_parser.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3_parser_internal.h b/libffmpeg-avcodec/libavcodec/ac3_parser_internal.h new file mode 120000 index 0000000..05862cd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3_parser_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3_parser_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3dec.c b/libffmpeg-avcodec/libavcodec/ac3dec.c new file mode 120000 index 0000000..153ae33 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3dec.h b/libffmpeg-avcodec/libavcodec/ac3dec.h new file mode 120000 index 0000000..27a748b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3dec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3dec_data.c b/libffmpeg-avcodec/libavcodec/ac3dec_data.c new file mode 120000 index 0000000..0d6641d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3dec_data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3dec_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3dec_data.h b/libffmpeg-avcodec/libavcodec/ac3dec_data.h new file mode 120000 index 0000000..4382ca3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3dec_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3dec_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3dec_fixed.c b/libffmpeg-avcodec/libavcodec/ac3dec_fixed.c new file mode 120000 index 0000000..c3dd7c3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3dec_fixed.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3dec_fixed.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3dec_float.c b/libffmpeg-avcodec/libavcodec/ac3dec_float.c new file mode 120000 index 0000000..b8ad01d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3dec_float.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3dec_float.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3defs.h b/libffmpeg-avcodec/libavcodec/ac3defs.h new file mode 120000 index 0000000..bc6a019 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3defs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3defs.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3dsp.c b/libffmpeg-avcodec/libavcodec/ac3dsp.c new file mode 120000 index 0000000..4fe418a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3dsp.h b/libffmpeg-avcodec/libavcodec/ac3dsp.h new file mode 120000 index 0000000..ff21c2b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3enc.c b/libffmpeg-avcodec/libavcodec/ac3enc.c new file mode 120000 index 0000000..07ab275 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3enc.h b/libffmpeg-avcodec/libavcodec/ac3enc.h new file mode 120000 index 0000000..1f58145 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3enc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3enc_fixed.c b/libffmpeg-avcodec/libavcodec/ac3enc_fixed.c new file mode 120000 index 0000000..6b7984d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3enc_fixed.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3enc_fixed.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3enc_float.c b/libffmpeg-avcodec/libavcodec/ac3enc_float.c new file mode 120000 index 0000000..4ea56b5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3enc_float.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3enc_float.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3enc_template.c b/libffmpeg-avcodec/libavcodec/ac3enc_template.c new file mode 120000 index 0000000..b2947a7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3enc_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3enc_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3tab.c b/libffmpeg-avcodec/libavcodec/ac3tab.c new file mode 120000 index 0000000..2ae10e8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3tab.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3tab.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ac3tab.h b/libffmpeg-avcodec/libavcodec/ac3tab.h new file mode 120000 index 0000000..9973479 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ac3tab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3tab.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/acelp_filters.c b/libffmpeg-avcodec/libavcodec/acelp_filters.c new file mode 120000 index 0000000..a211c0b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/acelp_filters.c @@ -0,0 +1 @@ +../../upstream/libavcodec/acelp_filters.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/acelp_filters.h b/libffmpeg-avcodec/libavcodec/acelp_filters.h new file mode 120000 index 0000000..a634503 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/acelp_filters.h @@ -0,0 +1 @@ +../../upstream/libavcodec/acelp_filters.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/acelp_pitch_delay.c b/libffmpeg-avcodec/libavcodec/acelp_pitch_delay.c new file mode 120000 index 0000000..dccc367 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/acelp_pitch_delay.c @@ -0,0 +1 @@ +../../upstream/libavcodec/acelp_pitch_delay.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/acelp_pitch_delay.h b/libffmpeg-avcodec/libavcodec/acelp_pitch_delay.h new file mode 120000 index 0000000..edd3285 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/acelp_pitch_delay.h @@ -0,0 +1 @@ +../../upstream/libavcodec/acelp_pitch_delay.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/acelp_vectors.c b/libffmpeg-avcodec/libavcodec/acelp_vectors.c new file mode 120000 index 0000000..f834276 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/acelp_vectors.c @@ -0,0 +1 @@ +../../upstream/libavcodec/acelp_vectors.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/acelp_vectors.h b/libffmpeg-avcodec/libavcodec/acelp_vectors.h new file mode 120000 index 0000000..a0c67c3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/acelp_vectors.h @@ -0,0 +1 @@ +../../upstream/libavcodec/acelp_vectors.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adpcm.c b/libffmpeg-avcodec/libavcodec/adpcm.c new file mode 120000 index 0000000..8ae5651 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adpcm.c @@ -0,0 +1 @@ +../../upstream/libavcodec/adpcm.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adpcm.h b/libffmpeg-avcodec/libavcodec/adpcm.h new file mode 120000 index 0000000..83cedd6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adpcm.h @@ -0,0 +1 @@ +../../upstream/libavcodec/adpcm.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adpcm_data.c b/libffmpeg-avcodec/libavcodec/adpcm_data.c new file mode 120000 index 0000000..7d4e91a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adpcm_data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/adpcm_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adpcm_data.h b/libffmpeg-avcodec/libavcodec/adpcm_data.h new file mode 120000 index 0000000..8992b61 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adpcm_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/adpcm_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adpcmenc.c b/libffmpeg-avcodec/libavcodec/adpcmenc.c new file mode 120000 index 0000000..2104b99 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adpcmenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/adpcmenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adts_header.c b/libffmpeg-avcodec/libavcodec/adts_header.c new file mode 120000 index 0000000..deebe5b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adts_header.c @@ -0,0 +1 @@ +../../upstream/libavcodec/adts_header.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adts_header.h b/libffmpeg-avcodec/libavcodec/adts_header.h new file mode 120000 index 0000000..de69507 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adts_header.h @@ -0,0 +1 @@ +../../upstream/libavcodec/adts_header.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adts_parser.c b/libffmpeg-avcodec/libavcodec/adts_parser.c new file mode 120000 index 0000000..d320624 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adts_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/adts_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adts_parser.h b/libffmpeg-avcodec/libavcodec/adts_parser.h new file mode 120000 index 0000000..ea92b02 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adts_parser.h @@ -0,0 +1 @@ +../../upstream/libavcodec/adts_parser.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adx.c b/libffmpeg-avcodec/libavcodec/adx.c new file mode 120000 index 0000000..147cb05 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adx.c @@ -0,0 +1 @@ +../../upstream/libavcodec/adx.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adx.h b/libffmpeg-avcodec/libavcodec/adx.h new file mode 120000 index 0000000..d86f297 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adx.h @@ -0,0 +1 @@ +../../upstream/libavcodec/adx.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adx_parser.c b/libffmpeg-avcodec/libavcodec/adx_parser.c new file mode 120000 index 0000000..af560aa --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adx_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/adx_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adxdec.c b/libffmpeg-avcodec/libavcodec/adxdec.c new file mode 120000 index 0000000..b318cba --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adxdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/adxdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/adxenc.c b/libffmpeg-avcodec/libavcodec/adxenc.c new file mode 120000 index 0000000..4eb6f82 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/adxenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/adxenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/agm.c b/libffmpeg-avcodec/libavcodec/agm.c new file mode 120000 index 0000000..48d9a17 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/agm.c @@ -0,0 +1 @@ +../../upstream/libavcodec/agm.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aic.c b/libffmpeg-avcodec/libavcodec/aic.c new file mode 120000 index 0000000..f715141 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aic.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aic.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/alac.c b/libffmpeg-avcodec/libavcodec/alac.c new file mode 120000 index 0000000..e7f4041 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/alac.c @@ -0,0 +1 @@ +../../upstream/libavcodec/alac.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/alac_data.c b/libffmpeg-avcodec/libavcodec/alac_data.c new file mode 120000 index 0000000..6c7cb54 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/alac_data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/alac_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/alac_data.h b/libffmpeg-avcodec/libavcodec/alac_data.h new file mode 120000 index 0000000..15fc5e7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/alac_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/alac_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/alacdsp.c b/libffmpeg-avcodec/libavcodec/alacdsp.c new file mode 120000 index 0000000..29a6682 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/alacdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/alacdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/alacdsp.h b/libffmpeg-avcodec/libavcodec/alacdsp.h new file mode 120000 index 0000000..3b1b2a1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/alacdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/alacdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/alacenc.c b/libffmpeg-avcodec/libavcodec/alacenc.c new file mode 120000 index 0000000..2f04f11 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/alacenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/alacenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aliaspixdec.c b/libffmpeg-avcodec/libavcodec/aliaspixdec.c new file mode 120000 index 0000000..f05817d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aliaspixdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aliaspixdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aliaspixenc.c b/libffmpeg-avcodec/libavcodec/aliaspixenc.c new file mode 120000 index 0000000..2fff40b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aliaspixenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aliaspixenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/allcodecs.c b/libffmpeg-avcodec/libavcodec/allcodecs.c new file mode 120000 index 0000000..73da1d8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/allcodecs.c @@ -0,0 +1 @@ +../../upstream/libavcodec/allcodecs.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/alsdec.c b/libffmpeg-avcodec/libavcodec/alsdec.c new file mode 120000 index 0000000..dc33ce0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/alsdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/alsdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/amfenc.c b/libffmpeg-avcodec/libavcodec/amfenc.c new file mode 120000 index 0000000..f71fefc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/amfenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/amfenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/amfenc.h b/libffmpeg-avcodec/libavcodec/amfenc.h new file mode 120000 index 0000000..892ee98 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/amfenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/amfenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/amfenc_av1.c b/libffmpeg-avcodec/libavcodec/amfenc_av1.c new file mode 120000 index 0000000..fcbd8a0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/amfenc_av1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/amfenc_av1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/amfenc_h264.c b/libffmpeg-avcodec/libavcodec/amfenc_h264.c new file mode 120000 index 0000000..6d5eb7d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/amfenc_h264.c @@ -0,0 +1 @@ +../../upstream/libavcodec/amfenc_h264.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/amfenc_hevc.c b/libffmpeg-avcodec/libavcodec/amfenc_hevc.c new file mode 120000 index 0000000..3bd5176 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/amfenc_hevc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/amfenc_hevc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/amr.h b/libffmpeg-avcodec/libavcodec/amr.h new file mode 120000 index 0000000..e1e2945 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/amr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/amr.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/amr_parser.c b/libffmpeg-avcodec/libavcodec/amr_parser.c new file mode 120000 index 0000000..fb81fd5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/amr_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/amr_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/amrnbdata.h b/libffmpeg-avcodec/libavcodec/amrnbdata.h new file mode 120000 index 0000000..7cbfd69 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/amrnbdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/amrnbdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/amrnbdec.c b/libffmpeg-avcodec/libavcodec/amrnbdec.c new file mode 120000 index 0000000..bcfc513 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/amrnbdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/amrnbdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/amrwbdata.h b/libffmpeg-avcodec/libavcodec/amrwbdata.h new file mode 120000 index 0000000..f7a8763 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/amrwbdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/amrwbdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/amrwbdec.c b/libffmpeg-avcodec/libavcodec/amrwbdec.c new file mode 120000 index 0000000..0307223 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/amrwbdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/amrwbdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/anm.c b/libffmpeg-avcodec/libavcodec/anm.c new file mode 120000 index 0000000..2a776c8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/anm.c @@ -0,0 +1 @@ +../../upstream/libavcodec/anm.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ansi.c b/libffmpeg-avcodec/libavcodec/ansi.c new file mode 120000 index 0000000..7230c6b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ansi.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ansi.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aom_film_grain.c b/libffmpeg-avcodec/libavcodec/aom_film_grain.c new file mode 120000 index 0000000..ab89b3c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aom_film_grain.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aom_film_grain.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aom_film_grain.h b/libffmpeg-avcodec/libavcodec/aom_film_grain.h new file mode 120000 index 0000000..94213a6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aom_film_grain.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aom_film_grain.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aom_film_grain_template.c b/libffmpeg-avcodec/libavcodec/aom_film_grain_template.c new file mode 120000 index 0000000..7141aa3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aom_film_grain_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aom_film_grain_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/apac.c b/libffmpeg-avcodec/libavcodec/apac.c new file mode 120000 index 0000000..cea8015 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/apac.c @@ -0,0 +1 @@ +../../upstream/libavcodec/apac.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/apedec.c b/libffmpeg-avcodec/libavcodec/apedec.c new file mode 120000 index 0000000..2c538d6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/apedec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/apedec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/apng.h b/libffmpeg-avcodec/libavcodec/apng.h new file mode 120000 index 0000000..e139993 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/apng.h @@ -0,0 +1 @@ +../../upstream/libavcodec/apng.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aptx.c b/libffmpeg-avcodec/libavcodec/aptx.c new file mode 120000 index 0000000..feaa90a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aptx.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aptx.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aptx.h b/libffmpeg-avcodec/libavcodec/aptx.h new file mode 120000 index 0000000..122845f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aptx.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aptx.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aptxdec.c b/libffmpeg-avcodec/libavcodec/aptxdec.c new file mode 120000 index 0000000..53ff09d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aptxdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aptxdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aptxenc.c b/libffmpeg-avcodec/libavcodec/aptxenc.c new file mode 120000 index 0000000..c5d40cb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aptxenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aptxenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/arbc.c b/libffmpeg-avcodec/libavcodec/arbc.c new file mode 120000 index 0000000..f799435 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/arbc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/arbc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/argo.c b/libffmpeg-avcodec/libavcodec/argo.c new file mode 120000 index 0000000..0e34128 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/argo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/argo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ass.c b/libffmpeg-avcodec/libavcodec/ass.c new file mode 120000 index 0000000..1173d7b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ass.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ass.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ass.h b/libffmpeg-avcodec/libavcodec/ass.h new file mode 120000 index 0000000..2e889a1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ass.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ass.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ass_split.c b/libffmpeg-avcodec/libavcodec/ass_split.c new file mode 120000 index 0000000..6b0863d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ass_split.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ass_split.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ass_split.h b/libffmpeg-avcodec/libavcodec/ass_split.h new file mode 120000 index 0000000..ddc4f21 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ass_split.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ass_split.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/assdec.c b/libffmpeg-avcodec/libavcodec/assdec.c new file mode 120000 index 0000000..e4614e3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/assdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/assdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/assenc.c b/libffmpeg-avcodec/libavcodec/assenc.c new file mode 120000 index 0000000..ea6fcd7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/assenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/assenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/asv.c b/libffmpeg-avcodec/libavcodec/asv.c new file mode 120000 index 0000000..cb3a645 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/asv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/asv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/asv.h b/libffmpeg-avcodec/libavcodec/asv.h new file mode 120000 index 0000000..4d462bf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/asv.h @@ -0,0 +1 @@ +../../upstream/libavcodec/asv.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/asvdec.c b/libffmpeg-avcodec/libavcodec/asvdec.c new file mode 120000 index 0000000..f359abc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/asvdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/asvdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/asvenc.c b/libffmpeg-avcodec/libavcodec/asvenc.c new file mode 120000 index 0000000..25a5ef2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/asvenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/asvenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac.c b/libffmpeg-avcodec/libavcodec/atrac.c new file mode 120000 index 0000000..d6fbaf5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac.c @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac.h b/libffmpeg-avcodec/libavcodec/atrac.h new file mode 120000 index 0000000..e468548 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac1.c b/libffmpeg-avcodec/libavcodec/atrac1.c new file mode 120000 index 0000000..3ea347c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac1data.h b/libffmpeg-avcodec/libavcodec/atrac1data.h new file mode 120000 index 0000000..c2881b5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac1data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac1data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac3.c b/libffmpeg-avcodec/libavcodec/atrac3.c new file mode 120000 index 0000000..35d0992 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac3.c @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac3.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac3data.h b/libffmpeg-avcodec/libavcodec/atrac3data.h new file mode 120000 index 0000000..fbdcbf1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac3data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac3data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac3plus.c b/libffmpeg-avcodec/libavcodec/atrac3plus.c new file mode 120000 index 0000000..155dc67 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac3plus.c @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac3plus.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac3plus.h b/libffmpeg-avcodec/libavcodec/atrac3plus.h new file mode 120000 index 0000000..8275787 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac3plus.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac3plus.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac3plus_data.h b/libffmpeg-avcodec/libavcodec/atrac3plus_data.h new file mode 120000 index 0000000..a01fa16 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac3plus_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac3plus_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac3plusdec.c b/libffmpeg-avcodec/libavcodec/atrac3plusdec.c new file mode 120000 index 0000000..4172954 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac3plusdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac3plusdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac3plusdsp.c b/libffmpeg-avcodec/libavcodec/atrac3plusdsp.c new file mode 120000 index 0000000..5320dbb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac3plusdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac3plusdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac9dec.c b/libffmpeg-avcodec/libavcodec/atrac9dec.c new file mode 120000 index 0000000..877def9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac9dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac9dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atrac9tab.h b/libffmpeg-avcodec/libavcodec/atrac9tab.h new file mode 120000 index 0000000..1e29c33 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atrac9tab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac9tab.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atsc_a53.c b/libffmpeg-avcodec/libavcodec/atsc_a53.c new file mode 120000 index 0000000..680f772 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atsc_a53.c @@ -0,0 +1 @@ +../../upstream/libavcodec/atsc_a53.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/atsc_a53.h b/libffmpeg-avcodec/libavcodec/atsc_a53.h new file mode 120000 index 0000000..cd0c85e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/atsc_a53.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atsc_a53.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/audio_frame_queue.c b/libffmpeg-avcodec/libavcodec/audio_frame_queue.c new file mode 120000 index 0000000..49a424b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/audio_frame_queue.c @@ -0,0 +1 @@ +../../upstream/libavcodec/audio_frame_queue.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/audio_frame_queue.h b/libffmpeg-avcodec/libavcodec/audio_frame_queue.h new file mode 120000 index 0000000..ff229cd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/audio_frame_queue.h @@ -0,0 +1 @@ +../../upstream/libavcodec/audio_frame_queue.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/audiodsp.c b/libffmpeg-avcodec/libavcodec/audiodsp.c new file mode 120000 index 0000000..d972b33 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/audiodsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/audiodsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/audiodsp.h b/libffmpeg-avcodec/libavcodec/audiodsp.h new file mode 120000 index 0000000..cd7ceb7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/audiodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/audiodsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/audiotoolboxdec.c b/libffmpeg-avcodec/libavcodec/audiotoolboxdec.c new file mode 120000 index 0000000..fbb169a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/audiotoolboxdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/audiotoolboxdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/audiotoolboxenc.c b/libffmpeg-avcodec/libavcodec/audiotoolboxenc.c new file mode 120000 index 0000000..9bf7050 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/audiotoolboxenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/audiotoolboxenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/aura.c b/libffmpeg-avcodec/libavcodec/aura.c new file mode 120000 index 0000000..8a1f570 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/aura.c @@ -0,0 +1 @@ +../../upstream/libavcodec/aura.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/av1.h b/libffmpeg-avcodec/libavcodec/av1.h new file mode 120000 index 0000000..670d05d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/av1.h @@ -0,0 +1 @@ +../../upstream/libavcodec/av1.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/av1_levels.c b/libffmpeg-avcodec/libavcodec/av1_levels.c new file mode 120000 index 0000000..3552712 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/av1_levels.c @@ -0,0 +1 @@ +../../upstream/libavcodec/av1_levels.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/av1_levels.h b/libffmpeg-avcodec/libavcodec/av1_levels.h new file mode 120000 index 0000000..7deeec3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/av1_levels.h @@ -0,0 +1 @@ +../../upstream/libavcodec/av1_levels.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/av1_parse.c b/libffmpeg-avcodec/libavcodec/av1_parse.c new file mode 120000 index 0000000..876285f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/av1_parse.c @@ -0,0 +1 @@ +../../upstream/libavcodec/av1_parse.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/av1_parse.h b/libffmpeg-avcodec/libavcodec/av1_parse.h new file mode 120000 index 0000000..8341eb1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/av1_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/av1_parse.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/av1_parser.c b/libffmpeg-avcodec/libavcodec/av1_parser.c new file mode 120000 index 0000000..fe78813 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/av1_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/av1_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/av1dec.c b/libffmpeg-avcodec/libavcodec/av1dec.c new file mode 120000 index 0000000..86a2ee1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/av1dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/av1dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/av1dec.h b/libffmpeg-avcodec/libavcodec/av1dec.h new file mode 120000 index 0000000..b6de1eb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/av1dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/av1dec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avcodec.c b/libffmpeg-avcodec/libavcodec/avcodec.c new file mode 120000 index 0000000..e6b841e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avcodec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/avcodec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avcodec.h b/libffmpeg-avcodec/libavcodec/avcodec.h new file mode 120000 index 0000000..3dc6795 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avcodec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/avcodec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avcodec_internal.h b/libffmpeg-avcodec/libavcodec/avcodec_internal.h new file mode 120000 index 0000000..f5727c0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avcodec_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/avcodec_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avdct.c b/libffmpeg-avcodec/libavcodec/avdct.c new file mode 120000 index 0000000..05a86d1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avdct.c @@ -0,0 +1 @@ +../../upstream/libavcodec/avdct.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avdct.h b/libffmpeg-avcodec/libavcodec/avdct.h new file mode 120000 index 0000000..024ac33 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avdct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/avdct.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avfft.c b/libffmpeg-avcodec/libavcodec/avfft.c new file mode 120000 index 0000000..9d191e3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avfft.c @@ -0,0 +1 @@ +../../upstream/libavcodec/avfft.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avfft.h b/libffmpeg-avcodec/libavcodec/avfft.h new file mode 120000 index 0000000..709c474 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avfft.h @@ -0,0 +1 @@ +../../upstream/libavcodec/avfft.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avrndec.c b/libffmpeg-avcodec/libavcodec/avrndec.c new file mode 120000 index 0000000..b38dd52 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avrndec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/avrndec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avs.c b/libffmpeg-avcodec/libavcodec/avs.c new file mode 120000 index 0000000..ea36faf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avs.c @@ -0,0 +1 @@ +../../upstream/libavcodec/avs.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avs2.c b/libffmpeg-avcodec/libavcodec/avs2.c new file mode 120000 index 0000000..00d6ba6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avs2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/avs2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avs2.h b/libffmpeg-avcodec/libavcodec/avs2.h new file mode 120000 index 0000000..09d4c18 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avs2.h @@ -0,0 +1 @@ +../../upstream/libavcodec/avs2.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avs2_parser.c b/libffmpeg-avcodec/libavcodec/avs2_parser.c new file mode 120000 index 0000000..60922eb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avs2_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/avs2_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avs3.h b/libffmpeg-avcodec/libavcodec/avs3.h new file mode 120000 index 0000000..2e0e468 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avs3.h @@ -0,0 +1 @@ +../../upstream/libavcodec/avs3.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avs3_parser.c b/libffmpeg-avcodec/libavcodec/avs3_parser.c new file mode 120000 index 0000000..6b5a7b7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avs3_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/avs3_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avuidec.c b/libffmpeg-avcodec/libavcodec/avuidec.c new file mode 120000 index 0000000..169d9f3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avuidec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/avuidec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/avuienc.c b/libffmpeg-avcodec/libavcodec/avuienc.c new file mode 120000 index 0000000..e8175d2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/avuienc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/avuienc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bethsoftvideo.c b/libffmpeg-avcodec/libavcodec/bethsoftvideo.c new file mode 120000 index 0000000..aefe946 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bethsoftvideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bethsoftvideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bethsoftvideo.h b/libffmpeg-avcodec/libavcodec/bethsoftvideo.h new file mode 120000 index 0000000..3173167 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bethsoftvideo.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bethsoftvideo.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bfi.c b/libffmpeg-avcodec/libavcodec/bfi.c new file mode 120000 index 0000000..6b24b48 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bfi.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bfi.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bgmc.c b/libffmpeg-avcodec/libavcodec/bgmc.c new file mode 120000 index 0000000..18b6a23 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bgmc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bgmc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bgmc.h b/libffmpeg-avcodec/libavcodec/bgmc.h new file mode 120000 index 0000000..2169c7b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bgmc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bgmc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bink.c b/libffmpeg-avcodec/libavcodec/bink.c new file mode 120000 index 0000000..1ef0ff2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bink.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bink.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/binkaudio.c b/libffmpeg-avcodec/libavcodec/binkaudio.c new file mode 120000 index 0000000..9674a30 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/binkaudio.c @@ -0,0 +1 @@ +../../upstream/libavcodec/binkaudio.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/binkdata.h b/libffmpeg-avcodec/libavcodec/binkdata.h new file mode 120000 index 0000000..a3ad58f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/binkdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/binkdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/binkdsp.c b/libffmpeg-avcodec/libavcodec/binkdsp.c new file mode 120000 index 0000000..573fecf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/binkdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/binkdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/binkdsp.h b/libffmpeg-avcodec/libavcodec/binkdsp.h new file mode 120000 index 0000000..e7a8de8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/binkdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/binkdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bintext.c b/libffmpeg-avcodec/libavcodec/bintext.c new file mode 120000 index 0000000..62c4eaa --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bintext.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bintext.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bintext.h b/libffmpeg-avcodec/libavcodec/bintext.h new file mode 120000 index 0000000..a581f70 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bintext.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bintext.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bit_depth_template.c b/libffmpeg-avcodec/libavcodec/bit_depth_template.c new file mode 120000 index 0000000..6d9a058 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bit_depth_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bit_depth_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bitpacked_dec.c b/libffmpeg-avcodec/libavcodec/bitpacked_dec.c new file mode 120000 index 0000000..3fc79e3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bitpacked_dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bitpacked_dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bitpacked_enc.c b/libffmpeg-avcodec/libavcodec/bitpacked_enc.c new file mode 120000 index 0000000..bb9d577 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bitpacked_enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bitpacked_enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bitstream.c b/libffmpeg-avcodec/libavcodec/bitstream.c new file mode 120000 index 0000000..2ed9085 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bitstream.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bitstream.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bitstream.h b/libffmpeg-avcodec/libavcodec/bitstream.h new file mode 120000 index 0000000..b472b7a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bitstream.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bitstream.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bitstream_filters.c b/libffmpeg-avcodec/libavcodec/bitstream_filters.c new file mode 120000 index 0000000..658e612 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bitstream_filters.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bitstream_filters.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bitstream_template.h b/libffmpeg-avcodec/libavcodec/bitstream_template.h new file mode 120000 index 0000000..51c40f4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bitstream_template.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bitstream_template.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/blockdsp.c b/libffmpeg-avcodec/libavcodec/blockdsp.c new file mode 120000 index 0000000..7e7c080 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/blockdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/blockdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/blockdsp.h b/libffmpeg-avcodec/libavcodec/blockdsp.h new file mode 120000 index 0000000..817531a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/blockdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/blockdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bmp.c b/libffmpeg-avcodec/libavcodec/bmp.c new file mode 120000 index 0000000..2f76293 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bmp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bmp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bmp.h b/libffmpeg-avcodec/libavcodec/bmp.h new file mode 120000 index 0000000..6d851ad --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bmp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bmp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bmp_parser.c b/libffmpeg-avcodec/libavcodec/bmp_parser.c new file mode 120000 index 0000000..de4f57f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bmp_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bmp_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bmpenc.c b/libffmpeg-avcodec/libavcodec/bmpenc.c new file mode 120000 index 0000000..2edcc2a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bmpenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bmpenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bmvaudio.c b/libffmpeg-avcodec/libavcodec/bmvaudio.c new file mode 120000 index 0000000..668eb38 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bmvaudio.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bmvaudio.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bmvvideo.c b/libffmpeg-avcodec/libavcodec/bmvvideo.c new file mode 120000 index 0000000..4c81e80 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bmvvideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bmvvideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bonk.c b/libffmpeg-avcodec/libavcodec/bonk.c new file mode 120000 index 0000000..247a1fc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bonk.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bonk.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/brenderpix.c b/libffmpeg-avcodec/libavcodec/brenderpix.c new file mode 120000 index 0000000..4921117 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/brenderpix.c @@ -0,0 +1 @@ +../../upstream/libavcodec/brenderpix.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bsf.c b/libffmpeg-avcodec/libavcodec/bsf.c new file mode 120000 index 0000000..a8a436d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bsf.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bsf.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bsf.h b/libffmpeg-avcodec/libavcodec/bsf.h new file mode 120000 index 0000000..0a3826c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bsf.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bsf.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bsf_internal.h b/libffmpeg-avcodec/libavcodec/bsf_internal.h new file mode 120000 index 0000000..4f2a067 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bsf_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bsf_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bsf_list.c b/libffmpeg-avcodec/libavcodec/bsf_list.c new file mode 120000 index 0000000..7b0cd2d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bsf_list.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bsf_list.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bswapdsp.c b/libffmpeg-avcodec/libavcodec/bswapdsp.c new file mode 120000 index 0000000..4b9cdd7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bswapdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/bswapdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bswapdsp.h b/libffmpeg-avcodec/libavcodec/bswapdsp.h new file mode 120000 index 0000000..b611a86 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bswapdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bswapdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/bytestream.h b/libffmpeg-avcodec/libavcodec/bytestream.h new file mode 120000 index 0000000..6bb451b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/bytestream.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bytestream.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/c93.c b/libffmpeg-avcodec/libavcodec/c93.c new file mode 120000 index 0000000..fffee32 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/c93.c @@ -0,0 +1 @@ +../../upstream/libavcodec/c93.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cabac.c b/libffmpeg-avcodec/libavcodec/cabac.c new file mode 120000 index 0000000..3d3e4e8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cabac.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cabac.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cabac.h b/libffmpeg-avcodec/libavcodec/cabac.h new file mode 120000 index 0000000..ef8e7ed --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cabac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cabac.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cabac_functions.h b/libffmpeg-avcodec/libavcodec/cabac_functions.h new file mode 120000 index 0000000..411701e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cabac_functions.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cabac_functions.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/canopus.c b/libffmpeg-avcodec/libavcodec/canopus.c new file mode 120000 index 0000000..5e99536 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/canopus.c @@ -0,0 +1 @@ +../../upstream/libavcodec/canopus.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/canopus.h b/libffmpeg-avcodec/libavcodec/canopus.h new file mode 120000 index 0000000..9319e08 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/canopus.h @@ -0,0 +1 @@ +../../upstream/libavcodec/canopus.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cavs.c b/libffmpeg-avcodec/libavcodec/cavs.c new file mode 120000 index 0000000..5ce7e94 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cavs.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cavs.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cavs.h b/libffmpeg-avcodec/libavcodec/cavs.h new file mode 120000 index 0000000..f608184 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cavs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cavs.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cavs_parser.c b/libffmpeg-avcodec/libavcodec/cavs_parser.c new file mode 120000 index 0000000..811964b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cavs_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cavs_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cavsdata.c b/libffmpeg-avcodec/libavcodec/cavsdata.c new file mode 120000 index 0000000..cf46c29 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cavsdata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cavsdata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cavsdec.c b/libffmpeg-avcodec/libavcodec/cavsdec.c new file mode 120000 index 0000000..984040e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cavsdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cavsdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cavsdsp.c b/libffmpeg-avcodec/libavcodec/cavsdsp.c new file mode 120000 index 0000000..b436ae9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cavsdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cavsdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cavsdsp.h b/libffmpeg-avcodec/libavcodec/cavsdsp.h new file mode 120000 index 0000000..a44c864 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cavsdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cavsdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbrt_data.c b/libffmpeg-avcodec/libavcodec/cbrt_data.c new file mode 120000 index 0000000..84bb99b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbrt_data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbrt_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbrt_data.h b/libffmpeg-avcodec/libavcodec/cbrt_data.h new file mode 120000 index 0000000..5549b67 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbrt_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbrt_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbrt_data_fixed.c b/libffmpeg-avcodec/libavcodec/cbrt_data_fixed.c new file mode 120000 index 0000000..c43a821 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbrt_data_fixed.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbrt_data_fixed.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbrt_fixed_tablegen.c b/libffmpeg-avcodec/libavcodec/cbrt_fixed_tablegen.c new file mode 120000 index 0000000..2a1fae6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbrt_fixed_tablegen.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbrt_fixed_tablegen.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbrt_tablegen.c b/libffmpeg-avcodec/libavcodec/cbrt_tablegen.c new file mode 120000 index 0000000..569453c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbrt_tablegen.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbrt_tablegen.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbrt_tablegen.h b/libffmpeg-avcodec/libavcodec/cbrt_tablegen.h new file mode 120000 index 0000000..1db859b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbrt_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbrt_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbrt_tablegen_template.c b/libffmpeg-avcodec/libavcodec/cbrt_tablegen_template.c new file mode 120000 index 0000000..3ba4478 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbrt_tablegen_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbrt_tablegen_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs.c b/libffmpeg-avcodec/libavcodec/cbs.c new file mode 120000 index 0000000..76985a9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs.h b/libffmpeg-avcodec/libavcodec/cbs.h new file mode 120000 index 0000000..d467bde --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_av1.c b/libffmpeg-avcodec/libavcodec/cbs_av1.c new file mode 120000 index 0000000..0b5f87e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_av1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_av1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_av1.h b/libffmpeg-avcodec/libavcodec/cbs_av1.h new file mode 120000 index 0000000..cfee867 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_av1.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_av1.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_av1_syntax_template.c b/libffmpeg-avcodec/libavcodec/cbs_av1_syntax_template.c new file mode 120000 index 0000000..bbce710 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_av1_syntax_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_av1_syntax_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_bsf.c b/libffmpeg-avcodec/libavcodec/cbs_bsf.c new file mode 120000 index 0000000..20c6928 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_bsf.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_bsf.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_bsf.h b/libffmpeg-avcodec/libavcodec/cbs_bsf.h new file mode 120000 index 0000000..3e98098 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_bsf.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_bsf.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_h264.h b/libffmpeg-avcodec/libavcodec/cbs_h264.h new file mode 120000 index 0000000..62e3ff8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_h264.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_h264.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_h2645.c b/libffmpeg-avcodec/libavcodec/cbs_h2645.c new file mode 120000 index 0000000..232aa2c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_h2645.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_h2645.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_h2645.h b/libffmpeg-avcodec/libavcodec/cbs_h2645.h new file mode 120000 index 0000000..ec15337 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_h2645.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_h2645.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_h264_syntax_template.c b/libffmpeg-avcodec/libavcodec/cbs_h264_syntax_template.c new file mode 120000 index 0000000..3f3d719 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_h264_syntax_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_h264_syntax_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_h265.h b/libffmpeg-avcodec/libavcodec/cbs_h265.h new file mode 120000 index 0000000..8726235 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_h265.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_h265.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_h265_syntax_template.c b/libffmpeg-avcodec/libavcodec/cbs_h265_syntax_template.c new file mode 120000 index 0000000..287e9ab --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_h265_syntax_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_h265_syntax_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_h266.h b/libffmpeg-avcodec/libavcodec/cbs_h266.h new file mode 120000 index 0000000..949eb16 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_h266.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_h266.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_h266_syntax_template.c b/libffmpeg-avcodec/libavcodec/cbs_h266_syntax_template.c new file mode 120000 index 0000000..7dc7a65 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_h266_syntax_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_h266_syntax_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_internal.h b/libffmpeg-avcodec/libavcodec/cbs_internal.h new file mode 120000 index 0000000..07101d9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_jpeg.c b/libffmpeg-avcodec/libavcodec/cbs_jpeg.c new file mode 120000 index 0000000..2ccc550 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_jpeg.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_jpeg.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_jpeg.h b/libffmpeg-avcodec/libavcodec/cbs_jpeg.h new file mode 120000 index 0000000..cf72746 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_jpeg.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_jpeg.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_jpeg_syntax_template.c b/libffmpeg-avcodec/libavcodec/cbs_jpeg_syntax_template.c new file mode 120000 index 0000000..41de237 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_jpeg_syntax_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_jpeg_syntax_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_mpeg2.c b/libffmpeg-avcodec/libavcodec/cbs_mpeg2.c new file mode 120000 index 0000000..f03096b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_mpeg2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_mpeg2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_mpeg2.h b/libffmpeg-avcodec/libavcodec/cbs_mpeg2.h new file mode 120000 index 0000000..973e304 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_mpeg2.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_mpeg2.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_mpeg2_syntax_template.c b/libffmpeg-avcodec/libavcodec/cbs_mpeg2_syntax_template.c new file mode 120000 index 0000000..92c158b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_mpeg2_syntax_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_mpeg2_syntax_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_sei.c b/libffmpeg-avcodec/libavcodec/cbs_sei.c new file mode 120000 index 0000000..664756b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_sei.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_sei.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_sei.h b/libffmpeg-avcodec/libavcodec/cbs_sei.h new file mode 120000 index 0000000..7274a78 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_sei.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_sei.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_sei_syntax_template.c b/libffmpeg-avcodec/libavcodec/cbs_sei_syntax_template.c new file mode 120000 index 0000000..a558476 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_sei_syntax_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_sei_syntax_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_vp8.c b/libffmpeg-avcodec/libavcodec/cbs_vp8.c new file mode 120000 index 0000000..d8891f9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_vp8.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_vp8.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_vp8.h b/libffmpeg-avcodec/libavcodec/cbs_vp8.h new file mode 120000 index 0000000..1e7a6a1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_vp8.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_vp8.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_vp8_syntax_template.c b/libffmpeg-avcodec/libavcodec/cbs_vp8_syntax_template.c new file mode 120000 index 0000000..9033b85 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_vp8_syntax_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_vp8_syntax_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_vp9.c b/libffmpeg-avcodec/libavcodec/cbs_vp9.c new file mode 120000 index 0000000..8862138 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_vp9.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_vp9.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_vp9.h b/libffmpeg-avcodec/libavcodec/cbs_vp9.h new file mode 120000 index 0000000..242707e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_vp9.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_vp9.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cbs_vp9_syntax_template.c b/libffmpeg-avcodec/libavcodec/cbs_vp9_syntax_template.c new file mode 120000 index 0000000..1b1a7ed --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cbs_vp9_syntax_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_vp9_syntax_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ccaption_dec.c b/libffmpeg-avcodec/libavcodec/ccaption_dec.c new file mode 120000 index 0000000..2f35b0c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ccaption_dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ccaption_dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cdgraphics.c b/libffmpeg-avcodec/libavcodec/cdgraphics.c new file mode 120000 index 0000000..d44d825 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cdgraphics.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cdgraphics.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cdtoons.c b/libffmpeg-avcodec/libavcodec/cdtoons.c new file mode 120000 index 0000000..6e8f263 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cdtoons.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cdtoons.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cdxl.c b/libffmpeg-avcodec/libavcodec/cdxl.c new file mode 120000 index 0000000..c757f2d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cdxl.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cdxl.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/celp_filters.c b/libffmpeg-avcodec/libavcodec/celp_filters.c new file mode 120000 index 0000000..a71da1a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/celp_filters.c @@ -0,0 +1 @@ +../../upstream/libavcodec/celp_filters.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/celp_filters.h b/libffmpeg-avcodec/libavcodec/celp_filters.h new file mode 120000 index 0000000..4bbbaff --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/celp_filters.h @@ -0,0 +1 @@ +../../upstream/libavcodec/celp_filters.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/celp_math.c b/libffmpeg-avcodec/libavcodec/celp_math.c new file mode 120000 index 0000000..3037921 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/celp_math.c @@ -0,0 +1 @@ +../../upstream/libavcodec/celp_math.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/celp_math.h b/libffmpeg-avcodec/libavcodec/celp_math.h new file mode 120000 index 0000000..843ce6e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/celp_math.h @@ -0,0 +1 @@ +../../upstream/libavcodec/celp_math.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cfhd.c b/libffmpeg-avcodec/libavcodec/cfhd.c new file mode 120000 index 0000000..b41d90b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cfhd.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cfhd.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cfhd.h b/libffmpeg-avcodec/libavcodec/cfhd.h new file mode 120000 index 0000000..60e0b7c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cfhd.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cfhd.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cfhddata.c b/libffmpeg-avcodec/libavcodec/cfhddata.c new file mode 120000 index 0000000..e757efa --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cfhddata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cfhddata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cfhddsp.c b/libffmpeg-avcodec/libavcodec/cfhddsp.c new file mode 120000 index 0000000..fd926f3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cfhddsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cfhddsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cfhddsp.h b/libffmpeg-avcodec/libavcodec/cfhddsp.h new file mode 120000 index 0000000..7427710 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cfhddsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cfhddsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cfhdenc.c b/libffmpeg-avcodec/libavcodec/cfhdenc.c new file mode 120000 index 0000000..ee00385 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cfhdenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cfhdenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cfhdencdsp.c b/libffmpeg-avcodec/libavcodec/cfhdencdsp.c new file mode 120000 index 0000000..88dce2c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cfhdencdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cfhdencdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cfhdencdsp.h b/libffmpeg-avcodec/libavcodec/cfhdencdsp.h new file mode 120000 index 0000000..97bb8dc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cfhdencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cfhdencdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cga_data.c b/libffmpeg-avcodec/libavcodec/cga_data.c new file mode 120000 index 0000000..70fa21a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cga_data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cga_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cga_data.h b/libffmpeg-avcodec/libavcodec/cga_data.h new file mode 120000 index 0000000..dcd7cf7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cga_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cga_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cinepak.c b/libffmpeg-avcodec/libavcodec/cinepak.c new file mode 120000 index 0000000..cce4dfd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cinepak.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cinepak.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cinepakenc.c b/libffmpeg-avcodec/libavcodec/cinepakenc.c new file mode 120000 index 0000000..24ece00 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cinepakenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cinepakenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/clearvideo.c b/libffmpeg-avcodec/libavcodec/clearvideo.c new file mode 120000 index 0000000..4a4004f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/clearvideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/clearvideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/clearvideodata.h b/libffmpeg-avcodec/libavcodec/clearvideodata.h new file mode 120000 index 0000000..22f8170 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/clearvideodata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/clearvideodata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cljrdec.c b/libffmpeg-avcodec/libavcodec/cljrdec.c new file mode 120000 index 0000000..a805cce --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cljrdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cljrdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cljrenc.c b/libffmpeg-avcodec/libavcodec/cljrenc.c new file mode 120000 index 0000000..1b96787 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cljrenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cljrenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cllc.c b/libffmpeg-avcodec/libavcodec/cllc.c new file mode 120000 index 0000000..c6ffba0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cllc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cllc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cngdec.c b/libffmpeg-avcodec/libavcodec/cngdec.c new file mode 120000 index 0000000..e5efa00 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cngdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cngdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cngenc.c b/libffmpeg-avcodec/libavcodec/cngenc.c new file mode 120000 index 0000000..4d0179b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cngenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cngenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/codec.h b/libffmpeg-avcodec/libavcodec/codec.h new file mode 120000 index 0000000..ddef210 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/codec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/codec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/codec2utils.h b/libffmpeg-avcodec/libavcodec/codec2utils.h new file mode 120000 index 0000000..a397cf0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/codec2utils.h @@ -0,0 +1 @@ +../../upstream/libavcodec/codec2utils.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/codec_desc.c b/libffmpeg-avcodec/libavcodec/codec_desc.c new file mode 120000 index 0000000..678e0de --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/codec_desc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/codec_desc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/codec_desc.h b/libffmpeg-avcodec/libavcodec/codec_desc.h new file mode 120000 index 0000000..3def436 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/codec_desc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/codec_desc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/codec_id.h b/libffmpeg-avcodec/libavcodec/codec_id.h new file mode 120000 index 0000000..836fc7d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/codec_id.h @@ -0,0 +1 @@ +../../upstream/libavcodec/codec_id.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/codec_internal.h b/libffmpeg-avcodec/libavcodec/codec_internal.h new file mode 120000 index 0000000..ab6bc5c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/codec_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/codec_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/codec_list.c b/libffmpeg-avcodec/libavcodec/codec_list.c new file mode 120000 index 0000000..bdc5118 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/codec_list.c @@ -0,0 +1 @@ +../../upstream/libavcodec/codec_list.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/codec_par.c b/libffmpeg-avcodec/libavcodec/codec_par.c new file mode 120000 index 0000000..9f327a6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/codec_par.c @@ -0,0 +1 @@ +../../upstream/libavcodec/codec_par.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/codec_par.h b/libffmpeg-avcodec/libavcodec/codec_par.h new file mode 120000 index 0000000..99a8168 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/codec_par.h @@ -0,0 +1 @@ +../../upstream/libavcodec/codec_par.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cook.c b/libffmpeg-avcodec/libavcodec/cook.c new file mode 120000 index 0000000..5a00a37 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cook.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cook.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cook_parser.c b/libffmpeg-avcodec/libavcodec/cook_parser.c new file mode 120000 index 0000000..623a301 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cook_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cook_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cookdata.h b/libffmpeg-avcodec/libavcodec/cookdata.h new file mode 120000 index 0000000..84a296c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cookdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cookdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/copy_block.h b/libffmpeg-avcodec/libavcodec/copy_block.h new file mode 120000 index 0000000..601992c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/copy_block.h @@ -0,0 +1 @@ +../../upstream/libavcodec/copy_block.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cpia.c b/libffmpeg-avcodec/libavcodec/cpia.c new file mode 120000 index 0000000..2e24b2c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cpia.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cpia.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cri.c b/libffmpeg-avcodec/libavcodec/cri.c new file mode 120000 index 0000000..10c8331 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cri.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cri.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cri_parser.c b/libffmpeg-avcodec/libavcodec/cri_parser.c new file mode 120000 index 0000000..9a1340a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cri_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cri_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cscd.c b/libffmpeg-avcodec/libavcodec/cscd.c new file mode 120000 index 0000000..7e5c45e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cscd.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cscd.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cuviddec.c b/libffmpeg-avcodec/libavcodec/cuviddec.c new file mode 120000 index 0000000..6af9962 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cuviddec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cuviddec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/cyuv.c b/libffmpeg-avcodec/libavcodec/cyuv.c new file mode 120000 index 0000000..699c834 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/cyuv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/cyuv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/d3d11va.c b/libffmpeg-avcodec/libavcodec/d3d11va.c new file mode 120000 index 0000000..1764ce4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/d3d11va.c @@ -0,0 +1 @@ +../../upstream/libavcodec/d3d11va.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/d3d11va.h b/libffmpeg-avcodec/libavcodec/d3d11va.h new file mode 120000 index 0000000..ba7704c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/d3d11va.h @@ -0,0 +1 @@ +../../upstream/libavcodec/d3d11va.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/d3d12va_av1.c b/libffmpeg-avcodec/libavcodec/d3d12va_av1.c new file mode 120000 index 0000000..9295e79 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/d3d12va_av1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/d3d12va_av1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/d3d12va_decode.c b/libffmpeg-avcodec/libavcodec/d3d12va_decode.c new file mode 120000 index 0000000..d547e73 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/d3d12va_decode.c @@ -0,0 +1 @@ +../../upstream/libavcodec/d3d12va_decode.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/d3d12va_decode.h b/libffmpeg-avcodec/libavcodec/d3d12va_decode.h new file mode 120000 index 0000000..03dfb56 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/d3d12va_decode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/d3d12va_decode.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/d3d12va_h264.c b/libffmpeg-avcodec/libavcodec/d3d12va_h264.c new file mode 120000 index 0000000..56577c5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/d3d12va_h264.c @@ -0,0 +1 @@ +../../upstream/libavcodec/d3d12va_h264.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/d3d12va_hevc.c b/libffmpeg-avcodec/libavcodec/d3d12va_hevc.c new file mode 120000 index 0000000..8f84844 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/d3d12va_hevc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/d3d12va_hevc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/d3d12va_mpeg2.c b/libffmpeg-avcodec/libavcodec/d3d12va_mpeg2.c new file mode 120000 index 0000000..e1542e1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/d3d12va_mpeg2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/d3d12va_mpeg2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/d3d12va_vc1.c b/libffmpeg-avcodec/libavcodec/d3d12va_vc1.c new file mode 120000 index 0000000..cacfce8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/d3d12va_vc1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/d3d12va_vc1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/d3d12va_vp9.c b/libffmpeg-avcodec/libavcodec/d3d12va_vp9.c new file mode 120000 index 0000000..253b799 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/d3d12va_vp9.c @@ -0,0 +1 @@ +../../upstream/libavcodec/d3d12va_vp9.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca.c b/libffmpeg-avcodec/libavcodec/dca.c new file mode 120000 index 0000000..5e4d821 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dca.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca.h b/libffmpeg-avcodec/libavcodec/dca.h new file mode 120000 index 0000000..fd2b105 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca_core.c b/libffmpeg-avcodec/libavcodec/dca_core.c new file mode 120000 index 0000000..0242541 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca_core.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_core.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca_core.h b/libffmpeg-avcodec/libavcodec/dca_core.h new file mode 120000 index 0000000..c6cc324 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca_core.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_core.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca_exss.c b/libffmpeg-avcodec/libavcodec/dca_exss.c new file mode 120000 index 0000000..a5e190a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca_exss.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_exss.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca_exss.h b/libffmpeg-avcodec/libavcodec/dca_exss.h new file mode 120000 index 0000000..3b7e8f7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca_exss.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_exss.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca_lbr.c b/libffmpeg-avcodec/libavcodec/dca_lbr.c new file mode 120000 index 0000000..791944e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca_lbr.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_lbr.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca_lbr.h b/libffmpeg-avcodec/libavcodec/dca_lbr.h new file mode 120000 index 0000000..ea9c806 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca_lbr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_lbr.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca_parser.c b/libffmpeg-avcodec/libavcodec/dca_parser.c new file mode 120000 index 0000000..f5ecfd0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca_sample_rate_tab.c b/libffmpeg-avcodec/libavcodec/dca_sample_rate_tab.c new file mode 120000 index 0000000..1a0bb91 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca_sample_rate_tab.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_sample_rate_tab.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca_sample_rate_tab.h b/libffmpeg-avcodec/libavcodec/dca_sample_rate_tab.h new file mode 120000 index 0000000..1cc0188 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca_sample_rate_tab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_sample_rate_tab.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca_syncwords.h b/libffmpeg-avcodec/libavcodec/dca_syncwords.h new file mode 120000 index 0000000..2371d16 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca_syncwords.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_syncwords.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca_xll.c b/libffmpeg-avcodec/libavcodec/dca_xll.c new file mode 120000 index 0000000..39e10e3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca_xll.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_xll.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dca_xll.h b/libffmpeg-avcodec/libavcodec/dca_xll.h new file mode 120000 index 0000000..05935fe --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dca_xll.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_xll.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcaadpcm.c b/libffmpeg-avcodec/libavcodec/dcaadpcm.c new file mode 120000 index 0000000..0c864d1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcaadpcm.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dcaadpcm.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcaadpcm.h b/libffmpeg-avcodec/libavcodec/dcaadpcm.h new file mode 120000 index 0000000..9b50b7d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcaadpcm.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcaadpcm.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcadata.c b/libffmpeg-avcodec/libavcodec/dcadata.c new file mode 120000 index 0000000..e0941d5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcadata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dcadata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcadata.h b/libffmpeg-avcodec/libavcodec/dcadata.h new file mode 120000 index 0000000..11184e8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcadata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcadata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcadct.c b/libffmpeg-avcodec/libavcodec/dcadct.c new file mode 120000 index 0000000..e5efa78 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcadct.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dcadct.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcadct.h b/libffmpeg-avcodec/libavcodec/dcadct.h new file mode 120000 index 0000000..e859a27 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcadct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcadct.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcadec.c b/libffmpeg-avcodec/libavcodec/dcadec.c new file mode 120000 index 0000000..ca8e661 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcadec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dcadec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcadec.h b/libffmpeg-avcodec/libavcodec/dcadec.h new file mode 120000 index 0000000..aa84dbc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcadec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcadec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcadsp.c b/libffmpeg-avcodec/libavcodec/dcadsp.c new file mode 120000 index 0000000..1154147 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcadsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dcadsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcadsp.h b/libffmpeg-avcodec/libavcodec/dcadsp.h new file mode 120000 index 0000000..f2ad5f7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcadsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcadsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcaenc.c b/libffmpeg-avcodec/libavcodec/dcaenc.c new file mode 120000 index 0000000..fdc6e1e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcaenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dcaenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcaenc.h b/libffmpeg-avcodec/libavcodec/dcaenc.h new file mode 120000 index 0000000..0592bd2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcaenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcaenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcahuff.c b/libffmpeg-avcodec/libavcodec/dcahuff.c new file mode 120000 index 0000000..21e0880 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcahuff.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dcahuff.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcahuff.h b/libffmpeg-avcodec/libavcodec/dcahuff.h new file mode 120000 index 0000000..c28ec53 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcahuff.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcahuff.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dcamath.h b/libffmpeg-avcodec/libavcodec/dcamath.h new file mode 120000 index 0000000..012bbd8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dcamath.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcamath.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dct.h b/libffmpeg-avcodec/libavcodec/dct.h new file mode 120000 index 0000000..0984c27 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dct.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dct32.h b/libffmpeg-avcodec/libavcodec/dct32.h new file mode 120000 index 0000000..fbf31ca --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dct32.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dct32.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dct32_fixed.c b/libffmpeg-avcodec/libavcodec/dct32_fixed.c new file mode 120000 index 0000000..1d80f69 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dct32_fixed.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dct32_fixed.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dct32_float.c b/libffmpeg-avcodec/libavcodec/dct32_float.c new file mode 120000 index 0000000..cb181a1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dct32_float.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dct32_float.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dct32_template.c b/libffmpeg-avcodec/libavcodec/dct32_template.c new file mode 120000 index 0000000..832f7d6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dct32_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dct32_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dctref.c b/libffmpeg-avcodec/libavcodec/dctref.c new file mode 120000 index 0000000..1537625 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dctref.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dctref.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dctref.h b/libffmpeg-avcodec/libavcodec/dctref.h new file mode 120000 index 0000000..1a866aa --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dctref.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dctref.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dds.c b/libffmpeg-avcodec/libavcodec/dds.c new file mode 120000 index 0000000..d930910 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dds.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dds.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/decode.c b/libffmpeg-avcodec/libavcodec/decode.c new file mode 120000 index 0000000..e2a8136 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/decode.c @@ -0,0 +1 @@ +../../upstream/libavcodec/decode.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/decode.h b/libffmpeg-avcodec/libavcodec/decode.h new file mode 120000 index 0000000..a98bacc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/decode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/decode.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/defs.h b/libffmpeg-avcodec/libavcodec/defs.h new file mode 120000 index 0000000..3d15a6a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/defs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/defs.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dfa.c b/libffmpeg-avcodec/libavcodec/dfa.c new file mode 120000 index 0000000..3b15181 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dfa.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dfa.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dfpwmdec.c b/libffmpeg-avcodec/libavcodec/dfpwmdec.c new file mode 120000 index 0000000..bbee16f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dfpwmdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dfpwmdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dfpwmenc.c b/libffmpeg-avcodec/libavcodec/dfpwmenc.c new file mode 120000 index 0000000..74a0e96 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dfpwmenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dfpwmenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dirac.c b/libffmpeg-avcodec/libavcodec/dirac.c new file mode 120000 index 0000000..b1b4737 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dirac.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dirac.h b/libffmpeg-avcodec/libavcodec/dirac.h new file mode 120000 index 0000000..49fd0ea --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dirac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dirac_arith.c b/libffmpeg-avcodec/libavcodec/dirac_arith.c new file mode 120000 index 0000000..a669028 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dirac_arith.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac_arith.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dirac_arith.h b/libffmpeg-avcodec/libavcodec/dirac_arith.h new file mode 120000 index 0000000..9dec276 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dirac_arith.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac_arith.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dirac_dwt.c b/libffmpeg-avcodec/libavcodec/dirac_dwt.c new file mode 120000 index 0000000..efe3e7b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dirac_dwt.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac_dwt.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dirac_dwt.h b/libffmpeg-avcodec/libavcodec/dirac_dwt.h new file mode 120000 index 0000000..1340e10 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dirac_dwt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac_dwt.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dirac_dwt_template.c b/libffmpeg-avcodec/libavcodec/dirac_dwt_template.c new file mode 120000 index 0000000..9582ebf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dirac_dwt_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac_dwt_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dirac_parser.c b/libffmpeg-avcodec/libavcodec/dirac_parser.c new file mode 120000 index 0000000..b7b41a5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dirac_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dirac_vlc.c b/libffmpeg-avcodec/libavcodec/dirac_vlc.c new file mode 120000 index 0000000..2142c50 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dirac_vlc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac_vlc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dirac_vlc.h b/libffmpeg-avcodec/libavcodec/dirac_vlc.h new file mode 120000 index 0000000..a68a5b9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dirac_vlc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac_vlc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/diracdec.c b/libffmpeg-avcodec/libavcodec/diracdec.c new file mode 120000 index 0000000..252fd6d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/diracdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/diracdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/diracdsp.c b/libffmpeg-avcodec/libavcodec/diracdsp.c new file mode 120000 index 0000000..6215d2e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/diracdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/diracdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/diracdsp.h b/libffmpeg-avcodec/libavcodec/diracdsp.h new file mode 120000 index 0000000..680b4d0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/diracdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/diracdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/diractab.c b/libffmpeg-avcodec/libavcodec/diractab.c new file mode 120000 index 0000000..6675038 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/diractab.c @@ -0,0 +1 @@ +../../upstream/libavcodec/diractab.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/diractab.h b/libffmpeg-avcodec/libavcodec/diractab.h new file mode 120000 index 0000000..76198f8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/diractab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/diractab.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dnxhd_parser.c b/libffmpeg-avcodec/libavcodec/dnxhd_parser.c new file mode 120000 index 0000000..a099074 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dnxhd_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dnxhd_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dnxhddata.c b/libffmpeg-avcodec/libavcodec/dnxhddata.c new file mode 120000 index 0000000..ed8123d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dnxhddata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dnxhddata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dnxhddata.h b/libffmpeg-avcodec/libavcodec/dnxhddata.h new file mode 120000 index 0000000..2ff32c5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dnxhddata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dnxhddata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dnxhddec.c b/libffmpeg-avcodec/libavcodec/dnxhddec.c new file mode 120000 index 0000000..6accda9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dnxhddec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dnxhddec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dnxhdenc.c b/libffmpeg-avcodec/libavcodec/dnxhdenc.c new file mode 120000 index 0000000..3319822 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dnxhdenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dnxhdenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dnxhdenc.h b/libffmpeg-avcodec/libavcodec/dnxhdenc.h new file mode 120000 index 0000000..7426570 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dnxhdenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dnxhdenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dolby_e.c b/libffmpeg-avcodec/libavcodec/dolby_e.c new file mode 120000 index 0000000..f4caf4c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dolby_e.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dolby_e.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dolby_e.h b/libffmpeg-avcodec/libavcodec/dolby_e.h new file mode 120000 index 0000000..880b855 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dolby_e.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dolby_e.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dolby_e_parse.c b/libffmpeg-avcodec/libavcodec/dolby_e_parse.c new file mode 120000 index 0000000..4f6f647 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dolby_e_parse.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dolby_e_parse.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dolby_e_parser.c b/libffmpeg-avcodec/libavcodec/dolby_e_parser.c new file mode 120000 index 0000000..cbe0d71 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dolby_e_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dolby_e_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dovi_rpu.c b/libffmpeg-avcodec/libavcodec/dovi_rpu.c new file mode 120000 index 0000000..693275e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dovi_rpu.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dovi_rpu.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dovi_rpu.h b/libffmpeg-avcodec/libavcodec/dovi_rpu.h new file mode 120000 index 0000000..cc207b3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dovi_rpu.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dovi_rpu.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dovi_rpudec.c b/libffmpeg-avcodec/libavcodec/dovi_rpudec.c new file mode 120000 index 0000000..e26bb9a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dovi_rpudec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dovi_rpudec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dovi_rpuenc.c b/libffmpeg-avcodec/libavcodec/dovi_rpuenc.c new file mode 120000 index 0000000..1c83862 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dovi_rpuenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dovi_rpuenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dpcm.c b/libffmpeg-avcodec/libavcodec/dpcm.c new file mode 120000 index 0000000..37149f1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dpcm.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dpcm.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dpx.c b/libffmpeg-avcodec/libavcodec/dpx.c new file mode 120000 index 0000000..1ba0bdf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dpx.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dpx.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dpx_parser.c b/libffmpeg-avcodec/libavcodec/dpx_parser.c new file mode 120000 index 0000000..b1d2e77 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dpx_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dpx_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dpxenc.c b/libffmpeg-avcodec/libavcodec/dpxenc.c new file mode 120000 index 0000000..ad99bb3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dpxenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dpxenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dsd.c b/libffmpeg-avcodec/libavcodec/dsd.c new file mode 120000 index 0000000..89b83ea --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dsd.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dsd.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dsd.h b/libffmpeg-avcodec/libavcodec/dsd.h new file mode 120000 index 0000000..6a55879 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dsd.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dsd.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dsddec.c b/libffmpeg-avcodec/libavcodec/dsddec.c new file mode 120000 index 0000000..3d3e2c5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dsddec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dsddec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dsicinaudio.c b/libffmpeg-avcodec/libavcodec/dsicinaudio.c new file mode 120000 index 0000000..7652892 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dsicinaudio.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dsicinaudio.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dsicinvideo.c b/libffmpeg-avcodec/libavcodec/dsicinvideo.c new file mode 120000 index 0000000..73bd483 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dsicinvideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dsicinvideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dss_sp.c b/libffmpeg-avcodec/libavcodec/dss_sp.c new file mode 120000 index 0000000..d7875b7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dss_sp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dss_sp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dstdec.c b/libffmpeg-avcodec/libavcodec/dstdec.c new file mode 120000 index 0000000..25732dc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dstdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dstdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dv.c b/libffmpeg-avcodec/libavcodec/dv.c new file mode 120000 index 0000000..c826155 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dv.h b/libffmpeg-avcodec/libavcodec/dv.h new file mode 120000 index 0000000..34e64a8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dv.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dv.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dv_internal.h b/libffmpeg-avcodec/libavcodec/dv_internal.h new file mode 120000 index 0000000..9baecd9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dv_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dv_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dv_profile.c b/libffmpeg-avcodec/libavcodec/dv_profile.c new file mode 120000 index 0000000..0147fdc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dv_profile.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dv_profile.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dv_profile.h b/libffmpeg-avcodec/libavcodec/dv_profile.h new file mode 120000 index 0000000..b74e861 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dv_profile.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dv_profile.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dv_profile_internal.h b/libffmpeg-avcodec/libavcodec/dv_profile_internal.h new file mode 120000 index 0000000..7f0e8a2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dv_profile_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dv_profile_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dv_tablegen.c b/libffmpeg-avcodec/libavcodec/dv_tablegen.c new file mode 120000 index 0000000..6cc0e00 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dv_tablegen.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dv_tablegen.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dv_tablegen.h b/libffmpeg-avcodec/libavcodec/dv_tablegen.h new file mode 120000 index 0000000..c98421d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dv_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dv_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvaudio.h b/libffmpeg-avcodec/libavcodec/dvaudio.h new file mode 120000 index 0000000..7e8c29a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvaudio.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dvaudio.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvaudio_parser.c b/libffmpeg-avcodec/libavcodec/dvaudio_parser.c new file mode 120000 index 0000000..21054de --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvaudio_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvaudio_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvaudiodec.c b/libffmpeg-avcodec/libavcodec/dvaudiodec.c new file mode 120000 index 0000000..c4538f2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvaudiodec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvaudiodec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvbsub_parser.c b/libffmpeg-avcodec/libavcodec/dvbsub_parser.c new file mode 120000 index 0000000..2a56be9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvbsub_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvbsub_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvbsubdec.c b/libffmpeg-avcodec/libavcodec/dvbsubdec.c new file mode 120000 index 0000000..6b1773b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvbsubdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvbsubdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvbsubenc.c b/libffmpeg-avcodec/libavcodec/dvbsubenc.c new file mode 120000 index 0000000..0b23b7e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvbsubenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvbsubenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvbtxt.h b/libffmpeg-avcodec/libavcodec/dvbtxt.h new file mode 120000 index 0000000..a7560ba --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvbtxt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dvbtxt.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvd_nav_parser.c b/libffmpeg-avcodec/libavcodec/dvd_nav_parser.c new file mode 120000 index 0000000..6ddb6d8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvd_nav_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvd_nav_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvdata.c b/libffmpeg-avcodec/libavcodec/dvdata.c new file mode 120000 index 0000000..32224c8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvdata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvdata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvdata.h b/libffmpeg-avcodec/libavcodec/dvdata.h new file mode 120000 index 0000000..11b2424 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dvdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvdec.c b/libffmpeg-avcodec/libavcodec/dvdec.c new file mode 120000 index 0000000..48526ae --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvdsub.c b/libffmpeg-avcodec/libavcodec/dvdsub.c new file mode 120000 index 0000000..bae1c14 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvdsub.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvdsub.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvdsub.h b/libffmpeg-avcodec/libavcodec/dvdsub.h new file mode 120000 index 0000000..2d48d0b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvdsub.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dvdsub.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvdsub_parser.c b/libffmpeg-avcodec/libavcodec/dvdsub_parser.c new file mode 120000 index 0000000..2f65028 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvdsub_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvdsub_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvdsubdec.c b/libffmpeg-avcodec/libavcodec/dvdsubdec.c new file mode 120000 index 0000000..4629851 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvdsubdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvdsubdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvdsubenc.c b/libffmpeg-avcodec/libavcodec/dvdsubenc.c new file mode 120000 index 0000000..6ac7e2f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvdsubenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvdsubenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dvenc.c b/libffmpeg-avcodec/libavcodec/dvenc.c new file mode 120000 index 0000000..0f2641a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dvenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dvenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxa.c b/libffmpeg-avcodec/libavcodec/dxa.c new file mode 120000 index 0000000..543027f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxa.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dxa.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxtory.c b/libffmpeg-avcodec/libavcodec/dxtory.c new file mode 120000 index 0000000..552c041 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxtory.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dxtory.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxv.c b/libffmpeg-avcodec/libavcodec/dxv.c new file mode 120000 index 0000000..94d5a12 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dxv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxv.h b/libffmpeg-avcodec/libavcodec/dxv.h new file mode 120000 index 0000000..8699a7b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxv.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dxv.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxva2.c b/libffmpeg-avcodec/libavcodec/dxva2.c new file mode 120000 index 0000000..da12172 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxva2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dxva2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxva2.h b/libffmpeg-avcodec/libavcodec/dxva2.h new file mode 120000 index 0000000..bc58ee5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxva2.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dxva2.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxva2_av1.c b/libffmpeg-avcodec/libavcodec/dxva2_av1.c new file mode 120000 index 0000000..b9fdb7c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxva2_av1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dxva2_av1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxva2_h264.c b/libffmpeg-avcodec/libavcodec/dxva2_h264.c new file mode 120000 index 0000000..3bc21a2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxva2_h264.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dxva2_h264.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxva2_hevc.c b/libffmpeg-avcodec/libavcodec/dxva2_hevc.c new file mode 120000 index 0000000..830c17b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxva2_hevc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dxva2_hevc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxva2_internal.h b/libffmpeg-avcodec/libavcodec/dxva2_internal.h new file mode 120000 index 0000000..3b9ba0b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxva2_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dxva2_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxva2_mpeg2.c b/libffmpeg-avcodec/libavcodec/dxva2_mpeg2.c new file mode 120000 index 0000000..90ef217 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxva2_mpeg2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dxva2_mpeg2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxva2_vc1.c b/libffmpeg-avcodec/libavcodec/dxva2_vc1.c new file mode 120000 index 0000000..330e913 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxva2_vc1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dxva2_vc1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxva2_vp9.c b/libffmpeg-avcodec/libavcodec/dxva2_vp9.c new file mode 120000 index 0000000..d733455 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxva2_vp9.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dxva2_vp9.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dxvenc.c b/libffmpeg-avcodec/libavcodec/dxvenc.c new file mode 120000 index 0000000..d29e5c7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dxvenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dxvenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dynamic_hdr_vivid.c b/libffmpeg-avcodec/libavcodec/dynamic_hdr_vivid.c new file mode 120000 index 0000000..af66917 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dynamic_hdr_vivid.c @@ -0,0 +1 @@ +../../upstream/libavcodec/dynamic_hdr_vivid.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/dynamic_hdr_vivid.h b/libffmpeg-avcodec/libavcodec/dynamic_hdr_vivid.h new file mode 120000 index 0000000..7b5dbe5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/dynamic_hdr_vivid.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dynamic_hdr_vivid.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/eac3_data.c b/libffmpeg-avcodec/libavcodec/eac3_data.c new file mode 120000 index 0000000..f1e24fe --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/eac3_data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/eac3_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/eac3_data.h b/libffmpeg-avcodec/libavcodec/eac3_data.h new file mode 120000 index 0000000..76dacf4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/eac3_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/eac3_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/eac3dec.c b/libffmpeg-avcodec/libavcodec/eac3dec.c new file mode 120000 index 0000000..7791995 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/eac3dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/eac3dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/eac3enc.c b/libffmpeg-avcodec/libavcodec/eac3enc.c new file mode 120000 index 0000000..1a0e7d4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/eac3enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/eac3enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/eac3enc.h b/libffmpeg-avcodec/libavcodec/eac3enc.h new file mode 120000 index 0000000..dfb5315 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/eac3enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/eac3enc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/eacmv.c b/libffmpeg-avcodec/libavcodec/eacmv.c new file mode 120000 index 0000000..6e3854e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/eacmv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/eacmv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/eaidct.c b/libffmpeg-avcodec/libavcodec/eaidct.c new file mode 120000 index 0000000..5447fd0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/eaidct.c @@ -0,0 +1 @@ +../../upstream/libavcodec/eaidct.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/eaidct.h b/libffmpeg-avcodec/libavcodec/eaidct.h new file mode 120000 index 0000000..408fcc5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/eaidct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/eaidct.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/eamad.c b/libffmpeg-avcodec/libavcodec/eamad.c new file mode 120000 index 0000000..3412fcb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/eamad.c @@ -0,0 +1 @@ +../../upstream/libavcodec/eamad.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/eatgq.c b/libffmpeg-avcodec/libavcodec/eatgq.c new file mode 120000 index 0000000..1ca0d9c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/eatgq.c @@ -0,0 +1 @@ +../../upstream/libavcodec/eatgq.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/eatgv.c b/libffmpeg-avcodec/libavcodec/eatgv.c new file mode 120000 index 0000000..ac29d77 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/eatgv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/eatgv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/eatqi.c b/libffmpeg-avcodec/libavcodec/eatqi.c new file mode 120000 index 0000000..76517dd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/eatqi.c @@ -0,0 +1 @@ +../../upstream/libavcodec/eatqi.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/elbg.c b/libffmpeg-avcodec/libavcodec/elbg.c new file mode 120000 index 0000000..51574d5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/elbg.c @@ -0,0 +1 @@ +../../upstream/libavcodec/elbg.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/elbg.h b/libffmpeg-avcodec/libavcodec/elbg.h new file mode 120000 index 0000000..48a2946 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/elbg.h @@ -0,0 +1 @@ +../../upstream/libavcodec/elbg.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/elsdec.c b/libffmpeg-avcodec/libavcodec/elsdec.c new file mode 120000 index 0000000..bcc12ee --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/elsdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/elsdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/elsdec.h b/libffmpeg-avcodec/libavcodec/elsdec.h new file mode 120000 index 0000000..41a37d9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/elsdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/elsdec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/encode.c b/libffmpeg-avcodec/libavcodec/encode.c new file mode 120000 index 0000000..c5bc4b0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/encode.c @@ -0,0 +1 @@ +../../upstream/libavcodec/encode.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/encode.h b/libffmpeg-avcodec/libavcodec/encode.h new file mode 120000 index 0000000..b2966f7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/encode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/encode.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/error_resilience.c b/libffmpeg-avcodec/libavcodec/error_resilience.c new file mode 120000 index 0000000..4af75a8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/error_resilience.c @@ -0,0 +1 @@ +../../upstream/libavcodec/error_resilience.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/error_resilience.h b/libffmpeg-avcodec/libavcodec/error_resilience.h new file mode 120000 index 0000000..b769ee9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/error_resilience.h @@ -0,0 +1 @@ +../../upstream/libavcodec/error_resilience.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/escape124.c b/libffmpeg-avcodec/libavcodec/escape124.c new file mode 120000 index 0000000..d507e8e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/escape124.c @@ -0,0 +1 @@ +../../upstream/libavcodec/escape124.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/escape130.c b/libffmpeg-avcodec/libavcodec/escape130.c new file mode 120000 index 0000000..5894b5a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/escape130.c @@ -0,0 +1 @@ +../../upstream/libavcodec/escape130.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/evc.h b/libffmpeg-avcodec/libavcodec/evc.h new file mode 120000 index 0000000..d85af6a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/evc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/evc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/evc_parse.c b/libffmpeg-avcodec/libavcodec/evc_parse.c new file mode 120000 index 0000000..1874cea --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/evc_parse.c @@ -0,0 +1 @@ +../../upstream/libavcodec/evc_parse.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/evc_parse.h b/libffmpeg-avcodec/libavcodec/evc_parse.h new file mode 120000 index 0000000..9207124 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/evc_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/evc_parse.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/evc_parser.c b/libffmpeg-avcodec/libavcodec/evc_parser.c new file mode 120000 index 0000000..afe55f2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/evc_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/evc_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/evc_ps.c b/libffmpeg-avcodec/libavcodec/evc_ps.c new file mode 120000 index 0000000..9f66fca --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/evc_ps.c @@ -0,0 +1 @@ +../../upstream/libavcodec/evc_ps.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/evc_ps.h b/libffmpeg-avcodec/libavcodec/evc_ps.h new file mode 120000 index 0000000..0ae5c15 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/evc_ps.h @@ -0,0 +1 @@ +../../upstream/libavcodec/evc_ps.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/evrcdata.h b/libffmpeg-avcodec/libavcodec/evrcdata.h new file mode 120000 index 0000000..a02e26b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/evrcdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/evrcdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/evrcdec.c b/libffmpeg-avcodec/libavcodec/evrcdec.c new file mode 120000 index 0000000..deb76e9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/evrcdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/evrcdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/exif.c b/libffmpeg-avcodec/libavcodec/exif.c new file mode 120000 index 0000000..5991c7a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/exif.c @@ -0,0 +1 @@ +../../upstream/libavcodec/exif.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/exif.h b/libffmpeg-avcodec/libavcodec/exif.h new file mode 120000 index 0000000..4d2677b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/exif.h @@ -0,0 +1 @@ +../../upstream/libavcodec/exif.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/exr.c b/libffmpeg-avcodec/libavcodec/exr.c new file mode 120000 index 0000000..ad5a950 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/exr.c @@ -0,0 +1 @@ +../../upstream/libavcodec/exr.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/exrdsp.c b/libffmpeg-avcodec/libavcodec/exrdsp.c new file mode 120000 index 0000000..396eac5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/exrdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/exrdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/exrdsp.h b/libffmpeg-avcodec/libavcodec/exrdsp.h new file mode 120000 index 0000000..ee76b7b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/exrdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/exrdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/exrenc.c b/libffmpeg-avcodec/libavcodec/exrenc.c new file mode 120000 index 0000000..5735c4e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/exrenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/exrenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/faandct.c b/libffmpeg-avcodec/libavcodec/faandct.c new file mode 120000 index 0000000..1fc8d84 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/faandct.c @@ -0,0 +1 @@ +../../upstream/libavcodec/faandct.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/faandct.h b/libffmpeg-avcodec/libavcodec/faandct.h new file mode 120000 index 0000000..c1e023e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/faandct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/faandct.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/faanidct.c b/libffmpeg-avcodec/libavcodec/faanidct.c new file mode 120000 index 0000000..2fe5e52 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/faanidct.c @@ -0,0 +1 @@ +../../upstream/libavcodec/faanidct.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/faanidct.h b/libffmpeg-avcodec/libavcodec/faanidct.h new file mode 120000 index 0000000..78a3fb8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/faanidct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/faanidct.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fastaudio.c b/libffmpeg-avcodec/libavcodec/fastaudio.c new file mode 120000 index 0000000..ffa89d1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fastaudio.c @@ -0,0 +1 @@ +../../upstream/libavcodec/fastaudio.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/faxcompr.c b/libffmpeg-avcodec/libavcodec/faxcompr.c new file mode 120000 index 0000000..3b47343 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/faxcompr.c @@ -0,0 +1 @@ +../../upstream/libavcodec/faxcompr.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/faxcompr.h b/libffmpeg-avcodec/libavcodec/faxcompr.h new file mode 120000 index 0000000..639cc2e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/faxcompr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/faxcompr.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fdctdsp.c b/libffmpeg-avcodec/libavcodec/fdctdsp.c new file mode 120000 index 0000000..84ea364 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fdctdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/fdctdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fdctdsp.h b/libffmpeg-avcodec/libavcodec/fdctdsp.h new file mode 120000 index 0000000..10332c4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fdctdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/fdctdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ffjni.c b/libffmpeg-avcodec/libavcodec/ffjni.c new file mode 120000 index 0000000..04a3289 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ffjni.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ffjni.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ffjni.h b/libffmpeg-avcodec/libavcodec/ffjni.h new file mode 120000 index 0000000..37d38d8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ffjni.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ffjni.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fflcms2.c b/libffmpeg-avcodec/libavcodec/fflcms2.c new file mode 120000 index 0000000..be84bc8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fflcms2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/fflcms2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fflcms2.h b/libffmpeg-avcodec/libavcodec/fflcms2.h new file mode 120000 index 0000000..d331eaa --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fflcms2.h @@ -0,0 +1 @@ +../../upstream/libavcodec/fflcms2.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ffv1.c b/libffmpeg-avcodec/libavcodec/ffv1.c new file mode 120000 index 0000000..a383b96 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ffv1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ffv1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ffv1.h b/libffmpeg-avcodec/libavcodec/ffv1.h new file mode 120000 index 0000000..0aa95e5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ffv1.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ffv1.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ffv1_template.c b/libffmpeg-avcodec/libavcodec/ffv1_template.c new file mode 120000 index 0000000..0314b41 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ffv1_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ffv1_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ffv1dec.c b/libffmpeg-avcodec/libavcodec/ffv1dec.c new file mode 120000 index 0000000..4a39bda --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ffv1dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ffv1dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ffv1dec_template.c b/libffmpeg-avcodec/libavcodec/ffv1dec_template.c new file mode 120000 index 0000000..acf352f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ffv1dec_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ffv1dec_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ffv1enc.c b/libffmpeg-avcodec/libavcodec/ffv1enc.c new file mode 120000 index 0000000..dbe7ba6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ffv1enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ffv1enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ffv1enc_template.c b/libffmpeg-avcodec/libavcodec/ffv1enc_template.c new file mode 120000 index 0000000..6c74829 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ffv1enc_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ffv1enc_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ffwavesynth.c b/libffmpeg-avcodec/libavcodec/ffwavesynth.c new file mode 120000 index 0000000..b1d2fc8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ffwavesynth.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ffwavesynth.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fic.c b/libffmpeg-avcodec/libavcodec/fic.c new file mode 120000 index 0000000..7611741 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fic.c @@ -0,0 +1 @@ +../../upstream/libavcodec/fic.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/file_open.c b/libffmpeg-avcodec/libavcodec/file_open.c new file mode 120000 index 0000000..02329a0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/file_open.c @@ -0,0 +1 @@ +../../upstream/libavcodec/file_open.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fits.c b/libffmpeg-avcodec/libavcodec/fits.c new file mode 120000 index 0000000..6fd9ff1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fits.c @@ -0,0 +1 @@ +../../upstream/libavcodec/fits.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fits.h b/libffmpeg-avcodec/libavcodec/fits.h new file mode 120000 index 0000000..937abf4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fits.h @@ -0,0 +1 @@ +../../upstream/libavcodec/fits.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fitsdec.c b/libffmpeg-avcodec/libavcodec/fitsdec.c new file mode 120000 index 0000000..5138b80 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fitsdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/fitsdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fitsenc.c b/libffmpeg-avcodec/libavcodec/fitsenc.c new file mode 120000 index 0000000..45b1c26 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fitsenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/fitsenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flac.c b/libffmpeg-avcodec/libavcodec/flac.c new file mode 120000 index 0000000..4801d9a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flac.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flac.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flac.h b/libffmpeg-avcodec/libavcodec/flac.h new file mode 120000 index 0000000..ade6f70 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flac.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flac_parse.h b/libffmpeg-avcodec/libavcodec/flac_parse.h new file mode 120000 index 0000000..661238c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flac_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flac_parse.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flac_parser.c b/libffmpeg-avcodec/libavcodec/flac_parser.c new file mode 120000 index 0000000..5a7d41b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flac_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flac_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flacdata.c b/libffmpeg-avcodec/libavcodec/flacdata.c new file mode 120000 index 0000000..88f2bdc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flacdata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flacdata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flacdata.h b/libffmpeg-avcodec/libavcodec/flacdata.h new file mode 120000 index 0000000..fb0e50f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flacdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flacdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flacdec.c b/libffmpeg-avcodec/libavcodec/flacdec.c new file mode 120000 index 0000000..5c4bbcd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flacdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flacdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flacdsp.c b/libffmpeg-avcodec/libavcodec/flacdsp.c new file mode 120000 index 0000000..760a321 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flacdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flacdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flacdsp.h b/libffmpeg-avcodec/libavcodec/flacdsp.h new file mode 120000 index 0000000..1a5c309 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flacdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flacdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flacdsp_lpc_template.c b/libffmpeg-avcodec/libavcodec/flacdsp_lpc_template.c new file mode 120000 index 0000000..c9d182e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flacdsp_lpc_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flacdsp_lpc_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flacdsp_template.c b/libffmpeg-avcodec/libavcodec/flacdsp_template.c new file mode 120000 index 0000000..fc29a08 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flacdsp_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flacdsp_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flacenc.c b/libffmpeg-avcodec/libavcodec/flacenc.c new file mode 120000 index 0000000..e90e729 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flacenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flacenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flacencdsp.c b/libffmpeg-avcodec/libavcodec/flacencdsp.c new file mode 120000 index 0000000..9855783 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flacencdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flacencdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flacencdsp.h b/libffmpeg-avcodec/libavcodec/flacencdsp.h new file mode 120000 index 0000000..00db461 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flacencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flacencdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flashsv.c b/libffmpeg-avcodec/libavcodec/flashsv.c new file mode 120000 index 0000000..b0ce3c8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flashsv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flashsv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flashsv2enc.c b/libffmpeg-avcodec/libavcodec/flashsv2enc.c new file mode 120000 index 0000000..ae779aa --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flashsv2enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flashsv2enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flashsvenc.c b/libffmpeg-avcodec/libavcodec/flashsvenc.c new file mode 120000 index 0000000..780631a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flashsvenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flashsvenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flicvideo.c b/libffmpeg-avcodec/libavcodec/flicvideo.c new file mode 120000 index 0000000..4ed8f80 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flicvideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flicvideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/float2half.c b/libffmpeg-avcodec/libavcodec/float2half.c new file mode 120000 index 0000000..a69d181 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/float2half.c @@ -0,0 +1 @@ +../../upstream/libavcodec/float2half.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flvdec.c b/libffmpeg-avcodec/libavcodec/flvdec.c new file mode 120000 index 0000000..41f9c65 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flvdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flvdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flvdec.h b/libffmpeg-avcodec/libavcodec/flvdec.h new file mode 120000 index 0000000..14e25f3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flvdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flvdec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flvenc.c b/libffmpeg-avcodec/libavcodec/flvenc.c new file mode 120000 index 0000000..cc62064 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flvenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/flvenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/flvenc.h b/libffmpeg-avcodec/libavcodec/flvenc.h new file mode 120000 index 0000000..18de684 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/flvenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flvenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fmtconvert.c b/libffmpeg-avcodec/libavcodec/fmtconvert.c new file mode 120000 index 0000000..c8b93dc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fmtconvert.c @@ -0,0 +1 @@ +../../upstream/libavcodec/fmtconvert.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fmtconvert.h b/libffmpeg-avcodec/libavcodec/fmtconvert.h new file mode 120000 index 0000000..ce96d35 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fmtconvert.h @@ -0,0 +1 @@ +../../upstream/libavcodec/fmtconvert.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fmvc.c b/libffmpeg-avcodec/libavcodec/fmvc.c new file mode 120000 index 0000000..430f914 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fmvc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/fmvc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/frame_thread_encoder.c b/libffmpeg-avcodec/libavcodec/frame_thread_encoder.c new file mode 120000 index 0000000..19e6d16 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/frame_thread_encoder.c @@ -0,0 +1 @@ +../../upstream/libavcodec/frame_thread_encoder.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/frame_thread_encoder.h b/libffmpeg-avcodec/libavcodec/frame_thread_encoder.h new file mode 120000 index 0000000..969dbd2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/frame_thread_encoder.h @@ -0,0 +1 @@ +../../upstream/libavcodec/frame_thread_encoder.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/fraps.c b/libffmpeg-avcodec/libavcodec/fraps.c new file mode 120000 index 0000000..1617285 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/fraps.c @@ -0,0 +1 @@ +../../upstream/libavcodec/fraps.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/frwu.c b/libffmpeg-avcodec/libavcodec/frwu.c new file mode 120000 index 0000000..347f8c4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/frwu.c @@ -0,0 +1 @@ +../../upstream/libavcodec/frwu.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ftr.c b/libffmpeg-avcodec/libavcodec/ftr.c new file mode 120000 index 0000000..5707941 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ftr.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ftr.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ftr_parser.c b/libffmpeg-avcodec/libavcodec/ftr_parser.c new file mode 120000 index 0000000..7d0239d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ftr_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ftr_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g2meet.c b/libffmpeg-avcodec/libavcodec/g2meet.c new file mode 120000 index 0000000..7d700ee --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g2meet.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g2meet.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g722.c b/libffmpeg-avcodec/libavcodec/g722.c new file mode 120000 index 0000000..204694c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g722.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g722.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g722.h b/libffmpeg-avcodec/libavcodec/g722.h new file mode 120000 index 0000000..3608d52 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g722.h @@ -0,0 +1 @@ +../../upstream/libavcodec/g722.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g722dec.c b/libffmpeg-avcodec/libavcodec/g722dec.c new file mode 120000 index 0000000..1cb7cde --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g722dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g722dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g722dsp.c b/libffmpeg-avcodec/libavcodec/g722dsp.c new file mode 120000 index 0000000..77af64e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g722dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g722dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g722dsp.h b/libffmpeg-avcodec/libavcodec/g722dsp.h new file mode 120000 index 0000000..15799e0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g722dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/g722dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g722enc.c b/libffmpeg-avcodec/libavcodec/g722enc.c new file mode 120000 index 0000000..8df2098 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g722enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g722enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g723_1.c b/libffmpeg-avcodec/libavcodec/g723_1.c new file mode 120000 index 0000000..cc74a7e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g723_1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g723_1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g723_1.h b/libffmpeg-avcodec/libavcodec/g723_1.h new file mode 120000 index 0000000..264a8a7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g723_1.h @@ -0,0 +1 @@ +../../upstream/libavcodec/g723_1.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g723_1_parser.c b/libffmpeg-avcodec/libavcodec/g723_1_parser.c new file mode 120000 index 0000000..7dbf085 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g723_1_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g723_1_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g723_1dec.c b/libffmpeg-avcodec/libavcodec/g723_1dec.c new file mode 120000 index 0000000..a6b68e2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g723_1dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g723_1dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g723_1enc.c b/libffmpeg-avcodec/libavcodec/g723_1enc.c new file mode 120000 index 0000000..29c12f3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g723_1enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g723_1enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g726.c b/libffmpeg-avcodec/libavcodec/g726.c new file mode 120000 index 0000000..b93746b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g726.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g726.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g729.h b/libffmpeg-avcodec/libavcodec/g729.h new file mode 120000 index 0000000..f862589 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g729.h @@ -0,0 +1 @@ +../../upstream/libavcodec/g729.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g729_parser.c b/libffmpeg-avcodec/libavcodec/g729_parser.c new file mode 120000 index 0000000..984e064 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g729_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g729_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g729data.h b/libffmpeg-avcodec/libavcodec/g729data.h new file mode 120000 index 0000000..0880464 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g729data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/g729data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g729dec.c b/libffmpeg-avcodec/libavcodec/g729dec.c new file mode 120000 index 0000000..f6586a2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g729dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g729dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g729postfilter.c b/libffmpeg-avcodec/libavcodec/g729postfilter.c new file mode 120000 index 0000000..b1cfb5c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g729postfilter.c @@ -0,0 +1 @@ +../../upstream/libavcodec/g729postfilter.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/g729postfilter.h b/libffmpeg-avcodec/libavcodec/g729postfilter.h new file mode 120000 index 0000000..ad8ba10 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/g729postfilter.h @@ -0,0 +1 @@ +../../upstream/libavcodec/g729postfilter.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/gdv.c b/libffmpeg-avcodec/libavcodec/gdv.c new file mode 120000 index 0000000..135c087 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/gdv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/gdv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/gemdec.c b/libffmpeg-avcodec/libavcodec/gemdec.c new file mode 120000 index 0000000..59b80df --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/gemdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/gemdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/get_bits.h b/libffmpeg-avcodec/libavcodec/get_bits.h new file mode 120000 index 0000000..11213bb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/get_bits.h @@ -0,0 +1 @@ +../../upstream/libavcodec/get_bits.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/get_buffer.c b/libffmpeg-avcodec/libavcodec/get_buffer.c new file mode 120000 index 0000000..804b0c3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/get_buffer.c @@ -0,0 +1 @@ +../../upstream/libavcodec/get_buffer.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/gif.c b/libffmpeg-avcodec/libavcodec/gif.c new file mode 120000 index 0000000..2ffd266 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/gif.c @@ -0,0 +1 @@ +../../upstream/libavcodec/gif.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/gif.h b/libffmpeg-avcodec/libavcodec/gif.h new file mode 120000 index 0000000..f703ebd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/gif.h @@ -0,0 +1 @@ +../../upstream/libavcodec/gif.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/gif_parser.c b/libffmpeg-avcodec/libavcodec/gif_parser.c new file mode 120000 index 0000000..3e15545 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/gif_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/gif_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/gifdec.c b/libffmpeg-avcodec/libavcodec/gifdec.c new file mode 120000 index 0000000..f9035d6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/gifdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/gifdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/golomb.c b/libffmpeg-avcodec/libavcodec/golomb.c new file mode 120000 index 0000000..459d9d4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/golomb.c @@ -0,0 +1 @@ +../../upstream/libavcodec/golomb.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/golomb.h b/libffmpeg-avcodec/libavcodec/golomb.h new file mode 120000 index 0000000..eeaf6d3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/golomb.h @@ -0,0 +1 @@ +../../upstream/libavcodec/golomb.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/gsm.h b/libffmpeg-avcodec/libavcodec/gsm.h new file mode 120000 index 0000000..9196d8b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/gsm.h @@ -0,0 +1 @@ +../../upstream/libavcodec/gsm.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/gsm_parser.c b/libffmpeg-avcodec/libavcodec/gsm_parser.c new file mode 120000 index 0000000..b9efdab --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/gsm_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/gsm_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/gsmdec.c b/libffmpeg-avcodec/libavcodec/gsmdec.c new file mode 120000 index 0000000..912a52d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/gsmdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/gsmdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/gsmdec_data.c b/libffmpeg-avcodec/libavcodec/gsmdec_data.c new file mode 120000 index 0000000..5cc2ea9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/gsmdec_data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/gsmdec_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/gsmdec_data.h b/libffmpeg-avcodec/libavcodec/gsmdec_data.h new file mode 120000 index 0000000..b9ac441 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/gsmdec_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/gsmdec_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/gsmdec_template.c b/libffmpeg-avcodec/libavcodec/gsmdec_template.c new file mode 120000 index 0000000..1dd3f75 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/gsmdec_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/gsmdec_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h261.c b/libffmpeg-avcodec/libavcodec/h261.c new file mode 120000 index 0000000..ec6ff65 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h261.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h261.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h261.h b/libffmpeg-avcodec/libavcodec/h261.h new file mode 120000 index 0000000..afa4f5e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h261.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h261.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h261_parser.c b/libffmpeg-avcodec/libavcodec/h261_parser.c new file mode 120000 index 0000000..28a3588 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h261_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h261_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h261data.c b/libffmpeg-avcodec/libavcodec/h261data.c new file mode 120000 index 0000000..1d76285 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h261data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h261data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h261dec.c b/libffmpeg-avcodec/libavcodec/h261dec.c new file mode 120000 index 0000000..ee31cff --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h261dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h261dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h261enc.c b/libffmpeg-avcodec/libavcodec/h261enc.c new file mode 120000 index 0000000..5f82d3d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h261enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h261enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h261enc.h b/libffmpeg-avcodec/libavcodec/h261enc.h new file mode 120000 index 0000000..14e3273 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h261enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h261enc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h263.c b/libffmpeg-avcodec/libavcodec/h263.c new file mode 120000 index 0000000..2617096 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h263.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h263.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h263.h b/libffmpeg-avcodec/libavcodec/h263.h new file mode 120000 index 0000000..f2b05c1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h263.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h263.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h263_parser.c b/libffmpeg-avcodec/libavcodec/h263_parser.c new file mode 120000 index 0000000..1cf5d09 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h263_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h263_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h263data.c b/libffmpeg-avcodec/libavcodec/h263data.c new file mode 120000 index 0000000..1b3616a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h263data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h263data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h263data.h b/libffmpeg-avcodec/libavcodec/h263data.h new file mode 120000 index 0000000..bd5cd1c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h263data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h263data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h263dec.c b/libffmpeg-avcodec/libavcodec/h263dec.c new file mode 120000 index 0000000..ba77aba --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h263dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h263dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h263dec.h b/libffmpeg-avcodec/libavcodec/h263dec.h new file mode 120000 index 0000000..d3928be --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h263dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h263dec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h263dsp.c b/libffmpeg-avcodec/libavcodec/h263dsp.c new file mode 120000 index 0000000..44b8190 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h263dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h263dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h263dsp.h b/libffmpeg-avcodec/libavcodec/h263dsp.h new file mode 120000 index 0000000..25ec9dd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h263dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h263dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h263enc.h b/libffmpeg-avcodec/libavcodec/h263enc.h new file mode 120000 index 0000000..4ce7c3e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h263enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h263enc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264.h b/libffmpeg-avcodec/libavcodec/h264.h new file mode 120000 index 0000000..925c154 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h2645_parse.c b/libffmpeg-avcodec/libavcodec/h2645_parse.c new file mode 120000 index 0000000..8d14a7e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h2645_parse.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h2645_parse.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h2645_parse.h b/libffmpeg-avcodec/libavcodec/h2645_parse.h new file mode 120000 index 0000000..be39fec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h2645_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h2645_parse.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h2645_sei.c b/libffmpeg-avcodec/libavcodec/h2645_sei.c new file mode 120000 index 0000000..753c120 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h2645_sei.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h2645_sei.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h2645_sei.h b/libffmpeg-avcodec/libavcodec/h2645_sei.h new file mode 120000 index 0000000..b55d6a9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h2645_sei.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h2645_sei.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h2645_vui.c b/libffmpeg-avcodec/libavcodec/h2645_vui.c new file mode 120000 index 0000000..0ea1e51 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h2645_vui.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h2645_vui.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h2645_vui.h b/libffmpeg-avcodec/libavcodec/h2645_vui.h new file mode 120000 index 0000000..2a15d3a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h2645_vui.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h2645_vui.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h2645data.c b/libffmpeg-avcodec/libavcodec/h2645data.c new file mode 120000 index 0000000..0d3bb73 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h2645data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h2645data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h2645data.h b/libffmpeg-avcodec/libavcodec/h2645data.h new file mode 120000 index 0000000..46c4031 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h2645data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h2645data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_cabac.c b/libffmpeg-avcodec/libavcodec/h264_cabac.c new file mode 120000 index 0000000..1488c98 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_cabac.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_cabac.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_cavlc.c b/libffmpeg-avcodec/libavcodec/h264_cavlc.c new file mode 120000 index 0000000..0bbbc17 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_cavlc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_cavlc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_direct.c b/libffmpeg-avcodec/libavcodec/h264_direct.c new file mode 120000 index 0000000..aabcb65 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_direct.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_direct.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_levels.c b/libffmpeg-avcodec/libavcodec/h264_levels.c new file mode 120000 index 0000000..c17ef75 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_levels.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_levels.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_levels.h b/libffmpeg-avcodec/libavcodec/h264_levels.h new file mode 120000 index 0000000..6d9ad0a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_levels.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_levels.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_loopfilter.c b/libffmpeg-avcodec/libavcodec/h264_loopfilter.c new file mode 120000 index 0000000..6544599 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_loopfilter.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_loopfilter.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_mb.c b/libffmpeg-avcodec/libavcodec/h264_mb.c new file mode 120000 index 0000000..744f413 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_mb.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_mb.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_mb_template.c b/libffmpeg-avcodec/libavcodec/h264_mb_template.c new file mode 120000 index 0000000..7f6760d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_mb_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_mb_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_mc_template.c b/libffmpeg-avcodec/libavcodec/h264_mc_template.c new file mode 120000 index 0000000..e31b4cf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_mc_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_mc_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_mvpred.h b/libffmpeg-avcodec/libavcodec/h264_mvpred.h new file mode 120000 index 0000000..34b09c9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_mvpred.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_mvpred.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_parse.c b/libffmpeg-avcodec/libavcodec/h264_parse.c new file mode 120000 index 0000000..1da3e9e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_parse.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_parse.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_parse.h b/libffmpeg-avcodec/libavcodec/h264_parse.h new file mode 120000 index 0000000..d7552d3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_parse.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_parser.c b/libffmpeg-avcodec/libavcodec/h264_parser.c new file mode 120000 index 0000000..cdf8832 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_picture.c b/libffmpeg-avcodec/libavcodec/h264_picture.c new file mode 120000 index 0000000..f4c8dc3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_picture.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_picture.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_ps.c b/libffmpeg-avcodec/libavcodec/h264_ps.c new file mode 120000 index 0000000..2e2ab37 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_ps.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_ps.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_ps.h b/libffmpeg-avcodec/libavcodec/h264_ps.h new file mode 120000 index 0000000..524cbaf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_ps.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_ps.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_refs.c b/libffmpeg-avcodec/libavcodec/h264_refs.c new file mode 120000 index 0000000..47b8b60 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_refs.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_refs.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_sei.c b/libffmpeg-avcodec/libavcodec/h264_sei.c new file mode 120000 index 0000000..e97facd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_sei.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_sei.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_sei.h b/libffmpeg-avcodec/libavcodec/h264_sei.h new file mode 120000 index 0000000..3278bb8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_sei.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_sei.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264_slice.c b/libffmpeg-avcodec/libavcodec/h264_slice.c new file mode 120000 index 0000000..04aa67e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264_slice.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_slice.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264addpx_template.c b/libffmpeg-avcodec/libavcodec/h264addpx_template.c new file mode 120000 index 0000000..99cd00d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264addpx_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264addpx_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264chroma.c b/libffmpeg-avcodec/libavcodec/h264chroma.c new file mode 120000 index 0000000..68335a3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264chroma.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264chroma.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264chroma.h b/libffmpeg-avcodec/libavcodec/h264chroma.h new file mode 120000 index 0000000..71bf279 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264chroma.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264chroma.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264chroma_template.c b/libffmpeg-avcodec/libavcodec/h264chroma_template.c new file mode 120000 index 0000000..e583c43 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264chroma_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264chroma_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264data.c b/libffmpeg-avcodec/libavcodec/h264data.c new file mode 120000 index 0000000..584ce1a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264data.h b/libffmpeg-avcodec/libavcodec/h264data.h new file mode 120000 index 0000000..4e8e8ba --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264dec.c b/libffmpeg-avcodec/libavcodec/h264dec.c new file mode 120000 index 0000000..506f7cf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264dec.h b/libffmpeg-avcodec/libavcodec/h264dec.h new file mode 120000 index 0000000..86c84c8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264dec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264dsp.c b/libffmpeg-avcodec/libavcodec/h264dsp.c new file mode 120000 index 0000000..9d84a4f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264dsp.h b/libffmpeg-avcodec/libavcodec/h264dsp.h new file mode 120000 index 0000000..267d132 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264dsp_template.c b/libffmpeg-avcodec/libavcodec/h264dsp_template.c new file mode 120000 index 0000000..f8b31b9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264dsp_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264dsp_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264idct.c b/libffmpeg-avcodec/libavcodec/h264idct.c new file mode 120000 index 0000000..2f1f9ee --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264idct.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264idct.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264idct.h b/libffmpeg-avcodec/libavcodec/h264idct.h new file mode 120000 index 0000000..001149b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264idct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264idct.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264idct_template.c b/libffmpeg-avcodec/libavcodec/h264idct_template.c new file mode 120000 index 0000000..5f53696 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264idct_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264idct_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264pred.c b/libffmpeg-avcodec/libavcodec/h264pred.c new file mode 120000 index 0000000..5ac9928 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264pred.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264pred.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264pred.h b/libffmpeg-avcodec/libavcodec/h264pred.h new file mode 120000 index 0000000..bc93efe --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264pred.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264pred.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264pred_template.c b/libffmpeg-avcodec/libavcodec/h264pred_template.c new file mode 120000 index 0000000..559c8b0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264pred_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264pred_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264qpel.c b/libffmpeg-avcodec/libavcodec/h264qpel.c new file mode 120000 index 0000000..51c5bf7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264qpel.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264qpel.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264qpel.h b/libffmpeg-avcodec/libavcodec/h264qpel.h new file mode 120000 index 0000000..e3edf14 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264qpel.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264qpel.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h264qpel_template.c b/libffmpeg-avcodec/libavcodec/h264qpel_template.c new file mode 120000 index 0000000..9b0460c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h264qpel_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h264qpel_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h265_profile_level.c b/libffmpeg-avcodec/libavcodec/h265_profile_level.c new file mode 120000 index 0000000..519e58c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h265_profile_level.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h265_profile_level.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h265_profile_level.h b/libffmpeg-avcodec/libavcodec/h265_profile_level.h new file mode 120000 index 0000000..4c3acd2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h265_profile_level.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h265_profile_level.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h274.c b/libffmpeg-avcodec/libavcodec/h274.c new file mode 120000 index 0000000..c0bdc75 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h274.c @@ -0,0 +1 @@ +../../upstream/libavcodec/h274.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/h274.h b/libffmpeg-avcodec/libavcodec/h274.h new file mode 120000 index 0000000..1b9c6ad --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/h274.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h274.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/half2float.c b/libffmpeg-avcodec/libavcodec/half2float.c new file mode 120000 index 0000000..b30907c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/half2float.c @@ -0,0 +1 @@ +../../upstream/libavcodec/half2float.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hap.c b/libffmpeg-avcodec/libavcodec/hap.c new file mode 120000 index 0000000..f728f6d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hap.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hap.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hap.h b/libffmpeg-avcodec/libavcodec/hap.h new file mode 120000 index 0000000..f4764d1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hap.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hap.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hapdec.c b/libffmpeg-avcodec/libavcodec/hapdec.c new file mode 120000 index 0000000..b466446 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hapdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hapdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hapenc.c b/libffmpeg-avcodec/libavcodec/hapenc.c new file mode 120000 index 0000000..438ab37 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hapenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hapenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hca_data.h b/libffmpeg-avcodec/libavcodec/hca_data.h new file mode 120000 index 0000000..1faca34 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hca_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hca_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hcadec.c b/libffmpeg-avcodec/libavcodec/hcadec.c new file mode 120000 index 0000000..b0bb471 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hcadec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hcadec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hcom.c b/libffmpeg-avcodec/libavcodec/hcom.c new file mode 120000 index 0000000..651d74a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hcom.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hcom.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hdr_parser.c b/libffmpeg-avcodec/libavcodec/hdr_parser.c new file mode 120000 index 0000000..319e333 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hdr_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hdr_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hdrdec.c b/libffmpeg-avcodec/libavcodec/hdrdec.c new file mode 120000 index 0000000..439645f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hdrdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hdrdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hdrenc.c b/libffmpeg-avcodec/libavcodec/hdrenc.c new file mode 120000 index 0000000..3ba07b2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hdrenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hdrenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hnm4video.c b/libffmpeg-avcodec/libavcodec/hnm4video.c new file mode 120000 index 0000000..db2727e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hnm4video.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hnm4video.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hpel_template.c b/libffmpeg-avcodec/libavcodec/hpel_template.c new file mode 120000 index 0000000..9c81d67 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hpel_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hpel_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hpeldsp.c b/libffmpeg-avcodec/libavcodec/hpeldsp.c new file mode 120000 index 0000000..5bac636 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hpeldsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hpeldsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hpeldsp.h b/libffmpeg-avcodec/libavcodec/hpeldsp.h new file mode 120000 index 0000000..4edef7b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hpeldsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hpeldsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hq_hqa.c b/libffmpeg-avcodec/libavcodec/hq_hqa.c new file mode 120000 index 0000000..a37287e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hq_hqa.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hq_hqa.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hq_hqadata.h b/libffmpeg-avcodec/libavcodec/hq_hqadata.h new file mode 120000 index 0000000..1128403 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hq_hqadata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hq_hqadata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hq_hqadsp.c b/libffmpeg-avcodec/libavcodec/hq_hqadsp.c new file mode 120000 index 0000000..fcc0477 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hq_hqadsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hq_hqadsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hq_hqadsp.h b/libffmpeg-avcodec/libavcodec/hq_hqadsp.h new file mode 120000 index 0000000..f130718 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hq_hqadsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hq_hqadsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hqx.c b/libffmpeg-avcodec/libavcodec/hqx.c new file mode 120000 index 0000000..e9fa131 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hqx.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hqx.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hqx.h b/libffmpeg-avcodec/libavcodec/hqx.h new file mode 120000 index 0000000..0c104e4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hqx.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hqx.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hqxdsp.c b/libffmpeg-avcodec/libavcodec/hqxdsp.c new file mode 120000 index 0000000..cce6b3f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hqxdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hqxdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hqxdsp.h b/libffmpeg-avcodec/libavcodec/hqxdsp.h new file mode 120000 index 0000000..4ea00c3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hqxdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hqxdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hqxvlc.c b/libffmpeg-avcodec/libavcodec/hqxvlc.c new file mode 120000 index 0000000..315c8a5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hqxvlc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/hqxvlc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/htmlsubtitles.c b/libffmpeg-avcodec/libavcodec/htmlsubtitles.c new file mode 120000 index 0000000..38f37a4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/htmlsubtitles.c @@ -0,0 +1 @@ +../../upstream/libavcodec/htmlsubtitles.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/htmlsubtitles.h b/libffmpeg-avcodec/libavcodec/htmlsubtitles.h new file mode 120000 index 0000000..ca1c2ee --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/htmlsubtitles.h @@ -0,0 +1 @@ +../../upstream/libavcodec/htmlsubtitles.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/huffman.c b/libffmpeg-avcodec/libavcodec/huffman.c new file mode 120000 index 0000000..4b8c35e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/huffman.c @@ -0,0 +1 @@ +../../upstream/libavcodec/huffman.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/huffman.h b/libffmpeg-avcodec/libavcodec/huffman.h new file mode 120000 index 0000000..f139853 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/huffman.h @@ -0,0 +1 @@ +../../upstream/libavcodec/huffman.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/huffyuv.c b/libffmpeg-avcodec/libavcodec/huffyuv.c new file mode 120000 index 0000000..59b88f9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/huffyuv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/huffyuv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/huffyuv.h b/libffmpeg-avcodec/libavcodec/huffyuv.h new file mode 120000 index 0000000..a0cae2b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/huffyuv.h @@ -0,0 +1 @@ +../../upstream/libavcodec/huffyuv.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/huffyuvdec.c b/libffmpeg-avcodec/libavcodec/huffyuvdec.c new file mode 120000 index 0000000..1655818 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/huffyuvdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/huffyuvdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/huffyuvdsp.c b/libffmpeg-avcodec/libavcodec/huffyuvdsp.c new file mode 120000 index 0000000..33bb8b1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/huffyuvdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/huffyuvdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/huffyuvdsp.h b/libffmpeg-avcodec/libavcodec/huffyuvdsp.h new file mode 120000 index 0000000..c85c975 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/huffyuvdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/huffyuvdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/huffyuvenc.c b/libffmpeg-avcodec/libavcodec/huffyuvenc.c new file mode 120000 index 0000000..2b5abb5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/huffyuvenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/huffyuvenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/huffyuvencdsp.c b/libffmpeg-avcodec/libavcodec/huffyuvencdsp.c new file mode 120000 index 0000000..4546414 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/huffyuvencdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/huffyuvencdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/huffyuvencdsp.h b/libffmpeg-avcodec/libavcodec/huffyuvencdsp.h new file mode 120000 index 0000000..8212f26 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/huffyuvencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/huffyuvencdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hwaccel_internal.h b/libffmpeg-avcodec/libavcodec/hwaccel_internal.h new file mode 120000 index 0000000..f828db0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hwaccel_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hwaccel_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hwaccels.h b/libffmpeg-avcodec/libavcodec/hwaccels.h new file mode 120000 index 0000000..2b4746f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hwaccels.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hwaccels.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/hwconfig.h b/libffmpeg-avcodec/libavcodec/hwconfig.h new file mode 120000 index 0000000..7fa4301 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/hwconfig.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hwconfig.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/idcinvideo.c b/libffmpeg-avcodec/libavcodec/idcinvideo.c new file mode 120000 index 0000000..220e316 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/idcinvideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/idcinvideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/idctdsp.c b/libffmpeg-avcodec/libavcodec/idctdsp.c new file mode 120000 index 0000000..c3d3c29 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/idctdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/idctdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/idctdsp.h b/libffmpeg-avcodec/libavcodec/idctdsp.h new file mode 120000 index 0000000..b32c542 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/idctdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/idctdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/iff.c b/libffmpeg-avcodec/libavcodec/iff.c new file mode 120000 index 0000000..fc49398 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/iff.c @@ -0,0 +1 @@ +../../upstream/libavcodec/iff.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/iirfilter.c b/libffmpeg-avcodec/libavcodec/iirfilter.c new file mode 120000 index 0000000..c7e7701 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/iirfilter.c @@ -0,0 +1 @@ +../../upstream/libavcodec/iirfilter.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/iirfilter.h b/libffmpeg-avcodec/libavcodec/iirfilter.h new file mode 120000 index 0000000..4c8f008 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/iirfilter.h @@ -0,0 +1 @@ +../../upstream/libavcodec/iirfilter.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ilbcdata.h b/libffmpeg-avcodec/libavcodec/ilbcdata.h new file mode 120000 index 0000000..cc9d9e5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ilbcdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ilbcdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ilbcdec.c b/libffmpeg-avcodec/libavcodec/ilbcdec.c new file mode 120000 index 0000000..933e6f1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ilbcdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ilbcdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/imc.c b/libffmpeg-avcodec/libavcodec/imc.c new file mode 120000 index 0000000..4390a59 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/imc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/imc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/imcdata.h b/libffmpeg-avcodec/libavcodec/imcdata.h new file mode 120000 index 0000000..64eb6db --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/imcdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/imcdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/imgconvert.c b/libffmpeg-avcodec/libavcodec/imgconvert.c new file mode 120000 index 0000000..d678531 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/imgconvert.c @@ -0,0 +1 @@ +../../upstream/libavcodec/imgconvert.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/imm4.c b/libffmpeg-avcodec/libavcodec/imm4.c new file mode 120000 index 0000000..1d59b1c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/imm4.c @@ -0,0 +1 @@ +../../upstream/libavcodec/imm4.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/imm5.c b/libffmpeg-avcodec/libavcodec/imm5.c new file mode 120000 index 0000000..e7fa5bd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/imm5.c @@ -0,0 +1 @@ +../../upstream/libavcodec/imm5.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/imx.c b/libffmpeg-avcodec/libavcodec/imx.c new file mode 120000 index 0000000..cd76be0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/imx.c @@ -0,0 +1 @@ +../../upstream/libavcodec/imx.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/indeo2.c b/libffmpeg-avcodec/libavcodec/indeo2.c new file mode 120000 index 0000000..c895873 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/indeo2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/indeo2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/indeo2data.h b/libffmpeg-avcodec/libavcodec/indeo2data.h new file mode 120000 index 0000000..759c80e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/indeo2data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/indeo2data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/indeo3.c b/libffmpeg-avcodec/libavcodec/indeo3.c new file mode 120000 index 0000000..a12c7df --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/indeo3.c @@ -0,0 +1 @@ +../../upstream/libavcodec/indeo3.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/indeo3data.h b/libffmpeg-avcodec/libavcodec/indeo3data.h new file mode 120000 index 0000000..741d23e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/indeo3data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/indeo3data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/indeo4.c b/libffmpeg-avcodec/libavcodec/indeo4.c new file mode 120000 index 0000000..906ba87 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/indeo4.c @@ -0,0 +1 @@ +../../upstream/libavcodec/indeo4.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/indeo4data.h b/libffmpeg-avcodec/libavcodec/indeo4data.h new file mode 120000 index 0000000..022d3d7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/indeo4data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/indeo4data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/indeo5.c b/libffmpeg-avcodec/libavcodec/indeo5.c new file mode 120000 index 0000000..d74c37e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/indeo5.c @@ -0,0 +1 @@ +../../upstream/libavcodec/indeo5.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/indeo5data.h b/libffmpeg-avcodec/libavcodec/indeo5data.h new file mode 120000 index 0000000..3012c32 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/indeo5data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/indeo5data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/intelh263dec.c b/libffmpeg-avcodec/libavcodec/intelh263dec.c new file mode 120000 index 0000000..b53236e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/intelh263dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/intelh263dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/internal.h b/libffmpeg-avcodec/libavcodec/internal.h new file mode 120000 index 0000000..67bc54f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/interplayacm.c b/libffmpeg-avcodec/libavcodec/interplayacm.c new file mode 120000 index 0000000..b774983 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/interplayacm.c @@ -0,0 +1 @@ +../../upstream/libavcodec/interplayacm.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/interplayvideo.c b/libffmpeg-avcodec/libavcodec/interplayvideo.c new file mode 120000 index 0000000..9f904f3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/interplayvideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/interplayvideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/intrax8.c b/libffmpeg-avcodec/libavcodec/intrax8.c new file mode 120000 index 0000000..bbee143 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/intrax8.c @@ -0,0 +1 @@ +../../upstream/libavcodec/intrax8.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/intrax8.h b/libffmpeg-avcodec/libavcodec/intrax8.h new file mode 120000 index 0000000..b0f6703 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/intrax8.h @@ -0,0 +1 @@ +../../upstream/libavcodec/intrax8.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/intrax8dsp.c b/libffmpeg-avcodec/libavcodec/intrax8dsp.c new file mode 120000 index 0000000..8d0b3fc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/intrax8dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/intrax8dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/intrax8dsp.h b/libffmpeg-avcodec/libavcodec/intrax8dsp.h new file mode 120000 index 0000000..9820126 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/intrax8dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/intrax8dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/intrax8huf.h b/libffmpeg-avcodec/libavcodec/intrax8huf.h new file mode 120000 index 0000000..a66ce96 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/intrax8huf.h @@ -0,0 +1 @@ +../../upstream/libavcodec/intrax8huf.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ipu_parser.c b/libffmpeg-avcodec/libavcodec/ipu_parser.c new file mode 120000 index 0000000..d628978 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ipu_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ipu_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ituh263dec.c b/libffmpeg-avcodec/libavcodec/ituh263dec.c new file mode 120000 index 0000000..9ead370 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ituh263dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ituh263dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ituh263enc.c b/libffmpeg-avcodec/libavcodec/ituh263enc.c new file mode 120000 index 0000000..d546904 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ituh263enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ituh263enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/itut35.h b/libffmpeg-avcodec/libavcodec/itut35.h new file mode 120000 index 0000000..0c3451f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/itut35.h @@ -0,0 +1 @@ +../../upstream/libavcodec/itut35.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ivi.c b/libffmpeg-avcodec/libavcodec/ivi.c new file mode 120000 index 0000000..06fec4a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ivi.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ivi.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ivi.h b/libffmpeg-avcodec/libavcodec/ivi.h new file mode 120000 index 0000000..afb4afd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ivi.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ivi.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ivi_dsp.c b/libffmpeg-avcodec/libavcodec/ivi_dsp.c new file mode 120000 index 0000000..ee67b6d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ivi_dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ivi_dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ivi_dsp.h b/libffmpeg-avcodec/libavcodec/ivi_dsp.h new file mode 120000 index 0000000..4d9b05d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ivi_dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ivi_dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/j2kenc.c b/libffmpeg-avcodec/libavcodec/j2kenc.c new file mode 120000 index 0000000..89c6f5b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/j2kenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/j2kenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jacosub.h b/libffmpeg-avcodec/libavcodec/jacosub.h new file mode 120000 index 0000000..7036294 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jacosub.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jacosub.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jacosubdec.c b/libffmpeg-avcodec/libavcodec/jacosubdec.c new file mode 120000 index 0000000..f8595ee --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jacosubdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jacosubdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jfdctfst.c b/libffmpeg-avcodec/libavcodec/jfdctfst.c new file mode 120000 index 0000000..f5fc7c5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jfdctfst.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jfdctfst.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jfdctint.c b/libffmpeg-avcodec/libavcodec/jfdctint.c new file mode 120000 index 0000000..f89e169 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jfdctint.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jfdctint.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jfdctint_template.c b/libffmpeg-avcodec/libavcodec/jfdctint_template.c new file mode 120000 index 0000000..25eca6e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jfdctint_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jfdctint_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jni.c b/libffmpeg-avcodec/libavcodec/jni.c new file mode 120000 index 0000000..cb51b78 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jni.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jni.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jni.h b/libffmpeg-avcodec/libavcodec/jni.h new file mode 120000 index 0000000..5fed2a4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jni.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jni.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeg2000.c b/libffmpeg-avcodec/libavcodec/jpeg2000.c new file mode 120000 index 0000000..486001d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeg2000.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeg2000.h b/libffmpeg-avcodec/libavcodec/jpeg2000.h new file mode 120000 index 0000000..cdbe6ac --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeg2000.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeg2000_parser.c b/libffmpeg-avcodec/libavcodec/jpeg2000_parser.c new file mode 120000 index 0000000..f23d86d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeg2000_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeg2000dec.c b/libffmpeg-avcodec/libavcodec/jpeg2000dec.c new file mode 120000 index 0000000..d494728 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeg2000dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeg2000dec.h b/libffmpeg-avcodec/libavcodec/jpeg2000dec.h new file mode 120000 index 0000000..1a37ce4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeg2000dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000dec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeg2000dsp.c b/libffmpeg-avcodec/libavcodec/jpeg2000dsp.c new file mode 120000 index 0000000..b2b76d2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeg2000dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeg2000dsp.h b/libffmpeg-avcodec/libavcodec/jpeg2000dsp.h new file mode 120000 index 0000000..0317feb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeg2000dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeg2000dwt.c b/libffmpeg-avcodec/libavcodec/jpeg2000dwt.c new file mode 120000 index 0000000..b6e2847 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeg2000dwt.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000dwt.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeg2000dwt.h b/libffmpeg-avcodec/libavcodec/jpeg2000dwt.h new file mode 120000 index 0000000..39480c9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeg2000dwt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000dwt.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeg2000htdec.c b/libffmpeg-avcodec/libavcodec/jpeg2000htdec.c new file mode 120000 index 0000000..c51b346 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeg2000htdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000htdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeg2000htdec.h b/libffmpeg-avcodec/libavcodec/jpeg2000htdec.h new file mode 120000 index 0000000..94e5288 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeg2000htdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000htdec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpegls.c b/libffmpeg-avcodec/libavcodec/jpegls.c new file mode 120000 index 0000000..1409713 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpegls.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegls.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpegls.h b/libffmpeg-avcodec/libavcodec/jpegls.h new file mode 120000 index 0000000..8ae4c4d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpegls.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegls.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeglsdec.c b/libffmpeg-avcodec/libavcodec/jpeglsdec.c new file mode 120000 index 0000000..c0a6ed3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeglsdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeglsdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeglsdec.h b/libffmpeg-avcodec/libavcodec/jpeglsdec.h new file mode 120000 index 0000000..19f0b63 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeglsdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeglsdec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpeglsenc.c b/libffmpeg-avcodec/libavcodec/jpeglsenc.c new file mode 120000 index 0000000..598701e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpeglsenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeglsenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpegquanttables.c b/libffmpeg-avcodec/libavcodec/jpegquanttables.c new file mode 120000 index 0000000..dfb84b4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpegquanttables.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegquanttables.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpegquanttables.h b/libffmpeg-avcodec/libavcodec/jpegquanttables.h new file mode 120000 index 0000000..d031b65 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpegquanttables.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegquanttables.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpegtables.c b/libffmpeg-avcodec/libavcodec/jpegtables.c new file mode 120000 index 0000000..b78ac22 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpegtables.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegtables.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpegtables.h b/libffmpeg-avcodec/libavcodec/jpegtables.h new file mode 120000 index 0000000..0c5983c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpegtables.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegtables.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpegtabs.h b/libffmpeg-avcodec/libavcodec/jpegtabs.h new file mode 120000 index 0000000..b25189f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpegtabs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegtabs.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpegxl.h b/libffmpeg-avcodec/libavcodec/jpegxl.h new file mode 120000 index 0000000..357800b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpegxl.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegxl.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpegxl_parse.c b/libffmpeg-avcodec/libavcodec/jpegxl_parse.c new file mode 120000 index 0000000..0085965 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpegxl_parse.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegxl_parse.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpegxl_parse.h b/libffmpeg-avcodec/libavcodec/jpegxl_parse.h new file mode 120000 index 0000000..b0dafec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpegxl_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegxl_parse.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jpegxl_parser.c b/libffmpeg-avcodec/libavcodec/jpegxl_parser.c new file mode 120000 index 0000000..14687f6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jpegxl_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegxl_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jrevdct.c b/libffmpeg-avcodec/libavcodec/jrevdct.c new file mode 120000 index 0000000..2602dd3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jrevdct.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jrevdct.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/jvdec.c b/libffmpeg-avcodec/libavcodec/jvdec.c new file mode 120000 index 0000000..948e368 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/jvdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/jvdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/kbdwin.c b/libffmpeg-avcodec/libavcodec/kbdwin.c new file mode 120000 index 0000000..307428c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/kbdwin.c @@ -0,0 +1 @@ +../../upstream/libavcodec/kbdwin.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/kbdwin.h b/libffmpeg-avcodec/libavcodec/kbdwin.h new file mode 120000 index 0000000..f3dc9f3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/kbdwin.h @@ -0,0 +1 @@ +../../upstream/libavcodec/kbdwin.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/kgv1dec.c b/libffmpeg-avcodec/libavcodec/kgv1dec.c new file mode 120000 index 0000000..c8e724c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/kgv1dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/kgv1dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/kmvc.c b/libffmpeg-avcodec/libavcodec/kmvc.c new file mode 120000 index 0000000..12ebd13 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/kmvc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/kmvc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lagarith.c b/libffmpeg-avcodec/libavcodec/lagarith.c new file mode 120000 index 0000000..05ae14b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lagarith.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lagarith.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lagarithrac.c b/libffmpeg-avcodec/libavcodec/lagarithrac.c new file mode 120000 index 0000000..bff2d59 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lagarithrac.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lagarithrac.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lagarithrac.h b/libffmpeg-avcodec/libavcodec/lagarithrac.h new file mode 120000 index 0000000..e5b9479 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lagarithrac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lagarithrac.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/latm_parser.c b/libffmpeg-avcodec/libavcodec/latm_parser.c new file mode 120000 index 0000000..e3bca49 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/latm_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/latm_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lcl.h b/libffmpeg-avcodec/libavcodec/lcl.h new file mode 120000 index 0000000..c8149d1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lcl.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lcl.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lcldec.c b/libffmpeg-avcodec/libavcodec/lcldec.c new file mode 120000 index 0000000..5c5a6dd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lcldec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lcldec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lclenc.c b/libffmpeg-avcodec/libavcodec/lclenc.c new file mode 120000 index 0000000..d19749a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lclenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lclenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/leaddata.h b/libffmpeg-avcodec/libavcodec/leaddata.h new file mode 120000 index 0000000..d2000b4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/leaddata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/leaddata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/leaddec.c b/libffmpeg-avcodec/libavcodec/leaddec.c new file mode 120000 index 0000000..ad29b18 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/leaddec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/leaddec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/leb.h b/libffmpeg-avcodec/libavcodec/leb.h new file mode 120000 index 0000000..776bba5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/leb.h @@ -0,0 +1 @@ +../../upstream/libavcodec/leb.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libaom.c b/libffmpeg-avcodec/libavcodec/libaom.c new file mode 120000 index 0000000..8589491 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libaom.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libaom.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libaom.h b/libffmpeg-avcodec/libavcodec/libaom.h new file mode 120000 index 0000000..53ae1fe --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libaom.h @@ -0,0 +1 @@ +../../upstream/libavcodec/libaom.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libaomdec.c b/libffmpeg-avcodec/libavcodec/libaomdec.c new file mode 120000 index 0000000..ec18f3b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libaomdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libaomdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libaomenc.c b/libffmpeg-avcodec/libavcodec/libaomenc.c new file mode 120000 index 0000000..1be582e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libaomenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libaomenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libaribb24.c b/libffmpeg-avcodec/libavcodec/libaribb24.c new file mode 120000 index 0000000..1ac2fa4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libaribb24.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libaribb24.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libaribcaption.c b/libffmpeg-avcodec/libavcodec/libaribcaption.c new file mode 120000 index 0000000..543c0d2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libaribcaption.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libaribcaption.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libcelt_dec.c b/libffmpeg-avcodec/libavcodec/libcelt_dec.c new file mode 120000 index 0000000..d8cee58 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libcelt_dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libcelt_dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libcodec2.c b/libffmpeg-avcodec/libavcodec/libcodec2.c new file mode 120000 index 0000000..4ffd5ff --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libcodec2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libcodec2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libdav1d.c b/libffmpeg-avcodec/libavcodec/libdav1d.c new file mode 120000 index 0000000..0a2e515 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libdav1d.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libdav1d.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libdavs2.c b/libffmpeg-avcodec/libavcodec/libdavs2.c new file mode 120000 index 0000000..386500f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libdavs2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libdavs2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libfdk-aacdec.c b/libffmpeg-avcodec/libavcodec/libfdk-aacdec.c new file mode 120000 index 0000000..fbc633e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libfdk-aacdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libfdk-aacdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libfdk-aacenc.c b/libffmpeg-avcodec/libavcodec/libfdk-aacenc.c new file mode 120000 index 0000000..42d3069 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libfdk-aacenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libfdk-aacenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libgsmdec.c b/libffmpeg-avcodec/libavcodec/libgsmdec.c new file mode 120000 index 0000000..139d109 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libgsmdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libgsmdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libgsmenc.c b/libffmpeg-avcodec/libavcodec/libgsmenc.c new file mode 120000 index 0000000..868d00d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libgsmenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libgsmenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libilbc.c b/libffmpeg-avcodec/libavcodec/libilbc.c new file mode 120000 index 0000000..2f98293 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libilbc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libilbc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libjxl.c b/libffmpeg-avcodec/libavcodec/libjxl.c new file mode 120000 index 0000000..b2d00f5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libjxl.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libjxl.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libjxl.h b/libffmpeg-avcodec/libavcodec/libjxl.h new file mode 120000 index 0000000..de759d4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libjxl.h @@ -0,0 +1 @@ +../../upstream/libavcodec/libjxl.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libjxldec.c b/libffmpeg-avcodec/libavcodec/libjxldec.c new file mode 120000 index 0000000..fabf7e4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libjxldec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libjxldec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libjxlenc.c b/libffmpeg-avcodec/libavcodec/libjxlenc.c new file mode 120000 index 0000000..8f02774 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libjxlenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libjxlenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libkvazaar.c b/libffmpeg-avcodec/libavcodec/libkvazaar.c new file mode 120000 index 0000000..e747762 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libkvazaar.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libkvazaar.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/liblc3dec.c b/libffmpeg-avcodec/libavcodec/liblc3dec.c new file mode 120000 index 0000000..d98d3b2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/liblc3dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/liblc3dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/liblc3enc.c b/libffmpeg-avcodec/libavcodec/liblc3enc.c new file mode 120000 index 0000000..687ce06 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/liblc3enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/liblc3enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libmp3lame.c b/libffmpeg-avcodec/libavcodec/libmp3lame.c new file mode 120000 index 0000000..3dd12fe --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libmp3lame.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libmp3lame.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libopencore-amr.c b/libffmpeg-avcodec/libavcodec/libopencore-amr.c new file mode 120000 index 0000000..a2c0c05 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libopencore-amr.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libopencore-amr.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libopenh264.c b/libffmpeg-avcodec/libavcodec/libopenh264.c new file mode 120000 index 0000000..5cdcd28 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libopenh264.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libopenh264.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libopenh264.h b/libffmpeg-avcodec/libavcodec/libopenh264.h new file mode 120000 index 0000000..b859921 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libopenh264.h @@ -0,0 +1 @@ +../../upstream/libavcodec/libopenh264.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libopenh264dec.c b/libffmpeg-avcodec/libavcodec/libopenh264dec.c new file mode 120000 index 0000000..5f04360 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libopenh264dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libopenh264dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libopenh264enc.c b/libffmpeg-avcodec/libavcodec/libopenh264enc.c new file mode 120000 index 0000000..bd6f3c4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libopenh264enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libopenh264enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libopenjpegenc.c b/libffmpeg-avcodec/libavcodec/libopenjpegenc.c new file mode 120000 index 0000000..a9e3582 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libopenjpegenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libopenjpegenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libopus.c b/libffmpeg-avcodec/libavcodec/libopus.c new file mode 120000 index 0000000..92e08cf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libopus.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libopus.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libopus.h b/libffmpeg-avcodec/libavcodec/libopus.h new file mode 120000 index 0000000..12860e9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libopus.h @@ -0,0 +1 @@ +../../upstream/libavcodec/libopus.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libopusdec.c b/libffmpeg-avcodec/libavcodec/libopusdec.c new file mode 120000 index 0000000..7c7a60e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libopusdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libopusdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libopusenc.c b/libffmpeg-avcodec/libavcodec/libopusenc.c new file mode 120000 index 0000000..58212ed --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libopusenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libopusenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/librav1e.c b/libffmpeg-avcodec/libavcodec/librav1e.c new file mode 120000 index 0000000..0459822 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/librav1e.c @@ -0,0 +1 @@ +../../upstream/libavcodec/librav1e.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/librsvgdec.c b/libffmpeg-avcodec/libavcodec/librsvgdec.c new file mode 120000 index 0000000..e3d4771 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/librsvgdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/librsvgdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libshine.c b/libffmpeg-avcodec/libavcodec/libshine.c new file mode 120000 index 0000000..2b03b88 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libshine.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libshine.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libspeexdec.c b/libffmpeg-avcodec/libavcodec/libspeexdec.c new file mode 120000 index 0000000..aa934a6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libspeexdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libspeexdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libspeexenc.c b/libffmpeg-avcodec/libavcodec/libspeexenc.c new file mode 120000 index 0000000..7537792 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libspeexenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libspeexenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libsvtav1.c b/libffmpeg-avcodec/libavcodec/libsvtav1.c new file mode 120000 index 0000000..254e44a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libsvtav1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libsvtav1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libtheoraenc.c b/libffmpeg-avcodec/libavcodec/libtheoraenc.c new file mode 120000 index 0000000..122c1f6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libtheoraenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libtheoraenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libtwolame.c b/libffmpeg-avcodec/libavcodec/libtwolame.c new file mode 120000 index 0000000..2aaf294 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libtwolame.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libtwolame.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libuavs3d.c b/libffmpeg-avcodec/libavcodec/libuavs3d.c new file mode 120000 index 0000000..a5da2b9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libuavs3d.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libuavs3d.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libvo-amrwbenc.c b/libffmpeg-avcodec/libavcodec/libvo-amrwbenc.c new file mode 120000 index 0000000..dbbe82c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libvo-amrwbenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libvo-amrwbenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libvorbisdec.c b/libffmpeg-avcodec/libavcodec/libvorbisdec.c new file mode 120000 index 0000000..3eab147 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libvorbisdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libvorbisdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libvorbisenc.c b/libffmpeg-avcodec/libavcodec/libvorbisenc.c new file mode 120000 index 0000000..73f7fcb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libvorbisenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libvorbisenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libvpx.h b/libffmpeg-avcodec/libavcodec/libvpx.h new file mode 120000 index 0000000..6e83c69 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libvpx.h @@ -0,0 +1 @@ +../../upstream/libavcodec/libvpx.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libvpxdec.c b/libffmpeg-avcodec/libavcodec/libvpxdec.c new file mode 120000 index 0000000..2a9292d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libvpxdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libvpxdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libvpxenc.c b/libffmpeg-avcodec/libavcodec/libvpxenc.c new file mode 120000 index 0000000..bc727de --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libvpxenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libvpxenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libwebpenc.c b/libffmpeg-avcodec/libavcodec/libwebpenc.c new file mode 120000 index 0000000..f32499b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libwebpenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libwebpenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libwebpenc_animencoder.c b/libffmpeg-avcodec/libavcodec/libwebpenc_animencoder.c new file mode 120000 index 0000000..114514a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libwebpenc_animencoder.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libwebpenc_animencoder.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libwebpenc_common.c b/libffmpeg-avcodec/libavcodec/libwebpenc_common.c new file mode 120000 index 0000000..2171289 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libwebpenc_common.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libwebpenc_common.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libwebpenc_common.h b/libffmpeg-avcodec/libavcodec/libwebpenc_common.h new file mode 120000 index 0000000..a8146f5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libwebpenc_common.h @@ -0,0 +1 @@ +../../upstream/libavcodec/libwebpenc_common.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libx264.c b/libffmpeg-avcodec/libavcodec/libx264.c new file mode 120000 index 0000000..de02d5b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libx264.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libx264.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libx265.c b/libffmpeg-avcodec/libavcodec/libx265.c new file mode 120000 index 0000000..3267bb2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libx265.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libx265.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libxavs.c b/libffmpeg-avcodec/libavcodec/libxavs.c new file mode 120000 index 0000000..8e83897 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libxavs.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libxavs.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libxavs2.c b/libffmpeg-avcodec/libavcodec/libxavs2.c new file mode 120000 index 0000000..829ec7b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libxavs2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libxavs2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libxevd.c b/libffmpeg-avcodec/libavcodec/libxevd.c new file mode 120000 index 0000000..38c0b16 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libxevd.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libxevd.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libxeve.c b/libffmpeg-avcodec/libavcodec/libxeve.c new file mode 120000 index 0000000..6713372 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libxeve.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libxeve.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libxvid.c b/libffmpeg-avcodec/libavcodec/libxvid.c new file mode 120000 index 0000000..d12af01 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libxvid.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libxvid.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/libzvbi-teletextdec.c b/libffmpeg-avcodec/libavcodec/libzvbi-teletextdec.c new file mode 120000 index 0000000..da4f1f2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/libzvbi-teletextdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/libzvbi-teletextdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ljpegenc.c b/libffmpeg-avcodec/libavcodec/ljpegenc.c new file mode 120000 index 0000000..e4573c0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ljpegenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ljpegenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/loco.c b/libffmpeg-avcodec/libavcodec/loco.c new file mode 120000 index 0000000..4910376 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/loco.c @@ -0,0 +1 @@ +../../upstream/libavcodec/loco.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/log2_tab.c b/libffmpeg-avcodec/libavcodec/log2_tab.c new file mode 120000 index 0000000..15c34dc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/log2_tab.c @@ -0,0 +1 @@ +../../upstream/libavcodec/log2_tab.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lossless_audiodsp.c b/libffmpeg-avcodec/libavcodec/lossless_audiodsp.c new file mode 120000 index 0000000..7dfa781 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lossless_audiodsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lossless_audiodsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lossless_audiodsp.h b/libffmpeg-avcodec/libavcodec/lossless_audiodsp.h new file mode 120000 index 0000000..97c07e2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lossless_audiodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lossless_audiodsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lossless_videodsp.c b/libffmpeg-avcodec/libavcodec/lossless_videodsp.c new file mode 120000 index 0000000..0727e01 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lossless_videodsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lossless_videodsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lossless_videodsp.h b/libffmpeg-avcodec/libavcodec/lossless_videodsp.h new file mode 120000 index 0000000..957308d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lossless_videodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lossless_videodsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lossless_videoencdsp.c b/libffmpeg-avcodec/libavcodec/lossless_videoencdsp.c new file mode 120000 index 0000000..ce5116b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lossless_videoencdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lossless_videoencdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lossless_videoencdsp.h b/libffmpeg-avcodec/libavcodec/lossless_videoencdsp.h new file mode 120000 index 0000000..5357354 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lossless_videoencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lossless_videoencdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lpc.c b/libffmpeg-avcodec/libavcodec/lpc.c new file mode 120000 index 0000000..786b2af --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lpc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lpc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lpc.h b/libffmpeg-avcodec/libavcodec/lpc.h new file mode 120000 index 0000000..82ef5b9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lpc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lpc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lpc_functions.h b/libffmpeg-avcodec/libavcodec/lpc_functions.h new file mode 120000 index 0000000..5c8d3b7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lpc_functions.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lpc_functions.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lscrdec.c b/libffmpeg-avcodec/libavcodec/lscrdec.c new file mode 120000 index 0000000..17d0500 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lscrdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lscrdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lsp.c b/libffmpeg-avcodec/libavcodec/lsp.c new file mode 120000 index 0000000..f787d5c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lsp.h b/libffmpeg-avcodec/libavcodec/lsp.h new file mode 120000 index 0000000..eec478a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lzf.c b/libffmpeg-avcodec/libavcodec/lzf.c new file mode 120000 index 0000000..020421b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lzf.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lzf.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lzf.h b/libffmpeg-avcodec/libavcodec/lzf.h new file mode 120000 index 0000000..012925d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lzf.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lzf.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lzw.c b/libffmpeg-avcodec/libavcodec/lzw.c new file mode 120000 index 0000000..26a11a8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lzw.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lzw.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lzw.h b/libffmpeg-avcodec/libavcodec/lzw.h new file mode 120000 index 0000000..83c2799 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lzw.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lzw.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/lzwenc.c b/libffmpeg-avcodec/libavcodec/lzwenc.c new file mode 120000 index 0000000..4e87861 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/lzwenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/lzwenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/m101.c b/libffmpeg-avcodec/libavcodec/m101.c new file mode 120000 index 0000000..651f0bc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/m101.c @@ -0,0 +1 @@ +../../upstream/libavcodec/m101.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mace.c b/libffmpeg-avcodec/libavcodec/mace.c new file mode 120000 index 0000000..3d28513 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mace.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mace.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/magicyuv.c b/libffmpeg-avcodec/libavcodec/magicyuv.c new file mode 120000 index 0000000..8ef6fea --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/magicyuv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/magicyuv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/magicyuvenc.c b/libffmpeg-avcodec/libavcodec/magicyuvenc.c new file mode 120000 index 0000000..5d692b4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/magicyuvenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/magicyuvenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mathops.h b/libffmpeg-avcodec/libavcodec/mathops.h new file mode 120000 index 0000000..de669ca --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mathops.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mathops.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mathtables.c b/libffmpeg-avcodec/libavcodec/mathtables.c new file mode 120000 index 0000000..5a0b8bc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mathtables.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mathtables.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mdec.c b/libffmpeg-avcodec/libavcodec/mdec.c new file mode 120000 index 0000000..4e10007 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/me_cmp.c b/libffmpeg-avcodec/libavcodec/me_cmp.c new file mode 120000 index 0000000..fd12701 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/me_cmp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/me_cmp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/me_cmp.h b/libffmpeg-avcodec/libavcodec/me_cmp.h new file mode 120000 index 0000000..02c348e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/me_cmp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/me_cmp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mediacodec.c b/libffmpeg-avcodec/libavcodec/mediacodec.c new file mode 120000 index 0000000..e7c0dca --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mediacodec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mediacodec.h b/libffmpeg-avcodec/libavcodec/mediacodec.h new file mode 120000 index 0000000..1d7beff --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mediacodec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mediacodec_surface.c b/libffmpeg-avcodec/libavcodec/mediacodec_surface.c new file mode 120000 index 0000000..2420af4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mediacodec_surface.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodec_surface.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mediacodec_surface.h b/libffmpeg-avcodec/libavcodec/mediacodec_surface.h new file mode 120000 index 0000000..f988f51 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mediacodec_surface.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodec_surface.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mediacodec_sw_buffer.c b/libffmpeg-avcodec/libavcodec/mediacodec_sw_buffer.c new file mode 120000 index 0000000..11f4fbd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mediacodec_sw_buffer.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodec_sw_buffer.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mediacodec_sw_buffer.h b/libffmpeg-avcodec/libavcodec/mediacodec_sw_buffer.h new file mode 120000 index 0000000..ad26700 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mediacodec_sw_buffer.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodec_sw_buffer.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mediacodec_wrapper.c b/libffmpeg-avcodec/libavcodec/mediacodec_wrapper.c new file mode 120000 index 0000000..ac0a8e0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mediacodec_wrapper.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodec_wrapper.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mediacodec_wrapper.h b/libffmpeg-avcodec/libavcodec/mediacodec_wrapper.h new file mode 120000 index 0000000..072518e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mediacodec_wrapper.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodec_wrapper.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mediacodecdec.c b/libffmpeg-avcodec/libavcodec/mediacodecdec.c new file mode 120000 index 0000000..99c3cce --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mediacodecdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodecdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mediacodecdec_common.c b/libffmpeg-avcodec/libavcodec/mediacodecdec_common.c new file mode 120000 index 0000000..2fad92e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mediacodecdec_common.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodecdec_common.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mediacodecdec_common.h b/libffmpeg-avcodec/libavcodec/mediacodecdec_common.h new file mode 120000 index 0000000..9e556e5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mediacodecdec_common.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodecdec_common.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mediacodecenc.c b/libffmpeg-avcodec/libavcodec/mediacodecenc.c new file mode 120000 index 0000000..6a57088 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mediacodecenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodecenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/metasound.c b/libffmpeg-avcodec/libavcodec/metasound.c new file mode 120000 index 0000000..cfd497d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/metasound.c @@ -0,0 +1 @@ +../../upstream/libavcodec/metasound.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/metasound_data.h b/libffmpeg-avcodec/libavcodec/metasound_data.h new file mode 120000 index 0000000..2e619e3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/metasound_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/metasound_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/metasound_twinvq_data.h b/libffmpeg-avcodec/libavcodec/metasound_twinvq_data.h new file mode 120000 index 0000000..c4a1c5d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/metasound_twinvq_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/metasound_twinvq_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mf_utils.c b/libffmpeg-avcodec/libavcodec/mf_utils.c new file mode 120000 index 0000000..0424731 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mf_utils.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mf_utils.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mf_utils.h b/libffmpeg-avcodec/libavcodec/mf_utils.h new file mode 120000 index 0000000..b047049 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mf_utils.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mf_utils.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mfenc.c b/libffmpeg-avcodec/libavcodec/mfenc.c new file mode 120000 index 0000000..9005150 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mfenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mfenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/microdvddec.c b/libffmpeg-avcodec/libavcodec/microdvddec.c new file mode 120000 index 0000000..248aab3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/microdvddec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/microdvddec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/midivid.c b/libffmpeg-avcodec/libavcodec/midivid.c new file mode 120000 index 0000000..a53f125 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/midivid.c @@ -0,0 +1 @@ +../../upstream/libavcodec/midivid.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mimic.c b/libffmpeg-avcodec/libavcodec/mimic.c new file mode 120000 index 0000000..1c64169 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mimic.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mimic.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/misc4.c b/libffmpeg-avcodec/libavcodec/misc4.c new file mode 120000 index 0000000..2d9eb2d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/misc4.c @@ -0,0 +1 @@ +../../upstream/libavcodec/misc4.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/misc4_parser.c b/libffmpeg-avcodec/libavcodec/misc4_parser.c new file mode 120000 index 0000000..dbffc76 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/misc4_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/misc4_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mjpeg.h b/libffmpeg-avcodec/libavcodec/mjpeg.h new file mode 120000 index 0000000..ffce614 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mjpeg.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpeg.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mjpeg_parser.c b/libffmpeg-avcodec/libavcodec/mjpeg_parser.c new file mode 120000 index 0000000..372f01e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mjpeg_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpeg_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mjpegbdec.c b/libffmpeg-avcodec/libavcodec/mjpegbdec.c new file mode 120000 index 0000000..17b2ebf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mjpegbdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegbdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mjpegdec.c b/libffmpeg-avcodec/libavcodec/mjpegdec.c new file mode 120000 index 0000000..1dbcea6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mjpegdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mjpegdec.h b/libffmpeg-avcodec/libavcodec/mjpegdec.h new file mode 120000 index 0000000..5fdcd97 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mjpegdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegdec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mjpegdec_common.c b/libffmpeg-avcodec/libavcodec/mjpegdec_common.c new file mode 120000 index 0000000..7f5370f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mjpegdec_common.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegdec_common.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mjpegenc.c b/libffmpeg-avcodec/libavcodec/mjpegenc.c new file mode 120000 index 0000000..531cfca --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mjpegenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mjpegenc.h b/libffmpeg-avcodec/libavcodec/mjpegenc.h new file mode 120000 index 0000000..a5c74e9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mjpegenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mjpegenc_common.c b/libffmpeg-avcodec/libavcodec/mjpegenc_common.c new file mode 120000 index 0000000..9df4d14 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mjpegenc_common.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegenc_common.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mjpegenc_common.h b/libffmpeg-avcodec/libavcodec/mjpegenc_common.h new file mode 120000 index 0000000..bb72f8e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mjpegenc_common.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegenc_common.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mjpegenc_huffman.c b/libffmpeg-avcodec/libavcodec/mjpegenc_huffman.c new file mode 120000 index 0000000..2ea6e46 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mjpegenc_huffman.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegenc_huffman.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mjpegenc_huffman.h b/libffmpeg-avcodec/libavcodec/mjpegenc_huffman.h new file mode 120000 index 0000000..86d9e6e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mjpegenc_huffman.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegenc_huffman.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mlp.c b/libffmpeg-avcodec/libavcodec/mlp.c new file mode 120000 index 0000000..1f9cc16 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mlp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mlp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mlp.h b/libffmpeg-avcodec/libavcodec/mlp.h new file mode 120000 index 0000000..29611ba --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mlp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mlp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mlp_parse.c b/libffmpeg-avcodec/libavcodec/mlp_parse.c new file mode 120000 index 0000000..90c36de --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mlp_parse.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mlp_parse.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mlp_parse.h b/libffmpeg-avcodec/libavcodec/mlp_parse.h new file mode 120000 index 0000000..c097a3e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mlp_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mlp_parse.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mlp_parser.c b/libffmpeg-avcodec/libavcodec/mlp_parser.c new file mode 120000 index 0000000..83e9067 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mlp_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mlp_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mlpdec.c b/libffmpeg-avcodec/libavcodec/mlpdec.c new file mode 120000 index 0000000..cff13aa --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mlpdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mlpdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mlpdsp.c b/libffmpeg-avcodec/libavcodec/mlpdsp.c new file mode 120000 index 0000000..e65fd1c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mlpdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mlpdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mlpdsp.h b/libffmpeg-avcodec/libavcodec/mlpdsp.h new file mode 120000 index 0000000..d6b2e8f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mlpdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mlpdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mlpenc.c b/libffmpeg-avcodec/libavcodec/mlpenc.c new file mode 120000 index 0000000..b2bc8e3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mlpenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mlpenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mlz.c b/libffmpeg-avcodec/libavcodec/mlz.c new file mode 120000 index 0000000..c8a4828 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mlz.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mlz.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mlz.h b/libffmpeg-avcodec/libavcodec/mlz.h new file mode 120000 index 0000000..374206b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mlz.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mlz.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mmaldec.c b/libffmpeg-avcodec/libavcodec/mmaldec.c new file mode 120000 index 0000000..53a08b8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mmaldec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mmaldec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mmvideo.c b/libffmpeg-avcodec/libavcodec/mmvideo.c new file mode 120000 index 0000000..b9d587e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mmvideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mmvideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mobiclip.c b/libffmpeg-avcodec/libavcodec/mobiclip.c new file mode 120000 index 0000000..79555e2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mobiclip.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mobiclip.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/motion_est.c b/libffmpeg-avcodec/libavcodec/motion_est.c new file mode 120000 index 0000000..e9f53d7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/motion_est.c @@ -0,0 +1 @@ +../../upstream/libavcodec/motion_est.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/motion_est.h b/libffmpeg-avcodec/libavcodec/motion_est.h new file mode 120000 index 0000000..70127e8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/motion_est.h @@ -0,0 +1 @@ +../../upstream/libavcodec/motion_est.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/motion_est_template.c b/libffmpeg-avcodec/libavcodec/motion_est_template.c new file mode 120000 index 0000000..5c32c91 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/motion_est_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/motion_est_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/motionpixels.c b/libffmpeg-avcodec/libavcodec/motionpixels.c new file mode 120000 index 0000000..87b3817 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/motionpixels.c @@ -0,0 +1 @@ +../../upstream/libavcodec/motionpixels.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/motionpixels_tablegen.c b/libffmpeg-avcodec/libavcodec/motionpixels_tablegen.c new file mode 120000 index 0000000..0a10c03 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/motionpixels_tablegen.c @@ -0,0 +1 @@ +../../upstream/libavcodec/motionpixels_tablegen.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/motionpixels_tablegen.h b/libffmpeg-avcodec/libavcodec/motionpixels_tablegen.h new file mode 120000 index 0000000..cb42382 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/motionpixels_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/motionpixels_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/movtextdec.c b/libffmpeg-avcodec/libavcodec/movtextdec.c new file mode 120000 index 0000000..c2c4c25 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/movtextdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/movtextdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/movtextenc.c b/libffmpeg-avcodec/libavcodec/movtextenc.c new file mode 120000 index 0000000..40d8cf2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/movtextenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/movtextenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpc.c b/libffmpeg-avcodec/libavcodec/mpc.c new file mode 120000 index 0000000..cf9c947 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpc.h b/libffmpeg-avcodec/libavcodec/mpc.h new file mode 120000 index 0000000..981c993 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpc7.c b/libffmpeg-avcodec/libavcodec/mpc7.c new file mode 120000 index 0000000..1f26e8d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpc7.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpc7.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpc7data.h b/libffmpeg-avcodec/libavcodec/mpc7data.h new file mode 120000 index 0000000..9d72926 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpc7data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpc7data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpc8.c b/libffmpeg-avcodec/libavcodec/mpc8.c new file mode 120000 index 0000000..be4edea --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpc8.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpc8.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpc8data.h b/libffmpeg-avcodec/libavcodec/mpc8data.h new file mode 120000 index 0000000..e5c3764 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpc8data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpc8data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpc8huff.h b/libffmpeg-avcodec/libavcodec/mpc8huff.h new file mode 120000 index 0000000..98fef5c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpc8huff.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpc8huff.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpcdata.h b/libffmpeg-avcodec/libavcodec/mpcdata.h new file mode 120000 index 0000000..33f3f01 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpcdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpcdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg12.c b/libffmpeg-avcodec/libavcodec/mpeg12.c new file mode 120000 index 0000000..ee15a3e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg12.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg12.h b/libffmpeg-avcodec/libavcodec/mpeg12.h new file mode 120000 index 0000000..5f2d3c8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg12.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg12codecs.h b/libffmpeg-avcodec/libavcodec/mpeg12codecs.h new file mode 120000 index 0000000..a741500 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg12codecs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12codecs.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg12data.c b/libffmpeg-avcodec/libavcodec/mpeg12data.c new file mode 120000 index 0000000..edb627e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg12data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg12data.h b/libffmpeg-avcodec/libavcodec/mpeg12data.h new file mode 120000 index 0000000..5a59de7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg12data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg12dec.c b/libffmpeg-avcodec/libavcodec/mpeg12dec.c new file mode 120000 index 0000000..d019800 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg12dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg12dec.h b/libffmpeg-avcodec/libavcodec/mpeg12dec.h new file mode 120000 index 0000000..d965029 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg12dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12dec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg12enc.c b/libffmpeg-avcodec/libavcodec/mpeg12enc.c new file mode 120000 index 0000000..01cf42f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg12enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg12enc.h b/libffmpeg-avcodec/libavcodec/mpeg12enc.h new file mode 120000 index 0000000..9a56b35 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg12enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12enc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg12framerate.c b/libffmpeg-avcodec/libavcodec/mpeg12framerate.c new file mode 120000 index 0000000..bc3b353 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg12framerate.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12framerate.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg12vlc.h b/libffmpeg-avcodec/libavcodec/mpeg12vlc.h new file mode 120000 index 0000000..396a729 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg12vlc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12vlc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4audio.c b/libffmpeg-avcodec/libavcodec/mpeg4audio.c new file mode 120000 index 0000000..a51a325 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4audio.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4audio.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4audio.h b/libffmpeg-avcodec/libavcodec/mpeg4audio.h new file mode 120000 index 0000000..e3a0961 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4audio.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4audio.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4audio_copy_pce.h b/libffmpeg-avcodec/libavcodec/mpeg4audio_copy_pce.h new file mode 120000 index 0000000..d5061ef --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4audio_copy_pce.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4audio_copy_pce.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4audio_sample_rates.c b/libffmpeg-avcodec/libavcodec/mpeg4audio_sample_rates.c new file mode 120000 index 0000000..433e7d0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4audio_sample_rates.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4audio_sample_rates.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4audio_sample_rates.h b/libffmpeg-avcodec/libavcodec/mpeg4audio_sample_rates.h new file mode 120000 index 0000000..ad34d12 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4audio_sample_rates.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4audio_sample_rates.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4data.h b/libffmpeg-avcodec/libavcodec/mpeg4data.h new file mode 120000 index 0000000..f593fc6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4video.c b/libffmpeg-avcodec/libavcodec/mpeg4video.c new file mode 120000 index 0000000..99dc1a2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4video.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4video.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4video.h b/libffmpeg-avcodec/libavcodec/mpeg4video.h new file mode 120000 index 0000000..770e938 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4video.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4video.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4video_parser.c b/libffmpeg-avcodec/libavcodec/mpeg4video_parser.c new file mode 120000 index 0000000..4d78d69 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4video_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4video_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4videodata.h b/libffmpeg-avcodec/libavcodec/mpeg4videodata.h new file mode 120000 index 0000000..68a6039 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4videodata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videodata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4videodec.c b/libffmpeg-avcodec/libavcodec/mpeg4videodec.c new file mode 120000 index 0000000..c3cc6fc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4videodec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videodec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4videodec.h b/libffmpeg-avcodec/libavcodec/mpeg4videodec.h new file mode 120000 index 0000000..7d775f8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4videodec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videodec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4videodefs.h b/libffmpeg-avcodec/libavcodec/mpeg4videodefs.h new file mode 120000 index 0000000..d3ad9ff --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4videodefs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videodefs.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4videodsp.c b/libffmpeg-avcodec/libavcodec/mpeg4videodsp.c new file mode 120000 index 0000000..2f88e8a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4videodsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videodsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4videodsp.h b/libffmpeg-avcodec/libavcodec/mpeg4videodsp.h new file mode 120000 index 0000000..43a4049 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4videodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videodsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4videoenc.c b/libffmpeg-avcodec/libavcodec/mpeg4videoenc.c new file mode 120000 index 0000000..d842635 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4videoenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videoenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg4videoenc.h b/libffmpeg-avcodec/libavcodec/mpeg4videoenc.h new file mode 120000 index 0000000..6d210a3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg4videoenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videoenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg_er.c b/libffmpeg-avcodec/libavcodec/mpeg_er.c new file mode 120000 index 0000000..dbd05f9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg_er.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg_er.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpeg_er.h b/libffmpeg-avcodec/libavcodec/mpeg_er.h new file mode 120000 index 0000000..ea7a8ea --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpeg_er.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg_er.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudio.c b/libffmpeg-avcodec/libavcodec/mpegaudio.c new file mode 120000 index 0000000..5f7eaf6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudio.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudio.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudio.h b/libffmpeg-avcodec/libavcodec/mpegaudio.h new file mode 120000 index 0000000..b95bf53 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudio.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudio.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudio_parser.c b/libffmpeg-avcodec/libavcodec/mpegaudio_parser.c new file mode 120000 index 0000000..2eccf3d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudio_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudio_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudio_tablegen.c b/libffmpeg-avcodec/libavcodec/mpegaudio_tablegen.c new file mode 120000 index 0000000..7b29dc1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudio_tablegen.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudio_tablegen.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudio_tablegen.h b/libffmpeg-avcodec/libavcodec/mpegaudio_tablegen.h new file mode 120000 index 0000000..ddb6e55 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudio_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudio_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodata.c b/libffmpeg-avcodec/libavcodec/mpegaudiodata.c new file mode 120000 index 0000000..6ab3372 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodata.h b/libffmpeg-avcodec/libavcodec/mpegaudiodata.h new file mode 120000 index 0000000..a19b9c2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodec_common.c b/libffmpeg-avcodec/libavcodec/mpegaudiodec_common.c new file mode 120000 index 0000000..c62c9ee --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodec_common.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodec_common.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodec_common_tablegen.c b/libffmpeg-avcodec/libavcodec/mpegaudiodec_common_tablegen.c new file mode 120000 index 0000000..a31f266 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodec_common_tablegen.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodec_common_tablegen.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodec_common_tablegen.h b/libffmpeg-avcodec/libavcodec/mpegaudiodec_common_tablegen.h new file mode 120000 index 0000000..f333858 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodec_common_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodec_common_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodec_fixed.c b/libffmpeg-avcodec/libavcodec/mpegaudiodec_fixed.c new file mode 120000 index 0000000..b3c3f0b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodec_fixed.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodec_fixed.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodec_float.c b/libffmpeg-avcodec/libavcodec/mpegaudiodec_float.c new file mode 120000 index 0000000..48023d8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodec_float.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodec_float.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodec_template.c b/libffmpeg-avcodec/libavcodec/mpegaudiodec_template.c new file mode 120000 index 0000000..a90d8f4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodec_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodec_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodecheader.c b/libffmpeg-avcodec/libavcodec/mpegaudiodecheader.c new file mode 120000 index 0000000..45f0494 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodecheader.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodecheader.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodecheader.h b/libffmpeg-avcodec/libavcodec/mpegaudiodecheader.h new file mode 120000 index 0000000..e0a2f59 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodecheader.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodecheader.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodsp.c b/libffmpeg-avcodec/libavcodec/mpegaudiodsp.c new file mode 120000 index 0000000..0cba569 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodsp.h b/libffmpeg-avcodec/libavcodec/mpegaudiodsp.h new file mode 120000 index 0000000..8316489 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodsp_data.c b/libffmpeg-avcodec/libavcodec/mpegaudiodsp_data.c new file mode 120000 index 0000000..473583d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodsp_data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodsp_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodsp_fixed.c b/libffmpeg-avcodec/libavcodec/mpegaudiodsp_fixed.c new file mode 120000 index 0000000..c2b88d8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodsp_fixed.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodsp_fixed.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodsp_float.c b/libffmpeg-avcodec/libavcodec/mpegaudiodsp_float.c new file mode 120000 index 0000000..d076141 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodsp_float.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodsp_float.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiodsp_template.c b/libffmpeg-avcodec/libavcodec/mpegaudiodsp_template.c new file mode 120000 index 0000000..187827e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiodsp_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodsp_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudioenc_fixed.c b/libffmpeg-avcodec/libavcodec/mpegaudioenc_fixed.c new file mode 120000 index 0000000..10a6195 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudioenc_fixed.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudioenc_fixed.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudioenc_float.c b/libffmpeg-avcodec/libavcodec/mpegaudioenc_float.c new file mode 120000 index 0000000..e30e7d4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudioenc_float.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudioenc_float.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudioenc_template.c b/libffmpeg-avcodec/libavcodec/mpegaudioenc_template.c new file mode 120000 index 0000000..d3a9ff5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudioenc_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudioenc_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiotab.h b/libffmpeg-avcodec/libavcodec/mpegaudiotab.h new file mode 120000 index 0000000..c18c287 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiotab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiotab.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiotabs.c b/libffmpeg-avcodec/libavcodec/mpegaudiotabs.c new file mode 120000 index 0000000..af43466 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiotabs.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiotabs.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegaudiotabs.h b/libffmpeg-avcodec/libavcodec/mpegaudiotabs.h new file mode 120000 index 0000000..902417c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegaudiotabs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiotabs.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegpicture.c b/libffmpeg-avcodec/libavcodec/mpegpicture.c new file mode 120000 index 0000000..20f1b0a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegpicture.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegpicture.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegpicture.h b/libffmpeg-avcodec/libavcodec/mpegpicture.h new file mode 120000 index 0000000..415b25f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegpicture.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegpicture.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegutils.c b/libffmpeg-avcodec/libavcodec/mpegutils.c new file mode 120000 index 0000000..edd35d9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegutils.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegutils.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegutils.h b/libffmpeg-avcodec/libavcodec/mpegutils.h new file mode 120000 index 0000000..29167e6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegutils.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegutils.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegvideo.c b/libffmpeg-avcodec/libavcodec/mpegvideo.c new file mode 120000 index 0000000..9c18185 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegvideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegvideo.h b/libffmpeg-avcodec/libavcodec/mpegvideo.h new file mode 120000 index 0000000..d275f36 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegvideo.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideo.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegvideo_dec.c b/libffmpeg-avcodec/libavcodec/mpegvideo_dec.c new file mode 120000 index 0000000..3af2ea1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegvideo_dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideo_dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegvideo_enc.c b/libffmpeg-avcodec/libavcodec/mpegvideo_enc.c new file mode 120000 index 0000000..4f0ea6e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegvideo_enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideo_enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegvideo_motion.c b/libffmpeg-avcodec/libavcodec/mpegvideo_motion.c new file mode 120000 index 0000000..ed0a76d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegvideo_motion.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideo_motion.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegvideo_parser.c b/libffmpeg-avcodec/libavcodec/mpegvideo_parser.c new file mode 120000 index 0000000..4389d74 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegvideo_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideo_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegvideodata.c b/libffmpeg-avcodec/libavcodec/mpegvideodata.c new file mode 120000 index 0000000..c2a1831 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegvideodata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideodata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegvideodata.h b/libffmpeg-avcodec/libavcodec/mpegvideodata.h new file mode 120000 index 0000000..a580f31 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegvideodata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideodata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegvideodec.h b/libffmpeg-avcodec/libavcodec/mpegvideodec.h new file mode 120000 index 0000000..e4407ad --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegvideodec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideodec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegvideoenc.h b/libffmpeg-avcodec/libavcodec/mpegvideoenc.h new file mode 120000 index 0000000..1e150eb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegvideoenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideoenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegvideoencdsp.c b/libffmpeg-avcodec/libavcodec/mpegvideoencdsp.c new file mode 120000 index 0000000..d98480e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegvideoencdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideoencdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpegvideoencdsp.h b/libffmpeg-avcodec/libavcodec/mpegvideoencdsp.h new file mode 120000 index 0000000..97ef83b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpegvideoencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideoencdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpl2dec.c b/libffmpeg-avcodec/libavcodec/mpl2dec.c new file mode 120000 index 0000000..81e62aa --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpl2dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpl2dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mpv_reconstruct_mb_template.c b/libffmpeg-avcodec/libavcodec/mpv_reconstruct_mb_template.c new file mode 120000 index 0000000..81df017 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mpv_reconstruct_mb_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mpv_reconstruct_mb_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mqc.c b/libffmpeg-avcodec/libavcodec/mqc.c new file mode 120000 index 0000000..3cd2800 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mqc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mqc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mqc.h b/libffmpeg-avcodec/libavcodec/mqc.h new file mode 120000 index 0000000..66ecdfa --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mqc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mqc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mqcdec.c b/libffmpeg-avcodec/libavcodec/mqcdec.c new file mode 120000 index 0000000..5cf7b82 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mqcdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mqcdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mqcenc.c b/libffmpeg-avcodec/libavcodec/mqcenc.c new file mode 120000 index 0000000..15271f3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mqcenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mqcenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mscc.c b/libffmpeg-avcodec/libavcodec/mscc.c new file mode 120000 index 0000000..5a46aac --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mscc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mscc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msgsmdec.c b/libffmpeg-avcodec/libavcodec/msgsmdec.c new file mode 120000 index 0000000..0359eb6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msgsmdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/msgsmdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msgsmdec.h b/libffmpeg-avcodec/libavcodec/msgsmdec.h new file mode 120000 index 0000000..671bea7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msgsmdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msgsmdec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msmpeg4.c b/libffmpeg-avcodec/libavcodec/msmpeg4.c new file mode 120000 index 0000000..cd587c5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msmpeg4.c @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msmpeg4.h b/libffmpeg-avcodec/libavcodec/msmpeg4.h new file mode 120000 index 0000000..959c6c0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msmpeg4.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msmpeg4_vc1_data.c b/libffmpeg-avcodec/libavcodec/msmpeg4_vc1_data.c new file mode 120000 index 0000000..dee056e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msmpeg4_vc1_data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4_vc1_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msmpeg4_vc1_data.h b/libffmpeg-avcodec/libavcodec/msmpeg4_vc1_data.h new file mode 120000 index 0000000..dd1309f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msmpeg4_vc1_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4_vc1_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msmpeg4data.c b/libffmpeg-avcodec/libavcodec/msmpeg4data.c new file mode 120000 index 0000000..f430633 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msmpeg4data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msmpeg4data.h b/libffmpeg-avcodec/libavcodec/msmpeg4data.h new file mode 120000 index 0000000..aece477 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msmpeg4data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msmpeg4dec.c b/libffmpeg-avcodec/libavcodec/msmpeg4dec.c new file mode 120000 index 0000000..8ed41be --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msmpeg4dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msmpeg4dec.h b/libffmpeg-avcodec/libavcodec/msmpeg4dec.h new file mode 120000 index 0000000..d757936 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msmpeg4dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4dec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msmpeg4enc.c b/libffmpeg-avcodec/libavcodec/msmpeg4enc.c new file mode 120000 index 0000000..96b6a2e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msmpeg4enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msmpeg4enc.h b/libffmpeg-avcodec/libavcodec/msmpeg4enc.h new file mode 120000 index 0000000..4ec686c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msmpeg4enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4enc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msp2dec.c b/libffmpeg-avcodec/libavcodec/msp2dec.c new file mode 120000 index 0000000..de7c6a5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msp2dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/msp2dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msrle.c b/libffmpeg-avcodec/libavcodec/msrle.c new file mode 120000 index 0000000..573fae1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msrle.c @@ -0,0 +1 @@ +../../upstream/libavcodec/msrle.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msrledec.c b/libffmpeg-avcodec/libavcodec/msrledec.c new file mode 120000 index 0000000..370b1a8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msrledec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/msrledec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msrledec.h b/libffmpeg-avcodec/libavcodec/msrledec.h new file mode 120000 index 0000000..ff4d49b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msrledec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msrledec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msrleenc.c b/libffmpeg-avcodec/libavcodec/msrleenc.c new file mode 120000 index 0000000..8fc5c31 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msrleenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/msrleenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mss1.c b/libffmpeg-avcodec/libavcodec/mss1.c new file mode 120000 index 0000000..9c66538 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mss1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mss1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mss12.c b/libffmpeg-avcodec/libavcodec/mss12.c new file mode 120000 index 0000000..fa15a07 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mss12.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mss12.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mss12.h b/libffmpeg-avcodec/libavcodec/mss12.h new file mode 120000 index 0000000..f73d549 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mss12.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mss12.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mss2.c b/libffmpeg-avcodec/libavcodec/mss2.c new file mode 120000 index 0000000..d50f016 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mss2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mss2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mss2dsp.c b/libffmpeg-avcodec/libavcodec/mss2dsp.c new file mode 120000 index 0000000..94f940c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mss2dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mss2dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mss2dsp.h b/libffmpeg-avcodec/libavcodec/mss2dsp.h new file mode 120000 index 0000000..bf9c33c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mss2dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mss2dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mss3.c b/libffmpeg-avcodec/libavcodec/mss3.c new file mode 120000 index 0000000..64cc42e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mss3.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mss3.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mss34dsp.c b/libffmpeg-avcodec/libavcodec/mss34dsp.c new file mode 120000 index 0000000..ae8fa4c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mss34dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mss34dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mss34dsp.h b/libffmpeg-avcodec/libavcodec/mss34dsp.h new file mode 120000 index 0000000..d1a60cd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mss34dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mss34dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mss4.c b/libffmpeg-avcodec/libavcodec/mss4.c new file mode 120000 index 0000000..bc2d27f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mss4.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mss4.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msvideo1.c b/libffmpeg-avcodec/libavcodec/msvideo1.c new file mode 120000 index 0000000..244a025 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msvideo1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/msvideo1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/msvideo1enc.c b/libffmpeg-avcodec/libavcodec/msvideo1enc.c new file mode 120000 index 0000000..f039ff0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/msvideo1enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/msvideo1enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mv30.c b/libffmpeg-avcodec/libavcodec/mv30.c new file mode 120000 index 0000000..50d0606 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mv30.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mv30.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mvcdec.c b/libffmpeg-avcodec/libavcodec/mvcdec.c new file mode 120000 index 0000000..00413df --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mvcdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mvcdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mvha.c b/libffmpeg-avcodec/libavcodec/mvha.c new file mode 120000 index 0000000..b9b563a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mvha.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mvha.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mwsc.c b/libffmpeg-avcodec/libavcodec/mwsc.c new file mode 120000 index 0000000..a9857b3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mwsc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mwsc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/mxpegdec.c b/libffmpeg-avcodec/libavcodec/mxpegdec.c new file mode 120000 index 0000000..d26bd05 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/mxpegdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/mxpegdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nellymoser.c b/libffmpeg-avcodec/libavcodec/nellymoser.c new file mode 120000 index 0000000..0f6d6cd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nellymoser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nellymoser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nellymoser.h b/libffmpeg-avcodec/libavcodec/nellymoser.h new file mode 120000 index 0000000..20a7e58 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nellymoser.h @@ -0,0 +1 @@ +../../upstream/libavcodec/nellymoser.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nellymoserdec.c b/libffmpeg-avcodec/libavcodec/nellymoserdec.c new file mode 120000 index 0000000..177de6c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nellymoserdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nellymoserdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nellymoserenc.c b/libffmpeg-avcodec/libavcodec/nellymoserenc.c new file mode 120000 index 0000000..3ae3f83 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nellymoserenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nellymoserenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/notchlc.c b/libffmpeg-avcodec/libavcodec/notchlc.c new file mode 120000 index 0000000..521bd3b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/notchlc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/notchlc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/null.c b/libffmpeg-avcodec/libavcodec/null.c new file mode 120000 index 0000000..70dbb3b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/null.c @@ -0,0 +1 @@ +../../upstream/libavcodec/null.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nuv.c b/libffmpeg-avcodec/libavcodec/nuv.c new file mode 120000 index 0000000..4548ee5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nuv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nuv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvdec.c b/libffmpeg-avcodec/libavcodec/nvdec.c new file mode 120000 index 0000000..ccf93f4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvdec.h b/libffmpeg-avcodec/libavcodec/nvdec.h new file mode 120000 index 0000000..5a29d2d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/nvdec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvdec_av1.c b/libffmpeg-avcodec/libavcodec/nvdec_av1.c new file mode 120000 index 0000000..cd0ad20 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvdec_av1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvdec_av1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvdec_h264.c b/libffmpeg-avcodec/libavcodec/nvdec_h264.c new file mode 120000 index 0000000..fd8bbc1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvdec_h264.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvdec_h264.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvdec_hevc.c b/libffmpeg-avcodec/libavcodec/nvdec_hevc.c new file mode 120000 index 0000000..0385510 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvdec_hevc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvdec_hevc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvdec_mjpeg.c b/libffmpeg-avcodec/libavcodec/nvdec_mjpeg.c new file mode 120000 index 0000000..8b39975 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvdec_mjpeg.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvdec_mjpeg.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvdec_mpeg12.c b/libffmpeg-avcodec/libavcodec/nvdec_mpeg12.c new file mode 120000 index 0000000..f847845 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvdec_mpeg12.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvdec_mpeg12.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvdec_mpeg4.c b/libffmpeg-avcodec/libavcodec/nvdec_mpeg4.c new file mode 120000 index 0000000..bd2fedb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvdec_mpeg4.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvdec_mpeg4.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvdec_vc1.c b/libffmpeg-avcodec/libavcodec/nvdec_vc1.c new file mode 120000 index 0000000..bf2535b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvdec_vc1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvdec_vc1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvdec_vp8.c b/libffmpeg-avcodec/libavcodec/nvdec_vp8.c new file mode 120000 index 0000000..8495c36 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvdec_vp8.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvdec_vp8.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvdec_vp9.c b/libffmpeg-avcodec/libavcodec/nvdec_vp9.c new file mode 120000 index 0000000..6b410be --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvdec_vp9.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvdec_vp9.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvenc.c b/libffmpeg-avcodec/libavcodec/nvenc.c new file mode 120000 index 0000000..2e0f712 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvenc.h b/libffmpeg-avcodec/libavcodec/nvenc.h new file mode 120000 index 0000000..0762aea --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/nvenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvenc_av1.c b/libffmpeg-avcodec/libavcodec/nvenc_av1.c new file mode 120000 index 0000000..7540400 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvenc_av1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvenc_av1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvenc_h264.c b/libffmpeg-avcodec/libavcodec/nvenc_h264.c new file mode 120000 index 0000000..6e03dd1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvenc_h264.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvenc_h264.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/nvenc_hevc.c b/libffmpeg-avcodec/libavcodec/nvenc_hevc.c new file mode 120000 index 0000000..37259a7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/nvenc_hevc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/nvenc_hevc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/omx.c b/libffmpeg-avcodec/libavcodec/omx.c new file mode 120000 index 0000000..df198b4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/omx.c @@ -0,0 +1 @@ +../../upstream/libavcodec/omx.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/on2avc.c b/libffmpeg-avcodec/libavcodec/on2avc.c new file mode 120000 index 0000000..97f23be --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/on2avc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/on2avc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/on2avcdata.c b/libffmpeg-avcodec/libavcodec/on2avcdata.c new file mode 120000 index 0000000..6eb49cb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/on2avcdata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/on2avcdata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/on2avcdata.h b/libffmpeg-avcodec/libavcodec/on2avcdata.h new file mode 120000 index 0000000..ae452d4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/on2avcdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/on2avcdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/options.c b/libffmpeg-avcodec/libavcodec/options.c new file mode 120000 index 0000000..6f279ec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/options.c @@ -0,0 +1 @@ +../../upstream/libavcodec/options.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/options_table.h b/libffmpeg-avcodec/libavcodec/options_table.h new file mode 120000 index 0000000..7f94eae --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/options_table.h @@ -0,0 +1 @@ +../../upstream/libavcodec/options_table.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opus.h b/libffmpeg-avcodec/libavcodec/opus.h new file mode 120000 index 0000000..cb7b05d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opus.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opus.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opus_celt.c b/libffmpeg-avcodec/libavcodec/opus_celt.c new file mode 120000 index 0000000..8eb4250 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opus_celt.c @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_celt.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opus_celt.h b/libffmpeg-avcodec/libavcodec/opus_celt.h new file mode 120000 index 0000000..262046c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opus_celt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_celt.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opus_parse.c b/libffmpeg-avcodec/libavcodec/opus_parse.c new file mode 120000 index 0000000..05c60c4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opus_parse.c @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_parse.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opus_parse.h b/libffmpeg-avcodec/libavcodec/opus_parse.h new file mode 120000 index 0000000..a07a48c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opus_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_parse.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opus_parser.c b/libffmpeg-avcodec/libavcodec/opus_parser.c new file mode 120000 index 0000000..88860db --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opus_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opus_pvq.c b/libffmpeg-avcodec/libavcodec/opus_pvq.c new file mode 120000 index 0000000..096d1ab --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opus_pvq.c @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_pvq.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opus_pvq.h b/libffmpeg-avcodec/libavcodec/opus_pvq.h new file mode 120000 index 0000000..9665a10 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opus_pvq.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_pvq.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opus_rc.c b/libffmpeg-avcodec/libavcodec/opus_rc.c new file mode 120000 index 0000000..b1ac307 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opus_rc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_rc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opus_rc.h b/libffmpeg-avcodec/libavcodec/opus_rc.h new file mode 120000 index 0000000..971aabd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opus_rc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_rc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opus_silk.c b/libffmpeg-avcodec/libavcodec/opus_silk.c new file mode 120000 index 0000000..4c63a4c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opus_silk.c @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_silk.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opus_silk.h b/libffmpeg-avcodec/libavcodec/opus_silk.h new file mode 120000 index 0000000..9c08edc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opus_silk.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_silk.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opusdec.c b/libffmpeg-avcodec/libavcodec/opusdec.c new file mode 120000 index 0000000..e41f636 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opusdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/opusdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opusdec_celt.c b/libffmpeg-avcodec/libavcodec/opusdec_celt.c new file mode 120000 index 0000000..55da778 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opusdec_celt.c @@ -0,0 +1 @@ +../../upstream/libavcodec/opusdec_celt.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opusdsp.c b/libffmpeg-avcodec/libavcodec/opusdsp.c new file mode 120000 index 0000000..692acdf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opusdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/opusdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opusdsp.h b/libffmpeg-avcodec/libavcodec/opusdsp.h new file mode 120000 index 0000000..97f12d5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opusdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opusdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opusenc.c b/libffmpeg-avcodec/libavcodec/opusenc.c new file mode 120000 index 0000000..b38630c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opusenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/opusenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opusenc.h b/libffmpeg-avcodec/libavcodec/opusenc.h new file mode 120000 index 0000000..113f8cf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opusenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opusenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opusenc_psy.c b/libffmpeg-avcodec/libavcodec/opusenc_psy.c new file mode 120000 index 0000000..69d8627 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opusenc_psy.c @@ -0,0 +1 @@ +../../upstream/libavcodec/opusenc_psy.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opusenc_psy.h b/libffmpeg-avcodec/libavcodec/opusenc_psy.h new file mode 120000 index 0000000..2cd567f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opusenc_psy.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opusenc_psy.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opusenc_utils.h b/libffmpeg-avcodec/libavcodec/opusenc_utils.h new file mode 120000 index 0000000..1b76b98 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opusenc_utils.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opusenc_utils.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opustab.c b/libffmpeg-avcodec/libavcodec/opustab.c new file mode 120000 index 0000000..d05b645 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opustab.c @@ -0,0 +1 @@ +../../upstream/libavcodec/opustab.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/opustab.h b/libffmpeg-avcodec/libavcodec/opustab.h new file mode 120000 index 0000000..d8f79fb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/opustab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opustab.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/osq.c b/libffmpeg-avcodec/libavcodec/osq.c new file mode 120000 index 0000000..e7617e1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/osq.c @@ -0,0 +1 @@ +../../upstream/libavcodec/osq.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/packet.c b/libffmpeg-avcodec/libavcodec/packet.c new file mode 120000 index 0000000..462e3d5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/packet.c @@ -0,0 +1 @@ +../../upstream/libavcodec/packet.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/packet.h b/libffmpeg-avcodec/libavcodec/packet.h new file mode 120000 index 0000000..d041bc9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/packet.h @@ -0,0 +1 @@ +../../upstream/libavcodec/packet.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/packet_internal.h b/libffmpeg-avcodec/libavcodec/packet_internal.h new file mode 120000 index 0000000..e8646db --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/packet_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/packet_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/paf.h b/libffmpeg-avcodec/libavcodec/paf.h new file mode 120000 index 0000000..53a99be --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/paf.h @@ -0,0 +1 @@ +../../upstream/libavcodec/paf.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pafaudio.c b/libffmpeg-avcodec/libavcodec/pafaudio.c new file mode 120000 index 0000000..76c11af --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pafaudio.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pafaudio.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pafvideo.c b/libffmpeg-avcodec/libavcodec/pafvideo.c new file mode 120000 index 0000000..05b354d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pafvideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pafvideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pamenc.c b/libffmpeg-avcodec/libavcodec/pamenc.c new file mode 120000 index 0000000..9443099 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pamenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pamenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/parser.c b/libffmpeg-avcodec/libavcodec/parser.c new file mode 120000 index 0000000..207f36f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/parser.h b/libffmpeg-avcodec/libavcodec/parser.h new file mode 120000 index 0000000..582ffba --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/parser.h @@ -0,0 +1 @@ +../../upstream/libavcodec/parser.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/parser_list.c b/libffmpeg-avcodec/libavcodec/parser_list.c new file mode 120000 index 0000000..d8c60a3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/parser_list.c @@ -0,0 +1 @@ +../../upstream/libavcodec/parser_list.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/parsers.c b/libffmpeg-avcodec/libavcodec/parsers.c new file mode 120000 index 0000000..c362601 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/parsers.c @@ -0,0 +1 @@ +../../upstream/libavcodec/parsers.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pcm-bluray.c b/libffmpeg-avcodec/libavcodec/pcm-bluray.c new file mode 120000 index 0000000..4a792a1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pcm-bluray.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pcm-bluray.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pcm-blurayenc.c b/libffmpeg-avcodec/libavcodec/pcm-blurayenc.c new file mode 120000 index 0000000..d474b01 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pcm-blurayenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pcm-blurayenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pcm-dvd.c b/libffmpeg-avcodec/libavcodec/pcm-dvd.c new file mode 120000 index 0000000..2e8f730 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pcm-dvd.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pcm-dvd.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pcm-dvdenc.c b/libffmpeg-avcodec/libavcodec/pcm-dvdenc.c new file mode 120000 index 0000000..30cfdc8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pcm-dvdenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pcm-dvdenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pcm.c b/libffmpeg-avcodec/libavcodec/pcm.c new file mode 120000 index 0000000..79a5a88 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pcm.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pcm.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pcm_tablegen.c b/libffmpeg-avcodec/libavcodec/pcm_tablegen.c new file mode 120000 index 0000000..4a10cf5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pcm_tablegen.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pcm_tablegen.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pcm_tablegen.h b/libffmpeg-avcodec/libavcodec/pcm_tablegen.h new file mode 120000 index 0000000..196d0d1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pcm_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/pcm_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pcx.c b/libffmpeg-avcodec/libavcodec/pcx.c new file mode 120000 index 0000000..2c7fe9a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pcx.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pcx.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pcxenc.c b/libffmpeg-avcodec/libavcodec/pcxenc.c new file mode 120000 index 0000000..1dacdb9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pcxenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pcxenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pdvdec.c b/libffmpeg-avcodec/libavcodec/pdvdec.c new file mode 120000 index 0000000..4143697 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pdvdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pdvdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pel_template.c b/libffmpeg-avcodec/libavcodec/pel_template.c new file mode 120000 index 0000000..1760560 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pel_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pel_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pgssubdec.c b/libffmpeg-avcodec/libavcodec/pgssubdec.c new file mode 120000 index 0000000..0057733 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pgssubdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pgssubdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pgxdec.c b/libffmpeg-avcodec/libavcodec/pgxdec.c new file mode 120000 index 0000000..208fcb6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pgxdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pgxdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/photocd.c b/libffmpeg-avcodec/libavcodec/photocd.c new file mode 120000 index 0000000..a54b2bb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/photocd.c @@ -0,0 +1 @@ +../../upstream/libavcodec/photocd.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pictordec.c b/libffmpeg-avcodec/libavcodec/pictordec.c new file mode 120000 index 0000000..dae713e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pictordec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pictordec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pixblockdsp.c b/libffmpeg-avcodec/libavcodec/pixblockdsp.c new file mode 120000 index 0000000..a808748 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pixblockdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pixblockdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pixblockdsp.h b/libffmpeg-avcodec/libavcodec/pixblockdsp.h new file mode 120000 index 0000000..67850d8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pixblockdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/pixblockdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pixels.h b/libffmpeg-avcodec/libavcodec/pixels.h new file mode 120000 index 0000000..3a0fed0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pixels.h @@ -0,0 +1 @@ +../../upstream/libavcodec/pixels.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pixlet.c b/libffmpeg-avcodec/libavcodec/pixlet.c new file mode 120000 index 0000000..b97f017 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pixlet.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pixlet.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/png.c b/libffmpeg-avcodec/libavcodec/png.c new file mode 120000 index 0000000..e80cd12 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/png.c @@ -0,0 +1 @@ +../../upstream/libavcodec/png.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/png.h b/libffmpeg-avcodec/libavcodec/png.h new file mode 120000 index 0000000..2abb0d6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/png.h @@ -0,0 +1 @@ +../../upstream/libavcodec/png.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/png_parser.c b/libffmpeg-avcodec/libavcodec/png_parser.c new file mode 120000 index 0000000..c5c52bc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/png_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/png_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pngdec.c b/libffmpeg-avcodec/libavcodec/pngdec.c new file mode 120000 index 0000000..cbbabe5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pngdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pngdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pngdsp.c b/libffmpeg-avcodec/libavcodec/pngdsp.c new file mode 120000 index 0000000..f30d895 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pngdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pngdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pngdsp.h b/libffmpeg-avcodec/libavcodec/pngdsp.h new file mode 120000 index 0000000..d9901c1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pngdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/pngdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pngenc.c b/libffmpeg-avcodec/libavcodec/pngenc.c new file mode 120000 index 0000000..efd1e25 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pngenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pngenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pnm.c b/libffmpeg-avcodec/libavcodec/pnm.c new file mode 120000 index 0000000..14e9f2f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pnm.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pnm.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pnm.h b/libffmpeg-avcodec/libavcodec/pnm.h new file mode 120000 index 0000000..a2fe3fb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pnm.h @@ -0,0 +1 @@ +../../upstream/libavcodec/pnm.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pnm_parser.c b/libffmpeg-avcodec/libavcodec/pnm_parser.c new file mode 120000 index 0000000..4687795 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pnm_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pnm_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pnmdec.c b/libffmpeg-avcodec/libavcodec/pnmdec.c new file mode 120000 index 0000000..252f11c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pnmdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pnmdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pnmenc.c b/libffmpeg-avcodec/libavcodec/pnmenc.c new file mode 120000 index 0000000..f969e64 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pnmenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pnmenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/profiles.c b/libffmpeg-avcodec/libavcodec/profiles.c new file mode 120000 index 0000000..063ed62 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/profiles.c @@ -0,0 +1 @@ +../../upstream/libavcodec/profiles.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/profiles.h b/libffmpeg-avcodec/libavcodec/profiles.h new file mode 120000 index 0000000..12d2996 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/profiles.h @@ -0,0 +1 @@ +../../upstream/libavcodec/profiles.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/progressframe.h b/libffmpeg-avcodec/libavcodec/progressframe.h new file mode 120000 index 0000000..6bedda4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/progressframe.h @@ -0,0 +1 @@ +../../upstream/libavcodec/progressframe.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/proresdata.c b/libffmpeg-avcodec/libavcodec/proresdata.c new file mode 120000 index 0000000..1cfaf03 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/proresdata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/proresdata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/proresdata.h b/libffmpeg-avcodec/libavcodec/proresdata.h new file mode 120000 index 0000000..5350ecb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/proresdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/proresdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/proresdec.c b/libffmpeg-avcodec/libavcodec/proresdec.c new file mode 120000 index 0000000..928ff76 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/proresdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/proresdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/proresdec.h b/libffmpeg-avcodec/libavcodec/proresdec.h new file mode 120000 index 0000000..5f1e684 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/proresdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/proresdec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/proresdsp.c b/libffmpeg-avcodec/libavcodec/proresdsp.c new file mode 120000 index 0000000..40b7459 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/proresdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/proresdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/proresdsp.h b/libffmpeg-avcodec/libavcodec/proresdsp.h new file mode 120000 index 0000000..f446a86 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/proresdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/proresdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/proresenc_anatoliy.c b/libffmpeg-avcodec/libavcodec/proresenc_anatoliy.c new file mode 120000 index 0000000..ae5b4b1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/proresenc_anatoliy.c @@ -0,0 +1 @@ +../../upstream/libavcodec/proresenc_anatoliy.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/proresenc_kostya.c b/libffmpeg-avcodec/libavcodec/proresenc_kostya.c new file mode 120000 index 0000000..261c1b0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/proresenc_kostya.c @@ -0,0 +1 @@ +../../upstream/libavcodec/proresenc_kostya.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/prosumer.c b/libffmpeg-avcodec/libavcodec/prosumer.c new file mode 120000 index 0000000..ad75516 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/prosumer.c @@ -0,0 +1 @@ +../../upstream/libavcodec/prosumer.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/psd.c b/libffmpeg-avcodec/libavcodec/psd.c new file mode 120000 index 0000000..5ed38ae --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/psd.c @@ -0,0 +1 @@ +../../upstream/libavcodec/psd.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/psymodel.c b/libffmpeg-avcodec/libavcodec/psymodel.c new file mode 120000 index 0000000..730ccff --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/psymodel.c @@ -0,0 +1 @@ +../../upstream/libavcodec/psymodel.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/psymodel.h b/libffmpeg-avcodec/libavcodec/psymodel.h new file mode 120000 index 0000000..6e552e0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/psymodel.h @@ -0,0 +1 @@ +../../upstream/libavcodec/psymodel.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pthread.c b/libffmpeg-avcodec/libavcodec/pthread.c new file mode 120000 index 0000000..36ec8b0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pthread.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pthread.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pthread_frame.c b/libffmpeg-avcodec/libavcodec/pthread_frame.c new file mode 120000 index 0000000..9ca8a44 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pthread_frame.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pthread_frame.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pthread_internal.h b/libffmpeg-avcodec/libavcodec/pthread_internal.h new file mode 120000 index 0000000..0cc60e7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pthread_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/pthread_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/pthread_slice.c b/libffmpeg-avcodec/libavcodec/pthread_slice.c new file mode 120000 index 0000000..1567da7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/pthread_slice.c @@ -0,0 +1 @@ +../../upstream/libavcodec/pthread_slice.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ptx.c b/libffmpeg-avcodec/libavcodec/ptx.c new file mode 120000 index 0000000..2e39036 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ptx.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ptx.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/put_bits.h b/libffmpeg-avcodec/libavcodec/put_bits.h new file mode 120000 index 0000000..73bc768 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/put_bits.h @@ -0,0 +1 @@ +../../upstream/libavcodec/put_bits.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/put_golomb.h b/libffmpeg-avcodec/libavcodec/put_golomb.h new file mode 120000 index 0000000..c6e77b9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/put_golomb.h @@ -0,0 +1 @@ +../../upstream/libavcodec/put_golomb.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qcelpdata.h b/libffmpeg-avcodec/libavcodec/qcelpdata.h new file mode 120000 index 0000000..a39f35a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qcelpdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qcelpdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qcelpdec.c b/libffmpeg-avcodec/libavcodec/qcelpdec.c new file mode 120000 index 0000000..15ab4c1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qcelpdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qcelpdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qdm2.c b/libffmpeg-avcodec/libavcodec/qdm2.c new file mode 120000 index 0000000..1cf5133 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qdm2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qdm2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qdm2_tablegen.c b/libffmpeg-avcodec/libavcodec/qdm2_tablegen.c new file mode 120000 index 0000000..667e3ec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qdm2_tablegen.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qdm2_tablegen.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qdm2_tablegen.h b/libffmpeg-avcodec/libavcodec/qdm2_tablegen.h new file mode 120000 index 0000000..7a40a41 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qdm2_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qdm2_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qdm2data.h b/libffmpeg-avcodec/libavcodec/qdm2data.h new file mode 120000 index 0000000..bfa64c9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qdm2data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qdm2data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qdmc.c b/libffmpeg-avcodec/libavcodec/qdmc.c new file mode 120000 index 0000000..3c6f0fd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qdmc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qdmc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qdrw.c b/libffmpeg-avcodec/libavcodec/qdrw.c new file mode 120000 index 0000000..22874a5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qdrw.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qdrw.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qoadec.c b/libffmpeg-avcodec/libavcodec/qoadec.c new file mode 120000 index 0000000..4d72fe9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qoadec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qoadec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qoi.h b/libffmpeg-avcodec/libavcodec/qoi.h new file mode 120000 index 0000000..ce99cdd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qoi.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qoi.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qoi_parser.c b/libffmpeg-avcodec/libavcodec/qoi_parser.c new file mode 120000 index 0000000..a23024e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qoi_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qoi_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qoidec.c b/libffmpeg-avcodec/libavcodec/qoidec.c new file mode 120000 index 0000000..f03de99 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qoidec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qoidec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qoienc.c b/libffmpeg-avcodec/libavcodec/qoienc.c new file mode 120000 index 0000000..d06caae --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qoienc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qoienc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qpeg.c b/libffmpeg-avcodec/libavcodec/qpeg.c new file mode 120000 index 0000000..081a989 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qpeg.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qpeg.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qpel_template.c b/libffmpeg-avcodec/libavcodec/qpel_template.c new file mode 120000 index 0000000..d8f6fc9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qpel_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qpel_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qpeldsp.c b/libffmpeg-avcodec/libavcodec/qpeldsp.c new file mode 120000 index 0000000..ed6caae --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qpeldsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qpeldsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qpeldsp.h b/libffmpeg-avcodec/libavcodec/qpeldsp.h new file mode 120000 index 0000000..4f9184f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qpeldsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qpeldsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsv.c b/libffmpeg-avcodec/libavcodec/qsv.c new file mode 120000 index 0000000..8850576 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qsv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsv.h b/libffmpeg-avcodec/libavcodec/qsv.h new file mode 120000 index 0000000..2bf5d61 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsv.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qsv.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsv_api.c b/libffmpeg-avcodec/libavcodec/qsv_api.c new file mode 120000 index 0000000..c9a4333 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsv_api.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qsv_api.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsv_internal.h b/libffmpeg-avcodec/libavcodec/qsv_internal.h new file mode 120000 index 0000000..271c9de --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsv_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qsv_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsvdec.c b/libffmpeg-avcodec/libavcodec/qsvdec.c new file mode 120000 index 0000000..0f8bd55 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsvdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qsvdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsvenc.c b/libffmpeg-avcodec/libavcodec/qsvenc.c new file mode 120000 index 0000000..6f2f2ed --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsvenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qsvenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsvenc.h b/libffmpeg-avcodec/libavcodec/qsvenc.h new file mode 120000 index 0000000..54942f4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsvenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qsvenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsvenc_av1.c b/libffmpeg-avcodec/libavcodec/qsvenc_av1.c new file mode 120000 index 0000000..78ec4bc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsvenc_av1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qsvenc_av1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsvenc_h264.c b/libffmpeg-avcodec/libavcodec/qsvenc_h264.c new file mode 120000 index 0000000..bb2a85d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsvenc_h264.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qsvenc_h264.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsvenc_hevc.c b/libffmpeg-avcodec/libavcodec/qsvenc_hevc.c new file mode 120000 index 0000000..2424499 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsvenc_hevc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qsvenc_hevc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsvenc_jpeg.c b/libffmpeg-avcodec/libavcodec/qsvenc_jpeg.c new file mode 120000 index 0000000..4ca821e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsvenc_jpeg.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qsvenc_jpeg.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsvenc_mpeg2.c b/libffmpeg-avcodec/libavcodec/qsvenc_mpeg2.c new file mode 120000 index 0000000..239e2ca --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsvenc_mpeg2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qsvenc_mpeg2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qsvenc_vp9.c b/libffmpeg-avcodec/libavcodec/qsvenc_vp9.c new file mode 120000 index 0000000..942c3c7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qsvenc_vp9.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qsvenc_vp9.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qtrle.c b/libffmpeg-avcodec/libavcodec/qtrle.c new file mode 120000 index 0000000..8428030 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qtrle.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qtrle.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/qtrleenc.c b/libffmpeg-avcodec/libavcodec/qtrleenc.c new file mode 120000 index 0000000..a48c00a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/qtrleenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/qtrleenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/r210dec.c b/libffmpeg-avcodec/libavcodec/r210dec.c new file mode 120000 index 0000000..1df7108 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/r210dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/r210dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/r210enc.c b/libffmpeg-avcodec/libavcodec/r210enc.c new file mode 120000 index 0000000..62944f2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/r210enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/r210enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ra144.c b/libffmpeg-avcodec/libavcodec/ra144.c new file mode 120000 index 0000000..e44d0a1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ra144.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ra144.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ra144.h b/libffmpeg-avcodec/libavcodec/ra144.h new file mode 120000 index 0000000..1832ea3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ra144.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ra144.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ra144dec.c b/libffmpeg-avcodec/libavcodec/ra144dec.c new file mode 120000 index 0000000..3e4dfee --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ra144dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ra144dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ra144enc.c b/libffmpeg-avcodec/libavcodec/ra144enc.c new file mode 120000 index 0000000..3092a50 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ra144enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ra144enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ra288.c b/libffmpeg-avcodec/libavcodec/ra288.c new file mode 120000 index 0000000..97a156f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ra288.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ra288.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ra288.h b/libffmpeg-avcodec/libavcodec/ra288.h new file mode 120000 index 0000000..42e3113 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ra288.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ra288.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ralf.c b/libffmpeg-avcodec/libavcodec/ralf.c new file mode 120000 index 0000000..32ddfb2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ralf.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ralf.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ralfdata.h b/libffmpeg-avcodec/libavcodec/ralfdata.h new file mode 120000 index 0000000..e919643 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ralfdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ralfdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rangecoder.c b/libffmpeg-avcodec/libavcodec/rangecoder.c new file mode 120000 index 0000000..1f8a673 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rangecoder.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rangecoder.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rangecoder.h b/libffmpeg-avcodec/libavcodec/rangecoder.h new file mode 120000 index 0000000..8adc39c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rangecoder.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rangecoder.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rasc.c b/libffmpeg-avcodec/libavcodec/rasc.c new file mode 120000 index 0000000..5ea9afd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rasc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rasc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ratecontrol.c b/libffmpeg-avcodec/libavcodec/ratecontrol.c new file mode 120000 index 0000000..b05045b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ratecontrol.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ratecontrol.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ratecontrol.h b/libffmpeg-avcodec/libavcodec/ratecontrol.h new file mode 120000 index 0000000..2df0766 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ratecontrol.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ratecontrol.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/raw.c b/libffmpeg-avcodec/libavcodec/raw.c new file mode 120000 index 0000000..175370a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/raw.c @@ -0,0 +1 @@ +../../upstream/libavcodec/raw.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/raw.h b/libffmpeg-avcodec/libavcodec/raw.h new file mode 120000 index 0000000..eb1de77 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/raw.h @@ -0,0 +1 @@ +../../upstream/libavcodec/raw.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rawdec.c b/libffmpeg-avcodec/libavcodec/rawdec.c new file mode 120000 index 0000000..9f17782 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rawdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rawdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rawenc.c b/libffmpeg-avcodec/libavcodec/rawenc.c new file mode 120000 index 0000000..9cec782 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rawenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rawenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/realtextdec.c b/libffmpeg-avcodec/libavcodec/realtextdec.c new file mode 120000 index 0000000..7192476 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/realtextdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/realtextdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rectangle.h b/libffmpeg-avcodec/libavcodec/rectangle.h new file mode 120000 index 0000000..35e8daa --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rectangle.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rectangle.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/refstruct.c b/libffmpeg-avcodec/libavcodec/refstruct.c new file mode 120000 index 0000000..d4c6963 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/refstruct.c @@ -0,0 +1 @@ +../../upstream/libavcodec/refstruct.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/refstruct.h b/libffmpeg-avcodec/libavcodec/refstruct.h new file mode 120000 index 0000000..8606a5d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/refstruct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/refstruct.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/reverse.c b/libffmpeg-avcodec/libavcodec/reverse.c new file mode 120000 index 0000000..e2fe6ca --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/reverse.c @@ -0,0 +1 @@ +../../upstream/libavcodec/reverse.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rka.c b/libffmpeg-avcodec/libavcodec/rka.c new file mode 120000 index 0000000..7f4b43e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rka.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rka.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rkmppdec.c b/libffmpeg-avcodec/libavcodec/rkmppdec.c new file mode 120000 index 0000000..0d5356c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rkmppdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rkmppdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rl.c b/libffmpeg-avcodec/libavcodec/rl.c new file mode 120000 index 0000000..7d68132 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rl.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rl.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rl.h b/libffmpeg-avcodec/libavcodec/rl.h new file mode 120000 index 0000000..90b1a38 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rl.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rl.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rl2.c b/libffmpeg-avcodec/libavcodec/rl2.c new file mode 120000 index 0000000..78ee38e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rl2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rl2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rle.c b/libffmpeg-avcodec/libavcodec/rle.c new file mode 120000 index 0000000..495884b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rle.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rle.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rle.h b/libffmpeg-avcodec/libavcodec/rle.h new file mode 120000 index 0000000..98238eb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rle.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rle.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rnd_avg.h b/libffmpeg-avcodec/libavcodec/rnd_avg.h new file mode 120000 index 0000000..699cb1b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rnd_avg.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rnd_avg.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/roqaudioenc.c b/libffmpeg-avcodec/libavcodec/roqaudioenc.c new file mode 120000 index 0000000..3048d06 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/roqaudioenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/roqaudioenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/roqvideo.c b/libffmpeg-avcodec/libavcodec/roqvideo.c new file mode 120000 index 0000000..ebeae93 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/roqvideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/roqvideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/roqvideo.h b/libffmpeg-avcodec/libavcodec/roqvideo.h new file mode 120000 index 0000000..65b22dc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/roqvideo.h @@ -0,0 +1 @@ +../../upstream/libavcodec/roqvideo.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/roqvideodec.c b/libffmpeg-avcodec/libavcodec/roqvideodec.c new file mode 120000 index 0000000..7929881 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/roqvideodec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/roqvideodec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/roqvideoenc.c b/libffmpeg-avcodec/libavcodec/roqvideoenc.c new file mode 120000 index 0000000..530888a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/roqvideoenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/roqvideoenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rpza.c b/libffmpeg-avcodec/libavcodec/rpza.c new file mode 120000 index 0000000..e850bf9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rpza.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rpza.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rpzaenc.c b/libffmpeg-avcodec/libavcodec/rpzaenc.c new file mode 120000 index 0000000..b703676 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rpzaenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rpzaenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rscc.c b/libffmpeg-avcodec/libavcodec/rscc.c new file mode 120000 index 0000000..34a4bd8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rscc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rscc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rtjpeg.c b/libffmpeg-avcodec/libavcodec/rtjpeg.c new file mode 120000 index 0000000..551b8e1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rtjpeg.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rtjpeg.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rtjpeg.h b/libffmpeg-avcodec/libavcodec/rtjpeg.h new file mode 120000 index 0000000..50a70c7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rtjpeg.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rtjpeg.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rtv1.c b/libffmpeg-avcodec/libavcodec/rtv1.c new file mode 120000 index 0000000..3d54631 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rtv1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rtv1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv10.c b/libffmpeg-avcodec/libavcodec/rv10.c new file mode 120000 index 0000000..163ef3c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv10.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rv10.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv10dec.h b/libffmpeg-avcodec/libavcodec/rv10dec.h new file mode 120000 index 0000000..8189466 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv10dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv10dec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv10enc.c b/libffmpeg-avcodec/libavcodec/rv10enc.c new file mode 120000 index 0000000..b7aeed9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv10enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rv10enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv10enc.h b/libffmpeg-avcodec/libavcodec/rv10enc.h new file mode 120000 index 0000000..7b58479 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv10enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv10enc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv20enc.c b/libffmpeg-avcodec/libavcodec/rv20enc.c new file mode 120000 index 0000000..0d21376 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv20enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rv20enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv30.c b/libffmpeg-avcodec/libavcodec/rv30.c new file mode 120000 index 0000000..96d881f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv30.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rv30.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv30data.h b/libffmpeg-avcodec/libavcodec/rv30data.h new file mode 120000 index 0000000..a73e977 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv30data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv30data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv30dsp.c b/libffmpeg-avcodec/libavcodec/rv30dsp.c new file mode 120000 index 0000000..403171c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv30dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rv30dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv34.c b/libffmpeg-avcodec/libavcodec/rv34.c new file mode 120000 index 0000000..73a2ca6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv34.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rv34.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv34.h b/libffmpeg-avcodec/libavcodec/rv34.h new file mode 120000 index 0000000..210b29b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv34.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv34.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv34_parser.c b/libffmpeg-avcodec/libavcodec/rv34_parser.c new file mode 120000 index 0000000..c10cfea --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv34_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rv34_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv34data.h b/libffmpeg-avcodec/libavcodec/rv34data.h new file mode 120000 index 0000000..594758b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv34data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv34data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv34dsp.c b/libffmpeg-avcodec/libavcodec/rv34dsp.c new file mode 120000 index 0000000..e50a8dc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv34dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rv34dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv34dsp.h b/libffmpeg-avcodec/libavcodec/rv34dsp.h new file mode 120000 index 0000000..980d27c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv34dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv34dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv34vlc.h b/libffmpeg-avcodec/libavcodec/rv34vlc.h new file mode 120000 index 0000000..27c6ead --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv34vlc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv34vlc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv40.c b/libffmpeg-avcodec/libavcodec/rv40.c new file mode 120000 index 0000000..3852e1d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv40.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rv40.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv40data.h b/libffmpeg-avcodec/libavcodec/rv40data.h new file mode 120000 index 0000000..4a69f1f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv40data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv40data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv40dsp.c b/libffmpeg-avcodec/libavcodec/rv40dsp.c new file mode 120000 index 0000000..1454ef2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv40dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/rv40dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/rv40vlc2.h b/libffmpeg-avcodec/libavcodec/rv40vlc2.h new file mode 120000 index 0000000..e13e5be --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/rv40vlc2.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv40vlc2.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/s302m.c b/libffmpeg-avcodec/libavcodec/s302m.c new file mode 120000 index 0000000..dcbabc2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/s302m.c @@ -0,0 +1 @@ +../../upstream/libavcodec/s302m.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/s302menc.c b/libffmpeg-avcodec/libavcodec/s302menc.c new file mode 120000 index 0000000..8ed4beb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/s302menc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/s302menc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/samidec.c b/libffmpeg-avcodec/libavcodec/samidec.c new file mode 120000 index 0000000..d084d2b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/samidec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/samidec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sanm.c b/libffmpeg-avcodec/libavcodec/sanm.c new file mode 120000 index 0000000..f75a5aa --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sanm.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sanm.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbc.c b/libffmpeg-avcodec/libavcodec/sbc.c new file mode 120000 index 0000000..e511fe3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sbc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbc.h b/libffmpeg-avcodec/libavcodec/sbc.h new file mode 120000 index 0000000..9c5b0ea --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sbc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbc_parser.c b/libffmpeg-avcodec/libavcodec/sbc_parser.c new file mode 120000 index 0000000..df97003 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbc_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sbc_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbcdec.c b/libffmpeg-avcodec/libavcodec/sbcdec.c new file mode 120000 index 0000000..ef2c5ba --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbcdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sbcdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbcdec_data.c b/libffmpeg-avcodec/libavcodec/sbcdec_data.c new file mode 120000 index 0000000..db664ee --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbcdec_data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sbcdec_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbcdec_data.h b/libffmpeg-avcodec/libavcodec/sbcdec_data.h new file mode 120000 index 0000000..4848f9b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbcdec_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sbcdec_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbcdsp.c b/libffmpeg-avcodec/libavcodec/sbcdsp.c new file mode 120000 index 0000000..b0f8fac --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbcdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sbcdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbcdsp.h b/libffmpeg-avcodec/libavcodec/sbcdsp.h new file mode 120000 index 0000000..bc6467a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbcdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sbcdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbcdsp_data.c b/libffmpeg-avcodec/libavcodec/sbcdsp_data.c new file mode 120000 index 0000000..1ccb76d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbcdsp_data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sbcdsp_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbcdsp_data.h b/libffmpeg-avcodec/libavcodec/sbcdsp_data.h new file mode 120000 index 0000000..44a4ca8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbcdsp_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sbcdsp_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbcenc.c b/libffmpeg-avcodec/libavcodec/sbcenc.c new file mode 120000 index 0000000..06ccfe4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbcenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sbcenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbr.h b/libffmpeg-avcodec/libavcodec/sbr.h new file mode 120000 index 0000000..16431a6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sbr.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbrdsp.c b/libffmpeg-avcodec/libavcodec/sbrdsp.c new file mode 120000 index 0000000..c9314e6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbrdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sbrdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbrdsp.h b/libffmpeg-avcodec/libavcodec/sbrdsp.h new file mode 120000 index 0000000..f47753e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbrdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sbrdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbrdsp_fixed.c b/libffmpeg-avcodec/libavcodec/sbrdsp_fixed.c new file mode 120000 index 0000000..3e6a5c3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbrdsp_fixed.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sbrdsp_fixed.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sbrdsp_template.c b/libffmpeg-avcodec/libavcodec/sbrdsp_template.c new file mode 120000 index 0000000..abf8d4e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sbrdsp_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sbrdsp_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/scpr.c b/libffmpeg-avcodec/libavcodec/scpr.c new file mode 120000 index 0000000..df13850 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/scpr.c @@ -0,0 +1 @@ +../../upstream/libavcodec/scpr.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/scpr.h b/libffmpeg-avcodec/libavcodec/scpr.h new file mode 120000 index 0000000..b315a50 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/scpr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/scpr.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/scpr3.c b/libffmpeg-avcodec/libavcodec/scpr3.c new file mode 120000 index 0000000..ce242dc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/scpr3.c @@ -0,0 +1 @@ +../../upstream/libavcodec/scpr3.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/scpr3.h b/libffmpeg-avcodec/libavcodec/scpr3.h new file mode 120000 index 0000000..6405f76 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/scpr3.h @@ -0,0 +1 @@ +../../upstream/libavcodec/scpr3.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/screenpresso.c b/libffmpeg-avcodec/libavcodec/screenpresso.c new file mode 120000 index 0000000..f7aa3ff --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/screenpresso.c @@ -0,0 +1 @@ +../../upstream/libavcodec/screenpresso.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sei.h b/libffmpeg-avcodec/libavcodec/sei.h new file mode 120000 index 0000000..cc55de9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sei.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sei.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sga.c b/libffmpeg-avcodec/libavcodec/sga.c new file mode 120000 index 0000000..79d51fb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sga.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sga.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sgi.h b/libffmpeg-avcodec/libavcodec/sgi.h new file mode 120000 index 0000000..8951ba2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sgi.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sgi.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sgidec.c b/libffmpeg-avcodec/libavcodec/sgidec.c new file mode 120000 index 0000000..c869414 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sgidec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sgidec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sgienc.c b/libffmpeg-avcodec/libavcodec/sgienc.c new file mode 120000 index 0000000..22b0255 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sgienc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sgienc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sgirledec.c b/libffmpeg-avcodec/libavcodec/sgirledec.c new file mode 120000 index 0000000..1f6c565 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sgirledec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sgirledec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sheervideo.c b/libffmpeg-avcodec/libavcodec/sheervideo.c new file mode 120000 index 0000000..877e832 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sheervideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sheervideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sheervideodata.h b/libffmpeg-avcodec/libavcodec/sheervideodata.h new file mode 120000 index 0000000..8fb6646 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sheervideodata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sheervideodata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/shorten.c b/libffmpeg-avcodec/libavcodec/shorten.c new file mode 120000 index 0000000..22b778e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/shorten.c @@ -0,0 +1 @@ +../../upstream/libavcodec/shorten.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/simple_idct.c b/libffmpeg-avcodec/libavcodec/simple_idct.c new file mode 120000 index 0000000..bc19e6b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/simple_idct.c @@ -0,0 +1 @@ +../../upstream/libavcodec/simple_idct.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/simple_idct.h b/libffmpeg-avcodec/libavcodec/simple_idct.h new file mode 120000 index 0000000..c05f878 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/simple_idct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/simple_idct.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/simple_idct_template.c b/libffmpeg-avcodec/libavcodec/simple_idct_template.c new file mode 120000 index 0000000..2c71255 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/simple_idct_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/simple_idct_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sinewin.c b/libffmpeg-avcodec/libavcodec/sinewin.c new file mode 120000 index 0000000..4055be4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sinewin.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sinewin.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sinewin.h b/libffmpeg-avcodec/libavcodec/sinewin.h new file mode 120000 index 0000000..77b84a0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sinewin.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sinewin.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sinewin_fixed_tablegen.c b/libffmpeg-avcodec/libavcodec/sinewin_fixed_tablegen.c new file mode 120000 index 0000000..aa31bf5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sinewin_fixed_tablegen.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sinewin_fixed_tablegen.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sinewin_fixed_tablegen.h b/libffmpeg-avcodec/libavcodec/sinewin_fixed_tablegen.h new file mode 120000 index 0000000..14f7c70 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sinewin_fixed_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sinewin_fixed_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sinewin_tablegen.c b/libffmpeg-avcodec/libavcodec/sinewin_tablegen.c new file mode 120000 index 0000000..96a31cd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sinewin_tablegen.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sinewin_tablegen.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sinewin_tablegen.h b/libffmpeg-avcodec/libavcodec/sinewin_tablegen.h new file mode 120000 index 0000000..7d2f668 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sinewin_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sinewin_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sipr.c b/libffmpeg-avcodec/libavcodec/sipr.c new file mode 120000 index 0000000..ac10719 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sipr.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sipr.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sipr.h b/libffmpeg-avcodec/libavcodec/sipr.h new file mode 120000 index 0000000..ecd90ff --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sipr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sipr.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sipr16k.c b/libffmpeg-avcodec/libavcodec/sipr16k.c new file mode 120000 index 0000000..92a9b5d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sipr16k.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sipr16k.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sipr16kdata.h b/libffmpeg-avcodec/libavcodec/sipr16kdata.h new file mode 120000 index 0000000..1ae7806 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sipr16kdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sipr16kdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sipr_parser.c b/libffmpeg-avcodec/libavcodec/sipr_parser.c new file mode 120000 index 0000000..fd54356 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sipr_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sipr_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/siprdata.h b/libffmpeg-avcodec/libavcodec/siprdata.h new file mode 120000 index 0000000..1b6d1f2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/siprdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/siprdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/siren.c b/libffmpeg-avcodec/libavcodec/siren.c new file mode 120000 index 0000000..474bb84 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/siren.c @@ -0,0 +1 @@ +../../upstream/libavcodec/siren.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/smacker.c b/libffmpeg-avcodec/libavcodec/smacker.c new file mode 120000 index 0000000..3ef76e2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/smacker.c @@ -0,0 +1 @@ +../../upstream/libavcodec/smacker.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/smc.c b/libffmpeg-avcodec/libavcodec/smc.c new file mode 120000 index 0000000..91feb8e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/smc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/smc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/smcenc.c b/libffmpeg-avcodec/libavcodec/smcenc.c new file mode 120000 index 0000000..7367a5c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/smcenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/smcenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/snappy.c b/libffmpeg-avcodec/libavcodec/snappy.c new file mode 120000 index 0000000..46e575a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/snappy.c @@ -0,0 +1 @@ +../../upstream/libavcodec/snappy.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/snappy.h b/libffmpeg-avcodec/libavcodec/snappy.h new file mode 120000 index 0000000..78cf925 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/snappy.h @@ -0,0 +1 @@ +../../upstream/libavcodec/snappy.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/snow.c b/libffmpeg-avcodec/libavcodec/snow.c new file mode 120000 index 0000000..50cc51d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/snow.c @@ -0,0 +1 @@ +../../upstream/libavcodec/snow.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/snow.h b/libffmpeg-avcodec/libavcodec/snow.h new file mode 120000 index 0000000..cb9965b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/snow.h @@ -0,0 +1 @@ +../../upstream/libavcodec/snow.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/snow_dwt.c b/libffmpeg-avcodec/libavcodec/snow_dwt.c new file mode 120000 index 0000000..bf3f6f7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/snow_dwt.c @@ -0,0 +1 @@ +../../upstream/libavcodec/snow_dwt.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/snow_dwt.h b/libffmpeg-avcodec/libavcodec/snow_dwt.h new file mode 120000 index 0000000..ef10cd2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/snow_dwt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/snow_dwt.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/snowdata.h b/libffmpeg-avcodec/libavcodec/snowdata.h new file mode 120000 index 0000000..d7244e8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/snowdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/snowdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/snowdec.c b/libffmpeg-avcodec/libavcodec/snowdec.c new file mode 120000 index 0000000..d27f58c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/snowdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/snowdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/snowenc.c b/libffmpeg-avcodec/libavcodec/snowenc.c new file mode 120000 index 0000000..ab22a48 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/snowenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/snowenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sonic.c b/libffmpeg-avcodec/libavcodec/sonic.c new file mode 120000 index 0000000..d6fdf0d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sonic.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sonic.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sp5x.h b/libffmpeg-avcodec/libavcodec/sp5x.h new file mode 120000 index 0000000..f81815b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sp5x.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sp5x.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sp5xdec.c b/libffmpeg-avcodec/libavcodec/sp5xdec.c new file mode 120000 index 0000000..d6063a4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sp5xdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sp5xdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/speedhq.c b/libffmpeg-avcodec/libavcodec/speedhq.c new file mode 120000 index 0000000..3baa9ac --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/speedhq.c @@ -0,0 +1 @@ +../../upstream/libavcodec/speedhq.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/speedhq.h b/libffmpeg-avcodec/libavcodec/speedhq.h new file mode 120000 index 0000000..4101943 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/speedhq.h @@ -0,0 +1 @@ +../../upstream/libavcodec/speedhq.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/speedhqdec.c b/libffmpeg-avcodec/libavcodec/speedhqdec.c new file mode 120000 index 0000000..6850b19 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/speedhqdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/speedhqdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/speedhqenc.c b/libffmpeg-avcodec/libavcodec/speedhqenc.c new file mode 120000 index 0000000..eec85ec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/speedhqenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/speedhqenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/speedhqenc.h b/libffmpeg-avcodec/libavcodec/speedhqenc.h new file mode 120000 index 0000000..5fea279 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/speedhqenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/speedhqenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/speexdata.h b/libffmpeg-avcodec/libavcodec/speexdata.h new file mode 120000 index 0000000..e0b5930 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/speexdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/speexdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/speexdec.c b/libffmpeg-avcodec/libavcodec/speexdec.c new file mode 120000 index 0000000..79c7fe8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/speexdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/speexdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/srtdec.c b/libffmpeg-avcodec/libavcodec/srtdec.c new file mode 120000 index 0000000..ca38261 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/srtdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/srtdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/srtenc.c b/libffmpeg-avcodec/libavcodec/srtenc.c new file mode 120000 index 0000000..db553cb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/srtenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/srtenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/startcode.c b/libffmpeg-avcodec/libavcodec/startcode.c new file mode 120000 index 0000000..c24be29 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/startcode.c @@ -0,0 +1 @@ +../../upstream/libavcodec/startcode.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/startcode.h b/libffmpeg-avcodec/libavcodec/startcode.h new file mode 120000 index 0000000..d3bbd81 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/startcode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/startcode.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/subviewerdec.c b/libffmpeg-avcodec/libavcodec/subviewerdec.c new file mode 120000 index 0000000..6a17fa8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/subviewerdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/subviewerdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sunrast.c b/libffmpeg-avcodec/libavcodec/sunrast.c new file mode 120000 index 0000000..775f81d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sunrast.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sunrast.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sunrast.h b/libffmpeg-avcodec/libavcodec/sunrast.h new file mode 120000 index 0000000..7ed1d7f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sunrast.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sunrast.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/sunrastenc.c b/libffmpeg-avcodec/libavcodec/sunrastenc.c new file mode 120000 index 0000000..a1d57e4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/sunrastenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/sunrastenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/svq1.c b/libffmpeg-avcodec/libavcodec/svq1.c new file mode 120000 index 0000000..c040148 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/svq1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/svq1.h b/libffmpeg-avcodec/libavcodec/svq1.h new file mode 120000 index 0000000..e8b3c62 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/svq1.h @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/svq1_cb.h b/libffmpeg-avcodec/libavcodec/svq1_cb.h new file mode 120000 index 0000000..605ff3e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/svq1_cb.h @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1_cb.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/svq1_vlc.h b/libffmpeg-avcodec/libavcodec/svq1_vlc.h new file mode 120000 index 0000000..c0030d6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/svq1_vlc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1_vlc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/svq1dec.c b/libffmpeg-avcodec/libavcodec/svq1dec.c new file mode 120000 index 0000000..1fe0e74 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/svq1dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/svq1enc.c b/libffmpeg-avcodec/libavcodec/svq1enc.c new file mode 120000 index 0000000..44dc094 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/svq1enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/svq1enc_cb.h b/libffmpeg-avcodec/libavcodec/svq1enc_cb.h new file mode 120000 index 0000000..ee6ac91 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/svq1enc_cb.h @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1enc_cb.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/svq1encdsp.h b/libffmpeg-avcodec/libavcodec/svq1encdsp.h new file mode 120000 index 0000000..5f101c2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/svq1encdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1encdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/svq3.c b/libffmpeg-avcodec/libavcodec/svq3.c new file mode 120000 index 0000000..a58206b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/svq3.c @@ -0,0 +1 @@ +../../upstream/libavcodec/svq3.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/synth_filter.c b/libffmpeg-avcodec/libavcodec/synth_filter.c new file mode 120000 index 0000000..53d67f9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/synth_filter.c @@ -0,0 +1 @@ +../../upstream/libavcodec/synth_filter.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/synth_filter.h b/libffmpeg-avcodec/libavcodec/synth_filter.h new file mode 120000 index 0000000..ee0cee5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/synth_filter.h @@ -0,0 +1 @@ +../../upstream/libavcodec/synth_filter.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tableprint.h b/libffmpeg-avcodec/libavcodec/tableprint.h new file mode 120000 index 0000000..7dad4c6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tableprint.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tableprint.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tableprint_vlc.h b/libffmpeg-avcodec/libavcodec/tableprint_vlc.h new file mode 120000 index 0000000..4c42416 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tableprint_vlc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tableprint_vlc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tak.c b/libffmpeg-avcodec/libavcodec/tak.c new file mode 120000 index 0000000..a0f21fe --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tak.c @@ -0,0 +1 @@ +../../upstream/libavcodec/tak.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tak.h b/libffmpeg-avcodec/libavcodec/tak.h new file mode 120000 index 0000000..af97ff1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tak.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tak.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tak_parser.c b/libffmpeg-avcodec/libavcodec/tak_parser.c new file mode 120000 index 0000000..21c49dd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tak_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/tak_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/takdec.c b/libffmpeg-avcodec/libavcodec/takdec.c new file mode 120000 index 0000000..e71937e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/takdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/takdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/takdsp.c b/libffmpeg-avcodec/libavcodec/takdsp.c new file mode 120000 index 0000000..11bee53 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/takdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/takdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/takdsp.h b/libffmpeg-avcodec/libavcodec/takdsp.h new file mode 120000 index 0000000..f2a7fa7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/takdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/takdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/targa.c b/libffmpeg-avcodec/libavcodec/targa.c new file mode 120000 index 0000000..7ffa1eb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/targa.c @@ -0,0 +1 @@ +../../upstream/libavcodec/targa.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/targa.h b/libffmpeg-avcodec/libavcodec/targa.h new file mode 120000 index 0000000..d352afc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/targa.h @@ -0,0 +1 @@ +../../upstream/libavcodec/targa.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/targa_y216dec.c b/libffmpeg-avcodec/libavcodec/targa_y216dec.c new file mode 120000 index 0000000..9815575 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/targa_y216dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/targa_y216dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/targaenc.c b/libffmpeg-avcodec/libavcodec/targaenc.c new file mode 120000 index 0000000..7545c79 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/targaenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/targaenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tdsc.c b/libffmpeg-avcodec/libavcodec/tdsc.c new file mode 120000 index 0000000..1e418e9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tdsc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/tdsc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/textdec.c b/libffmpeg-avcodec/libavcodec/textdec.c new file mode 120000 index 0000000..b85934d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/textdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/textdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/texturedsp.c b/libffmpeg-avcodec/libavcodec/texturedsp.c new file mode 120000 index 0000000..9a3dd31 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/texturedsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/texturedsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/texturedsp.h b/libffmpeg-avcodec/libavcodec/texturedsp.h new file mode 120000 index 0000000..ccd140d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/texturedsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/texturedsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/texturedsp_template.c b/libffmpeg-avcodec/libavcodec/texturedsp_template.c new file mode 120000 index 0000000..ac218d6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/texturedsp_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/texturedsp_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/texturedspenc.c b/libffmpeg-avcodec/libavcodec/texturedspenc.c new file mode 120000 index 0000000..c9f58f7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/texturedspenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/texturedspenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/thread.h b/libffmpeg-avcodec/libavcodec/thread.h new file mode 120000 index 0000000..58fc341 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/thread.h @@ -0,0 +1 @@ +../../upstream/libavcodec/thread.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/threadframe.h b/libffmpeg-avcodec/libavcodec/threadframe.h new file mode 120000 index 0000000..0bf9e94 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/threadframe.h @@ -0,0 +1 @@ +../../upstream/libavcodec/threadframe.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/threadprogress.c b/libffmpeg-avcodec/libavcodec/threadprogress.c new file mode 120000 index 0000000..4641424 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/threadprogress.c @@ -0,0 +1 @@ +../../upstream/libavcodec/threadprogress.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/threadprogress.h b/libffmpeg-avcodec/libavcodec/threadprogress.h new file mode 120000 index 0000000..419f8e2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/threadprogress.h @@ -0,0 +1 @@ +../../upstream/libavcodec/threadprogress.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tiertexseqv.c b/libffmpeg-avcodec/libavcodec/tiertexseqv.c new file mode 120000 index 0000000..94b3329 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tiertexseqv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/tiertexseqv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tiff.c b/libffmpeg-avcodec/libavcodec/tiff.c new file mode 120000 index 0000000..9df7e49 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tiff.c @@ -0,0 +1 @@ +../../upstream/libavcodec/tiff.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tiff.h b/libffmpeg-avcodec/libavcodec/tiff.h new file mode 120000 index 0000000..004c0f4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tiff.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tiff.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tiff_common.c b/libffmpeg-avcodec/libavcodec/tiff_common.c new file mode 120000 index 0000000..eb07e49 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tiff_common.c @@ -0,0 +1 @@ +../../upstream/libavcodec/tiff_common.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tiff_common.h b/libffmpeg-avcodec/libavcodec/tiff_common.h new file mode 120000 index 0000000..2c5ca5b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tiff_common.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tiff_common.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tiff_data.h b/libffmpeg-avcodec/libavcodec/tiff_data.h new file mode 120000 index 0000000..a7d28cf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tiff_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tiff_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tiffenc.c b/libffmpeg-avcodec/libavcodec/tiffenc.c new file mode 120000 index 0000000..277eed7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tiffenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/tiffenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tmv.c b/libffmpeg-avcodec/libavcodec/tmv.c new file mode 120000 index 0000000..d0b1beb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tmv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/tmv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/to_upper4.c b/libffmpeg-avcodec/libavcodec/to_upper4.c new file mode 120000 index 0000000..bd72b9c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/to_upper4.c @@ -0,0 +1 @@ +../../upstream/libavcodec/to_upper4.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/to_upper4.h b/libffmpeg-avcodec/libavcodec/to_upper4.h new file mode 120000 index 0000000..853cb6b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/to_upper4.h @@ -0,0 +1 @@ +../../upstream/libavcodec/to_upper4.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tpeldsp.c b/libffmpeg-avcodec/libavcodec/tpeldsp.c new file mode 120000 index 0000000..d7474cb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tpeldsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/tpeldsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tpeldsp.h b/libffmpeg-avcodec/libavcodec/tpeldsp.h new file mode 120000 index 0000000..17c2904 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tpeldsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tpeldsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/truemotion1.c b/libffmpeg-avcodec/libavcodec/truemotion1.c new file mode 120000 index 0000000..2ad9ba0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/truemotion1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/truemotion1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/truemotion1data.h b/libffmpeg-avcodec/libavcodec/truemotion1data.h new file mode 120000 index 0000000..e703792 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/truemotion1data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/truemotion1data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/truemotion2.c b/libffmpeg-avcodec/libavcodec/truemotion2.c new file mode 120000 index 0000000..4abcf8d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/truemotion2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/truemotion2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/truemotion2rt.c b/libffmpeg-avcodec/libavcodec/truemotion2rt.c new file mode 120000 index 0000000..e504d51 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/truemotion2rt.c @@ -0,0 +1 @@ +../../upstream/libavcodec/truemotion2rt.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/truespeech.c b/libffmpeg-avcodec/libavcodec/truespeech.c new file mode 120000 index 0000000..2f2d98a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/truespeech.c @@ -0,0 +1 @@ +../../upstream/libavcodec/truespeech.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/truespeech_data.h b/libffmpeg-avcodec/libavcodec/truespeech_data.h new file mode 120000 index 0000000..e9c8f39 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/truespeech_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/truespeech_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tscc.c b/libffmpeg-avcodec/libavcodec/tscc.c new file mode 120000 index 0000000..4eb8ddf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tscc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/tscc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tscc2.c b/libffmpeg-avcodec/libavcodec/tscc2.c new file mode 120000 index 0000000..cdb555e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tscc2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/tscc2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tscc2data.h b/libffmpeg-avcodec/libavcodec/tscc2data.h new file mode 120000 index 0000000..b182cfc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tscc2data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tscc2data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/tta.c b/libffmpeg-avcodec/libavcodec/tta.c new file mode 120000 index 0000000..10ec539 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/tta.c @@ -0,0 +1 @@ +../../upstream/libavcodec/tta.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ttadata.c b/libffmpeg-avcodec/libavcodec/ttadata.c new file mode 120000 index 0000000..1e8f3af --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ttadata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ttadata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ttadata.h b/libffmpeg-avcodec/libavcodec/ttadata.h new file mode 120000 index 0000000..e6aaed2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ttadata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ttadata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ttadsp.c b/libffmpeg-avcodec/libavcodec/ttadsp.c new file mode 120000 index 0000000..ee514b8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ttadsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ttadsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ttadsp.h b/libffmpeg-avcodec/libavcodec/ttadsp.h new file mode 120000 index 0000000..e2f1d84 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ttadsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ttadsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ttaenc.c b/libffmpeg-avcodec/libavcodec/ttaenc.c new file mode 120000 index 0000000..2e7f32e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ttaenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ttaenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ttaencdsp.c b/libffmpeg-avcodec/libavcodec/ttaencdsp.c new file mode 120000 index 0000000..599424a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ttaencdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ttaencdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ttaencdsp.h b/libffmpeg-avcodec/libavcodec/ttaencdsp.h new file mode 120000 index 0000000..4d02a77 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ttaencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ttaencdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ttmlenc.c b/libffmpeg-avcodec/libavcodec/ttmlenc.c new file mode 120000 index 0000000..1dbc964 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ttmlenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ttmlenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ttmlenc.h b/libffmpeg-avcodec/libavcodec/ttmlenc.h new file mode 120000 index 0000000..34ced61 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ttmlenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ttmlenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/twinvq.c b/libffmpeg-avcodec/libavcodec/twinvq.c new file mode 120000 index 0000000..1c344a1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/twinvq.c @@ -0,0 +1 @@ +../../upstream/libavcodec/twinvq.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/twinvq.h b/libffmpeg-avcodec/libavcodec/twinvq.h new file mode 120000 index 0000000..55a42be --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/twinvq.h @@ -0,0 +1 @@ +../../upstream/libavcodec/twinvq.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/twinvq_data.h b/libffmpeg-avcodec/libavcodec/twinvq_data.h new file mode 120000 index 0000000..f3570ee --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/twinvq_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/twinvq_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/twinvqdec.c b/libffmpeg-avcodec/libavcodec/twinvqdec.c new file mode 120000 index 0000000..3584f05 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/twinvqdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/twinvqdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/txd.c b/libffmpeg-avcodec/libavcodec/txd.c new file mode 120000 index 0000000..b8a9150 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/txd.c @@ -0,0 +1 @@ +../../upstream/libavcodec/txd.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ulti.c b/libffmpeg-avcodec/libavcodec/ulti.c new file mode 120000 index 0000000..686e4c3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ulti.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ulti.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ulti_cb.h b/libffmpeg-avcodec/libavcodec/ulti_cb.h new file mode 120000 index 0000000..a9e5495 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ulti_cb.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ulti_cb.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/unary.h b/libffmpeg-avcodec/libavcodec/unary.h new file mode 120000 index 0000000..d75167d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/unary.h @@ -0,0 +1 @@ +../../upstream/libavcodec/unary.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/utils.c b/libffmpeg-avcodec/libavcodec/utils.c new file mode 120000 index 0000000..8645b1c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/utils.c @@ -0,0 +1 @@ +../../upstream/libavcodec/utils.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/utvideo.h b/libffmpeg-avcodec/libavcodec/utvideo.h new file mode 120000 index 0000000..e83d4d3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/utvideo.h @@ -0,0 +1 @@ +../../upstream/libavcodec/utvideo.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/utvideodec.c b/libffmpeg-avcodec/libavcodec/utvideodec.c new file mode 120000 index 0000000..0b0ac3a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/utvideodec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/utvideodec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/utvideodsp.c b/libffmpeg-avcodec/libavcodec/utvideodsp.c new file mode 120000 index 0000000..171ef2c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/utvideodsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/utvideodsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/utvideodsp.h b/libffmpeg-avcodec/libavcodec/utvideodsp.h new file mode 120000 index 0000000..142ac35 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/utvideodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/utvideodsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/utvideoenc.c b/libffmpeg-avcodec/libavcodec/utvideoenc.c new file mode 120000 index 0000000..b763533 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/utvideoenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/utvideoenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v210_template.c b/libffmpeg-avcodec/libavcodec/v210_template.c new file mode 120000 index 0000000..cb8d970 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v210_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v210_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v210dec.c b/libffmpeg-avcodec/libavcodec/v210dec.c new file mode 120000 index 0000000..0dacd60 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v210dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v210dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v210dec.h b/libffmpeg-avcodec/libavcodec/v210dec.h new file mode 120000 index 0000000..81a3446 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v210dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v210dec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v210dec_init.h b/libffmpeg-avcodec/libavcodec/v210dec_init.h new file mode 120000 index 0000000..21a3b3d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v210dec_init.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v210dec_init.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v210enc.c b/libffmpeg-avcodec/libavcodec/v210enc.c new file mode 120000 index 0000000..1c2d037 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v210enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v210enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v210enc.h b/libffmpeg-avcodec/libavcodec/v210enc.h new file mode 120000 index 0000000..4fafac3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v210enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v210enc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v210enc_init.h b/libffmpeg-avcodec/libavcodec/v210enc_init.h new file mode 120000 index 0000000..1bcf29d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v210enc_init.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v210enc_init.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v210x.c b/libffmpeg-avcodec/libavcodec/v210x.c new file mode 120000 index 0000000..68940f1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v210x.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v210x.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v308dec.c b/libffmpeg-avcodec/libavcodec/v308dec.c new file mode 120000 index 0000000..17deac4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v308dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v308dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v308enc.c b/libffmpeg-avcodec/libavcodec/v308enc.c new file mode 120000 index 0000000..04c6807 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v308enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v308enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v408dec.c b/libffmpeg-avcodec/libavcodec/v408dec.c new file mode 120000 index 0000000..9f1a3df --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v408dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v408dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v408enc.c b/libffmpeg-avcodec/libavcodec/v408enc.c new file mode 120000 index 0000000..0f2f32e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v408enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v408enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v410dec.c b/libffmpeg-avcodec/libavcodec/v410dec.c new file mode 120000 index 0000000..eeb8048 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v410dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v410dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v410enc.c b/libffmpeg-avcodec/libavcodec/v410enc.c new file mode 120000 index 0000000..4971d22 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v410enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v410enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v4l2_buffers.c b/libffmpeg-avcodec/libavcodec/v4l2_buffers.c new file mode 120000 index 0000000..1c1cfa5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v4l2_buffers.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_buffers.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v4l2_buffers.h b/libffmpeg-avcodec/libavcodec/v4l2_buffers.h new file mode 120000 index 0000000..818fb82 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v4l2_buffers.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_buffers.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v4l2_context.c b/libffmpeg-avcodec/libavcodec/v4l2_context.c new file mode 120000 index 0000000..d23e49a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v4l2_context.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_context.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v4l2_context.h b/libffmpeg-avcodec/libavcodec/v4l2_context.h new file mode 120000 index 0000000..b5912e8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v4l2_context.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_context.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v4l2_fmt.c b/libffmpeg-avcodec/libavcodec/v4l2_fmt.c new file mode 120000 index 0000000..10e44be --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v4l2_fmt.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_fmt.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v4l2_fmt.h b/libffmpeg-avcodec/libavcodec/v4l2_fmt.h new file mode 120000 index 0000000..4cd4529 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v4l2_fmt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_fmt.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v4l2_m2m.c b/libffmpeg-avcodec/libavcodec/v4l2_m2m.c new file mode 120000 index 0000000..f131618 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v4l2_m2m.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_m2m.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v4l2_m2m.h b/libffmpeg-avcodec/libavcodec/v4l2_m2m.h new file mode 120000 index 0000000..49ca152 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v4l2_m2m.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_m2m.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v4l2_m2m_dec.c b/libffmpeg-avcodec/libavcodec/v4l2_m2m_dec.c new file mode 120000 index 0000000..9f8bfd9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v4l2_m2m_dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_m2m_dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/v4l2_m2m_enc.c b/libffmpeg-avcodec/libavcodec/v4l2_m2m_enc.c new file mode 120000 index 0000000..9774ca5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/v4l2_m2m_enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_m2m_enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_av1.c b/libffmpeg-avcodec/libavcodec/vaapi_av1.c new file mode 120000 index 0000000..f871303 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_av1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_av1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_decode.c b/libffmpeg-avcodec/libavcodec/vaapi_decode.c new file mode 120000 index 0000000..042bbdb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_decode.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_decode.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_decode.h b/libffmpeg-avcodec/libavcodec/vaapi_decode.h new file mode 120000 index 0000000..b04cb79 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_decode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_decode.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_encode.c b/libffmpeg-avcodec/libavcodec/vaapi_encode.c new file mode 120000 index 0000000..4e3d255 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_encode.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_encode.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_encode.h b/libffmpeg-avcodec/libavcodec/vaapi_encode.h new file mode 120000 index 0000000..5d5230e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_encode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_encode.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_encode_av1.c b/libffmpeg-avcodec/libavcodec/vaapi_encode_av1.c new file mode 120000 index 0000000..3f5bdff --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_encode_av1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_encode_av1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_encode_h264.c b/libffmpeg-avcodec/libavcodec/vaapi_encode_h264.c new file mode 120000 index 0000000..e79f9b4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_encode_h264.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_encode_h264.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_encode_h265.c b/libffmpeg-avcodec/libavcodec/vaapi_encode_h265.c new file mode 120000 index 0000000..538ccfb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_encode_h265.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_encode_h265.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_encode_mjpeg.c b/libffmpeg-avcodec/libavcodec/vaapi_encode_mjpeg.c new file mode 120000 index 0000000..144bd51 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_encode_mjpeg.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_encode_mjpeg.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_encode_mpeg2.c b/libffmpeg-avcodec/libavcodec/vaapi_encode_mpeg2.c new file mode 120000 index 0000000..b8046fc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_encode_mpeg2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_encode_mpeg2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_encode_vp8.c b/libffmpeg-avcodec/libavcodec/vaapi_encode_vp8.c new file mode 120000 index 0000000..52d0814 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_encode_vp8.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_encode_vp8.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_encode_vp9.c b/libffmpeg-avcodec/libavcodec/vaapi_encode_vp9.c new file mode 120000 index 0000000..66ca0f6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_encode_vp9.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_encode_vp9.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_h264.c b/libffmpeg-avcodec/libavcodec/vaapi_h264.c new file mode 120000 index 0000000..7ed2402 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_h264.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_h264.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_hevc.c b/libffmpeg-avcodec/libavcodec/vaapi_hevc.c new file mode 120000 index 0000000..994e5e3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_hevc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_hevc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_hevc.h b/libffmpeg-avcodec/libavcodec/vaapi_hevc.h new file mode 120000 index 0000000..821e146 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_hevc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_hevc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_mjpeg.c b/libffmpeg-avcodec/libavcodec/vaapi_mjpeg.c new file mode 120000 index 0000000..274755c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_mjpeg.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_mjpeg.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_mpeg2.c b/libffmpeg-avcodec/libavcodec/vaapi_mpeg2.c new file mode 120000 index 0000000..a853b8b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_mpeg2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_mpeg2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_mpeg4.c b/libffmpeg-avcodec/libavcodec/vaapi_mpeg4.c new file mode 120000 index 0000000..940444d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_mpeg4.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_mpeg4.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_vc1.c b/libffmpeg-avcodec/libavcodec/vaapi_vc1.c new file mode 120000 index 0000000..8bc50cc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_vc1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_vc1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_vp8.c b/libffmpeg-avcodec/libavcodec/vaapi_vp8.c new file mode 120000 index 0000000..11a25e6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_vp8.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_vp8.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vaapi_vp9.c b/libffmpeg-avcodec/libavcodec/vaapi_vp9.c new file mode 120000 index 0000000..f5820e2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vaapi_vp9.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_vp9.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vb.c b/libffmpeg-avcodec/libavcodec/vb.c new file mode 120000 index 0000000..1c3a464 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vb.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vb.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vble.c b/libffmpeg-avcodec/libavcodec/vble.c new file mode 120000 index 0000000..6167882 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vble.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vble.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vbn.h b/libffmpeg-avcodec/libavcodec/vbn.h new file mode 120000 index 0000000..481702b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vbn.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vbn.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vbndec.c b/libffmpeg-avcodec/libavcodec/vbndec.c new file mode 120000 index 0000000..c533b52 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vbndec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vbndec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vbnenc.c b/libffmpeg-avcodec/libavcodec/vbnenc.c new file mode 120000 index 0000000..e942f5d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vbnenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vbnenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1.c b/libffmpeg-avcodec/libavcodec/vc1.c new file mode 120000 index 0000000..00e0f04 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1.h b/libffmpeg-avcodec/libavcodec/vc1.h new file mode 120000 index 0000000..d4633da --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1_block.c b/libffmpeg-avcodec/libavcodec/vc1_block.c new file mode 120000 index 0000000..9ce5302 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1_block.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1_block.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1_common.h b/libffmpeg-avcodec/libavcodec/vc1_common.h new file mode 120000 index 0000000..94b4311 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1_common.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1_common.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1_loopfilter.c b/libffmpeg-avcodec/libavcodec/vc1_loopfilter.c new file mode 120000 index 0000000..661432c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1_loopfilter.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1_loopfilter.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1_mc.c b/libffmpeg-avcodec/libavcodec/vc1_mc.c new file mode 120000 index 0000000..9643c7f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1_mc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1_mc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1_parser.c b/libffmpeg-avcodec/libavcodec/vc1_parser.c new file mode 120000 index 0000000..2e8959b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1_pred.c b/libffmpeg-avcodec/libavcodec/vc1_pred.c new file mode 120000 index 0000000..7cbb2a7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1_pred.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1_pred.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1_pred.h b/libffmpeg-avcodec/libavcodec/vc1_pred.h new file mode 120000 index 0000000..18aa5d8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1_pred.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1_pred.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1_vlc_data.h b/libffmpeg-avcodec/libavcodec/vc1_vlc_data.h new file mode 120000 index 0000000..c653e37 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1_vlc_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1_vlc_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1acdata.h b/libffmpeg-avcodec/libavcodec/vc1acdata.h new file mode 120000 index 0000000..70515d0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1acdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1acdata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1data.c b/libffmpeg-avcodec/libavcodec/vc1data.c new file mode 120000 index 0000000..c5a46e7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1data.h b/libffmpeg-avcodec/libavcodec/vc1data.h new file mode 120000 index 0000000..8595001 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1dec.c b/libffmpeg-avcodec/libavcodec/vc1dec.c new file mode 120000 index 0000000..cde54a5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1dsp.c b/libffmpeg-avcodec/libavcodec/vc1dsp.c new file mode 120000 index 0000000..97d41cf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc1dsp.h b/libffmpeg-avcodec/libavcodec/vc1dsp.h new file mode 120000 index 0000000..b4ea260 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc1dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc2enc.c b/libffmpeg-avcodec/libavcodec/vc2enc.c new file mode 120000 index 0000000..8cdc78f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc2enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vc2enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc2enc_dwt.c b/libffmpeg-avcodec/libavcodec/vc2enc_dwt.c new file mode 120000 index 0000000..2a3d537 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc2enc_dwt.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vc2enc_dwt.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vc2enc_dwt.h b/libffmpeg-avcodec/libavcodec/vc2enc_dwt.h new file mode 120000 index 0000000..51a8f47 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vc2enc_dwt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc2enc_dwt.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vcr1.c b/libffmpeg-avcodec/libavcodec/vcr1.c new file mode 120000 index 0000000..75d3314 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vcr1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vcr1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vdpau.c b/libffmpeg-avcodec/libavcodec/vdpau.c new file mode 120000 index 0000000..eb3ab2e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vdpau.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vdpau.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vdpau.h b/libffmpeg-avcodec/libavcodec/vdpau.h new file mode 120000 index 0000000..05afd49 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vdpau.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vdpau.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vdpau_av1.c b/libffmpeg-avcodec/libavcodec/vdpau_av1.c new file mode 120000 index 0000000..cb6cd57 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vdpau_av1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vdpau_av1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vdpau_h264.c b/libffmpeg-avcodec/libavcodec/vdpau_h264.c new file mode 120000 index 0000000..2c1a624 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vdpau_h264.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vdpau_h264.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vdpau_hevc.c b/libffmpeg-avcodec/libavcodec/vdpau_hevc.c new file mode 120000 index 0000000..b2d9275 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vdpau_hevc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vdpau_hevc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vdpau_internal.h b/libffmpeg-avcodec/libavcodec/vdpau_internal.h new file mode 120000 index 0000000..17f34e7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vdpau_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vdpau_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vdpau_mpeg12.c b/libffmpeg-avcodec/libavcodec/vdpau_mpeg12.c new file mode 120000 index 0000000..8490bdc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vdpau_mpeg12.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vdpau_mpeg12.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vdpau_mpeg4.c b/libffmpeg-avcodec/libavcodec/vdpau_mpeg4.c new file mode 120000 index 0000000..cdeab1d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vdpau_mpeg4.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vdpau_mpeg4.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vdpau_vc1.c b/libffmpeg-avcodec/libavcodec/vdpau_vc1.c new file mode 120000 index 0000000..9b7123d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vdpau_vc1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vdpau_vc1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vdpau_vp9.c b/libffmpeg-avcodec/libavcodec/vdpau_vp9.c new file mode 120000 index 0000000..b84c438 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vdpau_vp9.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vdpau_vp9.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/version.c b/libffmpeg-avcodec/libavcodec/version.c new file mode 120000 index 0000000..e18dd44 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/version.c @@ -0,0 +1 @@ +../../upstream/libavcodec/version.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/version.h b/libffmpeg-avcodec/libavcodec/version.h new file mode 120000 index 0000000..ffbb285 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/version.h @@ -0,0 +1 @@ +../../upstream/libavcodec/version.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/version_major.h b/libffmpeg-avcodec/libavcodec/version_major.h new file mode 120000 index 0000000..5e9ed0c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/version_major.h @@ -0,0 +1 @@ +../../upstream/libavcodec/version_major.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/videodsp.c b/libffmpeg-avcodec/libavcodec/videodsp.c new file mode 120000 index 0000000..10ab622 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/videodsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/videodsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/videodsp.h b/libffmpeg-avcodec/libavcodec/videodsp.h new file mode 120000 index 0000000..80eae34 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/videodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/videodsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/videodsp_template.c b/libffmpeg-avcodec/libavcodec/videodsp_template.c new file mode 120000 index 0000000..45f61f8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/videodsp_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/videodsp_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/videotoolbox.c b/libffmpeg-avcodec/libavcodec/videotoolbox.c new file mode 120000 index 0000000..1103c01 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/videotoolbox.c @@ -0,0 +1 @@ +../../upstream/libavcodec/videotoolbox.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/videotoolbox.h b/libffmpeg-avcodec/libavcodec/videotoolbox.h new file mode 120000 index 0000000..a93ccb5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/videotoolbox.h @@ -0,0 +1 @@ +../../upstream/libavcodec/videotoolbox.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/videotoolbox_vp9.c b/libffmpeg-avcodec/libavcodec/videotoolbox_vp9.c new file mode 120000 index 0000000..f57afbb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/videotoolbox_vp9.c @@ -0,0 +1 @@ +../../upstream/libavcodec/videotoolbox_vp9.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/videotoolboxenc.c b/libffmpeg-avcodec/libavcodec/videotoolboxenc.c new file mode 120000 index 0000000..61b1ad0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/videotoolboxenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/videotoolboxenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vima.c b/libffmpeg-avcodec/libavcodec/vima.c new file mode 120000 index 0000000..c003356 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vima.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vima.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vlc.c b/libffmpeg-avcodec/libavcodec/vlc.c new file mode 120000 index 0000000..2f154c6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vlc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vlc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vlc.h b/libffmpeg-avcodec/libavcodec/vlc.h new file mode 120000 index 0000000..f7c7287 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vlc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vlc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vmdaudio.c b/libffmpeg-avcodec/libavcodec/vmdaudio.c new file mode 120000 index 0000000..218a6a4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vmdaudio.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vmdaudio.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vmdvideo.c b/libffmpeg-avcodec/libavcodec/vmdvideo.c new file mode 120000 index 0000000..d851e1b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vmdvideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vmdvideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vmixdec.c b/libffmpeg-avcodec/libavcodec/vmixdec.c new file mode 120000 index 0000000..e3f631f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vmixdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vmixdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vmnc.c b/libffmpeg-avcodec/libavcodec/vmnc.c new file mode 120000 index 0000000..e8d47d4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vmnc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vmnc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vorbis.c b/libffmpeg-avcodec/libavcodec/vorbis.c new file mode 120000 index 0000000..a4f76bb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vorbis.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vorbis.h b/libffmpeg-avcodec/libavcodec/vorbis.h new file mode 120000 index 0000000..506ed99 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vorbis.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vorbis_data.c b/libffmpeg-avcodec/libavcodec/vorbis_data.c new file mode 120000 index 0000000..eb9e2c2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vorbis_data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vorbis_data.h b/libffmpeg-avcodec/libavcodec/vorbis_data.h new file mode 120000 index 0000000..511050a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vorbis_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vorbis_enc_data.h b/libffmpeg-avcodec/libavcodec/vorbis_enc_data.h new file mode 120000 index 0000000..4c98ffe --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vorbis_enc_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis_enc_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vorbis_parser.c b/libffmpeg-avcodec/libavcodec/vorbis_parser.c new file mode 120000 index 0000000..d85bd6f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vorbis_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vorbis_parser.h b/libffmpeg-avcodec/libavcodec/vorbis_parser.h new file mode 120000 index 0000000..372f615 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vorbis_parser.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis_parser.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vorbis_parser_internal.h b/libffmpeg-avcodec/libavcodec/vorbis_parser_internal.h new file mode 120000 index 0000000..203ad0c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vorbis_parser_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis_parser_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vorbisdec.c b/libffmpeg-avcodec/libavcodec/vorbisdec.c new file mode 120000 index 0000000..2376821 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vorbisdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbisdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vorbisdsp.c b/libffmpeg-avcodec/libavcodec/vorbisdsp.c new file mode 120000 index 0000000..b24d1b4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vorbisdsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbisdsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vorbisdsp.h b/libffmpeg-avcodec/libavcodec/vorbisdsp.h new file mode 120000 index 0000000..ed492fe --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vorbisdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbisdsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vorbisenc.c b/libffmpeg-avcodec/libavcodec/vorbisenc.c new file mode 120000 index 0000000..86f24ce --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vorbisenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbisenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp3.c b/libffmpeg-avcodec/libavcodec/vp3.c new file mode 120000 index 0000000..1168493 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp3.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp3.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp3_parser.c b/libffmpeg-avcodec/libavcodec/vp3_parser.c new file mode 120000 index 0000000..753ff6a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp3_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp3_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp3data.h b/libffmpeg-avcodec/libavcodec/vp3data.h new file mode 120000 index 0000000..3b765a4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp3data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp3data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp3dsp.c b/libffmpeg-avcodec/libavcodec/vp3dsp.c new file mode 120000 index 0000000..c50392c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp3dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp3dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp3dsp.h b/libffmpeg-avcodec/libavcodec/vp3dsp.h new file mode 120000 index 0000000..f0c5816 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp3dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp3dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp4data.h b/libffmpeg-avcodec/libavcodec/vp4data.h new file mode 120000 index 0000000..fb0c856 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp4data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp4data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp5.c b/libffmpeg-avcodec/libavcodec/vp5.c new file mode 120000 index 0000000..1faeaea --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp5.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp5.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp56.c b/libffmpeg-avcodec/libavcodec/vp56.c new file mode 120000 index 0000000..40f7008 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp56.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp56.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp56.h b/libffmpeg-avcodec/libavcodec/vp56.h new file mode 120000 index 0000000..9c35f82 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp56.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp56.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp56data.c b/libffmpeg-avcodec/libavcodec/vp56data.c new file mode 120000 index 0000000..2e8f4bc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp56data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp56data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp56data.h b/libffmpeg-avcodec/libavcodec/vp56data.h new file mode 120000 index 0000000..6e54887 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp56data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp56data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp56dsp.c b/libffmpeg-avcodec/libavcodec/vp56dsp.c new file mode 120000 index 0000000..225ea9c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp56dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp56dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp56dsp.h b/libffmpeg-avcodec/libavcodec/vp56dsp.h new file mode 120000 index 0000000..0d4eaff --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp56dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp56dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp5data.h b/libffmpeg-avcodec/libavcodec/vp5data.h new file mode 120000 index 0000000..54d5142 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp5data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp5data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp6.c b/libffmpeg-avcodec/libavcodec/vp6.c new file mode 120000 index 0000000..b9dc63e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp6.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp6.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp6data.h b/libffmpeg-avcodec/libavcodec/vp6data.h new file mode 120000 index 0000000..9652b65 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp6data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp6data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp6dsp.c b/libffmpeg-avcodec/libavcodec/vp6dsp.c new file mode 120000 index 0000000..1c83fd8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp6dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp6dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp8.c b/libffmpeg-avcodec/libavcodec/vp8.c new file mode 120000 index 0000000..5b9d678 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp8.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp8.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp8.h b/libffmpeg-avcodec/libavcodec/vp8.h new file mode 120000 index 0000000..69de054 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp8.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp8.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp89_rac.h b/libffmpeg-avcodec/libavcodec/vp89_rac.h new file mode 120000 index 0000000..f32e3ae --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp89_rac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp89_rac.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp8_parser.c b/libffmpeg-avcodec/libavcodec/vp8_parser.c new file mode 120000 index 0000000..250a281 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp8_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp8_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp8data.c b/libffmpeg-avcodec/libavcodec/vp8data.c new file mode 120000 index 0000000..2bba2cc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp8data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp8data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp8data.h b/libffmpeg-avcodec/libavcodec/vp8data.h new file mode 120000 index 0000000..2c6e4f3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp8data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp8data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp8dsp.c b/libffmpeg-avcodec/libavcodec/vp8dsp.c new file mode 120000 index 0000000..f8a855e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp8dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp8dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp8dsp.h b/libffmpeg-avcodec/libavcodec/vp8dsp.h new file mode 120000 index 0000000..296991c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp8dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp8dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9.c b/libffmpeg-avcodec/libavcodec/vp9.c new file mode 120000 index 0000000..06677bb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9.h b/libffmpeg-avcodec/libavcodec/vp9.h new file mode 120000 index 0000000..48346ec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9_mc_template.c b/libffmpeg-avcodec/libavcodec/vp9_mc_template.c new file mode 120000 index 0000000..f1a859b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9_mc_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9_mc_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9_parser.c b/libffmpeg-avcodec/libavcodec/vp9_parser.c new file mode 120000 index 0000000..c4f61f8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9block.c b/libffmpeg-avcodec/libavcodec/vp9block.c new file mode 120000 index 0000000..2d5bb32 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9block.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9block.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9data.c b/libffmpeg-avcodec/libavcodec/vp9data.c new file mode 120000 index 0000000..be42074 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9data.h b/libffmpeg-avcodec/libavcodec/vp9data.h new file mode 120000 index 0000000..ba78814 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9dec.h b/libffmpeg-avcodec/libavcodec/vp9dec.h new file mode 120000 index 0000000..4b4bfbb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9dec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9dsp.c b/libffmpeg-avcodec/libavcodec/vp9dsp.c new file mode 120000 index 0000000..d3a8f92 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9dsp.h b/libffmpeg-avcodec/libavcodec/vp9dsp.h new file mode 120000 index 0000000..82ec37e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9dsp_10bpp.c b/libffmpeg-avcodec/libavcodec/vp9dsp_10bpp.c new file mode 120000 index 0000000..4f7728a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9dsp_10bpp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9dsp_10bpp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9dsp_12bpp.c b/libffmpeg-avcodec/libavcodec/vp9dsp_12bpp.c new file mode 120000 index 0000000..2d5ee97 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9dsp_12bpp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9dsp_12bpp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9dsp_8bpp.c b/libffmpeg-avcodec/libavcodec/vp9dsp_8bpp.c new file mode 120000 index 0000000..f6e6f01 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9dsp_8bpp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9dsp_8bpp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9dsp_template.c b/libffmpeg-avcodec/libavcodec/vp9dsp_template.c new file mode 120000 index 0000000..2b96aa5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9dsp_template.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9dsp_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9lpf.c b/libffmpeg-avcodec/libavcodec/vp9lpf.c new file mode 120000 index 0000000..c2e3b5a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9lpf.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9lpf.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9mvs.c b/libffmpeg-avcodec/libavcodec/vp9mvs.c new file mode 120000 index 0000000..f917a66 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9mvs.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9mvs.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9prob.c b/libffmpeg-avcodec/libavcodec/vp9prob.c new file mode 120000 index 0000000..0fbb8fc --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9prob.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9prob.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9recon.c b/libffmpeg-avcodec/libavcodec/vp9recon.c new file mode 120000 index 0000000..b39acbe --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9recon.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9recon.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vp9shared.h b/libffmpeg-avcodec/libavcodec/vp9shared.h new file mode 120000 index 0000000..7a03046 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vp9shared.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9shared.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vpx_rac.c b/libffmpeg-avcodec/libavcodec/vpx_rac.c new file mode 120000 index 0000000..953de9c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vpx_rac.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vpx_rac.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vpx_rac.h b/libffmpeg-avcodec/libavcodec/vpx_rac.h new file mode 120000 index 0000000..ceee08a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vpx_rac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vpx_rac.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vqavideo.c b/libffmpeg-avcodec/libavcodec/vqavideo.c new file mode 120000 index 0000000..78d1477 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vqavideo.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vqavideo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vqcdec.c b/libffmpeg-avcodec/libavcodec/vqcdec.c new file mode 120000 index 0000000..3467e88 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vqcdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vqcdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vt_internal.h b/libffmpeg-avcodec/libavcodec/vt_internal.h new file mode 120000 index 0000000..5bd49c3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vt_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vt_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vulkan.c b/libffmpeg-avcodec/libavcodec/vulkan.c new file mode 120000 index 0000000..5593cfb --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vulkan.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vulkan.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vulkan.h b/libffmpeg-avcodec/libavcodec/vulkan.h new file mode 120000 index 0000000..104b986 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vulkan.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vulkan.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vulkan_av1.c b/libffmpeg-avcodec/libavcodec/vulkan_av1.c new file mode 120000 index 0000000..20f51f8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vulkan_av1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vulkan_av1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vulkan_decode.c b/libffmpeg-avcodec/libavcodec/vulkan_decode.c new file mode 120000 index 0000000..e584527 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vulkan_decode.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vulkan_decode.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vulkan_decode.h b/libffmpeg-avcodec/libavcodec/vulkan_decode.h new file mode 120000 index 0000000..33dae7a --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vulkan_decode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vulkan_decode.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vulkan_h264.c b/libffmpeg-avcodec/libavcodec/vulkan_h264.c new file mode 120000 index 0000000..a020fa8 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vulkan_h264.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vulkan_h264.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vulkan_hevc.c b/libffmpeg-avcodec/libavcodec/vulkan_hevc.c new file mode 120000 index 0000000..f8053a5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vulkan_hevc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vulkan_hevc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vulkan_video.c b/libffmpeg-avcodec/libavcodec/vulkan_video.c new file mode 120000 index 0000000..5f5f4d1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vulkan_video.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vulkan_video.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vulkan_video.h b/libffmpeg-avcodec/libavcodec/vulkan_video.h new file mode 120000 index 0000000..edf0ee3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vulkan_video.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vulkan_video.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vvc.h b/libffmpeg-avcodec/libavcodec/vvc.h new file mode 120000 index 0000000..cae5fdd --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vvc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vvc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/vvc_parser.c b/libffmpeg-avcodec/libavcodec/vvc_parser.c new file mode 120000 index 0000000..4e9abba --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/vvc_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/vvc_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wavarc.c b/libffmpeg-avcodec/libavcodec/wavarc.c new file mode 120000 index 0000000..8dd8c66 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wavarc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wavarc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wavpack.c b/libffmpeg-avcodec/libavcodec/wavpack.c new file mode 120000 index 0000000..0406f64 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wavpack.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wavpack.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wavpack.h b/libffmpeg-avcodec/libavcodec/wavpack.h new file mode 120000 index 0000000..758a967 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wavpack.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wavpack.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wavpackdata.c b/libffmpeg-avcodec/libavcodec/wavpackdata.c new file mode 120000 index 0000000..788651b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wavpackdata.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wavpackdata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wavpackenc.c b/libffmpeg-avcodec/libavcodec/wavpackenc.c new file mode 120000 index 0000000..6cea125 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wavpackenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wavpackenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wavpackenc.h b/libffmpeg-avcodec/libavcodec/wavpackenc.h new file mode 120000 index 0000000..4da68b5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wavpackenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wavpackenc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wbmpdec.c b/libffmpeg-avcodec/libavcodec/wbmpdec.c new file mode 120000 index 0000000..915b56c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wbmpdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wbmpdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wbmpenc.c b/libffmpeg-avcodec/libavcodec/wbmpenc.c new file mode 120000 index 0000000..88990a9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wbmpenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wbmpenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wcmv.c b/libffmpeg-avcodec/libavcodec/wcmv.c new file mode 120000 index 0000000..676759b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wcmv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wcmv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/webp.c b/libffmpeg-avcodec/libavcodec/webp.c new file mode 120000 index 0000000..61021e2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/webp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/webp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/webp_parser.c b/libffmpeg-avcodec/libavcodec/webp_parser.c new file mode 120000 index 0000000..c878b76 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/webp_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/webp_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/webvttdec.c b/libffmpeg-avcodec/libavcodec/webvttdec.c new file mode 120000 index 0000000..e6b1947 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/webvttdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/webvttdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/webvttenc.c b/libffmpeg-avcodec/libavcodec/webvttenc.c new file mode 120000 index 0000000..7905d08 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/webvttenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/webvttenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wma.c b/libffmpeg-avcodec/libavcodec/wma.c new file mode 120000 index 0000000..2e6e7ec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wma.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wma.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wma.h b/libffmpeg-avcodec/libavcodec/wma.h new file mode 120000 index 0000000..8d517bf --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wma.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wma.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wma_common.c b/libffmpeg-avcodec/libavcodec/wma_common.c new file mode 120000 index 0000000..531e524 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wma_common.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wma_common.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wma_common.h b/libffmpeg-avcodec/libavcodec/wma_common.h new file mode 120000 index 0000000..9e24394 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wma_common.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wma_common.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wma_freqs.c b/libffmpeg-avcodec/libavcodec/wma_freqs.c new file mode 120000 index 0000000..391d3d1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wma_freqs.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wma_freqs.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wma_freqs.h b/libffmpeg-avcodec/libavcodec/wma_freqs.h new file mode 120000 index 0000000..63e926b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wma_freqs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wma_freqs.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmadata.h b/libffmpeg-avcodec/libavcodec/wmadata.h new file mode 120000 index 0000000..71a1af5 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmadata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmadata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmadec.c b/libffmpeg-avcodec/libavcodec/wmadec.c new file mode 120000 index 0000000..e1953c3 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmadec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wmadec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmaenc.c b/libffmpeg-avcodec/libavcodec/wmaenc.c new file mode 120000 index 0000000..544964f --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmaenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wmaenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmalosslessdec.c b/libffmpeg-avcodec/libavcodec/wmalosslessdec.c new file mode 120000 index 0000000..7cb15ec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmalosslessdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wmalosslessdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmaprodata.h b/libffmpeg-avcodec/libavcodec/wmaprodata.h new file mode 120000 index 0000000..10d87d2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmaprodata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmaprodata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmaprodec.c b/libffmpeg-avcodec/libavcodec/wmaprodec.c new file mode 120000 index 0000000..a0d3637 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmaprodec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wmaprodec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmavoice.c b/libffmpeg-avcodec/libavcodec/wmavoice.c new file mode 120000 index 0000000..7df9a37 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmavoice.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wmavoice.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmavoice_data.h b/libffmpeg-avcodec/libavcodec/wmavoice_data.h new file mode 120000 index 0000000..77ba591 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmavoice_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmavoice_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmv2.c b/libffmpeg-avcodec/libavcodec/wmv2.c new file mode 120000 index 0000000..7b3d60b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmv2.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmv2.h b/libffmpeg-avcodec/libavcodec/wmv2.h new file mode 120000 index 0000000..875e663 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmv2.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmv2data.c b/libffmpeg-avcodec/libavcodec/wmv2data.c new file mode 120000 index 0000000..15e8dc4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmv2data.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmv2data.h b/libffmpeg-avcodec/libavcodec/wmv2data.h new file mode 120000 index 0000000..2bb2707 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmv2data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmv2dec.c b/libffmpeg-avcodec/libavcodec/wmv2dec.c new file mode 120000 index 0000000..f393904 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmv2dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmv2dec.h b/libffmpeg-avcodec/libavcodec/wmv2dec.h new file mode 120000 index 0000000..215e1ad --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmv2dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2dec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmv2dsp.c b/libffmpeg-avcodec/libavcodec/wmv2dsp.c new file mode 120000 index 0000000..0617af4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmv2dsp.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmv2dsp.h b/libffmpeg-avcodec/libavcodec/wmv2dsp.h new file mode 120000 index 0000000..9c653e2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmv2dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmv2enc.c b/libffmpeg-avcodec/libavcodec/wmv2enc.c new file mode 120000 index 0000000..32fd60d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmv2enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wmv2enc.h b/libffmpeg-avcodec/libavcodec/wmv2enc.h new file mode 120000 index 0000000..89c4028 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wmv2enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2enc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wnv1.c b/libffmpeg-avcodec/libavcodec/wnv1.c new file mode 120000 index 0000000..848ff3d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wnv1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wnv1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/wrapped_avframe.c b/libffmpeg-avcodec/libavcodec/wrapped_avframe.c new file mode 120000 index 0000000..0965a2d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/wrapped_avframe.c @@ -0,0 +1 @@ +../../upstream/libavcodec/wrapped_avframe.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ws-snd1.c b/libffmpeg-avcodec/libavcodec/ws-snd1.c new file mode 120000 index 0000000..c84fede --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ws-snd1.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ws-snd1.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/x86/mathops.h b/libffmpeg-avcodec/libavcodec/x86/mathops.h new file mode 120000 index 0000000..92956d6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/x86/mathops.h @@ -0,0 +1 @@ +../../../upstream/libavcodec/x86/mathops.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xan.c b/libffmpeg-avcodec/libavcodec/xan.c new file mode 120000 index 0000000..2aaadea --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xan.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xan.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xbm_parser.c b/libffmpeg-avcodec/libavcodec/xbm_parser.c new file mode 120000 index 0000000..c6ac4b0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xbm_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xbm_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xbmdec.c b/libffmpeg-avcodec/libavcodec/xbmdec.c new file mode 120000 index 0000000..6de00aa --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xbmdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xbmdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xbmenc.c b/libffmpeg-avcodec/libavcodec/xbmenc.c new file mode 120000 index 0000000..2f1f842 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xbmenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xbmenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xface.c b/libffmpeg-avcodec/libavcodec/xface.c new file mode 120000 index 0000000..8f5dcec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xface.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xface.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xface.h b/libffmpeg-avcodec/libavcodec/xface.h new file mode 120000 index 0000000..2785dd0 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xface.h @@ -0,0 +1 @@ +../../upstream/libavcodec/xface.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xfacedec.c b/libffmpeg-avcodec/libavcodec/xfacedec.c new file mode 120000 index 0000000..d4ed8e6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xfacedec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xfacedec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xfaceenc.c b/libffmpeg-avcodec/libavcodec/xfaceenc.c new file mode 120000 index 0000000..a5fb05d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xfaceenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xfaceenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xiph.c b/libffmpeg-avcodec/libavcodec/xiph.c new file mode 120000 index 0000000..0e452ec --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xiph.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xiph.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xiph.h b/libffmpeg-avcodec/libavcodec/xiph.h new file mode 120000 index 0000000..d55c2f4 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xiph.h @@ -0,0 +1 @@ +../../upstream/libavcodec/xiph.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xl.c b/libffmpeg-avcodec/libavcodec/xl.c new file mode 120000 index 0000000..bf80220 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xl.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xl.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xma_parser.c b/libffmpeg-avcodec/libavcodec/xma_parser.c new file mode 120000 index 0000000..39f5011 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xma_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xma_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xpmdec.c b/libffmpeg-avcodec/libavcodec/xpmdec.c new file mode 120000 index 0000000..b6c3a6b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xpmdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xpmdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xsubdec.c b/libffmpeg-avcodec/libavcodec/xsubdec.c new file mode 120000 index 0000000..b8ff5d6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xsubdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xsubdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xsubenc.c b/libffmpeg-avcodec/libavcodec/xsubenc.c new file mode 120000 index 0000000..2e698a1 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xsubenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xsubenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xvididct.c b/libffmpeg-avcodec/libavcodec/xvididct.c new file mode 120000 index 0000000..f99b5b9 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xvididct.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xvididct.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xvididct.h b/libffmpeg-avcodec/libavcodec/xvididct.h new file mode 120000 index 0000000..a25d332 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xvididct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/xvididct.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xwd.h b/libffmpeg-avcodec/libavcodec/xwd.h new file mode 120000 index 0000000..fbd3012 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xwd.h @@ -0,0 +1 @@ +../../upstream/libavcodec/xwd.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xwd_parser.c b/libffmpeg-avcodec/libavcodec/xwd_parser.c new file mode 120000 index 0000000..4934bb6 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xwd_parser.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xwd_parser.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xwddec.c b/libffmpeg-avcodec/libavcodec/xwddec.c new file mode 120000 index 0000000..b17bf73 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xwddec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xwddec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xwdenc.c b/libffmpeg-avcodec/libavcodec/xwdenc.c new file mode 120000 index 0000000..48ffe21 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xwdenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xwdenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/xxan.c b/libffmpeg-avcodec/libavcodec/xxan.c new file mode 120000 index 0000000..b3fd837 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/xxan.c @@ -0,0 +1 @@ +../../upstream/libavcodec/xxan.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/y41pdec.c b/libffmpeg-avcodec/libavcodec/y41pdec.c new file mode 120000 index 0000000..31e877e --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/y41pdec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/y41pdec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/y41penc.c b/libffmpeg-avcodec/libavcodec/y41penc.c new file mode 120000 index 0000000..b7a7e59 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/y41penc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/y41penc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/ylc.c b/libffmpeg-avcodec/libavcodec/ylc.c new file mode 120000 index 0000000..e0e6538 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/ylc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/ylc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/yop.c b/libffmpeg-avcodec/libavcodec/yop.c new file mode 120000 index 0000000..3047d44 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/yop.c @@ -0,0 +1 @@ +../../upstream/libavcodec/yop.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/yuv4dec.c b/libffmpeg-avcodec/libavcodec/yuv4dec.c new file mode 120000 index 0000000..ceb254d --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/yuv4dec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/yuv4dec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/yuv4enc.c b/libffmpeg-avcodec/libavcodec/yuv4enc.c new file mode 120000 index 0000000..6f410c2 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/yuv4enc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/yuv4enc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/zerocodec.c b/libffmpeg-avcodec/libavcodec/zerocodec.c new file mode 120000 index 0000000..27e319c --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/zerocodec.c @@ -0,0 +1 @@ +../../upstream/libavcodec/zerocodec.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/zlib_wrapper.c b/libffmpeg-avcodec/libavcodec/zlib_wrapper.c new file mode 120000 index 0000000..1242f73 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/zlib_wrapper.c @@ -0,0 +1 @@ +../../upstream/libavcodec/zlib_wrapper.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/zlib_wrapper.h b/libffmpeg-avcodec/libavcodec/zlib_wrapper.h new file mode 120000 index 0000000..337b658 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/zlib_wrapper.h @@ -0,0 +1 @@ +../../upstream/libavcodec/zlib_wrapper.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/zmbv.c b/libffmpeg-avcodec/libavcodec/zmbv.c new file mode 120000 index 0000000..e85666b --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/zmbv.c @@ -0,0 +1 @@ +../../upstream/libavcodec/zmbv.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavcodec/zmbvenc.c b/libffmpeg-avcodec/libavcodec/zmbvenc.c new file mode 120000 index 0000000..fc29af7 --- /dev/null +++ b/libffmpeg-avcodec/libavcodec/zmbvenc.c @@ -0,0 +1 @@ +../../upstream/libavcodec/zmbvenc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/adler32.c b/libffmpeg-avcodec/libavutil/adler32.c new file mode 120000 index 0000000..e3f23f6 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/adler32.c @@ -0,0 +1 @@ +../../upstream/libavutil/adler32.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/adler32.h b/libffmpeg-avcodec/libavutil/adler32.h new file mode 120000 index 0000000..f9ae859 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/adler32.h @@ -0,0 +1 @@ +../../upstream/libavutil/adler32.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/aes.c b/libffmpeg-avcodec/libavutil/aes.c new file mode 120000 index 0000000..9ce4416 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/aes.c @@ -0,0 +1 @@ +../../upstream/libavutil/aes.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/aes.h b/libffmpeg-avcodec/libavutil/aes.h new file mode 120000 index 0000000..67ef04e --- /dev/null +++ b/libffmpeg-avcodec/libavutil/aes.h @@ -0,0 +1 @@ +../../upstream/libavutil/aes.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/aes_ctr.c b/libffmpeg-avcodec/libavutil/aes_ctr.c new file mode 120000 index 0000000..3900593 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/aes_ctr.c @@ -0,0 +1 @@ +../../upstream/libavutil/aes_ctr.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/aes_ctr.h b/libffmpeg-avcodec/libavutil/aes_ctr.h new file mode 120000 index 0000000..034472b --- /dev/null +++ b/libffmpeg-avcodec/libavutil/aes_ctr.h @@ -0,0 +1 @@ +../../upstream/libavutil/aes_ctr.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/aes_internal.h b/libffmpeg-avcodec/libavutil/aes_internal.h new file mode 120000 index 0000000..0f6c236 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/aes_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/aes_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/ambient_viewing_environment.c b/libffmpeg-avcodec/libavutil/ambient_viewing_environment.c new file mode 120000 index 0000000..afc4cbf --- /dev/null +++ b/libffmpeg-avcodec/libavutil/ambient_viewing_environment.c @@ -0,0 +1 @@ +../../upstream/libavutil/ambient_viewing_environment.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/ambient_viewing_environment.h b/libffmpeg-avcodec/libavutil/ambient_viewing_environment.h new file mode 120000 index 0000000..03052fc --- /dev/null +++ b/libffmpeg-avcodec/libavutil/ambient_viewing_environment.h @@ -0,0 +1 @@ +../../upstream/libavutil/ambient_viewing_environment.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/attributes.h b/libffmpeg-avcodec/libavutil/attributes.h new file mode 120000 index 0000000..36206ee --- /dev/null +++ b/libffmpeg-avcodec/libavutil/attributes.h @@ -0,0 +1 @@ +../../upstream/libavutil/attributes.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/attributes_internal.h b/libffmpeg-avcodec/libavutil/attributes_internal.h new file mode 120000 index 0000000..881d640 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/attributes_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/attributes_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/audio_fifo.c b/libffmpeg-avcodec/libavutil/audio_fifo.c new file mode 120000 index 0000000..a15b2c8 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/audio_fifo.c @@ -0,0 +1 @@ +../../upstream/libavutil/audio_fifo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/audio_fifo.h b/libffmpeg-avcodec/libavutil/audio_fifo.h new file mode 120000 index 0000000..de93d02 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/audio_fifo.h @@ -0,0 +1 @@ +../../upstream/libavutil/audio_fifo.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/avassert.h b/libffmpeg-avcodec/libavutil/avassert.h new file mode 120000 index 0000000..b4f4dd5 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/avassert.h @@ -0,0 +1 @@ +../../upstream/libavutil/avassert.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/avconfig.h b/libffmpeg-avcodec/libavutil/avconfig.h new file mode 100644 index 0000000..c289fbb --- /dev/null +++ b/libffmpeg-avcodec/libavutil/avconfig.h @@ -0,0 +1,6 @@ +/* Generated by ffmpeg configure */ +#ifndef AVUTIL_AVCONFIG_H +#define AVUTIL_AVCONFIG_H +#define AV_HAVE_BIGENDIAN 0 +#define AV_HAVE_FAST_UNALIGNED 1 +#endif /* AVUTIL_AVCONFIG_H */ diff --git a/libffmpeg-avcodec/libavutil/avsscanf.c b/libffmpeg-avcodec/libavutil/avsscanf.c new file mode 120000 index 0000000..31ccc55 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/avsscanf.c @@ -0,0 +1 @@ +../../upstream/libavutil/avsscanf.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/avstring.c b/libffmpeg-avcodec/libavutil/avstring.c new file mode 120000 index 0000000..430e7ff --- /dev/null +++ b/libffmpeg-avcodec/libavutil/avstring.c @@ -0,0 +1 @@ +../../upstream/libavutil/avstring.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/avstring.h b/libffmpeg-avcodec/libavutil/avstring.h new file mode 120000 index 0000000..7be3b03 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/avstring.h @@ -0,0 +1 @@ +../../upstream/libavutil/avstring.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/avutil.h b/libffmpeg-avcodec/libavutil/avutil.h new file mode 120000 index 0000000..4c8d3ad --- /dev/null +++ b/libffmpeg-avcodec/libavutil/avutil.h @@ -0,0 +1 @@ +../../upstream/libavutil/avutil.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/base64.c b/libffmpeg-avcodec/libavutil/base64.c new file mode 120000 index 0000000..2742f7b --- /dev/null +++ b/libffmpeg-avcodec/libavutil/base64.c @@ -0,0 +1 @@ +../../upstream/libavutil/base64.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/base64.h b/libffmpeg-avcodec/libavutil/base64.h new file mode 120000 index 0000000..854522d --- /dev/null +++ b/libffmpeg-avcodec/libavutil/base64.h @@ -0,0 +1 @@ +../../upstream/libavutil/base64.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/blowfish.c b/libffmpeg-avcodec/libavutil/blowfish.c new file mode 120000 index 0000000..e33bb37 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/blowfish.c @@ -0,0 +1 @@ +../../upstream/libavutil/blowfish.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/blowfish.h b/libffmpeg-avcodec/libavutil/blowfish.h new file mode 120000 index 0000000..04d08d2 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/blowfish.h @@ -0,0 +1 @@ +../../upstream/libavutil/blowfish.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/bprint.c b/libffmpeg-avcodec/libavutil/bprint.c new file mode 120000 index 0000000..13dd05e --- /dev/null +++ b/libffmpeg-avcodec/libavutil/bprint.c @@ -0,0 +1 @@ +../../upstream/libavutil/bprint.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/bprint.h b/libffmpeg-avcodec/libavutil/bprint.h new file mode 120000 index 0000000..13e85cb --- /dev/null +++ b/libffmpeg-avcodec/libavutil/bprint.h @@ -0,0 +1 @@ +../../upstream/libavutil/bprint.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/bswap.h b/libffmpeg-avcodec/libavutil/bswap.h new file mode 120000 index 0000000..48e446a --- /dev/null +++ b/libffmpeg-avcodec/libavutil/bswap.h @@ -0,0 +1 @@ +../../upstream/libavutil/bswap.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/buffer.c b/libffmpeg-avcodec/libavutil/buffer.c new file mode 120000 index 0000000..2cabbd9 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/buffer.c @@ -0,0 +1 @@ +../../upstream/libavutil/buffer.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/buffer.h b/libffmpeg-avcodec/libavutil/buffer.h new file mode 120000 index 0000000..511f595 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/buffer.h @@ -0,0 +1 @@ +../../upstream/libavutil/buffer.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/buffer_internal.h b/libffmpeg-avcodec/libavutil/buffer_internal.h new file mode 120000 index 0000000..16900dc --- /dev/null +++ b/libffmpeg-avcodec/libavutil/buffer_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/buffer_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/camellia.c b/libffmpeg-avcodec/libavutil/camellia.c new file mode 120000 index 0000000..f262abf --- /dev/null +++ b/libffmpeg-avcodec/libavutil/camellia.c @@ -0,0 +1 @@ +../../upstream/libavutil/camellia.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/camellia.h b/libffmpeg-avcodec/libavutil/camellia.h new file mode 120000 index 0000000..6979ac3 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/camellia.h @@ -0,0 +1 @@ +../../upstream/libavutil/camellia.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/cast5.c b/libffmpeg-avcodec/libavutil/cast5.c new file mode 120000 index 0000000..96cc206 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/cast5.c @@ -0,0 +1 @@ +../../upstream/libavutil/cast5.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/cast5.h b/libffmpeg-avcodec/libavutil/cast5.h new file mode 120000 index 0000000..78d21be --- /dev/null +++ b/libffmpeg-avcodec/libavutil/cast5.h @@ -0,0 +1 @@ +../../upstream/libavutil/cast5.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/channel_layout.c b/libffmpeg-avcodec/libavutil/channel_layout.c new file mode 120000 index 0000000..b048b74 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/channel_layout.c @@ -0,0 +1 @@ +../../upstream/libavutil/channel_layout.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/channel_layout.h b/libffmpeg-avcodec/libavutil/channel_layout.h new file mode 120000 index 0000000..e7d4ea2 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/channel_layout.h @@ -0,0 +1 @@ +../../upstream/libavutil/channel_layout.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/colorspace.h b/libffmpeg-avcodec/libavutil/colorspace.h new file mode 120000 index 0000000..c6dbc61 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/colorspace.h @@ -0,0 +1 @@ +../../upstream/libavutil/colorspace.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/common.h b/libffmpeg-avcodec/libavutil/common.h new file mode 120000 index 0000000..01efc23 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/common.h @@ -0,0 +1 @@ +../../upstream/libavutil/common.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/cpu.c b/libffmpeg-avcodec/libavutil/cpu.c new file mode 120000 index 0000000..be749ec --- /dev/null +++ b/libffmpeg-avcodec/libavutil/cpu.c @@ -0,0 +1 @@ +../../upstream/libavutil/cpu.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/cpu.h b/libffmpeg-avcodec/libavutil/cpu.h new file mode 120000 index 0000000..16d3ab7 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/cpu.h @@ -0,0 +1 @@ +../../upstream/libavutil/cpu.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/cpu_internal.h b/libffmpeg-avcodec/libavutil/cpu_internal.h new file mode 120000 index 0000000..03c850e --- /dev/null +++ b/libffmpeg-avcodec/libavutil/cpu_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/cpu_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/crc.c b/libffmpeg-avcodec/libavutil/crc.c new file mode 120000 index 0000000..da517d7 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/crc.c @@ -0,0 +1 @@ +../../upstream/libavutil/crc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/crc.h b/libffmpeg-avcodec/libavutil/crc.h new file mode 120000 index 0000000..ffc4490 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/crc.h @@ -0,0 +1 @@ +../../upstream/libavutil/crc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/csp.c b/libffmpeg-avcodec/libavutil/csp.c new file mode 120000 index 0000000..5fe7848 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/csp.c @@ -0,0 +1 @@ +../../upstream/libavutil/csp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/csp.h b/libffmpeg-avcodec/libavutil/csp.h new file mode 120000 index 0000000..84cb04c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/csp.h @@ -0,0 +1 @@ +../../upstream/libavutil/csp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/cuda_check.h b/libffmpeg-avcodec/libavutil/cuda_check.h new file mode 120000 index 0000000..0ca6192 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/cuda_check.h @@ -0,0 +1 @@ +../../upstream/libavutil/cuda_check.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/des.c b/libffmpeg-avcodec/libavutil/des.c new file mode 120000 index 0000000..e7350ea --- /dev/null +++ b/libffmpeg-avcodec/libavutil/des.c @@ -0,0 +1 @@ +../../upstream/libavutil/des.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/des.h b/libffmpeg-avcodec/libavutil/des.h new file mode 120000 index 0000000..2ca0d0f --- /dev/null +++ b/libffmpeg-avcodec/libavutil/des.h @@ -0,0 +1 @@ +../../upstream/libavutil/des.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/detection_bbox.c b/libffmpeg-avcodec/libavutil/detection_bbox.c new file mode 120000 index 0000000..75d36d6 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/detection_bbox.c @@ -0,0 +1 @@ +../../upstream/libavutil/detection_bbox.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/detection_bbox.h b/libffmpeg-avcodec/libavutil/detection_bbox.h new file mode 120000 index 0000000..da0c1cb --- /dev/null +++ b/libffmpeg-avcodec/libavutil/detection_bbox.h @@ -0,0 +1 @@ +../../upstream/libavutil/detection_bbox.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/dict.c b/libffmpeg-avcodec/libavutil/dict.c new file mode 120000 index 0000000..9a1bd7d --- /dev/null +++ b/libffmpeg-avcodec/libavutil/dict.c @@ -0,0 +1 @@ +../../upstream/libavutil/dict.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/dict.h b/libffmpeg-avcodec/libavutil/dict.h new file mode 120000 index 0000000..23b4a6e --- /dev/null +++ b/libffmpeg-avcodec/libavutil/dict.h @@ -0,0 +1 @@ +../../upstream/libavutil/dict.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/dict_internal.h b/libffmpeg-avcodec/libavutil/dict_internal.h new file mode 120000 index 0000000..a0b7310 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/dict_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/dict_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/display.c b/libffmpeg-avcodec/libavutil/display.c new file mode 120000 index 0000000..aac81b9 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/display.c @@ -0,0 +1 @@ +../../upstream/libavutil/display.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/display.h b/libffmpeg-avcodec/libavutil/display.h new file mode 120000 index 0000000..00cf97b --- /dev/null +++ b/libffmpeg-avcodec/libavutil/display.h @@ -0,0 +1 @@ +../../upstream/libavutil/display.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/dovi_meta.c b/libffmpeg-avcodec/libavutil/dovi_meta.c new file mode 120000 index 0000000..a164a13 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/dovi_meta.c @@ -0,0 +1 @@ +../../upstream/libavutil/dovi_meta.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/dovi_meta.h b/libffmpeg-avcodec/libavutil/dovi_meta.h new file mode 120000 index 0000000..3818ff2 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/dovi_meta.h @@ -0,0 +1 @@ +../../upstream/libavutil/dovi_meta.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/downmix_info.c b/libffmpeg-avcodec/libavutil/downmix_info.c new file mode 120000 index 0000000..a1f8914 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/downmix_info.c @@ -0,0 +1 @@ +../../upstream/libavutil/downmix_info.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/downmix_info.h b/libffmpeg-avcodec/libavutil/downmix_info.h new file mode 120000 index 0000000..dc2f3cc --- /dev/null +++ b/libffmpeg-avcodec/libavutil/downmix_info.h @@ -0,0 +1 @@ +../../upstream/libavutil/downmix_info.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/dynarray.h b/libffmpeg-avcodec/libavutil/dynarray.h new file mode 120000 index 0000000..fc1be38 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/dynarray.h @@ -0,0 +1 @@ +../../upstream/libavutil/dynarray.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/emms.h b/libffmpeg-avcodec/libavutil/emms.h new file mode 120000 index 0000000..f30aeda --- /dev/null +++ b/libffmpeg-avcodec/libavutil/emms.h @@ -0,0 +1 @@ +../../upstream/libavutil/emms.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/encryption_info.c b/libffmpeg-avcodec/libavutil/encryption_info.c new file mode 120000 index 0000000..3aaca96 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/encryption_info.c @@ -0,0 +1 @@ +../../upstream/libavutil/encryption_info.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/encryption_info.h b/libffmpeg-avcodec/libavutil/encryption_info.h new file mode 120000 index 0000000..a98dcf5 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/encryption_info.h @@ -0,0 +1 @@ +../../upstream/libavutil/encryption_info.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/error.c b/libffmpeg-avcodec/libavutil/error.c new file mode 120000 index 0000000..efd8f9a --- /dev/null +++ b/libffmpeg-avcodec/libavutil/error.c @@ -0,0 +1 @@ +../../upstream/libavutil/error.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/error.h b/libffmpeg-avcodec/libavutil/error.h new file mode 120000 index 0000000..fa80c16 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/error.h @@ -0,0 +1 @@ +../../upstream/libavutil/error.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/eval.c b/libffmpeg-avcodec/libavutil/eval.c new file mode 120000 index 0000000..c721e20 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/eval.c @@ -0,0 +1 @@ +../../upstream/libavutil/eval.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/eval.h b/libffmpeg-avcodec/libavutil/eval.h new file mode 120000 index 0000000..5184167 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/eval.h @@ -0,0 +1 @@ +../../upstream/libavutil/eval.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/executor.c b/libffmpeg-avcodec/libavutil/executor.c new file mode 120000 index 0000000..d2de660 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/executor.c @@ -0,0 +1 @@ +../../upstream/libavutil/executor.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/executor.h b/libffmpeg-avcodec/libavutil/executor.h new file mode 120000 index 0000000..a7e1a93 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/executor.h @@ -0,0 +1 @@ +../../upstream/libavutil/executor.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/ffmath.h b/libffmpeg-avcodec/libavutil/ffmath.h new file mode 120000 index 0000000..a1d0f10 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/ffmath.h @@ -0,0 +1 @@ +../../upstream/libavutil/ffmath.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/ffversion.h b/libffmpeg-avcodec/libavutil/ffversion.h new file mode 100644 index 0000000..502effb --- /dev/null +++ b/libffmpeg-avcodec/libavutil/ffversion.h @@ -0,0 +1,5 @@ +/* Automatically generated by version.sh, do not manually edit! */ +#ifndef AVUTIL_FFVERSION_H +#define AVUTIL_FFVERSION_H +#define FFMPEG_VERSION "N-115551-g4037d5e103" +#endif /* AVUTIL_FFVERSION_H */ diff --git a/libffmpeg-avcodec/libavutil/fifo.c b/libffmpeg-avcodec/libavutil/fifo.c new file mode 120000 index 0000000..c473031 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/fifo.c @@ -0,0 +1 @@ +../../upstream/libavutil/fifo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/fifo.h b/libffmpeg-avcodec/libavutil/fifo.h new file mode 120000 index 0000000..7f7a5b6 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/fifo.h @@ -0,0 +1 @@ +../../upstream/libavutil/fifo.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/file.c b/libffmpeg-avcodec/libavutil/file.c new file mode 120000 index 0000000..4a79e14 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/file.c @@ -0,0 +1 @@ +../../upstream/libavutil/file.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/file.h b/libffmpeg-avcodec/libavutil/file.h new file mode 120000 index 0000000..06ba51f --- /dev/null +++ b/libffmpeg-avcodec/libavutil/file.h @@ -0,0 +1 @@ +../../upstream/libavutil/file.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/file_open.c b/libffmpeg-avcodec/libavutil/file_open.c new file mode 120000 index 0000000..0c6b216 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/file_open.c @@ -0,0 +1 @@ +../../upstream/libavutil/file_open.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/file_open.h b/libffmpeg-avcodec/libavutil/file_open.h new file mode 120000 index 0000000..45a7733 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/file_open.h @@ -0,0 +1 @@ +../../upstream/libavutil/file_open.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/film_grain_params.c b/libffmpeg-avcodec/libavutil/film_grain_params.c new file mode 120000 index 0000000..bdb87de --- /dev/null +++ b/libffmpeg-avcodec/libavutil/film_grain_params.c @@ -0,0 +1 @@ +../../upstream/libavutil/film_grain_params.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/film_grain_params.h b/libffmpeg-avcodec/libavutil/film_grain_params.h new file mode 120000 index 0000000..ae39909 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/film_grain_params.h @@ -0,0 +1 @@ +../../upstream/libavutil/film_grain_params.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/fixed_dsp.c b/libffmpeg-avcodec/libavutil/fixed_dsp.c new file mode 120000 index 0000000..542a41b --- /dev/null +++ b/libffmpeg-avcodec/libavutil/fixed_dsp.c @@ -0,0 +1 @@ +../../upstream/libavutil/fixed_dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/fixed_dsp.h b/libffmpeg-avcodec/libavutil/fixed_dsp.h new file mode 120000 index 0000000..23f5ad1 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/fixed_dsp.h @@ -0,0 +1 @@ +../../upstream/libavutil/fixed_dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/float2half.h b/libffmpeg-avcodec/libavutil/float2half.h new file mode 120000 index 0000000..17dcba9 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/float2half.h @@ -0,0 +1 @@ +../../upstream/libavutil/float2half.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/float_dsp.c b/libffmpeg-avcodec/libavutil/float_dsp.c new file mode 120000 index 0000000..eb768c8 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/float_dsp.c @@ -0,0 +1 @@ +../../upstream/libavutil/float_dsp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/float_dsp.h b/libffmpeg-avcodec/libavutil/float_dsp.h new file mode 120000 index 0000000..f40da51 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/float_dsp.h @@ -0,0 +1 @@ +../../upstream/libavutil/float_dsp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/frame.c b/libffmpeg-avcodec/libavutil/frame.c new file mode 120000 index 0000000..c829260 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/frame.c @@ -0,0 +1 @@ +../../upstream/libavutil/frame.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/frame.h b/libffmpeg-avcodec/libavutil/frame.h new file mode 120000 index 0000000..7f01115 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/frame.h @@ -0,0 +1 @@ +../../upstream/libavutil/frame.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/getenv_utf8.h b/libffmpeg-avcodec/libavutil/getenv_utf8.h new file mode 120000 index 0000000..a457d31 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/getenv_utf8.h @@ -0,0 +1 @@ +../../upstream/libavutil/getenv_utf8.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/half2float.h b/libffmpeg-avcodec/libavutil/half2float.h new file mode 120000 index 0000000..d76fc16 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/half2float.h @@ -0,0 +1 @@ +../../upstream/libavutil/half2float.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hash.c b/libffmpeg-avcodec/libavutil/hash.c new file mode 120000 index 0000000..3eedb63 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hash.c @@ -0,0 +1 @@ +../../upstream/libavutil/hash.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hash.h b/libffmpeg-avcodec/libavutil/hash.h new file mode 120000 index 0000000..2909e29 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hash.h @@ -0,0 +1 @@ +../../upstream/libavutil/hash.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hdr_dynamic_metadata.c b/libffmpeg-avcodec/libavutil/hdr_dynamic_metadata.c new file mode 120000 index 0000000..10d0fee --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hdr_dynamic_metadata.c @@ -0,0 +1 @@ +../../upstream/libavutil/hdr_dynamic_metadata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hdr_dynamic_metadata.h b/libffmpeg-avcodec/libavutil/hdr_dynamic_metadata.h new file mode 120000 index 0000000..2a1b867 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hdr_dynamic_metadata.h @@ -0,0 +1 @@ +../../upstream/libavutil/hdr_dynamic_metadata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hdr_dynamic_vivid_metadata.c b/libffmpeg-avcodec/libavutil/hdr_dynamic_vivid_metadata.c new file mode 120000 index 0000000..6e44903 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hdr_dynamic_vivid_metadata.c @@ -0,0 +1 @@ +../../upstream/libavutil/hdr_dynamic_vivid_metadata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hdr_dynamic_vivid_metadata.h b/libffmpeg-avcodec/libavutil/hdr_dynamic_vivid_metadata.h new file mode 120000 index 0000000..92f6c86 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hdr_dynamic_vivid_metadata.h @@ -0,0 +1 @@ +../../upstream/libavutil/hdr_dynamic_vivid_metadata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hmac.c b/libffmpeg-avcodec/libavutil/hmac.c new file mode 120000 index 0000000..4762947 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hmac.c @@ -0,0 +1 @@ +../../upstream/libavutil/hmac.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hmac.h b/libffmpeg-avcodec/libavutil/hmac.h new file mode 120000 index 0000000..1ef13da --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hmac.h @@ -0,0 +1 @@ +../../upstream/libavutil/hmac.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext.c b/libffmpeg-avcodec/libavutil/hwcontext.c new file mode 120000 index 0000000..ca28743 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext.c @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext.h b/libffmpeg-avcodec/libavutil/hwcontext.h new file mode 120000 index 0000000..7f5e66c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_cuda.h b/libffmpeg-avcodec/libavutil/hwcontext_cuda.h new file mode 120000 index 0000000..483f39c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_cuda.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_cuda.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_cuda_internal.h b/libffmpeg-avcodec/libavutil/hwcontext_cuda_internal.h new file mode 120000 index 0000000..0a80836 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_cuda_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_cuda_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_d3d11va.h b/libffmpeg-avcodec/libavutil/hwcontext_d3d11va.h new file mode 120000 index 0000000..5b0a93d --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_d3d11va.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_d3d11va.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_d3d12va.h b/libffmpeg-avcodec/libavutil/hwcontext_d3d12va.h new file mode 120000 index 0000000..f0a1782 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_d3d12va.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_d3d12va.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_d3d12va_internal.h b/libffmpeg-avcodec/libavutil/hwcontext_d3d12va_internal.h new file mode 120000 index 0000000..34bd097 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_d3d12va_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_d3d12va_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_drm.h b/libffmpeg-avcodec/libavutil/hwcontext_drm.h new file mode 120000 index 0000000..19a4eb9 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_drm.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_drm.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_dxva2.h b/libffmpeg-avcodec/libavutil/hwcontext_dxva2.h new file mode 120000 index 0000000..975fb54 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_dxva2.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_dxva2.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_internal.h b/libffmpeg-avcodec/libavutil/hwcontext_internal.h new file mode 120000 index 0000000..5bc76e9 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_mediacodec.h b/libffmpeg-avcodec/libavutil/hwcontext_mediacodec.h new file mode 120000 index 0000000..9e9ed1f --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_mediacodec.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_mediacodec.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_opencl.h b/libffmpeg-avcodec/libavutil/hwcontext_opencl.h new file mode 120000 index 0000000..4f6a206 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_opencl.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_opencl.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_qsv.h b/libffmpeg-avcodec/libavutil/hwcontext_qsv.h new file mode 120000 index 0000000..2607047 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_qsv.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_qsv.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_vaapi.h b/libffmpeg-avcodec/libavutil/hwcontext_vaapi.h new file mode 120000 index 0000000..7d7c77b --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_vaapi.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_vaapi.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_vdpau.h b/libffmpeg-avcodec/libavutil/hwcontext_vdpau.h new file mode 120000 index 0000000..469c006 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_vdpau.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_vdpau.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_videotoolbox.h b/libffmpeg-avcodec/libavutil/hwcontext_videotoolbox.h new file mode 120000 index 0000000..7593668 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_videotoolbox.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_videotoolbox.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/hwcontext_vulkan.h b/libffmpeg-avcodec/libavutil/hwcontext_vulkan.h new file mode 120000 index 0000000..e6a4891 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/hwcontext_vulkan.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_vulkan.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/iamf.c b/libffmpeg-avcodec/libavutil/iamf.c new file mode 120000 index 0000000..f745c0b --- /dev/null +++ b/libffmpeg-avcodec/libavutil/iamf.c @@ -0,0 +1 @@ +../../upstream/libavutil/iamf.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/iamf.h b/libffmpeg-avcodec/libavutil/iamf.h new file mode 120000 index 0000000..d2c9dfe --- /dev/null +++ b/libffmpeg-avcodec/libavutil/iamf.h @@ -0,0 +1 @@ +../../upstream/libavutil/iamf.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/imgutils.c b/libffmpeg-avcodec/libavutil/imgutils.c new file mode 120000 index 0000000..4d4b378 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/imgutils.c @@ -0,0 +1 @@ +../../upstream/libavutil/imgutils.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/imgutils.h b/libffmpeg-avcodec/libavutil/imgutils.h new file mode 120000 index 0000000..102c71c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/imgutils.h @@ -0,0 +1 @@ +../../upstream/libavutil/imgutils.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/imgutils_internal.h b/libffmpeg-avcodec/libavutil/imgutils_internal.h new file mode 120000 index 0000000..9f96842 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/imgutils_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/imgutils_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/integer.c b/libffmpeg-avcodec/libavutil/integer.c new file mode 120000 index 0000000..7d3de8c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/integer.c @@ -0,0 +1 @@ +../../upstream/libavutil/integer.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/integer.h b/libffmpeg-avcodec/libavutil/integer.h new file mode 120000 index 0000000..6d80c82 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/integer.h @@ -0,0 +1 @@ +../../upstream/libavutil/integer.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/internal.h b/libffmpeg-avcodec/libavutil/internal.h new file mode 120000 index 0000000..488fe0a --- /dev/null +++ b/libffmpeg-avcodec/libavutil/internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/intfloat.h b/libffmpeg-avcodec/libavutil/intfloat.h new file mode 120000 index 0000000..a89b4c1 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/intfloat.h @@ -0,0 +1 @@ +../../upstream/libavutil/intfloat.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/intmath.c b/libffmpeg-avcodec/libavutil/intmath.c new file mode 120000 index 0000000..2c901e8 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/intmath.c @@ -0,0 +1 @@ +../../upstream/libavutil/intmath.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/intmath.h b/libffmpeg-avcodec/libavutil/intmath.h new file mode 120000 index 0000000..5d74a1b --- /dev/null +++ b/libffmpeg-avcodec/libavutil/intmath.h @@ -0,0 +1 @@ +../../upstream/libavutil/intmath.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/intreadwrite.h b/libffmpeg-avcodec/libavutil/intreadwrite.h new file mode 120000 index 0000000..18f17f4 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/intreadwrite.h @@ -0,0 +1 @@ +../../upstream/libavutil/intreadwrite.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/lfg.c b/libffmpeg-avcodec/libavutil/lfg.c new file mode 120000 index 0000000..0206c0c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/lfg.c @@ -0,0 +1 @@ +../../upstream/libavutil/lfg.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/lfg.h b/libffmpeg-avcodec/libavutil/lfg.h new file mode 120000 index 0000000..df3c389 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/lfg.h @@ -0,0 +1 @@ +../../upstream/libavutil/lfg.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/libm.h b/libffmpeg-avcodec/libavutil/libm.h new file mode 120000 index 0000000..9c32b7b --- /dev/null +++ b/libffmpeg-avcodec/libavutil/libm.h @@ -0,0 +1 @@ +../../upstream/libavutil/libm.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/lls.c b/libffmpeg-avcodec/libavutil/lls.c new file mode 120000 index 0000000..2e3d348 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/lls.c @@ -0,0 +1 @@ +../../upstream/libavutil/lls.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/lls.h b/libffmpeg-avcodec/libavutil/lls.h new file mode 120000 index 0000000..f334b1d --- /dev/null +++ b/libffmpeg-avcodec/libavutil/lls.h @@ -0,0 +1 @@ +../../upstream/libavutil/lls.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/log.c b/libffmpeg-avcodec/libavutil/log.c new file mode 120000 index 0000000..7627a5c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/log.c @@ -0,0 +1 @@ +../../upstream/libavutil/log.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/log.h b/libffmpeg-avcodec/libavutil/log.h new file mode 120000 index 0000000..08a5b34 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/log.h @@ -0,0 +1 @@ +../../upstream/libavutil/log.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/log2_tab.c b/libffmpeg-avcodec/libavutil/log2_tab.c new file mode 120000 index 0000000..e471fe3 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/log2_tab.c @@ -0,0 +1 @@ +../../upstream/libavutil/log2_tab.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/lzo.c b/libffmpeg-avcodec/libavutil/lzo.c new file mode 120000 index 0000000..6171d3f --- /dev/null +++ b/libffmpeg-avcodec/libavutil/lzo.c @@ -0,0 +1 @@ +../../upstream/libavutil/lzo.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/lzo.h b/libffmpeg-avcodec/libavutil/lzo.h new file mode 120000 index 0000000..846f740 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/lzo.h @@ -0,0 +1 @@ +../../upstream/libavutil/lzo.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/macos_kperf.h b/libffmpeg-avcodec/libavutil/macos_kperf.h new file mode 120000 index 0000000..3ac3ade --- /dev/null +++ b/libffmpeg-avcodec/libavutil/macos_kperf.h @@ -0,0 +1 @@ +../../upstream/libavutil/macos_kperf.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/macros.h b/libffmpeg-avcodec/libavutil/macros.h new file mode 120000 index 0000000..f1e5153 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/macros.h @@ -0,0 +1 @@ +../../upstream/libavutil/macros.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/mastering_display_metadata.c b/libffmpeg-avcodec/libavutil/mastering_display_metadata.c new file mode 120000 index 0000000..1026439 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/mastering_display_metadata.c @@ -0,0 +1 @@ +../../upstream/libavutil/mastering_display_metadata.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/mastering_display_metadata.h b/libffmpeg-avcodec/libavutil/mastering_display_metadata.h new file mode 120000 index 0000000..a1bfeb0 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/mastering_display_metadata.h @@ -0,0 +1 @@ +../../upstream/libavutil/mastering_display_metadata.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/mathematics.c b/libffmpeg-avcodec/libavutil/mathematics.c new file mode 120000 index 0000000..f25229f --- /dev/null +++ b/libffmpeg-avcodec/libavutil/mathematics.c @@ -0,0 +1 @@ +../../upstream/libavutil/mathematics.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/mathematics.h b/libffmpeg-avcodec/libavutil/mathematics.h new file mode 120000 index 0000000..5613790 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/mathematics.h @@ -0,0 +1 @@ +../../upstream/libavutil/mathematics.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/md5.c b/libffmpeg-avcodec/libavutil/md5.c new file mode 120000 index 0000000..9c28af9 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/md5.c @@ -0,0 +1 @@ +../../upstream/libavutil/md5.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/md5.h b/libffmpeg-avcodec/libavutil/md5.h new file mode 120000 index 0000000..c15580a --- /dev/null +++ b/libffmpeg-avcodec/libavutil/md5.h @@ -0,0 +1 @@ +../../upstream/libavutil/md5.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/mem.c b/libffmpeg-avcodec/libavutil/mem.c new file mode 120000 index 0000000..486151c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/mem.c @@ -0,0 +1 @@ +../../upstream/libavutil/mem.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/mem.h b/libffmpeg-avcodec/libavutil/mem.h new file mode 120000 index 0000000..7819e1f --- /dev/null +++ b/libffmpeg-avcodec/libavutil/mem.h @@ -0,0 +1 @@ +../../upstream/libavutil/mem.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/mem_internal.h b/libffmpeg-avcodec/libavutil/mem_internal.h new file mode 120000 index 0000000..439ebb2 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/mem_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/mem_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/motion_vector.h b/libffmpeg-avcodec/libavutil/motion_vector.h new file mode 120000 index 0000000..5515c69 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/motion_vector.h @@ -0,0 +1 @@ +../../upstream/libavutil/motion_vector.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/murmur3.c b/libffmpeg-avcodec/libavutil/murmur3.c new file mode 120000 index 0000000..e4244ca --- /dev/null +++ b/libffmpeg-avcodec/libavutil/murmur3.c @@ -0,0 +1 @@ +../../upstream/libavutil/murmur3.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/murmur3.h b/libffmpeg-avcodec/libavutil/murmur3.h new file mode 120000 index 0000000..c9dbf68 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/murmur3.h @@ -0,0 +1 @@ +../../upstream/libavutil/murmur3.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/objc.h b/libffmpeg-avcodec/libavutil/objc.h new file mode 120000 index 0000000..8f69cc4 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/objc.h @@ -0,0 +1 @@ +../../upstream/libavutil/objc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/opt.c b/libffmpeg-avcodec/libavutil/opt.c new file mode 120000 index 0000000..ee7914c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/opt.c @@ -0,0 +1 @@ +../../upstream/libavutil/opt.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/opt.h b/libffmpeg-avcodec/libavutil/opt.h new file mode 120000 index 0000000..85d4f88 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/opt.h @@ -0,0 +1 @@ +../../upstream/libavutil/opt.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/parseutils.c b/libffmpeg-avcodec/libavutil/parseutils.c new file mode 120000 index 0000000..9a7b537 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/parseutils.c @@ -0,0 +1 @@ +../../upstream/libavutil/parseutils.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/parseutils.h b/libffmpeg-avcodec/libavutil/parseutils.h new file mode 120000 index 0000000..8c46c0a --- /dev/null +++ b/libffmpeg-avcodec/libavutil/parseutils.h @@ -0,0 +1 @@ +../../upstream/libavutil/parseutils.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/pca.h b/libffmpeg-avcodec/libavutil/pca.h new file mode 120000 index 0000000..adf3da5 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/pca.h @@ -0,0 +1 @@ +../../upstream/libavutil/pca.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/pixdesc.c b/libffmpeg-avcodec/libavutil/pixdesc.c new file mode 120000 index 0000000..a509066 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/pixdesc.c @@ -0,0 +1 @@ +../../upstream/libavutil/pixdesc.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/pixdesc.h b/libffmpeg-avcodec/libavutil/pixdesc.h new file mode 120000 index 0000000..5f06691 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/pixdesc.h @@ -0,0 +1 @@ +../../upstream/libavutil/pixdesc.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/pixelutils.c b/libffmpeg-avcodec/libavutil/pixelutils.c new file mode 120000 index 0000000..c1bfeff --- /dev/null +++ b/libffmpeg-avcodec/libavutil/pixelutils.c @@ -0,0 +1 @@ +../../upstream/libavutil/pixelutils.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/pixelutils.h b/libffmpeg-avcodec/libavutil/pixelutils.h new file mode 120000 index 0000000..b9daca1 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/pixelutils.h @@ -0,0 +1 @@ +../../upstream/libavutil/pixelutils.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/pixfmt.h b/libffmpeg-avcodec/libavutil/pixfmt.h new file mode 120000 index 0000000..66634df --- /dev/null +++ b/libffmpeg-avcodec/libavutil/pixfmt.h @@ -0,0 +1 @@ +../../upstream/libavutil/pixfmt.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/qsort.h b/libffmpeg-avcodec/libavutil/qsort.h new file mode 120000 index 0000000..f18c78e --- /dev/null +++ b/libffmpeg-avcodec/libavutil/qsort.h @@ -0,0 +1 @@ +../../upstream/libavutil/qsort.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/random_seed.c b/libffmpeg-avcodec/libavutil/random_seed.c new file mode 120000 index 0000000..31eb27d --- /dev/null +++ b/libffmpeg-avcodec/libavutil/random_seed.c @@ -0,0 +1 @@ +../../upstream/libavutil/random_seed.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/random_seed.h b/libffmpeg-avcodec/libavutil/random_seed.h new file mode 120000 index 0000000..f521e1d --- /dev/null +++ b/libffmpeg-avcodec/libavutil/random_seed.h @@ -0,0 +1 @@ +../../upstream/libavutil/random_seed.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/rational.c b/libffmpeg-avcodec/libavutil/rational.c new file mode 120000 index 0000000..a77a2a4 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/rational.c @@ -0,0 +1 @@ +../../upstream/libavutil/rational.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/rational.h b/libffmpeg-avcodec/libavutil/rational.h new file mode 120000 index 0000000..b9e3019 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/rational.h @@ -0,0 +1 @@ +../../upstream/libavutil/rational.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/rc4.c b/libffmpeg-avcodec/libavutil/rc4.c new file mode 120000 index 0000000..6a17325 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/rc4.c @@ -0,0 +1 @@ +../../upstream/libavutil/rc4.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/rc4.h b/libffmpeg-avcodec/libavutil/rc4.h new file mode 120000 index 0000000..22fd589 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/rc4.h @@ -0,0 +1 @@ +../../upstream/libavutil/rc4.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/replaygain.h b/libffmpeg-avcodec/libavutil/replaygain.h new file mode 120000 index 0000000..f065536 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/replaygain.h @@ -0,0 +1 @@ +../../upstream/libavutil/replaygain.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/reverse.c b/libffmpeg-avcodec/libavutil/reverse.c new file mode 120000 index 0000000..3a4a302 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/reverse.c @@ -0,0 +1 @@ +../../upstream/libavutil/reverse.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/reverse.h b/libffmpeg-avcodec/libavutil/reverse.h new file mode 120000 index 0000000..46729cc --- /dev/null +++ b/libffmpeg-avcodec/libavutil/reverse.h @@ -0,0 +1 @@ +../../upstream/libavutil/reverse.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/ripemd.c b/libffmpeg-avcodec/libavutil/ripemd.c new file mode 120000 index 0000000..abff1ba --- /dev/null +++ b/libffmpeg-avcodec/libavutil/ripemd.c @@ -0,0 +1 @@ +../../upstream/libavutil/ripemd.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/ripemd.h b/libffmpeg-avcodec/libavutil/ripemd.h new file mode 120000 index 0000000..98d8999 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/ripemd.h @@ -0,0 +1 @@ +../../upstream/libavutil/ripemd.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/samplefmt.c b/libffmpeg-avcodec/libavutil/samplefmt.c new file mode 120000 index 0000000..d7f6be7 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/samplefmt.c @@ -0,0 +1 @@ +../../upstream/libavutil/samplefmt.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/samplefmt.h b/libffmpeg-avcodec/libavutil/samplefmt.h new file mode 120000 index 0000000..e527ea7 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/samplefmt.h @@ -0,0 +1 @@ +../../upstream/libavutil/samplefmt.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/sfc64.h b/libffmpeg-avcodec/libavutil/sfc64.h new file mode 120000 index 0000000..71b86d7 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/sfc64.h @@ -0,0 +1 @@ +../../upstream/libavutil/sfc64.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/sha.c b/libffmpeg-avcodec/libavutil/sha.c new file mode 120000 index 0000000..921209a --- /dev/null +++ b/libffmpeg-avcodec/libavutil/sha.c @@ -0,0 +1 @@ +../../upstream/libavutil/sha.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/sha.h b/libffmpeg-avcodec/libavutil/sha.h new file mode 120000 index 0000000..d372e65 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/sha.h @@ -0,0 +1 @@ +../../upstream/libavutil/sha.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/sha512.c b/libffmpeg-avcodec/libavutil/sha512.c new file mode 120000 index 0000000..1b4b35f --- /dev/null +++ b/libffmpeg-avcodec/libavutil/sha512.c @@ -0,0 +1 @@ +../../upstream/libavutil/sha512.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/sha512.h b/libffmpeg-avcodec/libavutil/sha512.h new file mode 120000 index 0000000..d3e230c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/sha512.h @@ -0,0 +1 @@ +../../upstream/libavutil/sha512.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/slicethread.c b/libffmpeg-avcodec/libavutil/slicethread.c new file mode 120000 index 0000000..d2e0614 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/slicethread.c @@ -0,0 +1 @@ +../../upstream/libavutil/slicethread.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/slicethread.h b/libffmpeg-avcodec/libavutil/slicethread.h new file mode 120000 index 0000000..664ac90 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/slicethread.h @@ -0,0 +1 @@ +../../upstream/libavutil/slicethread.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/softfloat.h b/libffmpeg-avcodec/libavutil/softfloat.h new file mode 120000 index 0000000..bd0e545 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/softfloat.h @@ -0,0 +1 @@ +../../upstream/libavutil/softfloat.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/softfloat_ieee754.h b/libffmpeg-avcodec/libavutil/softfloat_ieee754.h new file mode 120000 index 0000000..67f1d7b --- /dev/null +++ b/libffmpeg-avcodec/libavutil/softfloat_ieee754.h @@ -0,0 +1 @@ +../../upstream/libavutil/softfloat_ieee754.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/softfloat_tables.h b/libffmpeg-avcodec/libavutil/softfloat_tables.h new file mode 120000 index 0000000..6f7e9e2 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/softfloat_tables.h @@ -0,0 +1 @@ +../../upstream/libavutil/softfloat_tables.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/spherical.c b/libffmpeg-avcodec/libavutil/spherical.c new file mode 120000 index 0000000..7008f43 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/spherical.c @@ -0,0 +1 @@ +../../upstream/libavutil/spherical.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/spherical.h b/libffmpeg-avcodec/libavutil/spherical.h new file mode 120000 index 0000000..21c8551 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/spherical.h @@ -0,0 +1 @@ +../../upstream/libavutil/spherical.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/stereo3d.c b/libffmpeg-avcodec/libavutil/stereo3d.c new file mode 120000 index 0000000..f63e537 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/stereo3d.c @@ -0,0 +1 @@ +../../upstream/libavutil/stereo3d.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/stereo3d.h b/libffmpeg-avcodec/libavutil/stereo3d.h new file mode 120000 index 0000000..5fee85a --- /dev/null +++ b/libffmpeg-avcodec/libavutil/stereo3d.h @@ -0,0 +1 @@ +../../upstream/libavutil/stereo3d.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/tablegen.h b/libffmpeg-avcodec/libavutil/tablegen.h new file mode 120000 index 0000000..08e6f3f --- /dev/null +++ b/libffmpeg-avcodec/libavutil/tablegen.h @@ -0,0 +1 @@ +../../upstream/libavutil/tablegen.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/tea.c b/libffmpeg-avcodec/libavutil/tea.c new file mode 120000 index 0000000..88511f9 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/tea.c @@ -0,0 +1 @@ +../../upstream/libavutil/tea.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/tea.h b/libffmpeg-avcodec/libavutil/tea.h new file mode 120000 index 0000000..a06c357 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/tea.h @@ -0,0 +1 @@ +../../upstream/libavutil/tea.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/thread.h b/libffmpeg-avcodec/libavutil/thread.h new file mode 120000 index 0000000..7970ea2 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/thread.h @@ -0,0 +1 @@ +../../upstream/libavutil/thread.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/threadmessage.c b/libffmpeg-avcodec/libavutil/threadmessage.c new file mode 120000 index 0000000..6371ffa --- /dev/null +++ b/libffmpeg-avcodec/libavutil/threadmessage.c @@ -0,0 +1 @@ +../../upstream/libavutil/threadmessage.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/threadmessage.h b/libffmpeg-avcodec/libavutil/threadmessage.h new file mode 120000 index 0000000..df1833c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/threadmessage.h @@ -0,0 +1 @@ +../../upstream/libavutil/threadmessage.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/time.c b/libffmpeg-avcodec/libavutil/time.c new file mode 120000 index 0000000..cf5005d --- /dev/null +++ b/libffmpeg-avcodec/libavutil/time.c @@ -0,0 +1 @@ +../../upstream/libavutil/time.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/time.h b/libffmpeg-avcodec/libavutil/time.h new file mode 120000 index 0000000..8054463 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/time.h @@ -0,0 +1 @@ +../../upstream/libavutil/time.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/time_internal.h b/libffmpeg-avcodec/libavutil/time_internal.h new file mode 120000 index 0000000..e7ecd9f --- /dev/null +++ b/libffmpeg-avcodec/libavutil/time_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/time_internal.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/timecode.c b/libffmpeg-avcodec/libavutil/timecode.c new file mode 120000 index 0000000..edd536c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/timecode.c @@ -0,0 +1 @@ +../../upstream/libavutil/timecode.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/timecode.h b/libffmpeg-avcodec/libavutil/timecode.h new file mode 120000 index 0000000..9098108 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/timecode.h @@ -0,0 +1 @@ +../../upstream/libavutil/timecode.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/timer.h b/libffmpeg-avcodec/libavutil/timer.h new file mode 120000 index 0000000..b796e01 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/timer.h @@ -0,0 +1 @@ +../../upstream/libavutil/timer.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/timestamp.c b/libffmpeg-avcodec/libavutil/timestamp.c new file mode 120000 index 0000000..48626a5 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/timestamp.c @@ -0,0 +1 @@ +../../upstream/libavutil/timestamp.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/timestamp.h b/libffmpeg-avcodec/libavutil/timestamp.h new file mode 120000 index 0000000..ca2038a --- /dev/null +++ b/libffmpeg-avcodec/libavutil/timestamp.h @@ -0,0 +1 @@ +../../upstream/libavutil/timestamp.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/tree.c b/libffmpeg-avcodec/libavutil/tree.c new file mode 120000 index 0000000..3da2a6f --- /dev/null +++ b/libffmpeg-avcodec/libavutil/tree.c @@ -0,0 +1 @@ +../../upstream/libavutil/tree.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/tree.h b/libffmpeg-avcodec/libavutil/tree.h new file mode 120000 index 0000000..c404d97 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/tree.h @@ -0,0 +1 @@ +../../upstream/libavutil/tree.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/twofish.c b/libffmpeg-avcodec/libavutil/twofish.c new file mode 120000 index 0000000..28bb57b --- /dev/null +++ b/libffmpeg-avcodec/libavutil/twofish.c @@ -0,0 +1 @@ +../../upstream/libavutil/twofish.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/twofish.h b/libffmpeg-avcodec/libavutil/twofish.h new file mode 120000 index 0000000..cfcd9e7 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/twofish.h @@ -0,0 +1 @@ +../../upstream/libavutil/twofish.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/tx.c b/libffmpeg-avcodec/libavutil/tx.c new file mode 120000 index 0000000..9e281c9 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/tx.c @@ -0,0 +1 @@ +../../upstream/libavutil/tx.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/tx.h b/libffmpeg-avcodec/libavutil/tx.h new file mode 120000 index 0000000..a415960 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/tx.h @@ -0,0 +1 @@ +../../upstream/libavutil/tx.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/tx_double.c b/libffmpeg-avcodec/libavutil/tx_double.c new file mode 120000 index 0000000..583d548 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/tx_double.c @@ -0,0 +1 @@ +../../upstream/libavutil/tx_double.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/tx_float.c b/libffmpeg-avcodec/libavutil/tx_float.c new file mode 120000 index 0000000..4293bf5 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/tx_float.c @@ -0,0 +1 @@ +../../upstream/libavutil/tx_float.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/tx_int32.c b/libffmpeg-avcodec/libavutil/tx_int32.c new file mode 120000 index 0000000..b8ee315 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/tx_int32.c @@ -0,0 +1 @@ +../../upstream/libavutil/tx_int32.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/tx_priv.h b/libffmpeg-avcodec/libavutil/tx_priv.h new file mode 120000 index 0000000..541df38 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/tx_priv.h @@ -0,0 +1 @@ +../../upstream/libavutil/tx_priv.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/tx_template.c b/libffmpeg-avcodec/libavutil/tx_template.c new file mode 120000 index 0000000..3804da7 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/tx_template.c @@ -0,0 +1 @@ +../../upstream/libavutil/tx_template.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/utils.c b/libffmpeg-avcodec/libavutil/utils.c new file mode 120000 index 0000000..13d7637 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/utils.c @@ -0,0 +1 @@ +../../upstream/libavutil/utils.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/uuid.c b/libffmpeg-avcodec/libavutil/uuid.c new file mode 120000 index 0000000..90ab2ce --- /dev/null +++ b/libffmpeg-avcodec/libavutil/uuid.c @@ -0,0 +1 @@ +../../upstream/libavutil/uuid.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/uuid.h b/libffmpeg-avcodec/libavutil/uuid.h new file mode 120000 index 0000000..012a52d --- /dev/null +++ b/libffmpeg-avcodec/libavutil/uuid.h @@ -0,0 +1 @@ +../../upstream/libavutil/uuid.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/version.c b/libffmpeg-avcodec/libavutil/version.c new file mode 120000 index 0000000..7a57c38 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/version.c @@ -0,0 +1 @@ +../../upstream/libavutil/version.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/version.h b/libffmpeg-avcodec/libavutil/version.h new file mode 120000 index 0000000..311b383 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/version.h @@ -0,0 +1 @@ +../../upstream/libavutil/version.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/version_major.h b/libffmpeg-avcodec/libavutil/version_major.h new file mode 120000 index 0000000..2f89277 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/version_major.h @@ -0,0 +1 @@ +../../upstream/libavutil/version_major.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/video_enc_params.c b/libffmpeg-avcodec/libavutil/video_enc_params.c new file mode 120000 index 0000000..d05efe8 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/video_enc_params.c @@ -0,0 +1 @@ +../../upstream/libavutil/video_enc_params.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/video_enc_params.h b/libffmpeg-avcodec/libavutil/video_enc_params.h new file mode 120000 index 0000000..904a943 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/video_enc_params.h @@ -0,0 +1 @@ +../../upstream/libavutil/video_enc_params.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/video_hint.c b/libffmpeg-avcodec/libavutil/video_hint.c new file mode 120000 index 0000000..5b149f0 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/video_hint.c @@ -0,0 +1 @@ +../../upstream/libavutil/video_hint.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/video_hint.h b/libffmpeg-avcodec/libavutil/video_hint.h new file mode 120000 index 0000000..a4c4e7a --- /dev/null +++ b/libffmpeg-avcodec/libavutil/video_hint.h @@ -0,0 +1 @@ +../../upstream/libavutil/video_hint.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/vulkan.h b/libffmpeg-avcodec/libavutil/vulkan.h new file mode 120000 index 0000000..b7e3314 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/vulkan.h @@ -0,0 +1 @@ +../../upstream/libavutil/vulkan.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/vulkan_functions.h b/libffmpeg-avcodec/libavutil/vulkan_functions.h new file mode 120000 index 0000000..244f5bd --- /dev/null +++ b/libffmpeg-avcodec/libavutil/vulkan_functions.h @@ -0,0 +1 @@ +../../upstream/libavutil/vulkan_functions.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/vulkan_loader.h b/libffmpeg-avcodec/libavutil/vulkan_loader.h new file mode 120000 index 0000000..a940c0b --- /dev/null +++ b/libffmpeg-avcodec/libavutil/vulkan_loader.h @@ -0,0 +1 @@ +../../upstream/libavutil/vulkan_loader.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/wchar_filename.h b/libffmpeg-avcodec/libavutil/wchar_filename.h new file mode 120000 index 0000000..c2add70 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/wchar_filename.h @@ -0,0 +1 @@ +../../upstream/libavutil/wchar_filename.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/x86 b/libffmpeg-avcodec/libavutil/x86 new file mode 120000 index 0000000..18dcdf5 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/x86 @@ -0,0 +1 @@ +../../upstream/libavutil/x86 \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/xga_font_data.c b/libffmpeg-avcodec/libavutil/xga_font_data.c new file mode 120000 index 0000000..294a037 --- /dev/null +++ b/libffmpeg-avcodec/libavutil/xga_font_data.c @@ -0,0 +1 @@ +../../upstream/libavutil/xga_font_data.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/xga_font_data.h b/libffmpeg-avcodec/libavutil/xga_font_data.h new file mode 120000 index 0000000..a3c876c --- /dev/null +++ b/libffmpeg-avcodec/libavutil/xga_font_data.h @@ -0,0 +1 @@ +../../upstream/libavutil/xga_font_data.h \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/xtea.c b/libffmpeg-avcodec/libavutil/xtea.c new file mode 120000 index 0000000..418582f --- /dev/null +++ b/libffmpeg-avcodec/libavutil/xtea.c @@ -0,0 +1 @@ +../../upstream/libavutil/xtea.c \ No newline at end of file diff --git a/libffmpeg-avcodec/libavutil/xtea.h b/libffmpeg-avcodec/libavutil/xtea.h new file mode 120000 index 0000000..070ddca --- /dev/null +++ b/libffmpeg-avcodec/libavutil/xtea.h @@ -0,0 +1 @@ +../../upstream/libavutil/xtea.h \ No newline at end of file diff --git a/libffmpeg-avcodec/sources b/libffmpeg-avcodec/sources new file mode 100644 index 0000000..b1b76b3 --- /dev/null +++ b/libffmpeg-avcodec/sources @@ -0,0 +1,1096 @@ +libavcodec/012v +libavcodec/4xm +libavcodec/8bps +libavcodec/8svx +libavcodec/a64multienc +libavcodec/aac_ac3_parser +libavcodec/aaccoder +libavcodec/aacenc +libavcodec/aacenc_is +libavcodec/aacenc_ltp +libavcodec/aacenc_pred +libavcodec/aacenctab +libavcodec/aacenc_tns +libavcodec/aac_parser +libavcodec/aacps +libavcodec/aacps_common +libavcodec/aacpsdata +libavcodec/aacpsdsp_fixed +libavcodec/aacpsdsp_float +libavcodec/aacpsdsp_template +libavcodec/aacps_fixed +libavcodec/aacps_fixed_tablegen +libavcodec/aacps_float +libavcodec/aacps_tablegen +libavcodec/aacps_tablegen_template +libavcodec/aacpsy +libavcodec/aacsbr +libavcodec/aacsbr_fixed +libavcodec/aacsbr_template +libavcodec/aactab +libavcodec/aandcttab +libavcodec/aasc +libavcodec/ac3 +libavcodec/ac3_channel_layout_tab +libavcodec/ac3dec +libavcodec/ac3dec_data +libavcodec/ac3dec_fixed +libavcodec/ac3dec_float +libavcodec/ac3dsp +libavcodec/ac3enc +libavcodec/ac3enc_fixed +libavcodec/ac3enc_float +libavcodec/ac3enc_template +libavcodec/ac3_parser +libavcodec/ac3tab +libavcodec/acelp_filters +libavcodec/acelp_pitch_delay +libavcodec/acelp_vectors +libavcodec/adpcm +libavcodec/adpcm_data +libavcodec/adpcmenc +libavcodec/adts_header +libavcodec/adts_parser +libavcodec/adx +libavcodec/adxdec +libavcodec/adxenc +libavcodec/adx_parser +libavcodec/agm +libavcodec/aic +libavcodec/alac +libavcodec/alac_data +libavcodec/alacdsp +libavcodec/alacenc +libavcodec/aliaspixdec +libavcodec/aliaspixenc +libavcodec/allcodecs +libavcodec/alsdec +libavcodec/amfenc_av1 +libavcodec/amfenc +libavcodec/amfenc_h264 +libavcodec/amfenc_hevc +libavcodec/amrnbdec +libavcodec/amr_parser +libavcodec/amrwbdec +libavcodec/anm +libavcodec/ansi +libavcodec/aom_film_grain +libavcodec/aom_film_grain_template +libavcodec/apac +libavcodec/apedec +libavcodec/aptx +libavcodec/aptxdec +libavcodec/aptxenc +libavcodec/arbc +libavcodec/argo +libavcodec/ass +libavcodec/assdec +libavcodec/assenc +libavcodec/ass_split +libavcodec/asv +libavcodec/asvdec +libavcodec/asvenc +libavcodec/atrac1 +libavcodec/atrac3 +libavcodec/atrac3plus +libavcodec/atrac3plusdec +libavcodec/atrac3plusdsp +libavcodec/atrac9dec +libavcodec/atrac +libavcodec/atsc_a53 +libavcodec/audiodsp +libavcodec/audio_frame_queue +libavcodec/audiotoolboxdec +libavcodec/audiotoolboxenc +libavcodec/aura +libavcodec/av1dec +libavcodec/av1_levels +libavcodec/av1_parse +libavcodec/av1_parser +libavcodec/avcodec +libavcodec/avdct +libavcodec/avfft +libavcodec/avrndec +libavcodec/avs2 +libavcodec/avs2_parser +libavcodec/avs3_parser +libavcodec/avs +libavcodec/avuidec +libavcodec/avuienc +libavcodec/bethsoftvideo +libavcodec/bfi +libavcodec/bgmc +libavcodec/binkaudio +libavcodec/bink +libavcodec/binkdsp +libavcodec/bintext +libavcodec/bit_depth_template +libavcodec/bitpacked_dec +libavcodec/bitpacked_enc +libavcodec/bitstream +libavcodec/bitstream_filters +libavcodec/blockdsp +libavcodec/bmp +libavcodec/bmpenc +libavcodec/bmp_parser +libavcodec/bmvaudio +libavcodec/bmvvideo +libavcodec/bonk +libavcodec/brenderpix +libavcodec/bsf +libavcodec/bswapdsp +libavcodec/c93 +libavcodec/cabac +libavcodec/canopus +libavcodec/cavs +libavcodec/cavsdata +libavcodec/cavsdec +libavcodec/cavsdsp +libavcodec/cavs_parser +libavcodec/cbrt_data +libavcodec/cbrt_data_fixed +libavcodec/cbrt_fixed_tablegen +libavcodec/cbrt_tablegen +libavcodec/cbrt_tablegen_template +libavcodec/cbs_av1 +libavcodec/cbs_av1_syntax_template +libavcodec/cbs_bsf +libavcodec/cbs +libavcodec/cbs_h2645 +libavcodec/cbs_h264_syntax_template +libavcodec/cbs_h265_syntax_template +libavcodec/cbs_h266_syntax_template +libavcodec/cbs_jpeg +libavcodec/cbs_jpeg_syntax_template +libavcodec/cbs_mpeg2 +libavcodec/cbs_mpeg2_syntax_template +libavcodec/cbs_sei +libavcodec/cbs_sei_syntax_template +libavcodec/cbs_vp8 +libavcodec/cbs_vp8_syntax_template +libavcodec/cbs_vp9 +libavcodec/cbs_vp9_syntax_template +libavcodec/ccaption_dec +libavcodec/cdgraphics +libavcodec/cdtoons +libavcodec/cdxl +libavcodec/celp_filters +libavcodec/celp_math +libavcodec/cfhd +libavcodec/cfhddata +libavcodec/cfhddsp +libavcodec/cfhdenc +libavcodec/cfhdencdsp +libavcodec/cga_data +libavcodec/cinepak +libavcodec/cinepakenc +libavcodec/clearvideo +libavcodec/cljrdec +libavcodec/cljrenc +libavcodec/cllc +libavcodec/cngdec +libavcodec/cngenc +libavcodec/codec_desc +libavcodec/codec_par +libavcodec/cook +libavcodec/cook_parser +libavcodec/cpia +libavcodec/cri +libavcodec/cri_parser +libavcodec/cscd +libavcodec/cuviddec +libavcodec/cyuv +libavcodec/d3d11va +libavcodec/d3d12va_av1 +libavcodec/d3d12va_decode +libavcodec/d3d12va_h264 +libavcodec/d3d12va_hevc +libavcodec/d3d12va_mpeg2 +libavcodec/d3d12va_vc1 +libavcodec/d3d12va_vp9 +libavcodec/dcaadpcm +libavcodec/dca +libavcodec/dca_core +libavcodec/dcadata +libavcodec/dcadct +libavcodec/dcadec +libavcodec/dcadsp +libavcodec/dcaenc +libavcodec/dca_exss +libavcodec/dcahuff +libavcodec/dca_lbr +libavcodec/dca_parser +libavcodec/dca_sample_rate_tab +libavcodec/dca_xll +libavcodec/dct32_fixed +libavcodec/dct32_float +libavcodec/dct32_template +libavcodec/dctref +libavcodec/dds +libavcodec/decode +libavcodec/dfa +libavcodec/dfpwmdec +libavcodec/dfpwmenc +libavcodec/dirac_arith +libavcodec/dirac +libavcodec/diracdec +libavcodec/diracdsp +libavcodec/dirac_dwt +libavcodec/dirac_dwt_template +libavcodec/dirac_parser +libavcodec/diractab +libavcodec/dirac_vlc +libavcodec/dnxhddata +libavcodec/dnxhddec +libavcodec/dnxhdenc +libavcodec/dnxhd_parser +libavcodec/dolby_e +libavcodec/dolby_e_parse +libavcodec/dolby_e_parser +libavcodec/dovi_rpu +libavcodec/dovi_rpudec +libavcodec/dovi_rpuenc +libavcodec/dpcm +libavcodec/dpx +libavcodec/dpxenc +libavcodec/dpx_parser +libavcodec/dsd +libavcodec/dsddec +libavcodec/dsicinaudio +libavcodec/dsicinvideo +libavcodec/dss_sp +libavcodec/dstdec +libavcodec/dvaudiodec +libavcodec/dvaudio_parser +libavcodec/dvbsubdec +libavcodec/dvbsubenc +libavcodec/dvbsub_parser +libavcodec/dv +libavcodec/dvdata +libavcodec/dvdec +libavcodec/dvd_nav_parser +libavcodec/dvdsub +libavcodec/dvdsubdec +libavcodec/dvdsubenc +libavcodec/dvdsub_parser +libavcodec/dvenc +libavcodec/dv_profile +libavcodec/dv_tablegen +libavcodec/dxa +libavcodec/dxtory +libavcodec/dxva2_av1 +libavcodec/dxva2 +libavcodec/dxva2_h264 +libavcodec/dxva2_hevc +libavcodec/dxva2_mpeg2 +libavcodec/dxva2_vc1 +libavcodec/dxva2_vp9 +libavcodec/dxv +libavcodec/dxvenc +libavcodec/dynamic_hdr_vivid +libavcodec/eac3_data +libavcodec/eac3dec +libavcodec/eac3enc +libavcodec/eacmv +libavcodec/eaidct +libavcodec/eamad +libavcodec/eatgq +libavcodec/eatgv +libavcodec/eatqi +libavcodec/elbg +libavcodec/elsdec +libavcodec/encode +libavcodec/error_resilience +libavcodec/escape124 +libavcodec/escape130 +libavcodec/evc_parse +libavcodec/evc_parser +libavcodec/evc_ps +libavcodec/evrcdec +libavcodec/exif +libavcodec/exr +libavcodec/exrdsp +libavcodec/exrenc +libavcodec/faandct +libavcodec/faanidct +libavcodec/fastaudio +libavcodec/faxcompr +libavcodec/fdctdsp +libavcodec/ffjni +libavcodec/fflcms2 +libavcodec/ffv1 +libavcodec/ffv1dec +libavcodec/ffv1dec_template +libavcodec/ffv1enc +libavcodec/ffv1enc_template +libavcodec/ffv1_template +libavcodec/ffwavesynth +libavcodec/fic +libavcodec/file_open +libavcodec/fits +libavcodec/fitsdec +libavcodec/fitsenc +libavcodec/flac +libavcodec/flacdata +libavcodec/flacdec +libavcodec/flacdsp +libavcodec/flacdsp_lpc_template +libavcodec/flacdsp_template +libavcodec/flacenc +libavcodec/flacencdsp +libavcodec/flac_parser +libavcodec/flashsv2enc +libavcodec/flashsv +libavcodec/flashsvenc +libavcodec/flicvideo +libavcodec/float2half +libavcodec/flvdec +libavcodec/flvenc +libavcodec/fmtconvert +libavcodec/fmvc +libavcodec/frame_thread_encoder +libavcodec/fraps +libavcodec/frwu +libavcodec/ftr +libavcodec/ftr_parser +libavcodec/g2meet +libavcodec/g722 +libavcodec/g722dec +libavcodec/g722dsp +libavcodec/g722enc +libavcodec/g723_1 +libavcodec/g723_1dec +libavcodec/g723_1enc +libavcodec/g723_1_parser +libavcodec/g726 +libavcodec/g729dec +libavcodec/g729_parser +libavcodec/g729postfilter +libavcodec/gdv +libavcodec/gemdec +libavcodec/get_buffer +libavcodec/gif +libavcodec/gifdec +libavcodec/gif_parser +libavcodec/golomb +libavcodec/gsmdec +libavcodec/gsmdec_data +libavcodec/gsmdec_template +libavcodec/gsm_parser +libavcodec/h261 +libavcodec/h261data +libavcodec/h261dec +libavcodec/h261enc +libavcodec/h261_parser +libavcodec/h263 +libavcodec/h263data +libavcodec/h263dec +libavcodec/h263dsp +libavcodec/h263_parser +libavcodec/h2645data +libavcodec/h2645_parse +libavcodec/h2645_sei +libavcodec/h2645_vui +libavcodec/h264addpx_template +libavcodec/h264_cabac +libavcodec/h264_cavlc +libavcodec/h264chroma +libavcodec/h264chroma_template +libavcodec/h264data +libavcodec/h264dec +libavcodec/h264_direct +libavcodec/h264dsp +libavcodec/h264dsp_template +libavcodec/h264idct +libavcodec/h264idct_template +libavcodec/h264_levels +libavcodec/h264_loopfilter +libavcodec/h264_mb +libavcodec/h264_mb_template +libavcodec/h264_mc_template +libavcodec/h264_parse +libavcodec/h264_parser +libavcodec/h264_picture +libavcodec/h264pred +libavcodec/h264pred_template +libavcodec/h264_ps +libavcodec/h264qpel +libavcodec/h264qpel_template +libavcodec/h264_refs +libavcodec/h264_sei +libavcodec/h264_slice +libavcodec/h265_profile_level +libavcodec/h274 +libavcodec/half2float +libavcodec/hap +libavcodec/hapdec +libavcodec/hapenc +libavcodec/hcadec +libavcodec/hcom +libavcodec/hdrdec +libavcodec/hdrenc +libavcodec/hdr_parser +libavcodec/hnm4video +libavcodec/hpeldsp +libavcodec/hpel_template +libavcodec/hq_hqa +libavcodec/hq_hqadsp +libavcodec/hqx +libavcodec/hqxdsp +libavcodec/hqxvlc +libavcodec/htmlsubtitles +libavcodec/huffman +libavcodec/huffyuv +libavcodec/huffyuvdec +libavcodec/huffyuvdsp +libavcodec/huffyuvenc +libavcodec/huffyuvencdsp +libavcodec/idcinvideo +libavcodec/idctdsp +libavcodec/iff +libavcodec/iirfilter +libavcodec/ilbcdec +libavcodec/imc +libavcodec/imgconvert +libavcodec/imm4 +libavcodec/imm5 +libavcodec/imx +libavcodec/indeo2 +libavcodec/indeo3 +libavcodec/indeo4 +libavcodec/indeo5 +libavcodec/intelh263dec +libavcodec/interplayacm +libavcodec/interplayvideo +libavcodec/intrax8 +libavcodec/intrax8dsp +libavcodec/ipu_parser +libavcodec/ituh263dec +libavcodec/ituh263enc +libavcodec/ivi +libavcodec/ivi_dsp +libavcodec/j2kenc +libavcodec/jacosubdec +libavcodec/jfdctfst +libavcodec/jfdctint +libavcodec/jfdctint_template +libavcodec/jni +libavcodec/jpeg2000 +libavcodec/jpeg2000dec +libavcodec/jpeg2000dsp +libavcodec/jpeg2000dwt +libavcodec/jpeg2000htdec +libavcodec/jpeg2000_parser +libavcodec/jpegls +libavcodec/jpeglsdec +libavcodec/jpeglsenc +libavcodec/jpegquanttables +libavcodec/jpegtables +libavcodec/jpegxl_parse +libavcodec/jpegxl_parser +libavcodec/jrevdct +libavcodec/jvdec +libavcodec/kbdwin +libavcodec/kgv1dec +libavcodec/kmvc +libavcodec/lagarith +libavcodec/lagarithrac +libavcodec/latm_parser +libavcodec/lcldec +libavcodec/lclenc +libavcodec/leaddec +libavcodec/libaom +libavcodec/libaomdec +libavcodec/libaomenc +libavcodec/libaribb24 +libavcodec/libaribcaption +libavcodec/libcelt_dec +libavcodec/libcodec2 +libavcodec/libdav1d +libavcodec/libdavs2 +libavcodec/libfdk-aacdec +libavcodec/libfdk-aacenc +libavcodec/libgsmdec +libavcodec/libgsmenc +libavcodec/libilbc +libavcodec/libjxl +libavcodec/libjxldec +libavcodec/libjxlenc +libavcodec/libkvazaar +libavcodec/liblc3dec +libavcodec/liblc3enc +libavcodec/libmp3lame +libavcodec/libopencore-amr +libavcodec/libopenh264 +libavcodec/libopenh264dec +libavcodec/libopenh264enc +libavcodec/libopenjpegenc +libavcodec/libopus +libavcodec/libopusdec +libavcodec/libopusenc +libavcodec/librav1e +libavcodec/librsvgdec +libavcodec/libshine +libavcodec/libspeexdec +libavcodec/libspeexenc +libavcodec/libsvtav1 +libavcodec/libtheoraenc +libavcodec/libtwolame +libavcodec/libuavs3d +libavcodec/libvo-amrwbenc +libavcodec/libvorbisdec +libavcodec/libvorbisenc +libavcodec/libvpxdec +libavcodec/libvpxenc +libavcodec/libwebpenc_animencoder +libavcodec/libwebpenc +libavcodec/libwebpenc_common +libavcodec/libx264 +libavcodec/libx265 +libavcodec/libxavs2 +libavcodec/libxavs +libavcodec/libxevd +libavcodec/libxeve +libavcodec/libxvid +libavcodec/libzvbi-teletextdec +libavcodec/ljpegenc +libavcodec/loco +libavcodec/log2_tab +libavcodec/lossless_audiodsp +libavcodec/lossless_videodsp +libavcodec/lossless_videoencdsp +libavcodec/lpc +libavcodec/lscrdec +libavcodec/lsp +libavcodec/lzf +libavcodec/lzw +libavcodec/lzwenc +libavcodec/m101 +libavcodec/mace +libavcodec/magicyuv +libavcodec/magicyuvenc +libavcodec/mathtables +libavcodec/mdec +libavcodec/me_cmp +libavcodec/mediacodec +libavcodec/mediacodecdec +libavcodec/mediacodecdec_common +libavcodec/mediacodecenc +libavcodec/mediacodec_surface +libavcodec/mediacodec_sw_buffer +libavcodec/mediacodec_wrapper +libavcodec/metasound +libavcodec/mfenc +libavcodec/mf_utils +libavcodec/microdvddec +libavcodec/midivid +libavcodec/mimic +libavcodec/misc4 +libavcodec/misc4_parser +libavcodec/mjpegbdec +libavcodec/mjpegdec +libavcodec/mjpegdec_common +libavcodec/mjpegenc +libavcodec/mjpegenc_common +libavcodec/mjpegenc_huffman +libavcodec/mjpeg_parser +libavcodec/mlp +libavcodec/mlpdec +libavcodec/mlpdsp +libavcodec/mlpenc +libavcodec/mlp_parse +libavcodec/mlp_parser +libavcodec/mlz +libavcodec/mmaldec +libavcodec/mmvideo +libavcodec/mobiclip +libavcodec/motion_est +libavcodec/motion_est_template +libavcodec/motionpixels +libavcodec/motionpixels_tablegen +libavcodec/movtextdec +libavcodec/movtextenc +libavcodec/mpc7 +libavcodec/mpc8 +libavcodec/mpc +libavcodec/mpeg12 +libavcodec/mpeg12data +libavcodec/mpeg12dec +libavcodec/mpeg12enc +libavcodec/mpeg12framerate +libavcodec/mpeg4audio +libavcodec/mpeg4audio_sample_rates +libavcodec/mpeg4video +libavcodec/mpeg4videodec +libavcodec/mpeg4videodsp +libavcodec/mpeg4videoenc +libavcodec/mpeg4video_parser +libavcodec/mpegaudio +libavcodec/mpegaudiodata +libavcodec/mpegaudiodec_common +libavcodec/mpegaudiodec_common_tablegen +libavcodec/mpegaudiodec_fixed +libavcodec/mpegaudiodec_float +libavcodec/mpegaudiodecheader +libavcodec/mpegaudiodec_template +libavcodec/mpegaudiodsp +libavcodec/mpegaudiodsp_data +libavcodec/mpegaudiodsp_fixed +libavcodec/mpegaudiodsp_float +libavcodec/mpegaudiodsp_template +libavcodec/mpegaudioenc_fixed +libavcodec/mpegaudioenc_float +libavcodec/mpegaudioenc_template +libavcodec/mpegaudio_parser +libavcodec/mpegaudio_tablegen +libavcodec/mpegaudiotabs +libavcodec/mpeg_er +libavcodec/mpegpicture +libavcodec/mpegutils +libavcodec/mpegvideo +libavcodec/mpegvideodata +libavcodec/mpegvideo_dec +libavcodec/mpegvideo_enc +libavcodec/mpegvideoencdsp +libavcodec/mpegvideo_motion +libavcodec/mpegvideo_parser +libavcodec/mpl2dec +libavcodec/mpv_reconstruct_mb_template +libavcodec/mqc +libavcodec/mqcdec +libavcodec/mqcenc +libavcodec/mscc +libavcodec/msgsmdec +libavcodec/msmpeg4 +libavcodec/msmpeg4data +libavcodec/msmpeg4dec +libavcodec/msmpeg4enc +libavcodec/msmpeg4_vc1_data +libavcodec/msp2dec +libavcodec/msrle +libavcodec/msrledec +libavcodec/msrleenc +libavcodec/mss12 +libavcodec/mss1 +libavcodec/mss2 +libavcodec/mss2dsp +libavcodec/mss34dsp +libavcodec/mss3 +libavcodec/mss4 +libavcodec/msvideo1 +libavcodec/msvideo1enc +libavcodec/mv30 +libavcodec/mvcdec +libavcodec/mvha +libavcodec/mwsc +libavcodec/mxpegdec +libavcodec/nellymoser +libavcodec/nellymoserdec +libavcodec/nellymoserenc +libavcodec/notchlc +libavcodec/null +libavcodec/nuv +libavcodec/nvdec_av1 +libavcodec/nvdec +libavcodec/nvdec_h264 +libavcodec/nvdec_hevc +libavcodec/nvdec_mjpeg +libavcodec/nvdec_mpeg12 +libavcodec/nvdec_mpeg4 +libavcodec/nvdec_vc1 +libavcodec/nvdec_vp8 +libavcodec/nvdec_vp9 +libavcodec/nvenc_av1 +libavcodec/nvenc +libavcodec/nvenc_h264 +libavcodec/nvenc_hevc +libavcodec/omx +libavcodec/on2avc +libavcodec/on2avcdata +libavcodec/options +libavcodec/opus_celt +libavcodec/opusdec +libavcodec/opusdec_celt +libavcodec/opusdsp +libavcodec/opusenc +libavcodec/opusenc_psy +libavcodec/opus_parse +libavcodec/opus_parser +libavcodec/opus_pvq +libavcodec/opus_rc +libavcodec/opus_silk +libavcodec/opustab +libavcodec/osq +libavcodec/packet +libavcodec/pafaudio +libavcodec/pafvideo +libavcodec/pamenc +libavcodec/parser +libavcodec/parsers +libavcodec/pcm-bluray +libavcodec/pcm-blurayenc +libavcodec/pcm +libavcodec/pcm-dvd +libavcodec/pcm-dvdenc +libavcodec/pcm_tablegen +libavcodec/pcx +libavcodec/pcxenc +libavcodec/pdvdec +libavcodec/pel_template +libavcodec/pgssubdec +libavcodec/pgxdec +libavcodec/photocd +libavcodec/pictordec +libavcodec/pixblockdsp +libavcodec/pixlet +libavcodec/png +libavcodec/pngdec +libavcodec/pngdsp +libavcodec/pngenc +libavcodec/png_parser +libavcodec/pnm +libavcodec/pnmdec +libavcodec/pnmenc +libavcodec/pnm_parser +libavcodec/profiles +libavcodec/proresdata +libavcodec/proresdec +libavcodec/proresdsp +libavcodec/proresenc_anatoliy +libavcodec/proresenc_kostya +libavcodec/prosumer +libavcodec/psd +libavcodec/psymodel +libavcodec/pthread +libavcodec/pthread_frame +libavcodec/pthread_slice +libavcodec/ptx +libavcodec/qcelpdec +libavcodec/qdm2 +libavcodec/qdm2_tablegen +libavcodec/qdmc +libavcodec/qdrw +libavcodec/qoadec +libavcodec/qoidec +libavcodec/qoienc +libavcodec/qoi_parser +libavcodec/qpeg +libavcodec/qpeldsp +libavcodec/qpel_template +libavcodec/qsv_api +libavcodec/qsv +libavcodec/qsvdec +libavcodec/qsvenc_av1 +libavcodec/qsvenc +libavcodec/qsvenc_h264 +libavcodec/qsvenc_hevc +libavcodec/qsvenc_jpeg +libavcodec/qsvenc_mpeg2 +libavcodec/qsvenc_vp9 +libavcodec/qtrle +libavcodec/qtrleenc +libavcodec/r210dec +libavcodec/r210enc +libavcodec/ra144 +libavcodec/ra144dec +libavcodec/ra144enc +libavcodec/ra288 +libavcodec/ralf +libavcodec/rangecoder +libavcodec/rasc +libavcodec/ratecontrol +libavcodec/raw +libavcodec/rawdec +libavcodec/rawenc +libavcodec/realtextdec +libavcodec/refstruct +libavcodec/reverse +libavcodec/rka +libavcodec/rkmppdec +libavcodec/rl2 +libavcodec/rl +libavcodec/rle +libavcodec/roqaudioenc +libavcodec/roqvideo +libavcodec/roqvideodec +libavcodec/roqvideoenc +libavcodec/rpza +libavcodec/rpzaenc +libavcodec/rscc +libavcodec/rtjpeg +libavcodec/rtv1 +libavcodec/rv10 +libavcodec/rv10enc +libavcodec/rv20enc +libavcodec/rv30 +libavcodec/rv30dsp +libavcodec/rv34 +libavcodec/rv34dsp +libavcodec/rv34_parser +libavcodec/rv40 +libavcodec/rv40dsp +libavcodec/s302m +libavcodec/s302menc +libavcodec/samidec +libavcodec/sanm +libavcodec/sbc +libavcodec/sbcdec +libavcodec/sbcdec_data +libavcodec/sbcdsp +libavcodec/sbcdsp_data +libavcodec/sbcenc +libavcodec/sbc_parser +libavcodec/sbrdsp +libavcodec/sbrdsp_fixed +libavcodec/sbrdsp_template +libavcodec/scpr3 +libavcodec/scpr +libavcodec/screenpresso +libavcodec/sga +libavcodec/sgidec +libavcodec/sgienc +libavcodec/sgirledec +libavcodec/sheervideo +libavcodec/shorten +libavcodec/simple_idct +libavcodec/simple_idct_template +libavcodec/sinewin +libavcodec/sinewin_fixed_tablegen +libavcodec/sinewin_tablegen +libavcodec/sipr16k +libavcodec/sipr +libavcodec/sipr_parser +libavcodec/siren +libavcodec/smacker +libavcodec/smc +libavcodec/smcenc +libavcodec/snappy +libavcodec/snow +libavcodec/snowdec +libavcodec/snow_dwt +libavcodec/snowenc +libavcodec/sonic +libavcodec/sp5xdec +libavcodec/speedhq +libavcodec/speedhqdec +libavcodec/speedhqenc +libavcodec/speexdec +libavcodec/srtdec +libavcodec/srtenc +libavcodec/startcode +libavcodec/subviewerdec +libavcodec/sunrast +libavcodec/sunrastenc +libavcodec/svq1 +libavcodec/svq1dec +libavcodec/svq1enc +libavcodec/svq3 +libavcodec/synth_filter +libavcodec/tak +libavcodec/takdec +libavcodec/takdsp +libavcodec/tak_parser +libavcodec/targa +libavcodec/targaenc +libavcodec/targa_y216dec +libavcodec/tdsc +libavcodec/textdec +libavcodec/texturedsp +libavcodec/texturedspenc +libavcodec/texturedsp_template +libavcodec/threadprogress +libavcodec/tiertexseqv +libavcodec/tiff +libavcodec/tiff_common +libavcodec/tiffenc +libavcodec/tmv +libavcodec/to_upper4 +libavcodec/tpeldsp +libavcodec/truemotion1 +libavcodec/truemotion2 +libavcodec/truemotion2rt +libavcodec/truespeech +libavcodec/tscc2 +libavcodec/tscc +libavcodec/tta +libavcodec/ttadata +libavcodec/ttadsp +libavcodec/ttaenc +libavcodec/ttaencdsp +libavcodec/ttmlenc +libavcodec/twinvq +libavcodec/twinvqdec +libavcodec/txd +libavcodec/ulti +libavcodec/utils +libavcodec/utvideodec +libavcodec/utvideodsp +libavcodec/utvideoenc +libavcodec/v210dec +libavcodec/v210enc +libavcodec/v210_template +libavcodec/v210x +libavcodec/v308dec +libavcodec/v308enc +libavcodec/v408dec +libavcodec/v408enc +libavcodec/v410dec +libavcodec/v410enc +libavcodec/v4l2_buffers +libavcodec/v4l2_context +libavcodec/v4l2_fmt +libavcodec/v4l2_m2m +libavcodec/v4l2_m2m_dec +libavcodec/v4l2_m2m_enc +libavcodec/vaapi_av1 +libavcodec/vaapi_decode +libavcodec/vaapi_encode_av1 +libavcodec/vaapi_encode +libavcodec/vaapi_encode_h264 +libavcodec/vaapi_encode_h265 +libavcodec/vaapi_encode_mjpeg +libavcodec/vaapi_encode_mpeg2 +libavcodec/vaapi_encode_vp8 +libavcodec/vaapi_encode_vp9 +libavcodec/vaapi_h264 +libavcodec/vaapi_hevc +libavcodec/vaapi_mjpeg +libavcodec/vaapi_mpeg2 +libavcodec/vaapi_mpeg4 +libavcodec/vaapi_vc1 +libavcodec/vaapi_vp8 +libavcodec/vaapi_vp9 +libavcodec/vb +libavcodec/vble +libavcodec/vbndec +libavcodec/vbnenc +libavcodec/vc1_block +libavcodec/vc1 +libavcodec/vc1data +libavcodec/vc1dec +libavcodec/vc1dsp +libavcodec/vc1_loopfilter +libavcodec/vc1_mc +libavcodec/vc1_parser +libavcodec/vc1_pred +libavcodec/vc2enc +libavcodec/vc2enc_dwt +libavcodec/vcr1 +libavcodec/vdpau_av1 +libavcodec/vdpau +libavcodec/vdpau_h264 +libavcodec/vdpau_hevc +libavcodec/vdpau_mpeg12 +libavcodec/vdpau_mpeg4 +libavcodec/vdpau_vc1 +libavcodec/vdpau_vp9 +libavcodec/version +libavcodec/videodsp +libavcodec/videodsp_template +libavcodec/videotoolbox +libavcodec/videotoolboxenc +libavcodec/videotoolbox_vp9 +libavcodec/vima +libavcodec/vlc +libavcodec/vmdaudio +libavcodec/vmdvideo +libavcodec/vmixdec +libavcodec/vmnc +libavcodec/vorbis +libavcodec/vorbis_data +libavcodec/vorbisdec +libavcodec/vorbisdsp +libavcodec/vorbisenc +libavcodec/vorbis_parser +libavcodec/vp3 +libavcodec/vp3dsp +libavcodec/vp3_parser +libavcodec/vp56 +libavcodec/vp56data +libavcodec/vp56dsp +libavcodec/vp5 +libavcodec/vp6 +libavcodec/vp6dsp +libavcodec/vp8 +libavcodec/vp8data +libavcodec/vp8dsp +libavcodec/vp8_parser +libavcodec/vp9block +libavcodec/vp9 +libavcodec/vp9data +libavcodec/vp9dsp_10bpp +libavcodec/vp9dsp_12bpp +libavcodec/vp9dsp_8bpp +libavcodec/vp9dsp +libavcodec/vp9dsp_template +libavcodec/vp9lpf +libavcodec/vp9_mc_template +libavcodec/vp9mvs +libavcodec/vp9_parser +libavcodec/vp9prob +libavcodec/vp9recon +libavcodec/vpx_rac +libavcodec/vqavideo +libavcodec/vqcdec +libavcodec/vulkan_av1 +libavcodec/vulkan +libavcodec/vulkan_decode +libavcodec/vulkan_h264 +libavcodec/vulkan_hevc +libavcodec/vulkan_video +libavcodec/vvc_parser +libavcodec/wavarc +libavcodec/wavpack +libavcodec/wavpackdata +libavcodec/wavpackenc +libavcodec/wbmpdec +libavcodec/wbmpenc +libavcodec/wcmv +libavcodec/webp +libavcodec/webp_parser +libavcodec/webvttdec +libavcodec/webvttenc +libavcodec/wma +libavcodec/wma_common +libavcodec/wmadec +libavcodec/wmaenc +libavcodec/wma_freqs +libavcodec/wmalosslessdec +libavcodec/wmaprodec +libavcodec/wmavoice +libavcodec/wmv2 +libavcodec/wmv2data +libavcodec/wmv2dec +libavcodec/wmv2dsp +libavcodec/wmv2enc +libavcodec/wnv1 +libavcodec/wrapped_avframe +libavcodec/ws-snd1 +libavcodec/xan +libavcodec/xbmdec +libavcodec/xbmenc +libavcodec/xbm_parser +libavcodec/xface +libavcodec/xfacedec +libavcodec/xfaceenc +libavcodec/xiph +libavcodec/xl +libavcodec/xma_parser +libavcodec/xpmdec +libavcodec/xsubdec +libavcodec/xsubenc +libavcodec/xvididct +libavcodec/xwddec +libavcodec/xwdenc +libavcodec/xwd_parser +libavcodec/xxan +libavcodec/y41pdec +libavcodec/y41penc +libavcodec/ylc +libavcodec/yop +libavcodec/yuv4dec +libavcodec/yuv4enc +libavcodec/zerocodec +libavcodec/zlib_wrapper +libavcodec/zmbv +libavcodec/zmbvenc diff --git a/libffmpeg-avcodec/sources2 b/libffmpeg-avcodec/sources2 new file mode 100644 index 0000000..161a86d --- /dev/null +++ b/libffmpeg-avcodec/sources2 @@ -0,0 +1,1096 @@ +libavcodec/012v \ +libavcodec/4xm \ +libavcodec/8bps \ +libavcodec/8svx \ +libavcodec/a64multienc \ +libavcodec/aac_ac3_parser \ +libavcodec/aaccoder \ +libavcodec/aacenc \ +libavcodec/aacenc_is \ +libavcodec/aacenc_ltp \ +libavcodec/aacenc_pred \ +libavcodec/aacenctab \ +libavcodec/aacenc_tns \ +libavcodec/aac_parser \ +libavcodec/aacps \ +libavcodec/aacps_common \ +libavcodec/aacpsdata \ +libavcodec/aacpsdsp_fixed \ +libavcodec/aacpsdsp_float \ +libavcodec/aacpsdsp_template \ +libavcodec/aacps_fixed \ +libavcodec/aacps_fixed_tablegen \ +libavcodec/aacps_float \ +libavcodec/aacps_tablegen \ +libavcodec/aacps_tablegen_template \ +libavcodec/aacpsy \ +libavcodec/aacsbr \ +libavcodec/aacsbr_fixed \ +libavcodec/aacsbr_template \ +libavcodec/aactab \ +libavcodec/aandcttab \ +libavcodec/aasc \ +libavcodec/ac3 \ +libavcodec/ac3_channel_layout_tab \ +libavcodec/ac3dec \ +libavcodec/ac3dec_data \ +libavcodec/ac3dec_fixed \ +libavcodec/ac3dec_float \ +libavcodec/ac3dsp \ +libavcodec/ac3enc \ +libavcodec/ac3enc_fixed \ +libavcodec/ac3enc_float \ +libavcodec/ac3enc_template \ +libavcodec/ac3_parser \ +libavcodec/ac3tab \ +libavcodec/acelp_filters \ +libavcodec/acelp_pitch_delay \ +libavcodec/acelp_vectors \ +libavcodec/adpcm \ +libavcodec/adpcm_data \ +libavcodec/adpcmenc \ +libavcodec/adts_header \ +libavcodec/adts_parser \ +libavcodec/adx \ +libavcodec/adxdec \ +libavcodec/adxenc \ +libavcodec/adx_parser \ +libavcodec/agm \ +libavcodec/aic \ +libavcodec/alac \ +libavcodec/alac_data \ +libavcodec/alacdsp \ +libavcodec/alacenc \ +libavcodec/aliaspixdec \ +libavcodec/aliaspixenc \ +libavcodec/allcodecs \ +libavcodec/alsdec \ +libavcodec/amfenc_av1 \ +libavcodec/amfenc \ +libavcodec/amfenc_h264 \ +libavcodec/amfenc_hevc \ +libavcodec/amrnbdec \ +libavcodec/amr_parser \ +libavcodec/amrwbdec \ +libavcodec/anm \ +libavcodec/ansi \ +libavcodec/aom_film_grain \ +libavcodec/aom_film_grain_template \ +libavcodec/apac \ +libavcodec/apedec \ +libavcodec/aptx \ +libavcodec/aptxdec \ +libavcodec/aptxenc \ +libavcodec/arbc \ +libavcodec/argo \ +libavcodec/ass \ +libavcodec/assdec \ +libavcodec/assenc \ +libavcodec/ass_split \ +libavcodec/asv \ +libavcodec/asvdec \ +libavcodec/asvenc \ +libavcodec/atrac1 \ +libavcodec/atrac3 \ +libavcodec/atrac3plus \ +libavcodec/atrac3plusdec \ +libavcodec/atrac3plusdsp \ +libavcodec/atrac9dec \ +libavcodec/atrac \ +libavcodec/atsc_a53 \ +libavcodec/audiodsp \ +libavcodec/audio_frame_queue \ +libavcodec/audiotoolboxdec \ +libavcodec/audiotoolboxenc \ +libavcodec/aura \ +libavcodec/av1dec \ +libavcodec/av1_levels \ +libavcodec/av1_parse \ +libavcodec/av1_parser \ +libavcodec/avcodec \ +libavcodec/avdct \ +libavcodec/avfft \ +libavcodec/avrndec \ +libavcodec/avs2 \ +libavcodec/avs2_parser \ +libavcodec/avs3_parser \ +libavcodec/avs \ +libavcodec/avuidec \ +libavcodec/avuienc \ +libavcodec/bethsoftvideo \ +libavcodec/bfi \ +libavcodec/bgmc \ +libavcodec/binkaudio \ +libavcodec/bink \ +libavcodec/binkdsp \ +libavcodec/bintext \ +libavcodec/bit_depth_template \ +libavcodec/bitpacked_dec \ +libavcodec/bitpacked_enc \ +libavcodec/bitstream \ +libavcodec/bitstream_filters \ +libavcodec/blockdsp \ +libavcodec/bmp \ +libavcodec/bmpenc \ +libavcodec/bmp_parser \ +libavcodec/bmvaudio \ +libavcodec/bmvvideo \ +libavcodec/bonk \ +libavcodec/brenderpix \ +libavcodec/bsf \ +libavcodec/bswapdsp \ +libavcodec/c93 \ +libavcodec/cabac \ +libavcodec/canopus \ +libavcodec/cavs \ +libavcodec/cavsdata \ +libavcodec/cavsdec \ +libavcodec/cavsdsp \ +libavcodec/cavs_parser \ +libavcodec/cbrt_data \ +libavcodec/cbrt_data_fixed \ +libavcodec/cbrt_fixed_tablegen \ +libavcodec/cbrt_tablegen \ +libavcodec/cbrt_tablegen_template \ +libavcodec/cbs_av1 \ +libavcodec/cbs_av1_syntax_template \ +libavcodec/cbs_bsf \ +libavcodec/cbs \ +libavcodec/cbs_h2645 \ +libavcodec/cbs_h264_syntax_template \ +libavcodec/cbs_h265_syntax_template \ +libavcodec/cbs_h266_syntax_template \ +libavcodec/cbs_jpeg \ +libavcodec/cbs_jpeg_syntax_template \ +libavcodec/cbs_mpeg2 \ +libavcodec/cbs_mpeg2_syntax_template \ +libavcodec/cbs_sei \ +libavcodec/cbs_sei_syntax_template \ +libavcodec/cbs_vp8 \ +libavcodec/cbs_vp8_syntax_template \ +libavcodec/cbs_vp9 \ +libavcodec/cbs_vp9_syntax_template \ +libavcodec/ccaption_dec \ +libavcodec/cdgraphics \ +libavcodec/cdtoons \ +libavcodec/cdxl \ +libavcodec/celp_filters \ +libavcodec/celp_math \ +libavcodec/cfhd \ +libavcodec/cfhddata \ +libavcodec/cfhddsp \ +libavcodec/cfhdenc \ +libavcodec/cfhdencdsp \ +libavcodec/cga_data \ +libavcodec/cinepak \ +libavcodec/cinepakenc \ +libavcodec/clearvideo \ +libavcodec/cljrdec \ +libavcodec/cljrenc \ +libavcodec/cllc \ +libavcodec/cngdec \ +libavcodec/cngenc \ +libavcodec/codec_desc \ +libavcodec/codec_par \ +libavcodec/cook \ +libavcodec/cook_parser \ +libavcodec/cpia \ +libavcodec/cri \ +libavcodec/cri_parser \ +libavcodec/cscd \ +libavcodec/cuviddec \ +libavcodec/cyuv \ +libavcodec/d3d11va \ +libavcodec/d3d12va_av1 \ +libavcodec/d3d12va_decode \ +libavcodec/d3d12va_h264 \ +libavcodec/d3d12va_hevc \ +libavcodec/d3d12va_mpeg2 \ +libavcodec/d3d12va_vc1 \ +libavcodec/d3d12va_vp9 \ +libavcodec/dcaadpcm \ +libavcodec/dca \ +libavcodec/dca_core \ +libavcodec/dcadata \ +libavcodec/dcadct \ +libavcodec/dcadec \ +libavcodec/dcadsp \ +libavcodec/dcaenc \ +libavcodec/dca_exss \ +libavcodec/dcahuff \ +libavcodec/dca_lbr \ +libavcodec/dca_parser \ +libavcodec/dca_sample_rate_tab \ +libavcodec/dca_xll \ +libavcodec/dct32_fixed \ +libavcodec/dct32_float \ +libavcodec/dct32_template \ +libavcodec/dctref \ +libavcodec/dds \ +libavcodec/decode \ +libavcodec/dfa \ +libavcodec/dfpwmdec \ +libavcodec/dfpwmenc \ +libavcodec/dirac_arith \ +libavcodec/dirac \ +libavcodec/diracdec \ +libavcodec/diracdsp \ +libavcodec/dirac_dwt \ +libavcodec/dirac_dwt_template \ +libavcodec/dirac_parser \ +libavcodec/diractab \ +libavcodec/dirac_vlc \ +libavcodec/dnxhddata \ +libavcodec/dnxhddec \ +libavcodec/dnxhdenc \ +libavcodec/dnxhd_parser \ +libavcodec/dolby_e \ +libavcodec/dolby_e_parse \ +libavcodec/dolby_e_parser \ +libavcodec/dovi_rpu \ +libavcodec/dovi_rpudec \ +libavcodec/dovi_rpuenc \ +libavcodec/dpcm \ +libavcodec/dpx \ +libavcodec/dpxenc \ +libavcodec/dpx_parser \ +libavcodec/dsd \ +libavcodec/dsddec \ +libavcodec/dsicinaudio \ +libavcodec/dsicinvideo \ +libavcodec/dss_sp \ +libavcodec/dstdec \ +libavcodec/dvaudiodec \ +libavcodec/dvaudio_parser \ +libavcodec/dvbsubdec \ +libavcodec/dvbsubenc \ +libavcodec/dvbsub_parser \ +libavcodec/dv \ +libavcodec/dvdata \ +libavcodec/dvdec \ +libavcodec/dvd_nav_parser \ +libavcodec/dvdsub \ +libavcodec/dvdsubdec \ +libavcodec/dvdsubenc \ +libavcodec/dvdsub_parser \ +libavcodec/dvenc \ +libavcodec/dv_profile \ +libavcodec/dv_tablegen \ +libavcodec/dxa \ +libavcodec/dxtory \ +libavcodec/dxva2_av1 \ +libavcodec/dxva2 \ +libavcodec/dxva2_h264 \ +libavcodec/dxva2_hevc \ +libavcodec/dxva2_mpeg2 \ +libavcodec/dxva2_vc1 \ +libavcodec/dxva2_vp9 \ +libavcodec/dxv \ +libavcodec/dxvenc \ +libavcodec/dynamic_hdr_vivid \ +libavcodec/eac3_data \ +libavcodec/eac3dec \ +libavcodec/eac3enc \ +libavcodec/eacmv \ +libavcodec/eaidct \ +libavcodec/eamad \ +libavcodec/eatgq \ +libavcodec/eatgv \ +libavcodec/eatqi \ +libavcodec/elbg \ +libavcodec/elsdec \ +libavcodec/encode \ +libavcodec/error_resilience \ +libavcodec/escape124 \ +libavcodec/escape130 \ +libavcodec/evc_parse \ +libavcodec/evc_parser \ +libavcodec/evc_ps \ +libavcodec/evrcdec \ +libavcodec/exif \ +libavcodec/exr \ +libavcodec/exrdsp \ +libavcodec/exrenc \ +libavcodec/faandct \ +libavcodec/faanidct \ +libavcodec/fastaudio \ +libavcodec/faxcompr \ +libavcodec/fdctdsp \ +libavcodec/ffjni \ +libavcodec/fflcms2 \ +libavcodec/ffv1 \ +libavcodec/ffv1dec \ +libavcodec/ffv1dec_template \ +libavcodec/ffv1enc \ +libavcodec/ffv1enc_template \ +libavcodec/ffv1_template \ +libavcodec/ffwavesynth \ +libavcodec/fic \ +libavcodec/file_open \ +libavcodec/fits \ +libavcodec/fitsdec \ +libavcodec/fitsenc \ +libavcodec/flac \ +libavcodec/flacdata \ +libavcodec/flacdec \ +libavcodec/flacdsp \ +libavcodec/flacdsp_lpc_template \ +libavcodec/flacdsp_template \ +libavcodec/flacenc \ +libavcodec/flacencdsp \ +libavcodec/flac_parser \ +libavcodec/flashsv2enc \ +libavcodec/flashsv \ +libavcodec/flashsvenc \ +libavcodec/flicvideo \ +libavcodec/float2half \ +libavcodec/flvdec \ +libavcodec/flvenc \ +libavcodec/fmtconvert \ +libavcodec/fmvc \ +libavcodec/frame_thread_encoder \ +libavcodec/fraps \ +libavcodec/frwu \ +libavcodec/ftr \ +libavcodec/ftr_parser \ +libavcodec/g2meet \ +libavcodec/g722 \ +libavcodec/g722dec \ +libavcodec/g722dsp \ +libavcodec/g722enc \ +libavcodec/g723_1 \ +libavcodec/g723_1dec \ +libavcodec/g723_1enc \ +libavcodec/g723_1_parser \ +libavcodec/g726 \ +libavcodec/g729dec \ +libavcodec/g729_parser \ +libavcodec/g729postfilter \ +libavcodec/gdv \ +libavcodec/gemdec \ +libavcodec/get_buffer \ +libavcodec/gif \ +libavcodec/gifdec \ +libavcodec/gif_parser \ +libavcodec/golomb \ +libavcodec/gsmdec \ +libavcodec/gsmdec_data \ +libavcodec/gsmdec_template \ +libavcodec/gsm_parser \ +libavcodec/h261 \ +libavcodec/h261data \ +libavcodec/h261dec \ +libavcodec/h261enc \ +libavcodec/h261_parser \ +libavcodec/h263 \ +libavcodec/h263data \ +libavcodec/h263dec \ +libavcodec/h263dsp \ +libavcodec/h263_parser \ +libavcodec/h2645data \ +libavcodec/h2645_parse \ +libavcodec/h2645_sei \ +libavcodec/h2645_vui \ +libavcodec/h264addpx_template \ +libavcodec/h264_cabac \ +libavcodec/h264_cavlc \ +libavcodec/h264chroma \ +libavcodec/h264chroma_template \ +libavcodec/h264data \ +libavcodec/h264dec \ +libavcodec/h264_direct \ +libavcodec/h264dsp \ +libavcodec/h264dsp_template \ +libavcodec/h264idct \ +libavcodec/h264idct_template \ +libavcodec/h264_levels \ +libavcodec/h264_loopfilter \ +libavcodec/h264_mb \ +libavcodec/h264_mb_template \ +libavcodec/h264_mc_template \ +libavcodec/h264_parse \ +libavcodec/h264_parser \ +libavcodec/h264_picture \ +libavcodec/h264pred \ +libavcodec/h264pred_template \ +libavcodec/h264_ps \ +libavcodec/h264qpel \ +libavcodec/h264qpel_template \ +libavcodec/h264_refs \ +libavcodec/h264_sei \ +libavcodec/h264_slice \ +libavcodec/h265_profile_level \ +libavcodec/h274 \ +libavcodec/half2float \ +libavcodec/hap \ +libavcodec/hapdec \ +libavcodec/hapenc \ +libavcodec/hcadec \ +libavcodec/hcom \ +libavcodec/hdrdec \ +libavcodec/hdrenc \ +libavcodec/hdr_parser \ +libavcodec/hnm4video \ +libavcodec/hpeldsp \ +libavcodec/hpel_template \ +libavcodec/hq_hqa \ +libavcodec/hq_hqadsp \ +libavcodec/hqx \ +libavcodec/hqxdsp \ +libavcodec/hqxvlc \ +libavcodec/htmlsubtitles \ +libavcodec/huffman \ +libavcodec/huffyuv \ +libavcodec/huffyuvdec \ +libavcodec/huffyuvdsp \ +libavcodec/huffyuvenc \ +libavcodec/huffyuvencdsp \ +libavcodec/idcinvideo \ +libavcodec/idctdsp \ +libavcodec/iff \ +libavcodec/iirfilter \ +libavcodec/ilbcdec \ +libavcodec/imc \ +libavcodec/imgconvert \ +libavcodec/imm4 \ +libavcodec/imm5 \ +libavcodec/imx \ +libavcodec/indeo2 \ +libavcodec/indeo3 \ +libavcodec/indeo4 \ +libavcodec/indeo5 \ +libavcodec/intelh263dec \ +libavcodec/interplayacm \ +libavcodec/interplayvideo \ +libavcodec/intrax8 \ +libavcodec/intrax8dsp \ +libavcodec/ipu_parser \ +libavcodec/ituh263dec \ +libavcodec/ituh263enc \ +libavcodec/ivi \ +libavcodec/ivi_dsp \ +libavcodec/j2kenc \ +libavcodec/jacosubdec \ +libavcodec/jfdctfst \ +libavcodec/jfdctint \ +libavcodec/jfdctint_template \ +libavcodec/jni \ +libavcodec/jpeg2000 \ +libavcodec/jpeg2000dec \ +libavcodec/jpeg2000dsp \ +libavcodec/jpeg2000dwt \ +libavcodec/jpeg2000htdec \ +libavcodec/jpeg2000_parser \ +libavcodec/jpegls \ +libavcodec/jpeglsdec \ +libavcodec/jpeglsenc \ +libavcodec/jpegquanttables \ +libavcodec/jpegtables \ +libavcodec/jpegxl_parse \ +libavcodec/jpegxl_parser \ +libavcodec/jrevdct \ +libavcodec/jvdec \ +libavcodec/kbdwin \ +libavcodec/kgv1dec \ +libavcodec/kmvc \ +libavcodec/lagarith \ +libavcodec/lagarithrac \ +libavcodec/latm_parser \ +libavcodec/lcldec \ +libavcodec/lclenc \ +libavcodec/leaddec \ +libavcodec/libaom \ +libavcodec/libaomdec \ +libavcodec/libaomenc \ +libavcodec/libaribb24 \ +libavcodec/libaribcaption \ +libavcodec/libcelt_dec \ +libavcodec/libcodec2 \ +libavcodec/libdav1d \ +libavcodec/libdavs2 \ +libavcodec/libfdk-aacdec \ +libavcodec/libfdk-aacenc \ +libavcodec/libgsmdec \ +libavcodec/libgsmenc \ +libavcodec/libilbc \ +libavcodec/libjxl \ +libavcodec/libjxldec \ +libavcodec/libjxlenc \ +libavcodec/libkvazaar \ +libavcodec/liblc3dec \ +libavcodec/liblc3enc \ +libavcodec/libmp3lame \ +libavcodec/libopencore-amr \ +libavcodec/libopenh264 \ +libavcodec/libopenh264dec \ +libavcodec/libopenh264enc \ +libavcodec/libopenjpegenc \ +libavcodec/libopus \ +libavcodec/libopusdec \ +libavcodec/libopusenc \ +libavcodec/librav1e \ +libavcodec/librsvgdec \ +libavcodec/libshine \ +libavcodec/libspeexdec \ +libavcodec/libspeexenc \ +libavcodec/libsvtav1 \ +libavcodec/libtheoraenc \ +libavcodec/libtwolame \ +libavcodec/libuavs3d \ +libavcodec/libvo-amrwbenc \ +libavcodec/libvorbisdec \ +libavcodec/libvorbisenc \ +libavcodec/libvpxdec \ +libavcodec/libvpxenc \ +libavcodec/libwebpenc_animencoder \ +libavcodec/libwebpenc \ +libavcodec/libwebpenc_common \ +libavcodec/libx264 \ +libavcodec/libx265 \ +libavcodec/libxavs2 \ +libavcodec/libxavs \ +libavcodec/libxevd \ +libavcodec/libxeve \ +libavcodec/libxvid \ +libavcodec/libzvbi-teletextdec \ +libavcodec/ljpegenc \ +libavcodec/loco \ +libavcodec/log2_tab \ +libavcodec/lossless_audiodsp \ +libavcodec/lossless_videodsp \ +libavcodec/lossless_videoencdsp \ +libavcodec/lpc \ +libavcodec/lscrdec \ +libavcodec/lsp \ +libavcodec/lzf \ +libavcodec/lzw \ +libavcodec/lzwenc \ +libavcodec/m101 \ +libavcodec/mace \ +libavcodec/magicyuv \ +libavcodec/magicyuvenc \ +libavcodec/mathtables \ +libavcodec/mdec \ +libavcodec/me_cmp \ +libavcodec/mediacodec \ +libavcodec/mediacodecdec \ +libavcodec/mediacodecdec_common \ +libavcodec/mediacodecenc \ +libavcodec/mediacodec_surface \ +libavcodec/mediacodec_sw_buffer \ +libavcodec/mediacodec_wrapper \ +libavcodec/metasound \ +libavcodec/mfenc \ +libavcodec/mf_utils \ +libavcodec/microdvddec \ +libavcodec/midivid \ +libavcodec/mimic \ +libavcodec/misc4 \ +libavcodec/misc4_parser \ +libavcodec/mjpegbdec \ +libavcodec/mjpegdec \ +libavcodec/mjpegdec_common \ +libavcodec/mjpegenc \ +libavcodec/mjpegenc_common \ +libavcodec/mjpegenc_huffman \ +libavcodec/mjpeg_parser \ +libavcodec/mlp \ +libavcodec/mlpdec \ +libavcodec/mlpdsp \ +libavcodec/mlpenc \ +libavcodec/mlp_parse \ +libavcodec/mlp_parser \ +libavcodec/mlz \ +libavcodec/mmaldec \ +libavcodec/mmvideo \ +libavcodec/mobiclip \ +libavcodec/motion_est \ +libavcodec/motion_est_template \ +libavcodec/motionpixels \ +libavcodec/motionpixels_tablegen \ +libavcodec/movtextdec \ +libavcodec/movtextenc \ +libavcodec/mpc7 \ +libavcodec/mpc8 \ +libavcodec/mpc \ +libavcodec/mpeg12 \ +libavcodec/mpeg12data \ +libavcodec/mpeg12dec \ +libavcodec/mpeg12enc \ +libavcodec/mpeg12framerate \ +libavcodec/mpeg4audio \ +libavcodec/mpeg4audio_sample_rates \ +libavcodec/mpeg4video \ +libavcodec/mpeg4videodec \ +libavcodec/mpeg4videodsp \ +libavcodec/mpeg4videoenc \ +libavcodec/mpeg4video_parser \ +libavcodec/mpegaudio \ +libavcodec/mpegaudiodata \ +libavcodec/mpegaudiodec_common \ +libavcodec/mpegaudiodec_common_tablegen \ +libavcodec/mpegaudiodec_fixed \ +libavcodec/mpegaudiodec_float \ +libavcodec/mpegaudiodecheader \ +libavcodec/mpegaudiodec_template \ +libavcodec/mpegaudiodsp \ +libavcodec/mpegaudiodsp_data \ +libavcodec/mpegaudiodsp_fixed \ +libavcodec/mpegaudiodsp_float \ +libavcodec/mpegaudiodsp_template \ +libavcodec/mpegaudioenc_fixed \ +libavcodec/mpegaudioenc_float \ +libavcodec/mpegaudioenc_template \ +libavcodec/mpegaudio_parser \ +libavcodec/mpegaudio_tablegen \ +libavcodec/mpegaudiotabs \ +libavcodec/mpeg_er \ +libavcodec/mpegpicture \ +libavcodec/mpegutils \ +libavcodec/mpegvideo \ +libavcodec/mpegvideodata \ +libavcodec/mpegvideo_dec \ +libavcodec/mpegvideo_enc \ +libavcodec/mpegvideoencdsp \ +libavcodec/mpegvideo_motion \ +libavcodec/mpegvideo_parser \ +libavcodec/mpl2dec \ +libavcodec/mpv_reconstruct_mb_template \ +libavcodec/mqc \ +libavcodec/mqcdec \ +libavcodec/mqcenc \ +libavcodec/mscc \ +libavcodec/msgsmdec \ +libavcodec/msmpeg4 \ +libavcodec/msmpeg4data \ +libavcodec/msmpeg4dec \ +libavcodec/msmpeg4enc \ +libavcodec/msmpeg4_vc1_data \ +libavcodec/msp2dec \ +libavcodec/msrle \ +libavcodec/msrledec \ +libavcodec/msrleenc \ +libavcodec/mss12 \ +libavcodec/mss1 \ +libavcodec/mss2 \ +libavcodec/mss2dsp \ +libavcodec/mss34dsp \ +libavcodec/mss3 \ +libavcodec/mss4 \ +libavcodec/msvideo1 \ +libavcodec/msvideo1enc \ +libavcodec/mv30 \ +libavcodec/mvcdec \ +libavcodec/mvha \ +libavcodec/mwsc \ +libavcodec/mxpegdec \ +libavcodec/nellymoser \ +libavcodec/nellymoserdec \ +libavcodec/nellymoserenc \ +libavcodec/notchlc \ +libavcodec/null \ +libavcodec/nuv \ +libavcodec/nvdec_av1 \ +libavcodec/nvdec \ +libavcodec/nvdec_h264 \ +libavcodec/nvdec_hevc \ +libavcodec/nvdec_mjpeg \ +libavcodec/nvdec_mpeg12 \ +libavcodec/nvdec_mpeg4 \ +libavcodec/nvdec_vc1 \ +libavcodec/nvdec_vp8 \ +libavcodec/nvdec_vp9 \ +libavcodec/nvenc_av1 \ +libavcodec/nvenc \ +libavcodec/nvenc_h264 \ +libavcodec/nvenc_hevc \ +libavcodec/omx \ +libavcodec/on2avc \ +libavcodec/on2avcdata \ +libavcodec/options \ +libavcodec/opus_celt \ +libavcodec/opusdec \ +libavcodec/opusdec_celt \ +libavcodec/opusdsp \ +libavcodec/opusenc \ +libavcodec/opusenc_psy \ +libavcodec/opus_parse \ +libavcodec/opus_parser \ +libavcodec/opus_pvq \ +libavcodec/opus_rc \ +libavcodec/opus_silk \ +libavcodec/opustab \ +libavcodec/osq \ +libavcodec/packet \ +libavcodec/pafaudio \ +libavcodec/pafvideo \ +libavcodec/pamenc \ +libavcodec/parser \ +libavcodec/parsers \ +libavcodec/pcm-bluray \ +libavcodec/pcm-blurayenc \ +libavcodec/pcm \ +libavcodec/pcm-dvd \ +libavcodec/pcm-dvdenc \ +libavcodec/pcm_tablegen \ +libavcodec/pcx \ +libavcodec/pcxenc \ +libavcodec/pdvdec \ +libavcodec/pel_template \ +libavcodec/pgssubdec \ +libavcodec/pgxdec \ +libavcodec/photocd \ +libavcodec/pictordec \ +libavcodec/pixblockdsp \ +libavcodec/pixlet \ +libavcodec/png \ +libavcodec/pngdec \ +libavcodec/pngdsp \ +libavcodec/pngenc \ +libavcodec/png_parser \ +libavcodec/pnm \ +libavcodec/pnmdec \ +libavcodec/pnmenc \ +libavcodec/pnm_parser \ +libavcodec/profiles \ +libavcodec/proresdata \ +libavcodec/proresdec \ +libavcodec/proresdsp \ +libavcodec/proresenc_anatoliy \ +libavcodec/proresenc_kostya \ +libavcodec/prosumer \ +libavcodec/psd \ +libavcodec/psymodel \ +libavcodec/pthread \ +libavcodec/pthread_frame \ +libavcodec/pthread_slice \ +libavcodec/ptx \ +libavcodec/qcelpdec \ +libavcodec/qdm2 \ +libavcodec/qdm2_tablegen \ +libavcodec/qdmc \ +libavcodec/qdrw \ +libavcodec/qoadec \ +libavcodec/qoidec \ +libavcodec/qoienc \ +libavcodec/qoi_parser \ +libavcodec/qpeg \ +libavcodec/qpeldsp \ +libavcodec/qpel_template \ +libavcodec/qsv_api \ +libavcodec/qsv \ +libavcodec/qsvdec \ +libavcodec/qsvenc_av1 \ +libavcodec/qsvenc \ +libavcodec/qsvenc_h264 \ +libavcodec/qsvenc_hevc \ +libavcodec/qsvenc_jpeg \ +libavcodec/qsvenc_mpeg2 \ +libavcodec/qsvenc_vp9 \ +libavcodec/qtrle \ +libavcodec/qtrleenc \ +libavcodec/r210dec \ +libavcodec/r210enc \ +libavcodec/ra144 \ +libavcodec/ra144dec \ +libavcodec/ra144enc \ +libavcodec/ra288 \ +libavcodec/ralf \ +libavcodec/rangecoder \ +libavcodec/rasc \ +libavcodec/ratecontrol \ +libavcodec/raw \ +libavcodec/rawdec \ +libavcodec/rawenc \ +libavcodec/realtextdec \ +libavcodec/refstruct \ +libavcodec/reverse \ +libavcodec/rka \ +libavcodec/rkmppdec \ +libavcodec/rl2 \ +libavcodec/rl \ +libavcodec/rle \ +libavcodec/roqaudioenc \ +libavcodec/roqvideo \ +libavcodec/roqvideodec \ +libavcodec/roqvideoenc \ +libavcodec/rpza \ +libavcodec/rpzaenc \ +libavcodec/rscc \ +libavcodec/rtjpeg \ +libavcodec/rtv1 \ +libavcodec/rv10 \ +libavcodec/rv10enc \ +libavcodec/rv20enc \ +libavcodec/rv30 \ +libavcodec/rv30dsp \ +libavcodec/rv34 \ +libavcodec/rv34dsp \ +libavcodec/rv34_parser \ +libavcodec/rv40 \ +libavcodec/rv40dsp \ +libavcodec/s302m \ +libavcodec/s302menc \ +libavcodec/samidec \ +libavcodec/sanm \ +libavcodec/sbc \ +libavcodec/sbcdec \ +libavcodec/sbcdec_data \ +libavcodec/sbcdsp \ +libavcodec/sbcdsp_data \ +libavcodec/sbcenc \ +libavcodec/sbc_parser \ +libavcodec/sbrdsp \ +libavcodec/sbrdsp_fixed \ +libavcodec/sbrdsp_template \ +libavcodec/scpr3 \ +libavcodec/scpr \ +libavcodec/screenpresso \ +libavcodec/sga \ +libavcodec/sgidec \ +libavcodec/sgienc \ +libavcodec/sgirledec \ +libavcodec/sheervideo \ +libavcodec/shorten \ +libavcodec/simple_idct \ +libavcodec/simple_idct_template \ +libavcodec/sinewin \ +libavcodec/sinewin_fixed_tablegen \ +libavcodec/sinewin_tablegen \ +libavcodec/sipr16k \ +libavcodec/sipr \ +libavcodec/sipr_parser \ +libavcodec/siren \ +libavcodec/smacker \ +libavcodec/smc \ +libavcodec/smcenc \ +libavcodec/snappy \ +libavcodec/snow \ +libavcodec/snowdec \ +libavcodec/snow_dwt \ +libavcodec/snowenc \ +libavcodec/sonic \ +libavcodec/sp5xdec \ +libavcodec/speedhq \ +libavcodec/speedhqdec \ +libavcodec/speedhqenc \ +libavcodec/speexdec \ +libavcodec/srtdec \ +libavcodec/srtenc \ +libavcodec/startcode \ +libavcodec/subviewerdec \ +libavcodec/sunrast \ +libavcodec/sunrastenc \ +libavcodec/svq1 \ +libavcodec/svq1dec \ +libavcodec/svq1enc \ +libavcodec/svq3 \ +libavcodec/synth_filter \ +libavcodec/tak \ +libavcodec/takdec \ +libavcodec/takdsp \ +libavcodec/tak_parser \ +libavcodec/targa \ +libavcodec/targaenc \ +libavcodec/targa_y216dec \ +libavcodec/tdsc \ +libavcodec/textdec \ +libavcodec/texturedsp \ +libavcodec/texturedspenc \ +libavcodec/texturedsp_template \ +libavcodec/threadprogress \ +libavcodec/tiertexseqv \ +libavcodec/tiff \ +libavcodec/tiff_common \ +libavcodec/tiffenc \ +libavcodec/tmv \ +libavcodec/to_upper4 \ +libavcodec/tpeldsp \ +libavcodec/truemotion1 \ +libavcodec/truemotion2 \ +libavcodec/truemotion2rt \ +libavcodec/truespeech \ +libavcodec/tscc2 \ +libavcodec/tscc \ +libavcodec/tta \ +libavcodec/ttadata \ +libavcodec/ttadsp \ +libavcodec/ttaenc \ +libavcodec/ttaencdsp \ +libavcodec/ttmlenc \ +libavcodec/twinvq \ +libavcodec/twinvqdec \ +libavcodec/txd \ +libavcodec/ulti \ +libavcodec/utils \ +libavcodec/utvideodec \ +libavcodec/utvideodsp \ +libavcodec/utvideoenc \ +libavcodec/v210dec \ +libavcodec/v210enc \ +libavcodec/v210_template \ +libavcodec/v210x \ +libavcodec/v308dec \ +libavcodec/v308enc \ +libavcodec/v408dec \ +libavcodec/v408enc \ +libavcodec/v410dec \ +libavcodec/v410enc \ +libavcodec/v4l2_buffers \ +libavcodec/v4l2_context \ +libavcodec/v4l2_fmt \ +libavcodec/v4l2_m2m \ +libavcodec/v4l2_m2m_dec \ +libavcodec/v4l2_m2m_enc \ +libavcodec/vaapi_av1 \ +libavcodec/vaapi_decode \ +libavcodec/vaapi_encode_av1 \ +libavcodec/vaapi_encode \ +libavcodec/vaapi_encode_h264 \ +libavcodec/vaapi_encode_h265 \ +libavcodec/vaapi_encode_mjpeg \ +libavcodec/vaapi_encode_mpeg2 \ +libavcodec/vaapi_encode_vp8 \ +libavcodec/vaapi_encode_vp9 \ +libavcodec/vaapi_h264 \ +libavcodec/vaapi_hevc \ +libavcodec/vaapi_mjpeg \ +libavcodec/vaapi_mpeg2 \ +libavcodec/vaapi_mpeg4 \ +libavcodec/vaapi_vc1 \ +libavcodec/vaapi_vp8 \ +libavcodec/vaapi_vp9 \ +libavcodec/vb \ +libavcodec/vble \ +libavcodec/vbndec \ +libavcodec/vbnenc \ +libavcodec/vc1_block \ +libavcodec/vc1 \ +libavcodec/vc1data \ +libavcodec/vc1dec \ +libavcodec/vc1dsp \ +libavcodec/vc1_loopfilter \ +libavcodec/vc1_mc \ +libavcodec/vc1_parser \ +libavcodec/vc1_pred \ +libavcodec/vc2enc \ +libavcodec/vc2enc_dwt \ +libavcodec/vcr1 \ +libavcodec/vdpau_av1 \ +libavcodec/vdpau \ +libavcodec/vdpau_h264 \ +libavcodec/vdpau_hevc \ +libavcodec/vdpau_mpeg12 \ +libavcodec/vdpau_mpeg4 \ +libavcodec/vdpau_vc1 \ +libavcodec/vdpau_vp9 \ +libavcodec/version \ +libavcodec/videodsp \ +libavcodec/videodsp_template \ +libavcodec/videotoolbox \ +libavcodec/videotoolboxenc \ +libavcodec/videotoolbox_vp9 \ +libavcodec/vima \ +libavcodec/vlc \ +libavcodec/vmdaudio \ +libavcodec/vmdvideo \ +libavcodec/vmixdec \ +libavcodec/vmnc \ +libavcodec/vorbis \ +libavcodec/vorbis_data \ +libavcodec/vorbisdec \ +libavcodec/vorbisdsp \ +libavcodec/vorbisenc \ +libavcodec/vorbis_parser \ +libavcodec/vp3 \ +libavcodec/vp3dsp \ +libavcodec/vp3_parser \ +libavcodec/vp56 \ +libavcodec/vp56data \ +libavcodec/vp56dsp \ +libavcodec/vp5 \ +libavcodec/vp6 \ +libavcodec/vp6dsp \ +libavcodec/vp8 \ +libavcodec/vp8data \ +libavcodec/vp8dsp \ +libavcodec/vp8_parser \ +libavcodec/vp9block \ +libavcodec/vp9 \ +libavcodec/vp9data \ +libavcodec/vp9dsp_10bpp \ +libavcodec/vp9dsp_12bpp \ +libavcodec/vp9dsp_8bpp \ +libavcodec/vp9dsp \ +libavcodec/vp9dsp_template \ +libavcodec/vp9lpf \ +libavcodec/vp9_mc_template \ +libavcodec/vp9mvs \ +libavcodec/vp9_parser \ +libavcodec/vp9prob \ +libavcodec/vp9recon \ +libavcodec/vpx_rac \ +libavcodec/vqavideo \ +libavcodec/vqcdec \ +libavcodec/vulkan_av1 \ +libavcodec/vulkan \ +libavcodec/vulkan_decode \ +libavcodec/vulkan_h264 \ +libavcodec/vulkan_hevc \ +libavcodec/vulkan_video \ +libavcodec/vvc_parser \ +libavcodec/wavarc \ +libavcodec/wavpack \ +libavcodec/wavpackdata \ +libavcodec/wavpackenc \ +libavcodec/wbmpdec \ +libavcodec/wbmpenc \ +libavcodec/wcmv \ +libavcodec/webp \ +libavcodec/webp_parser \ +libavcodec/webvttdec \ +libavcodec/webvttenc \ +libavcodec/wma \ +libavcodec/wma_common \ +libavcodec/wmadec \ +libavcodec/wmaenc \ +libavcodec/wma_freqs \ +libavcodec/wmalosslessdec \ +libavcodec/wmaprodec \ +libavcodec/wmavoice \ +libavcodec/wmv2 \ +libavcodec/wmv2data \ +libavcodec/wmv2dec \ +libavcodec/wmv2dsp \ +libavcodec/wmv2enc \ +libavcodec/wnv1 \ +libavcodec/wrapped_avframe \ +libavcodec/ws-snd1 \ +libavcodec/xan \ +libavcodec/xbmdec \ +libavcodec/xbmenc \ +libavcodec/xbm_parser \ +libavcodec/xface \ +libavcodec/xfacedec \ +libavcodec/xfaceenc \ +libavcodec/xiph \ +libavcodec/xl \ +libavcodec/xma_parser \ +libavcodec/xpmdec \ +libavcodec/xsubdec \ +libavcodec/xsubenc \ +libavcodec/xvididct \ +libavcodec/xwddec \ +libavcodec/xwdenc \ +libavcodec/xwd_parser \ +libavcodec/xxan \ +libavcodec/y41pdec \ +libavcodec/y41penc \ +libavcodec/ylc \ +libavcodec/yop \ +libavcodec/yuv4dec \ +libavcodec/yuv4enc \ +libavcodec/zerocodec \ +libavcodec/zlib_wrapper \ +libavcodec/zmbv \ +libavcodec/zmbvenc \ diff --git a/libffmpeg-avformat/3dostr.c b/libffmpeg-avformat/3dostr.c new file mode 120000 index 0000000..a6f1b19 --- /dev/null +++ b/libffmpeg-avformat/3dostr.c @@ -0,0 +1 @@ +../upstream/libavformat/3dostr.c \ No newline at end of file diff --git a/libffmpeg-avformat/4xm.c b/libffmpeg-avformat/4xm.c new file mode 120000 index 0000000..d1b9969 --- /dev/null +++ b/libffmpeg-avformat/4xm.c @@ -0,0 +1 @@ +../upstream/libavformat/4xm.c \ No newline at end of file diff --git a/libffmpeg-avformat/a64.c b/libffmpeg-avformat/a64.c new file mode 120000 index 0000000..c15cc99 --- /dev/null +++ b/libffmpeg-avformat/a64.c @@ -0,0 +1 @@ +../upstream/libavformat/a64.c \ No newline at end of file diff --git a/libffmpeg-avformat/aacdec.c b/libffmpeg-avformat/aacdec.c new file mode 120000 index 0000000..2c9d62a --- /dev/null +++ b/libffmpeg-avformat/aacdec.c @@ -0,0 +1 @@ +../upstream/libavformat/aacdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/aadec.c b/libffmpeg-avformat/aadec.c new file mode 120000 index 0000000..af0798b --- /dev/null +++ b/libffmpeg-avformat/aadec.c @@ -0,0 +1 @@ +../upstream/libavformat/aadec.c \ No newline at end of file diff --git a/libffmpeg-avformat/aaxdec.c b/libffmpeg-avformat/aaxdec.c new file mode 120000 index 0000000..8260fb2 --- /dev/null +++ b/libffmpeg-avformat/aaxdec.c @@ -0,0 +1 @@ +../upstream/libavformat/aaxdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/ac3_channel_layout_tab.c b/libffmpeg-avformat/ac3_channel_layout_tab.c new file mode 120000 index 0000000..6f9eb86 --- /dev/null +++ b/libffmpeg-avformat/ac3_channel_layout_tab.c @@ -0,0 +1 @@ +../upstream/libavformat/ac3_channel_layout_tab.c \ No newline at end of file diff --git a/libffmpeg-avformat/ac3dec.c b/libffmpeg-avformat/ac3dec.c new file mode 120000 index 0000000..e13a4a3 --- /dev/null +++ b/libffmpeg-avformat/ac3dec.c @@ -0,0 +1 @@ +../upstream/libavformat/ac3dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/ac4dec.c b/libffmpeg-avformat/ac4dec.c new file mode 120000 index 0000000..17e9a65 --- /dev/null +++ b/libffmpeg-avformat/ac4dec.c @@ -0,0 +1 @@ +../upstream/libavformat/ac4dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/ac4enc.c b/libffmpeg-avformat/ac4enc.c new file mode 120000 index 0000000..e513ae8 --- /dev/null +++ b/libffmpeg-avformat/ac4enc.c @@ -0,0 +1 @@ +../upstream/libavformat/ac4enc.c \ No newline at end of file diff --git a/libffmpeg-avformat/acedec.c b/libffmpeg-avformat/acedec.c new file mode 120000 index 0000000..e3900d3 --- /dev/null +++ b/libffmpeg-avformat/acedec.c @@ -0,0 +1 @@ +../upstream/libavformat/acedec.c \ No newline at end of file diff --git a/libffmpeg-avformat/acm.c b/libffmpeg-avformat/acm.c new file mode 120000 index 0000000..bcd9955 --- /dev/null +++ b/libffmpeg-avformat/acm.c @@ -0,0 +1 @@ +../upstream/libavformat/acm.c \ No newline at end of file diff --git a/libffmpeg-avformat/act.c b/libffmpeg-avformat/act.c new file mode 120000 index 0000000..9deb7fa --- /dev/null +++ b/libffmpeg-avformat/act.c @@ -0,0 +1 @@ +../upstream/libavformat/act.c \ No newline at end of file diff --git a/libffmpeg-avformat/adp.c b/libffmpeg-avformat/adp.c new file mode 120000 index 0000000..02bf9df --- /dev/null +++ b/libffmpeg-avformat/adp.c @@ -0,0 +1 @@ +../upstream/libavformat/adp.c \ No newline at end of file diff --git a/libffmpeg-avformat/ads.c b/libffmpeg-avformat/ads.c new file mode 120000 index 0000000..e045c14 --- /dev/null +++ b/libffmpeg-avformat/ads.c @@ -0,0 +1 @@ +../upstream/libavformat/ads.c \ No newline at end of file diff --git a/libffmpeg-avformat/adtsenc.c b/libffmpeg-avformat/adtsenc.c new file mode 120000 index 0000000..22af426 --- /dev/null +++ b/libffmpeg-avformat/adtsenc.c @@ -0,0 +1 @@ +../upstream/libavformat/adtsenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/adxdec.c b/libffmpeg-avformat/adxdec.c new file mode 120000 index 0000000..09a5ebf --- /dev/null +++ b/libffmpeg-avformat/adxdec.c @@ -0,0 +1 @@ +../upstream/libavformat/adxdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/aeadec.c b/libffmpeg-avformat/aeadec.c new file mode 120000 index 0000000..da79198 --- /dev/null +++ b/libffmpeg-avformat/aeadec.c @@ -0,0 +1 @@ +../upstream/libavformat/aeadec.c \ No newline at end of file diff --git a/libffmpeg-avformat/aeaenc.c b/libffmpeg-avformat/aeaenc.c new file mode 120000 index 0000000..aee0e82 --- /dev/null +++ b/libffmpeg-avformat/aeaenc.c @@ -0,0 +1 @@ +../upstream/libavformat/aeaenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/afc.c b/libffmpeg-avformat/afc.c new file mode 120000 index 0000000..813c7a0 --- /dev/null +++ b/libffmpeg-avformat/afc.c @@ -0,0 +1 @@ +../upstream/libavformat/afc.c \ No newline at end of file diff --git a/libffmpeg-avformat/aiff.c b/libffmpeg-avformat/aiff.c new file mode 120000 index 0000000..cad7be5 --- /dev/null +++ b/libffmpeg-avformat/aiff.c @@ -0,0 +1 @@ +../upstream/libavformat/aiff.c \ No newline at end of file diff --git a/libffmpeg-avformat/aiff.h b/libffmpeg-avformat/aiff.h new file mode 120000 index 0000000..9d5590a --- /dev/null +++ b/libffmpeg-avformat/aiff.h @@ -0,0 +1 @@ +../upstream/libavformat/aiff.h \ No newline at end of file diff --git a/libffmpeg-avformat/aiffdec.c b/libffmpeg-avformat/aiffdec.c new file mode 120000 index 0000000..0304e4f --- /dev/null +++ b/libffmpeg-avformat/aiffdec.c @@ -0,0 +1 @@ +../upstream/libavformat/aiffdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/aiffenc.c b/libffmpeg-avformat/aiffenc.c new file mode 120000 index 0000000..75403b9 --- /dev/null +++ b/libffmpeg-avformat/aiffenc.c @@ -0,0 +1 @@ +../upstream/libavformat/aiffenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/aixdec.c b/libffmpeg-avformat/aixdec.c new file mode 120000 index 0000000..e21ba49 --- /dev/null +++ b/libffmpeg-avformat/aixdec.c @@ -0,0 +1 @@ +../upstream/libavformat/aixdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/allformats.c b/libffmpeg-avformat/allformats.c new file mode 120000 index 0000000..ce9dbec --- /dev/null +++ b/libffmpeg-avformat/allformats.c @@ -0,0 +1 @@ +../upstream/libavformat/allformats.c \ No newline at end of file diff --git a/libffmpeg-avformat/alp.c b/libffmpeg-avformat/alp.c new file mode 120000 index 0000000..b96f3b4 --- /dev/null +++ b/libffmpeg-avformat/alp.c @@ -0,0 +1 @@ +../upstream/libavformat/alp.c \ No newline at end of file diff --git a/libffmpeg-avformat/amr.c b/libffmpeg-avformat/amr.c new file mode 120000 index 0000000..16c5640 --- /dev/null +++ b/libffmpeg-avformat/amr.c @@ -0,0 +1 @@ +../upstream/libavformat/amr.c \ No newline at end of file diff --git a/libffmpeg-avformat/amvenc.c b/libffmpeg-avformat/amvenc.c new file mode 120000 index 0000000..b758e21 --- /dev/null +++ b/libffmpeg-avformat/amvenc.c @@ -0,0 +1 @@ +../upstream/libavformat/amvenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/anm.c b/libffmpeg-avformat/anm.c new file mode 120000 index 0000000..014127b --- /dev/null +++ b/libffmpeg-avformat/anm.c @@ -0,0 +1 @@ +../upstream/libavformat/anm.c \ No newline at end of file diff --git a/libffmpeg-avformat/apac.c b/libffmpeg-avformat/apac.c new file mode 120000 index 0000000..aeb2baa --- /dev/null +++ b/libffmpeg-avformat/apac.c @@ -0,0 +1 @@ +../upstream/libavformat/apac.c \ No newline at end of file diff --git a/libffmpeg-avformat/apc.c b/libffmpeg-avformat/apc.c new file mode 120000 index 0000000..e1a8a2a --- /dev/null +++ b/libffmpeg-avformat/apc.c @@ -0,0 +1 @@ +../upstream/libavformat/apc.c \ No newline at end of file diff --git a/libffmpeg-avformat/ape.c b/libffmpeg-avformat/ape.c new file mode 120000 index 0000000..acdfaa9 --- /dev/null +++ b/libffmpeg-avformat/ape.c @@ -0,0 +1 @@ +../upstream/libavformat/ape.c \ No newline at end of file diff --git a/libffmpeg-avformat/apetag.c b/libffmpeg-avformat/apetag.c new file mode 120000 index 0000000..bfed0de --- /dev/null +++ b/libffmpeg-avformat/apetag.c @@ -0,0 +1 @@ +../upstream/libavformat/apetag.c \ No newline at end of file diff --git a/libffmpeg-avformat/apetag.h b/libffmpeg-avformat/apetag.h new file mode 120000 index 0000000..2847531 --- /dev/null +++ b/libffmpeg-avformat/apetag.h @@ -0,0 +1 @@ +../upstream/libavformat/apetag.h \ No newline at end of file diff --git a/libffmpeg-avformat/apm.c b/libffmpeg-avformat/apm.c new file mode 120000 index 0000000..b2a21eb --- /dev/null +++ b/libffmpeg-avformat/apm.c @@ -0,0 +1 @@ +../upstream/libavformat/apm.c \ No newline at end of file diff --git a/libffmpeg-avformat/apngdec.c b/libffmpeg-avformat/apngdec.c new file mode 120000 index 0000000..b81701b --- /dev/null +++ b/libffmpeg-avformat/apngdec.c @@ -0,0 +1 @@ +../upstream/libavformat/apngdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/apngenc.c b/libffmpeg-avformat/apngenc.c new file mode 120000 index 0000000..72d45c6 --- /dev/null +++ b/libffmpeg-avformat/apngenc.c @@ -0,0 +1 @@ +../upstream/libavformat/apngenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/aptxdec.c b/libffmpeg-avformat/aptxdec.c new file mode 120000 index 0000000..e7ff055 --- /dev/null +++ b/libffmpeg-avformat/aptxdec.c @@ -0,0 +1 @@ +../upstream/libavformat/aptxdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/aqtitledec.c b/libffmpeg-avformat/aqtitledec.c new file mode 120000 index 0000000..eb7a652 --- /dev/null +++ b/libffmpeg-avformat/aqtitledec.c @@ -0,0 +1 @@ +../upstream/libavformat/aqtitledec.c \ No newline at end of file diff --git a/libffmpeg-avformat/argo_asf.c b/libffmpeg-avformat/argo_asf.c new file mode 120000 index 0000000..ee597b9 --- /dev/null +++ b/libffmpeg-avformat/argo_asf.c @@ -0,0 +1 @@ +../upstream/libavformat/argo_asf.c \ No newline at end of file diff --git a/libffmpeg-avformat/argo_asf.h b/libffmpeg-avformat/argo_asf.h new file mode 120000 index 0000000..73ed395 --- /dev/null +++ b/libffmpeg-avformat/argo_asf.h @@ -0,0 +1 @@ +../upstream/libavformat/argo_asf.h \ No newline at end of file diff --git a/libffmpeg-avformat/argo_brp.c b/libffmpeg-avformat/argo_brp.c new file mode 120000 index 0000000..e4bfd5d --- /dev/null +++ b/libffmpeg-avformat/argo_brp.c @@ -0,0 +1 @@ +../upstream/libavformat/argo_brp.c \ No newline at end of file diff --git a/libffmpeg-avformat/argo_cvg.c b/libffmpeg-avformat/argo_cvg.c new file mode 120000 index 0000000..a0fe7e6 --- /dev/null +++ b/libffmpeg-avformat/argo_cvg.c @@ -0,0 +1 @@ +../upstream/libavformat/argo_cvg.c \ No newline at end of file diff --git a/libffmpeg-avformat/asf.c b/libffmpeg-avformat/asf.c new file mode 120000 index 0000000..6d730f4 --- /dev/null +++ b/libffmpeg-avformat/asf.c @@ -0,0 +1 @@ +../upstream/libavformat/asf.c \ No newline at end of file diff --git a/libffmpeg-avformat/asf.h b/libffmpeg-avformat/asf.h new file mode 120000 index 0000000..28b8ffd --- /dev/null +++ b/libffmpeg-avformat/asf.h @@ -0,0 +1 @@ +../upstream/libavformat/asf.h \ No newline at end of file diff --git a/libffmpeg-avformat/asf_tags.c b/libffmpeg-avformat/asf_tags.c new file mode 120000 index 0000000..58ccca2 --- /dev/null +++ b/libffmpeg-avformat/asf_tags.c @@ -0,0 +1 @@ +../upstream/libavformat/asf_tags.c \ No newline at end of file diff --git a/libffmpeg-avformat/asfcrypt.c b/libffmpeg-avformat/asfcrypt.c new file mode 120000 index 0000000..d73c839 --- /dev/null +++ b/libffmpeg-avformat/asfcrypt.c @@ -0,0 +1 @@ +../upstream/libavformat/asfcrypt.c \ No newline at end of file diff --git a/libffmpeg-avformat/asfcrypt.h b/libffmpeg-avformat/asfcrypt.h new file mode 120000 index 0000000..5fa4e1d --- /dev/null +++ b/libffmpeg-avformat/asfcrypt.h @@ -0,0 +1 @@ +../upstream/libavformat/asfcrypt.h \ No newline at end of file diff --git a/libffmpeg-avformat/asfdec_f.c b/libffmpeg-avformat/asfdec_f.c new file mode 120000 index 0000000..c960eca --- /dev/null +++ b/libffmpeg-avformat/asfdec_f.c @@ -0,0 +1 @@ +../upstream/libavformat/asfdec_f.c \ No newline at end of file diff --git a/libffmpeg-avformat/asfdec_o.c b/libffmpeg-avformat/asfdec_o.c new file mode 120000 index 0000000..1ebd62b --- /dev/null +++ b/libffmpeg-avformat/asfdec_o.c @@ -0,0 +1 @@ +../upstream/libavformat/asfdec_o.c \ No newline at end of file diff --git a/libffmpeg-avformat/asfenc.c b/libffmpeg-avformat/asfenc.c new file mode 120000 index 0000000..0726ad1 --- /dev/null +++ b/libffmpeg-avformat/asfenc.c @@ -0,0 +1 @@ +../upstream/libavformat/asfenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/assdec.c b/libffmpeg-avformat/assdec.c new file mode 120000 index 0000000..3d95850 --- /dev/null +++ b/libffmpeg-avformat/assdec.c @@ -0,0 +1 @@ +../upstream/libavformat/assdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/assenc.c b/libffmpeg-avformat/assenc.c new file mode 120000 index 0000000..ccc20ee --- /dev/null +++ b/libffmpeg-avformat/assenc.c @@ -0,0 +1 @@ +../upstream/libavformat/assenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/ast.c b/libffmpeg-avformat/ast.c new file mode 120000 index 0000000..0b671ed --- /dev/null +++ b/libffmpeg-avformat/ast.c @@ -0,0 +1 @@ +../upstream/libavformat/ast.c \ No newline at end of file diff --git a/libffmpeg-avformat/ast.h b/libffmpeg-avformat/ast.h new file mode 120000 index 0000000..d7a2f72 --- /dev/null +++ b/libffmpeg-avformat/ast.h @@ -0,0 +1 @@ +../upstream/libavformat/ast.h \ No newline at end of file diff --git a/libffmpeg-avformat/astdec.c b/libffmpeg-avformat/astdec.c new file mode 120000 index 0000000..e5bc431 --- /dev/null +++ b/libffmpeg-avformat/astdec.c @@ -0,0 +1 @@ +../upstream/libavformat/astdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/astenc.c b/libffmpeg-avformat/astenc.c new file mode 120000 index 0000000..e73aa1c --- /dev/null +++ b/libffmpeg-avformat/astenc.c @@ -0,0 +1 @@ +../upstream/libavformat/astenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/async.c b/libffmpeg-avformat/async.c new file mode 120000 index 0000000..dd44c2f --- /dev/null +++ b/libffmpeg-avformat/async.c @@ -0,0 +1 @@ +../upstream/libavformat/async.c \ No newline at end of file diff --git a/libffmpeg-avformat/au.c b/libffmpeg-avformat/au.c new file mode 120000 index 0000000..8a69e0c --- /dev/null +++ b/libffmpeg-avformat/au.c @@ -0,0 +1 @@ +../upstream/libavformat/au.c \ No newline at end of file diff --git a/libffmpeg-avformat/av1.c b/libffmpeg-avformat/av1.c new file mode 120000 index 0000000..f7597a1 --- /dev/null +++ b/libffmpeg-avformat/av1.c @@ -0,0 +1 @@ +../upstream/libavformat/av1.c \ No newline at end of file diff --git a/libffmpeg-avformat/av1.h b/libffmpeg-avformat/av1.h new file mode 120000 index 0000000..913d398 --- /dev/null +++ b/libffmpeg-avformat/av1.h @@ -0,0 +1 @@ +../upstream/libavformat/av1.h \ No newline at end of file diff --git a/libffmpeg-avformat/av1dec.c b/libffmpeg-avformat/av1dec.c new file mode 120000 index 0000000..508b1a2 --- /dev/null +++ b/libffmpeg-avformat/av1dec.c @@ -0,0 +1 @@ +../upstream/libavformat/av1dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/avc.c b/libffmpeg-avformat/avc.c new file mode 120000 index 0000000..9c3dd13 --- /dev/null +++ b/libffmpeg-avformat/avc.c @@ -0,0 +1 @@ +../upstream/libavformat/avc.c \ No newline at end of file diff --git a/libffmpeg-avformat/avc.h b/libffmpeg-avformat/avc.h new file mode 120000 index 0000000..59b67b1 --- /dev/null +++ b/libffmpeg-avformat/avc.h @@ -0,0 +1 @@ +../upstream/libavformat/avc.h \ No newline at end of file diff --git a/libffmpeg-avformat/avformat.c b/libffmpeg-avformat/avformat.c new file mode 120000 index 0000000..c681a4a --- /dev/null +++ b/libffmpeg-avformat/avformat.c @@ -0,0 +1 @@ +../upstream/libavformat/avformat.c \ No newline at end of file diff --git a/libffmpeg-avformat/avformat.h b/libffmpeg-avformat/avformat.h new file mode 120000 index 0000000..811cd2d --- /dev/null +++ b/libffmpeg-avformat/avformat.h @@ -0,0 +1 @@ +../upstream/libavformat/avformat.h \ No newline at end of file diff --git a/libffmpeg-avformat/avi.h b/libffmpeg-avformat/avi.h new file mode 120000 index 0000000..0c94af7 --- /dev/null +++ b/libffmpeg-avformat/avi.h @@ -0,0 +1 @@ +../upstream/libavformat/avi.h \ No newline at end of file diff --git a/libffmpeg-avformat/avidec.c b/libffmpeg-avformat/avidec.c new file mode 120000 index 0000000..b905a6b --- /dev/null +++ b/libffmpeg-avformat/avidec.c @@ -0,0 +1 @@ +../upstream/libavformat/avidec.c \ No newline at end of file diff --git a/libffmpeg-avformat/avienc.c b/libffmpeg-avformat/avienc.c new file mode 120000 index 0000000..8328538 --- /dev/null +++ b/libffmpeg-avformat/avienc.c @@ -0,0 +1 @@ +../upstream/libavformat/avienc.c \ No newline at end of file diff --git a/libffmpeg-avformat/avio.c b/libffmpeg-avformat/avio.c new file mode 120000 index 0000000..83a37f6 --- /dev/null +++ b/libffmpeg-avformat/avio.c @@ -0,0 +1 @@ +../upstream/libavformat/avio.c \ No newline at end of file diff --git a/libffmpeg-avformat/avio.h b/libffmpeg-avformat/avio.h new file mode 120000 index 0000000..66b011b --- /dev/null +++ b/libffmpeg-avformat/avio.h @@ -0,0 +1 @@ +../upstream/libavformat/avio.h \ No newline at end of file diff --git a/libffmpeg-avformat/avio_internal.h b/libffmpeg-avformat/avio_internal.h new file mode 120000 index 0000000..3d76117 --- /dev/null +++ b/libffmpeg-avformat/avio_internal.h @@ -0,0 +1 @@ +../upstream/libavformat/avio_internal.h \ No newline at end of file diff --git a/libffmpeg-avformat/aviobuf.c b/libffmpeg-avformat/aviobuf.c new file mode 120000 index 0000000..906faee --- /dev/null +++ b/libffmpeg-avformat/aviobuf.c @@ -0,0 +1 @@ +../upstream/libavformat/aviobuf.c \ No newline at end of file diff --git a/libffmpeg-avformat/avisynth.c b/libffmpeg-avformat/avisynth.c new file mode 120000 index 0000000..658ab78 --- /dev/null +++ b/libffmpeg-avformat/avisynth.c @@ -0,0 +1 @@ +../upstream/libavformat/avisynth.c \ No newline at end of file diff --git a/libffmpeg-avformat/avlanguage.c b/libffmpeg-avformat/avlanguage.c new file mode 120000 index 0000000..7181143 --- /dev/null +++ b/libffmpeg-avformat/avlanguage.c @@ -0,0 +1 @@ +../upstream/libavformat/avlanguage.c \ No newline at end of file diff --git a/libffmpeg-avformat/avlanguage.h b/libffmpeg-avformat/avlanguage.h new file mode 120000 index 0000000..efc38fa --- /dev/null +++ b/libffmpeg-avformat/avlanguage.h @@ -0,0 +1 @@ +../upstream/libavformat/avlanguage.h \ No newline at end of file diff --git a/libffmpeg-avformat/avr.c b/libffmpeg-avformat/avr.c new file mode 120000 index 0000000..158a8ca --- /dev/null +++ b/libffmpeg-avformat/avr.c @@ -0,0 +1 @@ +../upstream/libavformat/avr.c \ No newline at end of file diff --git a/libffmpeg-avformat/avs.c b/libffmpeg-avformat/avs.c new file mode 120000 index 0000000..01d5b2c --- /dev/null +++ b/libffmpeg-avformat/avs.c @@ -0,0 +1 @@ +../upstream/libavformat/avs.c \ No newline at end of file diff --git a/libffmpeg-avformat/avs2dec.c b/libffmpeg-avformat/avs2dec.c new file mode 120000 index 0000000..b2c6eef --- /dev/null +++ b/libffmpeg-avformat/avs2dec.c @@ -0,0 +1 @@ +../upstream/libavformat/avs2dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/avs3dec.c b/libffmpeg-avformat/avs3dec.c new file mode 120000 index 0000000..65a7d38 --- /dev/null +++ b/libffmpeg-avformat/avs3dec.c @@ -0,0 +1 @@ +../upstream/libavformat/avs3dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/bethsoftvid.c b/libffmpeg-avformat/bethsoftvid.c new file mode 120000 index 0000000..e7eb5f4 --- /dev/null +++ b/libffmpeg-avformat/bethsoftvid.c @@ -0,0 +1 @@ +../upstream/libavformat/bethsoftvid.c \ No newline at end of file diff --git a/libffmpeg-avformat/bfi.c b/libffmpeg-avformat/bfi.c new file mode 120000 index 0000000..98dfa69 --- /dev/null +++ b/libffmpeg-avformat/bfi.c @@ -0,0 +1 @@ +../upstream/libavformat/bfi.c \ No newline at end of file diff --git a/libffmpeg-avformat/bink.c b/libffmpeg-avformat/bink.c new file mode 120000 index 0000000..125701a --- /dev/null +++ b/libffmpeg-avformat/bink.c @@ -0,0 +1 @@ +../upstream/libavformat/bink.c \ No newline at end of file diff --git a/libffmpeg-avformat/binka.c b/libffmpeg-avformat/binka.c new file mode 120000 index 0000000..3a1df53 --- /dev/null +++ b/libffmpeg-avformat/binka.c @@ -0,0 +1 @@ +../upstream/libavformat/binka.c \ No newline at end of file diff --git a/libffmpeg-avformat/bintext.c b/libffmpeg-avformat/bintext.c new file mode 120000 index 0000000..92a20f5 --- /dev/null +++ b/libffmpeg-avformat/bintext.c @@ -0,0 +1 @@ +../upstream/libavformat/bintext.c \ No newline at end of file diff --git a/libffmpeg-avformat/bit.c b/libffmpeg-avformat/bit.c new file mode 120000 index 0000000..4226f5f --- /dev/null +++ b/libffmpeg-avformat/bit.c @@ -0,0 +1 @@ +../upstream/libavformat/bit.c \ No newline at end of file diff --git a/libffmpeg-avformat/bluray.c b/libffmpeg-avformat/bluray.c new file mode 120000 index 0000000..7d85c42 --- /dev/null +++ b/libffmpeg-avformat/bluray.c @@ -0,0 +1 @@ +../upstream/libavformat/bluray.c \ No newline at end of file diff --git a/libffmpeg-avformat/bmv.c b/libffmpeg-avformat/bmv.c new file mode 120000 index 0000000..5b72abf --- /dev/null +++ b/libffmpeg-avformat/bmv.c @@ -0,0 +1 @@ +../upstream/libavformat/bmv.c \ No newline at end of file diff --git a/libffmpeg-avformat/boadec.c b/libffmpeg-avformat/boadec.c new file mode 120000 index 0000000..24629a1 --- /dev/null +++ b/libffmpeg-avformat/boadec.c @@ -0,0 +1 @@ +../upstream/libavformat/boadec.c \ No newline at end of file diff --git a/libffmpeg-avformat/bonk.c b/libffmpeg-avformat/bonk.c new file mode 120000 index 0000000..b50e0dc --- /dev/null +++ b/libffmpeg-avformat/bonk.c @@ -0,0 +1 @@ +../upstream/libavformat/bonk.c \ No newline at end of file diff --git a/libffmpeg-avformat/brstm.c b/libffmpeg-avformat/brstm.c new file mode 120000 index 0000000..eda18d7 --- /dev/null +++ b/libffmpeg-avformat/brstm.c @@ -0,0 +1 @@ +../upstream/libavformat/brstm.c \ No newline at end of file diff --git a/libffmpeg-avformat/buildfile b/libffmpeg-avformat/buildfile new file mode 100644 index 0000000..fd4d116 --- /dev/null +++ b/libffmpeg-avformat/buildfile @@ -0,0 +1,90 @@ +intf_libs = # Interface dependencies. +impl_libs = # Implementation dependencies. +#import _libs += libhello%lib{hello} +# + +lib{ffmpeg-avformat}: h{ \ + ../config \ + c{} \ + $impl_libs $intf_libs + +lib{ffmpeg-avformat}: c{hwcontext_vulkan vulkan}: include = ($config.FFmpeg.CONFIG_VULKAN == 1) + +# Build options. +# +c.poptions =+ "-I$out_root" "-I$src_root" "-I$src_root/libffmpeg-avformat" + +c.coptions =+ -D_ISOC11_SOURCE +c.coptions =+ -D_FILE_OFFSET_BITS=64 +c.coptions =+ -D_LARGEFILE_SOURCE +c.coptions =+ -D_POSIX_C_SOURCE=200112 +c.coptions =+ -D_XOPEN_SOURCE=600 +c.coptions =+ -DHAVE_AV_CONFIG_H +c.coptions =+ -DBUILDING_avfilter +c.coptions =+ -std=c17 +c.coptions =+ -fomit-frame-pointer +c.coptions =+ -pthread +c.coptions =+ -g +c.coptions =+ -Wdeclaration-after-statement +c.coptions =+ -Wall +c.coptions =+ -Wdisabled-optimization +c.coptions =+ -Wpointer-arith +c.coptions =+ -Wredundant-decls +c.coptions =+ -Wwrite-strings +c.coptions =+ -Wtype-limits +c.coptions =+ -Wundef +c.coptions =+ -Wmissing-prototypes +c.coptions =+ -Wstrict-prototypes +c.coptions =+ -Wempty-body +c.coptions =+ -Wno-parentheses +c.coptions =+ -Wno-switch +c.coptions =+ -Wno-format-zero-length +c.coptions =+ -Wno-pointer-sign +c.coptions =+ -Wno-unused-const-variable +c.coptions =+ -Wno-bool-operation +c.coptions =+ -Wno-char-subscripts +c.coptions =+ -O3 +c.coptions =+ -fno-math-errno +c.coptions =+ -fno-signed-zeros +c.coptions =+ -fno-tree-vectorize +c.coptions =+ -Werror=format-security +c.coptions =+ -Werror=implicit-function-declaration +c.coptions =+ -Werror=missing-prototypes +c.coptions =+ -Werror=return-type +c.coptions =+ -Werror=vla +c.coptions =+ -Wformat +c.coptions =+ -fdiagnostics-color=auto +c.coptions =+ -Wno-maybe-uninitialized + +#obja{*}: c.poptions += -DLIBFFMPEG_STATIC_BUILD +#objs{*}: c.poptions += -DLIBFFMPEG_SHARED_BUILD + + +# Export options. +# +lib{ffmpeg-avformat}: +{ + c.export.poptions = "-I$out_root" "-I$src_root" + c.export.libs = $intf_libs +} + +#liba{ffmpeg}: c.export.poptions += -DLIBFFMPEG_STATIC +#libs{ffmpeg}: c.export.poptions += -DLIBFFMPEG_SHARED + +# For pre-releases use the complete version to make sure they cannot +# be used in place of another pre-release or the final version. See +# the version module for details on the version.* variable values. +# +if $version.pre_release + lib{ffmpeg-avformat}: bin.lib.version = "-$version.project_id" +else + lib{ffmpeg-avformat}: bin.lib.version = "-$version.major.$version.minor" + +# Install into the libffmpeg/ subdirectory of, say, /usr/include/ +# recreating subdirectories. +# +{h}{*}: +{ + install = include/libffmpeg/ + install.subdirs = true +} diff --git a/libffmpeg-avformat/c93.c b/libffmpeg-avformat/c93.c new file mode 120000 index 0000000..686e6fd --- /dev/null +++ b/libffmpeg-avformat/c93.c @@ -0,0 +1 @@ +../upstream/libavformat/c93.c \ No newline at end of file diff --git a/libffmpeg-avformat/cache.c b/libffmpeg-avformat/cache.c new file mode 120000 index 0000000..2ca4893 --- /dev/null +++ b/libffmpeg-avformat/cache.c @@ -0,0 +1 @@ +../upstream/libavformat/cache.c \ No newline at end of file diff --git a/libffmpeg-avformat/caf.c b/libffmpeg-avformat/caf.c new file mode 120000 index 0000000..af0ea5b --- /dev/null +++ b/libffmpeg-avformat/caf.c @@ -0,0 +1 @@ +../upstream/libavformat/caf.c \ No newline at end of file diff --git a/libffmpeg-avformat/caf.h b/libffmpeg-avformat/caf.h new file mode 120000 index 0000000..f6597ee --- /dev/null +++ b/libffmpeg-avformat/caf.h @@ -0,0 +1 @@ +../upstream/libavformat/caf.h \ No newline at end of file diff --git a/libffmpeg-avformat/cafdec.c b/libffmpeg-avformat/cafdec.c new file mode 120000 index 0000000..bf54919 --- /dev/null +++ b/libffmpeg-avformat/cafdec.c @@ -0,0 +1 @@ +../upstream/libavformat/cafdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/cafenc.c b/libffmpeg-avformat/cafenc.c new file mode 120000 index 0000000..3fe94e2 --- /dev/null +++ b/libffmpeg-avformat/cafenc.c @@ -0,0 +1 @@ +../upstream/libavformat/cafenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/cavsvideodec.c b/libffmpeg-avformat/cavsvideodec.c new file mode 120000 index 0000000..d1f7a7c --- /dev/null +++ b/libffmpeg-avformat/cavsvideodec.c @@ -0,0 +1 @@ +../upstream/libavformat/cavsvideodec.c \ No newline at end of file diff --git a/libffmpeg-avformat/cdg.c b/libffmpeg-avformat/cdg.c new file mode 120000 index 0000000..893f150 --- /dev/null +++ b/libffmpeg-avformat/cdg.c @@ -0,0 +1 @@ +../upstream/libavformat/cdg.c \ No newline at end of file diff --git a/libffmpeg-avformat/cdxl.c b/libffmpeg-avformat/cdxl.c new file mode 120000 index 0000000..7f55b7b --- /dev/null +++ b/libffmpeg-avformat/cdxl.c @@ -0,0 +1 @@ +../upstream/libavformat/cdxl.c \ No newline at end of file diff --git a/libffmpeg-avformat/chromaprint.c b/libffmpeg-avformat/chromaprint.c new file mode 120000 index 0000000..be60e6e --- /dev/null +++ b/libffmpeg-avformat/chromaprint.c @@ -0,0 +1 @@ +../upstream/libavformat/chromaprint.c \ No newline at end of file diff --git a/libffmpeg-avformat/cinedec.c b/libffmpeg-avformat/cinedec.c new file mode 120000 index 0000000..5300b20 --- /dev/null +++ b/libffmpeg-avformat/cinedec.c @@ -0,0 +1 @@ +../upstream/libavformat/cinedec.c \ No newline at end of file diff --git a/libffmpeg-avformat/codec2.c b/libffmpeg-avformat/codec2.c new file mode 120000 index 0000000..253aa53 --- /dev/null +++ b/libffmpeg-avformat/codec2.c @@ -0,0 +1 @@ +../upstream/libavformat/codec2.c \ No newline at end of file diff --git a/libffmpeg-avformat/concat.c b/libffmpeg-avformat/concat.c new file mode 120000 index 0000000..2d44417 --- /dev/null +++ b/libffmpeg-avformat/concat.c @@ -0,0 +1 @@ +../upstream/libavformat/concat.c \ No newline at end of file diff --git a/libffmpeg-avformat/concatdec.c b/libffmpeg-avformat/concatdec.c new file mode 120000 index 0000000..72e7698 --- /dev/null +++ b/libffmpeg-avformat/concatdec.c @@ -0,0 +1 @@ +../upstream/libavformat/concatdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/crcenc.c b/libffmpeg-avformat/crcenc.c new file mode 120000 index 0000000..005d629 --- /dev/null +++ b/libffmpeg-avformat/crcenc.c @@ -0,0 +1 @@ +../upstream/libavformat/crcenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/crypto.c b/libffmpeg-avformat/crypto.c new file mode 120000 index 0000000..ccf439a --- /dev/null +++ b/libffmpeg-avformat/crypto.c @@ -0,0 +1 @@ +../upstream/libavformat/crypto.c \ No newline at end of file diff --git a/libffmpeg-avformat/dash.c b/libffmpeg-avformat/dash.c new file mode 120000 index 0000000..9ef4c83 --- /dev/null +++ b/libffmpeg-avformat/dash.c @@ -0,0 +1 @@ +../upstream/libavformat/dash.c \ No newline at end of file diff --git a/libffmpeg-avformat/dash.h b/libffmpeg-avformat/dash.h new file mode 120000 index 0000000..855376b --- /dev/null +++ b/libffmpeg-avformat/dash.h @@ -0,0 +1 @@ +../upstream/libavformat/dash.h \ No newline at end of file diff --git a/libffmpeg-avformat/dashdec.c b/libffmpeg-avformat/dashdec.c new file mode 120000 index 0000000..df30046 --- /dev/null +++ b/libffmpeg-avformat/dashdec.c @@ -0,0 +1 @@ +../upstream/libavformat/dashdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/dashenc.c b/libffmpeg-avformat/dashenc.c new file mode 120000 index 0000000..3612405 --- /dev/null +++ b/libffmpeg-avformat/dashenc.c @@ -0,0 +1 @@ +../upstream/libavformat/dashenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/data_uri.c b/libffmpeg-avformat/data_uri.c new file mode 120000 index 0000000..7d86965 --- /dev/null +++ b/libffmpeg-avformat/data_uri.c @@ -0,0 +1 @@ +../upstream/libavformat/data_uri.c \ No newline at end of file diff --git a/libffmpeg-avformat/dauddec.c b/libffmpeg-avformat/dauddec.c new file mode 120000 index 0000000..fd241b3 --- /dev/null +++ b/libffmpeg-avformat/dauddec.c @@ -0,0 +1 @@ +../upstream/libavformat/dauddec.c \ No newline at end of file diff --git a/libffmpeg-avformat/daudenc.c b/libffmpeg-avformat/daudenc.c new file mode 120000 index 0000000..21e9f0a --- /dev/null +++ b/libffmpeg-avformat/daudenc.c @@ -0,0 +1 @@ +../upstream/libavformat/daudenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/dca_sample_rate_tab.c b/libffmpeg-avformat/dca_sample_rate_tab.c new file mode 120000 index 0000000..2e9ef4a --- /dev/null +++ b/libffmpeg-avformat/dca_sample_rate_tab.c @@ -0,0 +1 @@ +../upstream/libavformat/dca_sample_rate_tab.c \ No newline at end of file diff --git a/libffmpeg-avformat/dcstr.c b/libffmpeg-avformat/dcstr.c new file mode 120000 index 0000000..f38da24 --- /dev/null +++ b/libffmpeg-avformat/dcstr.c @@ -0,0 +1 @@ +../upstream/libavformat/dcstr.c \ No newline at end of file diff --git a/libffmpeg-avformat/demux.c b/libffmpeg-avformat/demux.c new file mode 120000 index 0000000..06f825c --- /dev/null +++ b/libffmpeg-avformat/demux.c @@ -0,0 +1 @@ +../upstream/libavformat/demux.c \ No newline at end of file diff --git a/libffmpeg-avformat/demux.h b/libffmpeg-avformat/demux.h new file mode 120000 index 0000000..28fdb6d --- /dev/null +++ b/libffmpeg-avformat/demux.h @@ -0,0 +1 @@ +../upstream/libavformat/demux.h \ No newline at end of file diff --git a/libffmpeg-avformat/demux_utils.c b/libffmpeg-avformat/demux_utils.c new file mode 120000 index 0000000..fecda68 --- /dev/null +++ b/libffmpeg-avformat/demux_utils.c @@ -0,0 +1 @@ +../upstream/libavformat/demux_utils.c \ No newline at end of file diff --git a/libffmpeg-avformat/demuxer_list.c b/libffmpeg-avformat/demuxer_list.c new file mode 120000 index 0000000..f0c9484 --- /dev/null +++ b/libffmpeg-avformat/demuxer_list.c @@ -0,0 +1 @@ +../upstream/libavformat/demuxer_list.c \ No newline at end of file diff --git a/libffmpeg-avformat/derf.c b/libffmpeg-avformat/derf.c new file mode 120000 index 0000000..0af08d6 --- /dev/null +++ b/libffmpeg-avformat/derf.c @@ -0,0 +1 @@ +../upstream/libavformat/derf.c \ No newline at end of file diff --git a/libffmpeg-avformat/dfa.c b/libffmpeg-avformat/dfa.c new file mode 120000 index 0000000..05a0283 --- /dev/null +++ b/libffmpeg-avformat/dfa.c @@ -0,0 +1 @@ +../upstream/libavformat/dfa.c \ No newline at end of file diff --git a/libffmpeg-avformat/dfpwmdec.c b/libffmpeg-avformat/dfpwmdec.c new file mode 120000 index 0000000..a19f1be --- /dev/null +++ b/libffmpeg-avformat/dfpwmdec.c @@ -0,0 +1 @@ +../upstream/libavformat/dfpwmdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/dhav.c b/libffmpeg-avformat/dhav.c new file mode 120000 index 0000000..5cba81b --- /dev/null +++ b/libffmpeg-avformat/dhav.c @@ -0,0 +1 @@ +../upstream/libavformat/dhav.c \ No newline at end of file diff --git a/libffmpeg-avformat/diracdec.c b/libffmpeg-avformat/diracdec.c new file mode 120000 index 0000000..ef645c3 --- /dev/null +++ b/libffmpeg-avformat/diracdec.c @@ -0,0 +1 @@ +../upstream/libavformat/diracdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/dnxhddec.c b/libffmpeg-avformat/dnxhddec.c new file mode 120000 index 0000000..2ea4709 --- /dev/null +++ b/libffmpeg-avformat/dnxhddec.c @@ -0,0 +1 @@ +../upstream/libavformat/dnxhddec.c \ No newline at end of file diff --git a/libffmpeg-avformat/dovi_isom.c b/libffmpeg-avformat/dovi_isom.c new file mode 120000 index 0000000..da9a551 --- /dev/null +++ b/libffmpeg-avformat/dovi_isom.c @@ -0,0 +1 @@ +../upstream/libavformat/dovi_isom.c \ No newline at end of file diff --git a/libffmpeg-avformat/dovi_isom.h b/libffmpeg-avformat/dovi_isom.h new file mode 120000 index 0000000..44c1796 --- /dev/null +++ b/libffmpeg-avformat/dovi_isom.h @@ -0,0 +1 @@ +../upstream/libavformat/dovi_isom.h \ No newline at end of file diff --git a/libffmpeg-avformat/dsfdec.c b/libffmpeg-avformat/dsfdec.c new file mode 120000 index 0000000..0d4a1c2 --- /dev/null +++ b/libffmpeg-avformat/dsfdec.c @@ -0,0 +1 @@ +../upstream/libavformat/dsfdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/dsicin.c b/libffmpeg-avformat/dsicin.c new file mode 120000 index 0000000..44a313b --- /dev/null +++ b/libffmpeg-avformat/dsicin.c @@ -0,0 +1 @@ +../upstream/libavformat/dsicin.c \ No newline at end of file diff --git a/libffmpeg-avformat/dss.c b/libffmpeg-avformat/dss.c new file mode 120000 index 0000000..31e365e --- /dev/null +++ b/libffmpeg-avformat/dss.c @@ -0,0 +1 @@ +../upstream/libavformat/dss.c \ No newline at end of file diff --git a/libffmpeg-avformat/dtsdec.c b/libffmpeg-avformat/dtsdec.c new file mode 120000 index 0000000..5cce0a3 --- /dev/null +++ b/libffmpeg-avformat/dtsdec.c @@ -0,0 +1 @@ +../upstream/libavformat/dtsdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/dtshddec.c b/libffmpeg-avformat/dtshddec.c new file mode 120000 index 0000000..69f2ade --- /dev/null +++ b/libffmpeg-avformat/dtshddec.c @@ -0,0 +1 @@ +../upstream/libavformat/dtshddec.c \ No newline at end of file diff --git a/libffmpeg-avformat/dump.c b/libffmpeg-avformat/dump.c new file mode 120000 index 0000000..37f3d37 --- /dev/null +++ b/libffmpeg-avformat/dump.c @@ -0,0 +1 @@ +../upstream/libavformat/dump.c \ No newline at end of file diff --git a/libffmpeg-avformat/dv.c b/libffmpeg-avformat/dv.c new file mode 120000 index 0000000..f2dfc97 --- /dev/null +++ b/libffmpeg-avformat/dv.c @@ -0,0 +1 @@ +../upstream/libavformat/dv.c \ No newline at end of file diff --git a/libffmpeg-avformat/dv.h b/libffmpeg-avformat/dv.h new file mode 120000 index 0000000..8995aa9 --- /dev/null +++ b/libffmpeg-avformat/dv.h @@ -0,0 +1 @@ +../upstream/libavformat/dv.h \ No newline at end of file diff --git a/libffmpeg-avformat/dvbsub.c b/libffmpeg-avformat/dvbsub.c new file mode 120000 index 0000000..971cbe1 --- /dev/null +++ b/libffmpeg-avformat/dvbsub.c @@ -0,0 +1 @@ +../upstream/libavformat/dvbsub.c \ No newline at end of file diff --git a/libffmpeg-avformat/dvbtxt.c b/libffmpeg-avformat/dvbtxt.c new file mode 120000 index 0000000..bb6fa21 --- /dev/null +++ b/libffmpeg-avformat/dvbtxt.c @@ -0,0 +1 @@ +../upstream/libavformat/dvbtxt.c \ No newline at end of file diff --git a/libffmpeg-avformat/dvdclut.c b/libffmpeg-avformat/dvdclut.c new file mode 120000 index 0000000..13a1396 --- /dev/null +++ b/libffmpeg-avformat/dvdclut.c @@ -0,0 +1 @@ +../upstream/libavformat/dvdclut.c \ No newline at end of file diff --git a/libffmpeg-avformat/dvdclut.h b/libffmpeg-avformat/dvdclut.h new file mode 120000 index 0000000..45856da --- /dev/null +++ b/libffmpeg-avformat/dvdclut.h @@ -0,0 +1 @@ +../upstream/libavformat/dvdclut.h \ No newline at end of file diff --git a/libffmpeg-avformat/dvdvideodec.c b/libffmpeg-avformat/dvdvideodec.c new file mode 120000 index 0000000..aa826c8 --- /dev/null +++ b/libffmpeg-avformat/dvdvideodec.c @@ -0,0 +1 @@ +../upstream/libavformat/dvdvideodec.c \ No newline at end of file diff --git a/libffmpeg-avformat/dvenc.c b/libffmpeg-avformat/dvenc.c new file mode 120000 index 0000000..da76a35 --- /dev/null +++ b/libffmpeg-avformat/dvenc.c @@ -0,0 +1 @@ +../upstream/libavformat/dvenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/dxa.c b/libffmpeg-avformat/dxa.c new file mode 120000 index 0000000..7b84a21 --- /dev/null +++ b/libffmpeg-avformat/dxa.c @@ -0,0 +1 @@ +../upstream/libavformat/dxa.c \ No newline at end of file diff --git a/libffmpeg-avformat/eacdata.c b/libffmpeg-avformat/eacdata.c new file mode 120000 index 0000000..6ef1ca7 --- /dev/null +++ b/libffmpeg-avformat/eacdata.c @@ -0,0 +1 @@ +../upstream/libavformat/eacdata.c \ No newline at end of file diff --git a/libffmpeg-avformat/electronicarts.c b/libffmpeg-avformat/electronicarts.c new file mode 120000 index 0000000..8797434 --- /dev/null +++ b/libffmpeg-avformat/electronicarts.c @@ -0,0 +1 @@ +../upstream/libavformat/electronicarts.c \ No newline at end of file diff --git a/libffmpeg-avformat/epafdec.c b/libffmpeg-avformat/epafdec.c new file mode 120000 index 0000000..69c33e2 --- /dev/null +++ b/libffmpeg-avformat/epafdec.c @@ -0,0 +1 @@ +../upstream/libavformat/epafdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/evc.c b/libffmpeg-avformat/evc.c new file mode 120000 index 0000000..d69dd2a --- /dev/null +++ b/libffmpeg-avformat/evc.c @@ -0,0 +1 @@ +../upstream/libavformat/evc.c \ No newline at end of file diff --git a/libffmpeg-avformat/evc.h b/libffmpeg-avformat/evc.h new file mode 120000 index 0000000..29ddb32 --- /dev/null +++ b/libffmpeg-avformat/evc.h @@ -0,0 +1 @@ +../upstream/libavformat/evc.h \ No newline at end of file diff --git a/libffmpeg-avformat/evcdec.c b/libffmpeg-avformat/evcdec.c new file mode 120000 index 0000000..9af2bc9 --- /dev/null +++ b/libffmpeg-avformat/evcdec.c @@ -0,0 +1 @@ +../upstream/libavformat/evcdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/ffjni.c b/libffmpeg-avformat/ffjni.c new file mode 120000 index 0000000..59421ec --- /dev/null +++ b/libffmpeg-avformat/ffjni.c @@ -0,0 +1 @@ +../upstream/libavformat/ffjni.c \ No newline at end of file diff --git a/libffmpeg-avformat/ffmeta.h b/libffmpeg-avformat/ffmeta.h new file mode 120000 index 0000000..aa60267 --- /dev/null +++ b/libffmpeg-avformat/ffmeta.h @@ -0,0 +1 @@ +../upstream/libavformat/ffmeta.h \ No newline at end of file diff --git a/libffmpeg-avformat/ffmetadec.c b/libffmpeg-avformat/ffmetadec.c new file mode 120000 index 0000000..a530961 --- /dev/null +++ b/libffmpeg-avformat/ffmetadec.c @@ -0,0 +1 @@ +../upstream/libavformat/ffmetadec.c \ No newline at end of file diff --git a/libffmpeg-avformat/ffmetaenc.c b/libffmpeg-avformat/ffmetaenc.c new file mode 120000 index 0000000..5a7902d --- /dev/null +++ b/libffmpeg-avformat/ffmetaenc.c @@ -0,0 +1 @@ +../upstream/libavformat/ffmetaenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/fifo.c b/libffmpeg-avformat/fifo.c new file mode 120000 index 0000000..16fc97a --- /dev/null +++ b/libffmpeg-avformat/fifo.c @@ -0,0 +1 @@ +../upstream/libavformat/fifo.c \ No newline at end of file diff --git a/libffmpeg-avformat/file.c b/libffmpeg-avformat/file.c new file mode 120000 index 0000000..e018ff1 --- /dev/null +++ b/libffmpeg-avformat/file.c @@ -0,0 +1 @@ +../upstream/libavformat/file.c \ No newline at end of file diff --git a/libffmpeg-avformat/file_open.c b/libffmpeg-avformat/file_open.c new file mode 120000 index 0000000..a9d789b --- /dev/null +++ b/libffmpeg-avformat/file_open.c @@ -0,0 +1 @@ +../upstream/libavformat/file_open.c \ No newline at end of file diff --git a/libffmpeg-avformat/filmstripdec.c b/libffmpeg-avformat/filmstripdec.c new file mode 120000 index 0000000..22e14be --- /dev/null +++ b/libffmpeg-avformat/filmstripdec.c @@ -0,0 +1 @@ +../upstream/libavformat/filmstripdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/filmstripenc.c b/libffmpeg-avformat/filmstripenc.c new file mode 120000 index 0000000..d91d87e --- /dev/null +++ b/libffmpeg-avformat/filmstripenc.c @@ -0,0 +1 @@ +../upstream/libavformat/filmstripenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/fitsdec.c b/libffmpeg-avformat/fitsdec.c new file mode 120000 index 0000000..6bf88dc --- /dev/null +++ b/libffmpeg-avformat/fitsdec.c @@ -0,0 +1 @@ +../upstream/libavformat/fitsdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/fitsenc.c b/libffmpeg-avformat/fitsenc.c new file mode 120000 index 0000000..c52b9c0 --- /dev/null +++ b/libffmpeg-avformat/fitsenc.c @@ -0,0 +1 @@ +../upstream/libavformat/fitsenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/flac_picture.c b/libffmpeg-avformat/flac_picture.c new file mode 120000 index 0000000..540684f --- /dev/null +++ b/libffmpeg-avformat/flac_picture.c @@ -0,0 +1 @@ +../upstream/libavformat/flac_picture.c \ No newline at end of file diff --git a/libffmpeg-avformat/flac_picture.h b/libffmpeg-avformat/flac_picture.h new file mode 120000 index 0000000..f5efba3 --- /dev/null +++ b/libffmpeg-avformat/flac_picture.h @@ -0,0 +1 @@ +../upstream/libavformat/flac_picture.h \ No newline at end of file diff --git a/libffmpeg-avformat/flacdec.c b/libffmpeg-avformat/flacdec.c new file mode 120000 index 0000000..2d4bf1e --- /dev/null +++ b/libffmpeg-avformat/flacdec.c @@ -0,0 +1 @@ +../upstream/libavformat/flacdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/flacenc.c b/libffmpeg-avformat/flacenc.c new file mode 120000 index 0000000..18fdc7e --- /dev/null +++ b/libffmpeg-avformat/flacenc.c @@ -0,0 +1 @@ +../upstream/libavformat/flacenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/flacenc.h b/libffmpeg-avformat/flacenc.h new file mode 120000 index 0000000..e745f43 --- /dev/null +++ b/libffmpeg-avformat/flacenc.h @@ -0,0 +1 @@ +../upstream/libavformat/flacenc.h \ No newline at end of file diff --git a/libffmpeg-avformat/flacenc_header.c b/libffmpeg-avformat/flacenc_header.c new file mode 120000 index 0000000..b97583b --- /dev/null +++ b/libffmpeg-avformat/flacenc_header.c @@ -0,0 +1 @@ +../upstream/libavformat/flacenc_header.c \ No newline at end of file diff --git a/libffmpeg-avformat/flic.c b/libffmpeg-avformat/flic.c new file mode 120000 index 0000000..8596fd4 --- /dev/null +++ b/libffmpeg-avformat/flic.c @@ -0,0 +1 @@ +../upstream/libavformat/flic.c \ No newline at end of file diff --git a/libffmpeg-avformat/flv.h b/libffmpeg-avformat/flv.h new file mode 120000 index 0000000..39da5e0 --- /dev/null +++ b/libffmpeg-avformat/flv.h @@ -0,0 +1 @@ +../upstream/libavformat/flv.h \ No newline at end of file diff --git a/libffmpeg-avformat/flvdec.c b/libffmpeg-avformat/flvdec.c new file mode 120000 index 0000000..baef201 --- /dev/null +++ b/libffmpeg-avformat/flvdec.c @@ -0,0 +1 @@ +../upstream/libavformat/flvdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/flvenc.c b/libffmpeg-avformat/flvenc.c new file mode 120000 index 0000000..730b333 --- /dev/null +++ b/libffmpeg-avformat/flvenc.c @@ -0,0 +1 @@ +../upstream/libavformat/flvenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/format.c b/libffmpeg-avformat/format.c new file mode 120000 index 0000000..5006f65 --- /dev/null +++ b/libffmpeg-avformat/format.c @@ -0,0 +1 @@ +../upstream/libavformat/format.c \ No newline at end of file diff --git a/libffmpeg-avformat/framecrcenc.c b/libffmpeg-avformat/framecrcenc.c new file mode 120000 index 0000000..9289767 --- /dev/null +++ b/libffmpeg-avformat/framecrcenc.c @@ -0,0 +1 @@ +../upstream/libavformat/framecrcenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/framehash.c b/libffmpeg-avformat/framehash.c new file mode 120000 index 0000000..9968553 --- /dev/null +++ b/libffmpeg-avformat/framehash.c @@ -0,0 +1 @@ +../upstream/libavformat/framehash.c \ No newline at end of file diff --git a/libffmpeg-avformat/frmdec.c b/libffmpeg-avformat/frmdec.c new file mode 120000 index 0000000..c0a80a2 --- /dev/null +++ b/libffmpeg-avformat/frmdec.c @@ -0,0 +1 @@ +../upstream/libavformat/frmdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/fsb.c b/libffmpeg-avformat/fsb.c new file mode 120000 index 0000000..aff5060 --- /dev/null +++ b/libffmpeg-avformat/fsb.c @@ -0,0 +1 @@ +../upstream/libavformat/fsb.c \ No newline at end of file diff --git a/libffmpeg-avformat/ftp.c b/libffmpeg-avformat/ftp.c new file mode 120000 index 0000000..1b8d5ce --- /dev/null +++ b/libffmpeg-avformat/ftp.c @@ -0,0 +1 @@ +../upstream/libavformat/ftp.c \ No newline at end of file diff --git a/libffmpeg-avformat/fwse.c b/libffmpeg-avformat/fwse.c new file mode 120000 index 0000000..661f00f --- /dev/null +++ b/libffmpeg-avformat/fwse.c @@ -0,0 +1 @@ +../upstream/libavformat/fwse.c \ No newline at end of file diff --git a/libffmpeg-avformat/g722.c b/libffmpeg-avformat/g722.c new file mode 120000 index 0000000..3bd691d --- /dev/null +++ b/libffmpeg-avformat/g722.c @@ -0,0 +1 @@ +../upstream/libavformat/g722.c \ No newline at end of file diff --git a/libffmpeg-avformat/g723_1.c b/libffmpeg-avformat/g723_1.c new file mode 120000 index 0000000..c7ca0a0 --- /dev/null +++ b/libffmpeg-avformat/g723_1.c @@ -0,0 +1 @@ +../upstream/libavformat/g723_1.c \ No newline at end of file diff --git a/libffmpeg-avformat/g726.c b/libffmpeg-avformat/g726.c new file mode 120000 index 0000000..e50c082 --- /dev/null +++ b/libffmpeg-avformat/g726.c @@ -0,0 +1 @@ +../upstream/libavformat/g726.c \ No newline at end of file diff --git a/libffmpeg-avformat/g729dec.c b/libffmpeg-avformat/g729dec.c new file mode 120000 index 0000000..a9d8794 --- /dev/null +++ b/libffmpeg-avformat/g729dec.c @@ -0,0 +1 @@ +../upstream/libavformat/g729dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/gdv.c b/libffmpeg-avformat/gdv.c new file mode 120000 index 0000000..6f24e91 --- /dev/null +++ b/libffmpeg-avformat/gdv.c @@ -0,0 +1 @@ +../upstream/libavformat/gdv.c \ No newline at end of file diff --git a/libffmpeg-avformat/genh.c b/libffmpeg-avformat/genh.c new file mode 120000 index 0000000..a954fb5 --- /dev/null +++ b/libffmpeg-avformat/genh.c @@ -0,0 +1 @@ +../upstream/libavformat/genh.c \ No newline at end of file diff --git a/libffmpeg-avformat/gif.c b/libffmpeg-avformat/gif.c new file mode 120000 index 0000000..2249097 --- /dev/null +++ b/libffmpeg-avformat/gif.c @@ -0,0 +1 @@ +../upstream/libavformat/gif.c \ No newline at end of file diff --git a/libffmpeg-avformat/gifdec.c b/libffmpeg-avformat/gifdec.c new file mode 120000 index 0000000..f83a1f6 --- /dev/null +++ b/libffmpeg-avformat/gifdec.c @@ -0,0 +1 @@ +../upstream/libavformat/gifdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/golomb_tab.c b/libffmpeg-avformat/golomb_tab.c new file mode 120000 index 0000000..32c9d5e --- /dev/null +++ b/libffmpeg-avformat/golomb_tab.c @@ -0,0 +1 @@ +../upstream/libavformat/golomb_tab.c \ No newline at end of file diff --git a/libffmpeg-avformat/gopher.c b/libffmpeg-avformat/gopher.c new file mode 120000 index 0000000..1716f12 --- /dev/null +++ b/libffmpeg-avformat/gopher.c @@ -0,0 +1 @@ +../upstream/libavformat/gopher.c \ No newline at end of file diff --git a/libffmpeg-avformat/gsmdec.c b/libffmpeg-avformat/gsmdec.c new file mode 120000 index 0000000..f15af7c --- /dev/null +++ b/libffmpeg-avformat/gsmdec.c @@ -0,0 +1 @@ +../upstream/libavformat/gsmdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/gxf.c b/libffmpeg-avformat/gxf.c new file mode 120000 index 0000000..b5af65a --- /dev/null +++ b/libffmpeg-avformat/gxf.c @@ -0,0 +1 @@ +../upstream/libavformat/gxf.c \ No newline at end of file diff --git a/libffmpeg-avformat/gxf.h b/libffmpeg-avformat/gxf.h new file mode 120000 index 0000000..e706504 --- /dev/null +++ b/libffmpeg-avformat/gxf.h @@ -0,0 +1 @@ +../upstream/libavformat/gxf.h \ No newline at end of file diff --git a/libffmpeg-avformat/gxfenc.c b/libffmpeg-avformat/gxfenc.c new file mode 120000 index 0000000..e7dcbc8 --- /dev/null +++ b/libffmpeg-avformat/gxfenc.c @@ -0,0 +1 @@ +../upstream/libavformat/gxfenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/h261dec.c b/libffmpeg-avformat/h261dec.c new file mode 120000 index 0000000..9d16cf8 --- /dev/null +++ b/libffmpeg-avformat/h261dec.c @@ -0,0 +1 @@ +../upstream/libavformat/h261dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/h263dec.c b/libffmpeg-avformat/h263dec.c new file mode 120000 index 0000000..e8342f9 --- /dev/null +++ b/libffmpeg-avformat/h263dec.c @@ -0,0 +1 @@ +../upstream/libavformat/h263dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/h264dec.c b/libffmpeg-avformat/h264dec.c new file mode 120000 index 0000000..0131fda --- /dev/null +++ b/libffmpeg-avformat/h264dec.c @@ -0,0 +1 @@ +../upstream/libavformat/h264dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/hashenc.c b/libffmpeg-avformat/hashenc.c new file mode 120000 index 0000000..a6533fd --- /dev/null +++ b/libffmpeg-avformat/hashenc.c @@ -0,0 +1 @@ +../upstream/libavformat/hashenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/hca.c b/libffmpeg-avformat/hca.c new file mode 120000 index 0000000..c994c20 --- /dev/null +++ b/libffmpeg-avformat/hca.c @@ -0,0 +1 @@ +../upstream/libavformat/hca.c \ No newline at end of file diff --git a/libffmpeg-avformat/hcom.c b/libffmpeg-avformat/hcom.c new file mode 120000 index 0000000..dd6716b --- /dev/null +++ b/libffmpeg-avformat/hcom.c @@ -0,0 +1 @@ +../upstream/libavformat/hcom.c \ No newline at end of file diff --git a/libffmpeg-avformat/hdsenc.c b/libffmpeg-avformat/hdsenc.c new file mode 120000 index 0000000..5154b59 --- /dev/null +++ b/libffmpeg-avformat/hdsenc.c @@ -0,0 +1 @@ +../upstream/libavformat/hdsenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/hevc.c b/libffmpeg-avformat/hevc.c new file mode 120000 index 0000000..ca05e0a --- /dev/null +++ b/libffmpeg-avformat/hevc.c @@ -0,0 +1 @@ +../upstream/libavformat/hevc.c \ No newline at end of file diff --git a/libffmpeg-avformat/hevc.h b/libffmpeg-avformat/hevc.h new file mode 120000 index 0000000..cf38608 --- /dev/null +++ b/libffmpeg-avformat/hevc.h @@ -0,0 +1 @@ +../upstream/libavformat/hevc.h \ No newline at end of file diff --git a/libffmpeg-avformat/hevcdec.c b/libffmpeg-avformat/hevcdec.c new file mode 120000 index 0000000..aa5f338 --- /dev/null +++ b/libffmpeg-avformat/hevcdec.c @@ -0,0 +1 @@ +../upstream/libavformat/hevcdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/hls.c b/libffmpeg-avformat/hls.c new file mode 120000 index 0000000..6a84ea8 --- /dev/null +++ b/libffmpeg-avformat/hls.c @@ -0,0 +1 @@ +../upstream/libavformat/hls.c \ No newline at end of file diff --git a/libffmpeg-avformat/hls_sample_encryption.c b/libffmpeg-avformat/hls_sample_encryption.c new file mode 120000 index 0000000..85f0a1a --- /dev/null +++ b/libffmpeg-avformat/hls_sample_encryption.c @@ -0,0 +1 @@ +../upstream/libavformat/hls_sample_encryption.c \ No newline at end of file diff --git a/libffmpeg-avformat/hls_sample_encryption.h b/libffmpeg-avformat/hls_sample_encryption.h new file mode 120000 index 0000000..bf969fe --- /dev/null +++ b/libffmpeg-avformat/hls_sample_encryption.h @@ -0,0 +1 @@ +../upstream/libavformat/hls_sample_encryption.h \ No newline at end of file diff --git a/libffmpeg-avformat/hlsenc.c b/libffmpeg-avformat/hlsenc.c new file mode 120000 index 0000000..5aee164 --- /dev/null +++ b/libffmpeg-avformat/hlsenc.c @@ -0,0 +1 @@ +../upstream/libavformat/hlsenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/hlsplaylist.c b/libffmpeg-avformat/hlsplaylist.c new file mode 120000 index 0000000..5442998 --- /dev/null +++ b/libffmpeg-avformat/hlsplaylist.c @@ -0,0 +1 @@ +../upstream/libavformat/hlsplaylist.c \ No newline at end of file diff --git a/libffmpeg-avformat/hlsplaylist.h b/libffmpeg-avformat/hlsplaylist.h new file mode 120000 index 0000000..0eff87e --- /dev/null +++ b/libffmpeg-avformat/hlsplaylist.h @@ -0,0 +1 @@ +../upstream/libavformat/hlsplaylist.h \ No newline at end of file diff --git a/libffmpeg-avformat/hlsproto.c b/libffmpeg-avformat/hlsproto.c new file mode 120000 index 0000000..261ab23 --- /dev/null +++ b/libffmpeg-avformat/hlsproto.c @@ -0,0 +1 @@ +../upstream/libavformat/hlsproto.c \ No newline at end of file diff --git a/libffmpeg-avformat/hnm.c b/libffmpeg-avformat/hnm.c new file mode 120000 index 0000000..6345f80 --- /dev/null +++ b/libffmpeg-avformat/hnm.c @@ -0,0 +1 @@ +../upstream/libavformat/hnm.c \ No newline at end of file diff --git a/libffmpeg-avformat/http.c b/libffmpeg-avformat/http.c new file mode 120000 index 0000000..d09d7d7 --- /dev/null +++ b/libffmpeg-avformat/http.c @@ -0,0 +1 @@ +../upstream/libavformat/http.c \ No newline at end of file diff --git a/libffmpeg-avformat/http.h b/libffmpeg-avformat/http.h new file mode 120000 index 0000000..217b3e1 --- /dev/null +++ b/libffmpeg-avformat/http.h @@ -0,0 +1 @@ +../upstream/libavformat/http.h \ No newline at end of file diff --git a/libffmpeg-avformat/httpauth.c b/libffmpeg-avformat/httpauth.c new file mode 120000 index 0000000..44a8eda --- /dev/null +++ b/libffmpeg-avformat/httpauth.c @@ -0,0 +1 @@ +../upstream/libavformat/httpauth.c \ No newline at end of file diff --git a/libffmpeg-avformat/httpauth.h b/libffmpeg-avformat/httpauth.h new file mode 120000 index 0000000..90135e9 --- /dev/null +++ b/libffmpeg-avformat/httpauth.h @@ -0,0 +1 @@ +../upstream/libavformat/httpauth.h \ No newline at end of file diff --git a/libffmpeg-avformat/iamf.c b/libffmpeg-avformat/iamf.c new file mode 120000 index 0000000..91de653 --- /dev/null +++ b/libffmpeg-avformat/iamf.c @@ -0,0 +1 @@ +../upstream/libavformat/iamf.c \ No newline at end of file diff --git a/libffmpeg-avformat/iamf.h b/libffmpeg-avformat/iamf.h new file mode 120000 index 0000000..3110f67 --- /dev/null +++ b/libffmpeg-avformat/iamf.h @@ -0,0 +1 @@ +../upstream/libavformat/iamf.h \ No newline at end of file diff --git a/libffmpeg-avformat/iamf_parse.c b/libffmpeg-avformat/iamf_parse.c new file mode 120000 index 0000000..afbaac8 --- /dev/null +++ b/libffmpeg-avformat/iamf_parse.c @@ -0,0 +1 @@ +../upstream/libavformat/iamf_parse.c \ No newline at end of file diff --git a/libffmpeg-avformat/iamf_parse.h b/libffmpeg-avformat/iamf_parse.h new file mode 120000 index 0000000..af4a951 --- /dev/null +++ b/libffmpeg-avformat/iamf_parse.h @@ -0,0 +1 @@ +../upstream/libavformat/iamf_parse.h \ No newline at end of file diff --git a/libffmpeg-avformat/iamf_reader.c b/libffmpeg-avformat/iamf_reader.c new file mode 120000 index 0000000..3194c99 --- /dev/null +++ b/libffmpeg-avformat/iamf_reader.c @@ -0,0 +1 @@ +../upstream/libavformat/iamf_reader.c \ No newline at end of file diff --git a/libffmpeg-avformat/iamf_reader.h b/libffmpeg-avformat/iamf_reader.h new file mode 120000 index 0000000..8161e0a --- /dev/null +++ b/libffmpeg-avformat/iamf_reader.h @@ -0,0 +1 @@ +../upstream/libavformat/iamf_reader.h \ No newline at end of file diff --git a/libffmpeg-avformat/iamf_writer.c b/libffmpeg-avformat/iamf_writer.c new file mode 120000 index 0000000..aa92fed --- /dev/null +++ b/libffmpeg-avformat/iamf_writer.c @@ -0,0 +1 @@ +../upstream/libavformat/iamf_writer.c \ No newline at end of file diff --git a/libffmpeg-avformat/iamf_writer.h b/libffmpeg-avformat/iamf_writer.h new file mode 120000 index 0000000..6b8e6d7 --- /dev/null +++ b/libffmpeg-avformat/iamf_writer.h @@ -0,0 +1 @@ +../upstream/libavformat/iamf_writer.h \ No newline at end of file diff --git a/libffmpeg-avformat/iamfdec.c b/libffmpeg-avformat/iamfdec.c new file mode 120000 index 0000000..fc1f6cc --- /dev/null +++ b/libffmpeg-avformat/iamfdec.c @@ -0,0 +1 @@ +../upstream/libavformat/iamfdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/iamfenc.c b/libffmpeg-avformat/iamfenc.c new file mode 120000 index 0000000..bc6e95f --- /dev/null +++ b/libffmpeg-avformat/iamfenc.c @@ -0,0 +1 @@ +../upstream/libavformat/iamfenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/icecast.c b/libffmpeg-avformat/icecast.c new file mode 120000 index 0000000..8163bf6 --- /dev/null +++ b/libffmpeg-avformat/icecast.c @@ -0,0 +1 @@ +../upstream/libavformat/icecast.c \ No newline at end of file diff --git a/libffmpeg-avformat/icodec.c b/libffmpeg-avformat/icodec.c new file mode 120000 index 0000000..5d2db60 --- /dev/null +++ b/libffmpeg-avformat/icodec.c @@ -0,0 +1 @@ +../upstream/libavformat/icodec.c \ No newline at end of file diff --git a/libffmpeg-avformat/icoenc.c b/libffmpeg-avformat/icoenc.c new file mode 120000 index 0000000..827bdaf --- /dev/null +++ b/libffmpeg-avformat/icoenc.c @@ -0,0 +1 @@ +../upstream/libavformat/icoenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/id3v1.c b/libffmpeg-avformat/id3v1.c new file mode 120000 index 0000000..601c1da --- /dev/null +++ b/libffmpeg-avformat/id3v1.c @@ -0,0 +1 @@ +../upstream/libavformat/id3v1.c \ No newline at end of file diff --git a/libffmpeg-avformat/id3v1.h b/libffmpeg-avformat/id3v1.h new file mode 120000 index 0000000..28d3fee --- /dev/null +++ b/libffmpeg-avformat/id3v1.h @@ -0,0 +1 @@ +../upstream/libavformat/id3v1.h \ No newline at end of file diff --git a/libffmpeg-avformat/id3v2.c b/libffmpeg-avformat/id3v2.c new file mode 120000 index 0000000..3b2309d --- /dev/null +++ b/libffmpeg-avformat/id3v2.c @@ -0,0 +1 @@ +../upstream/libavformat/id3v2.c \ No newline at end of file diff --git a/libffmpeg-avformat/id3v2.h b/libffmpeg-avformat/id3v2.h new file mode 120000 index 0000000..89ba284 --- /dev/null +++ b/libffmpeg-avformat/id3v2.h @@ -0,0 +1 @@ +../upstream/libavformat/id3v2.h \ No newline at end of file diff --git a/libffmpeg-avformat/id3v2enc.c b/libffmpeg-avformat/id3v2enc.c new file mode 120000 index 0000000..0bab339 --- /dev/null +++ b/libffmpeg-avformat/id3v2enc.c @@ -0,0 +1 @@ +../upstream/libavformat/id3v2enc.c \ No newline at end of file diff --git a/libffmpeg-avformat/idcin.c b/libffmpeg-avformat/idcin.c new file mode 120000 index 0000000..db619a0 --- /dev/null +++ b/libffmpeg-avformat/idcin.c @@ -0,0 +1 @@ +../upstream/libavformat/idcin.c \ No newline at end of file diff --git a/libffmpeg-avformat/idroqdec.c b/libffmpeg-avformat/idroqdec.c new file mode 120000 index 0000000..78ff4bd --- /dev/null +++ b/libffmpeg-avformat/idroqdec.c @@ -0,0 +1 @@ +../upstream/libavformat/idroqdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/idroqenc.c b/libffmpeg-avformat/idroqenc.c new file mode 120000 index 0000000..2ef72c9 --- /dev/null +++ b/libffmpeg-avformat/idroqenc.c @@ -0,0 +1 @@ +../upstream/libavformat/idroqenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/iff.c b/libffmpeg-avformat/iff.c new file mode 120000 index 0000000..d8d8721 --- /dev/null +++ b/libffmpeg-avformat/iff.c @@ -0,0 +1 @@ +../upstream/libavformat/iff.c \ No newline at end of file diff --git a/libffmpeg-avformat/ifv.c b/libffmpeg-avformat/ifv.c new file mode 120000 index 0000000..ab7991f --- /dev/null +++ b/libffmpeg-avformat/ifv.c @@ -0,0 +1 @@ +../upstream/libavformat/ifv.c \ No newline at end of file diff --git a/libffmpeg-avformat/ilbc.c b/libffmpeg-avformat/ilbc.c new file mode 120000 index 0000000..cca697c --- /dev/null +++ b/libffmpeg-avformat/ilbc.c @@ -0,0 +1 @@ +../upstream/libavformat/ilbc.c \ No newline at end of file diff --git a/libffmpeg-avformat/imf.h b/libffmpeg-avformat/imf.h new file mode 120000 index 0000000..2f3bccd --- /dev/null +++ b/libffmpeg-avformat/imf.h @@ -0,0 +1 @@ +../upstream/libavformat/imf.h \ No newline at end of file diff --git a/libffmpeg-avformat/imf_cpl.c b/libffmpeg-avformat/imf_cpl.c new file mode 120000 index 0000000..5a688ba --- /dev/null +++ b/libffmpeg-avformat/imf_cpl.c @@ -0,0 +1 @@ +../upstream/libavformat/imf_cpl.c \ No newline at end of file diff --git a/libffmpeg-avformat/imfdec.c b/libffmpeg-avformat/imfdec.c new file mode 120000 index 0000000..dbc6cc9 --- /dev/null +++ b/libffmpeg-avformat/imfdec.c @@ -0,0 +1 @@ +../upstream/libavformat/imfdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/img2.c b/libffmpeg-avformat/img2.c new file mode 120000 index 0000000..c07a75c --- /dev/null +++ b/libffmpeg-avformat/img2.c @@ -0,0 +1 @@ +../upstream/libavformat/img2.c \ No newline at end of file diff --git a/libffmpeg-avformat/img2.h b/libffmpeg-avformat/img2.h new file mode 120000 index 0000000..b4ccd05 --- /dev/null +++ b/libffmpeg-avformat/img2.h @@ -0,0 +1 @@ +../upstream/libavformat/img2.h \ No newline at end of file diff --git a/libffmpeg-avformat/img2_alias_pix.c b/libffmpeg-avformat/img2_alias_pix.c new file mode 120000 index 0000000..0455b77 --- /dev/null +++ b/libffmpeg-avformat/img2_alias_pix.c @@ -0,0 +1 @@ +../upstream/libavformat/img2_alias_pix.c \ No newline at end of file diff --git a/libffmpeg-avformat/img2_brender_pix.c b/libffmpeg-avformat/img2_brender_pix.c new file mode 120000 index 0000000..f960f4f --- /dev/null +++ b/libffmpeg-avformat/img2_brender_pix.c @@ -0,0 +1 @@ +../upstream/libavformat/img2_brender_pix.c \ No newline at end of file diff --git a/libffmpeg-avformat/img2dec.c b/libffmpeg-avformat/img2dec.c new file mode 120000 index 0000000..2a059cb --- /dev/null +++ b/libffmpeg-avformat/img2dec.c @@ -0,0 +1 @@ +../upstream/libavformat/img2dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/img2enc.c b/libffmpeg-avformat/img2enc.c new file mode 120000 index 0000000..55a4dac --- /dev/null +++ b/libffmpeg-avformat/img2enc.c @@ -0,0 +1 @@ +../upstream/libavformat/img2enc.c \ No newline at end of file diff --git a/libffmpeg-avformat/imx.c b/libffmpeg-avformat/imx.c new file mode 120000 index 0000000..5c897af --- /dev/null +++ b/libffmpeg-avformat/imx.c @@ -0,0 +1 @@ +../upstream/libavformat/imx.c \ No newline at end of file diff --git a/libffmpeg-avformat/ingenientdec.c b/libffmpeg-avformat/ingenientdec.c new file mode 120000 index 0000000..6323f15 --- /dev/null +++ b/libffmpeg-avformat/ingenientdec.c @@ -0,0 +1 @@ +../upstream/libavformat/ingenientdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/internal.h b/libffmpeg-avformat/internal.h new file mode 120000 index 0000000..9240581 --- /dev/null +++ b/libffmpeg-avformat/internal.h @@ -0,0 +1 @@ +../upstream/libavformat/internal.h \ No newline at end of file diff --git a/libffmpeg-avformat/ip.c b/libffmpeg-avformat/ip.c new file mode 120000 index 0000000..1b4f247 --- /dev/null +++ b/libffmpeg-avformat/ip.c @@ -0,0 +1 @@ +../upstream/libavformat/ip.c \ No newline at end of file diff --git a/libffmpeg-avformat/ip.h b/libffmpeg-avformat/ip.h new file mode 120000 index 0000000..a35c0a2 --- /dev/null +++ b/libffmpeg-avformat/ip.h @@ -0,0 +1 @@ +../upstream/libavformat/ip.h \ No newline at end of file diff --git a/libffmpeg-avformat/ipfsgateway.c b/libffmpeg-avformat/ipfsgateway.c new file mode 120000 index 0000000..6dabd69 --- /dev/null +++ b/libffmpeg-avformat/ipfsgateway.c @@ -0,0 +1 @@ +../upstream/libavformat/ipfsgateway.c \ No newline at end of file diff --git a/libffmpeg-avformat/ipmovie.c b/libffmpeg-avformat/ipmovie.c new file mode 120000 index 0000000..64c20b8 --- /dev/null +++ b/libffmpeg-avformat/ipmovie.c @@ -0,0 +1 @@ +../upstream/libavformat/ipmovie.c \ No newline at end of file diff --git a/libffmpeg-avformat/ipudec.c b/libffmpeg-avformat/ipudec.c new file mode 120000 index 0000000..72d3777 --- /dev/null +++ b/libffmpeg-avformat/ipudec.c @@ -0,0 +1 @@ +../upstream/libavformat/ipudec.c \ No newline at end of file diff --git a/libffmpeg-avformat/ircam.c b/libffmpeg-avformat/ircam.c new file mode 120000 index 0000000..1517b5e --- /dev/null +++ b/libffmpeg-avformat/ircam.c @@ -0,0 +1 @@ +../upstream/libavformat/ircam.c \ No newline at end of file diff --git a/libffmpeg-avformat/ircam.h b/libffmpeg-avformat/ircam.h new file mode 120000 index 0000000..5b5751b --- /dev/null +++ b/libffmpeg-avformat/ircam.h @@ -0,0 +1 @@ +../upstream/libavformat/ircam.h \ No newline at end of file diff --git a/libffmpeg-avformat/ircamdec.c b/libffmpeg-avformat/ircamdec.c new file mode 120000 index 0000000..b90fb6c --- /dev/null +++ b/libffmpeg-avformat/ircamdec.c @@ -0,0 +1 @@ +../upstream/libavformat/ircamdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/ircamenc.c b/libffmpeg-avformat/ircamenc.c new file mode 120000 index 0000000..bbbcee4 --- /dev/null +++ b/libffmpeg-avformat/ircamenc.c @@ -0,0 +1 @@ +../upstream/libavformat/ircamenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/isom.c b/libffmpeg-avformat/isom.c new file mode 120000 index 0000000..3c1e5dd --- /dev/null +++ b/libffmpeg-avformat/isom.c @@ -0,0 +1 @@ +../upstream/libavformat/isom.c \ No newline at end of file diff --git a/libffmpeg-avformat/isom.h b/libffmpeg-avformat/isom.h new file mode 120000 index 0000000..200d677 --- /dev/null +++ b/libffmpeg-avformat/isom.h @@ -0,0 +1 @@ +../upstream/libavformat/isom.h \ No newline at end of file diff --git a/libffmpeg-avformat/isom_tags.c b/libffmpeg-avformat/isom_tags.c new file mode 120000 index 0000000..a7bfe31 --- /dev/null +++ b/libffmpeg-avformat/isom_tags.c @@ -0,0 +1 @@ +../upstream/libavformat/isom_tags.c \ No newline at end of file diff --git a/libffmpeg-avformat/iss.c b/libffmpeg-avformat/iss.c new file mode 120000 index 0000000..f7764ba --- /dev/null +++ b/libffmpeg-avformat/iss.c @@ -0,0 +1 @@ +../upstream/libavformat/iss.c \ No newline at end of file diff --git a/libffmpeg-avformat/iv8.c b/libffmpeg-avformat/iv8.c new file mode 120000 index 0000000..3993e0e --- /dev/null +++ b/libffmpeg-avformat/iv8.c @@ -0,0 +1 @@ +../upstream/libavformat/iv8.c \ No newline at end of file diff --git a/libffmpeg-avformat/ivfdec.c b/libffmpeg-avformat/ivfdec.c new file mode 120000 index 0000000..38dfc22 --- /dev/null +++ b/libffmpeg-avformat/ivfdec.c @@ -0,0 +1 @@ +../upstream/libavformat/ivfdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/ivfenc.c b/libffmpeg-avformat/ivfenc.c new file mode 120000 index 0000000..fb19099 --- /dev/null +++ b/libffmpeg-avformat/ivfenc.c @@ -0,0 +1 @@ +../upstream/libavformat/ivfenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/jacosubdec.c b/libffmpeg-avformat/jacosubdec.c new file mode 120000 index 0000000..d963082 --- /dev/null +++ b/libffmpeg-avformat/jacosubdec.c @@ -0,0 +1 @@ +../upstream/libavformat/jacosubdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/jacosubenc.c b/libffmpeg-avformat/jacosubenc.c new file mode 120000 index 0000000..0841208 --- /dev/null +++ b/libffmpeg-avformat/jacosubenc.c @@ -0,0 +1 @@ +../upstream/libavformat/jacosubenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/jpegtables.c b/libffmpeg-avformat/jpegtables.c new file mode 120000 index 0000000..aef44fc --- /dev/null +++ b/libffmpeg-avformat/jpegtables.c @@ -0,0 +1 @@ +../upstream/libavformat/jpegtables.c \ No newline at end of file diff --git a/libffmpeg-avformat/jpegxl_anim_dec.c b/libffmpeg-avformat/jpegxl_anim_dec.c new file mode 120000 index 0000000..ea9559f --- /dev/null +++ b/libffmpeg-avformat/jpegxl_anim_dec.c @@ -0,0 +1 @@ +../upstream/libavformat/jpegxl_anim_dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/jpegxl_parse.c b/libffmpeg-avformat/jpegxl_parse.c new file mode 120000 index 0000000..978eb18 --- /dev/null +++ b/libffmpeg-avformat/jpegxl_parse.c @@ -0,0 +1 @@ +../upstream/libavformat/jpegxl_parse.c \ No newline at end of file diff --git a/libffmpeg-avformat/jvdec.c b/libffmpeg-avformat/jvdec.c new file mode 120000 index 0000000..66318ac --- /dev/null +++ b/libffmpeg-avformat/jvdec.c @@ -0,0 +1 @@ +../upstream/libavformat/jvdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/kvag.c b/libffmpeg-avformat/kvag.c new file mode 120000 index 0000000..ed87c5f --- /dev/null +++ b/libffmpeg-avformat/kvag.c @@ -0,0 +1 @@ +../upstream/libavformat/kvag.c \ No newline at end of file diff --git a/libffmpeg-avformat/lafdec.c b/libffmpeg-avformat/lafdec.c new file mode 120000 index 0000000..c1ba597 --- /dev/null +++ b/libffmpeg-avformat/lafdec.c @@ -0,0 +1 @@ +../upstream/libavformat/lafdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/latmenc.c b/libffmpeg-avformat/latmenc.c new file mode 120000 index 0000000..3aaff1b --- /dev/null +++ b/libffmpeg-avformat/latmenc.c @@ -0,0 +1 @@ +../upstream/libavformat/latmenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/lc3.c b/libffmpeg-avformat/lc3.c new file mode 120000 index 0000000..c54f5d2 --- /dev/null +++ b/libffmpeg-avformat/lc3.c @@ -0,0 +1 @@ +../upstream/libavformat/lc3.c \ No newline at end of file diff --git a/libffmpeg-avformat/libamqp.c b/libffmpeg-avformat/libamqp.c new file mode 120000 index 0000000..62f68f5 --- /dev/null +++ b/libffmpeg-avformat/libamqp.c @@ -0,0 +1 @@ +../upstream/libavformat/libamqp.c \ No newline at end of file diff --git a/libffmpeg-avformat/libgme.c b/libffmpeg-avformat/libgme.c new file mode 120000 index 0000000..624df10 --- /dev/null +++ b/libffmpeg-avformat/libgme.c @@ -0,0 +1 @@ +../upstream/libavformat/libgme.c \ No newline at end of file diff --git a/libffmpeg-avformat/libmodplug.c b/libffmpeg-avformat/libmodplug.c new file mode 120000 index 0000000..88e24a9 --- /dev/null +++ b/libffmpeg-avformat/libmodplug.c @@ -0,0 +1 @@ +../upstream/libavformat/libmodplug.c \ No newline at end of file diff --git a/libffmpeg-avformat/libopenmpt.c b/libffmpeg-avformat/libopenmpt.c new file mode 120000 index 0000000..0caf710 --- /dev/null +++ b/libffmpeg-avformat/libopenmpt.c @@ -0,0 +1 @@ +../upstream/libavformat/libopenmpt.c \ No newline at end of file diff --git a/libffmpeg-avformat/librist.c b/libffmpeg-avformat/librist.c new file mode 120000 index 0000000..a6d254d --- /dev/null +++ b/libffmpeg-avformat/librist.c @@ -0,0 +1 @@ +../upstream/libavformat/librist.c \ No newline at end of file diff --git a/libffmpeg-avformat/librtmp.c b/libffmpeg-avformat/librtmp.c new file mode 120000 index 0000000..000dcd2 --- /dev/null +++ b/libffmpeg-avformat/librtmp.c @@ -0,0 +1 @@ +../upstream/libavformat/librtmp.c \ No newline at end of file diff --git a/libffmpeg-avformat/libsmbclient.c b/libffmpeg-avformat/libsmbclient.c new file mode 120000 index 0000000..e1bedc3 --- /dev/null +++ b/libffmpeg-avformat/libsmbclient.c @@ -0,0 +1 @@ +../upstream/libavformat/libsmbclient.c \ No newline at end of file diff --git a/libffmpeg-avformat/libsrt.c b/libffmpeg-avformat/libsrt.c new file mode 120000 index 0000000..646f305 --- /dev/null +++ b/libffmpeg-avformat/libsrt.c @@ -0,0 +1 @@ +../upstream/libavformat/libsrt.c \ No newline at end of file diff --git a/libffmpeg-avformat/libssh.c b/libffmpeg-avformat/libssh.c new file mode 120000 index 0000000..c2991d3 --- /dev/null +++ b/libffmpeg-avformat/libssh.c @@ -0,0 +1 @@ +../upstream/libavformat/libssh.c \ No newline at end of file diff --git a/libffmpeg-avformat/libzmq.c b/libffmpeg-avformat/libzmq.c new file mode 120000 index 0000000..2ee1cdf --- /dev/null +++ b/libffmpeg-avformat/libzmq.c @@ -0,0 +1 @@ +../upstream/libavformat/libzmq.c \ No newline at end of file diff --git a/libffmpeg-avformat/lmlm4.c b/libffmpeg-avformat/lmlm4.c new file mode 120000 index 0000000..29732ea --- /dev/null +++ b/libffmpeg-avformat/lmlm4.c @@ -0,0 +1 @@ +../upstream/libavformat/lmlm4.c \ No newline at end of file diff --git a/libffmpeg-avformat/loasdec.c b/libffmpeg-avformat/loasdec.c new file mode 120000 index 0000000..7502845 --- /dev/null +++ b/libffmpeg-avformat/loasdec.c @@ -0,0 +1 @@ +../upstream/libavformat/loasdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/log2_tab.c b/libffmpeg-avformat/log2_tab.c new file mode 120000 index 0000000..1bf2634 --- /dev/null +++ b/libffmpeg-avformat/log2_tab.c @@ -0,0 +1 @@ +../upstream/libavformat/log2_tab.c \ No newline at end of file diff --git a/libffmpeg-avformat/lrc.c b/libffmpeg-avformat/lrc.c new file mode 120000 index 0000000..cab5285 --- /dev/null +++ b/libffmpeg-avformat/lrc.c @@ -0,0 +1 @@ +../upstream/libavformat/lrc.c \ No newline at end of file diff --git a/libffmpeg-avformat/lrc.h b/libffmpeg-avformat/lrc.h new file mode 120000 index 0000000..c112c9a --- /dev/null +++ b/libffmpeg-avformat/lrc.h @@ -0,0 +1 @@ +../upstream/libavformat/lrc.h \ No newline at end of file diff --git a/libffmpeg-avformat/lrcdec.c b/libffmpeg-avformat/lrcdec.c new file mode 120000 index 0000000..3539a21 --- /dev/null +++ b/libffmpeg-avformat/lrcdec.c @@ -0,0 +1 @@ +../upstream/libavformat/lrcdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/lrcenc.c b/libffmpeg-avformat/lrcenc.c new file mode 120000 index 0000000..52e2bc6 --- /dev/null +++ b/libffmpeg-avformat/lrcenc.c @@ -0,0 +1 @@ +../upstream/libavformat/lrcenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/luodatdec.c b/libffmpeg-avformat/luodatdec.c new file mode 120000 index 0000000..a632ef6 --- /dev/null +++ b/libffmpeg-avformat/luodatdec.c @@ -0,0 +1 @@ +../upstream/libavformat/luodatdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/lvfdec.c b/libffmpeg-avformat/lvfdec.c new file mode 120000 index 0000000..53dbd84 --- /dev/null +++ b/libffmpeg-avformat/lvfdec.c @@ -0,0 +1 @@ +../upstream/libavformat/lvfdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/lxfdec.c b/libffmpeg-avformat/lxfdec.c new file mode 120000 index 0000000..5fd19d2 --- /dev/null +++ b/libffmpeg-avformat/lxfdec.c @@ -0,0 +1 @@ +../upstream/libavformat/lxfdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/m4vdec.c b/libffmpeg-avformat/m4vdec.c new file mode 120000 index 0000000..1882d2d --- /dev/null +++ b/libffmpeg-avformat/m4vdec.c @@ -0,0 +1 @@ +../upstream/libavformat/m4vdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/matroska.c b/libffmpeg-avformat/matroska.c new file mode 120000 index 0000000..199c275 --- /dev/null +++ b/libffmpeg-avformat/matroska.c @@ -0,0 +1 @@ +../upstream/libavformat/matroska.c \ No newline at end of file diff --git a/libffmpeg-avformat/matroska.h b/libffmpeg-avformat/matroska.h new file mode 120000 index 0000000..de7f194 --- /dev/null +++ b/libffmpeg-avformat/matroska.h @@ -0,0 +1 @@ +../upstream/libavformat/matroska.h \ No newline at end of file diff --git a/libffmpeg-avformat/matroskadec.c b/libffmpeg-avformat/matroskadec.c new file mode 120000 index 0000000..6d9baf8 --- /dev/null +++ b/libffmpeg-avformat/matroskadec.c @@ -0,0 +1 @@ +../upstream/libavformat/matroskadec.c \ No newline at end of file diff --git a/libffmpeg-avformat/matroskaenc.c b/libffmpeg-avformat/matroskaenc.c new file mode 120000 index 0000000..fdf00a6 --- /dev/null +++ b/libffmpeg-avformat/matroskaenc.c @@ -0,0 +1 @@ +../upstream/libavformat/matroskaenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/mca.c b/libffmpeg-avformat/mca.c new file mode 120000 index 0000000..99d9ddb --- /dev/null +++ b/libffmpeg-avformat/mca.c @@ -0,0 +1 @@ +../upstream/libavformat/mca.c \ No newline at end of file diff --git a/libffmpeg-avformat/mccdec.c b/libffmpeg-avformat/mccdec.c new file mode 120000 index 0000000..719d9d8 --- /dev/null +++ b/libffmpeg-avformat/mccdec.c @@ -0,0 +1 @@ +../upstream/libavformat/mccdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/md5proto.c b/libffmpeg-avformat/md5proto.c new file mode 120000 index 0000000..f32c00f --- /dev/null +++ b/libffmpeg-avformat/md5proto.c @@ -0,0 +1 @@ +../upstream/libavformat/md5proto.c \ No newline at end of file diff --git a/libffmpeg-avformat/metadata.c b/libffmpeg-avformat/metadata.c new file mode 120000 index 0000000..7b7ae43 --- /dev/null +++ b/libffmpeg-avformat/metadata.c @@ -0,0 +1 @@ +../upstream/libavformat/metadata.c \ No newline at end of file diff --git a/libffmpeg-avformat/metadata.h b/libffmpeg-avformat/metadata.h new file mode 120000 index 0000000..8aa0395 --- /dev/null +++ b/libffmpeg-avformat/metadata.h @@ -0,0 +1 @@ +../upstream/libavformat/metadata.h \ No newline at end of file diff --git a/libffmpeg-avformat/mgsts.c b/libffmpeg-avformat/mgsts.c new file mode 120000 index 0000000..8fbf752 --- /dev/null +++ b/libffmpeg-avformat/mgsts.c @@ -0,0 +1 @@ +../upstream/libavformat/mgsts.c \ No newline at end of file diff --git a/libffmpeg-avformat/microdvddec.c b/libffmpeg-avformat/microdvddec.c new file mode 120000 index 0000000..c5314a6 --- /dev/null +++ b/libffmpeg-avformat/microdvddec.c @@ -0,0 +1 @@ +../upstream/libavformat/microdvddec.c \ No newline at end of file diff --git a/libffmpeg-avformat/microdvdenc.c b/libffmpeg-avformat/microdvdenc.c new file mode 120000 index 0000000..40f58fd --- /dev/null +++ b/libffmpeg-avformat/microdvdenc.c @@ -0,0 +1 @@ +../upstream/libavformat/microdvdenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/mj2kdec.c b/libffmpeg-avformat/mj2kdec.c new file mode 120000 index 0000000..ced2165 --- /dev/null +++ b/libffmpeg-avformat/mj2kdec.c @@ -0,0 +1 @@ +../upstream/libavformat/mj2kdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/mkvtimestamp_v2.c b/libffmpeg-avformat/mkvtimestamp_v2.c new file mode 120000 index 0000000..b735c5b --- /dev/null +++ b/libffmpeg-avformat/mkvtimestamp_v2.c @@ -0,0 +1 @@ +../upstream/libavformat/mkvtimestamp_v2.c \ No newline at end of file diff --git a/libffmpeg-avformat/mlpdec.c b/libffmpeg-avformat/mlpdec.c new file mode 120000 index 0000000..0bafc40 --- /dev/null +++ b/libffmpeg-avformat/mlpdec.c @@ -0,0 +1 @@ +../upstream/libavformat/mlpdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/mlvdec.c b/libffmpeg-avformat/mlvdec.c new file mode 120000 index 0000000..7cc0c62 --- /dev/null +++ b/libffmpeg-avformat/mlvdec.c @@ -0,0 +1 @@ +../upstream/libavformat/mlvdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/mm.c b/libffmpeg-avformat/mm.c new file mode 120000 index 0000000..2488451 --- /dev/null +++ b/libffmpeg-avformat/mm.c @@ -0,0 +1 @@ +../upstream/libavformat/mm.c \ No newline at end of file diff --git a/libffmpeg-avformat/mmf.c b/libffmpeg-avformat/mmf.c new file mode 120000 index 0000000..86cf2c9 --- /dev/null +++ b/libffmpeg-avformat/mmf.c @@ -0,0 +1 @@ +../upstream/libavformat/mmf.c \ No newline at end of file diff --git a/libffmpeg-avformat/mms.c b/libffmpeg-avformat/mms.c new file mode 120000 index 0000000..b960be5 --- /dev/null +++ b/libffmpeg-avformat/mms.c @@ -0,0 +1 @@ +../upstream/libavformat/mms.c \ No newline at end of file diff --git a/libffmpeg-avformat/mms.h b/libffmpeg-avformat/mms.h new file mode 120000 index 0000000..b04be84 --- /dev/null +++ b/libffmpeg-avformat/mms.h @@ -0,0 +1 @@ +../upstream/libavformat/mms.h \ No newline at end of file diff --git a/libffmpeg-avformat/mmsh.c b/libffmpeg-avformat/mmsh.c new file mode 120000 index 0000000..1fddde7 --- /dev/null +++ b/libffmpeg-avformat/mmsh.c @@ -0,0 +1 @@ +../upstream/libavformat/mmsh.c \ No newline at end of file diff --git a/libffmpeg-avformat/mmst.c b/libffmpeg-avformat/mmst.c new file mode 120000 index 0000000..3417e20 --- /dev/null +++ b/libffmpeg-avformat/mmst.c @@ -0,0 +1 @@ +../upstream/libavformat/mmst.c \ No newline at end of file diff --git a/libffmpeg-avformat/mods.c b/libffmpeg-avformat/mods.c new file mode 120000 index 0000000..a6c7be5 --- /dev/null +++ b/libffmpeg-avformat/mods.c @@ -0,0 +1 @@ +../upstream/libavformat/mods.c \ No newline at end of file diff --git a/libffmpeg-avformat/moflex.c b/libffmpeg-avformat/moflex.c new file mode 120000 index 0000000..0119dd7 --- /dev/null +++ b/libffmpeg-avformat/moflex.c @@ -0,0 +1 @@ +../upstream/libavformat/moflex.c \ No newline at end of file diff --git a/libffmpeg-avformat/mov.c b/libffmpeg-avformat/mov.c new file mode 120000 index 0000000..c1988ed --- /dev/null +++ b/libffmpeg-avformat/mov.c @@ -0,0 +1 @@ +../upstream/libavformat/mov.c \ No newline at end of file diff --git a/libffmpeg-avformat/mov_chan.c b/libffmpeg-avformat/mov_chan.c new file mode 120000 index 0000000..95cba15 --- /dev/null +++ b/libffmpeg-avformat/mov_chan.c @@ -0,0 +1 @@ +../upstream/libavformat/mov_chan.c \ No newline at end of file diff --git a/libffmpeg-avformat/mov_chan.h b/libffmpeg-avformat/mov_chan.h new file mode 120000 index 0000000..d8f9dd9 --- /dev/null +++ b/libffmpeg-avformat/mov_chan.h @@ -0,0 +1 @@ +../upstream/libavformat/mov_chan.h \ No newline at end of file diff --git a/libffmpeg-avformat/mov_esds.c b/libffmpeg-avformat/mov_esds.c new file mode 120000 index 0000000..a9b85a6 --- /dev/null +++ b/libffmpeg-avformat/mov_esds.c @@ -0,0 +1 @@ +../upstream/libavformat/mov_esds.c \ No newline at end of file diff --git a/libffmpeg-avformat/movenc.c b/libffmpeg-avformat/movenc.c new file mode 120000 index 0000000..ae37cfc --- /dev/null +++ b/libffmpeg-avformat/movenc.c @@ -0,0 +1 @@ +../upstream/libavformat/movenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/movenc.h b/libffmpeg-avformat/movenc.h new file mode 120000 index 0000000..ef8d619 --- /dev/null +++ b/libffmpeg-avformat/movenc.h @@ -0,0 +1 @@ +../upstream/libavformat/movenc.h \ No newline at end of file diff --git a/libffmpeg-avformat/movenc_ttml.c b/libffmpeg-avformat/movenc_ttml.c new file mode 120000 index 0000000..0822485 --- /dev/null +++ b/libffmpeg-avformat/movenc_ttml.c @@ -0,0 +1 @@ +../upstream/libavformat/movenc_ttml.c \ No newline at end of file diff --git a/libffmpeg-avformat/movenc_ttml.h b/libffmpeg-avformat/movenc_ttml.h new file mode 120000 index 0000000..a378db2 --- /dev/null +++ b/libffmpeg-avformat/movenc_ttml.h @@ -0,0 +1 @@ +../upstream/libavformat/movenc_ttml.h \ No newline at end of file diff --git a/libffmpeg-avformat/movenccenc.c b/libffmpeg-avformat/movenccenc.c new file mode 120000 index 0000000..e96ec74 --- /dev/null +++ b/libffmpeg-avformat/movenccenc.c @@ -0,0 +1 @@ +../upstream/libavformat/movenccenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/movenccenc.h b/libffmpeg-avformat/movenccenc.h new file mode 120000 index 0000000..ccbcdc7 --- /dev/null +++ b/libffmpeg-avformat/movenccenc.h @@ -0,0 +1 @@ +../upstream/libavformat/movenccenc.h \ No newline at end of file diff --git a/libffmpeg-avformat/movenchint.c b/libffmpeg-avformat/movenchint.c new file mode 120000 index 0000000..20be339 --- /dev/null +++ b/libffmpeg-avformat/movenchint.c @@ -0,0 +1 @@ +../upstream/libavformat/movenchint.c \ No newline at end of file diff --git a/libffmpeg-avformat/mp3dec.c b/libffmpeg-avformat/mp3dec.c new file mode 120000 index 0000000..2f55632 --- /dev/null +++ b/libffmpeg-avformat/mp3dec.c @@ -0,0 +1 @@ +../upstream/libavformat/mp3dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/mp3enc.c b/libffmpeg-avformat/mp3enc.c new file mode 120000 index 0000000..39acfd5 --- /dev/null +++ b/libffmpeg-avformat/mp3enc.c @@ -0,0 +1 @@ +../upstream/libavformat/mp3enc.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpc.c b/libffmpeg-avformat/mpc.c new file mode 120000 index 0000000..8469a48 --- /dev/null +++ b/libffmpeg-avformat/mpc.c @@ -0,0 +1 @@ +../upstream/libavformat/mpc.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpc8.c b/libffmpeg-avformat/mpc8.c new file mode 120000 index 0000000..3538edb --- /dev/null +++ b/libffmpeg-avformat/mpc8.c @@ -0,0 +1 @@ +../upstream/libavformat/mpc8.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpeg.c b/libffmpeg-avformat/mpeg.c new file mode 120000 index 0000000..42c690f --- /dev/null +++ b/libffmpeg-avformat/mpeg.c @@ -0,0 +1 @@ +../upstream/libavformat/mpeg.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpeg.h b/libffmpeg-avformat/mpeg.h new file mode 120000 index 0000000..f2f8b09 --- /dev/null +++ b/libffmpeg-avformat/mpeg.h @@ -0,0 +1 @@ +../upstream/libavformat/mpeg.h \ No newline at end of file diff --git a/libffmpeg-avformat/mpeg4audio_sample_rates.c b/libffmpeg-avformat/mpeg4audio_sample_rates.c new file mode 120000 index 0000000..c487102 --- /dev/null +++ b/libffmpeg-avformat/mpeg4audio_sample_rates.c @@ -0,0 +1 @@ +../upstream/libavformat/mpeg4audio_sample_rates.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpegaudiotabs.c b/libffmpeg-avformat/mpegaudiotabs.c new file mode 120000 index 0000000..31e509a --- /dev/null +++ b/libffmpeg-avformat/mpegaudiotabs.c @@ -0,0 +1 @@ +../upstream/libavformat/mpegaudiotabs.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpegenc.c b/libffmpeg-avformat/mpegenc.c new file mode 120000 index 0000000..062fb15 --- /dev/null +++ b/libffmpeg-avformat/mpegenc.c @@ -0,0 +1 @@ +../upstream/libavformat/mpegenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpegts.c b/libffmpeg-avformat/mpegts.c new file mode 120000 index 0000000..af52ca3 --- /dev/null +++ b/libffmpeg-avformat/mpegts.c @@ -0,0 +1 @@ +../upstream/libavformat/mpegts.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpegts.h b/libffmpeg-avformat/mpegts.h new file mode 120000 index 0000000..7771f6c --- /dev/null +++ b/libffmpeg-avformat/mpegts.h @@ -0,0 +1 @@ +../upstream/libavformat/mpegts.h \ No newline at end of file diff --git a/libffmpeg-avformat/mpegtsenc.c b/libffmpeg-avformat/mpegtsenc.c new file mode 120000 index 0000000..c053e74 --- /dev/null +++ b/libffmpeg-avformat/mpegtsenc.c @@ -0,0 +1 @@ +../upstream/libavformat/mpegtsenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpegvideodec.c b/libffmpeg-avformat/mpegvideodec.c new file mode 120000 index 0000000..0381c83 --- /dev/null +++ b/libffmpeg-avformat/mpegvideodec.c @@ -0,0 +1 @@ +../upstream/libavformat/mpegvideodec.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpjpeg.c b/libffmpeg-avformat/mpjpeg.c new file mode 120000 index 0000000..224be81 --- /dev/null +++ b/libffmpeg-avformat/mpjpeg.c @@ -0,0 +1 @@ +../upstream/libavformat/mpjpeg.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpjpegdec.c b/libffmpeg-avformat/mpjpegdec.c new file mode 120000 index 0000000..014d511 --- /dev/null +++ b/libffmpeg-avformat/mpjpegdec.c @@ -0,0 +1 @@ +../upstream/libavformat/mpjpegdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpl2dec.c b/libffmpeg-avformat/mpl2dec.c new file mode 120000 index 0000000..d22f2ac --- /dev/null +++ b/libffmpeg-avformat/mpl2dec.c @@ -0,0 +1 @@ +../upstream/libavformat/mpl2dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/mpsubdec.c b/libffmpeg-avformat/mpsubdec.c new file mode 120000 index 0000000..ba28480 --- /dev/null +++ b/libffmpeg-avformat/mpsubdec.c @@ -0,0 +1 @@ +../upstream/libavformat/mpsubdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/msf.c b/libffmpeg-avformat/msf.c new file mode 120000 index 0000000..cc14a8d --- /dev/null +++ b/libffmpeg-avformat/msf.c @@ -0,0 +1 @@ +../upstream/libavformat/msf.c \ No newline at end of file diff --git a/libffmpeg-avformat/msnwc_tcp.c b/libffmpeg-avformat/msnwc_tcp.c new file mode 120000 index 0000000..cbd9f77 --- /dev/null +++ b/libffmpeg-avformat/msnwc_tcp.c @@ -0,0 +1 @@ +../upstream/libavformat/msnwc_tcp.c \ No newline at end of file diff --git a/libffmpeg-avformat/mspdec.c b/libffmpeg-avformat/mspdec.c new file mode 120000 index 0000000..f5d899c --- /dev/null +++ b/libffmpeg-avformat/mspdec.c @@ -0,0 +1 @@ +../upstream/libavformat/mspdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/mtaf.c b/libffmpeg-avformat/mtaf.c new file mode 120000 index 0000000..3af871d --- /dev/null +++ b/libffmpeg-avformat/mtaf.c @@ -0,0 +1 @@ +../upstream/libavformat/mtaf.c \ No newline at end of file diff --git a/libffmpeg-avformat/mtv.c b/libffmpeg-avformat/mtv.c new file mode 120000 index 0000000..f146032 --- /dev/null +++ b/libffmpeg-avformat/mtv.c @@ -0,0 +1 @@ +../upstream/libavformat/mtv.c \ No newline at end of file diff --git a/libffmpeg-avformat/musx.c b/libffmpeg-avformat/musx.c new file mode 120000 index 0000000..d76e9fb --- /dev/null +++ b/libffmpeg-avformat/musx.c @@ -0,0 +1 @@ +../upstream/libavformat/musx.c \ No newline at end of file diff --git a/libffmpeg-avformat/mux.c b/libffmpeg-avformat/mux.c new file mode 120000 index 0000000..a0a981c --- /dev/null +++ b/libffmpeg-avformat/mux.c @@ -0,0 +1 @@ +../upstream/libavformat/mux.c \ No newline at end of file diff --git a/libffmpeg-avformat/mux.h b/libffmpeg-avformat/mux.h new file mode 120000 index 0000000..24eb50a --- /dev/null +++ b/libffmpeg-avformat/mux.h @@ -0,0 +1 @@ +../upstream/libavformat/mux.h \ No newline at end of file diff --git a/libffmpeg-avformat/mux_utils.c b/libffmpeg-avformat/mux_utils.c new file mode 120000 index 0000000..46af763 --- /dev/null +++ b/libffmpeg-avformat/mux_utils.c @@ -0,0 +1 @@ +../upstream/libavformat/mux_utils.c \ No newline at end of file diff --git a/libffmpeg-avformat/muxer_list.c b/libffmpeg-avformat/muxer_list.c new file mode 120000 index 0000000..de7d571 --- /dev/null +++ b/libffmpeg-avformat/muxer_list.c @@ -0,0 +1 @@ +../upstream/libavformat/muxer_list.c \ No newline at end of file diff --git a/libffmpeg-avformat/mvdec.c b/libffmpeg-avformat/mvdec.c new file mode 120000 index 0000000..1235a22 --- /dev/null +++ b/libffmpeg-avformat/mvdec.c @@ -0,0 +1 @@ +../upstream/libavformat/mvdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/mvi.c b/libffmpeg-avformat/mvi.c new file mode 120000 index 0000000..3e90c02 --- /dev/null +++ b/libffmpeg-avformat/mvi.c @@ -0,0 +1 @@ +../upstream/libavformat/mvi.c \ No newline at end of file diff --git a/libffmpeg-avformat/mxf.c b/libffmpeg-avformat/mxf.c new file mode 120000 index 0000000..84944a9 --- /dev/null +++ b/libffmpeg-avformat/mxf.c @@ -0,0 +1 @@ +../upstream/libavformat/mxf.c \ No newline at end of file diff --git a/libffmpeg-avformat/mxf.h b/libffmpeg-avformat/mxf.h new file mode 120000 index 0000000..1c77b59 --- /dev/null +++ b/libffmpeg-avformat/mxf.h @@ -0,0 +1 @@ +../upstream/libavformat/mxf.h \ No newline at end of file diff --git a/libffmpeg-avformat/mxfdec.c b/libffmpeg-avformat/mxfdec.c new file mode 120000 index 0000000..b0230fa --- /dev/null +++ b/libffmpeg-avformat/mxfdec.c @@ -0,0 +1 @@ +../upstream/libavformat/mxfdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/mxfenc.c b/libffmpeg-avformat/mxfenc.c new file mode 120000 index 0000000..de10fdf --- /dev/null +++ b/libffmpeg-avformat/mxfenc.c @@ -0,0 +1 @@ +../upstream/libavformat/mxfenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/mxg.c b/libffmpeg-avformat/mxg.c new file mode 120000 index 0000000..3e26f9b --- /dev/null +++ b/libffmpeg-avformat/mxg.c @@ -0,0 +1 @@ +../upstream/libavformat/mxg.c \ No newline at end of file diff --git a/libffmpeg-avformat/ncdec.c b/libffmpeg-avformat/ncdec.c new file mode 120000 index 0000000..feb74f4 --- /dev/null +++ b/libffmpeg-avformat/ncdec.c @@ -0,0 +1 @@ +../upstream/libavformat/ncdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/network.c b/libffmpeg-avformat/network.c new file mode 120000 index 0000000..4450da5 --- /dev/null +++ b/libffmpeg-avformat/network.c @@ -0,0 +1 @@ +../upstream/libavformat/network.c \ No newline at end of file diff --git a/libffmpeg-avformat/network.h b/libffmpeg-avformat/network.h new file mode 120000 index 0000000..ffd6301 --- /dev/null +++ b/libffmpeg-avformat/network.h @@ -0,0 +1 @@ +../upstream/libavformat/network.h \ No newline at end of file diff --git a/libffmpeg-avformat/nistspheredec.c b/libffmpeg-avformat/nistspheredec.c new file mode 120000 index 0000000..ed0bf2c --- /dev/null +++ b/libffmpeg-avformat/nistspheredec.c @@ -0,0 +1 @@ +../upstream/libavformat/nistspheredec.c \ No newline at end of file diff --git a/libffmpeg-avformat/nspdec.c b/libffmpeg-avformat/nspdec.c new file mode 120000 index 0000000..37ad46b --- /dev/null +++ b/libffmpeg-avformat/nspdec.c @@ -0,0 +1 @@ +../upstream/libavformat/nspdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/nsvdec.c b/libffmpeg-avformat/nsvdec.c new file mode 120000 index 0000000..d369fbd --- /dev/null +++ b/libffmpeg-avformat/nsvdec.c @@ -0,0 +1 @@ +../upstream/libavformat/nsvdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/nullenc.c b/libffmpeg-avformat/nullenc.c new file mode 120000 index 0000000..505b1a9 --- /dev/null +++ b/libffmpeg-avformat/nullenc.c @@ -0,0 +1 @@ +../upstream/libavformat/nullenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/nut.c b/libffmpeg-avformat/nut.c new file mode 120000 index 0000000..d2d0f87 --- /dev/null +++ b/libffmpeg-avformat/nut.c @@ -0,0 +1 @@ +../upstream/libavformat/nut.c \ No newline at end of file diff --git a/libffmpeg-avformat/nut.h b/libffmpeg-avformat/nut.h new file mode 120000 index 0000000..d23c2bf --- /dev/null +++ b/libffmpeg-avformat/nut.h @@ -0,0 +1 @@ +../upstream/libavformat/nut.h \ No newline at end of file diff --git a/libffmpeg-avformat/nutdec.c b/libffmpeg-avformat/nutdec.c new file mode 120000 index 0000000..cb892bd --- /dev/null +++ b/libffmpeg-avformat/nutdec.c @@ -0,0 +1 @@ +../upstream/libavformat/nutdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/nutenc.c b/libffmpeg-avformat/nutenc.c new file mode 120000 index 0000000..cfd85c9 --- /dev/null +++ b/libffmpeg-avformat/nutenc.c @@ -0,0 +1 @@ +../upstream/libavformat/nutenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/nuv.c b/libffmpeg-avformat/nuv.c new file mode 120000 index 0000000..da33b3e --- /dev/null +++ b/libffmpeg-avformat/nuv.c @@ -0,0 +1 @@ +../upstream/libavformat/nuv.c \ No newline at end of file diff --git a/libffmpeg-avformat/oggdec.c b/libffmpeg-avformat/oggdec.c new file mode 120000 index 0000000..84c38f4 --- /dev/null +++ b/libffmpeg-avformat/oggdec.c @@ -0,0 +1 @@ +../upstream/libavformat/oggdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/oggdec.h b/libffmpeg-avformat/oggdec.h new file mode 120000 index 0000000..91a88ad --- /dev/null +++ b/libffmpeg-avformat/oggdec.h @@ -0,0 +1 @@ +../upstream/libavformat/oggdec.h \ No newline at end of file diff --git a/libffmpeg-avformat/oggenc.c b/libffmpeg-avformat/oggenc.c new file mode 120000 index 0000000..7a788b9 --- /dev/null +++ b/libffmpeg-avformat/oggenc.c @@ -0,0 +1 @@ +../upstream/libavformat/oggenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/oggparsecelt.c b/libffmpeg-avformat/oggparsecelt.c new file mode 120000 index 0000000..b8c3b0f --- /dev/null +++ b/libffmpeg-avformat/oggparsecelt.c @@ -0,0 +1 @@ +../upstream/libavformat/oggparsecelt.c \ No newline at end of file diff --git a/libffmpeg-avformat/oggparsedirac.c b/libffmpeg-avformat/oggparsedirac.c new file mode 120000 index 0000000..2fade8f --- /dev/null +++ b/libffmpeg-avformat/oggparsedirac.c @@ -0,0 +1 @@ +../upstream/libavformat/oggparsedirac.c \ No newline at end of file diff --git a/libffmpeg-avformat/oggparseflac.c b/libffmpeg-avformat/oggparseflac.c new file mode 120000 index 0000000..d0b0a99 --- /dev/null +++ b/libffmpeg-avformat/oggparseflac.c @@ -0,0 +1 @@ +../upstream/libavformat/oggparseflac.c \ No newline at end of file diff --git a/libffmpeg-avformat/oggparseogm.c b/libffmpeg-avformat/oggparseogm.c new file mode 120000 index 0000000..30de0d9 --- /dev/null +++ b/libffmpeg-avformat/oggparseogm.c @@ -0,0 +1 @@ +../upstream/libavformat/oggparseogm.c \ No newline at end of file diff --git a/libffmpeg-avformat/oggparseopus.c b/libffmpeg-avformat/oggparseopus.c new file mode 120000 index 0000000..aef0d03 --- /dev/null +++ b/libffmpeg-avformat/oggparseopus.c @@ -0,0 +1 @@ +../upstream/libavformat/oggparseopus.c \ No newline at end of file diff --git a/libffmpeg-avformat/oggparseskeleton.c b/libffmpeg-avformat/oggparseskeleton.c new file mode 120000 index 0000000..97061d1 --- /dev/null +++ b/libffmpeg-avformat/oggparseskeleton.c @@ -0,0 +1 @@ +../upstream/libavformat/oggparseskeleton.c \ No newline at end of file diff --git a/libffmpeg-avformat/oggparsespeex.c b/libffmpeg-avformat/oggparsespeex.c new file mode 120000 index 0000000..31d55f6 --- /dev/null +++ b/libffmpeg-avformat/oggparsespeex.c @@ -0,0 +1 @@ +../upstream/libavformat/oggparsespeex.c \ No newline at end of file diff --git a/libffmpeg-avformat/oggparsetheora.c b/libffmpeg-avformat/oggparsetheora.c new file mode 120000 index 0000000..382b9a4 --- /dev/null +++ b/libffmpeg-avformat/oggparsetheora.c @@ -0,0 +1 @@ +../upstream/libavformat/oggparsetheora.c \ No newline at end of file diff --git a/libffmpeg-avformat/oggparsevorbis.c b/libffmpeg-avformat/oggparsevorbis.c new file mode 120000 index 0000000..7cb592c --- /dev/null +++ b/libffmpeg-avformat/oggparsevorbis.c @@ -0,0 +1 @@ +../upstream/libavformat/oggparsevorbis.c \ No newline at end of file diff --git a/libffmpeg-avformat/oggparsevp8.c b/libffmpeg-avformat/oggparsevp8.c new file mode 120000 index 0000000..cb9693f --- /dev/null +++ b/libffmpeg-avformat/oggparsevp8.c @@ -0,0 +1 @@ +../upstream/libavformat/oggparsevp8.c \ No newline at end of file diff --git a/libffmpeg-avformat/oma.c b/libffmpeg-avformat/oma.c new file mode 120000 index 0000000..8cfb54f --- /dev/null +++ b/libffmpeg-avformat/oma.c @@ -0,0 +1 @@ +../upstream/libavformat/oma.c \ No newline at end of file diff --git a/libffmpeg-avformat/oma.h b/libffmpeg-avformat/oma.h new file mode 120000 index 0000000..bd0597b --- /dev/null +++ b/libffmpeg-avformat/oma.h @@ -0,0 +1 @@ +../upstream/libavformat/oma.h \ No newline at end of file diff --git a/libffmpeg-avformat/omadec.c b/libffmpeg-avformat/omadec.c new file mode 120000 index 0000000..6d3e7e4 --- /dev/null +++ b/libffmpeg-avformat/omadec.c @@ -0,0 +1 @@ +../upstream/libavformat/omadec.c \ No newline at end of file diff --git a/libffmpeg-avformat/omaenc.c b/libffmpeg-avformat/omaenc.c new file mode 120000 index 0000000..748231f --- /dev/null +++ b/libffmpeg-avformat/omaenc.c @@ -0,0 +1 @@ +../upstream/libavformat/omaenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/options.c b/libffmpeg-avformat/options.c new file mode 120000 index 0000000..4c7f0c2 --- /dev/null +++ b/libffmpeg-avformat/options.c @@ -0,0 +1 @@ +../upstream/libavformat/options.c \ No newline at end of file diff --git a/libffmpeg-avformat/options_table.h b/libffmpeg-avformat/options_table.h new file mode 120000 index 0000000..cb4bfe0 --- /dev/null +++ b/libffmpeg-avformat/options_table.h @@ -0,0 +1 @@ +../upstream/libavformat/options_table.h \ No newline at end of file diff --git a/libffmpeg-avformat/os_support.c b/libffmpeg-avformat/os_support.c new file mode 120000 index 0000000..83e2d5c --- /dev/null +++ b/libffmpeg-avformat/os_support.c @@ -0,0 +1 @@ +../upstream/libavformat/os_support.c \ No newline at end of file diff --git a/libffmpeg-avformat/os_support.h b/libffmpeg-avformat/os_support.h new file mode 120000 index 0000000..101fb31 --- /dev/null +++ b/libffmpeg-avformat/os_support.h @@ -0,0 +1 @@ +../upstream/libavformat/os_support.h \ No newline at end of file diff --git a/libffmpeg-avformat/osq.c b/libffmpeg-avformat/osq.c new file mode 120000 index 0000000..632e44f --- /dev/null +++ b/libffmpeg-avformat/osq.c @@ -0,0 +1 @@ +../upstream/libavformat/osq.c \ No newline at end of file diff --git a/libffmpeg-avformat/paf.c b/libffmpeg-avformat/paf.c new file mode 120000 index 0000000..2c73e7e --- /dev/null +++ b/libffmpeg-avformat/paf.c @@ -0,0 +1 @@ +../upstream/libavformat/paf.c \ No newline at end of file diff --git a/libffmpeg-avformat/pcm.c b/libffmpeg-avformat/pcm.c new file mode 120000 index 0000000..fb9a6f0 --- /dev/null +++ b/libffmpeg-avformat/pcm.c @@ -0,0 +1 @@ +../upstream/libavformat/pcm.c \ No newline at end of file diff --git a/libffmpeg-avformat/pcm.h b/libffmpeg-avformat/pcm.h new file mode 120000 index 0000000..33c55b1 --- /dev/null +++ b/libffmpeg-avformat/pcm.h @@ -0,0 +1 @@ +../upstream/libavformat/pcm.h \ No newline at end of file diff --git a/libffmpeg-avformat/pcmdec.c b/libffmpeg-avformat/pcmdec.c new file mode 120000 index 0000000..01659e5 --- /dev/null +++ b/libffmpeg-avformat/pcmdec.c @@ -0,0 +1 @@ +../upstream/libavformat/pcmdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/pcmenc.c b/libffmpeg-avformat/pcmenc.c new file mode 120000 index 0000000..fdbfe28 --- /dev/null +++ b/libffmpeg-avformat/pcmenc.c @@ -0,0 +1 @@ +../upstream/libavformat/pcmenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/pdvdec.c b/libffmpeg-avformat/pdvdec.c new file mode 120000 index 0000000..0306162 --- /dev/null +++ b/libffmpeg-avformat/pdvdec.c @@ -0,0 +1 @@ +../upstream/libavformat/pdvdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/pjsdec.c b/libffmpeg-avformat/pjsdec.c new file mode 120000 index 0000000..826f638 --- /dev/null +++ b/libffmpeg-avformat/pjsdec.c @@ -0,0 +1 @@ +../upstream/libavformat/pjsdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/pmpdec.c b/libffmpeg-avformat/pmpdec.c new file mode 120000 index 0000000..44a3477 --- /dev/null +++ b/libffmpeg-avformat/pmpdec.c @@ -0,0 +1 @@ +../upstream/libavformat/pmpdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/pp_bnk.c b/libffmpeg-avformat/pp_bnk.c new file mode 120000 index 0000000..ee97503 --- /dev/null +++ b/libffmpeg-avformat/pp_bnk.c @@ -0,0 +1 @@ +../upstream/libavformat/pp_bnk.c \ No newline at end of file diff --git a/libffmpeg-avformat/prompeg.c b/libffmpeg-avformat/prompeg.c new file mode 120000 index 0000000..181f39f --- /dev/null +++ b/libffmpeg-avformat/prompeg.c @@ -0,0 +1 @@ +../upstream/libavformat/prompeg.c \ No newline at end of file diff --git a/libffmpeg-avformat/protocol_list.c b/libffmpeg-avformat/protocol_list.c new file mode 120000 index 0000000..96c487e --- /dev/null +++ b/libffmpeg-avformat/protocol_list.c @@ -0,0 +1 @@ +../upstream/libavformat/protocol_list.c \ No newline at end of file diff --git a/libffmpeg-avformat/protocols.c b/libffmpeg-avformat/protocols.c new file mode 120000 index 0000000..bb4e7e9 --- /dev/null +++ b/libffmpeg-avformat/protocols.c @@ -0,0 +1 @@ +../upstream/libavformat/protocols.c \ No newline at end of file diff --git a/libffmpeg-avformat/psxstr.c b/libffmpeg-avformat/psxstr.c new file mode 120000 index 0000000..1a401c9 --- /dev/null +++ b/libffmpeg-avformat/psxstr.c @@ -0,0 +1 @@ +../upstream/libavformat/psxstr.c \ No newline at end of file diff --git a/libffmpeg-avformat/pva.c b/libffmpeg-avformat/pva.c new file mode 120000 index 0000000..b20fb96 --- /dev/null +++ b/libffmpeg-avformat/pva.c @@ -0,0 +1 @@ +../upstream/libavformat/pva.c \ No newline at end of file diff --git a/libffmpeg-avformat/pvfdec.c b/libffmpeg-avformat/pvfdec.c new file mode 120000 index 0000000..6defb1f --- /dev/null +++ b/libffmpeg-avformat/pvfdec.c @@ -0,0 +1 @@ +../upstream/libavformat/pvfdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/qcp.c b/libffmpeg-avformat/qcp.c new file mode 120000 index 0000000..c58ae94 --- /dev/null +++ b/libffmpeg-avformat/qcp.c @@ -0,0 +1 @@ +../upstream/libavformat/qcp.c \ No newline at end of file diff --git a/libffmpeg-avformat/qoadec.c b/libffmpeg-avformat/qoadec.c new file mode 120000 index 0000000..12d1ebd --- /dev/null +++ b/libffmpeg-avformat/qoadec.c @@ -0,0 +1 @@ +../upstream/libavformat/qoadec.c \ No newline at end of file diff --git a/libffmpeg-avformat/qtpalette.c b/libffmpeg-avformat/qtpalette.c new file mode 120000 index 0000000..5955eea --- /dev/null +++ b/libffmpeg-avformat/qtpalette.c @@ -0,0 +1 @@ +../upstream/libavformat/qtpalette.c \ No newline at end of file diff --git a/libffmpeg-avformat/qtpalette.h b/libffmpeg-avformat/qtpalette.h new file mode 120000 index 0000000..c7e7fb8 --- /dev/null +++ b/libffmpeg-avformat/qtpalette.h @@ -0,0 +1 @@ +../upstream/libavformat/qtpalette.h \ No newline at end of file diff --git a/libffmpeg-avformat/r3d.c b/libffmpeg-avformat/r3d.c new file mode 120000 index 0000000..eee3fdd --- /dev/null +++ b/libffmpeg-avformat/r3d.c @@ -0,0 +1 @@ +../upstream/libavformat/r3d.c \ No newline at end of file diff --git a/libffmpeg-avformat/rangecoder_dec.c b/libffmpeg-avformat/rangecoder_dec.c new file mode 120000 index 0000000..40ffb4a --- /dev/null +++ b/libffmpeg-avformat/rangecoder_dec.c @@ -0,0 +1 @@ +../upstream/libavformat/rangecoder_dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/rawdec.c b/libffmpeg-avformat/rawdec.c new file mode 120000 index 0000000..109f62f --- /dev/null +++ b/libffmpeg-avformat/rawdec.c @@ -0,0 +1 @@ +../upstream/libavformat/rawdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/rawdec.h b/libffmpeg-avformat/rawdec.h new file mode 120000 index 0000000..cf5814c --- /dev/null +++ b/libffmpeg-avformat/rawdec.h @@ -0,0 +1 @@ +../upstream/libavformat/rawdec.h \ No newline at end of file diff --git a/libffmpeg-avformat/rawenc.c b/libffmpeg-avformat/rawenc.c new file mode 120000 index 0000000..abb04b2 --- /dev/null +++ b/libffmpeg-avformat/rawenc.c @@ -0,0 +1 @@ +../upstream/libavformat/rawenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/rawenc.h b/libffmpeg-avformat/rawenc.h new file mode 120000 index 0000000..ce6eda2 --- /dev/null +++ b/libffmpeg-avformat/rawenc.h @@ -0,0 +1 @@ +../upstream/libavformat/rawenc.h \ No newline at end of file diff --git a/libffmpeg-avformat/rawutils.c b/libffmpeg-avformat/rawutils.c new file mode 120000 index 0000000..7e468f8 --- /dev/null +++ b/libffmpeg-avformat/rawutils.c @@ -0,0 +1 @@ +../upstream/libavformat/rawutils.c \ No newline at end of file diff --git a/libffmpeg-avformat/rawutils.h b/libffmpeg-avformat/rawutils.h new file mode 120000 index 0000000..6869211 --- /dev/null +++ b/libffmpeg-avformat/rawutils.h @@ -0,0 +1 @@ +../upstream/libavformat/rawutils.h \ No newline at end of file diff --git a/libffmpeg-avformat/rawvideodec.c b/libffmpeg-avformat/rawvideodec.c new file mode 120000 index 0000000..921840f --- /dev/null +++ b/libffmpeg-avformat/rawvideodec.c @@ -0,0 +1 @@ +../upstream/libavformat/rawvideodec.c \ No newline at end of file diff --git a/libffmpeg-avformat/rcwtdec.c b/libffmpeg-avformat/rcwtdec.c new file mode 120000 index 0000000..b1d9c33 --- /dev/null +++ b/libffmpeg-avformat/rcwtdec.c @@ -0,0 +1 @@ +../upstream/libavformat/rcwtdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/rcwtenc.c b/libffmpeg-avformat/rcwtenc.c new file mode 120000 index 0000000..497de13 --- /dev/null +++ b/libffmpeg-avformat/rcwtenc.c @@ -0,0 +1 @@ +../upstream/libavformat/rcwtenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/rdt.c b/libffmpeg-avformat/rdt.c new file mode 120000 index 0000000..0d4ddd0 --- /dev/null +++ b/libffmpeg-avformat/rdt.c @@ -0,0 +1 @@ +../upstream/libavformat/rdt.c \ No newline at end of file diff --git a/libffmpeg-avformat/rdt.h b/libffmpeg-avformat/rdt.h new file mode 120000 index 0000000..42a7a94 --- /dev/null +++ b/libffmpeg-avformat/rdt.h @@ -0,0 +1 @@ +../upstream/libavformat/rdt.h \ No newline at end of file diff --git a/libffmpeg-avformat/realtextdec.c b/libffmpeg-avformat/realtextdec.c new file mode 120000 index 0000000..8af6dc1 --- /dev/null +++ b/libffmpeg-avformat/realtextdec.c @@ -0,0 +1 @@ +../upstream/libavformat/realtextdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/redspark.c b/libffmpeg-avformat/redspark.c new file mode 120000 index 0000000..9832a75 --- /dev/null +++ b/libffmpeg-avformat/redspark.c @@ -0,0 +1 @@ +../upstream/libavformat/redspark.c \ No newline at end of file diff --git a/libffmpeg-avformat/replaygain.c b/libffmpeg-avformat/replaygain.c new file mode 120000 index 0000000..5df1a7c --- /dev/null +++ b/libffmpeg-avformat/replaygain.c @@ -0,0 +1 @@ +../upstream/libavformat/replaygain.c \ No newline at end of file diff --git a/libffmpeg-avformat/replaygain.h b/libffmpeg-avformat/replaygain.h new file mode 120000 index 0000000..6ba1c35 --- /dev/null +++ b/libffmpeg-avformat/replaygain.h @@ -0,0 +1 @@ +../upstream/libavformat/replaygain.h \ No newline at end of file diff --git a/libffmpeg-avformat/riff.c b/libffmpeg-avformat/riff.c new file mode 120000 index 0000000..b275157 --- /dev/null +++ b/libffmpeg-avformat/riff.c @@ -0,0 +1 @@ +../upstream/libavformat/riff.c \ No newline at end of file diff --git a/libffmpeg-avformat/riff.h b/libffmpeg-avformat/riff.h new file mode 120000 index 0000000..343a9ef --- /dev/null +++ b/libffmpeg-avformat/riff.h @@ -0,0 +1 @@ +../upstream/libavformat/riff.h \ No newline at end of file diff --git a/libffmpeg-avformat/riffdec.c b/libffmpeg-avformat/riffdec.c new file mode 120000 index 0000000..69a7d4a --- /dev/null +++ b/libffmpeg-avformat/riffdec.c @@ -0,0 +1 @@ +../upstream/libavformat/riffdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/riffenc.c b/libffmpeg-avformat/riffenc.c new file mode 120000 index 0000000..048ef44 --- /dev/null +++ b/libffmpeg-avformat/riffenc.c @@ -0,0 +1 @@ +../upstream/libavformat/riffenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/rka.c b/libffmpeg-avformat/rka.c new file mode 120000 index 0000000..b50efdb --- /dev/null +++ b/libffmpeg-avformat/rka.c @@ -0,0 +1 @@ +../upstream/libavformat/rka.c \ No newline at end of file diff --git a/libffmpeg-avformat/rl2.c b/libffmpeg-avformat/rl2.c new file mode 120000 index 0000000..767a5fc --- /dev/null +++ b/libffmpeg-avformat/rl2.c @@ -0,0 +1 @@ +../upstream/libavformat/rl2.c \ No newline at end of file diff --git a/libffmpeg-avformat/rm.c b/libffmpeg-avformat/rm.c new file mode 120000 index 0000000..afbfdd7 --- /dev/null +++ b/libffmpeg-avformat/rm.c @@ -0,0 +1 @@ +../upstream/libavformat/rm.c \ No newline at end of file diff --git a/libffmpeg-avformat/rm.h b/libffmpeg-avformat/rm.h new file mode 120000 index 0000000..34d2099 --- /dev/null +++ b/libffmpeg-avformat/rm.h @@ -0,0 +1 @@ +../upstream/libavformat/rm.h \ No newline at end of file diff --git a/libffmpeg-avformat/rmdec.c b/libffmpeg-avformat/rmdec.c new file mode 120000 index 0000000..f7172ff --- /dev/null +++ b/libffmpeg-avformat/rmdec.c @@ -0,0 +1 @@ +../upstream/libavformat/rmdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/rmenc.c b/libffmpeg-avformat/rmenc.c new file mode 120000 index 0000000..efce58d --- /dev/null +++ b/libffmpeg-avformat/rmenc.c @@ -0,0 +1 @@ +../upstream/libavformat/rmenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/rmsipr.c b/libffmpeg-avformat/rmsipr.c new file mode 120000 index 0000000..11a6497 --- /dev/null +++ b/libffmpeg-avformat/rmsipr.c @@ -0,0 +1 @@ +../upstream/libavformat/rmsipr.c \ No newline at end of file diff --git a/libffmpeg-avformat/rmsipr.h b/libffmpeg-avformat/rmsipr.h new file mode 120000 index 0000000..045250a --- /dev/null +++ b/libffmpeg-avformat/rmsipr.h @@ -0,0 +1 @@ +../upstream/libavformat/rmsipr.h \ No newline at end of file diff --git a/libffmpeg-avformat/rpl.c b/libffmpeg-avformat/rpl.c new file mode 120000 index 0000000..9475c2f --- /dev/null +++ b/libffmpeg-avformat/rpl.c @@ -0,0 +1 @@ +../upstream/libavformat/rpl.c \ No newline at end of file diff --git a/libffmpeg-avformat/rsd.c b/libffmpeg-avformat/rsd.c new file mode 120000 index 0000000..971cfc8 --- /dev/null +++ b/libffmpeg-avformat/rsd.c @@ -0,0 +1 @@ +../upstream/libavformat/rsd.c \ No newline at end of file diff --git a/libffmpeg-avformat/rso.c b/libffmpeg-avformat/rso.c new file mode 120000 index 0000000..53f9be0 --- /dev/null +++ b/libffmpeg-avformat/rso.c @@ -0,0 +1 @@ +../upstream/libavformat/rso.c \ No newline at end of file diff --git a/libffmpeg-avformat/rso.h b/libffmpeg-avformat/rso.h new file mode 120000 index 0000000..b0f8923 --- /dev/null +++ b/libffmpeg-avformat/rso.h @@ -0,0 +1 @@ +../upstream/libavformat/rso.h \ No newline at end of file diff --git a/libffmpeg-avformat/rsodec.c b/libffmpeg-avformat/rsodec.c new file mode 120000 index 0000000..2da1fd9 --- /dev/null +++ b/libffmpeg-avformat/rsodec.c @@ -0,0 +1 @@ +../upstream/libavformat/rsodec.c \ No newline at end of file diff --git a/libffmpeg-avformat/rsoenc.c b/libffmpeg-avformat/rsoenc.c new file mode 120000 index 0000000..8047fa2 --- /dev/null +++ b/libffmpeg-avformat/rsoenc.c @@ -0,0 +1 @@ +../upstream/libavformat/rsoenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtmp.h b/libffmpeg-avformat/rtmp.h new file mode 120000 index 0000000..36fb970 --- /dev/null +++ b/libffmpeg-avformat/rtmp.h @@ -0,0 +1 @@ +../upstream/libavformat/rtmp.h \ No newline at end of file diff --git a/libffmpeg-avformat/rtmpcrypt.c b/libffmpeg-avformat/rtmpcrypt.c new file mode 120000 index 0000000..13610df --- /dev/null +++ b/libffmpeg-avformat/rtmpcrypt.c @@ -0,0 +1 @@ +../upstream/libavformat/rtmpcrypt.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtmpcrypt.h b/libffmpeg-avformat/rtmpcrypt.h new file mode 120000 index 0000000..b7bca7d --- /dev/null +++ b/libffmpeg-avformat/rtmpcrypt.h @@ -0,0 +1 @@ +../upstream/libavformat/rtmpcrypt.h \ No newline at end of file diff --git a/libffmpeg-avformat/rtmpdh.c b/libffmpeg-avformat/rtmpdh.c new file mode 120000 index 0000000..e333913 --- /dev/null +++ b/libffmpeg-avformat/rtmpdh.c @@ -0,0 +1 @@ +../upstream/libavformat/rtmpdh.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtmpdh.h b/libffmpeg-avformat/rtmpdh.h new file mode 120000 index 0000000..cf1cd6c --- /dev/null +++ b/libffmpeg-avformat/rtmpdh.h @@ -0,0 +1 @@ +../upstream/libavformat/rtmpdh.h \ No newline at end of file diff --git a/libffmpeg-avformat/rtmpdigest.c b/libffmpeg-avformat/rtmpdigest.c new file mode 120000 index 0000000..185ccf7 --- /dev/null +++ b/libffmpeg-avformat/rtmpdigest.c @@ -0,0 +1 @@ +../upstream/libavformat/rtmpdigest.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtmphttp.c b/libffmpeg-avformat/rtmphttp.c new file mode 120000 index 0000000..713f00d --- /dev/null +++ b/libffmpeg-avformat/rtmphttp.c @@ -0,0 +1 @@ +../upstream/libavformat/rtmphttp.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtmppkt.c b/libffmpeg-avformat/rtmppkt.c new file mode 120000 index 0000000..296c033 --- /dev/null +++ b/libffmpeg-avformat/rtmppkt.c @@ -0,0 +1 @@ +../upstream/libavformat/rtmppkt.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtmppkt.h b/libffmpeg-avformat/rtmppkt.h new file mode 120000 index 0000000..03ff274 --- /dev/null +++ b/libffmpeg-avformat/rtmppkt.h @@ -0,0 +1 @@ +../upstream/libavformat/rtmppkt.h \ No newline at end of file diff --git a/libffmpeg-avformat/rtmpproto.c b/libffmpeg-avformat/rtmpproto.c new file mode 120000 index 0000000..b7c433a --- /dev/null +++ b/libffmpeg-avformat/rtmpproto.c @@ -0,0 +1 @@ +../upstream/libavformat/rtmpproto.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtp.c b/libffmpeg-avformat/rtp.c new file mode 120000 index 0000000..fb5b762 --- /dev/null +++ b/libffmpeg-avformat/rtp.c @@ -0,0 +1 @@ +../upstream/libavformat/rtp.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtp.h b/libffmpeg-avformat/rtp.h new file mode 120000 index 0000000..f6a0cbc --- /dev/null +++ b/libffmpeg-avformat/rtp.h @@ -0,0 +1 @@ +../upstream/libavformat/rtp.h \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec.c b/libffmpeg-avformat/rtpdec.c new file mode 120000 index 0000000..6882f25 --- /dev/null +++ b/libffmpeg-avformat/rtpdec.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec.h b/libffmpeg-avformat/rtpdec.h new file mode 120000 index 0000000..68ec09e --- /dev/null +++ b/libffmpeg-avformat/rtpdec.h @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec.h \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_ac3.c b/libffmpeg-avformat/rtpdec_ac3.c new file mode 120000 index 0000000..833023c --- /dev/null +++ b/libffmpeg-avformat/rtpdec_ac3.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_ac3.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_amr.c b/libffmpeg-avformat/rtpdec_amr.c new file mode 120000 index 0000000..d995ae0 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_amr.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_amr.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_asf.c b/libffmpeg-avformat/rtpdec_asf.c new file mode 120000 index 0000000..eaeeabc --- /dev/null +++ b/libffmpeg-avformat/rtpdec_asf.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_asf.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_dv.c b/libffmpeg-avformat/rtpdec_dv.c new file mode 120000 index 0000000..268db27 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_dv.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_dv.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_formats.h b/libffmpeg-avformat/rtpdec_formats.h new file mode 120000 index 0000000..be411e6 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_formats.h @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_formats.h \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_g726.c b/libffmpeg-avformat/rtpdec_g726.c new file mode 120000 index 0000000..6b5bb3f --- /dev/null +++ b/libffmpeg-avformat/rtpdec_g726.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_g726.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_h261.c b/libffmpeg-avformat/rtpdec_h261.c new file mode 120000 index 0000000..3b8fa46 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_h261.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_h261.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_h263.c b/libffmpeg-avformat/rtpdec_h263.c new file mode 120000 index 0000000..a38f8ee --- /dev/null +++ b/libffmpeg-avformat/rtpdec_h263.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_h263.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_h263_rfc2190.c b/libffmpeg-avformat/rtpdec_h263_rfc2190.c new file mode 120000 index 0000000..dfd0be7 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_h263_rfc2190.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_h263_rfc2190.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_h264.c b/libffmpeg-avformat/rtpdec_h264.c new file mode 120000 index 0000000..69c625e --- /dev/null +++ b/libffmpeg-avformat/rtpdec_h264.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_h264.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_hevc.c b/libffmpeg-avformat/rtpdec_hevc.c new file mode 120000 index 0000000..482823c --- /dev/null +++ b/libffmpeg-avformat/rtpdec_hevc.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_hevc.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_ilbc.c b/libffmpeg-avformat/rtpdec_ilbc.c new file mode 120000 index 0000000..14c44b0 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_ilbc.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_ilbc.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_jpeg.c b/libffmpeg-avformat/rtpdec_jpeg.c new file mode 120000 index 0000000..08abd83 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_jpeg.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_jpeg.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_latm.c b/libffmpeg-avformat/rtpdec_latm.c new file mode 120000 index 0000000..93edb13 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_latm.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_latm.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_mpa_robust.c b/libffmpeg-avformat/rtpdec_mpa_robust.c new file mode 120000 index 0000000..0d376fc --- /dev/null +++ b/libffmpeg-avformat/rtpdec_mpa_robust.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_mpa_robust.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_mpeg12.c b/libffmpeg-avformat/rtpdec_mpeg12.c new file mode 120000 index 0000000..065b1cf --- /dev/null +++ b/libffmpeg-avformat/rtpdec_mpeg12.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_mpeg12.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_mpeg4.c b/libffmpeg-avformat/rtpdec_mpeg4.c new file mode 120000 index 0000000..19d1c35 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_mpeg4.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_mpeg4.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_mpegts.c b/libffmpeg-avformat/rtpdec_mpegts.c new file mode 120000 index 0000000..56b9124 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_mpegts.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_mpegts.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_qcelp.c b/libffmpeg-avformat/rtpdec_qcelp.c new file mode 120000 index 0000000..70d305a --- /dev/null +++ b/libffmpeg-avformat/rtpdec_qcelp.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_qcelp.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_qdm2.c b/libffmpeg-avformat/rtpdec_qdm2.c new file mode 120000 index 0000000..6991ef0 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_qdm2.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_qdm2.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_qt.c b/libffmpeg-avformat/rtpdec_qt.c new file mode 120000 index 0000000..5681b4a --- /dev/null +++ b/libffmpeg-avformat/rtpdec_qt.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_qt.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_rfc4175.c b/libffmpeg-avformat/rtpdec_rfc4175.c new file mode 120000 index 0000000..9c0e177 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_rfc4175.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_rfc4175.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_svq3.c b/libffmpeg-avformat/rtpdec_svq3.c new file mode 120000 index 0000000..3d7f9c1 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_svq3.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_svq3.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_vc2hq.c b/libffmpeg-avformat/rtpdec_vc2hq.c new file mode 120000 index 0000000..93c0cc3 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_vc2hq.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_vc2hq.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_vp8.c b/libffmpeg-avformat/rtpdec_vp8.c new file mode 120000 index 0000000..2e068c7 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_vp8.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_vp8.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_vp9.c b/libffmpeg-avformat/rtpdec_vp9.c new file mode 120000 index 0000000..887ff68 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_vp9.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_vp9.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpdec_xiph.c b/libffmpeg-avformat/rtpdec_xiph.c new file mode 120000 index 0000000..9a030c1 --- /dev/null +++ b/libffmpeg-avformat/rtpdec_xiph.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpdec_xiph.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc.c b/libffmpeg-avformat/rtpenc.c new file mode 120000 index 0000000..bedbe9c --- /dev/null +++ b/libffmpeg-avformat/rtpenc.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc.h b/libffmpeg-avformat/rtpenc.h new file mode 120000 index 0000000..a1aae71 --- /dev/null +++ b/libffmpeg-avformat/rtpenc.h @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc.h \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_aac.c b/libffmpeg-avformat/rtpenc_aac.c new file mode 120000 index 0000000..69c0698 --- /dev/null +++ b/libffmpeg-avformat/rtpenc_aac.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_aac.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_amr.c b/libffmpeg-avformat/rtpenc_amr.c new file mode 120000 index 0000000..db710b5 --- /dev/null +++ b/libffmpeg-avformat/rtpenc_amr.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_amr.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_chain.c b/libffmpeg-avformat/rtpenc_chain.c new file mode 120000 index 0000000..7aceea8 --- /dev/null +++ b/libffmpeg-avformat/rtpenc_chain.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_chain.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_chain.h b/libffmpeg-avformat/rtpenc_chain.h new file mode 120000 index 0000000..6a5be6f --- /dev/null +++ b/libffmpeg-avformat/rtpenc_chain.h @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_chain.h \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_h261.c b/libffmpeg-avformat/rtpenc_h261.c new file mode 120000 index 0000000..99ca4f6 --- /dev/null +++ b/libffmpeg-avformat/rtpenc_h261.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_h261.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_h263.c b/libffmpeg-avformat/rtpenc_h263.c new file mode 120000 index 0000000..202617e --- /dev/null +++ b/libffmpeg-avformat/rtpenc_h263.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_h263.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_h263_rfc2190.c b/libffmpeg-avformat/rtpenc_h263_rfc2190.c new file mode 120000 index 0000000..a0d6a47 --- /dev/null +++ b/libffmpeg-avformat/rtpenc_h263_rfc2190.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_h263_rfc2190.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_h264_hevc.c b/libffmpeg-avformat/rtpenc_h264_hevc.c new file mode 120000 index 0000000..98efd21 --- /dev/null +++ b/libffmpeg-avformat/rtpenc_h264_hevc.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_h264_hevc.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_jpeg.c b/libffmpeg-avformat/rtpenc_jpeg.c new file mode 120000 index 0000000..cf6ee3f --- /dev/null +++ b/libffmpeg-avformat/rtpenc_jpeg.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_jpeg.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_latm.c b/libffmpeg-avformat/rtpenc_latm.c new file mode 120000 index 0000000..96d6def --- /dev/null +++ b/libffmpeg-avformat/rtpenc_latm.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_latm.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_mpegts.c b/libffmpeg-avformat/rtpenc_mpegts.c new file mode 120000 index 0000000..7900174 --- /dev/null +++ b/libffmpeg-avformat/rtpenc_mpegts.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_mpegts.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_mpv.c b/libffmpeg-avformat/rtpenc_mpv.c new file mode 120000 index 0000000..5f34dd3 --- /dev/null +++ b/libffmpeg-avformat/rtpenc_mpv.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_mpv.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_rfc4175.c b/libffmpeg-avformat/rtpenc_rfc4175.c new file mode 120000 index 0000000..79d7b15 --- /dev/null +++ b/libffmpeg-avformat/rtpenc_rfc4175.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_rfc4175.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_vc2hq.c b/libffmpeg-avformat/rtpenc_vc2hq.c new file mode 120000 index 0000000..a2d6f2c --- /dev/null +++ b/libffmpeg-avformat/rtpenc_vc2hq.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_vc2hq.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_vp8.c b/libffmpeg-avformat/rtpenc_vp8.c new file mode 120000 index 0000000..fae41a7 --- /dev/null +++ b/libffmpeg-avformat/rtpenc_vp8.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_vp8.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_vp9.c b/libffmpeg-avformat/rtpenc_vp9.c new file mode 120000 index 0000000..b4c2bdc --- /dev/null +++ b/libffmpeg-avformat/rtpenc_vp9.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_vp9.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpenc_xiph.c b/libffmpeg-avformat/rtpenc_xiph.c new file mode 120000 index 0000000..1f8acad --- /dev/null +++ b/libffmpeg-avformat/rtpenc_xiph.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpenc_xiph.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpproto.c b/libffmpeg-avformat/rtpproto.c new file mode 120000 index 0000000..976eae1 --- /dev/null +++ b/libffmpeg-avformat/rtpproto.c @@ -0,0 +1 @@ +../upstream/libavformat/rtpproto.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtpproto.h b/libffmpeg-avformat/rtpproto.h new file mode 120000 index 0000000..22af5c6 --- /dev/null +++ b/libffmpeg-avformat/rtpproto.h @@ -0,0 +1 @@ +../upstream/libavformat/rtpproto.h \ No newline at end of file diff --git a/libffmpeg-avformat/rtsp.c b/libffmpeg-avformat/rtsp.c new file mode 120000 index 0000000..02a6aca --- /dev/null +++ b/libffmpeg-avformat/rtsp.c @@ -0,0 +1 @@ +../upstream/libavformat/rtsp.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtsp.h b/libffmpeg-avformat/rtsp.h new file mode 120000 index 0000000..1aa3b5a --- /dev/null +++ b/libffmpeg-avformat/rtsp.h @@ -0,0 +1 @@ +../upstream/libavformat/rtsp.h \ No newline at end of file diff --git a/libffmpeg-avformat/rtspcodes.h b/libffmpeg-avformat/rtspcodes.h new file mode 120000 index 0000000..a787a21 --- /dev/null +++ b/libffmpeg-avformat/rtspcodes.h @@ -0,0 +1 @@ +../upstream/libavformat/rtspcodes.h \ No newline at end of file diff --git a/libffmpeg-avformat/rtspdec.c b/libffmpeg-avformat/rtspdec.c new file mode 120000 index 0000000..f21c7c7 --- /dev/null +++ b/libffmpeg-avformat/rtspdec.c @@ -0,0 +1 @@ +../upstream/libavformat/rtspdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/rtspenc.c b/libffmpeg-avformat/rtspenc.c new file mode 120000 index 0000000..b41bffc --- /dev/null +++ b/libffmpeg-avformat/rtspenc.c @@ -0,0 +1 @@ +../upstream/libavformat/rtspenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/s337m.c b/libffmpeg-avformat/s337m.c new file mode 120000 index 0000000..b77f9c1 --- /dev/null +++ b/libffmpeg-avformat/s337m.c @@ -0,0 +1 @@ +../upstream/libavformat/s337m.c \ No newline at end of file diff --git a/libffmpeg-avformat/samidec.c b/libffmpeg-avformat/samidec.c new file mode 120000 index 0000000..d29e961 --- /dev/null +++ b/libffmpeg-avformat/samidec.c @@ -0,0 +1 @@ +../upstream/libavformat/samidec.c \ No newline at end of file diff --git a/libffmpeg-avformat/sapdec.c b/libffmpeg-avformat/sapdec.c new file mode 120000 index 0000000..1f7304a --- /dev/null +++ b/libffmpeg-avformat/sapdec.c @@ -0,0 +1 @@ +../upstream/libavformat/sapdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/sapenc.c b/libffmpeg-avformat/sapenc.c new file mode 120000 index 0000000..5df9aff --- /dev/null +++ b/libffmpeg-avformat/sapenc.c @@ -0,0 +1 @@ +../upstream/libavformat/sapenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/sauce.c b/libffmpeg-avformat/sauce.c new file mode 120000 index 0000000..366ec47 --- /dev/null +++ b/libffmpeg-avformat/sauce.c @@ -0,0 +1 @@ +../upstream/libavformat/sauce.c \ No newline at end of file diff --git a/libffmpeg-avformat/sauce.h b/libffmpeg-avformat/sauce.h new file mode 120000 index 0000000..4781048 --- /dev/null +++ b/libffmpeg-avformat/sauce.h @@ -0,0 +1 @@ +../upstream/libavformat/sauce.h \ No newline at end of file diff --git a/libffmpeg-avformat/sbcdec.c b/libffmpeg-avformat/sbcdec.c new file mode 120000 index 0000000..d7acf8c --- /dev/null +++ b/libffmpeg-avformat/sbcdec.c @@ -0,0 +1 @@ +../upstream/libavformat/sbcdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/sbgdec.c b/libffmpeg-avformat/sbgdec.c new file mode 120000 index 0000000..68e7b91 --- /dev/null +++ b/libffmpeg-avformat/sbgdec.c @@ -0,0 +1 @@ +../upstream/libavformat/sbgdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/sccdec.c b/libffmpeg-avformat/sccdec.c new file mode 120000 index 0000000..3f024a1 --- /dev/null +++ b/libffmpeg-avformat/sccdec.c @@ -0,0 +1 @@ +../upstream/libavformat/sccdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/sccenc.c b/libffmpeg-avformat/sccenc.c new file mode 120000 index 0000000..806ca49 --- /dev/null +++ b/libffmpeg-avformat/sccenc.c @@ -0,0 +1 @@ +../upstream/libavformat/sccenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/scd.c b/libffmpeg-avformat/scd.c new file mode 120000 index 0000000..3b7584d --- /dev/null +++ b/libffmpeg-avformat/scd.c @@ -0,0 +1 @@ +../upstream/libavformat/scd.c \ No newline at end of file diff --git a/libffmpeg-avformat/sctp.c b/libffmpeg-avformat/sctp.c new file mode 120000 index 0000000..e737959 --- /dev/null +++ b/libffmpeg-avformat/sctp.c @@ -0,0 +1 @@ +../upstream/libavformat/sctp.c \ No newline at end of file diff --git a/libffmpeg-avformat/sdns.c b/libffmpeg-avformat/sdns.c new file mode 120000 index 0000000..44d5ccc --- /dev/null +++ b/libffmpeg-avformat/sdns.c @@ -0,0 +1 @@ +../upstream/libavformat/sdns.c \ No newline at end of file diff --git a/libffmpeg-avformat/sdp.c b/libffmpeg-avformat/sdp.c new file mode 120000 index 0000000..ecd3500 --- /dev/null +++ b/libffmpeg-avformat/sdp.c @@ -0,0 +1 @@ +../upstream/libavformat/sdp.c \ No newline at end of file diff --git a/libffmpeg-avformat/sdr2.c b/libffmpeg-avformat/sdr2.c new file mode 120000 index 0000000..4fdaa70 --- /dev/null +++ b/libffmpeg-avformat/sdr2.c @@ -0,0 +1 @@ +../upstream/libavformat/sdr2.c \ No newline at end of file diff --git a/libffmpeg-avformat/sdsdec.c b/libffmpeg-avformat/sdsdec.c new file mode 120000 index 0000000..f87d97a --- /dev/null +++ b/libffmpeg-avformat/sdsdec.c @@ -0,0 +1 @@ +../upstream/libavformat/sdsdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/sdxdec.c b/libffmpeg-avformat/sdxdec.c new file mode 120000 index 0000000..96985d8 --- /dev/null +++ b/libffmpeg-avformat/sdxdec.c @@ -0,0 +1 @@ +../upstream/libavformat/sdxdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/seek.c b/libffmpeg-avformat/seek.c new file mode 120000 index 0000000..c82708a --- /dev/null +++ b/libffmpeg-avformat/seek.c @@ -0,0 +1 @@ +../upstream/libavformat/seek.c \ No newline at end of file diff --git a/libffmpeg-avformat/segafilm.c b/libffmpeg-avformat/segafilm.c new file mode 120000 index 0000000..24311c2 --- /dev/null +++ b/libffmpeg-avformat/segafilm.c @@ -0,0 +1 @@ +../upstream/libavformat/segafilm.c \ No newline at end of file diff --git a/libffmpeg-avformat/segafilmenc.c b/libffmpeg-avformat/segafilmenc.c new file mode 120000 index 0000000..129b41f --- /dev/null +++ b/libffmpeg-avformat/segafilmenc.c @@ -0,0 +1 @@ +../upstream/libavformat/segafilmenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/segment.c b/libffmpeg-avformat/segment.c new file mode 120000 index 0000000..b1ebf8f --- /dev/null +++ b/libffmpeg-avformat/segment.c @@ -0,0 +1 @@ +../upstream/libavformat/segment.c \ No newline at end of file diff --git a/libffmpeg-avformat/serdec.c b/libffmpeg-avformat/serdec.c new file mode 120000 index 0000000..b688f67 --- /dev/null +++ b/libffmpeg-avformat/serdec.c @@ -0,0 +1 @@ +../upstream/libavformat/serdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/sga.c b/libffmpeg-avformat/sga.c new file mode 120000 index 0000000..684773e --- /dev/null +++ b/libffmpeg-avformat/sga.c @@ -0,0 +1 @@ +../upstream/libavformat/sga.c \ No newline at end of file diff --git a/libffmpeg-avformat/shortendec.c b/libffmpeg-avformat/shortendec.c new file mode 120000 index 0000000..372ed0c --- /dev/null +++ b/libffmpeg-avformat/shortendec.c @@ -0,0 +1 @@ +../upstream/libavformat/shortendec.c \ No newline at end of file diff --git a/libffmpeg-avformat/sierravmd.c b/libffmpeg-avformat/sierravmd.c new file mode 120000 index 0000000..4937460 --- /dev/null +++ b/libffmpeg-avformat/sierravmd.c @@ -0,0 +1 @@ +../upstream/libavformat/sierravmd.c \ No newline at end of file diff --git a/libffmpeg-avformat/siff.c b/libffmpeg-avformat/siff.c new file mode 120000 index 0000000..322f995 --- /dev/null +++ b/libffmpeg-avformat/siff.c @@ -0,0 +1 @@ +../upstream/libavformat/siff.c \ No newline at end of file diff --git a/libffmpeg-avformat/smacker.c b/libffmpeg-avformat/smacker.c new file mode 120000 index 0000000..67aa00c --- /dev/null +++ b/libffmpeg-avformat/smacker.c @@ -0,0 +1 @@ +../upstream/libavformat/smacker.c \ No newline at end of file diff --git a/libffmpeg-avformat/smjpeg.c b/libffmpeg-avformat/smjpeg.c new file mode 120000 index 0000000..15702d1 --- /dev/null +++ b/libffmpeg-avformat/smjpeg.c @@ -0,0 +1 @@ +../upstream/libavformat/smjpeg.c \ No newline at end of file diff --git a/libffmpeg-avformat/smjpeg.h b/libffmpeg-avformat/smjpeg.h new file mode 120000 index 0000000..f5ae1ec --- /dev/null +++ b/libffmpeg-avformat/smjpeg.h @@ -0,0 +1 @@ +../upstream/libavformat/smjpeg.h \ No newline at end of file diff --git a/libffmpeg-avformat/smjpegdec.c b/libffmpeg-avformat/smjpegdec.c new file mode 120000 index 0000000..28a4eeb --- /dev/null +++ b/libffmpeg-avformat/smjpegdec.c @@ -0,0 +1 @@ +../upstream/libavformat/smjpegdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/smjpegenc.c b/libffmpeg-avformat/smjpegenc.c new file mode 120000 index 0000000..16987f1 --- /dev/null +++ b/libffmpeg-avformat/smjpegenc.c @@ -0,0 +1 @@ +../upstream/libavformat/smjpegenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/smoothstreamingenc.c b/libffmpeg-avformat/smoothstreamingenc.c new file mode 120000 index 0000000..5c0a0b5 --- /dev/null +++ b/libffmpeg-avformat/smoothstreamingenc.c @@ -0,0 +1 @@ +../upstream/libavformat/smoothstreamingenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/smush.c b/libffmpeg-avformat/smush.c new file mode 120000 index 0000000..79cf568 --- /dev/null +++ b/libffmpeg-avformat/smush.c @@ -0,0 +1 @@ +../upstream/libavformat/smush.c \ No newline at end of file diff --git a/libffmpeg-avformat/sol.c b/libffmpeg-avformat/sol.c new file mode 120000 index 0000000..19a7db2 --- /dev/null +++ b/libffmpeg-avformat/sol.c @@ -0,0 +1 @@ +../upstream/libavformat/sol.c \ No newline at end of file diff --git a/libffmpeg-avformat/sox.h b/libffmpeg-avformat/sox.h new file mode 120000 index 0000000..a0bd041 --- /dev/null +++ b/libffmpeg-avformat/sox.h @@ -0,0 +1 @@ +../upstream/libavformat/sox.h \ No newline at end of file diff --git a/libffmpeg-avformat/soxdec.c b/libffmpeg-avformat/soxdec.c new file mode 120000 index 0000000..20db08c --- /dev/null +++ b/libffmpeg-avformat/soxdec.c @@ -0,0 +1 @@ +../upstream/libavformat/soxdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/soxenc.c b/libffmpeg-avformat/soxenc.c new file mode 120000 index 0000000..039aaa2 --- /dev/null +++ b/libffmpeg-avformat/soxenc.c @@ -0,0 +1 @@ +../upstream/libavformat/soxenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/spdif.c b/libffmpeg-avformat/spdif.c new file mode 120000 index 0000000..74c5d8d --- /dev/null +++ b/libffmpeg-avformat/spdif.c @@ -0,0 +1 @@ +../upstream/libavformat/spdif.c \ No newline at end of file diff --git a/libffmpeg-avformat/spdif.h b/libffmpeg-avformat/spdif.h new file mode 120000 index 0000000..f120359 --- /dev/null +++ b/libffmpeg-avformat/spdif.h @@ -0,0 +1 @@ +../upstream/libavformat/spdif.h \ No newline at end of file diff --git a/libffmpeg-avformat/spdifdec.c b/libffmpeg-avformat/spdifdec.c new file mode 120000 index 0000000..1524ed2 --- /dev/null +++ b/libffmpeg-avformat/spdifdec.c @@ -0,0 +1 @@ +../upstream/libavformat/spdifdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/spdifenc.c b/libffmpeg-avformat/spdifenc.c new file mode 120000 index 0000000..a2152de --- /dev/null +++ b/libffmpeg-avformat/spdifenc.c @@ -0,0 +1 @@ +../upstream/libavformat/spdifenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/srtdec.c b/libffmpeg-avformat/srtdec.c new file mode 120000 index 0000000..ab1b6b6 --- /dev/null +++ b/libffmpeg-avformat/srtdec.c @@ -0,0 +1 @@ +../upstream/libavformat/srtdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/srtenc.c b/libffmpeg-avformat/srtenc.c new file mode 120000 index 0000000..0436000 --- /dev/null +++ b/libffmpeg-avformat/srtenc.c @@ -0,0 +1 @@ +../upstream/libavformat/srtenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/srtp.c b/libffmpeg-avformat/srtp.c new file mode 120000 index 0000000..974379b --- /dev/null +++ b/libffmpeg-avformat/srtp.c @@ -0,0 +1 @@ +../upstream/libavformat/srtp.c \ No newline at end of file diff --git a/libffmpeg-avformat/srtp.h b/libffmpeg-avformat/srtp.h new file mode 120000 index 0000000..37b9ffc --- /dev/null +++ b/libffmpeg-avformat/srtp.h @@ -0,0 +1 @@ +../upstream/libavformat/srtp.h \ No newline at end of file diff --git a/libffmpeg-avformat/srtpproto.c b/libffmpeg-avformat/srtpproto.c new file mode 120000 index 0000000..e506231 --- /dev/null +++ b/libffmpeg-avformat/srtpproto.c @@ -0,0 +1 @@ +../upstream/libavformat/srtpproto.c \ No newline at end of file diff --git a/libffmpeg-avformat/stldec.c b/libffmpeg-avformat/stldec.c new file mode 120000 index 0000000..3979f1f --- /dev/null +++ b/libffmpeg-avformat/stldec.c @@ -0,0 +1 @@ +../upstream/libavformat/stldec.c \ No newline at end of file diff --git a/libffmpeg-avformat/subfile.c b/libffmpeg-avformat/subfile.c new file mode 120000 index 0000000..58ff762 --- /dev/null +++ b/libffmpeg-avformat/subfile.c @@ -0,0 +1 @@ +../upstream/libavformat/subfile.c \ No newline at end of file diff --git a/libffmpeg-avformat/subtitles.c b/libffmpeg-avformat/subtitles.c new file mode 120000 index 0000000..9cf7305 --- /dev/null +++ b/libffmpeg-avformat/subtitles.c @@ -0,0 +1 @@ +../upstream/libavformat/subtitles.c \ No newline at end of file diff --git a/libffmpeg-avformat/subtitles.h b/libffmpeg-avformat/subtitles.h new file mode 120000 index 0000000..ac63af9 --- /dev/null +++ b/libffmpeg-avformat/subtitles.h @@ -0,0 +1 @@ +../upstream/libavformat/subtitles.h \ No newline at end of file diff --git a/libffmpeg-avformat/subviewer1dec.c b/libffmpeg-avformat/subviewer1dec.c new file mode 120000 index 0000000..8d7e52b --- /dev/null +++ b/libffmpeg-avformat/subviewer1dec.c @@ -0,0 +1 @@ +../upstream/libavformat/subviewer1dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/subviewerdec.c b/libffmpeg-avformat/subviewerdec.c new file mode 120000 index 0000000..9837e8f --- /dev/null +++ b/libffmpeg-avformat/subviewerdec.c @@ -0,0 +1 @@ +../upstream/libavformat/subviewerdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/supdec.c b/libffmpeg-avformat/supdec.c new file mode 120000 index 0000000..1a1d40b --- /dev/null +++ b/libffmpeg-avformat/supdec.c @@ -0,0 +1 @@ +../upstream/libavformat/supdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/supenc.c b/libffmpeg-avformat/supenc.c new file mode 120000 index 0000000..ed5436f --- /dev/null +++ b/libffmpeg-avformat/supenc.c @@ -0,0 +1 @@ +../upstream/libavformat/supenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/svag.c b/libffmpeg-avformat/svag.c new file mode 120000 index 0000000..b2ddbd3 --- /dev/null +++ b/libffmpeg-avformat/svag.c @@ -0,0 +1 @@ +../upstream/libavformat/svag.c \ No newline at end of file diff --git a/libffmpeg-avformat/svs.c b/libffmpeg-avformat/svs.c new file mode 120000 index 0000000..034a796 --- /dev/null +++ b/libffmpeg-avformat/svs.c @@ -0,0 +1 @@ +../upstream/libavformat/svs.c \ No newline at end of file diff --git a/libffmpeg-avformat/swf.c b/libffmpeg-avformat/swf.c new file mode 120000 index 0000000..d0c2a71 --- /dev/null +++ b/libffmpeg-avformat/swf.c @@ -0,0 +1 @@ +../upstream/libavformat/swf.c \ No newline at end of file diff --git a/libffmpeg-avformat/swf.h b/libffmpeg-avformat/swf.h new file mode 120000 index 0000000..ab10792 --- /dev/null +++ b/libffmpeg-avformat/swf.h @@ -0,0 +1 @@ +../upstream/libavformat/swf.h \ No newline at end of file diff --git a/libffmpeg-avformat/swfdec.c b/libffmpeg-avformat/swfdec.c new file mode 120000 index 0000000..defd4a6 --- /dev/null +++ b/libffmpeg-avformat/swfdec.c @@ -0,0 +1 @@ +../upstream/libavformat/swfdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/swfenc.c b/libffmpeg-avformat/swfenc.c new file mode 120000 index 0000000..b4fa5a7 --- /dev/null +++ b/libffmpeg-avformat/swfenc.c @@ -0,0 +1 @@ +../upstream/libavformat/swfenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/takdec.c b/libffmpeg-avformat/takdec.c new file mode 120000 index 0000000..121b874 --- /dev/null +++ b/libffmpeg-avformat/takdec.c @@ -0,0 +1 @@ +../upstream/libavformat/takdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/tcp.c b/libffmpeg-avformat/tcp.c new file mode 120000 index 0000000..0ae53c9 --- /dev/null +++ b/libffmpeg-avformat/tcp.c @@ -0,0 +1 @@ +../upstream/libavformat/tcp.c \ No newline at end of file diff --git a/libffmpeg-avformat/tedcaptionsdec.c b/libffmpeg-avformat/tedcaptionsdec.c new file mode 120000 index 0000000..6b0f555 --- /dev/null +++ b/libffmpeg-avformat/tedcaptionsdec.c @@ -0,0 +1 @@ +../upstream/libavformat/tedcaptionsdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/tee.c b/libffmpeg-avformat/tee.c new file mode 120000 index 0000000..b1142c9 --- /dev/null +++ b/libffmpeg-avformat/tee.c @@ -0,0 +1 @@ +../upstream/libavformat/tee.c \ No newline at end of file diff --git a/libffmpeg-avformat/tee_common.c b/libffmpeg-avformat/tee_common.c new file mode 120000 index 0000000..c994f39 --- /dev/null +++ b/libffmpeg-avformat/tee_common.c @@ -0,0 +1 @@ +../upstream/libavformat/tee_common.c \ No newline at end of file diff --git a/libffmpeg-avformat/tee_common.h b/libffmpeg-avformat/tee_common.h new file mode 120000 index 0000000..87d5c18 --- /dev/null +++ b/libffmpeg-avformat/tee_common.h @@ -0,0 +1 @@ +../upstream/libavformat/tee_common.h \ No newline at end of file diff --git a/libffmpeg-avformat/teeproto.c b/libffmpeg-avformat/teeproto.c new file mode 120000 index 0000000..629c5e8 --- /dev/null +++ b/libffmpeg-avformat/teeproto.c @@ -0,0 +1 @@ +../upstream/libavformat/teeproto.c \ No newline at end of file diff --git a/libffmpeg-avformat/thp.c b/libffmpeg-avformat/thp.c new file mode 120000 index 0000000..1489c33 --- /dev/null +++ b/libffmpeg-avformat/thp.c @@ -0,0 +1 @@ +../upstream/libavformat/thp.c \ No newline at end of file diff --git a/libffmpeg-avformat/tiertexseq.c b/libffmpeg-avformat/tiertexseq.c new file mode 120000 index 0000000..a98db41 --- /dev/null +++ b/libffmpeg-avformat/tiertexseq.c @@ -0,0 +1 @@ +../upstream/libavformat/tiertexseq.c \ No newline at end of file diff --git a/libffmpeg-avformat/tls.c b/libffmpeg-avformat/tls.c new file mode 120000 index 0000000..a018f60 --- /dev/null +++ b/libffmpeg-avformat/tls.c @@ -0,0 +1 @@ +../upstream/libavformat/tls.c \ No newline at end of file diff --git a/libffmpeg-avformat/tls.h b/libffmpeg-avformat/tls.h new file mode 120000 index 0000000..9c3d9db --- /dev/null +++ b/libffmpeg-avformat/tls.h @@ -0,0 +1 @@ +../upstream/libavformat/tls.h \ No newline at end of file diff --git a/libffmpeg-avformat/tls_gnutls.c b/libffmpeg-avformat/tls_gnutls.c new file mode 120000 index 0000000..9ca5e0e --- /dev/null +++ b/libffmpeg-avformat/tls_gnutls.c @@ -0,0 +1 @@ +../upstream/libavformat/tls_gnutls.c \ No newline at end of file diff --git a/libffmpeg-avformat/tls_libtls.c b/libffmpeg-avformat/tls_libtls.c new file mode 120000 index 0000000..f168822 --- /dev/null +++ b/libffmpeg-avformat/tls_libtls.c @@ -0,0 +1 @@ +../upstream/libavformat/tls_libtls.c \ No newline at end of file diff --git a/libffmpeg-avformat/tls_mbedtls.c b/libffmpeg-avformat/tls_mbedtls.c new file mode 120000 index 0000000..4fdd5c9 --- /dev/null +++ b/libffmpeg-avformat/tls_mbedtls.c @@ -0,0 +1 @@ +../upstream/libavformat/tls_mbedtls.c \ No newline at end of file diff --git a/libffmpeg-avformat/tls_openssl.c b/libffmpeg-avformat/tls_openssl.c new file mode 120000 index 0000000..04544f8 --- /dev/null +++ b/libffmpeg-avformat/tls_openssl.c @@ -0,0 +1 @@ +../upstream/libavformat/tls_openssl.c \ No newline at end of file diff --git a/libffmpeg-avformat/tls_schannel.c b/libffmpeg-avformat/tls_schannel.c new file mode 120000 index 0000000..68c2f7b --- /dev/null +++ b/libffmpeg-avformat/tls_schannel.c @@ -0,0 +1 @@ +../upstream/libavformat/tls_schannel.c \ No newline at end of file diff --git a/libffmpeg-avformat/tls_securetransport.c b/libffmpeg-avformat/tls_securetransport.c new file mode 120000 index 0000000..383e697 --- /dev/null +++ b/libffmpeg-avformat/tls_securetransport.c @@ -0,0 +1 @@ +../upstream/libavformat/tls_securetransport.c \ No newline at end of file diff --git a/libffmpeg-avformat/tmv.c b/libffmpeg-avformat/tmv.c new file mode 120000 index 0000000..1a0348f --- /dev/null +++ b/libffmpeg-avformat/tmv.c @@ -0,0 +1 @@ +../upstream/libavformat/tmv.c \ No newline at end of file diff --git a/libffmpeg-avformat/to_upper4.c b/libffmpeg-avformat/to_upper4.c new file mode 120000 index 0000000..5ced259 --- /dev/null +++ b/libffmpeg-avformat/to_upper4.c @@ -0,0 +1 @@ +../upstream/libavformat/to_upper4.c \ No newline at end of file diff --git a/libffmpeg-avformat/tta.c b/libffmpeg-avformat/tta.c new file mode 120000 index 0000000..217cb39 --- /dev/null +++ b/libffmpeg-avformat/tta.c @@ -0,0 +1 @@ +../upstream/libavformat/tta.c \ No newline at end of file diff --git a/libffmpeg-avformat/ttaenc.c b/libffmpeg-avformat/ttaenc.c new file mode 120000 index 0000000..96525c2 --- /dev/null +++ b/libffmpeg-avformat/ttaenc.c @@ -0,0 +1 @@ +../upstream/libavformat/ttaenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/ttmlenc.c b/libffmpeg-avformat/ttmlenc.c new file mode 120000 index 0000000..e7c910d --- /dev/null +++ b/libffmpeg-avformat/ttmlenc.c @@ -0,0 +1 @@ +../upstream/libavformat/ttmlenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/ttmlenc.h b/libffmpeg-avformat/ttmlenc.h new file mode 120000 index 0000000..5dc4247 --- /dev/null +++ b/libffmpeg-avformat/ttmlenc.h @@ -0,0 +1 @@ +../upstream/libavformat/ttmlenc.h \ No newline at end of file diff --git a/libffmpeg-avformat/tty.c b/libffmpeg-avformat/tty.c new file mode 120000 index 0000000..6e0d7f7 --- /dev/null +++ b/libffmpeg-avformat/tty.c @@ -0,0 +1 @@ +../upstream/libavformat/tty.c \ No newline at end of file diff --git a/libffmpeg-avformat/txd.c b/libffmpeg-avformat/txd.c new file mode 120000 index 0000000..40344f3 --- /dev/null +++ b/libffmpeg-avformat/txd.c @@ -0,0 +1 @@ +../upstream/libavformat/txd.c \ No newline at end of file diff --git a/libffmpeg-avformat/ty.c b/libffmpeg-avformat/ty.c new file mode 120000 index 0000000..63b8bef --- /dev/null +++ b/libffmpeg-avformat/ty.c @@ -0,0 +1 @@ +../upstream/libavformat/ty.c \ No newline at end of file diff --git a/libffmpeg-avformat/udp.c b/libffmpeg-avformat/udp.c new file mode 120000 index 0000000..26fdfd0 --- /dev/null +++ b/libffmpeg-avformat/udp.c @@ -0,0 +1 @@ +../upstream/libavformat/udp.c \ No newline at end of file diff --git a/libffmpeg-avformat/uncodedframecrcenc.c b/libffmpeg-avformat/uncodedframecrcenc.c new file mode 120000 index 0000000..100733e --- /dev/null +++ b/libffmpeg-avformat/uncodedframecrcenc.c @@ -0,0 +1 @@ +../upstream/libavformat/uncodedframecrcenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/unix.c b/libffmpeg-avformat/unix.c new file mode 120000 index 0000000..99ffac9 --- /dev/null +++ b/libffmpeg-avformat/unix.c @@ -0,0 +1 @@ +../upstream/libavformat/unix.c \ No newline at end of file diff --git a/libffmpeg-avformat/url.c b/libffmpeg-avformat/url.c new file mode 120000 index 0000000..e3f4098 --- /dev/null +++ b/libffmpeg-avformat/url.c @@ -0,0 +1 @@ +../upstream/libavformat/url.c \ No newline at end of file diff --git a/libffmpeg-avformat/url.h b/libffmpeg-avformat/url.h new file mode 120000 index 0000000..644fafe --- /dev/null +++ b/libffmpeg-avformat/url.h @@ -0,0 +1 @@ +../upstream/libavformat/url.h \ No newline at end of file diff --git a/libffmpeg-avformat/urldecode.c b/libffmpeg-avformat/urldecode.c new file mode 120000 index 0000000..f23f3d8 --- /dev/null +++ b/libffmpeg-avformat/urldecode.c @@ -0,0 +1 @@ +../upstream/libavformat/urldecode.c \ No newline at end of file diff --git a/libffmpeg-avformat/urldecode.h b/libffmpeg-avformat/urldecode.h new file mode 120000 index 0000000..e6b623c --- /dev/null +++ b/libffmpeg-avformat/urldecode.h @@ -0,0 +1 @@ +../upstream/libavformat/urldecode.h \ No newline at end of file diff --git a/libffmpeg-avformat/usmdec.c b/libffmpeg-avformat/usmdec.c new file mode 120000 index 0000000..a59b894 --- /dev/null +++ b/libffmpeg-avformat/usmdec.c @@ -0,0 +1 @@ +../upstream/libavformat/usmdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/utils.c b/libffmpeg-avformat/utils.c new file mode 120000 index 0000000..e20980b --- /dev/null +++ b/libffmpeg-avformat/utils.c @@ -0,0 +1 @@ +../upstream/libavformat/utils.c \ No newline at end of file diff --git a/libffmpeg-avformat/vag.c b/libffmpeg-avformat/vag.c new file mode 120000 index 0000000..2c48deb --- /dev/null +++ b/libffmpeg-avformat/vag.c @@ -0,0 +1 @@ +../upstream/libavformat/vag.c \ No newline at end of file diff --git a/libffmpeg-avformat/vapoursynth.c b/libffmpeg-avformat/vapoursynth.c new file mode 120000 index 0000000..eac0b41 --- /dev/null +++ b/libffmpeg-avformat/vapoursynth.c @@ -0,0 +1 @@ +../upstream/libavformat/vapoursynth.c \ No newline at end of file diff --git a/libffmpeg-avformat/vc1dec.c b/libffmpeg-avformat/vc1dec.c new file mode 120000 index 0000000..1aa8d09 --- /dev/null +++ b/libffmpeg-avformat/vc1dec.c @@ -0,0 +1 @@ +../upstream/libavformat/vc1dec.c \ No newline at end of file diff --git a/libffmpeg-avformat/vc1test.c b/libffmpeg-avformat/vc1test.c new file mode 120000 index 0000000..8b4a2ab --- /dev/null +++ b/libffmpeg-avformat/vc1test.c @@ -0,0 +1 @@ +../upstream/libavformat/vc1test.c \ No newline at end of file diff --git a/libffmpeg-avformat/vc1testenc.c b/libffmpeg-avformat/vc1testenc.c new file mode 120000 index 0000000..af08709 --- /dev/null +++ b/libffmpeg-avformat/vc1testenc.c @@ -0,0 +1 @@ +../upstream/libavformat/vc1testenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/version.c b/libffmpeg-avformat/version.c new file mode 120000 index 0000000..e21dcce --- /dev/null +++ b/libffmpeg-avformat/version.c @@ -0,0 +1 @@ +../upstream/libavformat/version.c \ No newline at end of file diff --git a/libffmpeg-avformat/version.h b/libffmpeg-avformat/version.h new file mode 120000 index 0000000..b267cac --- /dev/null +++ b/libffmpeg-avformat/version.h @@ -0,0 +1 @@ +../upstream/libavformat/version.h \ No newline at end of file diff --git a/libffmpeg-avformat/version_major.h b/libffmpeg-avformat/version_major.h new file mode 120000 index 0000000..8336d70 --- /dev/null +++ b/libffmpeg-avformat/version_major.h @@ -0,0 +1 @@ +../upstream/libavformat/version_major.h \ No newline at end of file diff --git a/libffmpeg-avformat/vividas.c b/libffmpeg-avformat/vividas.c new file mode 120000 index 0000000..74dadf9 --- /dev/null +++ b/libffmpeg-avformat/vividas.c @@ -0,0 +1 @@ +../upstream/libavformat/vividas.c \ No newline at end of file diff --git a/libffmpeg-avformat/vivo.c b/libffmpeg-avformat/vivo.c new file mode 120000 index 0000000..2a25228 --- /dev/null +++ b/libffmpeg-avformat/vivo.c @@ -0,0 +1 @@ +../upstream/libavformat/vivo.c \ No newline at end of file diff --git a/libffmpeg-avformat/voc.c b/libffmpeg-avformat/voc.c new file mode 120000 index 0000000..c0f6752 --- /dev/null +++ b/libffmpeg-avformat/voc.c @@ -0,0 +1 @@ +../upstream/libavformat/voc.c \ No newline at end of file diff --git a/libffmpeg-avformat/voc.h b/libffmpeg-avformat/voc.h new file mode 120000 index 0000000..d8617c9 --- /dev/null +++ b/libffmpeg-avformat/voc.h @@ -0,0 +1 @@ +../upstream/libavformat/voc.h \ No newline at end of file diff --git a/libffmpeg-avformat/voc_packet.c b/libffmpeg-avformat/voc_packet.c new file mode 120000 index 0000000..673e1e9 --- /dev/null +++ b/libffmpeg-avformat/voc_packet.c @@ -0,0 +1 @@ +../upstream/libavformat/voc_packet.c \ No newline at end of file diff --git a/libffmpeg-avformat/vocdec.c b/libffmpeg-avformat/vocdec.c new file mode 120000 index 0000000..3c28875 --- /dev/null +++ b/libffmpeg-avformat/vocdec.c @@ -0,0 +1 @@ +../upstream/libavformat/vocdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/vocenc.c b/libffmpeg-avformat/vocenc.c new file mode 120000 index 0000000..dfa200d --- /dev/null +++ b/libffmpeg-avformat/vocenc.c @@ -0,0 +1 @@ +../upstream/libavformat/vocenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/vorbiscomment.c b/libffmpeg-avformat/vorbiscomment.c new file mode 120000 index 0000000..7896d5e --- /dev/null +++ b/libffmpeg-avformat/vorbiscomment.c @@ -0,0 +1 @@ +../upstream/libavformat/vorbiscomment.c \ No newline at end of file diff --git a/libffmpeg-avformat/vorbiscomment.h b/libffmpeg-avformat/vorbiscomment.h new file mode 120000 index 0000000..6b936e1 --- /dev/null +++ b/libffmpeg-avformat/vorbiscomment.h @@ -0,0 +1 @@ +../upstream/libavformat/vorbiscomment.h \ No newline at end of file diff --git a/libffmpeg-avformat/vpcc.c b/libffmpeg-avformat/vpcc.c new file mode 120000 index 0000000..a4214df --- /dev/null +++ b/libffmpeg-avformat/vpcc.c @@ -0,0 +1 @@ +../upstream/libavformat/vpcc.c \ No newline at end of file diff --git a/libffmpeg-avformat/vpcc.h b/libffmpeg-avformat/vpcc.h new file mode 120000 index 0000000..3001e62 --- /dev/null +++ b/libffmpeg-avformat/vpcc.h @@ -0,0 +1 @@ +../upstream/libavformat/vpcc.h \ No newline at end of file diff --git a/libffmpeg-avformat/vpk.c b/libffmpeg-avformat/vpk.c new file mode 120000 index 0000000..90bfaff --- /dev/null +++ b/libffmpeg-avformat/vpk.c @@ -0,0 +1 @@ +../upstream/libavformat/vpk.c \ No newline at end of file diff --git a/libffmpeg-avformat/vplayerdec.c b/libffmpeg-avformat/vplayerdec.c new file mode 120000 index 0000000..7390cc9 --- /dev/null +++ b/libffmpeg-avformat/vplayerdec.c @@ -0,0 +1 @@ +../upstream/libavformat/vplayerdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/vqf.c b/libffmpeg-avformat/vqf.c new file mode 120000 index 0000000..bbe842d --- /dev/null +++ b/libffmpeg-avformat/vqf.c @@ -0,0 +1 @@ +../upstream/libavformat/vqf.c \ No newline at end of file diff --git a/libffmpeg-avformat/vvc.c b/libffmpeg-avformat/vvc.c new file mode 120000 index 0000000..72f49f5 --- /dev/null +++ b/libffmpeg-avformat/vvc.c @@ -0,0 +1 @@ +../upstream/libavformat/vvc.c \ No newline at end of file diff --git a/libffmpeg-avformat/vvc.h b/libffmpeg-avformat/vvc.h new file mode 120000 index 0000000..05871b4 --- /dev/null +++ b/libffmpeg-avformat/vvc.h @@ -0,0 +1 @@ +../upstream/libavformat/vvc.h \ No newline at end of file diff --git a/libffmpeg-avformat/vvcdec.c b/libffmpeg-avformat/vvcdec.c new file mode 120000 index 0000000..ce99bc0 --- /dev/null +++ b/libffmpeg-avformat/vvcdec.c @@ -0,0 +1 @@ +../upstream/libavformat/vvcdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/w64.c b/libffmpeg-avformat/w64.c new file mode 120000 index 0000000..5965781 --- /dev/null +++ b/libffmpeg-avformat/w64.c @@ -0,0 +1 @@ +../upstream/libavformat/w64.c \ No newline at end of file diff --git a/libffmpeg-avformat/w64.h b/libffmpeg-avformat/w64.h new file mode 120000 index 0000000..9d2256d --- /dev/null +++ b/libffmpeg-avformat/w64.h @@ -0,0 +1 @@ +../upstream/libavformat/w64.h \ No newline at end of file diff --git a/libffmpeg-avformat/wady.c b/libffmpeg-avformat/wady.c new file mode 120000 index 0000000..9d9772e --- /dev/null +++ b/libffmpeg-avformat/wady.c @@ -0,0 +1 @@ +../upstream/libavformat/wady.c \ No newline at end of file diff --git a/libffmpeg-avformat/wavarc.c b/libffmpeg-avformat/wavarc.c new file mode 120000 index 0000000..952102e --- /dev/null +++ b/libffmpeg-avformat/wavarc.c @@ -0,0 +1 @@ +../upstream/libavformat/wavarc.c \ No newline at end of file diff --git a/libffmpeg-avformat/wavdec.c b/libffmpeg-avformat/wavdec.c new file mode 120000 index 0000000..85e0a02 --- /dev/null +++ b/libffmpeg-avformat/wavdec.c @@ -0,0 +1 @@ +../upstream/libavformat/wavdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/wavenc.c b/libffmpeg-avformat/wavenc.c new file mode 120000 index 0000000..6e6456f --- /dev/null +++ b/libffmpeg-avformat/wavenc.c @@ -0,0 +1 @@ +../upstream/libavformat/wavenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/wc3movie.c b/libffmpeg-avformat/wc3movie.c new file mode 120000 index 0000000..fbaa3e7 --- /dev/null +++ b/libffmpeg-avformat/wc3movie.c @@ -0,0 +1 @@ +../upstream/libavformat/wc3movie.c \ No newline at end of file diff --git a/libffmpeg-avformat/webm_chunk.c b/libffmpeg-avformat/webm_chunk.c new file mode 120000 index 0000000..86eb261 --- /dev/null +++ b/libffmpeg-avformat/webm_chunk.c @@ -0,0 +1 @@ +../upstream/libavformat/webm_chunk.c \ No newline at end of file diff --git a/libffmpeg-avformat/webmdashenc.c b/libffmpeg-avformat/webmdashenc.c new file mode 120000 index 0000000..6adfc1d --- /dev/null +++ b/libffmpeg-avformat/webmdashenc.c @@ -0,0 +1 @@ +../upstream/libavformat/webmdashenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/webpenc.c b/libffmpeg-avformat/webpenc.c new file mode 120000 index 0000000..2b3e4a6 --- /dev/null +++ b/libffmpeg-avformat/webpenc.c @@ -0,0 +1 @@ +../upstream/libavformat/webpenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/webvttdec.c b/libffmpeg-avformat/webvttdec.c new file mode 120000 index 0000000..3eac4a5 --- /dev/null +++ b/libffmpeg-avformat/webvttdec.c @@ -0,0 +1 @@ +../upstream/libavformat/webvttdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/webvttenc.c b/libffmpeg-avformat/webvttenc.c new file mode 120000 index 0000000..dd6ed41 --- /dev/null +++ b/libffmpeg-avformat/webvttenc.c @@ -0,0 +1 @@ +../upstream/libavformat/webvttenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/westwood_aud.c b/libffmpeg-avformat/westwood_aud.c new file mode 120000 index 0000000..e47f1e5 --- /dev/null +++ b/libffmpeg-avformat/westwood_aud.c @@ -0,0 +1 @@ +../upstream/libavformat/westwood_aud.c \ No newline at end of file diff --git a/libffmpeg-avformat/westwood_audenc.c b/libffmpeg-avformat/westwood_audenc.c new file mode 120000 index 0000000..0e0e4f6 --- /dev/null +++ b/libffmpeg-avformat/westwood_audenc.c @@ -0,0 +1 @@ +../upstream/libavformat/westwood_audenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/westwood_vqa.c b/libffmpeg-avformat/westwood_vqa.c new file mode 120000 index 0000000..1acb725 --- /dev/null +++ b/libffmpeg-avformat/westwood_vqa.c @@ -0,0 +1 @@ +../upstream/libavformat/westwood_vqa.c \ No newline at end of file diff --git a/libffmpeg-avformat/wsddec.c b/libffmpeg-avformat/wsddec.c new file mode 120000 index 0000000..ea33fda --- /dev/null +++ b/libffmpeg-avformat/wsddec.c @@ -0,0 +1 @@ +../upstream/libavformat/wsddec.c \ No newline at end of file diff --git a/libffmpeg-avformat/wtv.h b/libffmpeg-avformat/wtv.h new file mode 120000 index 0000000..0e6323b --- /dev/null +++ b/libffmpeg-avformat/wtv.h @@ -0,0 +1 @@ +../upstream/libavformat/wtv.h \ No newline at end of file diff --git a/libffmpeg-avformat/wtv_common.c b/libffmpeg-avformat/wtv_common.c new file mode 120000 index 0000000..543407d --- /dev/null +++ b/libffmpeg-avformat/wtv_common.c @@ -0,0 +1 @@ +../upstream/libavformat/wtv_common.c \ No newline at end of file diff --git a/libffmpeg-avformat/wtvdec.c b/libffmpeg-avformat/wtvdec.c new file mode 120000 index 0000000..f1e4647 --- /dev/null +++ b/libffmpeg-avformat/wtvdec.c @@ -0,0 +1 @@ +../upstream/libavformat/wtvdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/wtvenc.c b/libffmpeg-avformat/wtvenc.c new file mode 120000 index 0000000..1d62cb2 --- /dev/null +++ b/libffmpeg-avformat/wtvenc.c @@ -0,0 +1 @@ +../upstream/libavformat/wtvenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/wv.c b/libffmpeg-avformat/wv.c new file mode 120000 index 0000000..e3b6782 --- /dev/null +++ b/libffmpeg-avformat/wv.c @@ -0,0 +1 @@ +../upstream/libavformat/wv.c \ No newline at end of file diff --git a/libffmpeg-avformat/wv.h b/libffmpeg-avformat/wv.h new file mode 120000 index 0000000..01ab852 --- /dev/null +++ b/libffmpeg-avformat/wv.h @@ -0,0 +1 @@ +../upstream/libavformat/wv.h \ No newline at end of file diff --git a/libffmpeg-avformat/wvdec.c b/libffmpeg-avformat/wvdec.c new file mode 120000 index 0000000..30f7b42 --- /dev/null +++ b/libffmpeg-avformat/wvdec.c @@ -0,0 +1 @@ +../upstream/libavformat/wvdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/wvedec.c b/libffmpeg-avformat/wvedec.c new file mode 120000 index 0000000..94d944a --- /dev/null +++ b/libffmpeg-avformat/wvedec.c @@ -0,0 +1 @@ +../upstream/libavformat/wvedec.c \ No newline at end of file diff --git a/libffmpeg-avformat/wvenc.c b/libffmpeg-avformat/wvenc.c new file mode 120000 index 0000000..bdf58c3 --- /dev/null +++ b/libffmpeg-avformat/wvenc.c @@ -0,0 +1 @@ +../upstream/libavformat/wvenc.c \ No newline at end of file diff --git a/libffmpeg-avformat/xa.c b/libffmpeg-avformat/xa.c new file mode 120000 index 0000000..6ce15a3 --- /dev/null +++ b/libffmpeg-avformat/xa.c @@ -0,0 +1 @@ +../upstream/libavformat/xa.c \ No newline at end of file diff --git a/libffmpeg-avformat/xmd.c b/libffmpeg-avformat/xmd.c new file mode 120000 index 0000000..4cea1e9 --- /dev/null +++ b/libffmpeg-avformat/xmd.c @@ -0,0 +1 @@ +../upstream/libavformat/xmd.c \ No newline at end of file diff --git a/libffmpeg-avformat/xmv.c b/libffmpeg-avformat/xmv.c new file mode 120000 index 0000000..0cb7dfa --- /dev/null +++ b/libffmpeg-avformat/xmv.c @@ -0,0 +1 @@ +../upstream/libavformat/xmv.c \ No newline at end of file diff --git a/libffmpeg-avformat/xvag.c b/libffmpeg-avformat/xvag.c new file mode 120000 index 0000000..a5a4560 --- /dev/null +++ b/libffmpeg-avformat/xvag.c @@ -0,0 +1 @@ +../upstream/libavformat/xvag.c \ No newline at end of file diff --git a/libffmpeg-avformat/xwma.c b/libffmpeg-avformat/xwma.c new file mode 120000 index 0000000..d0f02ba --- /dev/null +++ b/libffmpeg-avformat/xwma.c @@ -0,0 +1 @@ +../upstream/libavformat/xwma.c \ No newline at end of file diff --git a/libffmpeg-avformat/yop.c b/libffmpeg-avformat/yop.c new file mode 120000 index 0000000..6c1e116 --- /dev/null +++ b/libffmpeg-avformat/yop.c @@ -0,0 +1 @@ +../upstream/libavformat/yop.c \ No newline at end of file diff --git a/libffmpeg-avformat/yuv4mpeg.h b/libffmpeg-avformat/yuv4mpeg.h new file mode 120000 index 0000000..729bae0 --- /dev/null +++ b/libffmpeg-avformat/yuv4mpeg.h @@ -0,0 +1 @@ +../upstream/libavformat/yuv4mpeg.h \ No newline at end of file diff --git a/libffmpeg-avformat/yuv4mpegdec.c b/libffmpeg-avformat/yuv4mpegdec.c new file mode 120000 index 0000000..61bb6b6 --- /dev/null +++ b/libffmpeg-avformat/yuv4mpegdec.c @@ -0,0 +1 @@ +../upstream/libavformat/yuv4mpegdec.c \ No newline at end of file diff --git a/libffmpeg-avformat/yuv4mpegenc.c b/libffmpeg-avformat/yuv4mpegenc.c new file mode 120000 index 0000000..0b5f022 --- /dev/null +++ b/libffmpeg-avformat/yuv4mpegenc.c @@ -0,0 +1 @@ +../upstream/libavformat/yuv4mpegenc.c \ No newline at end of file diff --git a/libffmpeg-avutil/buildfile b/libffmpeg-avutil/buildfile new file mode 100644 index 0000000..7750e2e --- /dev/null +++ b/libffmpeg-avutil/buildfile @@ -0,0 +1,311 @@ +intf_libs = # Interface dependencies. +impl_libs = # Implementation dependencies. + +#import _libs += libhello%lib{hello} +# +# +# Unit tests. +# + +lib{ffmpeg-avutil}: h{ \ + ../config \ + libavutil/avconfig \ + libavutil/intmath \ + libavutil/adler32 \ + libavutil/aes \ + libavutil/aes_ctr \ + libavutil/ambient_viewing_environment \ + libavutil/attributes \ + libavutil/audio_fifo \ + libavutil/avassert \ + libavutil/avstring \ + libavutil/avutil \ + libavutil/base64 \ + libavutil/blowfish \ + libavutil/bprint \ + libavutil/bswap \ + libavutil/buffer \ + libavutil/cast5 \ + libavutil/camellia \ + libavutil/channel_layout \ + libavutil/common \ + libavutil/cpu \ + libavutil/crc \ + libavutil/csp \ + libavutil/des \ + libavutil/detection_bbox \ + libavutil/dict \ + libavutil/display \ + libavutil/dovi_meta \ + libavutil/downmix_info \ + libavutil/encryption_info \ + libavutil/error \ + libavutil/eval \ + libavutil/executor \ + libavutil/fifo \ + libavutil/file \ + libavutil/frame \ + libavutil/hash \ + libavutil/hdr_dynamic_metadata \ + libavutil/hdr_dynamic_vivid_metadata \ + libavutil/hmac \ + libavutil/hwcontext \ + libavutil/hwcontext_cuda \ + libavutil/hwcontext_d3d11va \ + libavutil/hwcontext_d3d12va \ + libavutil/hwcontext_drm \ + libavutil/hwcontext_dxva2 \ + libavutil/hwcontext_qsv \ + libavutil/hwcontext_mediacodec \ + libavutil/hwcontext_opencl \ + libavutil/hwcontext_vaapi \ + libavutil/hwcontext_videotoolbox \ + libavutil/hwcontext_vdpau \ + libavutil/hwcontext_vulkan \ + libavutil/iamf \ + libavutil/imgutils \ + libavutil/intfloat \ + libavutil/intreadwrite \ + libavutil/lfg \ + libavutil/log \ + libavutil/lzo \ + libavutil/macros \ + libavutil/mathematics \ + libavutil/mastering_display_metadata \ + libavutil/md5 \ + libavutil/mem \ + libavutil/motion_vector \ + libavutil/murmur3 \ + libavutil/opt \ + libavutil/parseutils \ + libavutil/pixdesc \ + libavutil/pixelutils \ + libavutil/pixfmt \ + libavutil/random_seed \ + libavutil/rc4 \ + libavutil/rational \ + libavutil/replaygain \ + libavutil/ripemd \ + libavutil/samplefmt \ + libavutil/sha \ + libavutil/sha512 \ + libavutil/spherical \ + libavutil/stereo3d \ + libavutil/threadmessage \ + libavutil/time \ + libavutil/timecode \ + libavutil/timestamp \ + libavutil/tree \ + libavutil/twofish \ + libavutil/uuid \ + libavutil/version \ + libavutil/video_enc_params \ + libavutil/xtea \ + libavutil/tea \ + libavutil/tx \ + libavutil/film_grain_params \ + libavutil/video_hint} \ + c{libavutil/adler32 \ + libavutil/x86/fixed_dsp_init \ + libavutil/x86/float_dsp_init \ + libavutil/x86/lls_init \ + libavutil/x86/pixelutils_init \ + libavutil/x86/imgutils_init \ + libavutil/x86/cpu \ + libavutil/aes \ + libavutil/aes_ctr \ + libavutil/ambient_viewing_environment \ + libavutil/audio_fifo \ + libavutil/avstring \ + libavutil/avsscanf \ + libavutil/base64 \ + libavutil/blowfish \ + libavutil/bprint \ + libavutil/buffer \ + libavutil/cast5 \ + libavutil/camellia \ + libavutil/channel_layout \ + libavutil/cpu \ + libavutil/crc \ + libavutil/csp \ + libavutil/des \ + libavutil/detection_bbox \ + libavutil/dict \ + libavutil/display \ + libavutil/dovi_meta \ + libavutil/downmix_info \ + libavutil/encryption_info \ + libavutil/error \ + libavutil/eval \ + libavutil/executor \ + libavutil/fifo \ + libavutil/file \ + libavutil/file_open \ + libavutil/float_dsp \ + libavutil/fixed_dsp \ + libavutil/frame \ + libavutil/hash \ + libavutil/hdr_dynamic_metadata \ + libavutil/hdr_dynamic_vivid_metadata \ + libavutil/hmac \ + libavutil/hwcontext \ + libavutil/iamf \ + libavutil/imgutils \ + libavutil/integer \ + libavutil/intmath \ + libavutil/lfg \ + libavutil/lls \ + libavutil/log \ + libavutil/log2_tab \ + libavutil/lzo \ + libavutil/mathematics \ + libavutil/mastering_display_metadata \ + libavutil/md5 \ + libavutil/mem \ + libavutil/murmur3 \ + libavutil/opt \ + libavutil/parseutils \ + libavutil/pixdesc \ + libavutil/pixelutils \ + libavutil/random_seed \ + libavutil/rational \ + libavutil/reverse \ + libavutil/rc4 \ + libavutil/ripemd \ + libavutil/samplefmt \ + libavutil/sha \ + libavutil/sha512 \ + libavutil/slicethread \ + libavutil/spherical \ + libavutil/stereo3d \ + libavutil/threadmessage \ + libavutil/time \ + libavutil/timecode \ + libavutil/timestamp \ + libavutil/tree \ + libavutil/twofish \ + libavutil/utils \ + libavutil/xga_font_data \ + libavutil/xtea \ + libavutil/tea \ + libavutil/tx \ + libavutil/tx_float \ + libavutil/tx_double \ + libavutil/tx_int32 \ + libavutil/uuid \ + libavutil/version \ + libavutil/video_enc_params \ + libavutil/video_hint \ + libavutil/film_grain_params} \ + $impl_libs $intf_libs + +lib{ffmpeg-avutil}: c{hwcontext_cuda}: include = ($config.FFmpeg.CONFIG_CUDA == 1) +lib{ffmpeg-avutil}: c{hwcontext_d3d11va}: include = ($config.FFmpeg.CONFIG_D3D11VA == 1) +lib{ffmpeg-avutil}: c{hwcontext_d3d12va}: include = ($config.FFmpeg.CONFIG_D3D12VA == 1) +lib{ffmpeg-avutil}: c{hwcontext_dxva2}: include = ($config.FFmpeg.CONFIG_DXVA2 == 1) +lib{ffmpeg-avutil}: c{hwcontext_drm}: include = ($config.FFmpeg.CONFIG_LIBDRM == 1) +lib{ffmpeg-avutil}: c{macos_kperf}: include = ($config.FFmpeg.CONFIG_MACOS_KPERF == 1) +lib{ffmpeg-avutil}: c{hwcontext_mediacodec}: include = ($config.FFmpeg.CONFIG_MEDIACODEC == 1) +lib{ffmpeg-avutil}: c{hwcontext_opencl}: include = ($config.FFmpeg.CONFIG_OPENCL == 1) +lib{ffmpeg-avutil}: c{hwcontext_qsv}: include = ($config.FFmpeg.CONFIG_QSV == 1) +lib{ffmpeg-avutil}: c{hwcontext_vaapi}: include = ($config.FFmpeg.CONFIG_VAAPI == 1) +lib{ffmpeg-avutil}: c{hwcontext_videotoolbox}: include = ($config.FFmpeg.CONFIG_VIDEOTOOLBOX == 1) +lib{ffmpeg-avutil}: c{hwcontext_vdpau}: include = ($config.FFmpeg.CONFIG_VDPAU == 1) +lib{ffmpeg-avutil}: c{hwcontext_vulkan vulkan}: include = ($config.FFmpeg.CONFIG_VULKAN == 1) + + +# Build options. +# +c.poptions =+ "-I$out_root" "-I$src_root" "-I$src_root/libffmpeg-avutil" "-I$src_root/libffmpeg-avutil/libavuti" + +c.coptions =+ -D_ISOC11_SOURCE +c.coptions =+ -D_FILE_OFFSET_BITS=64 +c.coptions =+ -D_LARGEFILE_SOURCE +c.coptions =+ -D_POSIX_C_SOURCE=200112 +c.coptions =+ -D_XOPEN_SOURCE=600 +c.coptions =+ -DHAVE_AV_CONFIG_H +c.coptions =+ -DBUILDING_avutil +c.coptions =+ -std=c17 +c.coptions =+ -fomit-frame-pointer +c.coptions =+ -pthread +c.coptions =+ -g +c.coptions =+ -Wdeclaration-after-statement +c.coptions =+ -Wall +c.coptions =+ -Wdisabled-optimization +c.coptions =+ -Wpointer-arith +c.coptions =+ -Wredundant-decls +c.coptions =+ -Wwrite-strings +c.coptions =+ -Wtype-limits +c.coptions =+ -Wundef +c.coptions =+ -Wmissing-prototypes +c.coptions =+ -Wstrict-prototypes +c.coptions =+ -Wempty-body +c.coptions =+ -Wno-parentheses +c.coptions =+ -Wno-switch +c.coptions =+ -Wno-format-zero-length +c.coptions =+ -Wno-pointer-sign +c.coptions =+ -Wno-unused-const-variable +c.coptions =+ -Wno-bool-operation +c.coptions =+ -Wno-char-subscripts +c.coptions =+ -O3 +c.coptions =+ -fno-math-errno +c.coptions =+ -fno-signed-zeros +c.coptions =+ -fno-tree-vectorize +c.coptions =+ -Werror=format-security +c.coptions =+ -Werror=implicit-function-declaration +c.coptions =+ -Werror=missing-prototypes +c.coptions =+ -Werror=return-type +c.coptions =+ -Werror=vla +c.coptions =+ -Wformat +c.coptions =+ -fdiagnostics-color=auto +c.coptions =+ -Wno-maybe-uninitialized + +#obja{*}: c.poptions += -DLIBFFMPEG_STATIC_BUILD +#objs{*}: c.poptions += -DLIBFFMPEG_SHARED_BUILD + + +# Export options. +# +lib{ffmpeg-avutil}: +{ + c.libs += -lm + c.export.poptions = "-I$out_root" "-I$src_root" + c.export.libs = $intf_libs -lm +} + +#liba{ffmpeg}: c.export.poptions += -DLIBFFMPEG_STATIC +#libs{ffmpeg}: c.export.poptions += -DLIBFFMPEG_SHARED + +# For pre-releases use the complete version to make sure they cannot +# be used in place of another pre-release or the final version. See +# the version module for details on the version.* variable values. +# +if $version.pre_release + lib{ffmpeg-avutil}: bin.lib.version = "-$version.project_id" +else + lib{ffmpeg-avutil}: bin.lib.version = "-$version.major.$version.minor" + +# Install into the libffmpeg/ subdirectory of, say, /usr/include/ +# recreating subdirectories. +# +{h}{*}: +{ + install = include/libffmpeg/ + install.subdirs = true +} + +#./: exe{libavutil/tests/*}: +#{ +# test = true +# install = false +#} + +for t: c{libavutil/tests/*...} +{ + d = $directory($t) + n = $name($t)... + + ./: $d/exe{$n}: $t $d/{h}{+$n} $d/testscript{+$n} + $d/exe{$n}: lib{ffmpeg-avutil} + $d/exe{$n}: test = true +} diff --git a/libffmpeg-avutil/compat b/libffmpeg-avutil/compat new file mode 120000 index 0000000..82bf8c5 --- /dev/null +++ b/libffmpeg-avutil/compat @@ -0,0 +1 @@ +../upstream/compat/ \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/a64colors.h b/libffmpeg-avutil/libavcodec/a64colors.h new file mode 120000 index 0000000..c282b0a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/a64colors.h @@ -0,0 +1 @@ +../../upstream/libavcodec/a64colors.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/a64tables.h b/libffmpeg-avutil/libavcodec/a64tables.h new file mode 120000 index 0000000..8621e94 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/a64tables.h @@ -0,0 +1 @@ +../../upstream/libavcodec/a64tables.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aac.h b/libffmpeg-avutil/libavcodec/aac.h new file mode 120000 index 0000000..0c992f0 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aac.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aac_ac3_parser.h b/libffmpeg-avutil/libavcodec/aac_ac3_parser.h new file mode 120000 index 0000000..0636276 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aac_ac3_parser.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aac_ac3_parser.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aac_defines.h b/libffmpeg-avutil/libavcodec/aac_defines.h new file mode 120000 index 0000000..8265b4b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aac_defines.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aac_defines.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aaccoder_trellis.h b/libffmpeg-avutil/libavcodec/aaccoder_trellis.h new file mode 120000 index 0000000..2d6dd7f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aaccoder_trellis.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aaccoder_trellis.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aaccoder_twoloop.h b/libffmpeg-avutil/libavcodec/aaccoder_twoloop.h new file mode 120000 index 0000000..24247ec --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aaccoder_twoloop.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aaccoder_twoloop.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacenc.h b/libffmpeg-avutil/libavcodec/aacenc.h new file mode 120000 index 0000000..1cd4064 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacenc_is.h b/libffmpeg-avutil/libavcodec/aacenc_is.h new file mode 120000 index 0000000..cfe1f06 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacenc_is.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_is.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacenc_ltp.h b/libffmpeg-avutil/libavcodec/aacenc_ltp.h new file mode 120000 index 0000000..1c33f3b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacenc_ltp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_ltp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacenc_pred.h b/libffmpeg-avutil/libavcodec/aacenc_pred.h new file mode 120000 index 0000000..da5cd84 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacenc_pred.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_pred.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacenc_quantization.h b/libffmpeg-avutil/libavcodec/aacenc_quantization.h new file mode 120000 index 0000000..dd01b82 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacenc_quantization.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_quantization.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacenc_quantization_misc.h b/libffmpeg-avutil/libavcodec/aacenc_quantization_misc.h new file mode 120000 index 0000000..fce345b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacenc_quantization_misc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_quantization_misc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacenc_tns.h b/libffmpeg-avutil/libavcodec/aacenc_tns.h new file mode 120000 index 0000000..abf9927 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacenc_tns.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_tns.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacenc_utils.h b/libffmpeg-avutil/libavcodec/aacenc_utils.h new file mode 120000 index 0000000..ee16555 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacenc_utils.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenc_utils.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacencdsp.h b/libffmpeg-avutil/libavcodec/aacencdsp.h new file mode 120000 index 0000000..f8fe516 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacencdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacenctab.h b/libffmpeg-avutil/libavcodec/aacenctab.h new file mode 120000 index 0000000..82e0bb6 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacenctab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacenctab.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacps.h b/libffmpeg-avutil/libavcodec/aacps.h new file mode 120000 index 0000000..ada630e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacps.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacps_fixed_tablegen.h b/libffmpeg-avutil/libavcodec/aacps_fixed_tablegen.h new file mode 120000 index 0000000..c96f6cd --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacps_fixed_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps_fixed_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacps_tablegen.h b/libffmpeg-avutil/libavcodec/aacps_tablegen.h new file mode 120000 index 0000000..37d42ec --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacps_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacps_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacpsdsp.h b/libffmpeg-avutil/libavcodec/aacpsdsp.h new file mode 120000 index 0000000..91dedaf --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacpsdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacpsdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacsbr.h b/libffmpeg-avutil/libavcodec/aacsbr.h new file mode 120000 index 0000000..9b888e1 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacsbr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacsbr.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aacsbrdata.h b/libffmpeg-avutil/libavcodec/aacsbrdata.h new file mode 120000 index 0000000..760d6b7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aacsbrdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aacsbrdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aactab.h b/libffmpeg-avutil/libavcodec/aactab.h new file mode 120000 index 0000000..2390b57 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aactab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aactab.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aandcttab.h b/libffmpeg-avutil/libavcodec/aandcttab.h new file mode 120000 index 0000000..ced7953 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aandcttab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aandcttab.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ac3.h b/libffmpeg-avutil/libavcodec/ac3.h new file mode 120000 index 0000000..063a371 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ac3.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ac3_channel_layout_tab.h b/libffmpeg-avutil/libavcodec/ac3_channel_layout_tab.h new file mode 120000 index 0000000..4be53a7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ac3_channel_layout_tab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3_channel_layout_tab.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ac3_parser.h b/libffmpeg-avutil/libavcodec/ac3_parser.h new file mode 120000 index 0000000..7df1a2a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ac3_parser.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3_parser.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ac3_parser_internal.h b/libffmpeg-avutil/libavcodec/ac3_parser_internal.h new file mode 120000 index 0000000..05862cd --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ac3_parser_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3_parser_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ac3dec.h b/libffmpeg-avutil/libavcodec/ac3dec.h new file mode 120000 index 0000000..27a748b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ac3dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3dec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ac3dec_data.h b/libffmpeg-avutil/libavcodec/ac3dec_data.h new file mode 120000 index 0000000..4382ca3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ac3dec_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3dec_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ac3defs.h b/libffmpeg-avutil/libavcodec/ac3defs.h new file mode 120000 index 0000000..bc6a019 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ac3defs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3defs.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ac3dsp.h b/libffmpeg-avutil/libavcodec/ac3dsp.h new file mode 120000 index 0000000..ff21c2b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ac3dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ac3enc.h b/libffmpeg-avutil/libavcodec/ac3enc.h new file mode 120000 index 0000000..1f58145 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ac3enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3enc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ac3tab.h b/libffmpeg-avutil/libavcodec/ac3tab.h new file mode 120000 index 0000000..9973479 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ac3tab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ac3tab.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/acelp_filters.h b/libffmpeg-avutil/libavcodec/acelp_filters.h new file mode 120000 index 0000000..a634503 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/acelp_filters.h @@ -0,0 +1 @@ +../../upstream/libavcodec/acelp_filters.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/acelp_pitch_delay.h b/libffmpeg-avutil/libavcodec/acelp_pitch_delay.h new file mode 120000 index 0000000..edd3285 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/acelp_pitch_delay.h @@ -0,0 +1 @@ +../../upstream/libavcodec/acelp_pitch_delay.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/acelp_vectors.h b/libffmpeg-avutil/libavcodec/acelp_vectors.h new file mode 120000 index 0000000..a0c67c3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/acelp_vectors.h @@ -0,0 +1 @@ +../../upstream/libavcodec/acelp_vectors.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/adpcm.h b/libffmpeg-avutil/libavcodec/adpcm.h new file mode 120000 index 0000000..83cedd6 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/adpcm.h @@ -0,0 +1 @@ +../../upstream/libavcodec/adpcm.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/adpcm_data.h b/libffmpeg-avutil/libavcodec/adpcm_data.h new file mode 120000 index 0000000..8992b61 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/adpcm_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/adpcm_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/adts_header.h b/libffmpeg-avutil/libavcodec/adts_header.h new file mode 120000 index 0000000..de69507 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/adts_header.h @@ -0,0 +1 @@ +../../upstream/libavcodec/adts_header.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/adts_parser.h b/libffmpeg-avutil/libavcodec/adts_parser.h new file mode 120000 index 0000000..ea92b02 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/adts_parser.h @@ -0,0 +1 @@ +../../upstream/libavcodec/adts_parser.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/adx.h b/libffmpeg-avutil/libavcodec/adx.h new file mode 120000 index 0000000..d86f297 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/adx.h @@ -0,0 +1 @@ +../../upstream/libavcodec/adx.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/alac_data.h b/libffmpeg-avutil/libavcodec/alac_data.h new file mode 120000 index 0000000..15fc5e7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/alac_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/alac_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/alacdsp.h b/libffmpeg-avutil/libavcodec/alacdsp.h new file mode 120000 index 0000000..3b1b2a1 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/alacdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/alacdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/amfenc.h b/libffmpeg-avutil/libavcodec/amfenc.h new file mode 120000 index 0000000..892ee98 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/amfenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/amfenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/amr.h b/libffmpeg-avutil/libavcodec/amr.h new file mode 120000 index 0000000..e1e2945 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/amr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/amr.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/amrnbdata.h b/libffmpeg-avutil/libavcodec/amrnbdata.h new file mode 120000 index 0000000..7cbfd69 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/amrnbdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/amrnbdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/amrwbdata.h b/libffmpeg-avutil/libavcodec/amrwbdata.h new file mode 120000 index 0000000..f7a8763 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/amrwbdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/amrwbdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aom_film_grain.h b/libffmpeg-avutil/libavcodec/aom_film_grain.h new file mode 120000 index 0000000..94213a6 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aom_film_grain.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aom_film_grain.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/apng.h b/libffmpeg-avutil/libavcodec/apng.h new file mode 120000 index 0000000..e139993 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/apng.h @@ -0,0 +1 @@ +../../upstream/libavcodec/apng.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/aptx.h b/libffmpeg-avutil/libavcodec/aptx.h new file mode 120000 index 0000000..122845f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/aptx.h @@ -0,0 +1 @@ +../../upstream/libavcodec/aptx.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ass.h b/libffmpeg-avutil/libavcodec/ass.h new file mode 120000 index 0000000..2e889a1 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ass.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ass.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ass_split.h b/libffmpeg-avutil/libavcodec/ass_split.h new file mode 120000 index 0000000..ddc4f21 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ass_split.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ass_split.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/asv.h b/libffmpeg-avutil/libavcodec/asv.h new file mode 120000 index 0000000..4d462bf --- /dev/null +++ b/libffmpeg-avutil/libavcodec/asv.h @@ -0,0 +1 @@ +../../upstream/libavcodec/asv.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/atrac.h b/libffmpeg-avutil/libavcodec/atrac.h new file mode 120000 index 0000000..e468548 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/atrac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/atrac1data.h b/libffmpeg-avutil/libavcodec/atrac1data.h new file mode 120000 index 0000000..c2881b5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/atrac1data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac1data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/atrac3data.h b/libffmpeg-avutil/libavcodec/atrac3data.h new file mode 120000 index 0000000..fbdcbf1 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/atrac3data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac3data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/atrac3plus.h b/libffmpeg-avutil/libavcodec/atrac3plus.h new file mode 120000 index 0000000..8275787 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/atrac3plus.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac3plus.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/atrac3plus_data.h b/libffmpeg-avutil/libavcodec/atrac3plus_data.h new file mode 120000 index 0000000..a01fa16 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/atrac3plus_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac3plus_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/atrac9tab.h b/libffmpeg-avutil/libavcodec/atrac9tab.h new file mode 120000 index 0000000..1e29c33 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/atrac9tab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atrac9tab.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/atsc_a53.h b/libffmpeg-avutil/libavcodec/atsc_a53.h new file mode 120000 index 0000000..cd0c85e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/atsc_a53.h @@ -0,0 +1 @@ +../../upstream/libavcodec/atsc_a53.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/audio_frame_queue.h b/libffmpeg-avutil/libavcodec/audio_frame_queue.h new file mode 120000 index 0000000..ff229cd --- /dev/null +++ b/libffmpeg-avutil/libavcodec/audio_frame_queue.h @@ -0,0 +1 @@ +../../upstream/libavcodec/audio_frame_queue.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/audiodsp.h b/libffmpeg-avutil/libavcodec/audiodsp.h new file mode 120000 index 0000000..cd7ceb7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/audiodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/audiodsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/av1.h b/libffmpeg-avutil/libavcodec/av1.h new file mode 120000 index 0000000..670d05d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/av1.h @@ -0,0 +1 @@ +../../upstream/libavcodec/av1.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/av1_levels.h b/libffmpeg-avutil/libavcodec/av1_levels.h new file mode 120000 index 0000000..7deeec3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/av1_levels.h @@ -0,0 +1 @@ +../../upstream/libavcodec/av1_levels.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/av1_parse.h b/libffmpeg-avutil/libavcodec/av1_parse.h new file mode 120000 index 0000000..8341eb1 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/av1_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/av1_parse.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/av1dec.h b/libffmpeg-avutil/libavcodec/av1dec.h new file mode 120000 index 0000000..b6de1eb --- /dev/null +++ b/libffmpeg-avutil/libavcodec/av1dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/av1dec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/avcodec.h b/libffmpeg-avutil/libavcodec/avcodec.h new file mode 120000 index 0000000..3dc6795 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/avcodec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/avcodec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/avcodec_internal.h b/libffmpeg-avutil/libavcodec/avcodec_internal.h new file mode 120000 index 0000000..f5727c0 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/avcodec_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/avcodec_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/avdct.h b/libffmpeg-avutil/libavcodec/avdct.h new file mode 120000 index 0000000..024ac33 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/avdct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/avdct.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/avfft.h b/libffmpeg-avutil/libavcodec/avfft.h new file mode 120000 index 0000000..709c474 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/avfft.h @@ -0,0 +1 @@ +../../upstream/libavcodec/avfft.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/avs2.h b/libffmpeg-avutil/libavcodec/avs2.h new file mode 120000 index 0000000..09d4c18 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/avs2.h @@ -0,0 +1 @@ +../../upstream/libavcodec/avs2.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/avs3.h b/libffmpeg-avutil/libavcodec/avs3.h new file mode 120000 index 0000000..2e0e468 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/avs3.h @@ -0,0 +1 @@ +../../upstream/libavcodec/avs3.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/bethsoftvideo.h b/libffmpeg-avutil/libavcodec/bethsoftvideo.h new file mode 120000 index 0000000..3173167 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/bethsoftvideo.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bethsoftvideo.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/bgmc.h b/libffmpeg-avutil/libavcodec/bgmc.h new file mode 120000 index 0000000..2169c7b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/bgmc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bgmc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/binkdata.h b/libffmpeg-avutil/libavcodec/binkdata.h new file mode 120000 index 0000000..a3ad58f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/binkdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/binkdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/binkdsp.h b/libffmpeg-avutil/libavcodec/binkdsp.h new file mode 120000 index 0000000..e7a8de8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/binkdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/binkdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/bintext.h b/libffmpeg-avutil/libavcodec/bintext.h new file mode 120000 index 0000000..a581f70 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/bintext.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bintext.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/bitstream.h b/libffmpeg-avutil/libavcodec/bitstream.h new file mode 120000 index 0000000..b472b7a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/bitstream.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bitstream.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/bitstream_template.h b/libffmpeg-avutil/libavcodec/bitstream_template.h new file mode 120000 index 0000000..51c40f4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/bitstream_template.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bitstream_template.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/blockdsp.h b/libffmpeg-avutil/libavcodec/blockdsp.h new file mode 120000 index 0000000..817531a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/blockdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/blockdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/bmp.h b/libffmpeg-avutil/libavcodec/bmp.h new file mode 120000 index 0000000..6d851ad --- /dev/null +++ b/libffmpeg-avutil/libavcodec/bmp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bmp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/bsf.h b/libffmpeg-avutil/libavcodec/bsf.h new file mode 120000 index 0000000..0a3826c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/bsf.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bsf.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/bsf_internal.h b/libffmpeg-avutil/libavcodec/bsf_internal.h new file mode 120000 index 0000000..4f2a067 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/bsf_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bsf_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/bswapdsp.h b/libffmpeg-avutil/libavcodec/bswapdsp.h new file mode 120000 index 0000000..b611a86 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/bswapdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bswapdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/bytestream.h b/libffmpeg-avutil/libavcodec/bytestream.h new file mode 120000 index 0000000..6bb451b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/bytestream.h @@ -0,0 +1 @@ +../../upstream/libavcodec/bytestream.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cabac.h b/libffmpeg-avutil/libavcodec/cabac.h new file mode 120000 index 0000000..ef8e7ed --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cabac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cabac.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cabac_functions.h b/libffmpeg-avutil/libavcodec/cabac_functions.h new file mode 120000 index 0000000..411701e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cabac_functions.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cabac_functions.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/canopus.h b/libffmpeg-avutil/libavcodec/canopus.h new file mode 120000 index 0000000..9319e08 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/canopus.h @@ -0,0 +1 @@ +../../upstream/libavcodec/canopus.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cavs.h b/libffmpeg-avutil/libavcodec/cavs.h new file mode 120000 index 0000000..f608184 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cavs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cavs.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cavsdsp.h b/libffmpeg-avutil/libavcodec/cavsdsp.h new file mode 120000 index 0000000..a44c864 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cavsdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cavsdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbrt_data.h b/libffmpeg-avutil/libavcodec/cbrt_data.h new file mode 120000 index 0000000..5549b67 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbrt_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbrt_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbrt_tablegen.h b/libffmpeg-avutil/libavcodec/cbrt_tablegen.h new file mode 120000 index 0000000..1db859b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbrt_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbrt_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs.h b/libffmpeg-avutil/libavcodec/cbs.h new file mode 120000 index 0000000..d467bde --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs_av1.h b/libffmpeg-avutil/libavcodec/cbs_av1.h new file mode 120000 index 0000000..cfee867 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs_av1.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_av1.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs_bsf.h b/libffmpeg-avutil/libavcodec/cbs_bsf.h new file mode 120000 index 0000000..3e98098 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs_bsf.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_bsf.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs_h264.h b/libffmpeg-avutil/libavcodec/cbs_h264.h new file mode 120000 index 0000000..62e3ff8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs_h264.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_h264.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs_h2645.h b/libffmpeg-avutil/libavcodec/cbs_h2645.h new file mode 120000 index 0000000..ec15337 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs_h2645.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_h2645.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs_h265.h b/libffmpeg-avutil/libavcodec/cbs_h265.h new file mode 120000 index 0000000..8726235 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs_h265.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_h265.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs_h266.h b/libffmpeg-avutil/libavcodec/cbs_h266.h new file mode 120000 index 0000000..949eb16 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs_h266.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_h266.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs_internal.h b/libffmpeg-avutil/libavcodec/cbs_internal.h new file mode 120000 index 0000000..07101d9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs_jpeg.h b/libffmpeg-avutil/libavcodec/cbs_jpeg.h new file mode 120000 index 0000000..cf72746 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs_jpeg.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_jpeg.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs_mpeg2.h b/libffmpeg-avutil/libavcodec/cbs_mpeg2.h new file mode 120000 index 0000000..973e304 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs_mpeg2.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_mpeg2.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs_sei.h b/libffmpeg-avutil/libavcodec/cbs_sei.h new file mode 120000 index 0000000..7274a78 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs_sei.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_sei.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs_vp8.h b/libffmpeg-avutil/libavcodec/cbs_vp8.h new file mode 120000 index 0000000..1e7a6a1 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs_vp8.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_vp8.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cbs_vp9.h b/libffmpeg-avutil/libavcodec/cbs_vp9.h new file mode 120000 index 0000000..242707e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cbs_vp9.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cbs_vp9.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/celp_filters.h b/libffmpeg-avutil/libavcodec/celp_filters.h new file mode 120000 index 0000000..4bbbaff --- /dev/null +++ b/libffmpeg-avutil/libavcodec/celp_filters.h @@ -0,0 +1 @@ +../../upstream/libavcodec/celp_filters.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/celp_math.h b/libffmpeg-avutil/libavcodec/celp_math.h new file mode 120000 index 0000000..843ce6e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/celp_math.h @@ -0,0 +1 @@ +../../upstream/libavcodec/celp_math.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cfhd.h b/libffmpeg-avutil/libavcodec/cfhd.h new file mode 120000 index 0000000..60e0b7c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cfhd.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cfhd.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cfhddsp.h b/libffmpeg-avutil/libavcodec/cfhddsp.h new file mode 120000 index 0000000..7427710 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cfhddsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cfhddsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cfhdencdsp.h b/libffmpeg-avutil/libavcodec/cfhdencdsp.h new file mode 120000 index 0000000..97bb8dc --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cfhdencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cfhdencdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cga_data.h b/libffmpeg-avutil/libavcodec/cga_data.h new file mode 120000 index 0000000..dcd7cf7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cga_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cga_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/clearvideodata.h b/libffmpeg-avutil/libavcodec/clearvideodata.h new file mode 120000 index 0000000..22f8170 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/clearvideodata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/clearvideodata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/codec.h b/libffmpeg-avutil/libavcodec/codec.h new file mode 120000 index 0000000..ddef210 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/codec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/codec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/codec2utils.h b/libffmpeg-avutil/libavcodec/codec2utils.h new file mode 120000 index 0000000..a397cf0 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/codec2utils.h @@ -0,0 +1 @@ +../../upstream/libavcodec/codec2utils.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/codec_desc.h b/libffmpeg-avutil/libavcodec/codec_desc.h new file mode 120000 index 0000000..3def436 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/codec_desc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/codec_desc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/codec_id.h b/libffmpeg-avutil/libavcodec/codec_id.h new file mode 120000 index 0000000..836fc7d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/codec_id.h @@ -0,0 +1 @@ +../../upstream/libavcodec/codec_id.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/codec_internal.h b/libffmpeg-avutil/libavcodec/codec_internal.h new file mode 120000 index 0000000..ab6bc5c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/codec_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/codec_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/codec_par.h b/libffmpeg-avutil/libavcodec/codec_par.h new file mode 120000 index 0000000..99a8168 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/codec_par.h @@ -0,0 +1 @@ +../../upstream/libavcodec/codec_par.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/cookdata.h b/libffmpeg-avutil/libavcodec/cookdata.h new file mode 120000 index 0000000..84a296c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/cookdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/cookdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/copy_block.h b/libffmpeg-avutil/libavcodec/copy_block.h new file mode 120000 index 0000000..601992c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/copy_block.h @@ -0,0 +1 @@ +../../upstream/libavcodec/copy_block.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/d3d11va.h b/libffmpeg-avutil/libavcodec/d3d11va.h new file mode 120000 index 0000000..ba7704c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/d3d11va.h @@ -0,0 +1 @@ +../../upstream/libavcodec/d3d11va.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/d3d12va_decode.h b/libffmpeg-avutil/libavcodec/d3d12va_decode.h new file mode 120000 index 0000000..03dfb56 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/d3d12va_decode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/d3d12va_decode.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dca.h b/libffmpeg-avutil/libavcodec/dca.h new file mode 120000 index 0000000..fd2b105 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dca.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dca_core.h b/libffmpeg-avutil/libavcodec/dca_core.h new file mode 120000 index 0000000..c6cc324 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dca_core.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_core.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dca_exss.h b/libffmpeg-avutil/libavcodec/dca_exss.h new file mode 120000 index 0000000..3b7e8f7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dca_exss.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_exss.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dca_lbr.h b/libffmpeg-avutil/libavcodec/dca_lbr.h new file mode 120000 index 0000000..ea9c806 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dca_lbr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_lbr.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dca_sample_rate_tab.h b/libffmpeg-avutil/libavcodec/dca_sample_rate_tab.h new file mode 120000 index 0000000..1cc0188 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dca_sample_rate_tab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_sample_rate_tab.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dca_syncwords.h b/libffmpeg-avutil/libavcodec/dca_syncwords.h new file mode 120000 index 0000000..2371d16 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dca_syncwords.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_syncwords.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dca_xll.h b/libffmpeg-avutil/libavcodec/dca_xll.h new file mode 120000 index 0000000..05935fe --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dca_xll.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dca_xll.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dcaadpcm.h b/libffmpeg-avutil/libavcodec/dcaadpcm.h new file mode 120000 index 0000000..9b50b7d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dcaadpcm.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcaadpcm.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dcadata.h b/libffmpeg-avutil/libavcodec/dcadata.h new file mode 120000 index 0000000..11184e8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dcadata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcadata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dcadct.h b/libffmpeg-avutil/libavcodec/dcadct.h new file mode 120000 index 0000000..e859a27 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dcadct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcadct.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dcadec.h b/libffmpeg-avutil/libavcodec/dcadec.h new file mode 120000 index 0000000..aa84dbc --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dcadec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcadec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dcadsp.h b/libffmpeg-avutil/libavcodec/dcadsp.h new file mode 120000 index 0000000..f2ad5f7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dcadsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcadsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dcaenc.h b/libffmpeg-avutil/libavcodec/dcaenc.h new file mode 120000 index 0000000..0592bd2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dcaenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcaenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dcahuff.h b/libffmpeg-avutil/libavcodec/dcahuff.h new file mode 120000 index 0000000..c28ec53 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dcahuff.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcahuff.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dcamath.h b/libffmpeg-avutil/libavcodec/dcamath.h new file mode 120000 index 0000000..012bbd8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dcamath.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dcamath.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dct.h b/libffmpeg-avutil/libavcodec/dct.h new file mode 120000 index 0000000..0984c27 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dct.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dct32.h b/libffmpeg-avutil/libavcodec/dct32.h new file mode 120000 index 0000000..fbf31ca --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dct32.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dct32.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dctref.h b/libffmpeg-avutil/libavcodec/dctref.h new file mode 120000 index 0000000..1a866aa --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dctref.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dctref.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/decode.h b/libffmpeg-avutil/libavcodec/decode.h new file mode 120000 index 0000000..a98bacc --- /dev/null +++ b/libffmpeg-avutil/libavcodec/decode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/decode.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/defs.h b/libffmpeg-avutil/libavcodec/defs.h new file mode 120000 index 0000000..3d15a6a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/defs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/defs.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dirac.h b/libffmpeg-avutil/libavcodec/dirac.h new file mode 120000 index 0000000..49fd0ea --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dirac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dirac_arith.h b/libffmpeg-avutil/libavcodec/dirac_arith.h new file mode 120000 index 0000000..9dec276 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dirac_arith.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac_arith.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dirac_dwt.h b/libffmpeg-avutil/libavcodec/dirac_dwt.h new file mode 120000 index 0000000..1340e10 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dirac_dwt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac_dwt.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dirac_vlc.h b/libffmpeg-avutil/libavcodec/dirac_vlc.h new file mode 120000 index 0000000..a68a5b9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dirac_vlc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dirac_vlc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/diracdsp.h b/libffmpeg-avutil/libavcodec/diracdsp.h new file mode 120000 index 0000000..680b4d0 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/diracdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/diracdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/diractab.h b/libffmpeg-avutil/libavcodec/diractab.h new file mode 120000 index 0000000..76198f8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/diractab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/diractab.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dnxhddata.h b/libffmpeg-avutil/libavcodec/dnxhddata.h new file mode 120000 index 0000000..2ff32c5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dnxhddata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dnxhddata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dnxhdenc.h b/libffmpeg-avutil/libavcodec/dnxhdenc.h new file mode 120000 index 0000000..7426570 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dnxhdenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dnxhdenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dolby_e.h b/libffmpeg-avutil/libavcodec/dolby_e.h new file mode 120000 index 0000000..880b855 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dolby_e.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dolby_e.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dovi_rpu.h b/libffmpeg-avutil/libavcodec/dovi_rpu.h new file mode 120000 index 0000000..cc207b3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dovi_rpu.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dovi_rpu.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dsd.h b/libffmpeg-avutil/libavcodec/dsd.h new file mode 120000 index 0000000..6a55879 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dsd.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dsd.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dv.h b/libffmpeg-avutil/libavcodec/dv.h new file mode 120000 index 0000000..34e64a8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dv.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dv.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dv_internal.h b/libffmpeg-avutil/libavcodec/dv_internal.h new file mode 120000 index 0000000..9baecd9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dv_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dv_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dv_profile.h b/libffmpeg-avutil/libavcodec/dv_profile.h new file mode 120000 index 0000000..b74e861 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dv_profile.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dv_profile.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dv_profile_internal.h b/libffmpeg-avutil/libavcodec/dv_profile_internal.h new file mode 120000 index 0000000..7f0e8a2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dv_profile_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dv_profile_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dv_tablegen.h b/libffmpeg-avutil/libavcodec/dv_tablegen.h new file mode 120000 index 0000000..c98421d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dv_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dv_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dvaudio.h b/libffmpeg-avutil/libavcodec/dvaudio.h new file mode 120000 index 0000000..7e8c29a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dvaudio.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dvaudio.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dvbtxt.h b/libffmpeg-avutil/libavcodec/dvbtxt.h new file mode 120000 index 0000000..a7560ba --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dvbtxt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dvbtxt.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dvdata.h b/libffmpeg-avutil/libavcodec/dvdata.h new file mode 120000 index 0000000..11b2424 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dvdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dvdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dvdsub.h b/libffmpeg-avutil/libavcodec/dvdsub.h new file mode 120000 index 0000000..2d48d0b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dvdsub.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dvdsub.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dxv.h b/libffmpeg-avutil/libavcodec/dxv.h new file mode 120000 index 0000000..8699a7b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dxv.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dxv.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dxva2.h b/libffmpeg-avutil/libavcodec/dxva2.h new file mode 120000 index 0000000..bc58ee5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dxva2.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dxva2.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dxva2_internal.h b/libffmpeg-avutil/libavcodec/dxva2_internal.h new file mode 120000 index 0000000..3b9ba0b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dxva2_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dxva2_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/dynamic_hdr_vivid.h b/libffmpeg-avutil/libavcodec/dynamic_hdr_vivid.h new file mode 120000 index 0000000..7b5dbe5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/dynamic_hdr_vivid.h @@ -0,0 +1 @@ +../../upstream/libavcodec/dynamic_hdr_vivid.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/eac3_data.h b/libffmpeg-avutil/libavcodec/eac3_data.h new file mode 120000 index 0000000..76dacf4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/eac3_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/eac3_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/eac3enc.h b/libffmpeg-avutil/libavcodec/eac3enc.h new file mode 120000 index 0000000..dfb5315 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/eac3enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/eac3enc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/eaidct.h b/libffmpeg-avutil/libavcodec/eaidct.h new file mode 120000 index 0000000..408fcc5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/eaidct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/eaidct.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/elbg.h b/libffmpeg-avutil/libavcodec/elbg.h new file mode 120000 index 0000000..48a2946 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/elbg.h @@ -0,0 +1 @@ +../../upstream/libavcodec/elbg.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/elsdec.h b/libffmpeg-avutil/libavcodec/elsdec.h new file mode 120000 index 0000000..41a37d9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/elsdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/elsdec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/encode.h b/libffmpeg-avutil/libavcodec/encode.h new file mode 120000 index 0000000..b2966f7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/encode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/encode.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/error_resilience.h b/libffmpeg-avutil/libavcodec/error_resilience.h new file mode 120000 index 0000000..b769ee9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/error_resilience.h @@ -0,0 +1 @@ +../../upstream/libavcodec/error_resilience.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/evc.h b/libffmpeg-avutil/libavcodec/evc.h new file mode 120000 index 0000000..d85af6a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/evc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/evc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/evc_parse.h b/libffmpeg-avutil/libavcodec/evc_parse.h new file mode 120000 index 0000000..9207124 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/evc_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/evc_parse.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/evc_ps.h b/libffmpeg-avutil/libavcodec/evc_ps.h new file mode 120000 index 0000000..0ae5c15 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/evc_ps.h @@ -0,0 +1 @@ +../../upstream/libavcodec/evc_ps.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/evrcdata.h b/libffmpeg-avutil/libavcodec/evrcdata.h new file mode 120000 index 0000000..a02e26b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/evrcdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/evrcdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/exif.h b/libffmpeg-avutil/libavcodec/exif.h new file mode 120000 index 0000000..4d2677b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/exif.h @@ -0,0 +1 @@ +../../upstream/libavcodec/exif.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/exrdsp.h b/libffmpeg-avutil/libavcodec/exrdsp.h new file mode 120000 index 0000000..ee76b7b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/exrdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/exrdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/faandct.h b/libffmpeg-avutil/libavcodec/faandct.h new file mode 120000 index 0000000..c1e023e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/faandct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/faandct.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/faanidct.h b/libffmpeg-avutil/libavcodec/faanidct.h new file mode 120000 index 0000000..78a3fb8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/faanidct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/faanidct.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/faxcompr.h b/libffmpeg-avutil/libavcodec/faxcompr.h new file mode 120000 index 0000000..639cc2e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/faxcompr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/faxcompr.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/fdctdsp.h b/libffmpeg-avutil/libavcodec/fdctdsp.h new file mode 120000 index 0000000..10332c4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/fdctdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/fdctdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ffjni.h b/libffmpeg-avutil/libavcodec/ffjni.h new file mode 120000 index 0000000..37d38d8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ffjni.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ffjni.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/fflcms2.h b/libffmpeg-avutil/libavcodec/fflcms2.h new file mode 120000 index 0000000..d331eaa --- /dev/null +++ b/libffmpeg-avutil/libavcodec/fflcms2.h @@ -0,0 +1 @@ +../../upstream/libavcodec/fflcms2.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ffv1.h b/libffmpeg-avutil/libavcodec/ffv1.h new file mode 120000 index 0000000..0aa95e5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ffv1.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ffv1.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/fits.h b/libffmpeg-avutil/libavcodec/fits.h new file mode 120000 index 0000000..937abf4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/fits.h @@ -0,0 +1 @@ +../../upstream/libavcodec/fits.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/flac.h b/libffmpeg-avutil/libavcodec/flac.h new file mode 120000 index 0000000..ade6f70 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/flac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flac.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/flac_parse.h b/libffmpeg-avutil/libavcodec/flac_parse.h new file mode 120000 index 0000000..661238c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/flac_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flac_parse.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/flacdata.h b/libffmpeg-avutil/libavcodec/flacdata.h new file mode 120000 index 0000000..fb0e50f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/flacdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flacdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/flacdsp.h b/libffmpeg-avutil/libavcodec/flacdsp.h new file mode 120000 index 0000000..1a5c309 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/flacdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flacdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/flacencdsp.h b/libffmpeg-avutil/libavcodec/flacencdsp.h new file mode 120000 index 0000000..00db461 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/flacencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flacencdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/flvdec.h b/libffmpeg-avutil/libavcodec/flvdec.h new file mode 120000 index 0000000..14e25f3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/flvdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flvdec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/flvenc.h b/libffmpeg-avutil/libavcodec/flvenc.h new file mode 120000 index 0000000..18de684 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/flvenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/flvenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/fmtconvert.h b/libffmpeg-avutil/libavcodec/fmtconvert.h new file mode 120000 index 0000000..ce96d35 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/fmtconvert.h @@ -0,0 +1 @@ +../../upstream/libavcodec/fmtconvert.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/frame_thread_encoder.h b/libffmpeg-avutil/libavcodec/frame_thread_encoder.h new file mode 120000 index 0000000..969dbd2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/frame_thread_encoder.h @@ -0,0 +1 @@ +../../upstream/libavcodec/frame_thread_encoder.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/g722.h b/libffmpeg-avutil/libavcodec/g722.h new file mode 120000 index 0000000..3608d52 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/g722.h @@ -0,0 +1 @@ +../../upstream/libavcodec/g722.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/g722dsp.h b/libffmpeg-avutil/libavcodec/g722dsp.h new file mode 120000 index 0000000..15799e0 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/g722dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/g722dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/g723_1.h b/libffmpeg-avutil/libavcodec/g723_1.h new file mode 120000 index 0000000..264a8a7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/g723_1.h @@ -0,0 +1 @@ +../../upstream/libavcodec/g723_1.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/g729.h b/libffmpeg-avutil/libavcodec/g729.h new file mode 120000 index 0000000..f862589 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/g729.h @@ -0,0 +1 @@ +../../upstream/libavcodec/g729.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/g729data.h b/libffmpeg-avutil/libavcodec/g729data.h new file mode 120000 index 0000000..0880464 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/g729data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/g729data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/g729postfilter.h b/libffmpeg-avutil/libavcodec/g729postfilter.h new file mode 120000 index 0000000..ad8ba10 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/g729postfilter.h @@ -0,0 +1 @@ +../../upstream/libavcodec/g729postfilter.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/get_bits.h b/libffmpeg-avutil/libavcodec/get_bits.h new file mode 120000 index 0000000..11213bb --- /dev/null +++ b/libffmpeg-avutil/libavcodec/get_bits.h @@ -0,0 +1 @@ +../../upstream/libavcodec/get_bits.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/gif.h b/libffmpeg-avutil/libavcodec/gif.h new file mode 120000 index 0000000..f703ebd --- /dev/null +++ b/libffmpeg-avutil/libavcodec/gif.h @@ -0,0 +1 @@ +../../upstream/libavcodec/gif.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/golomb.h b/libffmpeg-avutil/libavcodec/golomb.h new file mode 120000 index 0000000..eeaf6d3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/golomb.h @@ -0,0 +1 @@ +../../upstream/libavcodec/golomb.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/gsm.h b/libffmpeg-avutil/libavcodec/gsm.h new file mode 120000 index 0000000..9196d8b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/gsm.h @@ -0,0 +1 @@ +../../upstream/libavcodec/gsm.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/gsmdec_data.h b/libffmpeg-avutil/libavcodec/gsmdec_data.h new file mode 120000 index 0000000..b9ac441 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/gsmdec_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/gsmdec_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h261.h b/libffmpeg-avutil/libavcodec/h261.h new file mode 120000 index 0000000..afa4f5e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h261.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h261.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h261enc.h b/libffmpeg-avutil/libavcodec/h261enc.h new file mode 120000 index 0000000..14e3273 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h261enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h261enc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h263.h b/libffmpeg-avutil/libavcodec/h263.h new file mode 120000 index 0000000..f2b05c1 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h263.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h263.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h263data.h b/libffmpeg-avutil/libavcodec/h263data.h new file mode 120000 index 0000000..bd5cd1c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h263data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h263data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h263dec.h b/libffmpeg-avutil/libavcodec/h263dec.h new file mode 120000 index 0000000..d3928be --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h263dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h263dec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h263dsp.h b/libffmpeg-avutil/libavcodec/h263dsp.h new file mode 120000 index 0000000..25ec9dd --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h263dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h263dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h263enc.h b/libffmpeg-avutil/libavcodec/h263enc.h new file mode 120000 index 0000000..4ce7c3e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h263enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h263enc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264.h b/libffmpeg-avutil/libavcodec/h264.h new file mode 120000 index 0000000..925c154 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h2645_parse.h b/libffmpeg-avutil/libavcodec/h2645_parse.h new file mode 120000 index 0000000..be39fec --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h2645_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h2645_parse.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h2645_sei.h b/libffmpeg-avutil/libavcodec/h2645_sei.h new file mode 120000 index 0000000..b55d6a9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h2645_sei.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h2645_sei.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h2645_vui.h b/libffmpeg-avutil/libavcodec/h2645_vui.h new file mode 120000 index 0000000..2a15d3a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h2645_vui.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h2645_vui.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h2645data.h b/libffmpeg-avutil/libavcodec/h2645data.h new file mode 120000 index 0000000..46c4031 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h2645data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h2645data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264_levels.h b/libffmpeg-avutil/libavcodec/h264_levels.h new file mode 120000 index 0000000..6d9ad0a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264_levels.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_levels.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264_mvpred.h b/libffmpeg-avutil/libavcodec/h264_mvpred.h new file mode 120000 index 0000000..34b09c9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264_mvpred.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_mvpred.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264_parse.h b/libffmpeg-avutil/libavcodec/h264_parse.h new file mode 120000 index 0000000..d7552d3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_parse.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264_ps.h b/libffmpeg-avutil/libavcodec/h264_ps.h new file mode 120000 index 0000000..524cbaf --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264_ps.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_ps.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264_sei.h b/libffmpeg-avutil/libavcodec/h264_sei.h new file mode 120000 index 0000000..3278bb8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264_sei.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264_sei.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264chroma.h b/libffmpeg-avutil/libavcodec/h264chroma.h new file mode 120000 index 0000000..71bf279 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264chroma.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264chroma.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264data.h b/libffmpeg-avutil/libavcodec/h264data.h new file mode 120000 index 0000000..4e8e8ba --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264dec.h b/libffmpeg-avutil/libavcodec/h264dec.h new file mode 120000 index 0000000..86c84c8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264dec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264dsp.h b/libffmpeg-avutil/libavcodec/h264dsp.h new file mode 120000 index 0000000..267d132 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264idct.h b/libffmpeg-avutil/libavcodec/h264idct.h new file mode 120000 index 0000000..001149b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264idct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264idct.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264pred.h b/libffmpeg-avutil/libavcodec/h264pred.h new file mode 120000 index 0000000..bc93efe --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264pred.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264pred.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h264qpel.h b/libffmpeg-avutil/libavcodec/h264qpel.h new file mode 120000 index 0000000..e3edf14 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h264qpel.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h264qpel.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h265_profile_level.h b/libffmpeg-avutil/libavcodec/h265_profile_level.h new file mode 120000 index 0000000..4c3acd2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h265_profile_level.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h265_profile_level.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/h274.h b/libffmpeg-avutil/libavcodec/h274.h new file mode 120000 index 0000000..1b9c6ad --- /dev/null +++ b/libffmpeg-avutil/libavcodec/h274.h @@ -0,0 +1 @@ +../../upstream/libavcodec/h274.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/hap.h b/libffmpeg-avutil/libavcodec/hap.h new file mode 120000 index 0000000..f4764d1 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/hap.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hap.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/hca_data.h b/libffmpeg-avutil/libavcodec/hca_data.h new file mode 120000 index 0000000..1faca34 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/hca_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hca_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/hpeldsp.h b/libffmpeg-avutil/libavcodec/hpeldsp.h new file mode 120000 index 0000000..4edef7b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/hpeldsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hpeldsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/hq_hqadata.h b/libffmpeg-avutil/libavcodec/hq_hqadata.h new file mode 120000 index 0000000..1128403 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/hq_hqadata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hq_hqadata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/hq_hqadsp.h b/libffmpeg-avutil/libavcodec/hq_hqadsp.h new file mode 120000 index 0000000..f130718 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/hq_hqadsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hq_hqadsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/hqx.h b/libffmpeg-avutil/libavcodec/hqx.h new file mode 120000 index 0000000..0c104e4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/hqx.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hqx.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/hqxdsp.h b/libffmpeg-avutil/libavcodec/hqxdsp.h new file mode 120000 index 0000000..4ea00c3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/hqxdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hqxdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/htmlsubtitles.h b/libffmpeg-avutil/libavcodec/htmlsubtitles.h new file mode 120000 index 0000000..ca1c2ee --- /dev/null +++ b/libffmpeg-avutil/libavcodec/htmlsubtitles.h @@ -0,0 +1 @@ +../../upstream/libavcodec/htmlsubtitles.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/huffman.h b/libffmpeg-avutil/libavcodec/huffman.h new file mode 120000 index 0000000..f139853 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/huffman.h @@ -0,0 +1 @@ +../../upstream/libavcodec/huffman.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/huffyuv.h b/libffmpeg-avutil/libavcodec/huffyuv.h new file mode 120000 index 0000000..a0cae2b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/huffyuv.h @@ -0,0 +1 @@ +../../upstream/libavcodec/huffyuv.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/huffyuvdsp.h b/libffmpeg-avutil/libavcodec/huffyuvdsp.h new file mode 120000 index 0000000..c85c975 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/huffyuvdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/huffyuvdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/huffyuvencdsp.h b/libffmpeg-avutil/libavcodec/huffyuvencdsp.h new file mode 120000 index 0000000..8212f26 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/huffyuvencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/huffyuvencdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/hwaccel_internal.h b/libffmpeg-avutil/libavcodec/hwaccel_internal.h new file mode 120000 index 0000000..f828db0 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/hwaccel_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hwaccel_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/hwaccels.h b/libffmpeg-avutil/libavcodec/hwaccels.h new file mode 120000 index 0000000..2b4746f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/hwaccels.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hwaccels.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/hwconfig.h b/libffmpeg-avutil/libavcodec/hwconfig.h new file mode 120000 index 0000000..7fa4301 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/hwconfig.h @@ -0,0 +1 @@ +../../upstream/libavcodec/hwconfig.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/idctdsp.h b/libffmpeg-avutil/libavcodec/idctdsp.h new file mode 120000 index 0000000..b32c542 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/idctdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/idctdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/iirfilter.h b/libffmpeg-avutil/libavcodec/iirfilter.h new file mode 120000 index 0000000..4c8f008 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/iirfilter.h @@ -0,0 +1 @@ +../../upstream/libavcodec/iirfilter.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ilbcdata.h b/libffmpeg-avutil/libavcodec/ilbcdata.h new file mode 120000 index 0000000..cc9d9e5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ilbcdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ilbcdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/imcdata.h b/libffmpeg-avutil/libavcodec/imcdata.h new file mode 120000 index 0000000..64eb6db --- /dev/null +++ b/libffmpeg-avutil/libavcodec/imcdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/imcdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/indeo2data.h b/libffmpeg-avutil/libavcodec/indeo2data.h new file mode 120000 index 0000000..759c80e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/indeo2data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/indeo2data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/indeo3data.h b/libffmpeg-avutil/libavcodec/indeo3data.h new file mode 120000 index 0000000..741d23e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/indeo3data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/indeo3data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/indeo4data.h b/libffmpeg-avutil/libavcodec/indeo4data.h new file mode 120000 index 0000000..022d3d7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/indeo4data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/indeo4data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/indeo5data.h b/libffmpeg-avutil/libavcodec/indeo5data.h new file mode 120000 index 0000000..3012c32 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/indeo5data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/indeo5data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/internal.h b/libffmpeg-avutil/libavcodec/internal.h new file mode 120000 index 0000000..67bc54f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/intrax8.h b/libffmpeg-avutil/libavcodec/intrax8.h new file mode 120000 index 0000000..b0f6703 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/intrax8.h @@ -0,0 +1 @@ +../../upstream/libavcodec/intrax8.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/intrax8dsp.h b/libffmpeg-avutil/libavcodec/intrax8dsp.h new file mode 120000 index 0000000..9820126 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/intrax8dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/intrax8dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/intrax8huf.h b/libffmpeg-avutil/libavcodec/intrax8huf.h new file mode 120000 index 0000000..a66ce96 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/intrax8huf.h @@ -0,0 +1 @@ +../../upstream/libavcodec/intrax8huf.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/itut35.h b/libffmpeg-avutil/libavcodec/itut35.h new file mode 120000 index 0000000..0c3451f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/itut35.h @@ -0,0 +1 @@ +../../upstream/libavcodec/itut35.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ivi.h b/libffmpeg-avutil/libavcodec/ivi.h new file mode 120000 index 0000000..afb4afd --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ivi.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ivi.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ivi_dsp.h b/libffmpeg-avutil/libavcodec/ivi_dsp.h new file mode 120000 index 0000000..4d9b05d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ivi_dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ivi_dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jacosub.h b/libffmpeg-avutil/libavcodec/jacosub.h new file mode 120000 index 0000000..7036294 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jacosub.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jacosub.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jni.h b/libffmpeg-avutil/libavcodec/jni.h new file mode 120000 index 0000000..5fed2a4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jni.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jni.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jpeg2000.h b/libffmpeg-avutil/libavcodec/jpeg2000.h new file mode 120000 index 0000000..cdbe6ac --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jpeg2000.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jpeg2000dec.h b/libffmpeg-avutil/libavcodec/jpeg2000dec.h new file mode 120000 index 0000000..1a37ce4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jpeg2000dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000dec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jpeg2000dsp.h b/libffmpeg-avutil/libavcodec/jpeg2000dsp.h new file mode 120000 index 0000000..0317feb --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jpeg2000dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jpeg2000dwt.h b/libffmpeg-avutil/libavcodec/jpeg2000dwt.h new file mode 120000 index 0000000..39480c9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jpeg2000dwt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000dwt.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jpeg2000htdec.h b/libffmpeg-avutil/libavcodec/jpeg2000htdec.h new file mode 120000 index 0000000..94e5288 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jpeg2000htdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeg2000htdec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jpegls.h b/libffmpeg-avutil/libavcodec/jpegls.h new file mode 120000 index 0000000..8ae4c4d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jpegls.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegls.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jpeglsdec.h b/libffmpeg-avutil/libavcodec/jpeglsdec.h new file mode 120000 index 0000000..19f0b63 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jpeglsdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpeglsdec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jpegquanttables.h b/libffmpeg-avutil/libavcodec/jpegquanttables.h new file mode 120000 index 0000000..d031b65 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jpegquanttables.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegquanttables.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jpegtables.h b/libffmpeg-avutil/libavcodec/jpegtables.h new file mode 120000 index 0000000..0c5983c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jpegtables.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegtables.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jpegtabs.h b/libffmpeg-avutil/libavcodec/jpegtabs.h new file mode 120000 index 0000000..b25189f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jpegtabs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegtabs.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jpegxl.h b/libffmpeg-avutil/libavcodec/jpegxl.h new file mode 120000 index 0000000..357800b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jpegxl.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegxl.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/jpegxl_parse.h b/libffmpeg-avutil/libavcodec/jpegxl_parse.h new file mode 120000 index 0000000..b0dafec --- /dev/null +++ b/libffmpeg-avutil/libavcodec/jpegxl_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/jpegxl_parse.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/kbdwin.h b/libffmpeg-avutil/libavcodec/kbdwin.h new file mode 120000 index 0000000..f3dc9f3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/kbdwin.h @@ -0,0 +1 @@ +../../upstream/libavcodec/kbdwin.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/lagarithrac.h b/libffmpeg-avutil/libavcodec/lagarithrac.h new file mode 120000 index 0000000..e5b9479 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/lagarithrac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lagarithrac.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/lcl.h b/libffmpeg-avutil/libavcodec/lcl.h new file mode 120000 index 0000000..c8149d1 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/lcl.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lcl.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/leaddata.h b/libffmpeg-avutil/libavcodec/leaddata.h new file mode 120000 index 0000000..d2000b4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/leaddata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/leaddata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/leb.h b/libffmpeg-avutil/libavcodec/leb.h new file mode 120000 index 0000000..776bba5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/leb.h @@ -0,0 +1 @@ +../../upstream/libavcodec/leb.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/libaom.h b/libffmpeg-avutil/libavcodec/libaom.h new file mode 120000 index 0000000..53ae1fe --- /dev/null +++ b/libffmpeg-avutil/libavcodec/libaom.h @@ -0,0 +1 @@ +../../upstream/libavcodec/libaom.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/libjxl.h b/libffmpeg-avutil/libavcodec/libjxl.h new file mode 120000 index 0000000..de759d4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/libjxl.h @@ -0,0 +1 @@ +../../upstream/libavcodec/libjxl.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/libopenh264.h b/libffmpeg-avutil/libavcodec/libopenh264.h new file mode 120000 index 0000000..b859921 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/libopenh264.h @@ -0,0 +1 @@ +../../upstream/libavcodec/libopenh264.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/libopus.h b/libffmpeg-avutil/libavcodec/libopus.h new file mode 120000 index 0000000..12860e9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/libopus.h @@ -0,0 +1 @@ +../../upstream/libavcodec/libopus.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/libvpx.h b/libffmpeg-avutil/libavcodec/libvpx.h new file mode 120000 index 0000000..6e83c69 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/libvpx.h @@ -0,0 +1 @@ +../../upstream/libavcodec/libvpx.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/libwebpenc_common.h b/libffmpeg-avutil/libavcodec/libwebpenc_common.h new file mode 120000 index 0000000..a8146f5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/libwebpenc_common.h @@ -0,0 +1 @@ +../../upstream/libavcodec/libwebpenc_common.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/lossless_audiodsp.h b/libffmpeg-avutil/libavcodec/lossless_audiodsp.h new file mode 120000 index 0000000..97c07e2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/lossless_audiodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lossless_audiodsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/lossless_videodsp.h b/libffmpeg-avutil/libavcodec/lossless_videodsp.h new file mode 120000 index 0000000..957308d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/lossless_videodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lossless_videodsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/lossless_videoencdsp.h b/libffmpeg-avutil/libavcodec/lossless_videoencdsp.h new file mode 120000 index 0000000..5357354 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/lossless_videoencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lossless_videoencdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/lpc.h b/libffmpeg-avutil/libavcodec/lpc.h new file mode 120000 index 0000000..82ef5b9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/lpc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lpc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/lpc_functions.h b/libffmpeg-avutil/libavcodec/lpc_functions.h new file mode 120000 index 0000000..5c8d3b7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/lpc_functions.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lpc_functions.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/lsp.h b/libffmpeg-avutil/libavcodec/lsp.h new file mode 120000 index 0000000..eec478a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/lsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/lzf.h b/libffmpeg-avutil/libavcodec/lzf.h new file mode 120000 index 0000000..012925d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/lzf.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lzf.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/lzw.h b/libffmpeg-avutil/libavcodec/lzw.h new file mode 120000 index 0000000..83c2799 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/lzw.h @@ -0,0 +1 @@ +../../upstream/libavcodec/lzw.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mathops.h b/libffmpeg-avutil/libavcodec/mathops.h new file mode 120000 index 0000000..de669ca --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mathops.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mathops.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/me_cmp.h b/libffmpeg-avutil/libavcodec/me_cmp.h new file mode 120000 index 0000000..02c348e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/me_cmp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/me_cmp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mediacodec.h b/libffmpeg-avutil/libavcodec/mediacodec.h new file mode 120000 index 0000000..1d7beff --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mediacodec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mediacodec_surface.h b/libffmpeg-avutil/libavcodec/mediacodec_surface.h new file mode 120000 index 0000000..f988f51 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mediacodec_surface.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodec_surface.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mediacodec_sw_buffer.h b/libffmpeg-avutil/libavcodec/mediacodec_sw_buffer.h new file mode 120000 index 0000000..ad26700 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mediacodec_sw_buffer.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodec_sw_buffer.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mediacodec_wrapper.h b/libffmpeg-avutil/libavcodec/mediacodec_wrapper.h new file mode 120000 index 0000000..072518e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mediacodec_wrapper.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodec_wrapper.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mediacodecdec_common.h b/libffmpeg-avutil/libavcodec/mediacodecdec_common.h new file mode 120000 index 0000000..9e556e5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mediacodecdec_common.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mediacodecdec_common.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/metasound_data.h b/libffmpeg-avutil/libavcodec/metasound_data.h new file mode 120000 index 0000000..2e619e3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/metasound_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/metasound_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/metasound_twinvq_data.h b/libffmpeg-avutil/libavcodec/metasound_twinvq_data.h new file mode 120000 index 0000000..c4a1c5d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/metasound_twinvq_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/metasound_twinvq_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mf_utils.h b/libffmpeg-avutil/libavcodec/mf_utils.h new file mode 120000 index 0000000..b047049 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mf_utils.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mf_utils.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mjpeg.h b/libffmpeg-avutil/libavcodec/mjpeg.h new file mode 120000 index 0000000..ffce614 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mjpeg.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpeg.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mjpegdec.h b/libffmpeg-avutil/libavcodec/mjpegdec.h new file mode 120000 index 0000000..5fdcd97 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mjpegdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegdec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mjpegenc.h b/libffmpeg-avutil/libavcodec/mjpegenc.h new file mode 120000 index 0000000..a5c74e9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mjpegenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mjpegenc_common.h b/libffmpeg-avutil/libavcodec/mjpegenc_common.h new file mode 120000 index 0000000..bb72f8e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mjpegenc_common.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegenc_common.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mjpegenc_huffman.h b/libffmpeg-avutil/libavcodec/mjpegenc_huffman.h new file mode 120000 index 0000000..86d9e6e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mjpegenc_huffman.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mjpegenc_huffman.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mlp.h b/libffmpeg-avutil/libavcodec/mlp.h new file mode 120000 index 0000000..29611ba --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mlp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mlp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mlp_parse.h b/libffmpeg-avutil/libavcodec/mlp_parse.h new file mode 120000 index 0000000..c097a3e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mlp_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mlp_parse.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mlpdsp.h b/libffmpeg-avutil/libavcodec/mlpdsp.h new file mode 120000 index 0000000..d6b2e8f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mlpdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mlpdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mlz.h b/libffmpeg-avutil/libavcodec/mlz.h new file mode 120000 index 0000000..374206b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mlz.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mlz.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/motion_est.h b/libffmpeg-avutil/libavcodec/motion_est.h new file mode 120000 index 0000000..70127e8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/motion_est.h @@ -0,0 +1 @@ +../../upstream/libavcodec/motion_est.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/motionpixels_tablegen.h b/libffmpeg-avutil/libavcodec/motionpixels_tablegen.h new file mode 120000 index 0000000..cb42382 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/motionpixels_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/motionpixels_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpc.h b/libffmpeg-avutil/libavcodec/mpc.h new file mode 120000 index 0000000..981c993 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpc7data.h b/libffmpeg-avutil/libavcodec/mpc7data.h new file mode 120000 index 0000000..9d72926 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpc7data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpc7data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpc8data.h b/libffmpeg-avutil/libavcodec/mpc8data.h new file mode 120000 index 0000000..e5c3764 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpc8data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpc8data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpc8huff.h b/libffmpeg-avutil/libavcodec/mpc8huff.h new file mode 120000 index 0000000..98fef5c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpc8huff.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpc8huff.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpcdata.h b/libffmpeg-avutil/libavcodec/mpcdata.h new file mode 120000 index 0000000..33f3f01 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpcdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpcdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg12.h b/libffmpeg-avutil/libavcodec/mpeg12.h new file mode 120000 index 0000000..5f2d3c8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg12.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg12codecs.h b/libffmpeg-avutil/libavcodec/mpeg12codecs.h new file mode 120000 index 0000000..a741500 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg12codecs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12codecs.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg12data.h b/libffmpeg-avutil/libavcodec/mpeg12data.h new file mode 120000 index 0000000..5a59de7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg12data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg12dec.h b/libffmpeg-avutil/libavcodec/mpeg12dec.h new file mode 120000 index 0000000..d965029 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg12dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12dec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg12enc.h b/libffmpeg-avutil/libavcodec/mpeg12enc.h new file mode 120000 index 0000000..9a56b35 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg12enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12enc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg12vlc.h b/libffmpeg-avutil/libavcodec/mpeg12vlc.h new file mode 120000 index 0000000..396a729 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg12vlc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg12vlc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg4audio.h b/libffmpeg-avutil/libavcodec/mpeg4audio.h new file mode 120000 index 0000000..e3a0961 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg4audio.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4audio.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg4audio_copy_pce.h b/libffmpeg-avutil/libavcodec/mpeg4audio_copy_pce.h new file mode 120000 index 0000000..d5061ef --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg4audio_copy_pce.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4audio_copy_pce.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg4audio_sample_rates.h b/libffmpeg-avutil/libavcodec/mpeg4audio_sample_rates.h new file mode 120000 index 0000000..ad34d12 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg4audio_sample_rates.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4audio_sample_rates.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg4data.h b/libffmpeg-avutil/libavcodec/mpeg4data.h new file mode 120000 index 0000000..f593fc6 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg4data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg4video.h b/libffmpeg-avutil/libavcodec/mpeg4video.h new file mode 120000 index 0000000..770e938 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg4video.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4video.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg4videodata.h b/libffmpeg-avutil/libavcodec/mpeg4videodata.h new file mode 120000 index 0000000..68a6039 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg4videodata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videodata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg4videodec.h b/libffmpeg-avutil/libavcodec/mpeg4videodec.h new file mode 120000 index 0000000..7d775f8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg4videodec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videodec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg4videodefs.h b/libffmpeg-avutil/libavcodec/mpeg4videodefs.h new file mode 120000 index 0000000..d3ad9ff --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg4videodefs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videodefs.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg4videodsp.h b/libffmpeg-avutil/libavcodec/mpeg4videodsp.h new file mode 120000 index 0000000..43a4049 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg4videodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videodsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg4videoenc.h b/libffmpeg-avutil/libavcodec/mpeg4videoenc.h new file mode 120000 index 0000000..6d210a3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg4videoenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg4videoenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpeg_er.h b/libffmpeg-avutil/libavcodec/mpeg_er.h new file mode 120000 index 0000000..ea7a8ea --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpeg_er.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpeg_er.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegaudio.h b/libffmpeg-avutil/libavcodec/mpegaudio.h new file mode 120000 index 0000000..b95bf53 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegaudio.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudio.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegaudio_tablegen.h b/libffmpeg-avutil/libavcodec/mpegaudio_tablegen.h new file mode 120000 index 0000000..ddb6e55 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegaudio_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudio_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegaudiodata.h b/libffmpeg-avutil/libavcodec/mpegaudiodata.h new file mode 120000 index 0000000..a19b9c2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegaudiodata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegaudiodec_common_tablegen.h b/libffmpeg-avutil/libavcodec/mpegaudiodec_common_tablegen.h new file mode 120000 index 0000000..f333858 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegaudiodec_common_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodec_common_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegaudiodecheader.h b/libffmpeg-avutil/libavcodec/mpegaudiodecheader.h new file mode 120000 index 0000000..e0a2f59 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegaudiodecheader.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodecheader.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegaudiodsp.h b/libffmpeg-avutil/libavcodec/mpegaudiodsp.h new file mode 120000 index 0000000..8316489 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegaudiodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiodsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegaudiotab.h b/libffmpeg-avutil/libavcodec/mpegaudiotab.h new file mode 120000 index 0000000..c18c287 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegaudiotab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiotab.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegaudiotabs.h b/libffmpeg-avutil/libavcodec/mpegaudiotabs.h new file mode 120000 index 0000000..902417c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegaudiotabs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegaudiotabs.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegpicture.h b/libffmpeg-avutil/libavcodec/mpegpicture.h new file mode 120000 index 0000000..415b25f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegpicture.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegpicture.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegutils.h b/libffmpeg-avutil/libavcodec/mpegutils.h new file mode 120000 index 0000000..29167e6 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegutils.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegutils.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegvideo.h b/libffmpeg-avutil/libavcodec/mpegvideo.h new file mode 120000 index 0000000..d275f36 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegvideo.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideo.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegvideodata.h b/libffmpeg-avutil/libavcodec/mpegvideodata.h new file mode 120000 index 0000000..a580f31 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegvideodata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideodata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegvideodec.h b/libffmpeg-avutil/libavcodec/mpegvideodec.h new file mode 120000 index 0000000..e4407ad --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegvideodec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideodec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegvideoenc.h b/libffmpeg-avutil/libavcodec/mpegvideoenc.h new file mode 120000 index 0000000..1e150eb --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegvideoenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideoenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mpegvideoencdsp.h b/libffmpeg-avutil/libavcodec/mpegvideoencdsp.h new file mode 120000 index 0000000..97ef83b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mpegvideoencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mpegvideoencdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mqc.h b/libffmpeg-avutil/libavcodec/mqc.h new file mode 120000 index 0000000..66ecdfa --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mqc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mqc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/msgsmdec.h b/libffmpeg-avutil/libavcodec/msgsmdec.h new file mode 120000 index 0000000..671bea7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/msgsmdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msgsmdec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/msmpeg4.h b/libffmpeg-avutil/libavcodec/msmpeg4.h new file mode 120000 index 0000000..959c6c0 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/msmpeg4.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/msmpeg4_vc1_data.h b/libffmpeg-avutil/libavcodec/msmpeg4_vc1_data.h new file mode 120000 index 0000000..dd1309f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/msmpeg4_vc1_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4_vc1_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/msmpeg4data.h b/libffmpeg-avutil/libavcodec/msmpeg4data.h new file mode 120000 index 0000000..aece477 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/msmpeg4data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/msmpeg4dec.h b/libffmpeg-avutil/libavcodec/msmpeg4dec.h new file mode 120000 index 0000000..d757936 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/msmpeg4dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4dec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/msmpeg4enc.h b/libffmpeg-avutil/libavcodec/msmpeg4enc.h new file mode 120000 index 0000000..4ec686c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/msmpeg4enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msmpeg4enc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/msrledec.h b/libffmpeg-avutil/libavcodec/msrledec.h new file mode 120000 index 0000000..ff4d49b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/msrledec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/msrledec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mss12.h b/libffmpeg-avutil/libavcodec/mss12.h new file mode 120000 index 0000000..f73d549 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mss12.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mss12.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mss2dsp.h b/libffmpeg-avutil/libavcodec/mss2dsp.h new file mode 120000 index 0000000..bf9c33c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mss2dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mss2dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/mss34dsp.h b/libffmpeg-avutil/libavcodec/mss34dsp.h new file mode 120000 index 0000000..d1a60cd --- /dev/null +++ b/libffmpeg-avutil/libavcodec/mss34dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/mss34dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/nellymoser.h b/libffmpeg-avutil/libavcodec/nellymoser.h new file mode 120000 index 0000000..20a7e58 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/nellymoser.h @@ -0,0 +1 @@ +../../upstream/libavcodec/nellymoser.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/nvdec.h b/libffmpeg-avutil/libavcodec/nvdec.h new file mode 120000 index 0000000..5a29d2d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/nvdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/nvdec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/nvenc.h b/libffmpeg-avutil/libavcodec/nvenc.h new file mode 120000 index 0000000..0762aea --- /dev/null +++ b/libffmpeg-avutil/libavcodec/nvenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/nvenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/on2avcdata.h b/libffmpeg-avutil/libavcodec/on2avcdata.h new file mode 120000 index 0000000..ae452d4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/on2avcdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/on2avcdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/options_table.h b/libffmpeg-avutil/libavcodec/options_table.h new file mode 120000 index 0000000..7f94eae --- /dev/null +++ b/libffmpeg-avutil/libavcodec/options_table.h @@ -0,0 +1 @@ +../../upstream/libavcodec/options_table.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/opus.h b/libffmpeg-avutil/libavcodec/opus.h new file mode 120000 index 0000000..cb7b05d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/opus.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opus.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/opus_celt.h b/libffmpeg-avutil/libavcodec/opus_celt.h new file mode 120000 index 0000000..262046c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/opus_celt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_celt.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/opus_parse.h b/libffmpeg-avutil/libavcodec/opus_parse.h new file mode 120000 index 0000000..a07a48c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/opus_parse.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_parse.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/opus_pvq.h b/libffmpeg-avutil/libavcodec/opus_pvq.h new file mode 120000 index 0000000..9665a10 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/opus_pvq.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_pvq.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/opus_rc.h b/libffmpeg-avutil/libavcodec/opus_rc.h new file mode 120000 index 0000000..971aabd --- /dev/null +++ b/libffmpeg-avutil/libavcodec/opus_rc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_rc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/opus_silk.h b/libffmpeg-avutil/libavcodec/opus_silk.h new file mode 120000 index 0000000..9c08edc --- /dev/null +++ b/libffmpeg-avutil/libavcodec/opus_silk.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opus_silk.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/opusdsp.h b/libffmpeg-avutil/libavcodec/opusdsp.h new file mode 120000 index 0000000..97f12d5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/opusdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opusdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/opusenc.h b/libffmpeg-avutil/libavcodec/opusenc.h new file mode 120000 index 0000000..113f8cf --- /dev/null +++ b/libffmpeg-avutil/libavcodec/opusenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opusenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/opusenc_psy.h b/libffmpeg-avutil/libavcodec/opusenc_psy.h new file mode 120000 index 0000000..2cd567f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/opusenc_psy.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opusenc_psy.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/opusenc_utils.h b/libffmpeg-avutil/libavcodec/opusenc_utils.h new file mode 120000 index 0000000..1b76b98 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/opusenc_utils.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opusenc_utils.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/opustab.h b/libffmpeg-avutil/libavcodec/opustab.h new file mode 120000 index 0000000..d8f79fb --- /dev/null +++ b/libffmpeg-avutil/libavcodec/opustab.h @@ -0,0 +1 @@ +../../upstream/libavcodec/opustab.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/packet.h b/libffmpeg-avutil/libavcodec/packet.h new file mode 120000 index 0000000..d041bc9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/packet.h @@ -0,0 +1 @@ +../../upstream/libavcodec/packet.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/packet_internal.h b/libffmpeg-avutil/libavcodec/packet_internal.h new file mode 120000 index 0000000..e8646db --- /dev/null +++ b/libffmpeg-avutil/libavcodec/packet_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/packet_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/paf.h b/libffmpeg-avutil/libavcodec/paf.h new file mode 120000 index 0000000..53a99be --- /dev/null +++ b/libffmpeg-avutil/libavcodec/paf.h @@ -0,0 +1 @@ +../../upstream/libavcodec/paf.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/parser.h b/libffmpeg-avutil/libavcodec/parser.h new file mode 120000 index 0000000..582ffba --- /dev/null +++ b/libffmpeg-avutil/libavcodec/parser.h @@ -0,0 +1 @@ +../../upstream/libavcodec/parser.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/pcm_tablegen.h b/libffmpeg-avutil/libavcodec/pcm_tablegen.h new file mode 120000 index 0000000..196d0d1 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/pcm_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/pcm_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/pixblockdsp.h b/libffmpeg-avutil/libavcodec/pixblockdsp.h new file mode 120000 index 0000000..67850d8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/pixblockdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/pixblockdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/pixels.h b/libffmpeg-avutil/libavcodec/pixels.h new file mode 120000 index 0000000..3a0fed0 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/pixels.h @@ -0,0 +1 @@ +../../upstream/libavcodec/pixels.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/png.h b/libffmpeg-avutil/libavcodec/png.h new file mode 120000 index 0000000..2abb0d6 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/png.h @@ -0,0 +1 @@ +../../upstream/libavcodec/png.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/pngdsp.h b/libffmpeg-avutil/libavcodec/pngdsp.h new file mode 120000 index 0000000..d9901c1 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/pngdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/pngdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/pnm.h b/libffmpeg-avutil/libavcodec/pnm.h new file mode 120000 index 0000000..a2fe3fb --- /dev/null +++ b/libffmpeg-avutil/libavcodec/pnm.h @@ -0,0 +1 @@ +../../upstream/libavcodec/pnm.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/profiles.h b/libffmpeg-avutil/libavcodec/profiles.h new file mode 120000 index 0000000..12d2996 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/profiles.h @@ -0,0 +1 @@ +../../upstream/libavcodec/profiles.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/progressframe.h b/libffmpeg-avutil/libavcodec/progressframe.h new file mode 120000 index 0000000..6bedda4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/progressframe.h @@ -0,0 +1 @@ +../../upstream/libavcodec/progressframe.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/proresdata.h b/libffmpeg-avutil/libavcodec/proresdata.h new file mode 120000 index 0000000..5350ecb --- /dev/null +++ b/libffmpeg-avutil/libavcodec/proresdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/proresdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/proresdec.h b/libffmpeg-avutil/libavcodec/proresdec.h new file mode 120000 index 0000000..5f1e684 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/proresdec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/proresdec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/proresdsp.h b/libffmpeg-avutil/libavcodec/proresdsp.h new file mode 120000 index 0000000..f446a86 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/proresdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/proresdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/psymodel.h b/libffmpeg-avutil/libavcodec/psymodel.h new file mode 120000 index 0000000..6e552e0 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/psymodel.h @@ -0,0 +1 @@ +../../upstream/libavcodec/psymodel.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/pthread_internal.h b/libffmpeg-avutil/libavcodec/pthread_internal.h new file mode 120000 index 0000000..0cc60e7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/pthread_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/pthread_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/put_bits.h b/libffmpeg-avutil/libavcodec/put_bits.h new file mode 120000 index 0000000..73bc768 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/put_bits.h @@ -0,0 +1 @@ +../../upstream/libavcodec/put_bits.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/put_golomb.h b/libffmpeg-avutil/libavcodec/put_golomb.h new file mode 120000 index 0000000..c6e77b9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/put_golomb.h @@ -0,0 +1 @@ +../../upstream/libavcodec/put_golomb.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/qcelpdata.h b/libffmpeg-avutil/libavcodec/qcelpdata.h new file mode 120000 index 0000000..a39f35a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/qcelpdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qcelpdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/qdm2_tablegen.h b/libffmpeg-avutil/libavcodec/qdm2_tablegen.h new file mode 120000 index 0000000..7a40a41 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/qdm2_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qdm2_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/qdm2data.h b/libffmpeg-avutil/libavcodec/qdm2data.h new file mode 120000 index 0000000..bfa64c9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/qdm2data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qdm2data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/qoi.h b/libffmpeg-avutil/libavcodec/qoi.h new file mode 120000 index 0000000..ce99cdd --- /dev/null +++ b/libffmpeg-avutil/libavcodec/qoi.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qoi.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/qpeldsp.h b/libffmpeg-avutil/libavcodec/qpeldsp.h new file mode 120000 index 0000000..4f9184f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/qpeldsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qpeldsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/qsv.h b/libffmpeg-avutil/libavcodec/qsv.h new file mode 120000 index 0000000..2bf5d61 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/qsv.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qsv.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/qsv_internal.h b/libffmpeg-avutil/libavcodec/qsv_internal.h new file mode 120000 index 0000000..271c9de --- /dev/null +++ b/libffmpeg-avutil/libavcodec/qsv_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qsv_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/qsvenc.h b/libffmpeg-avutil/libavcodec/qsvenc.h new file mode 120000 index 0000000..54942f4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/qsvenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/qsvenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ra144.h b/libffmpeg-avutil/libavcodec/ra144.h new file mode 120000 index 0000000..1832ea3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ra144.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ra144.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ra288.h b/libffmpeg-avutil/libavcodec/ra288.h new file mode 120000 index 0000000..42e3113 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ra288.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ra288.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ralfdata.h b/libffmpeg-avutil/libavcodec/ralfdata.h new file mode 120000 index 0000000..e919643 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ralfdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ralfdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rangecoder.h b/libffmpeg-avutil/libavcodec/rangecoder.h new file mode 120000 index 0000000..8adc39c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rangecoder.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rangecoder.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ratecontrol.h b/libffmpeg-avutil/libavcodec/ratecontrol.h new file mode 120000 index 0000000..2df0766 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ratecontrol.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ratecontrol.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/raw.h b/libffmpeg-avutil/libavcodec/raw.h new file mode 120000 index 0000000..eb1de77 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/raw.h @@ -0,0 +1 @@ +../../upstream/libavcodec/raw.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rectangle.h b/libffmpeg-avutil/libavcodec/rectangle.h new file mode 120000 index 0000000..35e8daa --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rectangle.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rectangle.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/refstruct.h b/libffmpeg-avutil/libavcodec/refstruct.h new file mode 120000 index 0000000..8606a5d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/refstruct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/refstruct.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rl.h b/libffmpeg-avutil/libavcodec/rl.h new file mode 120000 index 0000000..90b1a38 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rl.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rl.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rle.h b/libffmpeg-avutil/libavcodec/rle.h new file mode 120000 index 0000000..98238eb --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rle.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rle.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rnd_avg.h b/libffmpeg-avutil/libavcodec/rnd_avg.h new file mode 120000 index 0000000..699cb1b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rnd_avg.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rnd_avg.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/roqvideo.h b/libffmpeg-avutil/libavcodec/roqvideo.h new file mode 120000 index 0000000..65b22dc --- /dev/null +++ b/libffmpeg-avutil/libavcodec/roqvideo.h @@ -0,0 +1 @@ +../../upstream/libavcodec/roqvideo.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rtjpeg.h b/libffmpeg-avutil/libavcodec/rtjpeg.h new file mode 120000 index 0000000..50a70c7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rtjpeg.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rtjpeg.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rv10dec.h b/libffmpeg-avutil/libavcodec/rv10dec.h new file mode 120000 index 0000000..8189466 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rv10dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv10dec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rv10enc.h b/libffmpeg-avutil/libavcodec/rv10enc.h new file mode 120000 index 0000000..7b58479 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rv10enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv10enc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rv30data.h b/libffmpeg-avutil/libavcodec/rv30data.h new file mode 120000 index 0000000..a73e977 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rv30data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv30data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rv34.h b/libffmpeg-avutil/libavcodec/rv34.h new file mode 120000 index 0000000..210b29b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rv34.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv34.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rv34data.h b/libffmpeg-avutil/libavcodec/rv34data.h new file mode 120000 index 0000000..594758b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rv34data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv34data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rv34dsp.h b/libffmpeg-avutil/libavcodec/rv34dsp.h new file mode 120000 index 0000000..980d27c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rv34dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv34dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rv34vlc.h b/libffmpeg-avutil/libavcodec/rv34vlc.h new file mode 120000 index 0000000..27c6ead --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rv34vlc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv34vlc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rv40data.h b/libffmpeg-avutil/libavcodec/rv40data.h new file mode 120000 index 0000000..4a69f1f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rv40data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv40data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/rv40vlc2.h b/libffmpeg-avutil/libavcodec/rv40vlc2.h new file mode 120000 index 0000000..e13e5be --- /dev/null +++ b/libffmpeg-avutil/libavcodec/rv40vlc2.h @@ -0,0 +1 @@ +../../upstream/libavcodec/rv40vlc2.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sbc.h b/libffmpeg-avutil/libavcodec/sbc.h new file mode 120000 index 0000000..9c5b0ea --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sbc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sbc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sbcdec_data.h b/libffmpeg-avutil/libavcodec/sbcdec_data.h new file mode 120000 index 0000000..4848f9b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sbcdec_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sbcdec_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sbcdsp.h b/libffmpeg-avutil/libavcodec/sbcdsp.h new file mode 120000 index 0000000..bc6467a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sbcdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sbcdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sbcdsp_data.h b/libffmpeg-avutil/libavcodec/sbcdsp_data.h new file mode 120000 index 0000000..44a4ca8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sbcdsp_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sbcdsp_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sbr.h b/libffmpeg-avutil/libavcodec/sbr.h new file mode 120000 index 0000000..16431a6 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sbr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sbr.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sbrdsp.h b/libffmpeg-avutil/libavcodec/sbrdsp.h new file mode 120000 index 0000000..f47753e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sbrdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sbrdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/scpr.h b/libffmpeg-avutil/libavcodec/scpr.h new file mode 120000 index 0000000..b315a50 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/scpr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/scpr.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/scpr3.h b/libffmpeg-avutil/libavcodec/scpr3.h new file mode 120000 index 0000000..6405f76 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/scpr3.h @@ -0,0 +1 @@ +../../upstream/libavcodec/scpr3.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sei.h b/libffmpeg-avutil/libavcodec/sei.h new file mode 120000 index 0000000..cc55de9 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sei.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sei.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sgi.h b/libffmpeg-avutil/libavcodec/sgi.h new file mode 120000 index 0000000..8951ba2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sgi.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sgi.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sheervideodata.h b/libffmpeg-avutil/libavcodec/sheervideodata.h new file mode 120000 index 0000000..8fb6646 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sheervideodata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sheervideodata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/simple_idct.h b/libffmpeg-avutil/libavcodec/simple_idct.h new file mode 120000 index 0000000..c05f878 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/simple_idct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/simple_idct.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sinewin.h b/libffmpeg-avutil/libavcodec/sinewin.h new file mode 120000 index 0000000..77b84a0 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sinewin.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sinewin.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sinewin_fixed_tablegen.h b/libffmpeg-avutil/libavcodec/sinewin_fixed_tablegen.h new file mode 120000 index 0000000..14f7c70 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sinewin_fixed_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sinewin_fixed_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sinewin_tablegen.h b/libffmpeg-avutil/libavcodec/sinewin_tablegen.h new file mode 120000 index 0000000..7d2f668 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sinewin_tablegen.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sinewin_tablegen.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sipr.h b/libffmpeg-avutil/libavcodec/sipr.h new file mode 120000 index 0000000..ecd90ff --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sipr.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sipr.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sipr16kdata.h b/libffmpeg-avutil/libavcodec/sipr16kdata.h new file mode 120000 index 0000000..1ae7806 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sipr16kdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sipr16kdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/siprdata.h b/libffmpeg-avutil/libavcodec/siprdata.h new file mode 120000 index 0000000..1b6d1f2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/siprdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/siprdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/snappy.h b/libffmpeg-avutil/libavcodec/snappy.h new file mode 120000 index 0000000..78cf925 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/snappy.h @@ -0,0 +1 @@ +../../upstream/libavcodec/snappy.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/snow.h b/libffmpeg-avutil/libavcodec/snow.h new file mode 120000 index 0000000..cb9965b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/snow.h @@ -0,0 +1 @@ +../../upstream/libavcodec/snow.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/snow_dwt.h b/libffmpeg-avutil/libavcodec/snow_dwt.h new file mode 120000 index 0000000..ef10cd2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/snow_dwt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/snow_dwt.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/snowdata.h b/libffmpeg-avutil/libavcodec/snowdata.h new file mode 120000 index 0000000..d7244e8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/snowdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/snowdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sp5x.h b/libffmpeg-avutil/libavcodec/sp5x.h new file mode 120000 index 0000000..f81815b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sp5x.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sp5x.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/speedhq.h b/libffmpeg-avutil/libavcodec/speedhq.h new file mode 120000 index 0000000..4101943 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/speedhq.h @@ -0,0 +1 @@ +../../upstream/libavcodec/speedhq.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/speedhqenc.h b/libffmpeg-avutil/libavcodec/speedhqenc.h new file mode 120000 index 0000000..5fea279 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/speedhqenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/speedhqenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/speexdata.h b/libffmpeg-avutil/libavcodec/speexdata.h new file mode 120000 index 0000000..e0b5930 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/speexdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/speexdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/startcode.h b/libffmpeg-avutil/libavcodec/startcode.h new file mode 120000 index 0000000..d3bbd81 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/startcode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/startcode.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/sunrast.h b/libffmpeg-avutil/libavcodec/sunrast.h new file mode 120000 index 0000000..7ed1d7f --- /dev/null +++ b/libffmpeg-avutil/libavcodec/sunrast.h @@ -0,0 +1 @@ +../../upstream/libavcodec/sunrast.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/svq1.h b/libffmpeg-avutil/libavcodec/svq1.h new file mode 120000 index 0000000..e8b3c62 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/svq1.h @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/svq1_cb.h b/libffmpeg-avutil/libavcodec/svq1_cb.h new file mode 120000 index 0000000..605ff3e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/svq1_cb.h @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1_cb.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/svq1_vlc.h b/libffmpeg-avutil/libavcodec/svq1_vlc.h new file mode 120000 index 0000000..c0030d6 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/svq1_vlc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1_vlc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/svq1enc_cb.h b/libffmpeg-avutil/libavcodec/svq1enc_cb.h new file mode 120000 index 0000000..ee6ac91 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/svq1enc_cb.h @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1enc_cb.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/svq1encdsp.h b/libffmpeg-avutil/libavcodec/svq1encdsp.h new file mode 120000 index 0000000..5f101c2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/svq1encdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/svq1encdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/synth_filter.h b/libffmpeg-avutil/libavcodec/synth_filter.h new file mode 120000 index 0000000..ee0cee5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/synth_filter.h @@ -0,0 +1 @@ +../../upstream/libavcodec/synth_filter.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/tableprint.h b/libffmpeg-avutil/libavcodec/tableprint.h new file mode 120000 index 0000000..7dad4c6 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/tableprint.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tableprint.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/tableprint_vlc.h b/libffmpeg-avutil/libavcodec/tableprint_vlc.h new file mode 120000 index 0000000..4c42416 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/tableprint_vlc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tableprint_vlc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/tak.h b/libffmpeg-avutil/libavcodec/tak.h new file mode 120000 index 0000000..af97ff1 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/tak.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tak.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/takdsp.h b/libffmpeg-avutil/libavcodec/takdsp.h new file mode 120000 index 0000000..f2a7fa7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/takdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/takdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/targa.h b/libffmpeg-avutil/libavcodec/targa.h new file mode 120000 index 0000000..d352afc --- /dev/null +++ b/libffmpeg-avutil/libavcodec/targa.h @@ -0,0 +1 @@ +../../upstream/libavcodec/targa.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/texturedsp.h b/libffmpeg-avutil/libavcodec/texturedsp.h new file mode 120000 index 0000000..ccd140d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/texturedsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/texturedsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/thread.h b/libffmpeg-avutil/libavcodec/thread.h new file mode 120000 index 0000000..58fc341 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/thread.h @@ -0,0 +1 @@ +../../upstream/libavcodec/thread.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/threadframe.h b/libffmpeg-avutil/libavcodec/threadframe.h new file mode 120000 index 0000000..0bf9e94 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/threadframe.h @@ -0,0 +1 @@ +../../upstream/libavcodec/threadframe.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/threadprogress.h b/libffmpeg-avutil/libavcodec/threadprogress.h new file mode 120000 index 0000000..419f8e2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/threadprogress.h @@ -0,0 +1 @@ +../../upstream/libavcodec/threadprogress.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/tiff.h b/libffmpeg-avutil/libavcodec/tiff.h new file mode 120000 index 0000000..004c0f4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/tiff.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tiff.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/tiff_common.h b/libffmpeg-avutil/libavcodec/tiff_common.h new file mode 120000 index 0000000..2c5ca5b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/tiff_common.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tiff_common.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/tiff_data.h b/libffmpeg-avutil/libavcodec/tiff_data.h new file mode 120000 index 0000000..a7d28cf --- /dev/null +++ b/libffmpeg-avutil/libavcodec/tiff_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tiff_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/to_upper4.h b/libffmpeg-avutil/libavcodec/to_upper4.h new file mode 120000 index 0000000..853cb6b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/to_upper4.h @@ -0,0 +1 @@ +../../upstream/libavcodec/to_upper4.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/tpeldsp.h b/libffmpeg-avutil/libavcodec/tpeldsp.h new file mode 120000 index 0000000..17c2904 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/tpeldsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tpeldsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/truemotion1data.h b/libffmpeg-avutil/libavcodec/truemotion1data.h new file mode 120000 index 0000000..e703792 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/truemotion1data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/truemotion1data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/truespeech_data.h b/libffmpeg-avutil/libavcodec/truespeech_data.h new file mode 120000 index 0000000..e9c8f39 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/truespeech_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/truespeech_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/tscc2data.h b/libffmpeg-avutil/libavcodec/tscc2data.h new file mode 120000 index 0000000..b182cfc --- /dev/null +++ b/libffmpeg-avutil/libavcodec/tscc2data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/tscc2data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ttadata.h b/libffmpeg-avutil/libavcodec/ttadata.h new file mode 120000 index 0000000..e6aaed2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ttadata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ttadata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ttadsp.h b/libffmpeg-avutil/libavcodec/ttadsp.h new file mode 120000 index 0000000..e2f1d84 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ttadsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ttadsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ttaencdsp.h b/libffmpeg-avutil/libavcodec/ttaencdsp.h new file mode 120000 index 0000000..4d02a77 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ttaencdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ttaencdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ttmlenc.h b/libffmpeg-avutil/libavcodec/ttmlenc.h new file mode 120000 index 0000000..34ced61 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ttmlenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ttmlenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/twinvq.h b/libffmpeg-avutil/libavcodec/twinvq.h new file mode 120000 index 0000000..55a42be --- /dev/null +++ b/libffmpeg-avutil/libavcodec/twinvq.h @@ -0,0 +1 @@ +../../upstream/libavcodec/twinvq.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/twinvq_data.h b/libffmpeg-avutil/libavcodec/twinvq_data.h new file mode 120000 index 0000000..f3570ee --- /dev/null +++ b/libffmpeg-avutil/libavcodec/twinvq_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/twinvq_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/ulti_cb.h b/libffmpeg-avutil/libavcodec/ulti_cb.h new file mode 120000 index 0000000..a9e5495 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/ulti_cb.h @@ -0,0 +1 @@ +../../upstream/libavcodec/ulti_cb.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/unary.h b/libffmpeg-avutil/libavcodec/unary.h new file mode 120000 index 0000000..d75167d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/unary.h @@ -0,0 +1 @@ +../../upstream/libavcodec/unary.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/utvideo.h b/libffmpeg-avutil/libavcodec/utvideo.h new file mode 120000 index 0000000..e83d4d3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/utvideo.h @@ -0,0 +1 @@ +../../upstream/libavcodec/utvideo.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/utvideodsp.h b/libffmpeg-avutil/libavcodec/utvideodsp.h new file mode 120000 index 0000000..142ac35 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/utvideodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/utvideodsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/v210dec.h b/libffmpeg-avutil/libavcodec/v210dec.h new file mode 120000 index 0000000..81a3446 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/v210dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v210dec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/v210dec_init.h b/libffmpeg-avutil/libavcodec/v210dec_init.h new file mode 120000 index 0000000..21a3b3d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/v210dec_init.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v210dec_init.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/v210enc.h b/libffmpeg-avutil/libavcodec/v210enc.h new file mode 120000 index 0000000..4fafac3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/v210enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v210enc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/v210enc_init.h b/libffmpeg-avutil/libavcodec/v210enc_init.h new file mode 120000 index 0000000..1bcf29d --- /dev/null +++ b/libffmpeg-avutil/libavcodec/v210enc_init.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v210enc_init.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/v4l2_buffers.h b/libffmpeg-avutil/libavcodec/v4l2_buffers.h new file mode 120000 index 0000000..818fb82 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/v4l2_buffers.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_buffers.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/v4l2_context.h b/libffmpeg-avutil/libavcodec/v4l2_context.h new file mode 120000 index 0000000..b5912e8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/v4l2_context.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_context.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/v4l2_fmt.h b/libffmpeg-avutil/libavcodec/v4l2_fmt.h new file mode 120000 index 0000000..4cd4529 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/v4l2_fmt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_fmt.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/v4l2_m2m.h b/libffmpeg-avutil/libavcodec/v4l2_m2m.h new file mode 120000 index 0000000..49ca152 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/v4l2_m2m.h @@ -0,0 +1 @@ +../../upstream/libavcodec/v4l2_m2m.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vaapi_decode.h b/libffmpeg-avutil/libavcodec/vaapi_decode.h new file mode 120000 index 0000000..b04cb79 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vaapi_decode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_decode.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vaapi_encode.h b/libffmpeg-avutil/libavcodec/vaapi_encode.h new file mode 120000 index 0000000..5d5230e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vaapi_encode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_encode.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vaapi_hevc.h b/libffmpeg-avutil/libavcodec/vaapi_hevc.h new file mode 120000 index 0000000..821e146 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vaapi_hevc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vaapi_hevc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vbn.h b/libffmpeg-avutil/libavcodec/vbn.h new file mode 120000 index 0000000..481702b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vbn.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vbn.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vc1.h b/libffmpeg-avutil/libavcodec/vc1.h new file mode 120000 index 0000000..d4633da --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vc1.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vc1_common.h b/libffmpeg-avutil/libavcodec/vc1_common.h new file mode 120000 index 0000000..94b4311 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vc1_common.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1_common.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vc1_pred.h b/libffmpeg-avutil/libavcodec/vc1_pred.h new file mode 120000 index 0000000..18aa5d8 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vc1_pred.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1_pred.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vc1_vlc_data.h b/libffmpeg-avutil/libavcodec/vc1_vlc_data.h new file mode 120000 index 0000000..c653e37 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vc1_vlc_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1_vlc_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vc1acdata.h b/libffmpeg-avutil/libavcodec/vc1acdata.h new file mode 120000 index 0000000..70515d0 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vc1acdata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1acdata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vc1data.h b/libffmpeg-avutil/libavcodec/vc1data.h new file mode 120000 index 0000000..8595001 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vc1data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vc1dsp.h b/libffmpeg-avutil/libavcodec/vc1dsp.h new file mode 120000 index 0000000..b4ea260 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vc1dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc1dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vc2enc_dwt.h b/libffmpeg-avutil/libavcodec/vc2enc_dwt.h new file mode 120000 index 0000000..51a8f47 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vc2enc_dwt.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vc2enc_dwt.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vdpau.h b/libffmpeg-avutil/libavcodec/vdpau.h new file mode 120000 index 0000000..05afd49 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vdpau.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vdpau.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vdpau_internal.h b/libffmpeg-avutil/libavcodec/vdpau_internal.h new file mode 120000 index 0000000..17f34e7 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vdpau_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vdpau_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/version.h b/libffmpeg-avutil/libavcodec/version.h new file mode 120000 index 0000000..ffbb285 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/version.h @@ -0,0 +1 @@ +../../upstream/libavcodec/version.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/version_major.h b/libffmpeg-avutil/libavcodec/version_major.h new file mode 120000 index 0000000..5e9ed0c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/version_major.h @@ -0,0 +1 @@ +../../upstream/libavcodec/version_major.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/videodsp.h b/libffmpeg-avutil/libavcodec/videodsp.h new file mode 120000 index 0000000..80eae34 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/videodsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/videodsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/videotoolbox.h b/libffmpeg-avutil/libavcodec/videotoolbox.h new file mode 120000 index 0000000..a93ccb5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/videotoolbox.h @@ -0,0 +1 @@ +../../upstream/libavcodec/videotoolbox.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vlc.h b/libffmpeg-avutil/libavcodec/vlc.h new file mode 120000 index 0000000..f7c7287 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vlc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vlc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vorbis.h b/libffmpeg-avutil/libavcodec/vorbis.h new file mode 120000 index 0000000..506ed99 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vorbis.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vorbis_data.h b/libffmpeg-avutil/libavcodec/vorbis_data.h new file mode 120000 index 0000000..511050a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vorbis_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vorbis_enc_data.h b/libffmpeg-avutil/libavcodec/vorbis_enc_data.h new file mode 120000 index 0000000..4c98ffe --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vorbis_enc_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis_enc_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vorbis_parser.h b/libffmpeg-avutil/libavcodec/vorbis_parser.h new file mode 120000 index 0000000..372f615 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vorbis_parser.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis_parser.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vorbis_parser_internal.h b/libffmpeg-avutil/libavcodec/vorbis_parser_internal.h new file mode 120000 index 0000000..203ad0c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vorbis_parser_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbis_parser_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vorbisdsp.h b/libffmpeg-avutil/libavcodec/vorbisdsp.h new file mode 120000 index 0000000..ed492fe --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vorbisdsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vorbisdsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp3data.h b/libffmpeg-avutil/libavcodec/vp3data.h new file mode 120000 index 0000000..3b765a4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp3data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp3data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp3dsp.h b/libffmpeg-avutil/libavcodec/vp3dsp.h new file mode 120000 index 0000000..f0c5816 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp3dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp3dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp4data.h b/libffmpeg-avutil/libavcodec/vp4data.h new file mode 120000 index 0000000..fb0c856 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp4data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp4data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp56.h b/libffmpeg-avutil/libavcodec/vp56.h new file mode 120000 index 0000000..9c35f82 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp56.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp56.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp56data.h b/libffmpeg-avutil/libavcodec/vp56data.h new file mode 120000 index 0000000..6e54887 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp56data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp56data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp56dsp.h b/libffmpeg-avutil/libavcodec/vp56dsp.h new file mode 120000 index 0000000..0d4eaff --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp56dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp56dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp5data.h b/libffmpeg-avutil/libavcodec/vp5data.h new file mode 120000 index 0000000..54d5142 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp5data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp5data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp6data.h b/libffmpeg-avutil/libavcodec/vp6data.h new file mode 120000 index 0000000..9652b65 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp6data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp6data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp8.h b/libffmpeg-avutil/libavcodec/vp8.h new file mode 120000 index 0000000..69de054 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp8.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp8.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp89_rac.h b/libffmpeg-avutil/libavcodec/vp89_rac.h new file mode 120000 index 0000000..f32e3ae --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp89_rac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp89_rac.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp8data.h b/libffmpeg-avutil/libavcodec/vp8data.h new file mode 120000 index 0000000..2c6e4f3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp8data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp8data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp8dsp.h b/libffmpeg-avutil/libavcodec/vp8dsp.h new file mode 120000 index 0000000..296991c --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp8dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp8dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp9.h b/libffmpeg-avutil/libavcodec/vp9.h new file mode 120000 index 0000000..48346ec --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp9.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp9data.h b/libffmpeg-avutil/libavcodec/vp9data.h new file mode 120000 index 0000000..ba78814 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp9data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp9dec.h b/libffmpeg-avutil/libavcodec/vp9dec.h new file mode 120000 index 0000000..4b4bfbb --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp9dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9dec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp9dsp.h b/libffmpeg-avutil/libavcodec/vp9dsp.h new file mode 120000 index 0000000..82ec37e --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp9dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vp9shared.h b/libffmpeg-avutil/libavcodec/vp9shared.h new file mode 120000 index 0000000..7a03046 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vp9shared.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vp9shared.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vpx_rac.h b/libffmpeg-avutil/libavcodec/vpx_rac.h new file mode 120000 index 0000000..ceee08a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vpx_rac.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vpx_rac.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vt_internal.h b/libffmpeg-avutil/libavcodec/vt_internal.h new file mode 120000 index 0000000..5bd49c3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vt_internal.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vt_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vulkan.h b/libffmpeg-avutil/libavcodec/vulkan.h new file mode 120000 index 0000000..104b986 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vulkan.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vulkan.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vulkan_decode.h b/libffmpeg-avutil/libavcodec/vulkan_decode.h new file mode 120000 index 0000000..33dae7a --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vulkan_decode.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vulkan_decode.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vulkan_video.h b/libffmpeg-avutil/libavcodec/vulkan_video.h new file mode 120000 index 0000000..edf0ee3 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vulkan_video.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vulkan_video.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/vvc.h b/libffmpeg-avutil/libavcodec/vvc.h new file mode 120000 index 0000000..cae5fdd --- /dev/null +++ b/libffmpeg-avutil/libavcodec/vvc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/vvc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wavpack.h b/libffmpeg-avutil/libavcodec/wavpack.h new file mode 120000 index 0000000..758a967 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wavpack.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wavpack.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wavpackenc.h b/libffmpeg-avutil/libavcodec/wavpackenc.h new file mode 120000 index 0000000..4da68b5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wavpackenc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wavpackenc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wma.h b/libffmpeg-avutil/libavcodec/wma.h new file mode 120000 index 0000000..8d517bf --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wma.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wma.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wma_common.h b/libffmpeg-avutil/libavcodec/wma_common.h new file mode 120000 index 0000000..9e24394 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wma_common.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wma_common.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wma_freqs.h b/libffmpeg-avutil/libavcodec/wma_freqs.h new file mode 120000 index 0000000..63e926b --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wma_freqs.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wma_freqs.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wmadata.h b/libffmpeg-avutil/libavcodec/wmadata.h new file mode 120000 index 0000000..71a1af5 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wmadata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmadata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wmaprodata.h b/libffmpeg-avutil/libavcodec/wmaprodata.h new file mode 120000 index 0000000..10d87d2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wmaprodata.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmaprodata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wmavoice_data.h b/libffmpeg-avutil/libavcodec/wmavoice_data.h new file mode 120000 index 0000000..77ba591 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wmavoice_data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmavoice_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wmv2.h b/libffmpeg-avutil/libavcodec/wmv2.h new file mode 120000 index 0000000..875e663 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wmv2.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wmv2data.h b/libffmpeg-avutil/libavcodec/wmv2data.h new file mode 120000 index 0000000..2bb2707 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wmv2data.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wmv2dec.h b/libffmpeg-avutil/libavcodec/wmv2dec.h new file mode 120000 index 0000000..215e1ad --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wmv2dec.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2dec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wmv2dsp.h b/libffmpeg-avutil/libavcodec/wmv2dsp.h new file mode 120000 index 0000000..9c653e2 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wmv2dsp.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/wmv2enc.h b/libffmpeg-avutil/libavcodec/wmv2enc.h new file mode 120000 index 0000000..89c4028 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/wmv2enc.h @@ -0,0 +1 @@ +../../upstream/libavcodec/wmv2enc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/x86/mathops.h b/libffmpeg-avutil/libavcodec/x86/mathops.h new file mode 120000 index 0000000..92956d6 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/x86/mathops.h @@ -0,0 +1 @@ +../../../upstream/libavcodec/x86/mathops.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/xface.h b/libffmpeg-avutil/libavcodec/xface.h new file mode 120000 index 0000000..2785dd0 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/xface.h @@ -0,0 +1 @@ +../../upstream/libavcodec/xface.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/xiph.h b/libffmpeg-avutil/libavcodec/xiph.h new file mode 120000 index 0000000..d55c2f4 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/xiph.h @@ -0,0 +1 @@ +../../upstream/libavcodec/xiph.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/xvididct.h b/libffmpeg-avutil/libavcodec/xvididct.h new file mode 120000 index 0000000..a25d332 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/xvididct.h @@ -0,0 +1 @@ +../../upstream/libavcodec/xvididct.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/xwd.h b/libffmpeg-avutil/libavcodec/xwd.h new file mode 120000 index 0000000..fbd3012 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/xwd.h @@ -0,0 +1 @@ +../../upstream/libavcodec/xwd.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavcodec/zlib_wrapper.h b/libffmpeg-avutil/libavcodec/zlib_wrapper.h new file mode 120000 index 0000000..337b658 --- /dev/null +++ b/libffmpeg-avutil/libavcodec/zlib_wrapper.h @@ -0,0 +1 @@ +../../upstream/libavcodec/zlib_wrapper.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/adler32.c b/libffmpeg-avutil/libavutil/adler32.c new file mode 120000 index 0000000..e3f23f6 --- /dev/null +++ b/libffmpeg-avutil/libavutil/adler32.c @@ -0,0 +1 @@ +../../upstream/libavutil/adler32.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/adler32.h b/libffmpeg-avutil/libavutil/adler32.h new file mode 120000 index 0000000..f9ae859 --- /dev/null +++ b/libffmpeg-avutil/libavutil/adler32.h @@ -0,0 +1 @@ +../../upstream/libavutil/adler32.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/aes.c b/libffmpeg-avutil/libavutil/aes.c new file mode 120000 index 0000000..9ce4416 --- /dev/null +++ b/libffmpeg-avutil/libavutil/aes.c @@ -0,0 +1 @@ +../../upstream/libavutil/aes.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/aes.h b/libffmpeg-avutil/libavutil/aes.h new file mode 120000 index 0000000..67ef04e --- /dev/null +++ b/libffmpeg-avutil/libavutil/aes.h @@ -0,0 +1 @@ +../../upstream/libavutil/aes.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/aes_ctr.c b/libffmpeg-avutil/libavutil/aes_ctr.c new file mode 120000 index 0000000..3900593 --- /dev/null +++ b/libffmpeg-avutil/libavutil/aes_ctr.c @@ -0,0 +1 @@ +../../upstream/libavutil/aes_ctr.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/aes_ctr.h b/libffmpeg-avutil/libavutil/aes_ctr.h new file mode 120000 index 0000000..034472b --- /dev/null +++ b/libffmpeg-avutil/libavutil/aes_ctr.h @@ -0,0 +1 @@ +../../upstream/libavutil/aes_ctr.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/aes_internal.h b/libffmpeg-avutil/libavutil/aes_internal.h new file mode 120000 index 0000000..0f6c236 --- /dev/null +++ b/libffmpeg-avutil/libavutil/aes_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/aes_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/ambient_viewing_environment.c b/libffmpeg-avutil/libavutil/ambient_viewing_environment.c new file mode 120000 index 0000000..afc4cbf --- /dev/null +++ b/libffmpeg-avutil/libavutil/ambient_viewing_environment.c @@ -0,0 +1 @@ +../../upstream/libavutil/ambient_viewing_environment.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/ambient_viewing_environment.h b/libffmpeg-avutil/libavutil/ambient_viewing_environment.h new file mode 120000 index 0000000..03052fc --- /dev/null +++ b/libffmpeg-avutil/libavutil/ambient_viewing_environment.h @@ -0,0 +1 @@ +../../upstream/libavutil/ambient_viewing_environment.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/attributes.h b/libffmpeg-avutil/libavutil/attributes.h new file mode 120000 index 0000000..36206ee --- /dev/null +++ b/libffmpeg-avutil/libavutil/attributes.h @@ -0,0 +1 @@ +../../upstream/libavutil/attributes.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/attributes_internal.h b/libffmpeg-avutil/libavutil/attributes_internal.h new file mode 120000 index 0000000..881d640 --- /dev/null +++ b/libffmpeg-avutil/libavutil/attributes_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/attributes_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/audio_fifo.c b/libffmpeg-avutil/libavutil/audio_fifo.c new file mode 120000 index 0000000..a15b2c8 --- /dev/null +++ b/libffmpeg-avutil/libavutil/audio_fifo.c @@ -0,0 +1 @@ +../../upstream/libavutil/audio_fifo.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/audio_fifo.h b/libffmpeg-avutil/libavutil/audio_fifo.h new file mode 120000 index 0000000..de93d02 --- /dev/null +++ b/libffmpeg-avutil/libavutil/audio_fifo.h @@ -0,0 +1 @@ +../../upstream/libavutil/audio_fifo.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/avassert.h b/libffmpeg-avutil/libavutil/avassert.h new file mode 120000 index 0000000..b4f4dd5 --- /dev/null +++ b/libffmpeg-avutil/libavutil/avassert.h @@ -0,0 +1 @@ +../../upstream/libavutil/avassert.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/avconfig.h b/libffmpeg-avutil/libavutil/avconfig.h new file mode 100644 index 0000000..c289fbb --- /dev/null +++ b/libffmpeg-avutil/libavutil/avconfig.h @@ -0,0 +1,6 @@ +/* Generated by ffmpeg configure */ +#ifndef AVUTIL_AVCONFIG_H +#define AVUTIL_AVCONFIG_H +#define AV_HAVE_BIGENDIAN 0 +#define AV_HAVE_FAST_UNALIGNED 1 +#endif /* AVUTIL_AVCONFIG_H */ diff --git a/libffmpeg-avutil/libavutil/avsscanf.c b/libffmpeg-avutil/libavutil/avsscanf.c new file mode 120000 index 0000000..31ccc55 --- /dev/null +++ b/libffmpeg-avutil/libavutil/avsscanf.c @@ -0,0 +1 @@ +../../upstream/libavutil/avsscanf.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/avstring.c b/libffmpeg-avutil/libavutil/avstring.c new file mode 120000 index 0000000..430e7ff --- /dev/null +++ b/libffmpeg-avutil/libavutil/avstring.c @@ -0,0 +1 @@ +../../upstream/libavutil/avstring.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/avstring.h b/libffmpeg-avutil/libavutil/avstring.h new file mode 120000 index 0000000..7be3b03 --- /dev/null +++ b/libffmpeg-avutil/libavutil/avstring.h @@ -0,0 +1 @@ +../../upstream/libavutil/avstring.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/avutil.h b/libffmpeg-avutil/libavutil/avutil.h new file mode 120000 index 0000000..4c8d3ad --- /dev/null +++ b/libffmpeg-avutil/libavutil/avutil.h @@ -0,0 +1 @@ +../../upstream/libavutil/avutil.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/base64.c b/libffmpeg-avutil/libavutil/base64.c new file mode 120000 index 0000000..2742f7b --- /dev/null +++ b/libffmpeg-avutil/libavutil/base64.c @@ -0,0 +1 @@ +../../upstream/libavutil/base64.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/base64.h b/libffmpeg-avutil/libavutil/base64.h new file mode 120000 index 0000000..854522d --- /dev/null +++ b/libffmpeg-avutil/libavutil/base64.h @@ -0,0 +1 @@ +../../upstream/libavutil/base64.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/blowfish.c b/libffmpeg-avutil/libavutil/blowfish.c new file mode 120000 index 0000000..e33bb37 --- /dev/null +++ b/libffmpeg-avutil/libavutil/blowfish.c @@ -0,0 +1 @@ +../../upstream/libavutil/blowfish.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/blowfish.h b/libffmpeg-avutil/libavutil/blowfish.h new file mode 120000 index 0000000..04d08d2 --- /dev/null +++ b/libffmpeg-avutil/libavutil/blowfish.h @@ -0,0 +1 @@ +../../upstream/libavutil/blowfish.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/bprint.c b/libffmpeg-avutil/libavutil/bprint.c new file mode 120000 index 0000000..13dd05e --- /dev/null +++ b/libffmpeg-avutil/libavutil/bprint.c @@ -0,0 +1 @@ +../../upstream/libavutil/bprint.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/bprint.h b/libffmpeg-avutil/libavutil/bprint.h new file mode 120000 index 0000000..13e85cb --- /dev/null +++ b/libffmpeg-avutil/libavutil/bprint.h @@ -0,0 +1 @@ +../../upstream/libavutil/bprint.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/bswap.h b/libffmpeg-avutil/libavutil/bswap.h new file mode 120000 index 0000000..48e446a --- /dev/null +++ b/libffmpeg-avutil/libavutil/bswap.h @@ -0,0 +1 @@ +../../upstream/libavutil/bswap.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/buffer.c b/libffmpeg-avutil/libavutil/buffer.c new file mode 120000 index 0000000..2cabbd9 --- /dev/null +++ b/libffmpeg-avutil/libavutil/buffer.c @@ -0,0 +1 @@ +../../upstream/libavutil/buffer.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/buffer.h b/libffmpeg-avutil/libavutil/buffer.h new file mode 120000 index 0000000..511f595 --- /dev/null +++ b/libffmpeg-avutil/libavutil/buffer.h @@ -0,0 +1 @@ +../../upstream/libavutil/buffer.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/buffer_internal.h b/libffmpeg-avutil/libavutil/buffer_internal.h new file mode 120000 index 0000000..16900dc --- /dev/null +++ b/libffmpeg-avutil/libavutil/buffer_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/buffer_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/camellia.c b/libffmpeg-avutil/libavutil/camellia.c new file mode 120000 index 0000000..f262abf --- /dev/null +++ b/libffmpeg-avutil/libavutil/camellia.c @@ -0,0 +1 @@ +../../upstream/libavutil/camellia.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/camellia.h b/libffmpeg-avutil/libavutil/camellia.h new file mode 120000 index 0000000..6979ac3 --- /dev/null +++ b/libffmpeg-avutil/libavutil/camellia.h @@ -0,0 +1 @@ +../../upstream/libavutil/camellia.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/cast5.c b/libffmpeg-avutil/libavutil/cast5.c new file mode 120000 index 0000000..96cc206 --- /dev/null +++ b/libffmpeg-avutil/libavutil/cast5.c @@ -0,0 +1 @@ +../../upstream/libavutil/cast5.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/cast5.h b/libffmpeg-avutil/libavutil/cast5.h new file mode 120000 index 0000000..78d21be --- /dev/null +++ b/libffmpeg-avutil/libavutil/cast5.h @@ -0,0 +1 @@ +../../upstream/libavutil/cast5.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/channel_layout.c b/libffmpeg-avutil/libavutil/channel_layout.c new file mode 120000 index 0000000..b048b74 --- /dev/null +++ b/libffmpeg-avutil/libavutil/channel_layout.c @@ -0,0 +1 @@ +../../upstream/libavutil/channel_layout.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/channel_layout.h b/libffmpeg-avutil/libavutil/channel_layout.h new file mode 120000 index 0000000..e7d4ea2 --- /dev/null +++ b/libffmpeg-avutil/libavutil/channel_layout.h @@ -0,0 +1 @@ +../../upstream/libavutil/channel_layout.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/colorspace.h b/libffmpeg-avutil/libavutil/colorspace.h new file mode 120000 index 0000000..c6dbc61 --- /dev/null +++ b/libffmpeg-avutil/libavutil/colorspace.h @@ -0,0 +1 @@ +../../upstream/libavutil/colorspace.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/common.h b/libffmpeg-avutil/libavutil/common.h new file mode 120000 index 0000000..01efc23 --- /dev/null +++ b/libffmpeg-avutil/libavutil/common.h @@ -0,0 +1 @@ +../../upstream/libavutil/common.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/cpu.c b/libffmpeg-avutil/libavutil/cpu.c new file mode 120000 index 0000000..be749ec --- /dev/null +++ b/libffmpeg-avutil/libavutil/cpu.c @@ -0,0 +1 @@ +../../upstream/libavutil/cpu.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/cpu.h b/libffmpeg-avutil/libavutil/cpu.h new file mode 120000 index 0000000..16d3ab7 --- /dev/null +++ b/libffmpeg-avutil/libavutil/cpu.h @@ -0,0 +1 @@ +../../upstream/libavutil/cpu.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/cpu_internal.h b/libffmpeg-avutil/libavutil/cpu_internal.h new file mode 120000 index 0000000..03c850e --- /dev/null +++ b/libffmpeg-avutil/libavutil/cpu_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/cpu_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/crc.c b/libffmpeg-avutil/libavutil/crc.c new file mode 120000 index 0000000..da517d7 --- /dev/null +++ b/libffmpeg-avutil/libavutil/crc.c @@ -0,0 +1 @@ +../../upstream/libavutil/crc.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/crc.h b/libffmpeg-avutil/libavutil/crc.h new file mode 120000 index 0000000..ffc4490 --- /dev/null +++ b/libffmpeg-avutil/libavutil/crc.h @@ -0,0 +1 @@ +../../upstream/libavutil/crc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/csp.c b/libffmpeg-avutil/libavutil/csp.c new file mode 120000 index 0000000..5fe7848 --- /dev/null +++ b/libffmpeg-avutil/libavutil/csp.c @@ -0,0 +1 @@ +../../upstream/libavutil/csp.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/csp.h b/libffmpeg-avutil/libavutil/csp.h new file mode 120000 index 0000000..84cb04c --- /dev/null +++ b/libffmpeg-avutil/libavutil/csp.h @@ -0,0 +1 @@ +../../upstream/libavutil/csp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/cuda_check.h b/libffmpeg-avutil/libavutil/cuda_check.h new file mode 120000 index 0000000..0ca6192 --- /dev/null +++ b/libffmpeg-avutil/libavutil/cuda_check.h @@ -0,0 +1 @@ +../../upstream/libavutil/cuda_check.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/des.c b/libffmpeg-avutil/libavutil/des.c new file mode 120000 index 0000000..e7350ea --- /dev/null +++ b/libffmpeg-avutil/libavutil/des.c @@ -0,0 +1 @@ +../../upstream/libavutil/des.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/des.h b/libffmpeg-avutil/libavutil/des.h new file mode 120000 index 0000000..2ca0d0f --- /dev/null +++ b/libffmpeg-avutil/libavutil/des.h @@ -0,0 +1 @@ +../../upstream/libavutil/des.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/detection_bbox.c b/libffmpeg-avutil/libavutil/detection_bbox.c new file mode 120000 index 0000000..75d36d6 --- /dev/null +++ b/libffmpeg-avutil/libavutil/detection_bbox.c @@ -0,0 +1 @@ +../../upstream/libavutil/detection_bbox.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/detection_bbox.h b/libffmpeg-avutil/libavutil/detection_bbox.h new file mode 120000 index 0000000..da0c1cb --- /dev/null +++ b/libffmpeg-avutil/libavutil/detection_bbox.h @@ -0,0 +1 @@ +../../upstream/libavutil/detection_bbox.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/dict.c b/libffmpeg-avutil/libavutil/dict.c new file mode 120000 index 0000000..9a1bd7d --- /dev/null +++ b/libffmpeg-avutil/libavutil/dict.c @@ -0,0 +1 @@ +../../upstream/libavutil/dict.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/dict.h b/libffmpeg-avutil/libavutil/dict.h new file mode 120000 index 0000000..23b4a6e --- /dev/null +++ b/libffmpeg-avutil/libavutil/dict.h @@ -0,0 +1 @@ +../../upstream/libavutil/dict.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/dict_internal.h b/libffmpeg-avutil/libavutil/dict_internal.h new file mode 120000 index 0000000..a0b7310 --- /dev/null +++ b/libffmpeg-avutil/libavutil/dict_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/dict_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/display.c b/libffmpeg-avutil/libavutil/display.c new file mode 120000 index 0000000..aac81b9 --- /dev/null +++ b/libffmpeg-avutil/libavutil/display.c @@ -0,0 +1 @@ +../../upstream/libavutil/display.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/display.h b/libffmpeg-avutil/libavutil/display.h new file mode 120000 index 0000000..00cf97b --- /dev/null +++ b/libffmpeg-avutil/libavutil/display.h @@ -0,0 +1 @@ +../../upstream/libavutil/display.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/dovi_meta.c b/libffmpeg-avutil/libavutil/dovi_meta.c new file mode 120000 index 0000000..a164a13 --- /dev/null +++ b/libffmpeg-avutil/libavutil/dovi_meta.c @@ -0,0 +1 @@ +../../upstream/libavutil/dovi_meta.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/dovi_meta.h b/libffmpeg-avutil/libavutil/dovi_meta.h new file mode 120000 index 0000000..3818ff2 --- /dev/null +++ b/libffmpeg-avutil/libavutil/dovi_meta.h @@ -0,0 +1 @@ +../../upstream/libavutil/dovi_meta.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/downmix_info.c b/libffmpeg-avutil/libavutil/downmix_info.c new file mode 120000 index 0000000..a1f8914 --- /dev/null +++ b/libffmpeg-avutil/libavutil/downmix_info.c @@ -0,0 +1 @@ +../../upstream/libavutil/downmix_info.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/downmix_info.h b/libffmpeg-avutil/libavutil/downmix_info.h new file mode 120000 index 0000000..dc2f3cc --- /dev/null +++ b/libffmpeg-avutil/libavutil/downmix_info.h @@ -0,0 +1 @@ +../../upstream/libavutil/downmix_info.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/dynarray.h b/libffmpeg-avutil/libavutil/dynarray.h new file mode 120000 index 0000000..fc1be38 --- /dev/null +++ b/libffmpeg-avutil/libavutil/dynarray.h @@ -0,0 +1 @@ +../../upstream/libavutil/dynarray.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/emms.h b/libffmpeg-avutil/libavutil/emms.h new file mode 120000 index 0000000..f30aeda --- /dev/null +++ b/libffmpeg-avutil/libavutil/emms.h @@ -0,0 +1 @@ +../../upstream/libavutil/emms.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/encryption_info.c b/libffmpeg-avutil/libavutil/encryption_info.c new file mode 120000 index 0000000..3aaca96 --- /dev/null +++ b/libffmpeg-avutil/libavutil/encryption_info.c @@ -0,0 +1 @@ +../../upstream/libavutil/encryption_info.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/encryption_info.h b/libffmpeg-avutil/libavutil/encryption_info.h new file mode 120000 index 0000000..a98dcf5 --- /dev/null +++ b/libffmpeg-avutil/libavutil/encryption_info.h @@ -0,0 +1 @@ +../../upstream/libavutil/encryption_info.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/error.c b/libffmpeg-avutil/libavutil/error.c new file mode 120000 index 0000000..efd8f9a --- /dev/null +++ b/libffmpeg-avutil/libavutil/error.c @@ -0,0 +1 @@ +../../upstream/libavutil/error.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/error.h b/libffmpeg-avutil/libavutil/error.h new file mode 120000 index 0000000..fa80c16 --- /dev/null +++ b/libffmpeg-avutil/libavutil/error.h @@ -0,0 +1 @@ +../../upstream/libavutil/error.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/eval.c b/libffmpeg-avutil/libavutil/eval.c new file mode 120000 index 0000000..c721e20 --- /dev/null +++ b/libffmpeg-avutil/libavutil/eval.c @@ -0,0 +1 @@ +../../upstream/libavutil/eval.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/eval.h b/libffmpeg-avutil/libavutil/eval.h new file mode 120000 index 0000000..5184167 --- /dev/null +++ b/libffmpeg-avutil/libavutil/eval.h @@ -0,0 +1 @@ +../../upstream/libavutil/eval.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/executor.c b/libffmpeg-avutil/libavutil/executor.c new file mode 120000 index 0000000..d2de660 --- /dev/null +++ b/libffmpeg-avutil/libavutil/executor.c @@ -0,0 +1 @@ +../../upstream/libavutil/executor.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/executor.h b/libffmpeg-avutil/libavutil/executor.h new file mode 120000 index 0000000..a7e1a93 --- /dev/null +++ b/libffmpeg-avutil/libavutil/executor.h @@ -0,0 +1 @@ +../../upstream/libavutil/executor.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/ffmath.h b/libffmpeg-avutil/libavutil/ffmath.h new file mode 120000 index 0000000..a1d0f10 --- /dev/null +++ b/libffmpeg-avutil/libavutil/ffmath.h @@ -0,0 +1 @@ +../../upstream/libavutil/ffmath.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/ffversion.h b/libffmpeg-avutil/libavutil/ffversion.h new file mode 100644 index 0000000..502effb --- /dev/null +++ b/libffmpeg-avutil/libavutil/ffversion.h @@ -0,0 +1,5 @@ +/* Automatically generated by version.sh, do not manually edit! */ +#ifndef AVUTIL_FFVERSION_H +#define AVUTIL_FFVERSION_H +#define FFMPEG_VERSION "N-115551-g4037d5e103" +#endif /* AVUTIL_FFVERSION_H */ diff --git a/libffmpeg-avutil/libavutil/fifo.c b/libffmpeg-avutil/libavutil/fifo.c new file mode 120000 index 0000000..c473031 --- /dev/null +++ b/libffmpeg-avutil/libavutil/fifo.c @@ -0,0 +1 @@ +../../upstream/libavutil/fifo.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/fifo.h b/libffmpeg-avutil/libavutil/fifo.h new file mode 120000 index 0000000..7f7a5b6 --- /dev/null +++ b/libffmpeg-avutil/libavutil/fifo.h @@ -0,0 +1 @@ +../../upstream/libavutil/fifo.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/file.c b/libffmpeg-avutil/libavutil/file.c new file mode 120000 index 0000000..4a79e14 --- /dev/null +++ b/libffmpeg-avutil/libavutil/file.c @@ -0,0 +1 @@ +../../upstream/libavutil/file.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/file.h b/libffmpeg-avutil/libavutil/file.h new file mode 120000 index 0000000..06ba51f --- /dev/null +++ b/libffmpeg-avutil/libavutil/file.h @@ -0,0 +1 @@ +../../upstream/libavutil/file.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/file_open.c b/libffmpeg-avutil/libavutil/file_open.c new file mode 120000 index 0000000..0c6b216 --- /dev/null +++ b/libffmpeg-avutil/libavutil/file_open.c @@ -0,0 +1 @@ +../../upstream/libavutil/file_open.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/file_open.h b/libffmpeg-avutil/libavutil/file_open.h new file mode 120000 index 0000000..45a7733 --- /dev/null +++ b/libffmpeg-avutil/libavutil/file_open.h @@ -0,0 +1 @@ +../../upstream/libavutil/file_open.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/film_grain_params.c b/libffmpeg-avutil/libavutil/film_grain_params.c new file mode 120000 index 0000000..bdb87de --- /dev/null +++ b/libffmpeg-avutil/libavutil/film_grain_params.c @@ -0,0 +1 @@ +../../upstream/libavutil/film_grain_params.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/film_grain_params.h b/libffmpeg-avutil/libavutil/film_grain_params.h new file mode 120000 index 0000000..ae39909 --- /dev/null +++ b/libffmpeg-avutil/libavutil/film_grain_params.h @@ -0,0 +1 @@ +../../upstream/libavutil/film_grain_params.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/fixed_dsp.c b/libffmpeg-avutil/libavutil/fixed_dsp.c new file mode 120000 index 0000000..542a41b --- /dev/null +++ b/libffmpeg-avutil/libavutil/fixed_dsp.c @@ -0,0 +1 @@ +../../upstream/libavutil/fixed_dsp.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/fixed_dsp.h b/libffmpeg-avutil/libavutil/fixed_dsp.h new file mode 120000 index 0000000..23f5ad1 --- /dev/null +++ b/libffmpeg-avutil/libavutil/fixed_dsp.h @@ -0,0 +1 @@ +../../upstream/libavutil/fixed_dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/float2half.h b/libffmpeg-avutil/libavutil/float2half.h new file mode 120000 index 0000000..17dcba9 --- /dev/null +++ b/libffmpeg-avutil/libavutil/float2half.h @@ -0,0 +1 @@ +../../upstream/libavutil/float2half.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/float_dsp.c b/libffmpeg-avutil/libavutil/float_dsp.c new file mode 120000 index 0000000..eb768c8 --- /dev/null +++ b/libffmpeg-avutil/libavutil/float_dsp.c @@ -0,0 +1 @@ +../../upstream/libavutil/float_dsp.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/float_dsp.h b/libffmpeg-avutil/libavutil/float_dsp.h new file mode 120000 index 0000000..f40da51 --- /dev/null +++ b/libffmpeg-avutil/libavutil/float_dsp.h @@ -0,0 +1 @@ +../../upstream/libavutil/float_dsp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/frame.c b/libffmpeg-avutil/libavutil/frame.c new file mode 120000 index 0000000..c829260 --- /dev/null +++ b/libffmpeg-avutil/libavutil/frame.c @@ -0,0 +1 @@ +../../upstream/libavutil/frame.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/frame.h b/libffmpeg-avutil/libavutil/frame.h new file mode 120000 index 0000000..7f01115 --- /dev/null +++ b/libffmpeg-avutil/libavutil/frame.h @@ -0,0 +1 @@ +../../upstream/libavutil/frame.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/getenv_utf8.h b/libffmpeg-avutil/libavutil/getenv_utf8.h new file mode 120000 index 0000000..a457d31 --- /dev/null +++ b/libffmpeg-avutil/libavutil/getenv_utf8.h @@ -0,0 +1 @@ +../../upstream/libavutil/getenv_utf8.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/half2float.h b/libffmpeg-avutil/libavutil/half2float.h new file mode 120000 index 0000000..d76fc16 --- /dev/null +++ b/libffmpeg-avutil/libavutil/half2float.h @@ -0,0 +1 @@ +../../upstream/libavutil/half2float.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hash.c b/libffmpeg-avutil/libavutil/hash.c new file mode 120000 index 0000000..3eedb63 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hash.c @@ -0,0 +1 @@ +../../upstream/libavutil/hash.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hash.h b/libffmpeg-avutil/libavutil/hash.h new file mode 120000 index 0000000..2909e29 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hash.h @@ -0,0 +1 @@ +../../upstream/libavutil/hash.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hdr_dynamic_metadata.c b/libffmpeg-avutil/libavutil/hdr_dynamic_metadata.c new file mode 120000 index 0000000..10d0fee --- /dev/null +++ b/libffmpeg-avutil/libavutil/hdr_dynamic_metadata.c @@ -0,0 +1 @@ +../../upstream/libavutil/hdr_dynamic_metadata.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hdr_dynamic_metadata.h b/libffmpeg-avutil/libavutil/hdr_dynamic_metadata.h new file mode 120000 index 0000000..2a1b867 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hdr_dynamic_metadata.h @@ -0,0 +1 @@ +../../upstream/libavutil/hdr_dynamic_metadata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hdr_dynamic_vivid_metadata.c b/libffmpeg-avutil/libavutil/hdr_dynamic_vivid_metadata.c new file mode 120000 index 0000000..6e44903 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hdr_dynamic_vivid_metadata.c @@ -0,0 +1 @@ +../../upstream/libavutil/hdr_dynamic_vivid_metadata.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hdr_dynamic_vivid_metadata.h b/libffmpeg-avutil/libavutil/hdr_dynamic_vivid_metadata.h new file mode 120000 index 0000000..92f6c86 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hdr_dynamic_vivid_metadata.h @@ -0,0 +1 @@ +../../upstream/libavutil/hdr_dynamic_vivid_metadata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hmac.c b/libffmpeg-avutil/libavutil/hmac.c new file mode 120000 index 0000000..4762947 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hmac.c @@ -0,0 +1 @@ +../../upstream/libavutil/hmac.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hmac.h b/libffmpeg-avutil/libavutil/hmac.h new file mode 120000 index 0000000..1ef13da --- /dev/null +++ b/libffmpeg-avutil/libavutil/hmac.h @@ -0,0 +1 @@ +../../upstream/libavutil/hmac.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext.c b/libffmpeg-avutil/libavutil/hwcontext.c new file mode 120000 index 0000000..ca28743 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext.c @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext.h b/libffmpeg-avutil/libavutil/hwcontext.h new file mode 120000 index 0000000..7f5e66c --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_cuda.h b/libffmpeg-avutil/libavutil/hwcontext_cuda.h new file mode 120000 index 0000000..483f39c --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_cuda.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_cuda.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_cuda_internal.h b/libffmpeg-avutil/libavutil/hwcontext_cuda_internal.h new file mode 120000 index 0000000..0a80836 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_cuda_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_cuda_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_d3d11va.h b/libffmpeg-avutil/libavutil/hwcontext_d3d11va.h new file mode 120000 index 0000000..5b0a93d --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_d3d11va.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_d3d11va.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_d3d12va.h b/libffmpeg-avutil/libavutil/hwcontext_d3d12va.h new file mode 120000 index 0000000..f0a1782 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_d3d12va.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_d3d12va.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_d3d12va_internal.h b/libffmpeg-avutil/libavutil/hwcontext_d3d12va_internal.h new file mode 120000 index 0000000..34bd097 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_d3d12va_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_d3d12va_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_drm.h b/libffmpeg-avutil/libavutil/hwcontext_drm.h new file mode 120000 index 0000000..19a4eb9 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_drm.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_drm.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_dxva2.h b/libffmpeg-avutil/libavutil/hwcontext_dxva2.h new file mode 120000 index 0000000..975fb54 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_dxva2.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_dxva2.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_internal.h b/libffmpeg-avutil/libavutil/hwcontext_internal.h new file mode 120000 index 0000000..5bc76e9 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_mediacodec.h b/libffmpeg-avutil/libavutil/hwcontext_mediacodec.h new file mode 120000 index 0000000..9e9ed1f --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_mediacodec.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_mediacodec.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_opencl.h b/libffmpeg-avutil/libavutil/hwcontext_opencl.h new file mode 120000 index 0000000..4f6a206 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_opencl.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_opencl.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_qsv.h b/libffmpeg-avutil/libavutil/hwcontext_qsv.h new file mode 120000 index 0000000..2607047 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_qsv.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_qsv.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_vaapi.h b/libffmpeg-avutil/libavutil/hwcontext_vaapi.h new file mode 120000 index 0000000..7d7c77b --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_vaapi.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_vaapi.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_vdpau.h b/libffmpeg-avutil/libavutil/hwcontext_vdpau.h new file mode 120000 index 0000000..469c006 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_vdpau.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_vdpau.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_videotoolbox.h b/libffmpeg-avutil/libavutil/hwcontext_videotoolbox.h new file mode 120000 index 0000000..7593668 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_videotoolbox.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_videotoolbox.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/hwcontext_vulkan.h b/libffmpeg-avutil/libavutil/hwcontext_vulkan.h new file mode 120000 index 0000000..e6a4891 --- /dev/null +++ b/libffmpeg-avutil/libavutil/hwcontext_vulkan.h @@ -0,0 +1 @@ +../../upstream/libavutil/hwcontext_vulkan.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/iamf.c b/libffmpeg-avutil/libavutil/iamf.c new file mode 120000 index 0000000..f745c0b --- /dev/null +++ b/libffmpeg-avutil/libavutil/iamf.c @@ -0,0 +1 @@ +../../upstream/libavutil/iamf.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/iamf.h b/libffmpeg-avutil/libavutil/iamf.h new file mode 120000 index 0000000..d2c9dfe --- /dev/null +++ b/libffmpeg-avutil/libavutil/iamf.h @@ -0,0 +1 @@ +../../upstream/libavutil/iamf.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/imgutils.c b/libffmpeg-avutil/libavutil/imgutils.c new file mode 120000 index 0000000..4d4b378 --- /dev/null +++ b/libffmpeg-avutil/libavutil/imgutils.c @@ -0,0 +1 @@ +../../upstream/libavutil/imgutils.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/imgutils.h b/libffmpeg-avutil/libavutil/imgutils.h new file mode 120000 index 0000000..102c71c --- /dev/null +++ b/libffmpeg-avutil/libavutil/imgutils.h @@ -0,0 +1 @@ +../../upstream/libavutil/imgutils.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/imgutils_internal.h b/libffmpeg-avutil/libavutil/imgutils_internal.h new file mode 120000 index 0000000..9f96842 --- /dev/null +++ b/libffmpeg-avutil/libavutil/imgutils_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/imgutils_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/integer.c b/libffmpeg-avutil/libavutil/integer.c new file mode 120000 index 0000000..7d3de8c --- /dev/null +++ b/libffmpeg-avutil/libavutil/integer.c @@ -0,0 +1 @@ +../../upstream/libavutil/integer.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/integer.h b/libffmpeg-avutil/libavutil/integer.h new file mode 120000 index 0000000..6d80c82 --- /dev/null +++ b/libffmpeg-avutil/libavutil/integer.h @@ -0,0 +1 @@ +../../upstream/libavutil/integer.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/internal.h b/libffmpeg-avutil/libavutil/internal.h new file mode 120000 index 0000000..488fe0a --- /dev/null +++ b/libffmpeg-avutil/libavutil/internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/intfloat.h b/libffmpeg-avutil/libavutil/intfloat.h new file mode 120000 index 0000000..a89b4c1 --- /dev/null +++ b/libffmpeg-avutil/libavutil/intfloat.h @@ -0,0 +1 @@ +../../upstream/libavutil/intfloat.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/intmath.c b/libffmpeg-avutil/libavutil/intmath.c new file mode 120000 index 0000000..2c901e8 --- /dev/null +++ b/libffmpeg-avutil/libavutil/intmath.c @@ -0,0 +1 @@ +../../upstream/libavutil/intmath.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/intmath.h b/libffmpeg-avutil/libavutil/intmath.h new file mode 120000 index 0000000..5d74a1b --- /dev/null +++ b/libffmpeg-avutil/libavutil/intmath.h @@ -0,0 +1 @@ +../../upstream/libavutil/intmath.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/intreadwrite.h b/libffmpeg-avutil/libavutil/intreadwrite.h new file mode 120000 index 0000000..18f17f4 --- /dev/null +++ b/libffmpeg-avutil/libavutil/intreadwrite.h @@ -0,0 +1 @@ +../../upstream/libavutil/intreadwrite.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/lfg.c b/libffmpeg-avutil/libavutil/lfg.c new file mode 120000 index 0000000..0206c0c --- /dev/null +++ b/libffmpeg-avutil/libavutil/lfg.c @@ -0,0 +1 @@ +../../upstream/libavutil/lfg.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/lfg.h b/libffmpeg-avutil/libavutil/lfg.h new file mode 120000 index 0000000..df3c389 --- /dev/null +++ b/libffmpeg-avutil/libavutil/lfg.h @@ -0,0 +1 @@ +../../upstream/libavutil/lfg.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/libm.h b/libffmpeg-avutil/libavutil/libm.h new file mode 120000 index 0000000..9c32b7b --- /dev/null +++ b/libffmpeg-avutil/libavutil/libm.h @@ -0,0 +1 @@ +../../upstream/libavutil/libm.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/lls.c b/libffmpeg-avutil/libavutil/lls.c new file mode 120000 index 0000000..2e3d348 --- /dev/null +++ b/libffmpeg-avutil/libavutil/lls.c @@ -0,0 +1 @@ +../../upstream/libavutil/lls.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/lls.h b/libffmpeg-avutil/libavutil/lls.h new file mode 120000 index 0000000..f334b1d --- /dev/null +++ b/libffmpeg-avutil/libavutil/lls.h @@ -0,0 +1 @@ +../../upstream/libavutil/lls.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/log.c b/libffmpeg-avutil/libavutil/log.c new file mode 120000 index 0000000..7627a5c --- /dev/null +++ b/libffmpeg-avutil/libavutil/log.c @@ -0,0 +1 @@ +../../upstream/libavutil/log.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/log.h b/libffmpeg-avutil/libavutil/log.h new file mode 120000 index 0000000..08a5b34 --- /dev/null +++ b/libffmpeg-avutil/libavutil/log.h @@ -0,0 +1 @@ +../../upstream/libavutil/log.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/log2_tab.c b/libffmpeg-avutil/libavutil/log2_tab.c new file mode 120000 index 0000000..e471fe3 --- /dev/null +++ b/libffmpeg-avutil/libavutil/log2_tab.c @@ -0,0 +1 @@ +../../upstream/libavutil/log2_tab.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/lzo.c b/libffmpeg-avutil/libavutil/lzo.c new file mode 120000 index 0000000..6171d3f --- /dev/null +++ b/libffmpeg-avutil/libavutil/lzo.c @@ -0,0 +1 @@ +../../upstream/libavutil/lzo.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/lzo.h b/libffmpeg-avutil/libavutil/lzo.h new file mode 120000 index 0000000..846f740 --- /dev/null +++ b/libffmpeg-avutil/libavutil/lzo.h @@ -0,0 +1 @@ +../../upstream/libavutil/lzo.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/macos_kperf.h b/libffmpeg-avutil/libavutil/macos_kperf.h new file mode 120000 index 0000000..3ac3ade --- /dev/null +++ b/libffmpeg-avutil/libavutil/macos_kperf.h @@ -0,0 +1 @@ +../../upstream/libavutil/macos_kperf.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/macros.h b/libffmpeg-avutil/libavutil/macros.h new file mode 120000 index 0000000..f1e5153 --- /dev/null +++ b/libffmpeg-avutil/libavutil/macros.h @@ -0,0 +1 @@ +../../upstream/libavutil/macros.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/mastering_display_metadata.c b/libffmpeg-avutil/libavutil/mastering_display_metadata.c new file mode 120000 index 0000000..1026439 --- /dev/null +++ b/libffmpeg-avutil/libavutil/mastering_display_metadata.c @@ -0,0 +1 @@ +../../upstream/libavutil/mastering_display_metadata.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/mastering_display_metadata.h b/libffmpeg-avutil/libavutil/mastering_display_metadata.h new file mode 120000 index 0000000..a1bfeb0 --- /dev/null +++ b/libffmpeg-avutil/libavutil/mastering_display_metadata.h @@ -0,0 +1 @@ +../../upstream/libavutil/mastering_display_metadata.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/mathematics.c b/libffmpeg-avutil/libavutil/mathematics.c new file mode 120000 index 0000000..f25229f --- /dev/null +++ b/libffmpeg-avutil/libavutil/mathematics.c @@ -0,0 +1 @@ +../../upstream/libavutil/mathematics.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/mathematics.h b/libffmpeg-avutil/libavutil/mathematics.h new file mode 120000 index 0000000..5613790 --- /dev/null +++ b/libffmpeg-avutil/libavutil/mathematics.h @@ -0,0 +1 @@ +../../upstream/libavutil/mathematics.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/md5.c b/libffmpeg-avutil/libavutil/md5.c new file mode 120000 index 0000000..9c28af9 --- /dev/null +++ b/libffmpeg-avutil/libavutil/md5.c @@ -0,0 +1 @@ +../../upstream/libavutil/md5.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/md5.h b/libffmpeg-avutil/libavutil/md5.h new file mode 120000 index 0000000..c15580a --- /dev/null +++ b/libffmpeg-avutil/libavutil/md5.h @@ -0,0 +1 @@ +../../upstream/libavutil/md5.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/mem.c b/libffmpeg-avutil/libavutil/mem.c new file mode 120000 index 0000000..486151c --- /dev/null +++ b/libffmpeg-avutil/libavutil/mem.c @@ -0,0 +1 @@ +../../upstream/libavutil/mem.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/mem.h b/libffmpeg-avutil/libavutil/mem.h new file mode 120000 index 0000000..7819e1f --- /dev/null +++ b/libffmpeg-avutil/libavutil/mem.h @@ -0,0 +1 @@ +../../upstream/libavutil/mem.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/mem_internal.h b/libffmpeg-avutil/libavutil/mem_internal.h new file mode 120000 index 0000000..439ebb2 --- /dev/null +++ b/libffmpeg-avutil/libavutil/mem_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/mem_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/motion_vector.h b/libffmpeg-avutil/libavutil/motion_vector.h new file mode 120000 index 0000000..5515c69 --- /dev/null +++ b/libffmpeg-avutil/libavutil/motion_vector.h @@ -0,0 +1 @@ +../../upstream/libavutil/motion_vector.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/murmur3.c b/libffmpeg-avutil/libavutil/murmur3.c new file mode 120000 index 0000000..e4244ca --- /dev/null +++ b/libffmpeg-avutil/libavutil/murmur3.c @@ -0,0 +1 @@ +../../upstream/libavutil/murmur3.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/murmur3.h b/libffmpeg-avutil/libavutil/murmur3.h new file mode 120000 index 0000000..c9dbf68 --- /dev/null +++ b/libffmpeg-avutil/libavutil/murmur3.h @@ -0,0 +1 @@ +../../upstream/libavutil/murmur3.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/objc.h b/libffmpeg-avutil/libavutil/objc.h new file mode 120000 index 0000000..8f69cc4 --- /dev/null +++ b/libffmpeg-avutil/libavutil/objc.h @@ -0,0 +1 @@ +../../upstream/libavutil/objc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/opt.c b/libffmpeg-avutil/libavutil/opt.c new file mode 120000 index 0000000..ee7914c --- /dev/null +++ b/libffmpeg-avutil/libavutil/opt.c @@ -0,0 +1 @@ +../../upstream/libavutil/opt.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/opt.h b/libffmpeg-avutil/libavutil/opt.h new file mode 120000 index 0000000..85d4f88 --- /dev/null +++ b/libffmpeg-avutil/libavutil/opt.h @@ -0,0 +1 @@ +../../upstream/libavutil/opt.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/parseutils.c b/libffmpeg-avutil/libavutil/parseutils.c new file mode 120000 index 0000000..9a7b537 --- /dev/null +++ b/libffmpeg-avutil/libavutil/parseutils.c @@ -0,0 +1 @@ +../../upstream/libavutil/parseutils.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/parseutils.h b/libffmpeg-avutil/libavutil/parseutils.h new file mode 120000 index 0000000..8c46c0a --- /dev/null +++ b/libffmpeg-avutil/libavutil/parseutils.h @@ -0,0 +1 @@ +../../upstream/libavutil/parseutils.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/pca.c b/libffmpeg-avutil/libavutil/pca.c new file mode 120000 index 0000000..d33d5ac --- /dev/null +++ b/libffmpeg-avutil/libavutil/pca.c @@ -0,0 +1 @@ +../../upstream/libavutil/pca.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/pca.h b/libffmpeg-avutil/libavutil/pca.h new file mode 120000 index 0000000..adf3da5 --- /dev/null +++ b/libffmpeg-avutil/libavutil/pca.h @@ -0,0 +1 @@ +../../upstream/libavutil/pca.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/pixdesc.c b/libffmpeg-avutil/libavutil/pixdesc.c new file mode 120000 index 0000000..a509066 --- /dev/null +++ b/libffmpeg-avutil/libavutil/pixdesc.c @@ -0,0 +1 @@ +../../upstream/libavutil/pixdesc.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/pixdesc.h b/libffmpeg-avutil/libavutil/pixdesc.h new file mode 120000 index 0000000..5f06691 --- /dev/null +++ b/libffmpeg-avutil/libavutil/pixdesc.h @@ -0,0 +1 @@ +../../upstream/libavutil/pixdesc.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/pixelutils.c b/libffmpeg-avutil/libavutil/pixelutils.c new file mode 120000 index 0000000..c1bfeff --- /dev/null +++ b/libffmpeg-avutil/libavutil/pixelutils.c @@ -0,0 +1 @@ +../../upstream/libavutil/pixelutils.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/pixelutils.h b/libffmpeg-avutil/libavutil/pixelutils.h new file mode 120000 index 0000000..b9daca1 --- /dev/null +++ b/libffmpeg-avutil/libavutil/pixelutils.h @@ -0,0 +1 @@ +../../upstream/libavutil/pixelutils.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/pixfmt.h b/libffmpeg-avutil/libavutil/pixfmt.h new file mode 120000 index 0000000..66634df --- /dev/null +++ b/libffmpeg-avutil/libavutil/pixfmt.h @@ -0,0 +1 @@ +../../upstream/libavutil/pixfmt.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/qsort.h b/libffmpeg-avutil/libavutil/qsort.h new file mode 120000 index 0000000..f18c78e --- /dev/null +++ b/libffmpeg-avutil/libavutil/qsort.h @@ -0,0 +1 @@ +../../upstream/libavutil/qsort.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/random_seed.c b/libffmpeg-avutil/libavutil/random_seed.c new file mode 120000 index 0000000..31eb27d --- /dev/null +++ b/libffmpeg-avutil/libavutil/random_seed.c @@ -0,0 +1 @@ +../../upstream/libavutil/random_seed.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/random_seed.h b/libffmpeg-avutil/libavutil/random_seed.h new file mode 120000 index 0000000..f521e1d --- /dev/null +++ b/libffmpeg-avutil/libavutil/random_seed.h @@ -0,0 +1 @@ +../../upstream/libavutil/random_seed.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/rational.c b/libffmpeg-avutil/libavutil/rational.c new file mode 120000 index 0000000..a77a2a4 --- /dev/null +++ b/libffmpeg-avutil/libavutil/rational.c @@ -0,0 +1 @@ +../../upstream/libavutil/rational.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/rational.h b/libffmpeg-avutil/libavutil/rational.h new file mode 120000 index 0000000..b9e3019 --- /dev/null +++ b/libffmpeg-avutil/libavutil/rational.h @@ -0,0 +1 @@ +../../upstream/libavutil/rational.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/rc4.c b/libffmpeg-avutil/libavutil/rc4.c new file mode 120000 index 0000000..6a17325 --- /dev/null +++ b/libffmpeg-avutil/libavutil/rc4.c @@ -0,0 +1 @@ +../../upstream/libavutil/rc4.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/rc4.h b/libffmpeg-avutil/libavutil/rc4.h new file mode 120000 index 0000000..22fd589 --- /dev/null +++ b/libffmpeg-avutil/libavutil/rc4.h @@ -0,0 +1 @@ +../../upstream/libavutil/rc4.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/replaygain.h b/libffmpeg-avutil/libavutil/replaygain.h new file mode 120000 index 0000000..f065536 --- /dev/null +++ b/libffmpeg-avutil/libavutil/replaygain.h @@ -0,0 +1 @@ +../../upstream/libavutil/replaygain.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/reverse.c b/libffmpeg-avutil/libavutil/reverse.c new file mode 120000 index 0000000..3a4a302 --- /dev/null +++ b/libffmpeg-avutil/libavutil/reverse.c @@ -0,0 +1 @@ +../../upstream/libavutil/reverse.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/reverse.h b/libffmpeg-avutil/libavutil/reverse.h new file mode 120000 index 0000000..46729cc --- /dev/null +++ b/libffmpeg-avutil/libavutil/reverse.h @@ -0,0 +1 @@ +../../upstream/libavutil/reverse.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/ripemd.c b/libffmpeg-avutil/libavutil/ripemd.c new file mode 120000 index 0000000..abff1ba --- /dev/null +++ b/libffmpeg-avutil/libavutil/ripemd.c @@ -0,0 +1 @@ +../../upstream/libavutil/ripemd.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/ripemd.h b/libffmpeg-avutil/libavutil/ripemd.h new file mode 120000 index 0000000..98d8999 --- /dev/null +++ b/libffmpeg-avutil/libavutil/ripemd.h @@ -0,0 +1 @@ +../../upstream/libavutil/ripemd.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/samplefmt.c b/libffmpeg-avutil/libavutil/samplefmt.c new file mode 120000 index 0000000..d7f6be7 --- /dev/null +++ b/libffmpeg-avutil/libavutil/samplefmt.c @@ -0,0 +1 @@ +../../upstream/libavutil/samplefmt.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/samplefmt.h b/libffmpeg-avutil/libavutil/samplefmt.h new file mode 120000 index 0000000..e527ea7 --- /dev/null +++ b/libffmpeg-avutil/libavutil/samplefmt.h @@ -0,0 +1 @@ +../../upstream/libavutil/samplefmt.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/sfc64.h b/libffmpeg-avutil/libavutil/sfc64.h new file mode 120000 index 0000000..71b86d7 --- /dev/null +++ b/libffmpeg-avutil/libavutil/sfc64.h @@ -0,0 +1 @@ +../../upstream/libavutil/sfc64.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/sha.c b/libffmpeg-avutil/libavutil/sha.c new file mode 120000 index 0000000..921209a --- /dev/null +++ b/libffmpeg-avutil/libavutil/sha.c @@ -0,0 +1 @@ +../../upstream/libavutil/sha.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/sha.h b/libffmpeg-avutil/libavutil/sha.h new file mode 120000 index 0000000..d372e65 --- /dev/null +++ b/libffmpeg-avutil/libavutil/sha.h @@ -0,0 +1 @@ +../../upstream/libavutil/sha.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/sha512.c b/libffmpeg-avutil/libavutil/sha512.c new file mode 120000 index 0000000..1b4b35f --- /dev/null +++ b/libffmpeg-avutil/libavutil/sha512.c @@ -0,0 +1 @@ +../../upstream/libavutil/sha512.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/sha512.h b/libffmpeg-avutil/libavutil/sha512.h new file mode 120000 index 0000000..d3e230c --- /dev/null +++ b/libffmpeg-avutil/libavutil/sha512.h @@ -0,0 +1 @@ +../../upstream/libavutil/sha512.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/slicethread.c b/libffmpeg-avutil/libavutil/slicethread.c new file mode 120000 index 0000000..d2e0614 --- /dev/null +++ b/libffmpeg-avutil/libavutil/slicethread.c @@ -0,0 +1 @@ +../../upstream/libavutil/slicethread.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/slicethread.h b/libffmpeg-avutil/libavutil/slicethread.h new file mode 120000 index 0000000..664ac90 --- /dev/null +++ b/libffmpeg-avutil/libavutil/slicethread.h @@ -0,0 +1 @@ +../../upstream/libavutil/slicethread.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/softfloat.h b/libffmpeg-avutil/libavutil/softfloat.h new file mode 120000 index 0000000..bd0e545 --- /dev/null +++ b/libffmpeg-avutil/libavutil/softfloat.h @@ -0,0 +1 @@ +../../upstream/libavutil/softfloat.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/softfloat_ieee754.h b/libffmpeg-avutil/libavutil/softfloat_ieee754.h new file mode 120000 index 0000000..67f1d7b --- /dev/null +++ b/libffmpeg-avutil/libavutil/softfloat_ieee754.h @@ -0,0 +1 @@ +../../upstream/libavutil/softfloat_ieee754.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/softfloat_tables.h b/libffmpeg-avutil/libavutil/softfloat_tables.h new file mode 120000 index 0000000..6f7e9e2 --- /dev/null +++ b/libffmpeg-avutil/libavutil/softfloat_tables.h @@ -0,0 +1 @@ +../../upstream/libavutil/softfloat_tables.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/spherical.c b/libffmpeg-avutil/libavutil/spherical.c new file mode 120000 index 0000000..7008f43 --- /dev/null +++ b/libffmpeg-avutil/libavutil/spherical.c @@ -0,0 +1 @@ +../../upstream/libavutil/spherical.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/spherical.h b/libffmpeg-avutil/libavutil/spherical.h new file mode 120000 index 0000000..21c8551 --- /dev/null +++ b/libffmpeg-avutil/libavutil/spherical.h @@ -0,0 +1 @@ +../../upstream/libavutil/spherical.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/stereo3d.c b/libffmpeg-avutil/libavutil/stereo3d.c new file mode 120000 index 0000000..f63e537 --- /dev/null +++ b/libffmpeg-avutil/libavutil/stereo3d.c @@ -0,0 +1 @@ +../../upstream/libavutil/stereo3d.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/stereo3d.h b/libffmpeg-avutil/libavutil/stereo3d.h new file mode 120000 index 0000000..5fee85a --- /dev/null +++ b/libffmpeg-avutil/libavutil/stereo3d.h @@ -0,0 +1 @@ +../../upstream/libavutil/stereo3d.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tablegen.h b/libffmpeg-avutil/libavutil/tablegen.h new file mode 120000 index 0000000..08e6f3f --- /dev/null +++ b/libffmpeg-avutil/libavutil/tablegen.h @@ -0,0 +1 @@ +../../upstream/libavutil/tablegen.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tea.c b/libffmpeg-avutil/libavutil/tea.c new file mode 120000 index 0000000..88511f9 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tea.c @@ -0,0 +1 @@ +../../upstream/libavutil/tea.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tea.h b/libffmpeg-avutil/libavutil/tea.h new file mode 120000 index 0000000..a06c357 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tea.h @@ -0,0 +1 @@ +../../upstream/libavutil/tea.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/adler32.c b/libffmpeg-avutil/libavutil/tests/adler32.c new file mode 120000 index 0000000..51d77ee --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/adler32.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/adler32.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/aes.c b/libffmpeg-avutil/libavutil/tests/aes.c new file mode 120000 index 0000000..4afb94f --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/aes.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/aes.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/aes_ctr.c b/libffmpeg-avutil/libavutil/tests/aes_ctr.c new file mode 120000 index 0000000..e72d37e --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/aes_ctr.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/aes_ctr.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/audio_fifo.c b/libffmpeg-avutil/libavutil/tests/audio_fifo.c new file mode 120000 index 0000000..0e5977a --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/audio_fifo.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/audio_fifo.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/avstring.c b/libffmpeg-avutil/libavutil/tests/avstring.c new file mode 120000 index 0000000..52d7222 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/avstring.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/avstring.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/base64.c b/libffmpeg-avutil/libavutil/tests/base64.c new file mode 120000 index 0000000..00c2141 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/base64.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/base64.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/blowfish.c b/libffmpeg-avutil/libavutil/tests/blowfish.c new file mode 120000 index 0000000..d28ddb8 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/blowfish.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/blowfish.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/bprint.c b/libffmpeg-avutil/libavutil/tests/bprint.c new file mode 120000 index 0000000..43ae4a2 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/bprint.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/bprint.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/camellia.c b/libffmpeg-avutil/libavutil/tests/camellia.c new file mode 120000 index 0000000..210bb3a --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/camellia.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/camellia.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/cast5.c b/libffmpeg-avutil/libavutil/tests/cast5.c new file mode 120000 index 0000000..78b8aa2 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/cast5.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/cast5.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/channel_layout.c b/libffmpeg-avutil/libavutil/tests/channel_layout.c new file mode 120000 index 0000000..4754dc0 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/channel_layout.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/channel_layout.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/color_utils.c b/libffmpeg-avutil/libavutil/tests/color_utils.c new file mode 120000 index 0000000..bedf805 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/color_utils.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/color_utils.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/cpu.c b/libffmpeg-avutil/libavutil/tests/cpu.c new file mode 120000 index 0000000..2a99390 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/cpu.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/cpu.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/cpu_init.c b/libffmpeg-avutil/libavutil/tests/cpu_init.c new file mode 120000 index 0000000..fc3c423 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/cpu_init.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/cpu_init.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/crc.c b/libffmpeg-avutil/libavutil/tests/crc.c new file mode 120000 index 0000000..a71afa0 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/crc.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/crc.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/des.c b/libffmpeg-avutil/libavutil/tests/des.c new file mode 120000 index 0000000..a6d73c3 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/des.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/des.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/dict.c b/libffmpeg-avutil/libavutil/tests/dict.c new file mode 120000 index 0000000..5d22bfa --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/dict.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/dict.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/display.c b/libffmpeg-avutil/libavutil/tests/display.c new file mode 120000 index 0000000..c37a00b --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/display.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/display.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/encryption_info.c b/libffmpeg-avutil/libavutil/tests/encryption_info.c new file mode 120000 index 0000000..4f095e1 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/encryption_info.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/encryption_info.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/error.c b/libffmpeg-avutil/libavutil/tests/error.c new file mode 120000 index 0000000..4fdd973 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/error.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/error.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/eval.c b/libffmpeg-avutil/libavutil/tests/eval.c new file mode 120000 index 0000000..04ba006 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/eval.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/eval.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/fifo.c b/libffmpeg-avutil/libavutil/tests/fifo.c new file mode 120000 index 0000000..f282bc4 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/fifo.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/fifo.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/file b/libffmpeg-avutil/libavutil/tests/file new file mode 100755 index 0000000..7d3fcb8 Binary files /dev/null and b/libffmpeg-avutil/libavutil/tests/file differ diff --git a/libffmpeg-avutil/libavutil/tests/file.disabled b/libffmpeg-avutil/libavutil/tests/file.disabled new file mode 120000 index 0000000..f70c413 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/file.disabled @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/file.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/hash.c b/libffmpeg-avutil/libavutil/tests/hash.c new file mode 120000 index 0000000..21868ef --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/hash.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/hash.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/hmac.c b/libffmpeg-avutil/libavutil/tests/hmac.c new file mode 120000 index 0000000..c3d4ee5 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/hmac.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/hmac.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/hwdevice.c b/libffmpeg-avutil/libavutil/tests/hwdevice.c new file mode 120000 index 0000000..0fba4ca --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/hwdevice.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/hwdevice.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/imgutils.c b/libffmpeg-avutil/libavutil/tests/imgutils.c new file mode 120000 index 0000000..1ccaa89 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/imgutils.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/imgutils.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/integer.c b/libffmpeg-avutil/libavutil/tests/integer.c new file mode 120000 index 0000000..fc60b7e --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/integer.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/integer.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/lfg.c b/libffmpeg-avutil/libavutil/tests/lfg.c new file mode 120000 index 0000000..e0ff0fe --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/lfg.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/lfg.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/lls.c b/libffmpeg-avutil/libavutil/tests/lls.c new file mode 120000 index 0000000..ed2d664 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/lls.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/lls.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/log.c b/libffmpeg-avutil/libavutil/tests/log.c new file mode 120000 index 0000000..c3dec08 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/log.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/log.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/lzo.unused b/libffmpeg-avutil/libavutil/tests/lzo.unused new file mode 120000 index 0000000..5163eac --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/lzo.unused @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/lzo.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/md5.c b/libffmpeg-avutil/libavutil/tests/md5.c new file mode 120000 index 0000000..7d0f218 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/md5.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/md5.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/murmur3.c b/libffmpeg-avutil/libavutil/tests/murmur3.c new file mode 120000 index 0000000..03cbd37 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/murmur3.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/murmur3.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/opt.c b/libffmpeg-avutil/libavutil/tests/opt.c new file mode 120000 index 0000000..b1566b1 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/opt.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/opt.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/parseutils.c b/libffmpeg-avutil/libavutil/tests/parseutils.c new file mode 120000 index 0000000..f93afdd --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/parseutils.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/parseutils.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/pca.c b/libffmpeg-avutil/libavutil/tests/pca.c new file mode 120000 index 0000000..87e34be --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/pca.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/pca.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/pixdesc.c b/libffmpeg-avutil/libavutil/tests/pixdesc.c new file mode 120000 index 0000000..7d8ec52 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/pixdesc.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/pixdesc.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/pixelutils.c b/libffmpeg-avutil/libavutil/tests/pixelutils.c new file mode 120000 index 0000000..3039244 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/pixelutils.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/pixelutils.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/pixfmt_best.c b/libffmpeg-avutil/libavutil/tests/pixfmt_best.c new file mode 120000 index 0000000..797ad7e --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/pixfmt_best.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/pixfmt_best.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/random_seed.c b/libffmpeg-avutil/libavutil/tests/random_seed.c new file mode 120000 index 0000000..338ba53 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/random_seed.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/random_seed.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/rational.c b/libffmpeg-avutil/libavutil/tests/rational.c new file mode 120000 index 0000000..546efaf --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/rational.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/rational.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/ripemd.c b/libffmpeg-avutil/libavutil/tests/ripemd.c new file mode 120000 index 0000000..488b010 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/ripemd.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/ripemd.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/sha.c b/libffmpeg-avutil/libavutil/tests/sha.c new file mode 120000 index 0000000..f24b783 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/sha.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/sha.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/sha512.c b/libffmpeg-avutil/libavutil/tests/sha512.c new file mode 120000 index 0000000..9027465 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/sha512.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/sha512.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/side_data_array.c b/libffmpeg-avutil/libavutil/tests/side_data_array.c new file mode 120000 index 0000000..be812cc --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/side_data_array.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/side_data_array.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/softfloat.c b/libffmpeg-avutil/libavutil/tests/softfloat.c new file mode 120000 index 0000000..ee4e000 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/softfloat.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/softfloat.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/tea.c b/libffmpeg-avutil/libavutil/tests/tea.c new file mode 120000 index 0000000..2297816 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/tea.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/tea.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/tree.c b/libffmpeg-avutil/libavutil/tests/tree.c new file mode 120000 index 0000000..8baf4f0 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/tree.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/tree.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/twofish.c b/libffmpeg-avutil/libavutil/tests/twofish.c new file mode 120000 index 0000000..3138aec --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/twofish.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/twofish.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/utf8 b/libffmpeg-avutil/libavutil/tests/utf8 new file mode 100755 index 0000000..85c25fc Binary files /dev/null and b/libffmpeg-avutil/libavutil/tests/utf8 differ diff --git a/libffmpeg-avutil/libavutil/tests/utf8.unused b/libffmpeg-avutil/libavutil/tests/utf8.unused new file mode 120000 index 0000000..6538eef --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/utf8.unused @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/utf8.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/uuid.c b/libffmpeg-avutil/libavutil/tests/uuid.c new file mode 120000 index 0000000..794bd32 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/uuid.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/uuid.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tests/xtea.c b/libffmpeg-avutil/libavutil/tests/xtea.c new file mode 120000 index 0000000..b2b4791 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tests/xtea.c @@ -0,0 +1 @@ +../../../upstream/libavutil/tests/xtea.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/thread.h b/libffmpeg-avutil/libavutil/thread.h new file mode 120000 index 0000000..7970ea2 --- /dev/null +++ b/libffmpeg-avutil/libavutil/thread.h @@ -0,0 +1 @@ +../../upstream/libavutil/thread.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/threadmessage.c b/libffmpeg-avutil/libavutil/threadmessage.c new file mode 120000 index 0000000..6371ffa --- /dev/null +++ b/libffmpeg-avutil/libavutil/threadmessage.c @@ -0,0 +1 @@ +../../upstream/libavutil/threadmessage.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/threadmessage.h b/libffmpeg-avutil/libavutil/threadmessage.h new file mode 120000 index 0000000..df1833c --- /dev/null +++ b/libffmpeg-avutil/libavutil/threadmessage.h @@ -0,0 +1 @@ +../../upstream/libavutil/threadmessage.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/time.c b/libffmpeg-avutil/libavutil/time.c new file mode 120000 index 0000000..cf5005d --- /dev/null +++ b/libffmpeg-avutil/libavutil/time.c @@ -0,0 +1 @@ +../../upstream/libavutil/time.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/time.h b/libffmpeg-avutil/libavutil/time.h new file mode 120000 index 0000000..8054463 --- /dev/null +++ b/libffmpeg-avutil/libavutil/time.h @@ -0,0 +1 @@ +../../upstream/libavutil/time.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/time_internal.h b/libffmpeg-avutil/libavutil/time_internal.h new file mode 120000 index 0000000..e7ecd9f --- /dev/null +++ b/libffmpeg-avutil/libavutil/time_internal.h @@ -0,0 +1 @@ +../../upstream/libavutil/time_internal.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/timecode.c b/libffmpeg-avutil/libavutil/timecode.c new file mode 120000 index 0000000..edd536c --- /dev/null +++ b/libffmpeg-avutil/libavutil/timecode.c @@ -0,0 +1 @@ +../../upstream/libavutil/timecode.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/timecode.h b/libffmpeg-avutil/libavutil/timecode.h new file mode 120000 index 0000000..9098108 --- /dev/null +++ b/libffmpeg-avutil/libavutil/timecode.h @@ -0,0 +1 @@ +../../upstream/libavutil/timecode.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/timer.h b/libffmpeg-avutil/libavutil/timer.h new file mode 120000 index 0000000..b796e01 --- /dev/null +++ b/libffmpeg-avutil/libavutil/timer.h @@ -0,0 +1 @@ +../../upstream/libavutil/timer.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/timestamp.c b/libffmpeg-avutil/libavutil/timestamp.c new file mode 120000 index 0000000..48626a5 --- /dev/null +++ b/libffmpeg-avutil/libavutil/timestamp.c @@ -0,0 +1 @@ +../../upstream/libavutil/timestamp.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/timestamp.h b/libffmpeg-avutil/libavutil/timestamp.h new file mode 120000 index 0000000..ca2038a --- /dev/null +++ b/libffmpeg-avutil/libavutil/timestamp.h @@ -0,0 +1 @@ +../../upstream/libavutil/timestamp.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tree.c b/libffmpeg-avutil/libavutil/tree.c new file mode 120000 index 0000000..3da2a6f --- /dev/null +++ b/libffmpeg-avutil/libavutil/tree.c @@ -0,0 +1 @@ +../../upstream/libavutil/tree.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tree.h b/libffmpeg-avutil/libavutil/tree.h new file mode 120000 index 0000000..c404d97 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tree.h @@ -0,0 +1 @@ +../../upstream/libavutil/tree.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/twofish.c b/libffmpeg-avutil/libavutil/twofish.c new file mode 120000 index 0000000..28bb57b --- /dev/null +++ b/libffmpeg-avutil/libavutil/twofish.c @@ -0,0 +1 @@ +../../upstream/libavutil/twofish.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/twofish.h b/libffmpeg-avutil/libavutil/twofish.h new file mode 120000 index 0000000..cfcd9e7 --- /dev/null +++ b/libffmpeg-avutil/libavutil/twofish.h @@ -0,0 +1 @@ +../../upstream/libavutil/twofish.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tx.c b/libffmpeg-avutil/libavutil/tx.c new file mode 120000 index 0000000..9e281c9 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tx.c @@ -0,0 +1 @@ +../../upstream/libavutil/tx.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tx.h b/libffmpeg-avutil/libavutil/tx.h new file mode 120000 index 0000000..a415960 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tx.h @@ -0,0 +1 @@ +../../upstream/libavutil/tx.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tx_double.c b/libffmpeg-avutil/libavutil/tx_double.c new file mode 120000 index 0000000..583d548 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tx_double.c @@ -0,0 +1 @@ +../../upstream/libavutil/tx_double.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tx_float.c b/libffmpeg-avutil/libavutil/tx_float.c new file mode 120000 index 0000000..4293bf5 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tx_float.c @@ -0,0 +1 @@ +../../upstream/libavutil/tx_float.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tx_int32.c b/libffmpeg-avutil/libavutil/tx_int32.c new file mode 120000 index 0000000..b8ee315 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tx_int32.c @@ -0,0 +1 @@ +../../upstream/libavutil/tx_int32.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tx_priv.h b/libffmpeg-avutil/libavutil/tx_priv.h new file mode 120000 index 0000000..541df38 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tx_priv.h @@ -0,0 +1 @@ +../../upstream/libavutil/tx_priv.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/tx_template.c b/libffmpeg-avutil/libavutil/tx_template.c new file mode 120000 index 0000000..3804da7 --- /dev/null +++ b/libffmpeg-avutil/libavutil/tx_template.c @@ -0,0 +1 @@ +../../upstream/libavutil/tx_template.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/utils.c b/libffmpeg-avutil/libavutil/utils.c new file mode 120000 index 0000000..13d7637 --- /dev/null +++ b/libffmpeg-avutil/libavutil/utils.c @@ -0,0 +1 @@ +../../upstream/libavutil/utils.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/uuid.c b/libffmpeg-avutil/libavutil/uuid.c new file mode 120000 index 0000000..90ab2ce --- /dev/null +++ b/libffmpeg-avutil/libavutil/uuid.c @@ -0,0 +1 @@ +../../upstream/libavutil/uuid.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/uuid.h b/libffmpeg-avutil/libavutil/uuid.h new file mode 120000 index 0000000..012a52d --- /dev/null +++ b/libffmpeg-avutil/libavutil/uuid.h @@ -0,0 +1 @@ +../../upstream/libavutil/uuid.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/version.c b/libffmpeg-avutil/libavutil/version.c new file mode 120000 index 0000000..7a57c38 --- /dev/null +++ b/libffmpeg-avutil/libavutil/version.c @@ -0,0 +1 @@ +../../upstream/libavutil/version.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/version.h b/libffmpeg-avutil/libavutil/version.h new file mode 120000 index 0000000..311b383 --- /dev/null +++ b/libffmpeg-avutil/libavutil/version.h @@ -0,0 +1 @@ +../../upstream/libavutil/version.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/version_major.h b/libffmpeg-avutil/libavutil/version_major.h new file mode 120000 index 0000000..2f89277 --- /dev/null +++ b/libffmpeg-avutil/libavutil/version_major.h @@ -0,0 +1 @@ +../../upstream/libavutil/version_major.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/video_enc_params.c b/libffmpeg-avutil/libavutil/video_enc_params.c new file mode 120000 index 0000000..d05efe8 --- /dev/null +++ b/libffmpeg-avutil/libavutil/video_enc_params.c @@ -0,0 +1 @@ +../../upstream/libavutil/video_enc_params.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/video_enc_params.h b/libffmpeg-avutil/libavutil/video_enc_params.h new file mode 120000 index 0000000..904a943 --- /dev/null +++ b/libffmpeg-avutil/libavutil/video_enc_params.h @@ -0,0 +1 @@ +../../upstream/libavutil/video_enc_params.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/video_hint.c b/libffmpeg-avutil/libavutil/video_hint.c new file mode 120000 index 0000000..5b149f0 --- /dev/null +++ b/libffmpeg-avutil/libavutil/video_hint.c @@ -0,0 +1 @@ +../../upstream/libavutil/video_hint.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/video_hint.h b/libffmpeg-avutil/libavutil/video_hint.h new file mode 120000 index 0000000..a4c4e7a --- /dev/null +++ b/libffmpeg-avutil/libavutil/video_hint.h @@ -0,0 +1 @@ +../../upstream/libavutil/video_hint.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/vulkan.h b/libffmpeg-avutil/libavutil/vulkan.h new file mode 120000 index 0000000..b7e3314 --- /dev/null +++ b/libffmpeg-avutil/libavutil/vulkan.h @@ -0,0 +1 @@ +../../upstream/libavutil/vulkan.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/vulkan_functions.h b/libffmpeg-avutil/libavutil/vulkan_functions.h new file mode 120000 index 0000000..244f5bd --- /dev/null +++ b/libffmpeg-avutil/libavutil/vulkan_functions.h @@ -0,0 +1 @@ +../../upstream/libavutil/vulkan_functions.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/vulkan_loader.h b/libffmpeg-avutil/libavutil/vulkan_loader.h new file mode 120000 index 0000000..a940c0b --- /dev/null +++ b/libffmpeg-avutil/libavutil/vulkan_loader.h @@ -0,0 +1 @@ +../../upstream/libavutil/vulkan_loader.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/wchar_filename.h b/libffmpeg-avutil/libavutil/wchar_filename.h new file mode 120000 index 0000000..c2add70 --- /dev/null +++ b/libffmpeg-avutil/libavutil/wchar_filename.h @@ -0,0 +1 @@ +../../upstream/libavutil/wchar_filename.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/x86 b/libffmpeg-avutil/libavutil/x86 new file mode 120000 index 0000000..18dcdf5 --- /dev/null +++ b/libffmpeg-avutil/libavutil/x86 @@ -0,0 +1 @@ +../../upstream/libavutil/x86 \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/xga_font_data.c b/libffmpeg-avutil/libavutil/xga_font_data.c new file mode 120000 index 0000000..294a037 --- /dev/null +++ b/libffmpeg-avutil/libavutil/xga_font_data.c @@ -0,0 +1 @@ +../../upstream/libavutil/xga_font_data.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/xga_font_data.h b/libffmpeg-avutil/libavutil/xga_font_data.h new file mode 120000 index 0000000..a3c876c --- /dev/null +++ b/libffmpeg-avutil/libavutil/xga_font_data.h @@ -0,0 +1 @@ +../../upstream/libavutil/xga_font_data.h \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/xtea.c b/libffmpeg-avutil/libavutil/xtea.c new file mode 120000 index 0000000..418582f --- /dev/null +++ b/libffmpeg-avutil/libavutil/xtea.c @@ -0,0 +1 @@ +../../upstream/libavutil/xtea.c \ No newline at end of file diff --git a/libffmpeg-avutil/libavutil/xtea.h b/libffmpeg-avutil/libavutil/xtea.h new file mode 120000 index 0000000..070ddca --- /dev/null +++ b/libffmpeg-avutil/libavutil/xtea.h @@ -0,0 +1 @@ +../../upstream/libavutil/xtea.h \ No newline at end of file diff --git a/manifest b/manifest new file mode 100644 index 0000000..ad52433 --- /dev/null +++ b/manifest @@ -0,0 +1,13 @@ +: 1 +name: FFmpeg +version: 0.1.0-a.0.z +language: c++ +summary: FFmpeg C++ library +license: other: proprietary ; Not free/open source. +package-description-file: PACKAGE-README.md +url: https://example.org/upstream +email: upstream@example.org +package-url: https://github.com/build2-packaging/FFmpeg +package-email: packaging@build2.org ; Mailing list. +depends: * build2 >= 0.16.0 +depends: * bpkg >= 0.16.0 diff --git a/repositories.manifest b/repositories.manifest new file mode 100644 index 0000000..a17892d --- /dev/null +++ b/repositories.manifest @@ -0,0 +1,2 @@ +: 1 +summary: ffmpeg project repository diff --git a/tests/.gitignore b/tests/.gitignore new file mode 100644 index 0000000..662178d --- /dev/null +++ b/tests/.gitignore @@ -0,0 +1,8 @@ +# Test executables. +# +driver + +# Testscript output directories (can be symlinks). +# +test +test-* diff --git a/tests/build/.gitignore b/tests/build/.gitignore new file mode 100644 index 0000000..974e01d --- /dev/null +++ b/tests/build/.gitignore @@ -0,0 +1,4 @@ +/config.build +/root/ +/bootstrap/ +build/ diff --git a/tests/build/bootstrap.build b/tests/build/bootstrap.build new file mode 100644 index 0000000..a07b5ea --- /dev/null +++ b/tests/build/bootstrap.build @@ -0,0 +1,5 @@ +project = # Unnamed tests subproject. + +using config +using test +using dist diff --git a/tests/build/root.build b/tests/build/root.build new file mode 100644 index 0000000..a67b2fe --- /dev/null +++ b/tests/build/root.build @@ -0,0 +1,16 @@ +cxx.std = latest + +using cxx + +hxx{*}: extension = hxx +ixx{*}: extension = ixx +txx{*}: extension = txx +cxx{*}: extension = cxx + +# Every exe{} in this subproject is by default a test. +# +exe{*}: test = true + +# The test target for cross-testing (running tests under Wine, etc). +# +test.target = $cxx.target diff --git a/tests/buildfile b/tests/buildfile new file mode 100644 index 0000000..aeeab15 --- /dev/null +++ b/tests/buildfile @@ -0,0 +1 @@ +./: {*/ -build/} diff --git a/upstream b/upstream new file mode 160000 index 0000000..bdd3c6c --- /dev/null +++ b/upstream @@ -0,0 +1 @@ +Subproject commit bdd3c6ca5015e29d12fa3d317a6d8b6958156a93