mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 19:37:30 -03:00
blahblah
This commit is contained in:
parent
9c51bc9294
commit
43703484de
3278 changed files with 1245184 additions and 29 deletions
182
arm/android/build/config/arm.gni
Normal file
182
arm/android/build/config/arm.gni
Normal file
|
@ -0,0 +1,182 @@
|
|||
# Copyright 2023 The Chromium Authors and Alex313031.
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
||||
import("//build/config/chromeos/ui_mode.gni")
|
||||
import("//build/config/v8_target_cpu.gni")
|
||||
|
||||
# These are primarily relevant in current_cpu == "arm" contexts, where
|
||||
# ARM code is being compiled. But they can also be relevant in the
|
||||
# other contexts when the code will change its behavior based on the
|
||||
# cpu it wants to generate code for.
|
||||
if (current_cpu == "arm" || v8_current_cpu == "arm") {
|
||||
declare_args() {
|
||||
# Version of the ARM processor when compiling on ARM. Ignored on non-ARM
|
||||
# platforms.
|
||||
arm_version = 7
|
||||
|
||||
# The ARM architecture. This will be a string like "armv6" or "armv7-a".
|
||||
# An empty string means to use the default for the arm_version.
|
||||
arm_arch = ""
|
||||
|
||||
# The ARM floating point hardware. This will be a string like "neon" or
|
||||
# "vfpv3". An empty string means to use the default for the arm_version.
|
||||
arm_fpu = ""
|
||||
|
||||
# The ARM variant-specific tuning mode. This will be a string like "armv6"
|
||||
# or "cortex-a15". An empty string means to use the default for the
|
||||
# arm_version.
|
||||
arm_tune = ""
|
||||
|
||||
# Whether to use the neon FPU instruction set or not.
|
||||
arm_use_neon = ""
|
||||
|
||||
# Whether to enable optional NEON code paths.
|
||||
arm_optionally_use_neon = false
|
||||
|
||||
# Thumb is a reduced instruction set available on some ARM processors that
|
||||
# has increased code density.
|
||||
arm_use_thumb = true
|
||||
}
|
||||
|
||||
# For lacros build, we use ARM v8 by default.
|
||||
if (is_chromeos_lacros && arm_arch == "") {
|
||||
arm_version = 8
|
||||
arm_arch = "armv8-a+crc"
|
||||
}
|
||||
|
||||
if (current_os == "android" || target_os == "android") {
|
||||
arm_float_abi = "softfp"
|
||||
} else {
|
||||
declare_args() {
|
||||
# The ARM floating point mode. This is either the string "hard", "soft",
|
||||
# or "softfp". An empty string means to use the default one for the
|
||||
# arm_version.
|
||||
arm_float_abi = ""
|
||||
}
|
||||
}
|
||||
assert(arm_float_abi == "" || arm_float_abi == "hard" ||
|
||||
arm_float_abi == "soft" || arm_float_abi == "softfp")
|
||||
|
||||
if (arm_use_neon == "") {
|
||||
if (current_os == "linux" && target_cpu != v8_target_cpu) {
|
||||
# Don't use neon on V8 simulator builds as a default.
|
||||
arm_use_neon = false
|
||||
} else {
|
||||
arm_use_neon = true
|
||||
}
|
||||
}
|
||||
|
||||
if (arm_version == 6) {
|
||||
if (arm_arch == "") {
|
||||
# v8 can still with version 6 but only with the armv6k extension.
|
||||
arm_arch = "armv6k"
|
||||
}
|
||||
if (arm_tune != "") {
|
||||
arm_tune = ""
|
||||
}
|
||||
if (arm_float_abi == "") {
|
||||
arm_float_abi = "softfp"
|
||||
}
|
||||
if (arm_fpu == "") {
|
||||
arm_fpu = "vfp"
|
||||
}
|
||||
arm_use_thumb = false
|
||||
arm_use_neon = false
|
||||
} else if (arm_version == 7) {
|
||||
if (arm_arch == "") {
|
||||
arm_arch = "armv7-a"
|
||||
}
|
||||
|
||||
if (arm_float_abi == "") {
|
||||
if (current_os == "linux" && target_cpu != v8_target_cpu) {
|
||||
# Default to the same as Android for V8 simulator builds.
|
||||
arm_float_abi = "softfp"
|
||||
} else {
|
||||
arm_float_abi = "hard"
|
||||
}
|
||||
}
|
||||
|
||||
if (arm_fpu == "") {
|
||||
if (arm_use_neon) {
|
||||
arm_fpu = "neon"
|
||||
} else {
|
||||
arm_fpu = "vfpv3-d16"
|
||||
}
|
||||
}
|
||||
} else if (arm_version == 8) {
|
||||
if (arm_arch == "") {
|
||||
arm_arch = "armv8-a"
|
||||
}
|
||||
if (arm_tune == "") {
|
||||
arm_tune = "generic-armv8-a"
|
||||
}
|
||||
|
||||
if (arm_float_abi == "") {
|
||||
arm_float_abi = "hard"
|
||||
}
|
||||
|
||||
if (arm_fpu == "") {
|
||||
if (arm_use_neon) {
|
||||
arm_fpu = "neon"
|
||||
} else {
|
||||
arm_fpu = "vfpv3-d16"
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (current_cpu == "arm64" || v8_current_cpu == "arm64") {
|
||||
declare_args() {
|
||||
# Enables the new Armv8 branch protection features. Valid strings are:
|
||||
# - "pac": Enables Pointer Authentication Code (PAC, featured in Armv8.3)
|
||||
# - "standard": Enables both PAC and Branch Target Identification (Armv8.5).
|
||||
# - "none": No branch protection.
|
||||
arm_control_flow_integrity = "none"
|
||||
|
||||
# Version of the ARM processor when compiling on ARM. Ignored on non-ARM
|
||||
# platforms.
|
||||
arm_version = 8
|
||||
|
||||
# arm64 supports only "hard".
|
||||
arm_float_abi = "hard"
|
||||
|
||||
# The ARM64 architecture. This will be a string like "armv8-a" or "armv8.5-a.
|
||||
# An empty string means to use the default for the arm_version.
|
||||
arm_arch = "armv8-a"
|
||||
|
||||
# The ARM variant-specific tuning mode. This will be a string like "armv6"
|
||||
# or "cortex-a15". An empty string means to use the default for the
|
||||
# arm_version.
|
||||
arm_tune = "generic-armv8-a"
|
||||
|
||||
# The ARM64 floating point hardware. This will be a string like "neon" or
|
||||
# "vfpv3-d16". An empty string means to use the default for the arm_version.
|
||||
arm_fpu = "neon"
|
||||
|
||||
# Whether to use the neon FPU instruction set or not.
|
||||
arm_use_neon = "true"
|
||||
|
||||
# Whether to enable optional NEON code paths.
|
||||
arm_optionally_use_neon = false
|
||||
|
||||
# Thumb is a reduced instruction set available on some ARM processors that
|
||||
# has increased code density.
|
||||
arm_use_thumb = true
|
||||
|
||||
if ((is_android || is_linux) && target_cpu == "arm64") {
|
||||
# Enable PAC and BTI on AArch64 Linux/Android systems.
|
||||
# target_cpu == "arm64" filters out some cases (e.g. the ChromeOS x64
|
||||
# MSAN build) where the target platform is x64, but V8 is configured to
|
||||
# use the arm64 simulator.
|
||||
arm_control_flow_integrity = "standard"
|
||||
}
|
||||
}
|
||||
# Initial values from upstream.
|
||||
arm_version = 8
|
||||
arm_float_abi = "hard"
|
||||
arm_use_neon = true
|
||||
|
||||
assert(arm_control_flow_integrity == "none" ||
|
||||
arm_control_flow_integrity == "standard" ||
|
||||
arm_control_flow_integrity == "pac",
|
||||
"Invalid ARM branch protection option.")
|
||||
}
|
2761
arm/android/build/config/compiler/BUILD.gn
Normal file
2761
arm/android/build/config/compiler/BUILD.gn
Normal file
File diff suppressed because it is too large
Load diff
615
arm/android/build/config/win/BUILD.gn
Normal file
615
arm/android/build/config/win/BUILD.gn
Normal file
|
@ -0,0 +1,615 @@
|
|||
# Copyright (c) 2023 The Chromium Authors and Alex313031. All rights reserved.
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
||||
import("//build/config/c++/c++.gni")
|
||||
import("//build/config/chrome_build.gni")
|
||||
import("//build/config/clang/clang.gni")
|
||||
import("//build/config/compiler/compiler.gni")
|
||||
import("//build/config/sanitizers/sanitizers.gni")
|
||||
import("//build/config/win/control_flow_guard.gni")
|
||||
import("//build/config/win/visual_studio_version.gni")
|
||||
import("//build/timestamp.gni")
|
||||
import("//build/toolchain/goma.gni")
|
||||
import("//build/toolchain/toolchain.gni")
|
||||
|
||||
assert(is_win)
|
||||
|
||||
declare_args() {
|
||||
# Turn this on to have the linker output extra timing information.
|
||||
win_linker_timing = false
|
||||
|
||||
# possible values for target_winuwp_version:
|
||||
# "10" - Windows UWP 10
|
||||
# "8.1" - Windows RT 8.1
|
||||
# "8.0" - Windows RT 8.0
|
||||
target_winuwp_version = "10"
|
||||
|
||||
# possible values:
|
||||
# "app" - Windows Store Applications
|
||||
# "phone" - Windows Phone Applications
|
||||
# "system" - Windows Drivers and Tools
|
||||
# "server" - Windows Server Applications
|
||||
# "desktop" - Windows Desktop Applications
|
||||
target_winuwp_family = "app"
|
||||
|
||||
# Set this to use clang-style diagnostics format instead of MSVC-style, which
|
||||
# is useful in e.g. Emacs compilation mode.
|
||||
# E.g.:
|
||||
# Without this, clang emits a diagnostic message like this:
|
||||
# foo/bar.cc(12,34): error: something went wrong
|
||||
# and with this switch, clang emits it like this:
|
||||
# foo/bar.cc:12:34: error: something went wrong
|
||||
use_clang_diagnostics_format = false
|
||||
|
||||
# Indicates whether to use /pdbpagesize:8192 to allow PDBs larger than 4 GiB.
|
||||
# This requires updated debugging and profiling tools which are not widely
|
||||
# distributed yet which is why it is currently opt-in.
|
||||
use_large_pdbs = false
|
||||
}
|
||||
|
||||
# This is included by reference in the //build/config/compiler config that
|
||||
# is applied to all targets. It is here to separate out the logic that is
|
||||
# Windows-only.
|
||||
config("compiler") {
|
||||
if (current_cpu == "x86") {
|
||||
asmflags = [
|
||||
# When /safeseh is specified, the linker will only produce an image if it
|
||||
# can also produce a table of the image's safe exception handlers. This
|
||||
# table specifies for the operating system which exception handlers are
|
||||
# valid for the image. Note that /SAFESEH isn't accepted on the command
|
||||
# line, only /safeseh. This is only accepted by ml.exe, not ml64.exe.
|
||||
"/safeseh",
|
||||
]
|
||||
}
|
||||
|
||||
cflags = [
|
||||
"/Gy", # Enable function-level linking.
|
||||
"/FS", # Preserve previous PDB behavior.
|
||||
"/bigobj", # Some of our files are bigger than the regular limits.
|
||||
"/utf-8", # Assume UTF-8 by default to avoid code page dependencies.
|
||||
]
|
||||
|
||||
if (is_clang) {
|
||||
cflags += [
|
||||
"/Zc:twoPhase",
|
||||
|
||||
# Consistently use backslash as the path separator when expanding the
|
||||
# __FILE__ macro when targeting Windows regardless of the build
|
||||
# environment.
|
||||
"-ffile-reproducible",
|
||||
]
|
||||
}
|
||||
|
||||
# Force C/C++ mode for the given GN detected file type. This is necessary
|
||||
# for precompiled headers where the same source file is compiled in both
|
||||
# modes.
|
||||
cflags_c = [ "/TC" ]
|
||||
cflags_cc = [ "/TP" ]
|
||||
|
||||
cflags += [
|
||||
# Work around crbug.com/526851, bug in VS 2015 RTM compiler.
|
||||
# "/Zc:sizedDealloc-",
|
||||
]
|
||||
|
||||
if (is_clang) {
|
||||
# Required to make the 19041 SDK compatible with clang-cl.
|
||||
# See https://crbug.com/1089996 issue #2 for details.
|
||||
cflags += [ "/D__WRL_ENABLE_FUNCTION_STATICS__" ]
|
||||
|
||||
# Tell clang which version of MSVC to emulate.
|
||||
cflags += [ "-fmsc-version=1916" ]
|
||||
|
||||
if (is_component_build) {
|
||||
cflags += [
|
||||
# Do not export inline member functions. This makes component builds
|
||||
# faster. This is similar to -fvisibility-inlines-hidden.
|
||||
"/Zc:dllexportInlines-",
|
||||
]
|
||||
}
|
||||
|
||||
if (current_cpu == "x86") {
|
||||
if (host_cpu == "x86" || host_cpu == "x64") {
|
||||
cflags += [ "-m32" ]
|
||||
} else {
|
||||
cflags += [ "--target=i386-windows", "/clang:-O3", "-Xclang", "-O3", "-Wno-unused-command-line-argument", ]
|
||||
}
|
||||
} else if (current_cpu == "x64") {
|
||||
if (host_cpu == "x86" || host_cpu == "x64") {
|
||||
cflags += [ "-m64" ]
|
||||
} else {
|
||||
cflags += [ "--target=x86_64-windows", "/clang:-O3", "-Xclang", "-O3", "-Wno-unused-command-line-argument", ]
|
||||
}
|
||||
} else if (current_cpu == "arm64") {
|
||||
cflags += [ "--target=arm64-windows", "/clang:-O3", "-Xclang", "-O3", "-Wno-unused-command-line-argument", ]
|
||||
} else {
|
||||
assert(false, "unknown current_cpu " + current_cpu)
|
||||
}
|
||||
|
||||
# Chrome currently requires SSE3. Clang supports targeting any Intel
|
||||
# microarchitecture. MSVC only supports a subset of architectures, and the
|
||||
# next step after SSE2 will be AVX.
|
||||
# "/fp:fast", enables FMA.
|
||||
if (current_cpu == "x86" || current_cpu == "x64") {
|
||||
cflags += [
|
||||
"/O2",
|
||||
"-mavx",
|
||||
"-maes",
|
||||
"-mpclmul",
|
||||
"/clang:-O3",
|
||||
"/clang:-mavx",
|
||||
"/clang:-maes",
|
||||
"/clang:-mpclmul",
|
||||
"-Xclang", "-O3",
|
||||
"-Wno-unused-command-line-argument",
|
||||
]
|
||||
}
|
||||
|
||||
if (exec_script("//build/win/use_ansi_codes.py", [], "trim string") ==
|
||||
"True") {
|
||||
cflags += [
|
||||
# cmd.exe doesn't understand ANSI escape codes by default,
|
||||
# so only enable them if something emulating them is around.
|
||||
"-fansi-escape-codes",
|
||||
]
|
||||
}
|
||||
|
||||
if (use_clang_diagnostics_format) {
|
||||
cflags += [ "/clang:-fdiagnostics-format=clang" ]
|
||||
}
|
||||
}
|
||||
|
||||
# Disabled with cc_wrapper because of https://github.com/mozilla/sccache/issues/264
|
||||
if (use_lld && !use_thin_lto && (is_clang || !use_goma) && cc_wrapper == "") {
|
||||
# /Brepro lets the compiler not write the mtime field in the .obj output.
|
||||
# link.exe /incremental relies on this field to work correctly, but lld
|
||||
# never looks at this timestamp, so it's safe to pass this flag with
|
||||
# lld and get more deterministic compiler output in return.
|
||||
# In LTO builds, the compiler doesn't write .obj files containing mtimes,
|
||||
# so /Brepro is ignored there.
|
||||
cflags += [ "/Brepro" ]
|
||||
}
|
||||
|
||||
ldflags = []
|
||||
|
||||
if (use_lld) {
|
||||
# lld defaults to writing the current time in the pe/coff header.
|
||||
# For build reproducibility, pass an explicit timestamp. See
|
||||
# build/compute_build_timestamp.py for how the timestamp is chosen.
|
||||
# (link.exe also writes the current time, but it doesn't have a flag to
|
||||
# override that behavior.)
|
||||
ldflags += [ "/TIMESTAMP:" + build_timestamp ]
|
||||
|
||||
# Don't look for libpaths in %LIB%, similar to /X in cflags above.
|
||||
ldflags += [ "/lldignoreenv" ]
|
||||
ldflags += [ "/opt:lldlto=3", ]
|
||||
}
|
||||
|
||||
if (use_large_pdbs) {
|
||||
# This allows PDBs up to 8 GiB in size. This requires lld-link.exe or
|
||||
# link.exe from VS 2022 or later.
|
||||
ldflags += [ "/pdbpagesize:8192" ]
|
||||
}
|
||||
|
||||
if (!is_debug && !is_component_build) {
|
||||
# Enable standard linker optimizations like GC (/OPT:REF) and ICF in static
|
||||
# release builds.
|
||||
# Release builds always want these optimizations, so enable them explicitly.
|
||||
ldflags += [
|
||||
"/OPT:REF",
|
||||
"/OPT:ICF",
|
||||
"/INCREMENTAL:NO",
|
||||
"/FIXED:NO",
|
||||
"/OPT:lldlto=3",
|
||||
]
|
||||
|
||||
if (use_lld) {
|
||||
# String tail merging leads to smaller binaries, but they don't compress
|
||||
# as well, leading to increased mini_installer size (crbug.com/838449).
|
||||
# ldflags += [ "/OPT:NOLLDTAILMERGE" ]
|
||||
}
|
||||
|
||||
# TODO(siggi): Is this of any use anymore?
|
||||
# /PROFILE ensures that the PDB file contains FIXUP information (growing the
|
||||
# PDB file by about 5%) but does not otherwise alter the output binary. It
|
||||
# is enabled opportunistically for builds where it is not prohibited (not
|
||||
# supported when incrementally linking, or using /debug:fastlink).
|
||||
# ldflags += [ "/PROFILE" ]
|
||||
}
|
||||
|
||||
# arflags apply only to static_libraries. The normal linker configs are only
|
||||
# set for executable and shared library targets so arflags must be set
|
||||
# elsewhere. Since this is relatively contained, we just apply them in this
|
||||
# more general config and they will only have an effect on static libraries.
|
||||
arflags = [
|
||||
# "No public symbols found; archive member will be inaccessible." This
|
||||
# means that one or more object files in the library can never be
|
||||
# pulled in to targets that link to this library. It's just a warning that
|
||||
# the source file is a no-op.
|
||||
"/ignore:4221",
|
||||
]
|
||||
}
|
||||
|
||||
# This is included by reference in the //build/config/compiler:runtime_library
|
||||
# config that is applied to all targets. It is here to separate out the logic
|
||||
# that is Windows-only. Please see that target for advice on what should go in
|
||||
# :runtime_library vs. :compiler.
|
||||
config("runtime_library") {
|
||||
cflags = []
|
||||
cflags_cc = []
|
||||
|
||||
# Defines that set up the CRT.
|
||||
defines = [
|
||||
"__STD_C",
|
||||
"_CRT_RAND_S",
|
||||
"_CRT_SECURE_NO_DEPRECATE",
|
||||
"_SCL_SECURE_NO_DEPRECATE",
|
||||
]
|
||||
|
||||
# Defines that set up the Windows SDK.
|
||||
defines += [
|
||||
"_ATL_NO_OPENGL",
|
||||
"_WINDOWS",
|
||||
"CERT_CHAIN_PARA_HAS_EXTRA_FIELDS",
|
||||
"PSAPI_VERSION=2",
|
||||
"WIN32",
|
||||
"_SECURE_ATL",
|
||||
]
|
||||
|
||||
if (current_os == "winuwp") {
|
||||
# When targeting Windows Runtime, certain compiler/linker flags are
|
||||
# necessary.
|
||||
defines += [
|
||||
"WINUWP",
|
||||
"__WRL_NO_DEFAULT_LIB__",
|
||||
]
|
||||
if (target_winuwp_family == "app") {
|
||||
defines += [ "WINAPI_FAMILY=WINAPI_FAMILY_PC_APP" ]
|
||||
} else if (target_winuwp_family == "phone") {
|
||||
defines += [ "WINAPI_FAMILY=WINAPI_FAMILY_PHONE_APP" ]
|
||||
} else if (target_winuwp_family == "system") {
|
||||
defines += [ "WINAPI_FAMILY=WINAPI_FAMILY_SYSTEM" ]
|
||||
} else if (target_winuwp_family == "server") {
|
||||
defines += [ "WINAPI_FAMILY=WINAPI_FAMILY_SERVER" ]
|
||||
} else {
|
||||
defines += [ "WINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP" ]
|
||||
}
|
||||
cflags_cc += [ "/EHsc" ]
|
||||
|
||||
# This warning is given because the linker cannot tell the difference
|
||||
# between consuming WinRT APIs versus authoring WinRT within static
|
||||
# libraries as such this warning is always given by the linker. Since
|
||||
# consuming WinRT APIs within a library is legitimate but authoring
|
||||
# WinRT APis is not allowed, this warning is disabled to ignore the
|
||||
# legitimate consumption of WinRT APIs within static library builds.
|
||||
arflags = [ "/IGNORE:4264" ]
|
||||
|
||||
if (target_winuwp_version == "10") {
|
||||
defines += [ "WIN10=_WIN32_WINNT_WIN10" ]
|
||||
} else if (target_winuwp_version == "8.1") {
|
||||
defines += [ "WIN8_1=_WIN32_WINNT_WINBLUE" ]
|
||||
} else if (target_winuwp_version == "8.0") {
|
||||
defines += [ "WIN8=_WIN32_WINNT_WIN8" ]
|
||||
}
|
||||
} else {
|
||||
# When not targeting Windows Runtime, make sure the WINAPI family is set
|
||||
# to desktop.
|
||||
defines += [ "WINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP" ]
|
||||
}
|
||||
}
|
||||
|
||||
# Chromium supports running on Windows 7, but if these constants are set to
|
||||
# Windows 7, then newer APIs aren't made available by the Windows SDK.
|
||||
# So we set this to Windows 10 and then are careful to check at runtime
|
||||
# to only call newer APIs when they're available.
|
||||
# Some third-party libraries assume that these defines set what version of
|
||||
# Windows is available at runtime. Targets using these libraries need to
|
||||
# manually override this config for their compiles.
|
||||
config("winver") {
|
||||
defines = [
|
||||
"NTDDI_VERSION=NTDDI_WIN10_FE",
|
||||
|
||||
# We can't say `=_WIN32_WINNT_WIN10` here because some files do
|
||||
# `#if WINVER < 0x0600` without including windows.h before,
|
||||
# and then _WIN32_WINNT_WIN10 isn't yet known to be 0x0A00.
|
||||
"_WIN32_WINNT=0x0A00",
|
||||
"WINVER=0x0A00",
|
||||
]
|
||||
}
|
||||
|
||||
# Linker flags for Windows SDK setup, this is applied only to EXEs and DLLs.
|
||||
config("sdk_link") {
|
||||
if (current_cpu == "x86") {
|
||||
ldflags = [
|
||||
"/SAFESEH", # Not compatible with x64 so use only for x86.
|
||||
"/largeaddressaware",
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
# This default linker setup is provided separately from the SDK setup so
|
||||
# targets who want different library configurations can remove this and specify
|
||||
# their own.
|
||||
config("common_linker_setup") {
|
||||
ldflags = [
|
||||
"/FIXED:NO",
|
||||
"/ignore:4199",
|
||||
"/ignore:4221",
|
||||
"/NXCOMPAT",
|
||||
"/DYNAMICBASE",
|
||||
]
|
||||
|
||||
if (win_linker_timing) {
|
||||
ldflags += [
|
||||
"/time",
|
||||
"/verbose:incr",
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
config("default_cfg_compiler") {
|
||||
# Emit table of address-taken functions for Control-Flow Guard (CFG).
|
||||
# This is needed to allow functions to be called by code that is built
|
||||
# with CFG enabled, such as system libraries.
|
||||
# The CFG guards are only emitted if |win_enable_cfg_guards| is enabled.
|
||||
if (is_clang) {
|
||||
if (win_enable_cfg_guards) {
|
||||
cflags = [ "/guard:cf" ]
|
||||
} else {
|
||||
cflags = [ "/guard:cf,nochecks" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# To disable CFG guards for a target, remove the "default_cfg_compiler"
|
||||
# config, and add "disable_guards_cfg_compiler" config.
|
||||
config("disable_guards_cfg_compiler") {
|
||||
# Emit table of address-taken functions for Control-Flow Guard (CFG).
|
||||
# This is needed to allow functions to be called by code that is built
|
||||
# with CFG enabled, such as system libraries.
|
||||
if (is_clang) {
|
||||
cflags = [ "/guard:cf,nochecks" ]
|
||||
}
|
||||
}
|
||||
|
||||
config("cfi_linker") {
|
||||
# Control Flow Guard (CFG)
|
||||
# https://msdn.microsoft.com/en-us/library/windows/desktop/mt637065.aspx
|
||||
# /DYNAMICBASE (ASLR) is turned off in debug builds, therefore CFG cannot be
|
||||
# turned on either.
|
||||
# ASan and CFG leads to slow process startup. Chromium's test runner uses
|
||||
# lots of child processes, so this means things are really slow. Disable CFG
|
||||
# for now. https://crbug.com/846966
|
||||
if (!is_debug && !is_asan) {
|
||||
# Turn on CFG bitmap generation and CFG load config.
|
||||
ldflags = [ "/guard:cf" ]
|
||||
}
|
||||
}
|
||||
|
||||
# This is a superset of all the delayloads needed for chrome.exe, chrome.dll,
|
||||
# chrome_child.dll, and chrome_elf.dll. The linker will automatically ignore
|
||||
# anything which is not linked to the binary at all.
|
||||
# Most of the dlls are simply not required at startup (or at all, depending
|
||||
# on how the browser is used). The following dlls are interconnected and need to
|
||||
# be delayloaded together to ensure user32 does not load too early or at all,
|
||||
# depending on the process type: user32, gdi32, comctl32, comdlg32, cryptui,
|
||||
# d3d9, dwmapi, imm32, msi, ole32, oleacc, rstrtmgr, shell32, shlwapi, and
|
||||
# uxtheme.
|
||||
# There are some exceptions to this list which need to be declared separately.
|
||||
# Some dlls cannot be delayloaded by chrome_child.dll due to the sandbox
|
||||
# restrictions that prevent them from being loaded properly. Those dlls are
|
||||
# specified in the separate config below.
|
||||
# This config should also be used for any test binary whose goal is to run
|
||||
# tests with the full browser.
|
||||
config("delayloads") {
|
||||
ldflags = [
|
||||
"/DELAYLOAD:api-ms-win-core-winrt-error-l1-1-0.dll",
|
||||
"/DELAYLOAD:api-ms-win-core-winrt-l1-1-0.dll",
|
||||
"/DELAYLOAD:api-ms-win-core-winrt-string-l1-1-0.dll",
|
||||
"/DELAYLOAD:comctl32.dll",
|
||||
"/DELAYLOAD:comdlg32.dll",
|
||||
"/DELAYLOAD:credui.dll",
|
||||
"/DELAYLOAD:cryptui.dll",
|
||||
"/DELAYLOAD:d3d11.dll",
|
||||
"/DELAYLOAD:d3d9.dll",
|
||||
"/DELAYLOAD:dwmapi.dll",
|
||||
"/DELAYLOAD:dxgi.dll",
|
||||
"/DELAYLOAD:dxva2.dll",
|
||||
"/DELAYLOAD:esent.dll",
|
||||
"/DELAYLOAD:gdi32.dll",
|
||||
"/DELAYLOAD:hid.dll",
|
||||
"/DELAYLOAD:imagehlp.dll",
|
||||
"/DELAYLOAD:imm32.dll",
|
||||
"/DELAYLOAD:msi.dll",
|
||||
"/DELAYLOAD:netapi32.dll",
|
||||
"/DELAYLOAD:ncrypt.dll",
|
||||
"/DELAYLOAD:ole32.dll",
|
||||
"/DELAYLOAD:oleacc.dll",
|
||||
"/DELAYLOAD:propsys.dll",
|
||||
"/DELAYLOAD:psapi.dll",
|
||||
"/DELAYLOAD:rpcrt4.dll",
|
||||
"/DELAYLOAD:rstrtmgr.dll",
|
||||
"/DELAYLOAD:setupapi.dll",
|
||||
"/DELAYLOAD:shell32.dll",
|
||||
"/DELAYLOAD:shlwapi.dll",
|
||||
"/DELAYLOAD:urlmon.dll",
|
||||
"/DELAYLOAD:user32.dll",
|
||||
"/DELAYLOAD:usp10.dll",
|
||||
"/DELAYLOAD:uxtheme.dll",
|
||||
"/DELAYLOAD:wer.dll",
|
||||
"/DELAYLOAD:wevtapi.dll",
|
||||
"/DELAYLOAD:wininet.dll",
|
||||
"/DELAYLOAD:winusb.dll",
|
||||
"/DELAYLOAD:wsock32.dll",
|
||||
"/DELAYLOAD:wtsapi32.dll",
|
||||
]
|
||||
}
|
||||
|
||||
config("delayloads_not_for_child_dll") {
|
||||
ldflags = [
|
||||
"/DELAYLOAD:advapi32.dll",
|
||||
"/DELAYLOAD:crypt32.dll",
|
||||
"/DELAYLOAD:dbghelp.dll",
|
||||
"/DELAYLOAD:dhcpcsvc.dll",
|
||||
"/DELAYLOAD:dwrite.dll",
|
||||
"/DELAYLOAD:iphlpapi.dll",
|
||||
"/DELAYLOAD:oleaut32.dll",
|
||||
"/DELAYLOAD:secur32.dll",
|
||||
"/DELAYLOAD:uiautomationcore.dll",
|
||||
"/DELAYLOAD:userenv.dll",
|
||||
"/DELAYLOAD:winhttp.dll",
|
||||
"/DELAYLOAD:winmm.dll",
|
||||
"/DELAYLOAD:winspool.drv",
|
||||
"/DELAYLOAD:wintrust.dll",
|
||||
"/DELAYLOAD:ws2_32.dll",
|
||||
]
|
||||
}
|
||||
|
||||
# CRT --------------------------------------------------------------------------
|
||||
|
||||
# Configures how the runtime library (CRT) is going to be used.
|
||||
# See https://msdn.microsoft.com/en-us/library/2kzt1wy3.aspx for a reference of
|
||||
# what each value does.
|
||||
config("default_crt") {
|
||||
if (is_component_build) {
|
||||
# Component mode: dynamic CRT. Since the library is shared, it requires
|
||||
# exceptions or will give errors about things not matching, so keep
|
||||
# exceptions on.
|
||||
configs = [ ":dynamic_crt" ]
|
||||
} else {
|
||||
if (current_os == "winuwp") {
|
||||
# https://blogs.msdn.microsoft.com/vcblog/2014/06/10/the-great-c-runtime-crt-refactoring/
|
||||
# contains a details explanation of what is happening with the Windows
|
||||
# CRT in Visual Studio releases related to Windows store applications.
|
||||
configs = [ ":dynamic_crt" ]
|
||||
} else {
|
||||
# Desktop Windows: static CRT.
|
||||
configs = [ ":static_crt" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Use this to force use of the release CRT when building perf-critical build
|
||||
# tools that need to be fully optimized even in debug builds, for those times
|
||||
# when the debug CRT is part of the bottleneck. This also avoids *implicitly*
|
||||
# defining _DEBUG.
|
||||
config("release_crt") {
|
||||
if (is_component_build) {
|
||||
cflags = [ "/MD" ]
|
||||
|
||||
if (use_custom_libcxx) {
|
||||
# On Windows, including libcpmt[d]/msvcprt[d] explicitly links the C++
|
||||
# standard library, which libc++ needs for exception_ptr internals.
|
||||
ldflags = [ "/DEFAULTLIB:msvcprt.lib" ]
|
||||
}
|
||||
} else {
|
||||
cflags = [ "/MT" ]
|
||||
if (use_custom_libcxx) {
|
||||
ldflags = [ "/DEFAULTLIB:libcpmt.lib" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
config("dynamic_crt") {
|
||||
if (is_debug) {
|
||||
# This pulls in the DLL debug CRT and defines _DEBUG
|
||||
cflags = [ "/MDd" ]
|
||||
if (use_custom_libcxx) {
|
||||
ldflags = [ "/DEFAULTLIB:msvcprtd.lib" ]
|
||||
}
|
||||
} else {
|
||||
cflags = [ "/MD" ]
|
||||
if (use_custom_libcxx) {
|
||||
ldflags = [ "/DEFAULTLIB:msvcprt.lib" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
config("static_crt") {
|
||||
if (is_debug) {
|
||||
# This pulls in the static debug CRT and defines _DEBUG
|
||||
cflags = [ "/MTd" ]
|
||||
if (use_custom_libcxx) {
|
||||
ldflags = [ "/DEFAULTLIB:libcpmtd.lib" ]
|
||||
}
|
||||
} else {
|
||||
cflags = [ "/MT" ]
|
||||
if (use_custom_libcxx) {
|
||||
ldflags = [ "/DEFAULTLIB:libcpmt.lib" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Subsystem --------------------------------------------------------------------
|
||||
|
||||
# This is appended to the subsystem to specify a minimum version.
|
||||
if (current_cpu == "x64") {
|
||||
# The number after the comma is the minimum required OS version.
|
||||
# 5.2 = Windows Server 2003.
|
||||
subsystem_version_suffix = ",5.02"
|
||||
} else if (current_cpu == "arm64") {
|
||||
# Windows ARM64 requires Windows 10.
|
||||
subsystem_version_suffix = ",10.0"
|
||||
} else {
|
||||
# 5.1 = Windows XP.
|
||||
subsystem_version_suffix = ",5.01"
|
||||
}
|
||||
|
||||
config("console") {
|
||||
ldflags = [ "/SUBSYSTEM:CONSOLE$subsystem_version_suffix" ]
|
||||
}
|
||||
config("windowed") {
|
||||
ldflags = [ "/SUBSYSTEM:WINDOWS$subsystem_version_suffix" ]
|
||||
}
|
||||
|
||||
# Incremental linking ----------------------------------------------------------
|
||||
|
||||
# Applies incremental linking or not depending on the current configuration.
|
||||
config("default_incremental_linking") {
|
||||
# Enable incremental linking for debug builds and all component builds - any
|
||||
# builds where performance is not job one.
|
||||
# TODO(thakis): Always turn this on with lld, no reason not to.
|
||||
if (is_debug || is_component_build) {
|
||||
ldflags = [ "/INCREMENTAL" ]
|
||||
if (use_lld) {
|
||||
# lld doesn't use ilk files and doesn't really have an incremental link
|
||||
# mode; the only effect of the flag is that the .lib file timestamp isn't
|
||||
# updated if the .lib doesn't change.
|
||||
# TODO(thakis): Why pass /OPT:NOREF for lld, but not otherwise?
|
||||
# TODO(thakis): /INCREMENTAL is on by default in link.exe, but not in
|
||||
# lld.
|
||||
ldflags += [ "/OPT:NOREF" ]
|
||||
}
|
||||
} else {
|
||||
ldflags = [ "/INCREMENTAL:NO" ]
|
||||
}
|
||||
}
|
||||
|
||||
# Character set ----------------------------------------------------------------
|
||||
|
||||
# Not including this config means "ansi" (8-bit system codepage).
|
||||
config("unicode") {
|
||||
defines = [
|
||||
"_UNICODE",
|
||||
"UNICODE",
|
||||
]
|
||||
}
|
||||
|
||||
# Lean and mean ----------------------------------------------------------------
|
||||
|
||||
# Some third party code might not compile with WIN32_LEAN_AND_MEAN so we have
|
||||
# to have a separate config for it. Remove this config from your target to
|
||||
# get the "bloaty and accommodating" version of windows.h.
|
||||
config("lean_and_mean") {
|
||||
defines = [ "WIN32_LEAN_AND_MEAN" ]
|
||||
}
|
||||
|
||||
# Nominmax --------------------------------------------------------------------
|
||||
|
||||
# Some third party code defines NOMINMAX before including windows.h, which
|
||||
# then causes warnings when it's been previously defined on the command line.
|
||||
# For such targets, this config can be removed.
|
||||
|
||||
config("nominmax") {
|
||||
defines = [ "NOMINMAX" ]
|
||||
}
|
391
arm/android/media/base/supported_types.cc
Normal file
391
arm/android/media/base/supported_types.cc
Normal file
|
@ -0,0 +1,391 @@
|
|||
// Copyright 2023 The Chromium Authors and Alex313031
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#include "media/base/supported_types.h"
|
||||
|
||||
#include "base/command_line.h"
|
||||
#include "base/feature_list.h"
|
||||
#include "base/logging.h"
|
||||
#include "base/no_destructor.h"
|
||||
#include "base/notreached.h"
|
||||
#include "build/build_config.h"
|
||||
#include "build/chromeos_buildflags.h"
|
||||
#include "media/base/media.h"
|
||||
#include "media/base/media_client.h"
|
||||
#include "media/base/media_switches.h"
|
||||
#include "media/media_buildflags.h"
|
||||
#include "ui/display/display_switches.h"
|
||||
|
||||
#if BUILDFLAG(ENABLE_LIBVPX)
|
||||
// TODO(dalecurtis): This technically should not be allowed in media/base. See
|
||||
// TODO below about moving outside of base.
|
||||
#include "third_party/libvpx/source/libvpx/vpx/vp8dx.h" // nogncheck
|
||||
#include "third_party/libvpx/source/libvpx/vpx/vpx_codec.h" // nogncheck
|
||||
#endif
|
||||
|
||||
#if BUILDFLAG(IS_ANDROID)
|
||||
#include "base/android/build_info.h"
|
||||
|
||||
// TODO(dalecurtis): This include is not allowed by media/base since
|
||||
// media/base/android is technically a different component. We should move
|
||||
// supported_types*.{cc,h} out of media/base to fix this.
|
||||
#include "media/base/android/media_codec_util.h" // nogncheck
|
||||
#endif
|
||||
|
||||
namespace media {
|
||||
|
||||
namespace {
|
||||
|
||||
class SupplementalProfileCache {
|
||||
public:
|
||||
void UpdateCache(const base::flat_set<media::VideoCodecProfile>& profiles) {
|
||||
base::AutoLock lock(profiles_lock_);
|
||||
profiles_ = profiles;
|
||||
}
|
||||
bool IsProfileSupported(media::VideoCodecProfile profile) {
|
||||
base::AutoLock lock(profiles_lock_);
|
||||
return profiles_.find(profile) != profiles_.end();
|
||||
}
|
||||
|
||||
private:
|
||||
base::Lock profiles_lock_;
|
||||
base::flat_set<media::VideoCodecProfile> profiles_ GUARDED_BY(profiles_lock_);
|
||||
};
|
||||
|
||||
SupplementalProfileCache* GetSupplementalProfileCache() {
|
||||
static base::NoDestructor<SupplementalProfileCache> cache;
|
||||
return cache.get();
|
||||
}
|
||||
|
||||
bool IsSupportedHdrMetadata(const gfx::HdrMetadataType& hdr_metadata_type) {
|
||||
switch (hdr_metadata_type) {
|
||||
case gfx::HdrMetadataType::kNone:
|
||||
return true;
|
||||
|
||||
case gfx::HdrMetadataType::kSmpteSt2086:
|
||||
case gfx::HdrMetadataType::kSmpteSt2094_10:
|
||||
case gfx::HdrMetadataType::kSmpteSt2094_40:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
bool IsColorSpaceSupported(const VideoColorSpace& color_space) {
|
||||
switch (color_space.primaries) {
|
||||
case VideoColorSpace::PrimaryID::EBU_3213_E:
|
||||
case VideoColorSpace::PrimaryID::INVALID:
|
||||
return false;
|
||||
|
||||
// Transfers supported before color management.
|
||||
case VideoColorSpace::PrimaryID::BT709:
|
||||
case VideoColorSpace::PrimaryID::UNSPECIFIED:
|
||||
case VideoColorSpace::PrimaryID::BT470M:
|
||||
case VideoColorSpace::PrimaryID::BT470BG:
|
||||
case VideoColorSpace::PrimaryID::SMPTE170M:
|
||||
break;
|
||||
|
||||
// Supported with color management.
|
||||
case VideoColorSpace::PrimaryID::SMPTE240M:
|
||||
case VideoColorSpace::PrimaryID::FILM:
|
||||
case VideoColorSpace::PrimaryID::BT2020:
|
||||
case VideoColorSpace::PrimaryID::SMPTEST428_1:
|
||||
case VideoColorSpace::PrimaryID::SMPTEST431_2:
|
||||
case VideoColorSpace::PrimaryID::SMPTEST432_1:
|
||||
break;
|
||||
}
|
||||
|
||||
switch (color_space.transfer) {
|
||||
// Transfers supported before color management.
|
||||
case VideoColorSpace::TransferID::UNSPECIFIED:
|
||||
case VideoColorSpace::TransferID::GAMMA22:
|
||||
case VideoColorSpace::TransferID::BT709:
|
||||
case VideoColorSpace::TransferID::SMPTE170M:
|
||||
case VideoColorSpace::TransferID::BT2020_10:
|
||||
case VideoColorSpace::TransferID::BT2020_12:
|
||||
case VideoColorSpace::TransferID::IEC61966_2_1:
|
||||
break;
|
||||
|
||||
// Supported with color management.
|
||||
case VideoColorSpace::TransferID::GAMMA28:
|
||||
case VideoColorSpace::TransferID::SMPTE240M:
|
||||
case VideoColorSpace::TransferID::LINEAR:
|
||||
case VideoColorSpace::TransferID::LOG:
|
||||
case VideoColorSpace::TransferID::LOG_SQRT:
|
||||
case VideoColorSpace::TransferID::BT1361_ECG:
|
||||
case VideoColorSpace::TransferID::SMPTEST2084:
|
||||
case VideoColorSpace::TransferID::IEC61966_2_4:
|
||||
case VideoColorSpace::TransferID::SMPTEST428_1:
|
||||
case VideoColorSpace::TransferID::ARIB_STD_B67:
|
||||
break;
|
||||
|
||||
// Never supported.
|
||||
case VideoColorSpace::TransferID::INVALID:
|
||||
return false;
|
||||
}
|
||||
|
||||
switch (color_space.matrix) {
|
||||
// Supported before color management.
|
||||
case VideoColorSpace::MatrixID::BT709:
|
||||
case VideoColorSpace::MatrixID::UNSPECIFIED:
|
||||
case VideoColorSpace::MatrixID::BT470BG:
|
||||
case VideoColorSpace::MatrixID::SMPTE170M:
|
||||
case VideoColorSpace::MatrixID::BT2020_NCL:
|
||||
break;
|
||||
|
||||
// Supported with color management.
|
||||
case VideoColorSpace::MatrixID::RGB:
|
||||
case VideoColorSpace::MatrixID::FCC:
|
||||
case VideoColorSpace::MatrixID::SMPTE240M:
|
||||
case VideoColorSpace::MatrixID::YCOCG:
|
||||
case VideoColorSpace::MatrixID::YDZDX:
|
||||
case VideoColorSpace::MatrixID::BT2020_CL:
|
||||
break;
|
||||
|
||||
// Never supported.
|
||||
case VideoColorSpace::MatrixID::INVALID:
|
||||
return false;
|
||||
}
|
||||
|
||||
if (color_space.range == gfx::ColorSpace::RangeID::INVALID)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
#if !BUILDFLAG(USE_PROPRIETARY_CODECS)
|
||||
bool IsVideoCodecProprietary(VideoCodec codec) {
|
||||
switch (codec) {
|
||||
case VideoCodec::kVC1:
|
||||
case VideoCodec::kH264:
|
||||
case VideoCodec::kMPEG2:
|
||||
case VideoCodec::kMPEG4:
|
||||
case VideoCodec::kHEVC:
|
||||
case VideoCodec::kDolbyVision:
|
||||
return true;
|
||||
case VideoCodec::kUnknown:
|
||||
case VideoCodec::kTheora:
|
||||
case VideoCodec::kVP8:
|
||||
case VideoCodec::kVP9:
|
||||
case VideoCodec::kAV1:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
bool IsAudioCodecProprietary(AudioCodec codec) {
|
||||
switch (codec) {
|
||||
case AudioCodec::kAAC:
|
||||
case AudioCodec::kAC3:
|
||||
case AudioCodec::kEAC3:
|
||||
case AudioCodec::kAMR_NB:
|
||||
case AudioCodec::kAMR_WB:
|
||||
case AudioCodec::kGSM_MS:
|
||||
case AudioCodec::kALAC:
|
||||
case AudioCodec::kMpegHAudio:
|
||||
case AudioCodec::kDTS:
|
||||
case AudioCodec::kDTSXP2:
|
||||
return true;
|
||||
|
||||
case AudioCodec::kFLAC:
|
||||
case AudioCodec::kMP3:
|
||||
case AudioCodec::kOpus:
|
||||
case AudioCodec::kVorbis:
|
||||
case AudioCodec::kPCM:
|
||||
case AudioCodec::kPCM_MULAW:
|
||||
case AudioCodec::kPCM_S16BE:
|
||||
case AudioCodec::kPCM_S24BE:
|
||||
case AudioCodec::kPCM_ALAW:
|
||||
case AudioCodec::kUnknown:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
#endif // !BUILDFLAG(USE_PROPRIETARY_CODECS)
|
||||
|
||||
bool IsHevcProfileSupported(const VideoType& type) {
|
||||
return true;
|
||||
}
|
||||
|
||||
bool IsVp9ProfileSupported(const VideoType& type) {
|
||||
#if BUILDFLAG(ENABLE_LIBVPX)
|
||||
// High bit depth capabilities may be toggled via LibVPX config flags.
|
||||
static const bool vpx_supports_hbd = (vpx_codec_get_caps(vpx_codec_vp9_dx()) &
|
||||
VPX_CODEC_CAP_HIGHBITDEPTH) != 0;
|
||||
|
||||
// Color management required for HDR to not look terrible.
|
||||
if (!IsColorSpaceSupported(type.color_space))
|
||||
return false;
|
||||
|
||||
switch (type.profile) {
|
||||
// LibVPX always supports Profiles 0 and 1.
|
||||
case VP9PROFILE_PROFILE0:
|
||||
case VP9PROFILE_PROFILE1:
|
||||
return true;
|
||||
#if BUILDFLAG(IS_ANDROID)
|
||||
case VP9PROFILE_PROFILE2:
|
||||
return vpx_supports_hbd ||
|
||||
MediaCodecUtil::IsVp9Profile2DecoderAvailable();
|
||||
case VP9PROFILE_PROFILE3:
|
||||
return vpx_supports_hbd ||
|
||||
MediaCodecUtil::IsVp9Profile3DecoderAvailable();
|
||||
#else
|
||||
case VP9PROFILE_PROFILE2:
|
||||
case VP9PROFILE_PROFILE3:
|
||||
return vpx_supports_hbd;
|
||||
#endif // BUILDFLAG(IS_ANDROID)
|
||||
default:
|
||||
NOTREACHED();
|
||||
}
|
||||
#endif // BUILDFLAG(ENABLE_LIBVPX)
|
||||
return false;
|
||||
}
|
||||
|
||||
bool IsAV1Supported(const VideoType& type) {
|
||||
// If the AV1 decoder is enabled, or if we're on Q or later, yes.
|
||||
#if BUILDFLAG(ENABLE_AV1_DECODER)
|
||||
return IsColorSpaceSupported(type.color_space);
|
||||
#elif BUILDFLAG(IS_ANDROID)
|
||||
return base::android::BuildInfo::GetInstance()->sdk_int() >=
|
||||
base::android::SDK_VERSION_Q &&
|
||||
IsColorSpaceSupported(type.color_space);
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
bool IsMPEG4Supported() {
|
||||
#if BUILDFLAG(IS_CHROMEOS_ASH)
|
||||
return true;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
bool IsAACSupported(const AudioType& type) {
|
||||
if (type.profile != AudioCodecProfile::kXHE_AAC)
|
||||
return true;
|
||||
#if BUILDFLAG(IS_ANDROID)
|
||||
return base::android::BuildInfo::GetInstance()->sdk_int() >=
|
||||
base::android::SDK_VERSION_P;
|
||||
#elif BUILDFLAG(IS_MAC)
|
||||
if (__builtin_available(macOS 10.15, *))
|
||||
return true;
|
||||
return false;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
bool IsSupportedAudioType(const AudioType& type) {
|
||||
if (auto* media_client = GetMediaClient())
|
||||
return media_client->IsSupportedAudioType(type);
|
||||
return IsDefaultSupportedAudioType(type);
|
||||
}
|
||||
|
||||
bool IsSupportedVideoType(const VideoType& type) {
|
||||
if (auto* media_client = GetMediaClient())
|
||||
return media_client->IsSupportedVideoType(type);
|
||||
return IsDefaultSupportedVideoType(type);
|
||||
}
|
||||
|
||||
// TODO(chcunningham): Add platform specific logic for Android (move from
|
||||
// MimeUtilInternal).
|
||||
bool IsDefaultSupportedVideoType(const VideoType& type) {
|
||||
if (!IsSupportedHdrMetadata(type.hdr_metadata_type))
|
||||
return false;
|
||||
|
||||
#if !BUILDFLAG(USE_PROPRIETARY_CODECS)
|
||||
if (IsVideoCodecProprietary(type.codec))
|
||||
return false;
|
||||
#endif
|
||||
|
||||
switch (type.codec) {
|
||||
case VideoCodec::kH264:
|
||||
case VideoCodec::kVP8:
|
||||
case VideoCodec::kTheora:
|
||||
return true;
|
||||
case VideoCodec::kAV1:
|
||||
return IsAV1Supported(type);
|
||||
case VideoCodec::kVP9:
|
||||
return IsVp9ProfileSupported(type);
|
||||
case VideoCodec::kHEVC:
|
||||
return IsHevcProfileSupported(type);
|
||||
case VideoCodec::kMPEG4:
|
||||
return IsMPEG4Supported();
|
||||
case VideoCodec::kUnknown:
|
||||
case VideoCodec::kVC1:
|
||||
case VideoCodec::kMPEG2:
|
||||
case VideoCodec::kDolbyVision:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
bool IsDefaultSupportedAudioType(const AudioType& type) {
|
||||
if (type.spatial_rendering)
|
||||
return false;
|
||||
|
||||
#if !BUILDFLAG(USE_PROPRIETARY_CODECS)
|
||||
if (IsAudioCodecProprietary(type.codec))
|
||||
return false;
|
||||
#endif
|
||||
|
||||
switch (type.codec) {
|
||||
case AudioCodec::kAAC:
|
||||
return IsAACSupported(type);
|
||||
case AudioCodec::kFLAC:
|
||||
case AudioCodec::kMP3:
|
||||
case AudioCodec::kOpus:
|
||||
case AudioCodec::kPCM:
|
||||
case AudioCodec::kPCM_MULAW:
|
||||
case AudioCodec::kPCM_S16BE:
|
||||
case AudioCodec::kPCM_S24BE:
|
||||
case AudioCodec::kPCM_ALAW:
|
||||
case AudioCodec::kVorbis:
|
||||
return true;
|
||||
case AudioCodec::kAMR_NB:
|
||||
case AudioCodec::kAMR_WB:
|
||||
case AudioCodec::kGSM_MS:
|
||||
case AudioCodec::kEAC3:
|
||||
case AudioCodec::kALAC:
|
||||
case AudioCodec::kAC3:
|
||||
case AudioCodec::kMpegHAudio:
|
||||
case AudioCodec::kUnknown:
|
||||
return false;
|
||||
case AudioCodec::kDTS:
|
||||
case AudioCodec::kDTSXP2:
|
||||
#if BUILDFLAG(ENABLE_PLATFORM_DTS_AUDIO)
|
||||
return true;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
bool IsBuiltInVideoCodec(VideoCodec codec) {
|
||||
#if BUILDFLAG(ENABLE_FFMPEG_VIDEO_DECODERS)
|
||||
if (codec == VideoCodec::kTheora)
|
||||
return true;
|
||||
if (codec == VideoCodec::kVP8)
|
||||
return true;
|
||||
#if BUILDFLAG(USE_PROPRIETARY_CODECS)
|
||||
if (codec == VideoCodec::kH264)
|
||||
return true;
|
||||
#endif // BUILDFLAG(USE_PROPRIETARY_CODECS)
|
||||
#endif // BUILDFLAG(ENABLE_FFMPEG_VIDEO_DECODERS)
|
||||
#if BUILDFLAG(ENABLE_LIBVPX)
|
||||
if (codec == VideoCodec::kVP8 || codec == VideoCodec::kVP9)
|
||||
return true;
|
||||
#endif // BUILDFLAG(ENABLE_LIBVPX)
|
||||
#if BUILDFLAG(ENABLE_AV1_DECODER)
|
||||
if (codec == VideoCodec::kAV1)
|
||||
return true;
|
||||
#endif // BUILDFLAG(ENABLE_AV1_DECODER)
|
||||
return false;
|
||||
}
|
||||
|
||||
void UpdateDefaultSupportedVideoProfiles(
|
||||
const base::flat_set<media::VideoCodecProfile>& profiles) {
|
||||
GetSupplementalProfileCache()->UpdateCache(profiles);
|
||||
}
|
||||
|
||||
} // namespace media
|
927
arm/android/media/ffmpeg/ffmpeg_common.cc
Normal file
927
arm/android/media/ffmpeg/ffmpeg_common.cc
Normal file
|
@ -0,0 +1,927 @@
|
|||
// Copyright 2012 The Chromium Authors
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#include "media/ffmpeg/ffmpeg_common.h"
|
||||
|
||||
#include "base/hash/sha1.h"
|
||||
#include "base/logging.h"
|
||||
#include "base/strings/string_number_conversions.h"
|
||||
#include "base/strings/string_split.h"
|
||||
#include "base/strings/string_util.h"
|
||||
#include "build/build_config.h"
|
||||
#include "media/base/audio_decoder_config.h"
|
||||
#include "media/base/decoder_buffer.h"
|
||||
#include "media/base/encryption_scheme.h"
|
||||
#include "media/base/media_util.h"
|
||||
#include "media/base/video_aspect_ratio.h"
|
||||
#include "media/base/video_decoder_config.h"
|
||||
#include "media/base/video_util.h"
|
||||
#include "media/formats/mp4/box_definitions.h"
|
||||
#include "media/media_buildflags.h"
|
||||
|
||||
#if BUILDFLAG(USE_PROPRIETARY_CODECS)
|
||||
#include "media/formats/mp4/aac.h"
|
||||
#if BUILDFLAG(ENABLE_PLATFORM_HEVC)
|
||||
#include "media/formats/mp4/hevc.h"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
namespace media {
|
||||
|
||||
namespace {
|
||||
|
||||
EncryptionScheme GetEncryptionScheme(const AVStream* stream) {
|
||||
AVDictionaryEntry* key =
|
||||
av_dict_get(stream->metadata, "enc_key_id", nullptr, 0);
|
||||
return key ? EncryptionScheme::kCenc : EncryptionScheme::kUnencrypted;
|
||||
}
|
||||
|
||||
VideoDecoderConfig::AlphaMode GetAlphaMode(const AVStream* stream) {
|
||||
AVDictionaryEntry* alpha_mode =
|
||||
av_dict_get(stream->metadata, "alpha_mode", nullptr, 0);
|
||||
return alpha_mode && !strcmp(alpha_mode->value, "1")
|
||||
? VideoDecoderConfig::AlphaMode::kHasAlpha
|
||||
: VideoDecoderConfig::AlphaMode::kIsOpaque;
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
// Alignment requirement by FFmpeg for input and output buffers. This need to
|
||||
// be updated to match FFmpeg when it changes.
|
||||
#if defined(ARCH_CPU_ARM_FAMILY)
|
||||
static const int kFFmpegBufferAddressAlignment = 16;
|
||||
#else
|
||||
static const int kFFmpegBufferAddressAlignment = 32;
|
||||
#endif
|
||||
|
||||
// Allows faster SIMD YUV convert. Also, FFmpeg overreads/-writes occasionally.
|
||||
// See video_get_buffer() in libavcodec/utils.c.
|
||||
static const int kFFmpegOutputBufferPaddingSize = 16;
|
||||
|
||||
static_assert(VideoFrame::kFrameSizePadding >= kFFmpegOutputBufferPaddingSize,
|
||||
"VideoFrame padding size does not fit ffmpeg requirement");
|
||||
|
||||
static_assert(
|
||||
VideoFrame::kFrameAddressAlignment >= kFFmpegBufferAddressAlignment &&
|
||||
VideoFrame::kFrameAddressAlignment % kFFmpegBufferAddressAlignment == 0,
|
||||
"VideoFrame frame address alignment does not fit ffmpeg requirement");
|
||||
|
||||
static const AVRational kMicrosBase = { 1, base::Time::kMicrosecondsPerSecond };
|
||||
|
||||
base::TimeDelta ConvertFromTimeBase(const AVRational& time_base,
|
||||
int64_t timestamp) {
|
||||
int64_t microseconds = av_rescale_q(timestamp, time_base, kMicrosBase);
|
||||
return base::Microseconds(microseconds);
|
||||
}
|
||||
|
||||
int64_t ConvertToTimeBase(const AVRational& time_base,
|
||||
const base::TimeDelta& timestamp) {
|
||||
return av_rescale_q(timestamp.InMicroseconds(), kMicrosBase, time_base);
|
||||
}
|
||||
|
||||
AudioCodec CodecIDToAudioCodec(AVCodecID codec_id) {
|
||||
switch (codec_id) {
|
||||
case AV_CODEC_ID_AAC:
|
||||
return AudioCodec::kAAC;
|
||||
#if BUILDFLAG(ENABLE_PLATFORM_AC3_EAC3_AUDIO)
|
||||
case AV_CODEC_ID_AC3:
|
||||
return AudioCodec::kAC3;
|
||||
case AV_CODEC_ID_EAC3:
|
||||
return AudioCodec::kEAC3;
|
||||
#endif
|
||||
case AV_CODEC_ID_MP3:
|
||||
return AudioCodec::kMP3;
|
||||
case AV_CODEC_ID_VORBIS:
|
||||
return AudioCodec::kVorbis;
|
||||
case AV_CODEC_ID_PCM_U8:
|
||||
case AV_CODEC_ID_PCM_S16LE:
|
||||
case AV_CODEC_ID_PCM_S24LE:
|
||||
case AV_CODEC_ID_PCM_S32LE:
|
||||
case AV_CODEC_ID_PCM_F32LE:
|
||||
return AudioCodec::kPCM;
|
||||
case AV_CODEC_ID_PCM_S16BE:
|
||||
return AudioCodec::kPCM_S16BE;
|
||||
case AV_CODEC_ID_PCM_S24BE:
|
||||
return AudioCodec::kPCM_S24BE;
|
||||
case AV_CODEC_ID_FLAC:
|
||||
return AudioCodec::kFLAC;
|
||||
case AV_CODEC_ID_PCM_ALAW:
|
||||
return AudioCodec::kPCM_ALAW;
|
||||
case AV_CODEC_ID_PCM_MULAW:
|
||||
return AudioCodec::kPCM_MULAW;
|
||||
case AV_CODEC_ID_OPUS:
|
||||
return AudioCodec::kOpus;
|
||||
case AV_CODEC_ID_ALAC:
|
||||
return AudioCodec::kALAC;
|
||||
#if BUILDFLAG(ENABLE_PLATFORM_MPEG_H_AUDIO)
|
||||
case AV_CODEC_ID_MPEGH_3D_AUDIO:
|
||||
return AudioCodec::kMpegHAudio;
|
||||
#endif
|
||||
default:
|
||||
DVLOG(1) << "Unknown audio CodecID: " << codec_id;
|
||||
}
|
||||
return AudioCodec::kUnknown;
|
||||
}
|
||||
|
||||
AVCodecID AudioCodecToCodecID(AudioCodec audio_codec,
|
||||
SampleFormat sample_format) {
|
||||
switch (audio_codec) {
|
||||
case AudioCodec::kAAC:
|
||||
return AV_CODEC_ID_AAC;
|
||||
case AudioCodec::kALAC:
|
||||
return AV_CODEC_ID_ALAC;
|
||||
case AudioCodec::kMP3:
|
||||
return AV_CODEC_ID_MP3;
|
||||
case AudioCodec::kPCM:
|
||||
switch (sample_format) {
|
||||
case kSampleFormatU8:
|
||||
return AV_CODEC_ID_PCM_U8;
|
||||
case kSampleFormatS16:
|
||||
return AV_CODEC_ID_PCM_S16LE;
|
||||
case kSampleFormatS24:
|
||||
return AV_CODEC_ID_PCM_S24LE;
|
||||
case kSampleFormatS32:
|
||||
return AV_CODEC_ID_PCM_S32LE;
|
||||
case kSampleFormatF32:
|
||||
return AV_CODEC_ID_PCM_F32LE;
|
||||
default:
|
||||
DVLOG(1) << "Unsupported sample format: " << sample_format;
|
||||
}
|
||||
break;
|
||||
case AudioCodec::kPCM_S16BE:
|
||||
return AV_CODEC_ID_PCM_S16BE;
|
||||
case AudioCodec::kPCM_S24BE:
|
||||
return AV_CODEC_ID_PCM_S24BE;
|
||||
case AudioCodec::kVorbis:
|
||||
return AV_CODEC_ID_VORBIS;
|
||||
case AudioCodec::kFLAC:
|
||||
return AV_CODEC_ID_FLAC;
|
||||
case AudioCodec::kPCM_ALAW:
|
||||
return AV_CODEC_ID_PCM_ALAW;
|
||||
case AudioCodec::kPCM_MULAW:
|
||||
return AV_CODEC_ID_PCM_MULAW;
|
||||
case AudioCodec::kOpus:
|
||||
return AV_CODEC_ID_OPUS;
|
||||
#if BUILDFLAG(ENABLE_PLATFORM_MPEG_H_AUDIO)
|
||||
case AudioCodec::kMpegHAudio:
|
||||
return AV_CODEC_ID_MPEGH_3D_AUDIO;
|
||||
#endif
|
||||
default:
|
||||
DVLOG(1) << "Unknown AudioCodec: " << audio_codec;
|
||||
}
|
||||
return AV_CODEC_ID_NONE;
|
||||
}
|
||||
|
||||
// Converts an FFmpeg video codec ID into its corresponding supported codec id.
|
||||
static VideoCodec CodecIDToVideoCodec(AVCodecID codec_id) {
|
||||
switch (codec_id) {
|
||||
case AV_CODEC_ID_H264:
|
||||
return VideoCodec::kH264;
|
||||
#if BUILDFLAG(ENABLE_PLATFORM_HEVC)
|
||||
case AV_CODEC_ID_HEVC:
|
||||
return VideoCodec::kHEVC;
|
||||
#endif
|
||||
case AV_CODEC_ID_THEORA:
|
||||
return VideoCodec::kTheora;
|
||||
case AV_CODEC_ID_MPEG4:
|
||||
return VideoCodec::kMPEG4;
|
||||
case AV_CODEC_ID_VP8:
|
||||
return VideoCodec::kVP8;
|
||||
case AV_CODEC_ID_VP9:
|
||||
return VideoCodec::kVP9;
|
||||
case AV_CODEC_ID_AV1:
|
||||
return VideoCodec::kAV1;
|
||||
default:
|
||||
DVLOG(1) << "Unknown video CodecID: " << codec_id;
|
||||
}
|
||||
return VideoCodec::kUnknown;
|
||||
}
|
||||
|
||||
AVCodecID VideoCodecToCodecID(VideoCodec video_codec) {
|
||||
switch (video_codec) {
|
||||
case VideoCodec::kH264:
|
||||
return AV_CODEC_ID_H264;
|
||||
#if BUILDFLAG(ENABLE_PLATFORM_HEVC)
|
||||
case VideoCodec::kHEVC:
|
||||
return AV_CODEC_ID_HEVC;
|
||||
#endif
|
||||
case VideoCodec::kTheora:
|
||||
return AV_CODEC_ID_THEORA;
|
||||
case VideoCodec::kMPEG4:
|
||||
return AV_CODEC_ID_MPEG4;
|
||||
case VideoCodec::kVP8:
|
||||
return AV_CODEC_ID_VP8;
|
||||
case VideoCodec::kVP9:
|
||||
return AV_CODEC_ID_VP9;
|
||||
case VideoCodec::kAV1:
|
||||
return AV_CODEC_ID_AV1;
|
||||
default:
|
||||
DVLOG(1) << "Unknown VideoCodec: " << video_codec;
|
||||
}
|
||||
return AV_CODEC_ID_NONE;
|
||||
}
|
||||
|
||||
static VideoCodecProfile ProfileIDToVideoCodecProfile(int profile) {
|
||||
// Clear out the CONSTRAINED & INTRA flags which are strict subsets of the
|
||||
// corresponding profiles with which they're used.
|
||||
profile &= ~FF_PROFILE_H264_CONSTRAINED;
|
||||
profile &= ~FF_PROFILE_H264_INTRA;
|
||||
switch (profile) {
|
||||
case FF_PROFILE_H264_BASELINE:
|
||||
return H264PROFILE_BASELINE;
|
||||
case FF_PROFILE_H264_MAIN:
|
||||
return H264PROFILE_MAIN;
|
||||
case FF_PROFILE_H264_EXTENDED:
|
||||
return H264PROFILE_EXTENDED;
|
||||
case FF_PROFILE_H264_HIGH:
|
||||
return H264PROFILE_HIGH;
|
||||
case FF_PROFILE_H264_HIGH_10:
|
||||
return H264PROFILE_HIGH10PROFILE;
|
||||
case FF_PROFILE_H264_HIGH_422:
|
||||
return H264PROFILE_HIGH422PROFILE;
|
||||
case FF_PROFILE_H264_HIGH_444_PREDICTIVE:
|
||||
return H264PROFILE_HIGH444PREDICTIVEPROFILE;
|
||||
default:
|
||||
DVLOG(1) << "Unknown profile id: " << profile;
|
||||
}
|
||||
return VIDEO_CODEC_PROFILE_UNKNOWN;
|
||||
}
|
||||
|
||||
static int VideoCodecProfileToProfileID(VideoCodecProfile profile) {
|
||||
switch (profile) {
|
||||
case H264PROFILE_BASELINE:
|
||||
return FF_PROFILE_H264_BASELINE;
|
||||
case H264PROFILE_MAIN:
|
||||
return FF_PROFILE_H264_MAIN;
|
||||
case H264PROFILE_EXTENDED:
|
||||
return FF_PROFILE_H264_EXTENDED;
|
||||
case H264PROFILE_HIGH:
|
||||
return FF_PROFILE_H264_HIGH;
|
||||
case H264PROFILE_HIGH10PROFILE:
|
||||
return FF_PROFILE_H264_HIGH_10;
|
||||
case H264PROFILE_HIGH422PROFILE:
|
||||
return FF_PROFILE_H264_HIGH_422;
|
||||
case H264PROFILE_HIGH444PREDICTIVEPROFILE:
|
||||
return FF_PROFILE_H264_HIGH_444_PREDICTIVE;
|
||||
default:
|
||||
DVLOG(1) << "Unknown VideoCodecProfile: " << profile;
|
||||
}
|
||||
return FF_PROFILE_UNKNOWN;
|
||||
}
|
||||
|
||||
SampleFormat AVSampleFormatToSampleFormat(AVSampleFormat sample_format,
|
||||
AVCodecID codec_id) {
|
||||
switch (sample_format) {
|
||||
case AV_SAMPLE_FMT_U8:
|
||||
return kSampleFormatU8;
|
||||
case AV_SAMPLE_FMT_S16:
|
||||
return kSampleFormatS16;
|
||||
case AV_SAMPLE_FMT_S32:
|
||||
if (codec_id == AV_CODEC_ID_PCM_S24LE)
|
||||
return kSampleFormatS24;
|
||||
else
|
||||
return kSampleFormatS32;
|
||||
case AV_SAMPLE_FMT_FLT:
|
||||
return kSampleFormatF32;
|
||||
case AV_SAMPLE_FMT_S16P:
|
||||
return kSampleFormatPlanarS16;
|
||||
case AV_SAMPLE_FMT_S32P:
|
||||
return kSampleFormatPlanarS32;
|
||||
case AV_SAMPLE_FMT_FLTP:
|
||||
return kSampleFormatPlanarF32;
|
||||
default:
|
||||
DVLOG(1) << "Unknown AVSampleFormat: " << sample_format;
|
||||
}
|
||||
return kUnknownSampleFormat;
|
||||
}
|
||||
|
||||
static AVSampleFormat SampleFormatToAVSampleFormat(SampleFormat sample_format) {
|
||||
switch (sample_format) {
|
||||
case kSampleFormatU8:
|
||||
return AV_SAMPLE_FMT_U8;
|
||||
case kSampleFormatS16:
|
||||
return AV_SAMPLE_FMT_S16;
|
||||
// pcm_s24le is treated as a codec with sample format s32 in ffmpeg
|
||||
case kSampleFormatS24:
|
||||
case kSampleFormatS32:
|
||||
return AV_SAMPLE_FMT_S32;
|
||||
case kSampleFormatF32:
|
||||
return AV_SAMPLE_FMT_FLT;
|
||||
case kSampleFormatPlanarS16:
|
||||
return AV_SAMPLE_FMT_S16P;
|
||||
case kSampleFormatPlanarF32:
|
||||
return AV_SAMPLE_FMT_FLTP;
|
||||
default:
|
||||
DVLOG(1) << "Unknown SampleFormat: " << sample_format;
|
||||
}
|
||||
return AV_SAMPLE_FMT_NONE;
|
||||
}
|
||||
|
||||
bool AVCodecContextToAudioDecoderConfig(const AVCodecContext* codec_context,
|
||||
EncryptionScheme encryption_scheme,
|
||||
AudioDecoderConfig* config) {
|
||||
DCHECK_EQ(codec_context->codec_type, AVMEDIA_TYPE_AUDIO);
|
||||
|
||||
AudioCodec codec = CodecIDToAudioCodec(codec_context->codec_id);
|
||||
|
||||
SampleFormat sample_format = AVSampleFormatToSampleFormat(
|
||||
codec_context->sample_fmt, codec_context->codec_id);
|
||||
|
||||
ChannelLayout channel_layout =
|
||||
codec_context->ch_layout.nb_channels > 8
|
||||
? CHANNEL_LAYOUT_DISCRETE
|
||||
: ChannelLayoutToChromeChannelLayout(
|
||||
codec_context->ch_layout.u.mask,
|
||||
codec_context->ch_layout.nb_channels);
|
||||
|
||||
switch (codec) {
|
||||
// For AC3/EAC3 we enable only demuxing, but not decoding, so FFmpeg does
|
||||
// not fill |sample_fmt|.
|
||||
case AudioCodec::kAC3:
|
||||
case AudioCodec::kEAC3:
|
||||
#if BUILDFLAG(ENABLE_PLATFORM_AC3_EAC3_AUDIO)
|
||||
// The spec for AC3/EAC3 audio is ETSI TS 102 366. According to sections
|
||||
// F.3.1 and F.5.1 in that spec the sample_format for AC3/EAC3 must be 16.
|
||||
sample_format = kSampleFormatS16;
|
||||
#else
|
||||
NOTREACHED();
|
||||
#endif
|
||||
break;
|
||||
#if BUILDFLAG(ENABLE_PLATFORM_MPEG_H_AUDIO)
|
||||
case AudioCodec::kMpegHAudio:
|
||||
channel_layout = CHANNEL_LAYOUT_BITSTREAM;
|
||||
sample_format = kSampleFormatMpegHAudio;
|
||||
break;
|
||||
#endif
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
base::TimeDelta seek_preroll;
|
||||
if (codec_context->seek_preroll > 0) {
|
||||
seek_preroll = base::Microseconds(codec_context->seek_preroll * 1000000.0 /
|
||||
codec_context->sample_rate);
|
||||
}
|
||||
|
||||
// AVStream occasionally has invalid extra data. See http://crbug.com/517163
|
||||
if ((codec_context->extradata_size == 0) !=
|
||||
(codec_context->extradata == nullptr)) {
|
||||
LOG(ERROR) << __func__
|
||||
<< (codec_context->extradata == nullptr ? " NULL" : " Non-NULL")
|
||||
<< " extra data cannot have size of "
|
||||
<< codec_context->extradata_size << ".";
|
||||
return false;
|
||||
}
|
||||
|
||||
std::vector<uint8_t> extra_data;
|
||||
if (codec_context->extradata_size > 0) {
|
||||
extra_data.assign(codec_context->extradata,
|
||||
codec_context->extradata + codec_context->extradata_size);
|
||||
}
|
||||
|
||||
config->Initialize(codec, sample_format, channel_layout, codec_context->sample_rate,
|
||||
extra_data, encryption_scheme, seek_preroll,
|
||||
codec_context->delay);
|
||||
if (channel_layout == CHANNEL_LAYOUT_DISCRETE)
|
||||
config->SetChannelsForDiscrete(codec_context->ch_layout.nb_channels);
|
||||
|
||||
#if BUILDFLAG(ENABLE_PLATFORM_AC3_EAC3_AUDIO)
|
||||
// These are bitstream formats unknown to ffmpeg, so they don't have
|
||||
// a known sample format size.
|
||||
if (codec == AudioCodec::kAC3 || codec == AudioCodec::kEAC3)
|
||||
return true;
|
||||
#endif
|
||||
#if BUILDFLAG(ENABLE_PLATFORM_MPEG_H_AUDIO)
|
||||
if (codec == AudioCodec::kMpegHAudio)
|
||||
return true;
|
||||
#endif
|
||||
|
||||
#if BUILDFLAG(USE_PROPRIETARY_CODECS)
|
||||
if (codec == AudioCodec::kAAC) {
|
||||
config->set_aac_extra_data(extra_data);
|
||||
|
||||
// TODO(dalecurtis): Just use the profile from the codec context if ffmpeg
|
||||
// ever starts supporting xHE-AAC.
|
||||
if (codec_context->profile == FF_PROFILE_UNKNOWN) {
|
||||
// Errors aren't fatal here, so just drop any MediaLog messages.
|
||||
NullMediaLog media_log;
|
||||
mp4::AAC aac_parser;
|
||||
if (aac_parser.Parse(extra_data, &media_log))
|
||||
config->set_profile(aac_parser.GetProfile());
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
// Verify that AudioConfig.bits_per_channel was calculated correctly for
|
||||
// codecs that have |sample_fmt| set by FFmpeg.
|
||||
DCHECK_EQ(av_get_bytes_per_sample(codec_context->sample_fmt) * 8,
|
||||
config->bits_per_channel());
|
||||
return true;
|
||||
}
|
||||
|
||||
std::unique_ptr<AVCodecContext, ScopedPtrAVFreeContext>
|
||||
AVStreamToAVCodecContext(const AVStream* stream) {
|
||||
std::unique_ptr<AVCodecContext, ScopedPtrAVFreeContext> codec_context(
|
||||
avcodec_alloc_context3(nullptr));
|
||||
if (avcodec_parameters_to_context(codec_context.get(), stream->codecpar) <
|
||||
0) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
return codec_context;
|
||||
}
|
||||
|
||||
bool AVStreamToAudioDecoderConfig(const AVStream* stream,
|
||||
AudioDecoderConfig* config) {
|
||||
std::unique_ptr<AVCodecContext, ScopedPtrAVFreeContext> codec_context(
|
||||
AVStreamToAVCodecContext(stream));
|
||||
if (!codec_context)
|
||||
return false;
|
||||
|
||||
return AVCodecContextToAudioDecoderConfig(
|
||||
codec_context.get(), GetEncryptionScheme(stream), config);
|
||||
}
|
||||
|
||||
void AudioDecoderConfigToAVCodecContext(const AudioDecoderConfig& config,
|
||||
AVCodecContext* codec_context) {
|
||||
codec_context->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
codec_context->codec_id = AudioCodecToCodecID(config.codec(),
|
||||
config.sample_format());
|
||||
codec_context->sample_fmt = SampleFormatToAVSampleFormat(
|
||||
config.sample_format());
|
||||
|
||||
// TODO(scherkus): should we set |channel_layout|? I'm not sure if FFmpeg uses
|
||||
// said information to decode.
|
||||
codec_context->ch_layout.nb_channels = config.channels();
|
||||
codec_context->sample_rate = config.samples_per_second();
|
||||
|
||||
if (config.extra_data().empty()) {
|
||||
codec_context->extradata = nullptr;
|
||||
codec_context->extradata_size = 0;
|
||||
} else {
|
||||
codec_context->extradata_size = config.extra_data().size();
|
||||
codec_context->extradata = reinterpret_cast<uint8_t*>(
|
||||
av_malloc(config.extra_data().size() + AV_INPUT_BUFFER_PADDING_SIZE));
|
||||
memcpy(codec_context->extradata, &config.extra_data()[0],
|
||||
config.extra_data().size());
|
||||
memset(codec_context->extradata + config.extra_data().size(), '\0',
|
||||
AV_INPUT_BUFFER_PADDING_SIZE);
|
||||
}
|
||||
}
|
||||
|
||||
bool AVStreamToVideoDecoderConfig(const AVStream* stream,
|
||||
VideoDecoderConfig* config) {
|
||||
std::unique_ptr<AVCodecContext, ScopedPtrAVFreeContext> codec_context(
|
||||
AVStreamToAVCodecContext(stream));
|
||||
if (!codec_context)
|
||||
return false;
|
||||
|
||||
// TODO(vrk): This assumes decoded frame data starts at (0, 0), which is true
|
||||
// for now, but may not always be true forever. Fix this in the future.
|
||||
gfx::Rect visible_rect(codec_context->width, codec_context->height);
|
||||
gfx::Size coded_size = visible_rect.size();
|
||||
gfx::HDRMetadata hdr_metadata;
|
||||
|
||||
// In some cases a container may have a DAR but no PAR, but FFmpeg translates
|
||||
// everything to PAR. It is possible to get the render width and height, but I
|
||||
// didn't find a way to determine whether that should be preferred to the PAR.
|
||||
VideoAspectRatio aspect_ratio;
|
||||
if (stream->sample_aspect_ratio.num) {
|
||||
aspect_ratio = VideoAspectRatio::PAR(stream->sample_aspect_ratio.num,
|
||||
stream->sample_aspect_ratio.den);
|
||||
} else if (codec_context->sample_aspect_ratio.num) {
|
||||
aspect_ratio =
|
||||
VideoAspectRatio::PAR(codec_context->sample_aspect_ratio.num,
|
||||
codec_context->sample_aspect_ratio.den);
|
||||
}
|
||||
|
||||
// Used to guess color space and to create the config. The first use should
|
||||
// probably change to coded size, and the second should be removed as part of
|
||||
// crbug.com/1214061.
|
||||
gfx::Size natural_size = aspect_ratio.GetNaturalSize(visible_rect);
|
||||
|
||||
VideoCodec codec = CodecIDToVideoCodec(codec_context->codec_id);
|
||||
|
||||
// Without the ffmpeg decoder configured, libavformat is unable to get the
|
||||
// profile, format, or coded size. So choose sensible defaults and let
|
||||
// decoders fail later if the configuration is actually unsupported.
|
||||
//
|
||||
// TODO(chcunningham): We need real profiles for all of the codecs below to
|
||||
// actually handle capabilities requests correctly. http://crbug.com/784610
|
||||
VideoCodecProfile profile = VIDEO_CODEC_PROFILE_UNKNOWN;
|
||||
|
||||
// Prefer the color space found by libavcodec if available
|
||||
VideoColorSpace color_space =
|
||||
VideoColorSpace(codec_context->color_primaries, codec_context->color_trc,
|
||||
codec_context->colorspace,
|
||||
codec_context->color_range == AVCOL_RANGE_JPEG
|
||||
? gfx::ColorSpace::RangeID::FULL
|
||||
: gfx::ColorSpace::RangeID::LIMITED);
|
||||
|
||||
VideoDecoderConfig::AlphaMode alpha_mode = GetAlphaMode(stream);
|
||||
|
||||
switch (codec) {
|
||||
#if BUILDFLAG(USE_PROPRIETARY_CODECS)
|
||||
case VideoCodec::kH264: {
|
||||
profile = ProfileIDToVideoCodecProfile(codec_context->profile);
|
||||
// if the profile is still unknown, try to extract it from
|
||||
// the extradata using the internal parser
|
||||
if (profile == VIDEO_CODEC_PROFILE_UNKNOWN && codec_context->extradata &&
|
||||
codec_context->extradata_size) {
|
||||
mp4::AVCDecoderConfigurationRecord avc_config;
|
||||
if (avc_config.Parse(codec_context->extradata,
|
||||
codec_context->extradata_size)) {
|
||||
profile = ProfileIDToVideoCodecProfile(avc_config.profile_indication);
|
||||
}
|
||||
}
|
||||
// All the heuristics failed, let's assign a default profile
|
||||
if (profile == VIDEO_CODEC_PROFILE_UNKNOWN)
|
||||
profile = H264PROFILE_BASELINE;
|
||||
break;
|
||||
}
|
||||
#if BUILDFLAG(ENABLE_PLATFORM_HEVC)
|
||||
case VideoCodec::kHEVC: {
|
||||
int hevc_profile = -1;
|
||||
// We need to parse extradata each time, because we wont add ffmpeg
|
||||
// hevc decoder & parser to chromium and codec_context->profile
|
||||
// should always be FF_PROFILE_UNKNOWN (-99) here
|
||||
if (codec_context->extradata && codec_context->extradata_size) {
|
||||
mp4::HEVCDecoderConfigurationRecord hevc_config;
|
||||
if (hevc_config.Parse(codec_context->extradata,
|
||||
codec_context->extradata_size)) {
|
||||
hevc_profile = hevc_config.general_profile_idc;
|
||||
#if BUILDFLAG(ENABLE_HEVC_PARSER_AND_HW_DECODER)
|
||||
if (!color_space.IsSpecified()) {
|
||||
// We should try to parsed color space from SPS if the
|
||||
// result from libavcodec is not specified in case
|
||||
// that some encoder not write extra colorspace info to
|
||||
// the container
|
||||
color_space = hevc_config.GetColorSpace();
|
||||
}
|
||||
hdr_metadata = hevc_config.GetHDRMetadata();
|
||||
alpha_mode = hevc_config.GetAlphaMode();
|
||||
#endif // BUILDFLAG(ENABLE_HEVC_PARSER_AND_HW_DECODER)
|
||||
}
|
||||
}
|
||||
// The values of general_profile_idc are taken from the HEVC standard, see
|
||||
// the latest https://www.itu.int/rec/T-REC-H.265/en
|
||||
switch (hevc_profile) {
|
||||
case 1:
|
||||
profile = HEVCPROFILE_MAIN;
|
||||
break;
|
||||
case 2:
|
||||
profile = HEVCPROFILE_MAIN10;
|
||||
break;
|
||||
case 3:
|
||||
profile = HEVCPROFILE_MAIN_STILL_PICTURE;
|
||||
break;
|
||||
case 4:
|
||||
profile = HEVCPROFILE_REXT;
|
||||
break;
|
||||
case 5:
|
||||
profile = HEVCPROFILE_HIGH_THROUGHPUT;
|
||||
break;
|
||||
case 6:
|
||||
profile = HEVCPROFILE_MULTIVIEW_MAIN;
|
||||
break;
|
||||
case 7:
|
||||
profile = HEVCPROFILE_SCALABLE_MAIN;
|
||||
break;
|
||||
case 8:
|
||||
profile = HEVCPROFILE_3D_MAIN;
|
||||
break;
|
||||
case 9:
|
||||
profile = HEVCPROFILE_SCREEN_EXTENDED;
|
||||
break;
|
||||
case 10:
|
||||
profile = HEVCPROFILE_SCALABLE_REXT;
|
||||
break;
|
||||
case 11:
|
||||
profile = HEVCPROFILE_HIGH_THROUGHPUT_SCREEN_EXTENDED;
|
||||
break;
|
||||
default:
|
||||
// Always assign a default if all heuristics fail.
|
||||
profile = HEVCPROFILE_MAIN;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
#endif // BUILDFLAG(ENABLE_PLATFORM_HEVC)
|
||||
#endif // BUILDFLAG(USE_PROPRIETARY_CODECS)
|
||||
case VideoCodec::kVP8:
|
||||
profile = VP8PROFILE_ANY;
|
||||
break;
|
||||
case VideoCodec::kVP9:
|
||||
switch (codec_context->profile) {
|
||||
case FF_PROFILE_VP9_0:
|
||||
profile = VP9PROFILE_PROFILE0;
|
||||
break;
|
||||
case FF_PROFILE_VP9_1:
|
||||
profile = VP9PROFILE_PROFILE1;
|
||||
break;
|
||||
case FF_PROFILE_VP9_2:
|
||||
profile = VP9PROFILE_PROFILE2;
|
||||
break;
|
||||
case FF_PROFILE_VP9_3:
|
||||
profile = VP9PROFILE_PROFILE3;
|
||||
break;
|
||||
default:
|
||||
profile = VP9PROFILE_MIN;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case VideoCodec::kAV1:
|
||||
profile = AV1PROFILE_PROFILE_MAIN;
|
||||
break;
|
||||
case VideoCodec::kTheora:
|
||||
profile = THEORAPROFILE_ANY;
|
||||
break;
|
||||
default:
|
||||
profile = ProfileIDToVideoCodecProfile(codec_context->profile);
|
||||
}
|
||||
|
||||
void* display_matrix =
|
||||
av_stream_get_side_data(stream, AV_PKT_DATA_DISPLAYMATRIX, nullptr);
|
||||
|
||||
VideoTransformation video_transformation = VideoTransformation();
|
||||
if (display_matrix) {
|
||||
video_transformation = VideoTransformation::FromFFmpegDisplayMatrix(
|
||||
static_cast<int32_t*>(display_matrix));
|
||||
}
|
||||
|
||||
if (!color_space.IsSpecified()) {
|
||||
// VP9 frames may have color information, but that information cannot
|
||||
// express new color spaces, like HDR. For that reason, color space
|
||||
// information from the container should take precedence over color space
|
||||
// information from the VP9 stream. However, if we infer the color space
|
||||
// based on resolution here, it looks as if it came from the container.
|
||||
// Since this inference causes color shifts and is slated to go away
|
||||
// we just skip it for VP9 and leave the color space undefined, which
|
||||
// will make the VP9 decoder behave correctly..
|
||||
// We also ignore the resolution for AV1, since it's new and it's easy
|
||||
// to make it behave correctly from the get-go.
|
||||
// TODO(hubbe): Skip this inference for all codecs.
|
||||
if (codec_context->codec_id != AV_CODEC_ID_VP9 &&
|
||||
codec_context->codec_id != AV_CODEC_ID_AV1) {
|
||||
// Otherwise, assume that SD video is usually Rec.601, and HD is usually
|
||||
// Rec.709.
|
||||
color_space = (natural_size.height() < 720) ? VideoColorSpace::REC601()
|
||||
: VideoColorSpace::REC709();
|
||||
}
|
||||
} else if (codec_context->codec_id == AV_CODEC_ID_H264 &&
|
||||
codec_context->colorspace == AVCOL_SPC_RGB &&
|
||||
AVPixelFormatToVideoPixelFormat(codec_context->pix_fmt) ==
|
||||
PIXEL_FORMAT_I420) {
|
||||
// Some H.264 videos contain a VUI that specifies a color matrix of GBR,
|
||||
// when they are actually ordinary YUV. Only 4:2:0 formats are checked,
|
||||
// because GBR is reasonable for 4:4:4 content. See crbug.com/1067377.
|
||||
color_space = VideoColorSpace::REC709();
|
||||
} else if (codec_context->codec_id == AV_CODEC_ID_HEVC &&
|
||||
color_space.primaries == VideoColorSpace::PrimaryID::INVALID &&
|
||||
color_space.transfer == VideoColorSpace::TransferID::BT709 &&
|
||||
color_space.matrix == VideoColorSpace::MatrixID::UNSPECIFIED &&
|
||||
color_space.range == gfx::ColorSpace::RangeID::LIMITED &&
|
||||
AVPixelFormatToVideoPixelFormat(codec_context->pix_fmt) ==
|
||||
PIXEL_FORMAT_I420) {
|
||||
// Some HEVC SDR content encoded by the Adobe Premiere HW HEVC encoder has
|
||||
// invalid primaries but valid transfer and matrix, this will cause
|
||||
// IsHevcProfileSupported return "false" and fail to playback.
|
||||
// See crbug.com/1374270.
|
||||
color_space = VideoColorSpace::REC709();
|
||||
}
|
||||
|
||||
// AVCodecContext occasionally has invalid extra data. See
|
||||
// http://crbug.com/517163
|
||||
if (codec_context->extradata != nullptr &&
|
||||
codec_context->extradata_size == 0) {
|
||||
DLOG(ERROR) << __func__ << " Non-Null extra data cannot have size of 0.";
|
||||
return false;
|
||||
}
|
||||
|
||||
std::vector<uint8_t> extra_data;
|
||||
if (codec_context->extradata_size > 0) {
|
||||
extra_data.assign(codec_context->extradata,
|
||||
codec_context->extradata + codec_context->extradata_size);
|
||||
}
|
||||
// TODO(tmathmeyer) ffmpeg can't provide us with an actual video rotation yet.
|
||||
config->Initialize(codec, profile, alpha_mode, color_space,
|
||||
video_transformation, coded_size, visible_rect,
|
||||
natural_size, extra_data, GetEncryptionScheme(stream));
|
||||
// Set the aspect ratio explicitly since our version hasn't been rounded.
|
||||
config->set_aspect_ratio(aspect_ratio);
|
||||
|
||||
if (stream->nb_side_data) {
|
||||
for (int i = 0; i < stream->nb_side_data; ++i) {
|
||||
AVPacketSideData side_data = stream->side_data[i];
|
||||
if (side_data.type != AV_PKT_DATA_MASTERING_DISPLAY_METADATA)
|
||||
continue;
|
||||
|
||||
AVMasteringDisplayMetadata* metadata =
|
||||
reinterpret_cast<AVMasteringDisplayMetadata*>(side_data.data);
|
||||
if (metadata->has_primaries) {
|
||||
hdr_metadata.color_volume_metadata.primaries = {
|
||||
static_cast<float>(av_q2d(metadata->display_primaries[0][0])),
|
||||
static_cast<float>(av_q2d(metadata->display_primaries[0][1])),
|
||||
static_cast<float>(av_q2d(metadata->display_primaries[1][0])),
|
||||
static_cast<float>(av_q2d(metadata->display_primaries[1][1])),
|
||||
static_cast<float>(av_q2d(metadata->display_primaries[2][0])),
|
||||
static_cast<float>(av_q2d(metadata->display_primaries[2][1])),
|
||||
static_cast<float>(av_q2d(metadata->white_point[0])),
|
||||
static_cast<float>(av_q2d(metadata->white_point[1])),
|
||||
};
|
||||
}
|
||||
if (metadata->has_luminance) {
|
||||
hdr_metadata.color_volume_metadata.luminance_max =
|
||||
av_q2d(metadata->max_luminance);
|
||||
hdr_metadata.color_volume_metadata.luminance_min =
|
||||
av_q2d(metadata->min_luminance);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (hdr_metadata.IsValid()) {
|
||||
config->set_hdr_metadata(hdr_metadata);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void VideoDecoderConfigToAVCodecContext(
|
||||
const VideoDecoderConfig& config,
|
||||
AVCodecContext* codec_context) {
|
||||
codec_context->codec_type = AVMEDIA_TYPE_VIDEO;
|
||||
codec_context->codec_id = VideoCodecToCodecID(config.codec());
|
||||
codec_context->profile = VideoCodecProfileToProfileID(config.profile());
|
||||
codec_context->coded_width = config.coded_size().width();
|
||||
codec_context->coded_height = config.coded_size().height();
|
||||
if (config.color_space_info().range == gfx::ColorSpace::RangeID::FULL)
|
||||
codec_context->color_range = AVCOL_RANGE_JPEG;
|
||||
|
||||
if (config.extra_data().empty()) {
|
||||
codec_context->extradata = nullptr;
|
||||
codec_context->extradata_size = 0;
|
||||
} else {
|
||||
codec_context->extradata_size = config.extra_data().size();
|
||||
codec_context->extradata = reinterpret_cast<uint8_t*>(
|
||||
av_malloc(config.extra_data().size() + AV_INPUT_BUFFER_PADDING_SIZE));
|
||||
memcpy(codec_context->extradata, &config.extra_data()[0],
|
||||
config.extra_data().size());
|
||||
memset(codec_context->extradata + config.extra_data().size(), '\0',
|
||||
AV_INPUT_BUFFER_PADDING_SIZE);
|
||||
}
|
||||
}
|
||||
|
||||
ChannelLayout ChannelLayoutToChromeChannelLayout(int64_t layout, int channels) {
|
||||
switch (layout) {
|
||||
case AV_CH_LAYOUT_MONO:
|
||||
return CHANNEL_LAYOUT_MONO;
|
||||
case AV_CH_LAYOUT_STEREO:
|
||||
return CHANNEL_LAYOUT_STEREO;
|
||||
case AV_CH_LAYOUT_2_1:
|
||||
return CHANNEL_LAYOUT_2_1;
|
||||
case AV_CH_LAYOUT_SURROUND:
|
||||
return CHANNEL_LAYOUT_SURROUND;
|
||||
case AV_CH_LAYOUT_4POINT0:
|
||||
return CHANNEL_LAYOUT_4_0;
|
||||
case AV_CH_LAYOUT_2_2:
|
||||
return CHANNEL_LAYOUT_2_2;
|
||||
case AV_CH_LAYOUT_QUAD:
|
||||
return CHANNEL_LAYOUT_QUAD;
|
||||
case AV_CH_LAYOUT_5POINT0:
|
||||
return CHANNEL_LAYOUT_5_0;
|
||||
case AV_CH_LAYOUT_5POINT1:
|
||||
return CHANNEL_LAYOUT_5_1;
|
||||
case AV_CH_LAYOUT_5POINT0_BACK:
|
||||
return CHANNEL_LAYOUT_5_0_BACK;
|
||||
case AV_CH_LAYOUT_5POINT1_BACK:
|
||||
return CHANNEL_LAYOUT_5_1_BACK;
|
||||
case AV_CH_LAYOUT_7POINT0:
|
||||
return CHANNEL_LAYOUT_7_0;
|
||||
case AV_CH_LAYOUT_7POINT1:
|
||||
return CHANNEL_LAYOUT_7_1;
|
||||
case AV_CH_LAYOUT_7POINT1_WIDE:
|
||||
return CHANNEL_LAYOUT_7_1_WIDE;
|
||||
case AV_CH_LAYOUT_STEREO_DOWNMIX:
|
||||
return CHANNEL_LAYOUT_STEREO_DOWNMIX;
|
||||
case AV_CH_LAYOUT_2POINT1:
|
||||
return CHANNEL_LAYOUT_2POINT1;
|
||||
case AV_CH_LAYOUT_3POINT1:
|
||||
return CHANNEL_LAYOUT_3_1;
|
||||
case AV_CH_LAYOUT_4POINT1:
|
||||
return CHANNEL_LAYOUT_4_1;
|
||||
case AV_CH_LAYOUT_6POINT0:
|
||||
return CHANNEL_LAYOUT_6_0;
|
||||
case AV_CH_LAYOUT_6POINT0_FRONT:
|
||||
return CHANNEL_LAYOUT_6_0_FRONT;
|
||||
case AV_CH_LAYOUT_HEXAGONAL:
|
||||
return CHANNEL_LAYOUT_HEXAGONAL;
|
||||
case AV_CH_LAYOUT_6POINT1:
|
||||
return CHANNEL_LAYOUT_6_1;
|
||||
case AV_CH_LAYOUT_6POINT1_BACK:
|
||||
return CHANNEL_LAYOUT_6_1_BACK;
|
||||
case AV_CH_LAYOUT_6POINT1_FRONT:
|
||||
return CHANNEL_LAYOUT_6_1_FRONT;
|
||||
case AV_CH_LAYOUT_7POINT0_FRONT:
|
||||
return CHANNEL_LAYOUT_7_0_FRONT;
|
||||
#ifdef AV_CH_LAYOUT_7POINT1_WIDE_BACK
|
||||
case AV_CH_LAYOUT_7POINT1_WIDE_BACK:
|
||||
return CHANNEL_LAYOUT_7_1_WIDE_BACK;
|
||||
#endif
|
||||
case AV_CH_LAYOUT_OCTAGONAL:
|
||||
return CHANNEL_LAYOUT_OCTAGONAL;
|
||||
default:
|
||||
// FFmpeg channel_layout is 0 for .wav and .mp3. Attempt to guess layout
|
||||
// based on the channel count.
|
||||
return GuessChannelLayout(channels);
|
||||
}
|
||||
}
|
||||
|
||||
#if !defined(ARCH_CPU_LITTLE_ENDIAN)
|
||||
#error The code below assumes little-endianness.
|
||||
#endif
|
||||
|
||||
VideoPixelFormat AVPixelFormatToVideoPixelFormat(AVPixelFormat pixel_format) {
|
||||
// The YUVJ alternatives are FFmpeg's (deprecated, but still in use) way to
|
||||
// specify a pixel format and full range color combination.
|
||||
switch (pixel_format) {
|
||||
case AV_PIX_FMT_YUV444P:
|
||||
case AV_PIX_FMT_YUVJ444P:
|
||||
return PIXEL_FORMAT_I444;
|
||||
|
||||
case AV_PIX_FMT_YUV420P:
|
||||
case AV_PIX_FMT_YUVJ420P:
|
||||
return PIXEL_FORMAT_I420;
|
||||
|
||||
case AV_PIX_FMT_YUV422P:
|
||||
case AV_PIX_FMT_YUVJ422P:
|
||||
return PIXEL_FORMAT_I422;
|
||||
|
||||
case AV_PIX_FMT_YUVA420P:
|
||||
return PIXEL_FORMAT_I420A;
|
||||
|
||||
case AV_PIX_FMT_YUV420P9LE:
|
||||
return PIXEL_FORMAT_YUV420P9;
|
||||
case AV_PIX_FMT_YUV420P10LE:
|
||||
return PIXEL_FORMAT_YUV420P10;
|
||||
case AV_PIX_FMT_YUV420P12LE:
|
||||
return PIXEL_FORMAT_YUV420P12;
|
||||
|
||||
case AV_PIX_FMT_YUV422P9LE:
|
||||
return PIXEL_FORMAT_YUV422P9;
|
||||
case AV_PIX_FMT_YUV422P10LE:
|
||||
return PIXEL_FORMAT_YUV422P10;
|
||||
case AV_PIX_FMT_YUV422P12LE:
|
||||
return PIXEL_FORMAT_YUV422P12;
|
||||
|
||||
case AV_PIX_FMT_YUV444P9LE:
|
||||
return PIXEL_FORMAT_YUV444P9;
|
||||
case AV_PIX_FMT_YUV444P10LE:
|
||||
return PIXEL_FORMAT_YUV444P10;
|
||||
case AV_PIX_FMT_YUV444P12LE:
|
||||
return PIXEL_FORMAT_YUV444P12;
|
||||
|
||||
case AV_PIX_FMT_P016LE:
|
||||
return PIXEL_FORMAT_P016LE;
|
||||
|
||||
default:
|
||||
DVLOG(1) << "Unsupported AVPixelFormat: " << pixel_format;
|
||||
}
|
||||
return PIXEL_FORMAT_UNKNOWN;
|
||||
}
|
||||
|
||||
VideoColorSpace AVColorSpaceToColorSpace(AVColorSpace color_space,
|
||||
AVColorRange color_range) {
|
||||
// TODO(hubbe): make this better
|
||||
if (color_range == AVCOL_RANGE_JPEG)
|
||||
return VideoColorSpace::JPEG();
|
||||
|
||||
switch (color_space) {
|
||||
case AVCOL_SPC_UNSPECIFIED:
|
||||
break;
|
||||
case AVCOL_SPC_BT709:
|
||||
return VideoColorSpace::REC709();
|
||||
case AVCOL_SPC_SMPTE170M:
|
||||
case AVCOL_SPC_BT470BG:
|
||||
return VideoColorSpace::REC601();
|
||||
default:
|
||||
DVLOG(1) << "Unknown AVColorSpace: " << color_space;
|
||||
}
|
||||
return VideoColorSpace();
|
||||
}
|
||||
|
||||
std::string AVErrorToString(int errnum) {
|
||||
char errbuf[AV_ERROR_MAX_STRING_SIZE] = {0};
|
||||
av_strerror(errnum, errbuf, AV_ERROR_MAX_STRING_SIZE);
|
||||
return std::string(errbuf);
|
||||
}
|
||||
|
||||
int32_t HashCodecName(const char* codec_name) {
|
||||
// Use the first 32-bits from the SHA1 hash as the identifier.
|
||||
int32_t hash;
|
||||
memcpy(&hash, base::SHA1HashString(codec_name).substr(0, 4).c_str(), 4);
|
||||
return hash;
|
||||
}
|
||||
|
||||
} // namespace media
|
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/config.h
vendored
Normal file
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/config.h
vendored
Normal file
|
@ -0,0 +1,748 @@
|
|||
/* Automatically generated by configure - do not modify! */
|
||||
#ifndef FFMPEG_CONFIG_H
|
||||
#define FFMPEG_CONFIG_H
|
||||
/* #define FFMPEG_CONFIGURATION "--disable-everything --disable-all --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-static --enable-avcodec --enable-avformat --enable-avutil --enable-fft --enable-rdft --enable-static --enable-libopus --disable-debug --disable-bzlib --disable-error-resilience --disable-iconv --disable-network --disable-schannel --disable-sdl2 --disable-symver --disable-xlib --disable-zlib --disable-securetransport --disable-faan --disable-alsa --disable-autodetect --enable-decoder='vorbis,libopus,flac' --enable-decoder='pcm_u8,pcm_s16le,pcm_s24le,pcm_s32le,pcm_f32le,mp3' --enable-decoder='pcm_s16be,pcm_s24be,pcm_mulaw,pcm_alaw' --enable-demuxer='ogg,matroska,wav,flac,mp3,mov' --enable-parser='opus,vorbis,flac,mpegaudio,vp9' --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/opus/src/include --disable-linux-perf --x86asmexe=nasm --enable-small --enable-pic --cc=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang --cxx=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ --ld=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang --enable-cross-compile --sysroot=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/arm-linux-androideabi --extra-cflags='--target=arm-linux-androideabi24' --extra-ldflags='--target=arm-linux-androideabi24' --extra-ldflags=-L/tmp/fakelinkerscripts --extra-ldflags=-L/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/arm-linux-androideabi --extra-ldflags='--gcc-toolchain=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/' --target-os=android --arch=arm --enable-armv6 --enable-armv6t2 --enable-vfp --enable-thumb --extra-cflags='-march=armv7-a' --enable-neon --extra-cflags='-mtune=generic-armv7-a' --extra-cflags='-mfloat-abi=softfp' --extra-cflags='-mfpu=neon' --enable-demuxer=aac --enable-parser=aac --enable-decoder=aac" -- elide long configuration string from binary */
|
||||
#define FFMPEG_LICENSE "LGPL version 2.1 or later"
|
||||
#define CONFIG_THIS_YEAR 2022
|
||||
#define FFMPEG_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define AVCONV_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define CC_IDENT "Android (7284624, based on r416183b) clang version 12.0.5 (https://android.googlesource.com/toolchain/llvm-project c935d99d7cf2016289302412d708641d52d2f7ee)"
|
||||
#define OS_NAME android
|
||||
#define av_restrict restrict
|
||||
#define EXTERN_PREFIX ""
|
||||
#define EXTERN_ASM
|
||||
#define BUILDSUF ""
|
||||
#define SLIBSUF ".so"
|
||||
#define HAVE_MMX2 HAVE_MMXEXT
|
||||
#define SWS_MAX_FILTER_SIZE 256
|
||||
#define ARCH_AARCH64 0
|
||||
#define ARCH_ALPHA 0
|
||||
#define ARCH_ARM 1
|
||||
#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_TOMI 0
|
||||
#define ARCH_X86 0
|
||||
#define ARCH_X86_32 0
|
||||
#define ARCH_X86_64 0
|
||||
#define HAVE_ARMV5TE 1
|
||||
#define HAVE_ARMV6 1
|
||||
#define HAVE_ARMV6T2 1
|
||||
#define HAVE_ARMV8 0
|
||||
#define HAVE_NEON 1
|
||||
#define HAVE_VFP 1
|
||||
#define HAVE_VFPV3 1
|
||||
#define HAVE_SETEND 1
|
||||
#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_RVV 0
|
||||
#define HAVE_AESNI 0
|
||||
#define HAVE_AMD3DNOW 0
|
||||
#define HAVE_AMD3DNOWEXT 0
|
||||
#define HAVE_AVX 0
|
||||
#define HAVE_AVX2 0
|
||||
#define HAVE_AVX512 0
|
||||
#define HAVE_AVX512ICL 0
|
||||
#define HAVE_FMA3 0
|
||||
#define HAVE_FMA4 0
|
||||
#define HAVE_MMX 0
|
||||
#define HAVE_MMXEXT 0
|
||||
#define HAVE_SSE 0
|
||||
#define HAVE_SSE2 0
|
||||
#define HAVE_SSE3 0
|
||||
#define HAVE_SSE4 0
|
||||
#define HAVE_SSE42 0
|
||||
#define HAVE_SSSE3 0
|
||||
#define HAVE_XOP 0
|
||||
#define HAVE_CPUNOP 0
|
||||
#define HAVE_I686 0
|
||||
#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 1
|
||||
#define HAVE_ARMV6_EXTERNAL 1
|
||||
#define HAVE_ARMV6T2_EXTERNAL 1
|
||||
#define HAVE_ARMV8_EXTERNAL 0
|
||||
#define HAVE_NEON_EXTERNAL 1
|
||||
#define HAVE_VFP_EXTERNAL 1
|
||||
#define HAVE_VFPV3_EXTERNAL 1
|
||||
#define HAVE_SETEND_EXTERNAL 1
|
||||
#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_RVV_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_CPUNOP_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 1
|
||||
#define HAVE_ARMV6_INLINE 1
|
||||
#define HAVE_ARMV6T2_INLINE 1
|
||||
#define HAVE_ARMV8_INLINE 0
|
||||
#define HAVE_NEON_INLINE 1
|
||||
#define HAVE_VFP_INLINE 1
|
||||
#define HAVE_VFPV3_INLINE 1
|
||||
#define HAVE_SETEND_INLINE 1
|
||||
#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_RVV_INLINE 0
|
||||
#define HAVE_AESNI_INLINE 0
|
||||
#define HAVE_AMD3DNOW_INLINE 0
|
||||
#define HAVE_AMD3DNOWEXT_INLINE 0
|
||||
#define HAVE_AVX_INLINE 0
|
||||
#define HAVE_AVX2_INLINE 0
|
||||
#define HAVE_AVX512_INLINE 0
|
||||
#define HAVE_AVX512ICL_INLINE 0
|
||||
#define HAVE_FMA3_INLINE 0
|
||||
#define HAVE_FMA4_INLINE 0
|
||||
#define HAVE_MMX_INLINE 0
|
||||
#define HAVE_MMXEXT_INLINE 0
|
||||
#define HAVE_SSE_INLINE 0
|
||||
#define HAVE_SSE2_INLINE 0
|
||||
#define HAVE_SSE3_INLINE 0
|
||||
#define HAVE_SSE4_INLINE 0
|
||||
#define HAVE_SSE42_INLINE 0
|
||||
#define HAVE_SSSE3_INLINE 0
|
||||
#define HAVE_XOP_INLINE 0
|
||||
#define HAVE_CPUNOP_INLINE 0
|
||||
#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 0
|
||||
#define HAVE_FAST_64BIT 0
|
||||
#define HAVE_FAST_CLZ 1
|
||||
#define HAVE_FAST_CMOV 0
|
||||
#define HAVE_FAST_FLOAT16 1
|
||||
#define HAVE_LOCAL_ALIGNED 0
|
||||
#define HAVE_SIMD_ALIGN_16 1
|
||||
#define HAVE_SIMD_ALIGN_32 0
|
||||
#define HAVE_SIMD_ALIGN_64 0
|
||||
#define HAVE_ATOMIC_CAS_PTR 0
|
||||
#define HAVE_MACHINE_RW_BARRIER 0
|
||||
#define HAVE_MEMORYBARRIER 0
|
||||
#define HAVE_MM_EMPTY 0
|
||||
#define HAVE_RDTSC 0
|
||||
#define HAVE_SEM_TIMEDWAIT 1
|
||||
#define HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
|
||||
#define HAVE_CABS 0
|
||||
#define HAVE_CEXP 0
|
||||
#define HAVE_INLINE_ASM 1
|
||||
#define HAVE_SYMVER 0
|
||||
#define HAVE_X86ASM 0
|
||||
#define HAVE_BIGENDIAN 0
|
||||
#define HAVE_FAST_UNALIGNED 1
|
||||
#define HAVE_ARPA_INET_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 0
|
||||
#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_SYS_PARAM_H 1
|
||||
#define HAVE_SYS_RESOURCE_H 1
|
||||
#define HAVE_SYS_SELECT_H 1
|
||||
#define HAVE_SYS_SOUNDCARD_H 0
|
||||
#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_VALGRIND_VALGRIND_H 0 -- forced to 0. See https://crbug.com/590440 */
|
||||
#define HAVE_WINDOWS_H 0
|
||||
#define HAVE_WINSOCK2_H 0
|
||||
#define HAVE_INTRINSICS_NEON 1
|
||||
#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 1
|
||||
#define HAVE_CLOCK_GETTIME 1
|
||||
#define HAVE_CLOSESOCKET 0
|
||||
#define HAVE_COMMANDLINETOARGVW 0
|
||||
#define HAVE_FCNTL 1
|
||||
#define HAVE_GETADDRINFO 0
|
||||
#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 0
|
||||
#define HAVE_GLXGETPROCADDRESS 0
|
||||
#define HAVE_GMTIME_R 1
|
||||
#define HAVE_INET_ATON 0
|
||||
#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 0 /* #define HAVE_POSIX_MEMALIGN 1 -- forced to 0. See https://crbug.com/604451 */
|
||||
#define HAVE_PRCTL 1
|
||||
#define HAVE_PTHREAD_CANCEL 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_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_VDPAU_X11 0
|
||||
#define HAVE_PTHREADS 1
|
||||
#define HAVE_OS2THREADS 0
|
||||
#define HAVE_W32THREADS 0
|
||||
#define HAVE_AS_ARCH_DIRECTIVE 1
|
||||
#define HAVE_AS_DN_DIRECTIVE 0
|
||||
#define HAVE_AS_FPU_DIRECTIVE 1
|
||||
#define HAVE_AS_FUNC 0
|
||||
#define HAVE_AS_OBJECT_ARCH 1
|
||||
#define HAVE_ASM_MOD_Q 1
|
||||
#define HAVE_BLOCKS_EXTENSION 0
|
||||
#define HAVE_EBP_AVAILABLE 0
|
||||
#define HAVE_EBX_AVAILABLE 0
|
||||
#define HAVE_GNU_AS 1
|
||||
#define HAVE_GNU_WINDRES 0
|
||||
#define HAVE_IBM_ASM 0
|
||||
#define HAVE_INLINE_ASM_DIRECT_SYMBOL_REFS 0
|
||||
#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 1
|
||||
#define HAVE_SYMVER_GNU_ASM 1
|
||||
/* #define HAVE_VFP_ARGS 0 -- softfp/hardfp selection is done by the chrome build */
|
||||
#define HAVE_XFORM_ASM 0
|
||||
#define HAVE_XMM_CLOBBERS 0
|
||||
#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 0
|
||||
#define HAVE_STRUCT_ADDRINFO 0
|
||||
#define HAVE_STRUCT_GROUP_SOURCE_REQ 0
|
||||
#define HAVE_STRUCT_IP_MREQ_SOURCE 0
|
||||
#define HAVE_STRUCT_IPV6_MREQ 0
|
||||
#define HAVE_STRUCT_MSGHDR_MSG_FLAGS 0
|
||||
#define HAVE_STRUCT_POLLFD 0
|
||||
#define HAVE_STRUCT_RUSAGE_RU_MAXRSS 1
|
||||
#define HAVE_STRUCT_SCTP_EVENT_SUBSCRIBE 0
|
||||
#define HAVE_STRUCT_SOCKADDR_IN6 0
|
||||
#define HAVE_STRUCT_SOCKADDR_SA_LEN 0
|
||||
#define HAVE_STRUCT_SOCKADDR_STORAGE 0
|
||||
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
|
||||
#define HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE 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_PERL 1
|
||||
#define HAVE_POD2MAN 1
|
||||
#define HAVE_TEXI2HTML 0
|
||||
#define HAVE_XMLLINT 1
|
||||
#define HAVE_ZLIB_GZIP 0
|
||||
#define CONFIG_DOC 0
|
||||
#define CONFIG_HTMLPAGES 0
|
||||
#define CONFIG_MANPAGES 0
|
||||
#define CONFIG_PODPAGES 0
|
||||
#define CONFIG_TXTPAGES 0
|
||||
#define CONFIG_AVIO_LIST_DIR_EXAMPLE 1
|
||||
#define CONFIG_AVIO_READING_EXAMPLE 1
|
||||
#define CONFIG_DECODE_AUDIO_EXAMPLE 1
|
||||
#define CONFIG_DECODE_VIDEO_EXAMPLE 1
|
||||
#define CONFIG_DEMUXING_DECODING_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 0
|
||||
#define CONFIG_FILTERING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_FILTERING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_HTTP_MULTICLIENT_EXAMPLE 1
|
||||
#define CONFIG_HW_DECODE_EXAMPLE 1
|
||||
#define CONFIG_METADATA_EXAMPLE 1
|
||||
#define CONFIG_MUXING_EXAMPLE 0
|
||||
#define CONFIG_QSVDEC_EXAMPLE 0
|
||||
#define CONFIG_REMUXING_EXAMPLE 1
|
||||
#define CONFIG_RESAMPLING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_SCALING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODE_AAC_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODING_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_ENCODE_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_TRANSCODE_EXAMPLE 0
|
||||
#define CONFIG_AVISYNTH 0
|
||||
#define CONFIG_FREI0R 0
|
||||
#define CONFIG_LIBCDIO 0
|
||||
#define CONFIG_LIBDAVS2 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_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_LIBDRM 0
|
||||
#define CONFIG_LIBFLITE 0
|
||||
#define CONFIG_LIBFONTCONFIG 0
|
||||
#define CONFIG_LIBFREETYPE 0
|
||||
#define CONFIG_LIBFRIBIDI 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_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 1
|
||||
#define CONFIG_LIBPLACEBO 0
|
||||
#define CONFIG_LIBPULSE 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_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_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 0
|
||||
#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_CRYSTALHD 0
|
||||
#define CONFIG_CUDA 0
|
||||
#define CONFIG_CUDA_LLVM 0
|
||||
#define CONFIG_CUVID 0
|
||||
#define CONFIG_D3D11VA 0
|
||||
#define CONFIG_DXVA2 0
|
||||
#define CONFIG_FFNVCODEC 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 0
|
||||
#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 1
|
||||
#define CONFIG_STATIC 1
|
||||
#define CONFIG_SWSCALE_ALPHA 1
|
||||
#define CONFIG_GPL 0
|
||||
#define CONFIG_NONFREE 0
|
||||
#define CONFIG_VERSION3 0
|
||||
#define CONFIG_AVDEVICE 0
|
||||
#define CONFIG_AVFILTER 0
|
||||
#define CONFIG_SWSCALE 0
|
||||
#define CONFIG_POSTPROC 0
|
||||
#define CONFIG_AVFORMAT 1
|
||||
#define CONFIG_AVCODEC 1
|
||||
#define CONFIG_SWRESAMPLE 0
|
||||
#define CONFIG_AVUTIL 1
|
||||
#define CONFIG_FFPLAY 0
|
||||
#define CONFIG_FFPROBE 0
|
||||
#define CONFIG_FFMPEG 0
|
||||
#define CONFIG_DCT 1
|
||||
#define CONFIG_DWT 0
|
||||
#define CONFIG_ERROR_RESILIENCE 0
|
||||
#define CONFIG_FAAN 0
|
||||
#define CONFIG_FAST_UNALIGNED 1
|
||||
#define CONFIG_FFT 1
|
||||
#define CONFIG_LSP 0
|
||||
#define CONFIG_MDCT 0
|
||||
#define CONFIG_PIXELUTILS 0
|
||||
#define CONFIG_NETWORK 0
|
||||
#define CONFIG_RDFT 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 1
|
||||
#define CONFIG_PTX_COMPRESSION 0
|
||||
#define CONFIG_THUMB 1
|
||||
#define CONFIG_VALGRIND_BACKTRACE 0
|
||||
#define CONFIG_XMM_CLOBBER_TEST 0
|
||||
#define CONFIG_BSFS 0
|
||||
#define CONFIG_DECODERS 1
|
||||
#define CONFIG_ENCODERS 0
|
||||
#define CONFIG_HWACCELS 0
|
||||
#define CONFIG_PARSERS 1
|
||||
#define CONFIG_INDEVS 0
|
||||
#define CONFIG_OUTDEVS 0
|
||||
#define CONFIG_FILTERS 0
|
||||
#define CONFIG_DEMUXERS 1
|
||||
#define CONFIG_MUXERS 0
|
||||
#define CONFIG_PROTOCOLS 0
|
||||
#define CONFIG_AANDCTTABLES 0
|
||||
#define CONFIG_AC3DSP 0
|
||||
#define CONFIG_ADTS_HEADER 1
|
||||
#define CONFIG_ATSC_A53 0
|
||||
#define CONFIG_AUDIO_FRAME_QUEUE 0
|
||||
#define CONFIG_AUDIODSP 0
|
||||
#define CONFIG_BLOCKDSP 0
|
||||
#define CONFIG_BSWAPDSP 0
|
||||
#define CONFIG_CABAC 0
|
||||
#define CONFIG_CBS 0
|
||||
#define CONFIG_CBS_AV1 0
|
||||
#define CONFIG_CBS_H264 0
|
||||
#define CONFIG_CBS_H265 0
|
||||
#define CONFIG_CBS_JPEG 0
|
||||
#define CONFIG_CBS_MPEG2 0
|
||||
#define CONFIG_CBS_VP9 0
|
||||
#define CONFIG_DEFLATE_WRAPPER 0
|
||||
#define CONFIG_DIRAC_PARSE 1
|
||||
#define CONFIG_DNN 0
|
||||
#define CONFIG_DOVI_RPU 0
|
||||
#define CONFIG_DVPROFILE 0
|
||||
#define CONFIG_EXIF 0
|
||||
#define CONFIG_FAANDCT 0
|
||||
#define CONFIG_FAANIDCT 0
|
||||
#define CONFIG_FDCTDSP 0
|
||||
#define CONFIG_FMTCONVERT 0
|
||||
#define CONFIG_FRAME_THREAD_ENCODER 0
|
||||
#define CONFIG_G722DSP 0
|
||||
#define CONFIG_GOLOMB 1
|
||||
#define CONFIG_GPLV3 0
|
||||
#define CONFIG_H263DSP 0
|
||||
#define CONFIG_H264CHROMA 0
|
||||
#define CONFIG_H264DSP 0
|
||||
#define CONFIG_H264PARSE 0
|
||||
#define CONFIG_H264PRED 0
|
||||
#define CONFIG_H264QPEL 0
|
||||
#define CONFIG_HEVCPARSE 0
|
||||
#define CONFIG_HPELDSP 0
|
||||
#define CONFIG_HUFFMAN 0
|
||||
#define CONFIG_HUFFYUVDSP 0
|
||||
#define CONFIG_HUFFYUVENCDSP 0
|
||||
#define CONFIG_IDCTDSP 0
|
||||
#define CONFIG_IIRFILTER 0
|
||||
#define CONFIG_INFLATE_WRAPPER 0
|
||||
#define CONFIG_INTRAX8 0
|
||||
#define CONFIG_ISO_MEDIA 1
|
||||
#define CONFIG_IVIDSP 0
|
||||
#define CONFIG_JPEGTABLES 0
|
||||
#define CONFIG_LGPLV3 0
|
||||
#define CONFIG_LIBX262 0
|
||||
#define CONFIG_LLAUDDSP 0
|
||||
#define CONFIG_LLVIDDSP 0
|
||||
#define CONFIG_LLVIDENCDSP 0
|
||||
#define CONFIG_LPC 0
|
||||
#define CONFIG_LZF 0
|
||||
#define CONFIG_ME_CMP 0
|
||||
#define CONFIG_MPEG_ER 0
|
||||
#define CONFIG_MPEGAUDIO 1
|
||||
#define CONFIG_MPEGAUDIODSP 1
|
||||
#define CONFIG_MPEGAUDIOHEADER 1
|
||||
#define CONFIG_MPEG4AUDIO 1
|
||||
#define CONFIG_MPEGVIDEO 0
|
||||
#define CONFIG_MPEGVIDEODEC 0
|
||||
#define CONFIG_MPEGVIDEOENC 0
|
||||
#define CONFIG_MSMPEG4DEC 0
|
||||
#define CONFIG_MSMPEG4ENC 0
|
||||
#define CONFIG_MSS34DSP 0
|
||||
#define CONFIG_PIXBLOCKDSP 0
|
||||
#define CONFIG_QPELDSP 0
|
||||
#define CONFIG_QSV 0
|
||||
#define CONFIG_QSVDEC 0
|
||||
#define CONFIG_QSVENC 0
|
||||
#define CONFIG_QSVVPP 0
|
||||
#define CONFIG_RANGECODER 0
|
||||
#define CONFIG_RIFFDEC 1
|
||||
#define CONFIG_RIFFENC 0
|
||||
#define CONFIG_RTPDEC 0
|
||||
#define CONFIG_RTPENC_CHAIN 0
|
||||
#define CONFIG_RV34DSP 0
|
||||
#define CONFIG_SCENE_SAD 0
|
||||
#define CONFIG_SINEWIN 1
|
||||
#define CONFIG_SNAPPY 0
|
||||
#define CONFIG_SRTP 0
|
||||
#define CONFIG_STARTCODE 0
|
||||
#define CONFIG_TEXTUREDSP 0
|
||||
#define CONFIG_TEXTUREDSPENC 0
|
||||
#define CONFIG_TPELDSP 0
|
||||
#define CONFIG_VAAPI_1 0
|
||||
#define CONFIG_VAAPI_ENCODE 0
|
||||
#define CONFIG_VC1DSP 0
|
||||
#define CONFIG_VIDEODSP 0
|
||||
#define CONFIG_VP3DSP 0
|
||||
#define CONFIG_VP56DSP 0
|
||||
#define CONFIG_VP8DSP 0
|
||||
#define CONFIG_WMA_FREQS 0
|
||||
#define CONFIG_WMV2DSP 0
|
||||
#endif /* FFMPEG_CONFIG_H */
|
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/config_components.h
vendored
Normal file
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/config_components.h
vendored
Normal file
File diff suppressed because it is too large
Load diff
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/libavcodec/bsf_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/libavcodec/bsf_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const FFBitStreamFilter * const bitstream_filters[] = {
|
||||
NULL };
|
16
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/libavcodec/codec_list.c
vendored
Normal file
16
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/libavcodec/codec_list.c
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
static const FFCodec * const codec_list[] = {
|
||||
&ff_aac_decoder,
|
||||
&ff_flac_decoder,
|
||||
&ff_mp3_decoder,
|
||||
&ff_vorbis_decoder,
|
||||
&ff_pcm_alaw_decoder,
|
||||
&ff_pcm_f32le_decoder,
|
||||
&ff_pcm_mulaw_decoder,
|
||||
&ff_pcm_s16be_decoder,
|
||||
&ff_pcm_s16le_decoder,
|
||||
&ff_pcm_s24be_decoder,
|
||||
&ff_pcm_s24le_decoder,
|
||||
&ff_pcm_s32le_decoder,
|
||||
&ff_pcm_u8_decoder,
|
||||
&ff_libopus_decoder,
|
||||
NULL };
|
|
@ -0,0 +1,8 @@
|
|||
static const AVCodecParser * const parser_list[] = {
|
||||
&ff_aac_parser,
|
||||
&ff_flac_parser,
|
||||
&ff_mpegaudio_parser,
|
||||
&ff_opus_parser,
|
||||
&ff_vorbis_parser,
|
||||
&ff_vp9_parser,
|
||||
NULL };
|
|
@ -0,0 +1,9 @@
|
|||
static const AVInputFormat * const demuxer_list[] = {
|
||||
&ff_aac_demuxer,
|
||||
&ff_flac_demuxer,
|
||||
&ff_matroska_demuxer,
|
||||
&ff_mov_demuxer,
|
||||
&ff_mp3_demuxer,
|
||||
&ff_ogg_demuxer,
|
||||
&ff_wav_demuxer,
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const AVOutputFormat * const muxer_list[] = {
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const URLProtocol * const url_protocols[] = {
|
||||
NULL };
|
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/libavutil/avconfig.h
vendored
Normal file
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/libavutil/avconfig.h
vendored
Normal file
|
@ -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 */
|
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/libavutil/ffversion.h
vendored
Normal file
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/libavutil/ffversion.h
vendored
Normal file
|
@ -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-110326-g0bb5dd59ec"
|
||||
#endif /* AVUTIL_FFVERSION_H */
|
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/config.h
vendored
Normal file
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/config.h
vendored
Normal file
|
@ -0,0 +1,748 @@
|
|||
/* Automatically generated by configure - do not modify! */
|
||||
#ifndef FFMPEG_CONFIG_H
|
||||
#define FFMPEG_CONFIG_H
|
||||
/* #define FFMPEG_CONFIGURATION "--disable-everything --disable-all --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-static --enable-avcodec --enable-avformat --enable-avutil --enable-fft --enable-rdft --enable-static --enable-libopus --disable-debug --disable-bzlib --disable-error-resilience --disable-iconv --disable-network --disable-schannel --disable-sdl2 --disable-symver --disable-xlib --disable-zlib --disable-securetransport --disable-faan --disable-alsa --disable-autodetect --enable-decoder='vorbis,libopus,flac' --enable-decoder='pcm_u8,pcm_s16le,pcm_s24le,pcm_s32le,pcm_f32le,mp3' --enable-decoder='pcm_s16be,pcm_s24be,pcm_mulaw,pcm_alaw' --enable-demuxer='ogg,matroska,wav,flac,mp3,mov' --enable-parser='opus,vorbis,flac,mpegaudio,vp9' --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/opus/src/include --disable-linux-perf --x86asmexe=nasm --enable-small --enable-pic --cc=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang --cxx=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ --ld=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang --enable-cross-compile --sysroot=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/aarch64-linux-android --extra-cflags='--target=aarch64-linux-android24' --extra-ldflags='--target=aarch64-linux-android24' --extra-ldflags=-L/tmp/fakelinkerscripts --extra-ldflags=-L/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/aarch64-linux-android --extra-ldflags='--gcc-toolchain=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/' --target-os=android --arch=aarch64 --enable-armv8 --extra-cflags='-march=armv8-a' --enable-demuxer=aac --enable-parser=aac --enable-decoder=aac" -- elide long configuration string from binary */
|
||||
#define FFMPEG_LICENSE "LGPL version 2.1 or later"
|
||||
#define CONFIG_THIS_YEAR 2022
|
||||
#define FFMPEG_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define AVCONV_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define CC_IDENT "Android (7284624, based on r416183b) clang version 12.0.5 (https://android.googlesource.com/toolchain/llvm-project c935d99d7cf2016289302412d708641d52d2f7ee)"
|
||||
#define OS_NAME android
|
||||
#define av_restrict restrict
|
||||
#define EXTERN_PREFIX ""
|
||||
#define EXTERN_ASM
|
||||
#define BUILDSUF ""
|
||||
#define SLIBSUF ".so"
|
||||
#define HAVE_MMX2 HAVE_MMXEXT
|
||||
#define SWS_MAX_FILTER_SIZE 256
|
||||
#define ARCH_AARCH64 1
|
||||
#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_TOMI 0
|
||||
#define ARCH_X86 0
|
||||
#define ARCH_X86_32 0
|
||||
#define ARCH_X86_64 0
|
||||
#define HAVE_ARMV5TE 0
|
||||
#define HAVE_ARMV6 0
|
||||
#define HAVE_ARMV6T2 0
|
||||
#define HAVE_ARMV8 1
|
||||
#define HAVE_NEON 1
|
||||
#define HAVE_VFP 1
|
||||
#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_RVV 0
|
||||
#define HAVE_AESNI 0
|
||||
#define HAVE_AMD3DNOW 0
|
||||
#define HAVE_AMD3DNOWEXT 0
|
||||
#define HAVE_AVX 0
|
||||
#define HAVE_AVX2 0
|
||||
#define HAVE_AVX512 0
|
||||
#define HAVE_AVX512ICL 0
|
||||
#define HAVE_FMA3 0
|
||||
#define HAVE_FMA4 0
|
||||
#define HAVE_MMX 0
|
||||
#define HAVE_MMXEXT 0
|
||||
#define HAVE_SSE 0
|
||||
#define HAVE_SSE2 0
|
||||
#define HAVE_SSE3 0
|
||||
#define HAVE_SSE4 0
|
||||
#define HAVE_SSE42 0
|
||||
#define HAVE_SSSE3 0
|
||||
#define HAVE_XOP 0
|
||||
#define HAVE_CPUNOP 0
|
||||
#define HAVE_I686 0
|
||||
#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 1
|
||||
#define HAVE_NEON_EXTERNAL 1
|
||||
#define HAVE_VFP_EXTERNAL 1
|
||||
#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_RVV_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_CPUNOP_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 1
|
||||
#define HAVE_NEON_INLINE 1
|
||||
#define HAVE_VFP_INLINE 1
|
||||
#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_RVV_INLINE 0
|
||||
#define HAVE_AESNI_INLINE 0
|
||||
#define HAVE_AMD3DNOW_INLINE 0
|
||||
#define HAVE_AMD3DNOWEXT_INLINE 0
|
||||
#define HAVE_AVX_INLINE 0
|
||||
#define HAVE_AVX2_INLINE 0
|
||||
#define HAVE_AVX512_INLINE 0
|
||||
#define HAVE_AVX512ICL_INLINE 0
|
||||
#define HAVE_FMA3_INLINE 0
|
||||
#define HAVE_FMA4_INLINE 0
|
||||
#define HAVE_MMX_INLINE 0
|
||||
#define HAVE_MMXEXT_INLINE 0
|
||||
#define HAVE_SSE_INLINE 0
|
||||
#define HAVE_SSE2_INLINE 0
|
||||
#define HAVE_SSE3_INLINE 0
|
||||
#define HAVE_SSE4_INLINE 0
|
||||
#define HAVE_SSE42_INLINE 0
|
||||
#define HAVE_SSSE3_INLINE 0
|
||||
#define HAVE_XOP_INLINE 0
|
||||
#define HAVE_CPUNOP_INLINE 0
|
||||
#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 0
|
||||
#define HAVE_FAST_FLOAT16 1
|
||||
#define HAVE_LOCAL_ALIGNED 0
|
||||
#define HAVE_SIMD_ALIGN_16 1
|
||||
#define HAVE_SIMD_ALIGN_32 0
|
||||
#define HAVE_SIMD_ALIGN_64 0
|
||||
#define HAVE_ATOMIC_CAS_PTR 0
|
||||
#define HAVE_MACHINE_RW_BARRIER 0
|
||||
#define HAVE_MEMORYBARRIER 0
|
||||
#define HAVE_MM_EMPTY 0
|
||||
#define HAVE_RDTSC 0
|
||||
#define HAVE_SEM_TIMEDWAIT 1
|
||||
#define HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
|
||||
#define HAVE_CABS 0
|
||||
#define HAVE_CEXP 0
|
||||
#define HAVE_INLINE_ASM 1
|
||||
#define HAVE_SYMVER 0
|
||||
#define HAVE_X86ASM 0
|
||||
#define HAVE_BIGENDIAN 0
|
||||
#define HAVE_FAST_UNALIGNED 1
|
||||
#define HAVE_ARPA_INET_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 0
|
||||
#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_SYS_PARAM_H 1
|
||||
#define HAVE_SYS_RESOURCE_H 1
|
||||
#define HAVE_SYS_SELECT_H 1
|
||||
#define HAVE_SYS_SOUNDCARD_H 0
|
||||
#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_VALGRIND_VALGRIND_H 0 -- forced to 0. See https://crbug.com/590440 */
|
||||
#define HAVE_WINDOWS_H 0
|
||||
#define HAVE_WINSOCK2_H 0
|
||||
#define HAVE_INTRINSICS_NEON 1
|
||||
#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 1
|
||||
#define HAVE_CLOCK_GETTIME 1
|
||||
#define HAVE_CLOSESOCKET 0
|
||||
#define HAVE_COMMANDLINETOARGVW 0
|
||||
#define HAVE_FCNTL 1
|
||||
#define HAVE_GETADDRINFO 0
|
||||
#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 0
|
||||
#define HAVE_GLXGETPROCADDRESS 0
|
||||
#define HAVE_GMTIME_R 1
|
||||
#define HAVE_INET_ATON 0
|
||||
#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 0 /* #define HAVE_POSIX_MEMALIGN 1 -- forced to 0. See https://crbug.com/604451 */
|
||||
#define HAVE_PRCTL 1
|
||||
#define HAVE_PTHREAD_CANCEL 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_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_VDPAU_X11 0
|
||||
#define HAVE_PTHREADS 1
|
||||
#define HAVE_OS2THREADS 0
|
||||
#define HAVE_W32THREADS 0
|
||||
#define HAVE_AS_ARCH_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 0
|
||||
#define HAVE_EBX_AVAILABLE 0
|
||||
#define HAVE_GNU_AS 0
|
||||
#define HAVE_GNU_WINDRES 0
|
||||
#define HAVE_IBM_ASM 0
|
||||
#define HAVE_INLINE_ASM_DIRECT_SYMBOL_REFS 0
|
||||
#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 1
|
||||
#define HAVE_SYMVER_GNU_ASM 1
|
||||
/* #define HAVE_VFP_ARGS 0 -- softfp/hardfp selection is done by the chrome build */
|
||||
#define HAVE_XFORM_ASM 0
|
||||
#define HAVE_XMM_CLOBBERS 0
|
||||
#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 0
|
||||
#define HAVE_STRUCT_ADDRINFO 0
|
||||
#define HAVE_STRUCT_GROUP_SOURCE_REQ 0
|
||||
#define HAVE_STRUCT_IP_MREQ_SOURCE 0
|
||||
#define HAVE_STRUCT_IPV6_MREQ 0
|
||||
#define HAVE_STRUCT_MSGHDR_MSG_FLAGS 0
|
||||
#define HAVE_STRUCT_POLLFD 0
|
||||
#define HAVE_STRUCT_RUSAGE_RU_MAXRSS 1
|
||||
#define HAVE_STRUCT_SCTP_EVENT_SUBSCRIBE 0
|
||||
#define HAVE_STRUCT_SOCKADDR_IN6 0
|
||||
#define HAVE_STRUCT_SOCKADDR_SA_LEN 0
|
||||
#define HAVE_STRUCT_SOCKADDR_STORAGE 0
|
||||
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
|
||||
#define HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE 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_PERL 1
|
||||
#define HAVE_POD2MAN 1
|
||||
#define HAVE_TEXI2HTML 0
|
||||
#define HAVE_XMLLINT 1
|
||||
#define HAVE_ZLIB_GZIP 0
|
||||
#define CONFIG_DOC 0
|
||||
#define CONFIG_HTMLPAGES 0
|
||||
#define CONFIG_MANPAGES 0
|
||||
#define CONFIG_PODPAGES 0
|
||||
#define CONFIG_TXTPAGES 0
|
||||
#define CONFIG_AVIO_LIST_DIR_EXAMPLE 1
|
||||
#define CONFIG_AVIO_READING_EXAMPLE 1
|
||||
#define CONFIG_DECODE_AUDIO_EXAMPLE 1
|
||||
#define CONFIG_DECODE_VIDEO_EXAMPLE 1
|
||||
#define CONFIG_DEMUXING_DECODING_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 0
|
||||
#define CONFIG_FILTERING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_FILTERING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_HTTP_MULTICLIENT_EXAMPLE 1
|
||||
#define CONFIG_HW_DECODE_EXAMPLE 1
|
||||
#define CONFIG_METADATA_EXAMPLE 1
|
||||
#define CONFIG_MUXING_EXAMPLE 0
|
||||
#define CONFIG_QSVDEC_EXAMPLE 0
|
||||
#define CONFIG_REMUXING_EXAMPLE 1
|
||||
#define CONFIG_RESAMPLING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_SCALING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODE_AAC_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODING_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_ENCODE_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_TRANSCODE_EXAMPLE 0
|
||||
#define CONFIG_AVISYNTH 0
|
||||
#define CONFIG_FREI0R 0
|
||||
#define CONFIG_LIBCDIO 0
|
||||
#define CONFIG_LIBDAVS2 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_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_LIBDRM 0
|
||||
#define CONFIG_LIBFLITE 0
|
||||
#define CONFIG_LIBFONTCONFIG 0
|
||||
#define CONFIG_LIBFREETYPE 0
|
||||
#define CONFIG_LIBFRIBIDI 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_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 1
|
||||
#define CONFIG_LIBPLACEBO 0
|
||||
#define CONFIG_LIBPULSE 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_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_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 0
|
||||
#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_CRYSTALHD 0
|
||||
#define CONFIG_CUDA 0
|
||||
#define CONFIG_CUDA_LLVM 0
|
||||
#define CONFIG_CUVID 0
|
||||
#define CONFIG_D3D11VA 0
|
||||
#define CONFIG_DXVA2 0
|
||||
#define CONFIG_FFNVCODEC 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 0
|
||||
#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 1
|
||||
#define CONFIG_STATIC 1
|
||||
#define CONFIG_SWSCALE_ALPHA 1
|
||||
#define CONFIG_GPL 0
|
||||
#define CONFIG_NONFREE 0
|
||||
#define CONFIG_VERSION3 0
|
||||
#define CONFIG_AVDEVICE 0
|
||||
#define CONFIG_AVFILTER 0
|
||||
#define CONFIG_SWSCALE 0
|
||||
#define CONFIG_POSTPROC 0
|
||||
#define CONFIG_AVFORMAT 1
|
||||
#define CONFIG_AVCODEC 1
|
||||
#define CONFIG_SWRESAMPLE 0
|
||||
#define CONFIG_AVUTIL 1
|
||||
#define CONFIG_FFPLAY 0
|
||||
#define CONFIG_FFPROBE 0
|
||||
#define CONFIG_FFMPEG 0
|
||||
#define CONFIG_DCT 1
|
||||
#define CONFIG_DWT 0
|
||||
#define CONFIG_ERROR_RESILIENCE 0
|
||||
#define CONFIG_FAAN 0
|
||||
#define CONFIG_FAST_UNALIGNED 1
|
||||
#define CONFIG_FFT 1
|
||||
#define CONFIG_LSP 0
|
||||
#define CONFIG_MDCT 0
|
||||
#define CONFIG_PIXELUTILS 0
|
||||
#define CONFIG_NETWORK 0
|
||||
#define CONFIG_RDFT 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 1
|
||||
#define CONFIG_PTX_COMPRESSION 0
|
||||
#define CONFIG_THUMB 0
|
||||
#define CONFIG_VALGRIND_BACKTRACE 0
|
||||
#define CONFIG_XMM_CLOBBER_TEST 0
|
||||
#define CONFIG_BSFS 0
|
||||
#define CONFIG_DECODERS 1
|
||||
#define CONFIG_ENCODERS 0
|
||||
#define CONFIG_HWACCELS 0
|
||||
#define CONFIG_PARSERS 1
|
||||
#define CONFIG_INDEVS 0
|
||||
#define CONFIG_OUTDEVS 0
|
||||
#define CONFIG_FILTERS 0
|
||||
#define CONFIG_DEMUXERS 1
|
||||
#define CONFIG_MUXERS 0
|
||||
#define CONFIG_PROTOCOLS 0
|
||||
#define CONFIG_AANDCTTABLES 0
|
||||
#define CONFIG_AC3DSP 0
|
||||
#define CONFIG_ADTS_HEADER 1
|
||||
#define CONFIG_ATSC_A53 0
|
||||
#define CONFIG_AUDIO_FRAME_QUEUE 0
|
||||
#define CONFIG_AUDIODSP 0
|
||||
#define CONFIG_BLOCKDSP 0
|
||||
#define CONFIG_BSWAPDSP 0
|
||||
#define CONFIG_CABAC 0
|
||||
#define CONFIG_CBS 0
|
||||
#define CONFIG_CBS_AV1 0
|
||||
#define CONFIG_CBS_H264 0
|
||||
#define CONFIG_CBS_H265 0
|
||||
#define CONFIG_CBS_JPEG 0
|
||||
#define CONFIG_CBS_MPEG2 0
|
||||
#define CONFIG_CBS_VP9 0
|
||||
#define CONFIG_DEFLATE_WRAPPER 0
|
||||
#define CONFIG_DIRAC_PARSE 1
|
||||
#define CONFIG_DNN 0
|
||||
#define CONFIG_DOVI_RPU 0
|
||||
#define CONFIG_DVPROFILE 0
|
||||
#define CONFIG_EXIF 0
|
||||
#define CONFIG_FAANDCT 0
|
||||
#define CONFIG_FAANIDCT 0
|
||||
#define CONFIG_FDCTDSP 0
|
||||
#define CONFIG_FMTCONVERT 0
|
||||
#define CONFIG_FRAME_THREAD_ENCODER 0
|
||||
#define CONFIG_G722DSP 0
|
||||
#define CONFIG_GOLOMB 1
|
||||
#define CONFIG_GPLV3 0
|
||||
#define CONFIG_H263DSP 0
|
||||
#define CONFIG_H264CHROMA 0
|
||||
#define CONFIG_H264DSP 0
|
||||
#define CONFIG_H264PARSE 0
|
||||
#define CONFIG_H264PRED 0
|
||||
#define CONFIG_H264QPEL 0
|
||||
#define CONFIG_HEVCPARSE 0
|
||||
#define CONFIG_HPELDSP 0
|
||||
#define CONFIG_HUFFMAN 0
|
||||
#define CONFIG_HUFFYUVDSP 0
|
||||
#define CONFIG_HUFFYUVENCDSP 0
|
||||
#define CONFIG_IDCTDSP 0
|
||||
#define CONFIG_IIRFILTER 0
|
||||
#define CONFIG_INFLATE_WRAPPER 0
|
||||
#define CONFIG_INTRAX8 0
|
||||
#define CONFIG_ISO_MEDIA 1
|
||||
#define CONFIG_IVIDSP 0
|
||||
#define CONFIG_JPEGTABLES 0
|
||||
#define CONFIG_LGPLV3 0
|
||||
#define CONFIG_LIBX262 0
|
||||
#define CONFIG_LLAUDDSP 0
|
||||
#define CONFIG_LLVIDDSP 0
|
||||
#define CONFIG_LLVIDENCDSP 0
|
||||
#define CONFIG_LPC 0
|
||||
#define CONFIG_LZF 0
|
||||
#define CONFIG_ME_CMP 0
|
||||
#define CONFIG_MPEG_ER 0
|
||||
#define CONFIG_MPEGAUDIO 1
|
||||
#define CONFIG_MPEGAUDIODSP 1
|
||||
#define CONFIG_MPEGAUDIOHEADER 1
|
||||
#define CONFIG_MPEG4AUDIO 1
|
||||
#define CONFIG_MPEGVIDEO 0
|
||||
#define CONFIG_MPEGVIDEODEC 0
|
||||
#define CONFIG_MPEGVIDEOENC 0
|
||||
#define CONFIG_MSMPEG4DEC 0
|
||||
#define CONFIG_MSMPEG4ENC 0
|
||||
#define CONFIG_MSS34DSP 0
|
||||
#define CONFIG_PIXBLOCKDSP 0
|
||||
#define CONFIG_QPELDSP 0
|
||||
#define CONFIG_QSV 0
|
||||
#define CONFIG_QSVDEC 0
|
||||
#define CONFIG_QSVENC 0
|
||||
#define CONFIG_QSVVPP 0
|
||||
#define CONFIG_RANGECODER 0
|
||||
#define CONFIG_RIFFDEC 1
|
||||
#define CONFIG_RIFFENC 0
|
||||
#define CONFIG_RTPDEC 0
|
||||
#define CONFIG_RTPENC_CHAIN 0
|
||||
#define CONFIG_RV34DSP 0
|
||||
#define CONFIG_SCENE_SAD 0
|
||||
#define CONFIG_SINEWIN 1
|
||||
#define CONFIG_SNAPPY 0
|
||||
#define CONFIG_SRTP 0
|
||||
#define CONFIG_STARTCODE 0
|
||||
#define CONFIG_TEXTUREDSP 0
|
||||
#define CONFIG_TEXTUREDSPENC 0
|
||||
#define CONFIG_TPELDSP 0
|
||||
#define CONFIG_VAAPI_1 0
|
||||
#define CONFIG_VAAPI_ENCODE 0
|
||||
#define CONFIG_VC1DSP 0
|
||||
#define CONFIG_VIDEODSP 0
|
||||
#define CONFIG_VP3DSP 0
|
||||
#define CONFIG_VP56DSP 0
|
||||
#define CONFIG_VP8DSP 0
|
||||
#define CONFIG_WMA_FREQS 0
|
||||
#define CONFIG_WMV2DSP 0
|
||||
#endif /* FFMPEG_CONFIG_H */
|
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/config_components.h
vendored
Normal file
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/config_components.h
vendored
Normal file
File diff suppressed because it is too large
Load diff
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/libavcodec/bsf_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/libavcodec/bsf_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const FFBitStreamFilter * const bitstream_filters[] = {
|
||||
NULL };
|
16
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/libavcodec/codec_list.c
vendored
Normal file
16
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/libavcodec/codec_list.c
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
static const FFCodec * const codec_list[] = {
|
||||
&ff_aac_decoder,
|
||||
&ff_flac_decoder,
|
||||
&ff_mp3_decoder,
|
||||
&ff_vorbis_decoder,
|
||||
&ff_pcm_alaw_decoder,
|
||||
&ff_pcm_f32le_decoder,
|
||||
&ff_pcm_mulaw_decoder,
|
||||
&ff_pcm_s16be_decoder,
|
||||
&ff_pcm_s16le_decoder,
|
||||
&ff_pcm_s24be_decoder,
|
||||
&ff_pcm_s24le_decoder,
|
||||
&ff_pcm_s32le_decoder,
|
||||
&ff_pcm_u8_decoder,
|
||||
&ff_libopus_decoder,
|
||||
NULL };
|
8
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/libavcodec/parser_list.c
vendored
Normal file
8
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/libavcodec/parser_list.c
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
static const AVCodecParser * const parser_list[] = {
|
||||
&ff_aac_parser,
|
||||
&ff_flac_parser,
|
||||
&ff_mpegaudio_parser,
|
||||
&ff_opus_parser,
|
||||
&ff_vorbis_parser,
|
||||
&ff_vp9_parser,
|
||||
NULL };
|
|
@ -0,0 +1,9 @@
|
|||
static const AVInputFormat * const demuxer_list[] = {
|
||||
&ff_aac_demuxer,
|
||||
&ff_flac_demuxer,
|
||||
&ff_matroska_demuxer,
|
||||
&ff_mov_demuxer,
|
||||
&ff_mp3_demuxer,
|
||||
&ff_ogg_demuxer,
|
||||
&ff_wav_demuxer,
|
||||
NULL };
|
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/libavformat/muxer_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/libavformat/muxer_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const AVOutputFormat * const muxer_list[] = {
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const URLProtocol * const url_protocols[] = {
|
||||
NULL };
|
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/libavutil/avconfig.h
vendored
Normal file
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/libavutil/avconfig.h
vendored
Normal file
|
@ -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 */
|
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/libavutil/ffversion.h
vendored
Normal file
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/arm64/libavutil/ffversion.h
vendored
Normal file
|
@ -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-110326-g0bb5dd59ec"
|
||||
#endif /* AVUTIL_FFVERSION_H */
|
2017
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/config.asm
vendored
Normal file
2017
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/config.asm
vendored
Normal file
File diff suppressed because it is too large
Load diff
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/config.h
vendored
Normal file
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/config.h
vendored
Normal file
|
@ -0,0 +1,748 @@
|
|||
/* Automatically generated by configure - do not modify! */
|
||||
#ifndef FFMPEG_CONFIG_H
|
||||
#define FFMPEG_CONFIG_H
|
||||
/* #define FFMPEG_CONFIGURATION "--disable-everything --disable-all --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-static --enable-avcodec --enable-avformat --enable-avutil --enable-fft --enable-rdft --enable-static --enable-libopus --disable-debug --disable-bzlib --disable-error-resilience --disable-iconv --disable-network --disable-schannel --disable-sdl2 --disable-symver --disable-xlib --disable-zlib --disable-securetransport --disable-faan --disable-alsa --disable-autodetect --enable-decoder='vorbis,libopus,flac' --enable-decoder='pcm_u8,pcm_s16le,pcm_s24le,pcm_s32le,pcm_f32le,mp3' --enable-decoder='pcm_s16be,pcm_s24be,pcm_mulaw,pcm_alaw' --enable-demuxer='ogg,matroska,wav,flac,mp3,mov' --enable-parser='opus,vorbis,flac,mpegaudio,vp9' --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/opus/src/include --disable-linux-perf --x86asmexe=nasm --enable-small --enable-pic --cc=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang --cxx=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ --ld=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang --enable-cross-compile --sysroot=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/i686-linux-android --extra-cflags='--target=i686-linux-android24' --extra-ldflags='--target=i686-linux-android24' --extra-ldflags=-L/tmp/fakelinkerscripts --extra-ldflags=-L/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/i686-linux-android --extra-ldflags='--gcc-toolchain=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/' --target-os=android --arch=i686 --extra-cflags='\"-m32\"' --extra-ldflags='\"-m32\"' --disable-x86asm --enable-demuxer=aac --enable-parser=aac --enable-decoder=aac" -- elide long configuration string from binary */
|
||||
#define FFMPEG_LICENSE "LGPL version 2.1 or later"
|
||||
#define CONFIG_THIS_YEAR 2022
|
||||
#define FFMPEG_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define AVCONV_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define CC_IDENT "Android (7284624, based on r416183b) clang version 12.0.5 (https://android.googlesource.com/toolchain/llvm-project c935d99d7cf2016289302412d708641d52d2f7ee)"
|
||||
#define OS_NAME android
|
||||
#define av_restrict restrict
|
||||
#define EXTERN_PREFIX ""
|
||||
#define EXTERN_ASM
|
||||
#define BUILDSUF ""
|
||||
#define SLIBSUF ".so"
|
||||
#define HAVE_MMX2 HAVE_MMXEXT
|
||||
#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_TOMI 0
|
||||
#define ARCH_X86 1
|
||||
#define ARCH_X86_32 1
|
||||
#define ARCH_X86_64 0
|
||||
#define HAVE_ARMV5TE 0
|
||||
#define HAVE_ARMV6 0
|
||||
#define HAVE_ARMV6T2 0
|
||||
#define HAVE_ARMV8 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_RVV 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_CPUNOP 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_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_RVV_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_CPUNOP_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_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_RVV_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_CPUNOP_INLINE 0
|
||||
#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 0
|
||||
#define HAVE_FAST_CLZ 1
|
||||
#define HAVE_FAST_CMOV 0
|
||||
#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_CABS 0
|
||||
#define HAVE_CEXP 0
|
||||
#define HAVE_INLINE_ASM 1
|
||||
#define HAVE_SYMVER 0
|
||||
#define HAVE_X86ASM 0
|
||||
#define HAVE_BIGENDIAN 0
|
||||
#define HAVE_FAST_UNALIGNED 1
|
||||
#define HAVE_ARPA_INET_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 0
|
||||
#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_SYS_PARAM_H 1
|
||||
#define HAVE_SYS_RESOURCE_H 1
|
||||
#define HAVE_SYS_SELECT_H 1
|
||||
#define HAVE_SYS_SOUNDCARD_H 0
|
||||
#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_VALGRIND_VALGRIND_H 0 -- forced to 0. See https://crbug.com/590440 */
|
||||
#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 1
|
||||
#define HAVE_CLOCK_GETTIME 1
|
||||
#define HAVE_CLOSESOCKET 0
|
||||
#define HAVE_COMMANDLINETOARGVW 0
|
||||
#define HAVE_FCNTL 1
|
||||
#define HAVE_GETADDRINFO 0
|
||||
#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 0
|
||||
#define HAVE_GLXGETPROCADDRESS 0
|
||||
#define HAVE_GMTIME_R 1
|
||||
#define HAVE_INET_ATON 0
|
||||
#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 0 /* #define HAVE_POSIX_MEMALIGN 1 -- forced to 0. See https://crbug.com/604451 */
|
||||
#define HAVE_PRCTL 1
|
||||
#define HAVE_PTHREAD_CANCEL 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_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_VDPAU_X11 0
|
||||
#define HAVE_PTHREADS 1
|
||||
#define HAVE_OS2THREADS 0
|
||||
#define HAVE_W32THREADS 0
|
||||
#define HAVE_AS_ARCH_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 -- ebp selection is done by the chrome build */
|
||||
#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 1
|
||||
#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 0
|
||||
#define HAVE_STRUCT_ADDRINFO 0
|
||||
#define HAVE_STRUCT_GROUP_SOURCE_REQ 0
|
||||
#define HAVE_STRUCT_IP_MREQ_SOURCE 0
|
||||
#define HAVE_STRUCT_IPV6_MREQ 0
|
||||
#define HAVE_STRUCT_MSGHDR_MSG_FLAGS 0
|
||||
#define HAVE_STRUCT_POLLFD 0
|
||||
#define HAVE_STRUCT_RUSAGE_RU_MAXRSS 1
|
||||
#define HAVE_STRUCT_SCTP_EVENT_SUBSCRIBE 0
|
||||
#define HAVE_STRUCT_SOCKADDR_IN6 0
|
||||
#define HAVE_STRUCT_SOCKADDR_SA_LEN 0
|
||||
#define HAVE_STRUCT_SOCKADDR_STORAGE 0
|
||||
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
|
||||
#define HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE 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_PERL 1
|
||||
#define HAVE_POD2MAN 1
|
||||
#define HAVE_TEXI2HTML 0
|
||||
#define HAVE_XMLLINT 1
|
||||
#define HAVE_ZLIB_GZIP 0
|
||||
#define CONFIG_DOC 0
|
||||
#define CONFIG_HTMLPAGES 0
|
||||
#define CONFIG_MANPAGES 0
|
||||
#define CONFIG_PODPAGES 0
|
||||
#define CONFIG_TXTPAGES 0
|
||||
#define CONFIG_AVIO_LIST_DIR_EXAMPLE 1
|
||||
#define CONFIG_AVIO_READING_EXAMPLE 1
|
||||
#define CONFIG_DECODE_AUDIO_EXAMPLE 1
|
||||
#define CONFIG_DECODE_VIDEO_EXAMPLE 1
|
||||
#define CONFIG_DEMUXING_DECODING_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 0
|
||||
#define CONFIG_FILTERING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_FILTERING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_HTTP_MULTICLIENT_EXAMPLE 1
|
||||
#define CONFIG_HW_DECODE_EXAMPLE 1
|
||||
#define CONFIG_METADATA_EXAMPLE 1
|
||||
#define CONFIG_MUXING_EXAMPLE 0
|
||||
#define CONFIG_QSVDEC_EXAMPLE 0
|
||||
#define CONFIG_REMUXING_EXAMPLE 1
|
||||
#define CONFIG_RESAMPLING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_SCALING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODE_AAC_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODING_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_ENCODE_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_TRANSCODE_EXAMPLE 0
|
||||
#define CONFIG_AVISYNTH 0
|
||||
#define CONFIG_FREI0R 0
|
||||
#define CONFIG_LIBCDIO 0
|
||||
#define CONFIG_LIBDAVS2 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_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_LIBDRM 0
|
||||
#define CONFIG_LIBFLITE 0
|
||||
#define CONFIG_LIBFONTCONFIG 0
|
||||
#define CONFIG_LIBFREETYPE 0
|
||||
#define CONFIG_LIBFRIBIDI 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_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 1
|
||||
#define CONFIG_LIBPLACEBO 0
|
||||
#define CONFIG_LIBPULSE 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_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_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 0
|
||||
#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_CRYSTALHD 0
|
||||
#define CONFIG_CUDA 0
|
||||
#define CONFIG_CUDA_LLVM 0
|
||||
#define CONFIG_CUVID 0
|
||||
#define CONFIG_D3D11VA 0
|
||||
#define CONFIG_DXVA2 0
|
||||
#define CONFIG_FFNVCODEC 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 0
|
||||
#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 1
|
||||
#define CONFIG_STATIC 1
|
||||
#define CONFIG_SWSCALE_ALPHA 1
|
||||
#define CONFIG_GPL 0
|
||||
#define CONFIG_NONFREE 0
|
||||
#define CONFIG_VERSION3 0
|
||||
#define CONFIG_AVDEVICE 0
|
||||
#define CONFIG_AVFILTER 0
|
||||
#define CONFIG_SWSCALE 0
|
||||
#define CONFIG_POSTPROC 0
|
||||
#define CONFIG_AVFORMAT 1
|
||||
#define CONFIG_AVCODEC 1
|
||||
#define CONFIG_SWRESAMPLE 0
|
||||
#define CONFIG_AVUTIL 1
|
||||
#define CONFIG_FFPLAY 0
|
||||
#define CONFIG_FFPROBE 0
|
||||
#define CONFIG_FFMPEG 0
|
||||
#define CONFIG_DCT 1
|
||||
#define CONFIG_DWT 0
|
||||
#define CONFIG_ERROR_RESILIENCE 0
|
||||
#define CONFIG_FAAN 0
|
||||
#define CONFIG_FAST_UNALIGNED 1
|
||||
#define CONFIG_FFT 1
|
||||
#define CONFIG_LSP 0
|
||||
#define CONFIG_MDCT 0
|
||||
#define CONFIG_PIXELUTILS 0
|
||||
#define CONFIG_NETWORK 0
|
||||
#define CONFIG_RDFT 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 1
|
||||
#define CONFIG_PTX_COMPRESSION 0
|
||||
#define CONFIG_THUMB 0
|
||||
#define CONFIG_VALGRIND_BACKTRACE 0
|
||||
#define CONFIG_XMM_CLOBBER_TEST 0
|
||||
#define CONFIG_BSFS 0
|
||||
#define CONFIG_DECODERS 1
|
||||
#define CONFIG_ENCODERS 0
|
||||
#define CONFIG_HWACCELS 0
|
||||
#define CONFIG_PARSERS 1
|
||||
#define CONFIG_INDEVS 0
|
||||
#define CONFIG_OUTDEVS 0
|
||||
#define CONFIG_FILTERS 0
|
||||
#define CONFIG_DEMUXERS 1
|
||||
#define CONFIG_MUXERS 0
|
||||
#define CONFIG_PROTOCOLS 0
|
||||
#define CONFIG_AANDCTTABLES 0
|
||||
#define CONFIG_AC3DSP 0
|
||||
#define CONFIG_ADTS_HEADER 1
|
||||
#define CONFIG_ATSC_A53 0
|
||||
#define CONFIG_AUDIO_FRAME_QUEUE 0
|
||||
#define CONFIG_AUDIODSP 0
|
||||
#define CONFIG_BLOCKDSP 0
|
||||
#define CONFIG_BSWAPDSP 0
|
||||
#define CONFIG_CABAC 0
|
||||
#define CONFIG_CBS 0
|
||||
#define CONFIG_CBS_AV1 0
|
||||
#define CONFIG_CBS_H264 0
|
||||
#define CONFIG_CBS_H265 0
|
||||
#define CONFIG_CBS_JPEG 0
|
||||
#define CONFIG_CBS_MPEG2 0
|
||||
#define CONFIG_CBS_VP9 0
|
||||
#define CONFIG_DEFLATE_WRAPPER 0
|
||||
#define CONFIG_DIRAC_PARSE 1
|
||||
#define CONFIG_DNN 0
|
||||
#define CONFIG_DOVI_RPU 0
|
||||
#define CONFIG_DVPROFILE 0
|
||||
#define CONFIG_EXIF 0
|
||||
#define CONFIG_FAANDCT 0
|
||||
#define CONFIG_FAANIDCT 0
|
||||
#define CONFIG_FDCTDSP 0
|
||||
#define CONFIG_FMTCONVERT 0
|
||||
#define CONFIG_FRAME_THREAD_ENCODER 0
|
||||
#define CONFIG_G722DSP 0
|
||||
#define CONFIG_GOLOMB 1
|
||||
#define CONFIG_GPLV3 0
|
||||
#define CONFIG_H263DSP 0
|
||||
#define CONFIG_H264CHROMA 0
|
||||
#define CONFIG_H264DSP 0
|
||||
#define CONFIG_H264PARSE 0
|
||||
#define CONFIG_H264PRED 0
|
||||
#define CONFIG_H264QPEL 0
|
||||
#define CONFIG_HEVCPARSE 0
|
||||
#define CONFIG_HPELDSP 0
|
||||
#define CONFIG_HUFFMAN 0
|
||||
#define CONFIG_HUFFYUVDSP 0
|
||||
#define CONFIG_HUFFYUVENCDSP 0
|
||||
#define CONFIG_IDCTDSP 0
|
||||
#define CONFIG_IIRFILTER 0
|
||||
#define CONFIG_INFLATE_WRAPPER 0
|
||||
#define CONFIG_INTRAX8 0
|
||||
#define CONFIG_ISO_MEDIA 1
|
||||
#define CONFIG_IVIDSP 0
|
||||
#define CONFIG_JPEGTABLES 0
|
||||
#define CONFIG_LGPLV3 0
|
||||
#define CONFIG_LIBX262 0
|
||||
#define CONFIG_LLAUDDSP 0
|
||||
#define CONFIG_LLVIDDSP 0
|
||||
#define CONFIG_LLVIDENCDSP 0
|
||||
#define CONFIG_LPC 0
|
||||
#define CONFIG_LZF 0
|
||||
#define CONFIG_ME_CMP 0
|
||||
#define CONFIG_MPEG_ER 0
|
||||
#define CONFIG_MPEGAUDIO 1
|
||||
#define CONFIG_MPEGAUDIODSP 1
|
||||
#define CONFIG_MPEGAUDIOHEADER 1
|
||||
#define CONFIG_MPEG4AUDIO 1
|
||||
#define CONFIG_MPEGVIDEO 0
|
||||
#define CONFIG_MPEGVIDEODEC 0
|
||||
#define CONFIG_MPEGVIDEOENC 0
|
||||
#define CONFIG_MSMPEG4DEC 0
|
||||
#define CONFIG_MSMPEG4ENC 0
|
||||
#define CONFIG_MSS34DSP 0
|
||||
#define CONFIG_PIXBLOCKDSP 0
|
||||
#define CONFIG_QPELDSP 0
|
||||
#define CONFIG_QSV 0
|
||||
#define CONFIG_QSVDEC 0
|
||||
#define CONFIG_QSVENC 0
|
||||
#define CONFIG_QSVVPP 0
|
||||
#define CONFIG_RANGECODER 0
|
||||
#define CONFIG_RIFFDEC 1
|
||||
#define CONFIG_RIFFENC 0
|
||||
#define CONFIG_RTPDEC 0
|
||||
#define CONFIG_RTPENC_CHAIN 0
|
||||
#define CONFIG_RV34DSP 0
|
||||
#define CONFIG_SCENE_SAD 0
|
||||
#define CONFIG_SINEWIN 1
|
||||
#define CONFIG_SNAPPY 0
|
||||
#define CONFIG_SRTP 0
|
||||
#define CONFIG_STARTCODE 0
|
||||
#define CONFIG_TEXTUREDSP 0
|
||||
#define CONFIG_TEXTUREDSPENC 0
|
||||
#define CONFIG_TPELDSP 0
|
||||
#define CONFIG_VAAPI_1 0
|
||||
#define CONFIG_VAAPI_ENCODE 0
|
||||
#define CONFIG_VC1DSP 0
|
||||
#define CONFIG_VIDEODSP 0
|
||||
#define CONFIG_VP3DSP 0
|
||||
#define CONFIG_VP56DSP 0
|
||||
#define CONFIG_VP8DSP 0
|
||||
#define CONFIG_WMA_FREQS 0
|
||||
#define CONFIG_WMV2DSP 0
|
||||
#endif /* FFMPEG_CONFIG_H */
|
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/config_components.h
vendored
Normal file
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/config_components.h
vendored
Normal file
File diff suppressed because it is too large
Load diff
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/libavcodec/bsf_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/libavcodec/bsf_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const FFBitStreamFilter * const bitstream_filters[] = {
|
||||
NULL };
|
16
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/libavcodec/codec_list.c
vendored
Normal file
16
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/libavcodec/codec_list.c
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
static const FFCodec * const codec_list[] = {
|
||||
&ff_aac_decoder,
|
||||
&ff_flac_decoder,
|
||||
&ff_mp3_decoder,
|
||||
&ff_vorbis_decoder,
|
||||
&ff_pcm_alaw_decoder,
|
||||
&ff_pcm_f32le_decoder,
|
||||
&ff_pcm_mulaw_decoder,
|
||||
&ff_pcm_s16be_decoder,
|
||||
&ff_pcm_s16le_decoder,
|
||||
&ff_pcm_s24be_decoder,
|
||||
&ff_pcm_s24le_decoder,
|
||||
&ff_pcm_s32le_decoder,
|
||||
&ff_pcm_u8_decoder,
|
||||
&ff_libopus_decoder,
|
||||
NULL };
|
8
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/libavcodec/parser_list.c
vendored
Normal file
8
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/libavcodec/parser_list.c
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
static const AVCodecParser * const parser_list[] = {
|
||||
&ff_aac_parser,
|
||||
&ff_flac_parser,
|
||||
&ff_mpegaudio_parser,
|
||||
&ff_opus_parser,
|
||||
&ff_vorbis_parser,
|
||||
&ff_vp9_parser,
|
||||
NULL };
|
|
@ -0,0 +1,9 @@
|
|||
static const AVInputFormat * const demuxer_list[] = {
|
||||
&ff_aac_demuxer,
|
||||
&ff_flac_demuxer,
|
||||
&ff_matroska_demuxer,
|
||||
&ff_mov_demuxer,
|
||||
&ff_mp3_demuxer,
|
||||
&ff_ogg_demuxer,
|
||||
&ff_wav_demuxer,
|
||||
NULL };
|
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/libavformat/muxer_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/libavformat/muxer_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const AVOutputFormat * const muxer_list[] = {
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const URLProtocol * const url_protocols[] = {
|
||||
NULL };
|
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/libavutil/avconfig.h
vendored
Normal file
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/libavutil/avconfig.h
vendored
Normal file
|
@ -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 */
|
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/libavutil/ffversion.h
vendored
Normal file
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/ia32/libavutil/ffversion.h
vendored
Normal file
|
@ -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-110326-g0bb5dd59ec"
|
||||
#endif /* AVUTIL_FFVERSION_H */
|
2499
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mips64el/config.h
vendored
Normal file
2499
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mips64el/config.h
vendored
Normal file
File diff suppressed because it is too large
Load diff
3
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mips64el/libavcodec/bsf_list.c
vendored
Normal file
3
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mips64el/libavcodec/bsf_list.c
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
static const AVBitStreamFilter * const bitstream_filters[] = {
|
||||
&ff_null_bsf,
|
||||
NULL };
|
16
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mips64el/libavcodec/codec_list.c
vendored
Normal file
16
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mips64el/libavcodec/codec_list.c
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
static const AVCodec * const codec_list[] = {
|
||||
&ff_aac_decoder,
|
||||
&ff_flac_decoder,
|
||||
&ff_mp3_decoder,
|
||||
&ff_vorbis_decoder,
|
||||
&ff_pcm_alaw_decoder,
|
||||
&ff_pcm_f32le_decoder,
|
||||
&ff_pcm_mulaw_decoder,
|
||||
&ff_pcm_s16be_decoder,
|
||||
&ff_pcm_s16le_decoder,
|
||||
&ff_pcm_s24be_decoder,
|
||||
&ff_pcm_s24le_decoder,
|
||||
&ff_pcm_s32le_decoder,
|
||||
&ff_pcm_u8_decoder,
|
||||
&ff_libopus_decoder,
|
||||
NULL };
|
|
@ -0,0 +1,8 @@
|
|||
static const AVCodecParser * const parser_list[] = {
|
||||
&ff_aac_parser,
|
||||
&ff_flac_parser,
|
||||
&ff_mpegaudio_parser,
|
||||
&ff_opus_parser,
|
||||
&ff_vorbis_parser,
|
||||
&ff_vp9_parser,
|
||||
NULL };
|
|
@ -0,0 +1,9 @@
|
|||
static const AVInputFormat * const demuxer_list[] = {
|
||||
&ff_aac_demuxer,
|
||||
&ff_flac_demuxer,
|
||||
&ff_matroska_demuxer,
|
||||
&ff_mov_demuxer,
|
||||
&ff_mp3_demuxer,
|
||||
&ff_ogg_demuxer,
|
||||
&ff_wav_demuxer,
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const AVOutputFormat * const muxer_list[] = {
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const URLProtocol * const url_protocols[] = {
|
||||
NULL };
|
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mips64el/libavutil/avconfig.h
vendored
Normal file
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mips64el/libavutil/avconfig.h
vendored
Normal file
|
@ -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 0
|
||||
#endif /* AVUTIL_AVCONFIG_H */
|
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mips64el/libavutil/ffversion.h
vendored
Normal file
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mips64el/libavutil/ffversion.h
vendored
Normal file
|
@ -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-94581-gb4c1b9c2a7"
|
||||
#endif /* AVUTIL_FFVERSION_H */
|
2499
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mipsel/config.h
vendored
Normal file
2499
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mipsel/config.h
vendored
Normal file
File diff suppressed because it is too large
Load diff
3
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mipsel/libavcodec/bsf_list.c
vendored
Normal file
3
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mipsel/libavcodec/bsf_list.c
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
static const AVBitStreamFilter * const bitstream_filters[] = {
|
||||
&ff_null_bsf,
|
||||
NULL };
|
16
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mipsel/libavcodec/codec_list.c
vendored
Normal file
16
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mipsel/libavcodec/codec_list.c
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
static const AVCodec * const codec_list[] = {
|
||||
&ff_aac_decoder,
|
||||
&ff_flac_decoder,
|
||||
&ff_mp3_decoder,
|
||||
&ff_vorbis_decoder,
|
||||
&ff_pcm_alaw_decoder,
|
||||
&ff_pcm_f32le_decoder,
|
||||
&ff_pcm_mulaw_decoder,
|
||||
&ff_pcm_s16be_decoder,
|
||||
&ff_pcm_s16le_decoder,
|
||||
&ff_pcm_s24be_decoder,
|
||||
&ff_pcm_s24le_decoder,
|
||||
&ff_pcm_s32le_decoder,
|
||||
&ff_pcm_u8_decoder,
|
||||
&ff_libopus_decoder,
|
||||
NULL };
|
|
@ -0,0 +1,8 @@
|
|||
static const AVCodecParser * const parser_list[] = {
|
||||
&ff_aac_parser,
|
||||
&ff_flac_parser,
|
||||
&ff_mpegaudio_parser,
|
||||
&ff_opus_parser,
|
||||
&ff_vorbis_parser,
|
||||
&ff_vp9_parser,
|
||||
NULL };
|
|
@ -0,0 +1,9 @@
|
|||
static const AVInputFormat * const demuxer_list[] = {
|
||||
&ff_aac_demuxer,
|
||||
&ff_flac_demuxer,
|
||||
&ff_matroska_demuxer,
|
||||
&ff_mov_demuxer,
|
||||
&ff_mp3_demuxer,
|
||||
&ff_ogg_demuxer,
|
||||
&ff_wav_demuxer,
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const AVOutputFormat * const muxer_list[] = {
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const URLProtocol * const url_protocols[] = {
|
||||
NULL };
|
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mipsel/libavutil/avconfig.h
vendored
Normal file
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mipsel/libavutil/avconfig.h
vendored
Normal file
|
@ -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 0
|
||||
#endif /* AVUTIL_AVCONFIG_H */
|
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mipsel/libavutil/ffversion.h
vendored
Normal file
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/mipsel/libavutil/ffversion.h
vendored
Normal file
|
@ -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-94581-gb4c1b9c2a7"
|
||||
#endif /* AVUTIL_FFVERSION_H */
|
731
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/config.asm
vendored
Normal file
731
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/config.asm
vendored
Normal file
|
@ -0,0 +1,731 @@
|
|||
; Automatically generated by configure - do not modify!
|
||||
%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_TOMI 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_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_RVV 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_CPUNOP 0
|
||||
%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_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_RVV_EXTERNAL 0
|
||||
%define HAVE_AESNI_EXTERNAL 1
|
||||
%define HAVE_AMD3DNOW_EXTERNAL 1
|
||||
%define HAVE_AMD3DNOWEXT_EXTERNAL 1
|
||||
%define HAVE_AVX_EXTERNAL 1
|
||||
%define HAVE_AVX2_EXTERNAL 1
|
||||
%define HAVE_AVX512_EXTERNAL 1
|
||||
%define HAVE_AVX512ICL_EXTERNAL 1
|
||||
%define HAVE_FMA3_EXTERNAL 1
|
||||
%define HAVE_FMA4_EXTERNAL 1
|
||||
%define HAVE_MMX_EXTERNAL 1
|
||||
%define HAVE_MMXEXT_EXTERNAL 1
|
||||
%define HAVE_SSE_EXTERNAL 1
|
||||
%define HAVE_SSE2_EXTERNAL 1
|
||||
%define HAVE_SSE3_EXTERNAL 1
|
||||
%define HAVE_SSE4_EXTERNAL 1
|
||||
%define HAVE_SSE42_EXTERNAL 1
|
||||
%define HAVE_SSSE3_EXTERNAL 1
|
||||
%define HAVE_XOP_EXTERNAL 1
|
||||
%define HAVE_CPUNOP_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_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_RVV_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_CPUNOP_INLINE 0
|
||||
%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_CABS 0
|
||||
%define HAVE_CEXP 0
|
||||
%define HAVE_INLINE_ASM 1
|
||||
%define HAVE_SYMVER 0
|
||||
%define HAVE_X86ASM 1
|
||||
%define HAVE_BIGENDIAN 0
|
||||
%define HAVE_FAST_UNALIGNED 1
|
||||
%define HAVE_ARPA_INET_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 0
|
||||
%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_SYS_PARAM_H 1
|
||||
%define HAVE_SYS_RESOURCE_H 1
|
||||
%define HAVE_SYS_SELECT_H 1
|
||||
%define HAVE_SYS_SOUNDCARD_H 0
|
||||
%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_VALGRIND_VALGRIND_H 0 -- forced to 0. See https://crbug.com/590440
|
||||
%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 1
|
||||
%define HAVE_CLOCK_GETTIME 1
|
||||
%define HAVE_CLOSESOCKET 0
|
||||
%define HAVE_COMMANDLINETOARGVW 0
|
||||
%define HAVE_FCNTL 1
|
||||
%define HAVE_GETADDRINFO 0
|
||||
%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 0
|
||||
%define HAVE_GLXGETPROCADDRESS 0
|
||||
%define HAVE_GMTIME_R 1
|
||||
%define HAVE_INET_ATON 0
|
||||
%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 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_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_VDPAU_X11 0
|
||||
%define HAVE_PTHREADS 1
|
||||
%define HAVE_OS2THREADS 0
|
||||
%define HAVE_W32THREADS 0
|
||||
%define HAVE_AS_ARCH_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 1
|
||||
%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 0
|
||||
%define HAVE_STRUCT_ADDRINFO 0
|
||||
%define HAVE_STRUCT_GROUP_SOURCE_REQ 0
|
||||
%define HAVE_STRUCT_IP_MREQ_SOURCE 0
|
||||
%define HAVE_STRUCT_IPV6_MREQ 0
|
||||
%define HAVE_STRUCT_MSGHDR_MSG_FLAGS 0
|
||||
%define HAVE_STRUCT_POLLFD 0
|
||||
%define HAVE_STRUCT_RUSAGE_RU_MAXRSS 1
|
||||
%define HAVE_STRUCT_SCTP_EVENT_SUBSCRIBE 0
|
||||
%define HAVE_STRUCT_SOCKADDR_IN6 0
|
||||
%define HAVE_STRUCT_SOCKADDR_SA_LEN 0
|
||||
%define HAVE_STRUCT_SOCKADDR_STORAGE 0
|
||||
%define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
|
||||
%define HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE 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_PERL 1
|
||||
%define HAVE_POD2MAN 1
|
||||
%define HAVE_TEXI2HTML 0
|
||||
%define HAVE_XMLLINT 1
|
||||
%define HAVE_ZLIB_GZIP 0
|
||||
%define CONFIG_DOC 0
|
||||
%define CONFIG_HTMLPAGES 0
|
||||
%define CONFIG_MANPAGES 0
|
||||
%define CONFIG_PODPAGES 0
|
||||
%define CONFIG_TXTPAGES 0
|
||||
%define CONFIG_AVIO_LIST_DIR_EXAMPLE 1
|
||||
%define CONFIG_AVIO_READING_EXAMPLE 1
|
||||
%define CONFIG_DECODE_AUDIO_EXAMPLE 1
|
||||
%define CONFIG_DECODE_VIDEO_EXAMPLE 1
|
||||
%define CONFIG_DEMUXING_DECODING_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 0
|
||||
%define CONFIG_FILTERING_AUDIO_EXAMPLE 0
|
||||
%define CONFIG_FILTERING_VIDEO_EXAMPLE 0
|
||||
%define CONFIG_HTTP_MULTICLIENT_EXAMPLE 1
|
||||
%define CONFIG_HW_DECODE_EXAMPLE 1
|
||||
%define CONFIG_METADATA_EXAMPLE 1
|
||||
%define CONFIG_MUXING_EXAMPLE 0
|
||||
%define CONFIG_QSVDEC_EXAMPLE 0
|
||||
%define CONFIG_REMUXING_EXAMPLE 1
|
||||
%define CONFIG_RESAMPLING_AUDIO_EXAMPLE 0
|
||||
%define CONFIG_SCALING_VIDEO_EXAMPLE 0
|
||||
%define CONFIG_TRANSCODE_AAC_EXAMPLE 0
|
||||
%define CONFIG_TRANSCODING_EXAMPLE 0
|
||||
%define CONFIG_VAAPI_ENCODE_EXAMPLE 0
|
||||
%define CONFIG_VAAPI_TRANSCODE_EXAMPLE 0
|
||||
%define CONFIG_AVISYNTH 0
|
||||
%define CONFIG_FREI0R 0
|
||||
%define CONFIG_LIBCDIO 0
|
||||
%define CONFIG_LIBDAVS2 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_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_LIBDRM 0
|
||||
%define CONFIG_LIBFLITE 0
|
||||
%define CONFIG_LIBFONTCONFIG 0
|
||||
%define CONFIG_LIBFREETYPE 0
|
||||
%define CONFIG_LIBFRIBIDI 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_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 1
|
||||
%define CONFIG_LIBPLACEBO 0
|
||||
%define CONFIG_LIBPULSE 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_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_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 0
|
||||
%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_CRYSTALHD 0
|
||||
%define CONFIG_CUDA 0
|
||||
%define CONFIG_CUDA_LLVM 0
|
||||
%define CONFIG_CUVID 0
|
||||
%define CONFIG_D3D11VA 0
|
||||
%define CONFIG_DXVA2 0
|
||||
%define CONFIG_FFNVCODEC 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 0
|
||||
%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 1
|
||||
%define CONFIG_STATIC 1
|
||||
%define CONFIG_SWSCALE_ALPHA 1
|
||||
%define CONFIG_GPL 0
|
||||
%define CONFIG_NONFREE 0
|
||||
%define CONFIG_VERSION3 0
|
||||
%define CONFIG_AVDEVICE 0
|
||||
%define CONFIG_AVFILTER 0
|
||||
%define CONFIG_SWSCALE 0
|
||||
%define CONFIG_POSTPROC 0
|
||||
%define CONFIG_AVFORMAT 1
|
||||
%define CONFIG_AVCODEC 1
|
||||
%define CONFIG_SWRESAMPLE 0
|
||||
%define CONFIG_AVUTIL 1
|
||||
%define CONFIG_FFPLAY 0
|
||||
%define CONFIG_FFPROBE 0
|
||||
%define CONFIG_FFMPEG 0
|
||||
%define CONFIG_DCT 1
|
||||
%define CONFIG_DWT 0
|
||||
%define CONFIG_ERROR_RESILIENCE 0
|
||||
%define CONFIG_FAAN 0
|
||||
%define CONFIG_FAST_UNALIGNED 1
|
||||
%define CONFIG_FFT 1
|
||||
%define CONFIG_LSP 0
|
||||
%define CONFIG_MDCT 0
|
||||
%define CONFIG_PIXELUTILS 0
|
||||
%define CONFIG_NETWORK 0
|
||||
%define CONFIG_RDFT 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 1
|
||||
%define CONFIG_PTX_COMPRESSION 0
|
||||
%define CONFIG_THUMB 0
|
||||
%define CONFIG_VALGRIND_BACKTRACE 0
|
||||
%define CONFIG_XMM_CLOBBER_TEST 0
|
||||
%define CONFIG_BSFS 0
|
||||
%define CONFIG_DECODERS 1
|
||||
%define CONFIG_ENCODERS 0
|
||||
%define CONFIG_HWACCELS 0
|
||||
%define CONFIG_PARSERS 1
|
||||
%define CONFIG_INDEVS 0
|
||||
%define CONFIG_OUTDEVS 0
|
||||
%define CONFIG_FILTERS 0
|
||||
%define CONFIG_DEMUXERS 1
|
||||
%define CONFIG_MUXERS 0
|
||||
%define CONFIG_PROTOCOLS 0
|
||||
%define CONFIG_AANDCTTABLES 0
|
||||
%define CONFIG_AC3DSP 0
|
||||
%define CONFIG_ADTS_HEADER 1
|
||||
%define CONFIG_ATSC_A53 0
|
||||
%define CONFIG_AUDIO_FRAME_QUEUE 0
|
||||
%define CONFIG_AUDIODSP 0
|
||||
%define CONFIG_BLOCKDSP 0
|
||||
%define CONFIG_BSWAPDSP 0
|
||||
%define CONFIG_CABAC 0
|
||||
%define CONFIG_CBS 0
|
||||
%define CONFIG_CBS_AV1 0
|
||||
%define CONFIG_CBS_H264 0
|
||||
%define CONFIG_CBS_H265 0
|
||||
%define CONFIG_CBS_JPEG 0
|
||||
%define CONFIG_CBS_MPEG2 0
|
||||
%define CONFIG_CBS_VP9 0
|
||||
%define CONFIG_DEFLATE_WRAPPER 0
|
||||
%define CONFIG_DIRAC_PARSE 1
|
||||
%define CONFIG_DNN 0
|
||||
%define CONFIG_DOVI_RPU 0
|
||||
%define CONFIG_DVPROFILE 0
|
||||
%define CONFIG_EXIF 0
|
||||
%define CONFIG_FAANDCT 0
|
||||
%define CONFIG_FAANIDCT 0
|
||||
%define CONFIG_FDCTDSP 0
|
||||
%define CONFIG_FMTCONVERT 0
|
||||
%define CONFIG_FRAME_THREAD_ENCODER 0
|
||||
%define CONFIG_G722DSP 0
|
||||
%define CONFIG_GOLOMB 1
|
||||
%define CONFIG_GPLV3 0
|
||||
%define CONFIG_H263DSP 0
|
||||
%define CONFIG_H264CHROMA 0
|
||||
%define CONFIG_H264DSP 0
|
||||
%define CONFIG_H264PARSE 0
|
||||
%define CONFIG_H264PRED 0
|
||||
%define CONFIG_H264QPEL 0
|
||||
%define CONFIG_HEVCPARSE 0
|
||||
%define CONFIG_HPELDSP 0
|
||||
%define CONFIG_HUFFMAN 0
|
||||
%define CONFIG_HUFFYUVDSP 0
|
||||
%define CONFIG_HUFFYUVENCDSP 0
|
||||
%define CONFIG_IDCTDSP 0
|
||||
%define CONFIG_IIRFILTER 0
|
||||
%define CONFIG_INFLATE_WRAPPER 0
|
||||
%define CONFIG_INTRAX8 0
|
||||
%define CONFIG_ISO_MEDIA 1
|
||||
%define CONFIG_IVIDSP 0
|
||||
%define CONFIG_JPEGTABLES 0
|
||||
%define CONFIG_LGPLV3 0
|
||||
%define CONFIG_LIBX262 0
|
||||
%define CONFIG_LLAUDDSP 0
|
||||
%define CONFIG_LLVIDDSP 0
|
||||
%define CONFIG_LLVIDENCDSP 0
|
||||
%define CONFIG_LPC 0
|
||||
%define CONFIG_LZF 0
|
||||
%define CONFIG_ME_CMP 0
|
||||
%define CONFIG_MPEG_ER 0
|
||||
%define CONFIG_MPEGAUDIO 1
|
||||
%define CONFIG_MPEGAUDIODSP 1
|
||||
%define CONFIG_MPEGAUDIOHEADER 1
|
||||
%define CONFIG_MPEG4AUDIO 1
|
||||
%define CONFIG_MPEGVIDEO 0
|
||||
%define CONFIG_MPEGVIDEODEC 0
|
||||
%define CONFIG_MPEGVIDEOENC 0
|
||||
%define CONFIG_MSMPEG4DEC 0
|
||||
%define CONFIG_MSMPEG4ENC 0
|
||||
%define CONFIG_MSS34DSP 0
|
||||
%define CONFIG_PIXBLOCKDSP 0
|
||||
%define CONFIG_QPELDSP 0
|
||||
%define CONFIG_QSV 0
|
||||
%define CONFIG_QSVDEC 0
|
||||
%define CONFIG_QSVENC 0
|
||||
%define CONFIG_QSVVPP 0
|
||||
%define CONFIG_RANGECODER 0
|
||||
%define CONFIG_RIFFDEC 1
|
||||
%define CONFIG_RIFFENC 0
|
||||
%define CONFIG_RTPDEC 0
|
||||
%define CONFIG_RTPENC_CHAIN 0
|
||||
%define CONFIG_RV34DSP 0
|
||||
%define CONFIG_SCENE_SAD 0
|
||||
%define CONFIG_SINEWIN 1
|
||||
%define CONFIG_SNAPPY 0
|
||||
%define CONFIG_SRTP 0
|
||||
%define CONFIG_STARTCODE 0
|
||||
%define CONFIG_TEXTUREDSP 0
|
||||
%define CONFIG_TEXTUREDSPENC 0
|
||||
%define CONFIG_TPELDSP 0
|
||||
%define CONFIG_VAAPI_1 0
|
||||
%define CONFIG_VAAPI_ENCODE 0
|
||||
%define CONFIG_VC1DSP 0
|
||||
%define CONFIG_VIDEODSP 0
|
||||
%define CONFIG_VP3DSP 0
|
||||
%define CONFIG_VP56DSP 0
|
||||
%define CONFIG_VP8DSP 0
|
||||
%define CONFIG_WMA_FREQS 0
|
||||
%define CONFIG_WMV2DSP 0
|
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/config.h
vendored
Normal file
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/config.h
vendored
Normal file
|
@ -0,0 +1,748 @@
|
|||
/* Automatically generated by configure - do not modify! */
|
||||
#ifndef FFMPEG_CONFIG_H
|
||||
#define FFMPEG_CONFIG_H
|
||||
/* #define FFMPEG_CONFIGURATION "--disable-everything --disable-all --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-static --enable-avcodec --enable-avformat --enable-avutil --enable-fft --enable-rdft --enable-static --enable-libopus --disable-debug --disable-bzlib --disable-error-resilience --disable-iconv --disable-network --disable-schannel --disable-sdl2 --disable-symver --disable-xlib --disable-zlib --disable-securetransport --disable-faan --disable-alsa --disable-autodetect --enable-decoder='vorbis,libopus,flac' --enable-decoder='pcm_u8,pcm_s16le,pcm_s24le,pcm_s32le,pcm_f32le,mp3' --enable-decoder='pcm_s16be,pcm_s24be,pcm_mulaw,pcm_alaw' --enable-demuxer='ogg,matroska,wav,flac,mp3,mov' --enable-parser='opus,vorbis,flac,mpegaudio,vp9' --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/opus/src/include --disable-linux-perf --x86asmexe=nasm --enable-small --enable-pic --cc=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang --cxx=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ --ld=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang --enable-cross-compile --sysroot=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/x86_64-linux-android --extra-cflags='--target=x86_64-linux-android24' --extra-ldflags='--target=x86_64-linux-android24' --extra-ldflags=-L/tmp/fakelinkerscripts --extra-ldflags=-L/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/x86_64-linux-android --extra-ldflags='--gcc-toolchain=/usr/local/google/home/tguilbert/Code/chromium/src/third_party/android_ndk/toolchains/llvm/prebuilt/linux-x86_64/' --target-os=android --arch=x86_64 --enable-demuxer=aac --enable-parser=aac --enable-decoder=aac" -- elide long configuration string from binary */
|
||||
#define FFMPEG_LICENSE "LGPL version 2.1 or later"
|
||||
#define CONFIG_THIS_YEAR 2022
|
||||
#define FFMPEG_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define AVCONV_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define CC_IDENT "Android (7284624, based on r416183b) clang version 12.0.5 (https://android.googlesource.com/toolchain/llvm-project c935d99d7cf2016289302412d708641d52d2f7ee)"
|
||||
#define OS_NAME android
|
||||
#define av_restrict restrict
|
||||
#define EXTERN_PREFIX ""
|
||||
#define EXTERN_ASM
|
||||
#define BUILDSUF ""
|
||||
#define SLIBSUF ".so"
|
||||
#define HAVE_MMX2 HAVE_MMXEXT
|
||||
#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_TOMI 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_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_RVV 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_CPUNOP 0
|
||||
#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_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_RVV_EXTERNAL 0
|
||||
#define HAVE_AESNI_EXTERNAL 1
|
||||
#define HAVE_AMD3DNOW_EXTERNAL 1
|
||||
#define HAVE_AMD3DNOWEXT_EXTERNAL 1
|
||||
#define HAVE_AVX_EXTERNAL 1
|
||||
#define HAVE_AVX2_EXTERNAL 1
|
||||
#define HAVE_AVX512_EXTERNAL 1
|
||||
#define HAVE_AVX512ICL_EXTERNAL 1
|
||||
#define HAVE_FMA3_EXTERNAL 1
|
||||
#define HAVE_FMA4_EXTERNAL 1
|
||||
#define HAVE_MMX_EXTERNAL 1
|
||||
#define HAVE_MMXEXT_EXTERNAL 1
|
||||
#define HAVE_SSE_EXTERNAL 1
|
||||
#define HAVE_SSE2_EXTERNAL 1
|
||||
#define HAVE_SSE3_EXTERNAL 1
|
||||
#define HAVE_SSE4_EXTERNAL 1
|
||||
#define HAVE_SSE42_EXTERNAL 1
|
||||
#define HAVE_SSSE3_EXTERNAL 1
|
||||
#define HAVE_XOP_EXTERNAL 1
|
||||
#define HAVE_CPUNOP_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_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_RVV_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_CPUNOP_INLINE 0
|
||||
#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_CABS 0
|
||||
#define HAVE_CEXP 0
|
||||
#define HAVE_INLINE_ASM 1
|
||||
#define HAVE_SYMVER 0
|
||||
#define HAVE_X86ASM 1
|
||||
#define HAVE_BIGENDIAN 0
|
||||
#define HAVE_FAST_UNALIGNED 1
|
||||
#define HAVE_ARPA_INET_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 0
|
||||
#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_SYS_PARAM_H 1
|
||||
#define HAVE_SYS_RESOURCE_H 1
|
||||
#define HAVE_SYS_SELECT_H 1
|
||||
#define HAVE_SYS_SOUNDCARD_H 0
|
||||
#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_VALGRIND_VALGRIND_H 0 -- forced to 0. See https://crbug.com/590440 */
|
||||
#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 1
|
||||
#define HAVE_CLOCK_GETTIME 1
|
||||
#define HAVE_CLOSESOCKET 0
|
||||
#define HAVE_COMMANDLINETOARGVW 0
|
||||
#define HAVE_FCNTL 1
|
||||
#define HAVE_GETADDRINFO 0
|
||||
#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 0
|
||||
#define HAVE_GLXGETPROCADDRESS 0
|
||||
#define HAVE_GMTIME_R 1
|
||||
#define HAVE_INET_ATON 0
|
||||
#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 0 /* #define HAVE_POSIX_MEMALIGN 1 -- forced to 0. See https://crbug.com/604451 */
|
||||
#define HAVE_PRCTL 1
|
||||
#define HAVE_PTHREAD_CANCEL 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_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_VDPAU_X11 0
|
||||
#define HAVE_PTHREADS 1
|
||||
#define HAVE_OS2THREADS 0
|
||||
#define HAVE_W32THREADS 0
|
||||
#define HAVE_AS_ARCH_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 1
|
||||
#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 0
|
||||
#define HAVE_STRUCT_ADDRINFO 0
|
||||
#define HAVE_STRUCT_GROUP_SOURCE_REQ 0
|
||||
#define HAVE_STRUCT_IP_MREQ_SOURCE 0
|
||||
#define HAVE_STRUCT_IPV6_MREQ 0
|
||||
#define HAVE_STRUCT_MSGHDR_MSG_FLAGS 0
|
||||
#define HAVE_STRUCT_POLLFD 0
|
||||
#define HAVE_STRUCT_RUSAGE_RU_MAXRSS 1
|
||||
#define HAVE_STRUCT_SCTP_EVENT_SUBSCRIBE 0
|
||||
#define HAVE_STRUCT_SOCKADDR_IN6 0
|
||||
#define HAVE_STRUCT_SOCKADDR_SA_LEN 0
|
||||
#define HAVE_STRUCT_SOCKADDR_STORAGE 0
|
||||
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
|
||||
#define HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE 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_PERL 1
|
||||
#define HAVE_POD2MAN 1
|
||||
#define HAVE_TEXI2HTML 0
|
||||
#define HAVE_XMLLINT 1
|
||||
#define HAVE_ZLIB_GZIP 0
|
||||
#define CONFIG_DOC 0
|
||||
#define CONFIG_HTMLPAGES 0
|
||||
#define CONFIG_MANPAGES 0
|
||||
#define CONFIG_PODPAGES 0
|
||||
#define CONFIG_TXTPAGES 0
|
||||
#define CONFIG_AVIO_LIST_DIR_EXAMPLE 1
|
||||
#define CONFIG_AVIO_READING_EXAMPLE 1
|
||||
#define CONFIG_DECODE_AUDIO_EXAMPLE 1
|
||||
#define CONFIG_DECODE_VIDEO_EXAMPLE 1
|
||||
#define CONFIG_DEMUXING_DECODING_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 0
|
||||
#define CONFIG_FILTERING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_FILTERING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_HTTP_MULTICLIENT_EXAMPLE 1
|
||||
#define CONFIG_HW_DECODE_EXAMPLE 1
|
||||
#define CONFIG_METADATA_EXAMPLE 1
|
||||
#define CONFIG_MUXING_EXAMPLE 0
|
||||
#define CONFIG_QSVDEC_EXAMPLE 0
|
||||
#define CONFIG_REMUXING_EXAMPLE 1
|
||||
#define CONFIG_RESAMPLING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_SCALING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODE_AAC_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODING_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_ENCODE_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_TRANSCODE_EXAMPLE 0
|
||||
#define CONFIG_AVISYNTH 0
|
||||
#define CONFIG_FREI0R 0
|
||||
#define CONFIG_LIBCDIO 0
|
||||
#define CONFIG_LIBDAVS2 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_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_LIBDRM 0
|
||||
#define CONFIG_LIBFLITE 0
|
||||
#define CONFIG_LIBFONTCONFIG 0
|
||||
#define CONFIG_LIBFREETYPE 0
|
||||
#define CONFIG_LIBFRIBIDI 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_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 1
|
||||
#define CONFIG_LIBPLACEBO 0
|
||||
#define CONFIG_LIBPULSE 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_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_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 0
|
||||
#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_CRYSTALHD 0
|
||||
#define CONFIG_CUDA 0
|
||||
#define CONFIG_CUDA_LLVM 0
|
||||
#define CONFIG_CUVID 0
|
||||
#define CONFIG_D3D11VA 0
|
||||
#define CONFIG_DXVA2 0
|
||||
#define CONFIG_FFNVCODEC 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 0
|
||||
#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 1
|
||||
#define CONFIG_STATIC 1
|
||||
#define CONFIG_SWSCALE_ALPHA 1
|
||||
#define CONFIG_GPL 0
|
||||
#define CONFIG_NONFREE 0
|
||||
#define CONFIG_VERSION3 0
|
||||
#define CONFIG_AVDEVICE 0
|
||||
#define CONFIG_AVFILTER 0
|
||||
#define CONFIG_SWSCALE 0
|
||||
#define CONFIG_POSTPROC 0
|
||||
#define CONFIG_AVFORMAT 1
|
||||
#define CONFIG_AVCODEC 1
|
||||
#define CONFIG_SWRESAMPLE 0
|
||||
#define CONFIG_AVUTIL 1
|
||||
#define CONFIG_FFPLAY 0
|
||||
#define CONFIG_FFPROBE 0
|
||||
#define CONFIG_FFMPEG 0
|
||||
#define CONFIG_DCT 1
|
||||
#define CONFIG_DWT 0
|
||||
#define CONFIG_ERROR_RESILIENCE 0
|
||||
#define CONFIG_FAAN 0
|
||||
#define CONFIG_FAST_UNALIGNED 1
|
||||
#define CONFIG_FFT 1
|
||||
#define CONFIG_LSP 0
|
||||
#define CONFIG_MDCT 0
|
||||
#define CONFIG_PIXELUTILS 0
|
||||
#define CONFIG_NETWORK 0
|
||||
#define CONFIG_RDFT 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 1
|
||||
#define CONFIG_PTX_COMPRESSION 0
|
||||
#define CONFIG_THUMB 0
|
||||
#define CONFIG_VALGRIND_BACKTRACE 0
|
||||
#define CONFIG_XMM_CLOBBER_TEST 0
|
||||
#define CONFIG_BSFS 0
|
||||
#define CONFIG_DECODERS 1
|
||||
#define CONFIG_ENCODERS 0
|
||||
#define CONFIG_HWACCELS 0
|
||||
#define CONFIG_PARSERS 1
|
||||
#define CONFIG_INDEVS 0
|
||||
#define CONFIG_OUTDEVS 0
|
||||
#define CONFIG_FILTERS 0
|
||||
#define CONFIG_DEMUXERS 1
|
||||
#define CONFIG_MUXERS 0
|
||||
#define CONFIG_PROTOCOLS 0
|
||||
#define CONFIG_AANDCTTABLES 0
|
||||
#define CONFIG_AC3DSP 0
|
||||
#define CONFIG_ADTS_HEADER 1
|
||||
#define CONFIG_ATSC_A53 0
|
||||
#define CONFIG_AUDIO_FRAME_QUEUE 0
|
||||
#define CONFIG_AUDIODSP 0
|
||||
#define CONFIG_BLOCKDSP 0
|
||||
#define CONFIG_BSWAPDSP 0
|
||||
#define CONFIG_CABAC 0
|
||||
#define CONFIG_CBS 0
|
||||
#define CONFIG_CBS_AV1 0
|
||||
#define CONFIG_CBS_H264 0
|
||||
#define CONFIG_CBS_H265 0
|
||||
#define CONFIG_CBS_JPEG 0
|
||||
#define CONFIG_CBS_MPEG2 0
|
||||
#define CONFIG_CBS_VP9 0
|
||||
#define CONFIG_DEFLATE_WRAPPER 0
|
||||
#define CONFIG_DIRAC_PARSE 1
|
||||
#define CONFIG_DNN 0
|
||||
#define CONFIG_DOVI_RPU 0
|
||||
#define CONFIG_DVPROFILE 0
|
||||
#define CONFIG_EXIF 0
|
||||
#define CONFIG_FAANDCT 0
|
||||
#define CONFIG_FAANIDCT 0
|
||||
#define CONFIG_FDCTDSP 0
|
||||
#define CONFIG_FMTCONVERT 0
|
||||
#define CONFIG_FRAME_THREAD_ENCODER 0
|
||||
#define CONFIG_G722DSP 0
|
||||
#define CONFIG_GOLOMB 1
|
||||
#define CONFIG_GPLV3 0
|
||||
#define CONFIG_H263DSP 0
|
||||
#define CONFIG_H264CHROMA 0
|
||||
#define CONFIG_H264DSP 0
|
||||
#define CONFIG_H264PARSE 0
|
||||
#define CONFIG_H264PRED 0
|
||||
#define CONFIG_H264QPEL 0
|
||||
#define CONFIG_HEVCPARSE 0
|
||||
#define CONFIG_HPELDSP 0
|
||||
#define CONFIG_HUFFMAN 0
|
||||
#define CONFIG_HUFFYUVDSP 0
|
||||
#define CONFIG_HUFFYUVENCDSP 0
|
||||
#define CONFIG_IDCTDSP 0
|
||||
#define CONFIG_IIRFILTER 0
|
||||
#define CONFIG_INFLATE_WRAPPER 0
|
||||
#define CONFIG_INTRAX8 0
|
||||
#define CONFIG_ISO_MEDIA 1
|
||||
#define CONFIG_IVIDSP 0
|
||||
#define CONFIG_JPEGTABLES 0
|
||||
#define CONFIG_LGPLV3 0
|
||||
#define CONFIG_LIBX262 0
|
||||
#define CONFIG_LLAUDDSP 0
|
||||
#define CONFIG_LLVIDDSP 0
|
||||
#define CONFIG_LLVIDENCDSP 0
|
||||
#define CONFIG_LPC 0
|
||||
#define CONFIG_LZF 0
|
||||
#define CONFIG_ME_CMP 0
|
||||
#define CONFIG_MPEG_ER 0
|
||||
#define CONFIG_MPEGAUDIO 1
|
||||
#define CONFIG_MPEGAUDIODSP 1
|
||||
#define CONFIG_MPEGAUDIOHEADER 1
|
||||
#define CONFIG_MPEG4AUDIO 1
|
||||
#define CONFIG_MPEGVIDEO 0
|
||||
#define CONFIG_MPEGVIDEODEC 0
|
||||
#define CONFIG_MPEGVIDEOENC 0
|
||||
#define CONFIG_MSMPEG4DEC 0
|
||||
#define CONFIG_MSMPEG4ENC 0
|
||||
#define CONFIG_MSS34DSP 0
|
||||
#define CONFIG_PIXBLOCKDSP 0
|
||||
#define CONFIG_QPELDSP 0
|
||||
#define CONFIG_QSV 0
|
||||
#define CONFIG_QSVDEC 0
|
||||
#define CONFIG_QSVENC 0
|
||||
#define CONFIG_QSVVPP 0
|
||||
#define CONFIG_RANGECODER 0
|
||||
#define CONFIG_RIFFDEC 1
|
||||
#define CONFIG_RIFFENC 0
|
||||
#define CONFIG_RTPDEC 0
|
||||
#define CONFIG_RTPENC_CHAIN 0
|
||||
#define CONFIG_RV34DSP 0
|
||||
#define CONFIG_SCENE_SAD 0
|
||||
#define CONFIG_SINEWIN 1
|
||||
#define CONFIG_SNAPPY 0
|
||||
#define CONFIG_SRTP 0
|
||||
#define CONFIG_STARTCODE 0
|
||||
#define CONFIG_TEXTUREDSP 0
|
||||
#define CONFIG_TEXTUREDSPENC 0
|
||||
#define CONFIG_TPELDSP 0
|
||||
#define CONFIG_VAAPI_1 0
|
||||
#define CONFIG_VAAPI_ENCODE 0
|
||||
#define CONFIG_VC1DSP 0
|
||||
#define CONFIG_VIDEODSP 0
|
||||
#define CONFIG_VP3DSP 0
|
||||
#define CONFIG_VP56DSP 0
|
||||
#define CONFIG_VP8DSP 0
|
||||
#define CONFIG_WMA_FREQS 0
|
||||
#define CONFIG_WMV2DSP 0
|
||||
#endif /* FFMPEG_CONFIG_H */
|
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/config_components.h
vendored
Normal file
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/config_components.h
vendored
Normal file
File diff suppressed because it is too large
Load diff
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavcodec/bsf_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavcodec/bsf_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const FFBitStreamFilter * const bitstream_filters[] = {
|
||||
NULL };
|
16
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavcodec/codec_list.c
vendored
Normal file
16
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavcodec/codec_list.c
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
static const FFCodec * const codec_list[] = {
|
||||
&ff_aac_decoder,
|
||||
&ff_flac_decoder,
|
||||
&ff_mp3_decoder,
|
||||
&ff_vorbis_decoder,
|
||||
&ff_pcm_alaw_decoder,
|
||||
&ff_pcm_f32le_decoder,
|
||||
&ff_pcm_mulaw_decoder,
|
||||
&ff_pcm_s16be_decoder,
|
||||
&ff_pcm_s16le_decoder,
|
||||
&ff_pcm_s24be_decoder,
|
||||
&ff_pcm_s24le_decoder,
|
||||
&ff_pcm_s32le_decoder,
|
||||
&ff_pcm_u8_decoder,
|
||||
&ff_libopus_decoder,
|
||||
NULL };
|
8
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavcodec/parser_list.c
vendored
Normal file
8
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavcodec/parser_list.c
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
static const AVCodecParser * const parser_list[] = {
|
||||
&ff_aac_parser,
|
||||
&ff_flac_parser,
|
||||
&ff_mpegaudio_parser,
|
||||
&ff_opus_parser,
|
||||
&ff_vorbis_parser,
|
||||
&ff_vp9_parser,
|
||||
NULL };
|
9
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavformat/demuxer_list.c
vendored
Normal file
9
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavformat/demuxer_list.c
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
static const AVInputFormat * const demuxer_list[] = {
|
||||
&ff_aac_demuxer,
|
||||
&ff_flac_demuxer,
|
||||
&ff_matroska_demuxer,
|
||||
&ff_mov_demuxer,
|
||||
&ff_mp3_demuxer,
|
||||
&ff_ogg_demuxer,
|
||||
&ff_wav_demuxer,
|
||||
NULL };
|
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavformat/muxer_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavformat/muxer_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const AVOutputFormat * const muxer_list[] = {
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const URLProtocol * const url_protocols[] = {
|
||||
NULL };
|
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavutil/avconfig.h
vendored
Normal file
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavutil/avconfig.h
vendored
Normal file
|
@ -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 */
|
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavutil/ffversion.h
vendored
Normal file
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/android/x64/libavutil/ffversion.h
vendored
Normal file
|
@ -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-110326-g0bb5dd59ec"
|
||||
#endif /* AVUTIL_FFVERSION_H */
|
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/config.h
vendored
Normal file
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/config.h
vendored
Normal file
|
@ -0,0 +1,748 @@
|
|||
/* Automatically generated by configure - do not modify! */
|
||||
#ifndef FFMPEG_CONFIG_H
|
||||
#define FFMPEG_CONFIG_H
|
||||
/* #define FFMPEG_CONFIGURATION "--disable-everything --disable-all --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-static --enable-avcodec --enable-avformat --enable-avutil --enable-fft --enable-rdft --enable-static --enable-libopus --disable-debug --disable-bzlib --disable-error-resilience --disable-iconv --disable-network --disable-schannel --disable-sdl2 --disable-symver --disable-xlib --disable-zlib --disable-securetransport --disable-faan --disable-alsa --disable-autodetect --enable-decoder='vorbis,libopus,flac' --enable-decoder='pcm_u8,pcm_s16le,pcm_s24le,pcm_s32le,pcm_f32le,mp3' --enable-decoder='pcm_s16be,pcm_s24be,pcm_mulaw,pcm_alaw' --enable-demuxer='ogg,matroska,wav,flac,mp3,mov' --enable-parser='opus,vorbis,flac,mpegaudio,vp9' --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/opus/src/include --disable-linux-perf --x86asmexe=nasm --optflags='\"-O2\"' --enable-decoder='theora,vp8' --enable-parser='vp3,vp8' --enable-lto --arch=x86_64 --target-os=linux --disable-asm --disable-inline-asm --enable-pic --cc=clang --cxx=clang++ --ld=clang --extra-ldflags='-fuse-ld=lld' --enable-decoder='aac,h264' --enable-demuxer=aac --enable-parser='aac,h264'" -- elide long configuration string from binary */
|
||||
#define FFMPEG_LICENSE "LGPL version 2.1 or later"
|
||||
#define CONFIG_THIS_YEAR 2022
|
||||
#define FFMPEG_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define AVCONV_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define CC_IDENT "clang version 16.0.0 (https://chromium.googlesource.com/a/external/github.com/llvm/llvm-project 094c0eccdf959c3b9c85219e33c3fcfbab024b61)"
|
||||
#define OS_NAME linux
|
||||
#define av_restrict restrict
|
||||
#define EXTERN_PREFIX ""
|
||||
#define EXTERN_ASM
|
||||
#define BUILDSUF ""
|
||||
#define SLIBSUF ".so"
|
||||
#define HAVE_MMX2 HAVE_MMXEXT
|
||||
#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_TOMI 0
|
||||
#define ARCH_X86 0
|
||||
#define ARCH_X86_32 0
|
||||
#define ARCH_X86_64 0
|
||||
#define HAVE_ARMV5TE 0
|
||||
#define HAVE_ARMV6 0
|
||||
#define HAVE_ARMV6T2 0
|
||||
#define HAVE_ARMV8 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_RVV 0
|
||||
#define HAVE_AESNI 0
|
||||
#define HAVE_AMD3DNOW 0
|
||||
#define HAVE_AMD3DNOWEXT 0
|
||||
#define HAVE_AVX 0
|
||||
#define HAVE_AVX2 0
|
||||
#define HAVE_AVX512 0
|
||||
#define HAVE_AVX512ICL 0
|
||||
#define HAVE_FMA3 0
|
||||
#define HAVE_FMA4 0
|
||||
#define HAVE_MMX 0
|
||||
#define HAVE_MMXEXT 0
|
||||
#define HAVE_SSE 0
|
||||
#define HAVE_SSE2 0
|
||||
#define HAVE_SSE3 0
|
||||
#define HAVE_SSE4 0
|
||||
#define HAVE_SSE42 0
|
||||
#define HAVE_SSSE3 0
|
||||
#define HAVE_XOP 0
|
||||
#define HAVE_CPUNOP 0
|
||||
#define HAVE_I686 0
|
||||
#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_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_RVV_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_CPUNOP_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_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_RVV_INLINE 0
|
||||
#define HAVE_AESNI_INLINE 0
|
||||
#define HAVE_AMD3DNOW_INLINE 0
|
||||
#define HAVE_AMD3DNOWEXT_INLINE 0
|
||||
#define HAVE_AVX_INLINE 0
|
||||
#define HAVE_AVX2_INLINE 0
|
||||
#define HAVE_AVX512_INLINE 0
|
||||
#define HAVE_AVX512ICL_INLINE 0
|
||||
#define HAVE_FMA3_INLINE 0
|
||||
#define HAVE_FMA4_INLINE 0
|
||||
#define HAVE_MMX_INLINE 0
|
||||
#define HAVE_MMXEXT_INLINE 0
|
||||
#define HAVE_SSE_INLINE 0
|
||||
#define HAVE_SSE2_INLINE 0
|
||||
#define HAVE_SSE3_INLINE 0
|
||||
#define HAVE_SSE4_INLINE 0
|
||||
#define HAVE_SSE42_INLINE 0
|
||||
#define HAVE_SSSE3_INLINE 0
|
||||
#define HAVE_XOP_INLINE 0
|
||||
#define HAVE_CPUNOP_INLINE 0
|
||||
#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 0
|
||||
#define HAVE_FAST_64BIT 0
|
||||
#define HAVE_FAST_CLZ 0
|
||||
#define HAVE_FAST_CMOV 0
|
||||
#define HAVE_FAST_FLOAT16 0
|
||||
#define HAVE_LOCAL_ALIGNED 1
|
||||
#define HAVE_SIMD_ALIGN_16 0
|
||||
#define HAVE_SIMD_ALIGN_32 0
|
||||
#define HAVE_SIMD_ALIGN_64 0
|
||||
#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_CABS 0
|
||||
#define HAVE_CEXP 0
|
||||
#define HAVE_INLINE_ASM 0
|
||||
#define HAVE_SYMVER 0
|
||||
#define HAVE_X86ASM 0
|
||||
#define HAVE_BIGENDIAN 0
|
||||
#define HAVE_FAST_UNALIGNED 0
|
||||
#define HAVE_ARPA_INET_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 0
|
||||
#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_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_VALGRIND_VALGRIND_H 0 -- forced to 0. See https://crbug.com/590440 */
|
||||
#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 0
|
||||
#define HAVE_CLOCK_GETTIME 1
|
||||
#define HAVE_CLOSESOCKET 0
|
||||
#define HAVE_COMMANDLINETOARGVW 0
|
||||
#define HAVE_FCNTL 1
|
||||
#define HAVE_GETADDRINFO 0
|
||||
#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 0
|
||||
#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 0 /* #define HAVE_PRCTL 1 -- forced to 0 for Fuchsia */
|
||||
#define HAVE_PTHREAD_CANCEL 1
|
||||
#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_SYSCTL 0 -- forced to 0 for Fuchsia */
|
||||
#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_VDPAU_X11 0
|
||||
#define HAVE_PTHREADS 1
|
||||
#define HAVE_OS2THREADS 0
|
||||
#define HAVE_W32THREADS 0
|
||||
#define HAVE_AS_ARCH_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 0
|
||||
#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 1
|
||||
#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 0
|
||||
#define HAVE_STRUCT_ADDRINFO 0
|
||||
#define HAVE_STRUCT_GROUP_SOURCE_REQ 0
|
||||
#define HAVE_STRUCT_IP_MREQ_SOURCE 0
|
||||
#define HAVE_STRUCT_IPV6_MREQ 0
|
||||
#define HAVE_STRUCT_MSGHDR_MSG_FLAGS 0
|
||||
#define HAVE_STRUCT_POLLFD 0
|
||||
#define HAVE_STRUCT_RUSAGE_RU_MAXRSS 1
|
||||
#define HAVE_STRUCT_SCTP_EVENT_SUBSCRIBE 0
|
||||
#define HAVE_STRUCT_SOCKADDR_IN6 0
|
||||
#define HAVE_STRUCT_SOCKADDR_SA_LEN 0
|
||||
#define HAVE_STRUCT_SOCKADDR_STORAGE 0
|
||||
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
|
||||
#define HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE 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_PERL 1
|
||||
#define HAVE_POD2MAN 1
|
||||
#define HAVE_TEXI2HTML 0
|
||||
#define HAVE_XMLLINT 1
|
||||
#define HAVE_ZLIB_GZIP 0
|
||||
#define CONFIG_DOC 0
|
||||
#define CONFIG_HTMLPAGES 0
|
||||
#define CONFIG_MANPAGES 0
|
||||
#define CONFIG_PODPAGES 0
|
||||
#define CONFIG_TXTPAGES 0
|
||||
#define CONFIG_AVIO_LIST_DIR_EXAMPLE 1
|
||||
#define CONFIG_AVIO_READING_EXAMPLE 1
|
||||
#define CONFIG_DECODE_AUDIO_EXAMPLE 1
|
||||
#define CONFIG_DECODE_VIDEO_EXAMPLE 1
|
||||
#define CONFIG_DEMUXING_DECODING_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 0
|
||||
#define CONFIG_FILTERING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_FILTERING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_HTTP_MULTICLIENT_EXAMPLE 1
|
||||
#define CONFIG_HW_DECODE_EXAMPLE 1
|
||||
#define CONFIG_METADATA_EXAMPLE 1
|
||||
#define CONFIG_MUXING_EXAMPLE 0
|
||||
#define CONFIG_QSVDEC_EXAMPLE 0
|
||||
#define CONFIG_REMUXING_EXAMPLE 1
|
||||
#define CONFIG_RESAMPLING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_SCALING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODE_AAC_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODING_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_ENCODE_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_TRANSCODE_EXAMPLE 0
|
||||
#define CONFIG_AVISYNTH 0
|
||||
#define CONFIG_FREI0R 0
|
||||
#define CONFIG_LIBCDIO 0
|
||||
#define CONFIG_LIBDAVS2 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_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_LIBDRM 0
|
||||
#define CONFIG_LIBFLITE 0
|
||||
#define CONFIG_LIBFONTCONFIG 0
|
||||
#define CONFIG_LIBFREETYPE 0
|
||||
#define CONFIG_LIBFRIBIDI 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_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 1
|
||||
#define CONFIG_LIBPLACEBO 0
|
||||
#define CONFIG_LIBPULSE 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_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_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 0
|
||||
#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_CRYSTALHD 0
|
||||
#define CONFIG_CUDA 0
|
||||
#define CONFIG_CUDA_LLVM 0
|
||||
#define CONFIG_CUVID 0
|
||||
#define CONFIG_D3D11VA 0
|
||||
#define CONFIG_DXVA2 0
|
||||
#define CONFIG_FFNVCODEC 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 0
|
||||
#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 0
|
||||
#define CONFIG_AVFILTER 0
|
||||
#define CONFIG_SWSCALE 0
|
||||
#define CONFIG_POSTPROC 0
|
||||
#define CONFIG_AVFORMAT 1
|
||||
#define CONFIG_AVCODEC 1
|
||||
#define CONFIG_SWRESAMPLE 0
|
||||
#define CONFIG_AVUTIL 1
|
||||
#define CONFIG_FFPLAY 0
|
||||
#define CONFIG_FFPROBE 0
|
||||
#define CONFIG_FFMPEG 0
|
||||
#define CONFIG_DCT 1
|
||||
#define CONFIG_DWT 0
|
||||
#define CONFIG_ERROR_RESILIENCE 0
|
||||
#define CONFIG_FAAN 0
|
||||
#define CONFIG_FAST_UNALIGNED 0
|
||||
#define CONFIG_FFT 1
|
||||
#define CONFIG_LSP 0
|
||||
#define CONFIG_MDCT 0
|
||||
#define CONFIG_PIXELUTILS 0
|
||||
#define CONFIG_NETWORK 0
|
||||
#define CONFIG_RDFT 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 1
|
||||
#define CONFIG_PTX_COMPRESSION 0
|
||||
#define CONFIG_THUMB 0
|
||||
#define CONFIG_VALGRIND_BACKTRACE 0
|
||||
#define CONFIG_XMM_CLOBBER_TEST 0
|
||||
#define CONFIG_BSFS 0
|
||||
#define CONFIG_DECODERS 1
|
||||
#define CONFIG_ENCODERS 0
|
||||
#define CONFIG_HWACCELS 0
|
||||
#define CONFIG_PARSERS 1
|
||||
#define CONFIG_INDEVS 0
|
||||
#define CONFIG_OUTDEVS 0
|
||||
#define CONFIG_FILTERS 0
|
||||
#define CONFIG_DEMUXERS 1
|
||||
#define CONFIG_MUXERS 0
|
||||
#define CONFIG_PROTOCOLS 0
|
||||
#define CONFIG_AANDCTTABLES 0
|
||||
#define CONFIG_AC3DSP 0
|
||||
#define CONFIG_ADTS_HEADER 1
|
||||
#define CONFIG_ATSC_A53 1
|
||||
#define CONFIG_AUDIO_FRAME_QUEUE 0
|
||||
#define CONFIG_AUDIODSP 0
|
||||
#define CONFIG_BLOCKDSP 0
|
||||
#define CONFIG_BSWAPDSP 0
|
||||
#define CONFIG_CABAC 1
|
||||
#define CONFIG_CBS 0
|
||||
#define CONFIG_CBS_AV1 0
|
||||
#define CONFIG_CBS_H264 0
|
||||
#define CONFIG_CBS_H265 0
|
||||
#define CONFIG_CBS_JPEG 0
|
||||
#define CONFIG_CBS_MPEG2 0
|
||||
#define CONFIG_CBS_VP9 0
|
||||
#define CONFIG_DEFLATE_WRAPPER 0
|
||||
#define CONFIG_DIRAC_PARSE 1
|
||||
#define CONFIG_DNN 0
|
||||
#define CONFIG_DOVI_RPU 0
|
||||
#define CONFIG_DVPROFILE 0
|
||||
#define CONFIG_EXIF 0
|
||||
#define CONFIG_FAANDCT 0
|
||||
#define CONFIG_FAANIDCT 0
|
||||
#define CONFIG_FDCTDSP 0
|
||||
#define CONFIG_FMTCONVERT 0
|
||||
#define CONFIG_FRAME_THREAD_ENCODER 0
|
||||
#define CONFIG_G722DSP 0
|
||||
#define CONFIG_GOLOMB 1
|
||||
#define CONFIG_GPLV3 0
|
||||
#define CONFIG_H263DSP 0
|
||||
#define CONFIG_H264CHROMA 1
|
||||
#define CONFIG_H264DSP 1
|
||||
#define CONFIG_H264PARSE 1
|
||||
#define CONFIG_H264PRED 1
|
||||
#define CONFIG_H264QPEL 1
|
||||
#define CONFIG_HEVCPARSE 0
|
||||
#define CONFIG_HPELDSP 1
|
||||
#define CONFIG_HUFFMAN 0
|
||||
#define CONFIG_HUFFYUVDSP 0
|
||||
#define CONFIG_HUFFYUVENCDSP 0
|
||||
#define CONFIG_IDCTDSP 0
|
||||
#define CONFIG_IIRFILTER 0
|
||||
#define CONFIG_INFLATE_WRAPPER 0
|
||||
#define CONFIG_INTRAX8 0
|
||||
#define CONFIG_ISO_MEDIA 1
|
||||
#define CONFIG_IVIDSP 0
|
||||
#define CONFIG_JPEGTABLES 0
|
||||
#define CONFIG_LGPLV3 0
|
||||
#define CONFIG_LIBX262 0
|
||||
#define CONFIG_LLAUDDSP 0
|
||||
#define CONFIG_LLVIDDSP 0
|
||||
#define CONFIG_LLVIDENCDSP 0
|
||||
#define CONFIG_LPC 0
|
||||
#define CONFIG_LZF 0
|
||||
#define CONFIG_ME_CMP 0
|
||||
#define CONFIG_MPEG_ER 0
|
||||
#define CONFIG_MPEGAUDIO 1
|
||||
#define CONFIG_MPEGAUDIODSP 1
|
||||
#define CONFIG_MPEGAUDIOHEADER 1
|
||||
#define CONFIG_MPEG4AUDIO 1
|
||||
#define CONFIG_MPEGVIDEO 0
|
||||
#define CONFIG_MPEGVIDEODEC 0
|
||||
#define CONFIG_MPEGVIDEOENC 0
|
||||
#define CONFIG_MSMPEG4DEC 0
|
||||
#define CONFIG_MSMPEG4ENC 0
|
||||
#define CONFIG_MSS34DSP 0
|
||||
#define CONFIG_PIXBLOCKDSP 0
|
||||
#define CONFIG_QPELDSP 0
|
||||
#define CONFIG_QSV 0
|
||||
#define CONFIG_QSVDEC 0
|
||||
#define CONFIG_QSVENC 0
|
||||
#define CONFIG_QSVVPP 0
|
||||
#define CONFIG_RANGECODER 0
|
||||
#define CONFIG_RIFFDEC 1
|
||||
#define CONFIG_RIFFENC 0
|
||||
#define CONFIG_RTPDEC 0
|
||||
#define CONFIG_RTPENC_CHAIN 0
|
||||
#define CONFIG_RV34DSP 0
|
||||
#define CONFIG_SCENE_SAD 0
|
||||
#define CONFIG_SINEWIN 1
|
||||
#define CONFIG_SNAPPY 0
|
||||
#define CONFIG_SRTP 0
|
||||
#define CONFIG_STARTCODE 1
|
||||
#define CONFIG_TEXTUREDSP 0
|
||||
#define CONFIG_TEXTUREDSPENC 0
|
||||
#define CONFIG_TPELDSP 0
|
||||
#define CONFIG_VAAPI_1 0
|
||||
#define CONFIG_VAAPI_ENCODE 0
|
||||
#define CONFIG_VC1DSP 0
|
||||
#define CONFIG_VIDEODSP 1
|
||||
#define CONFIG_VP3DSP 1
|
||||
#define CONFIG_VP56DSP 0
|
||||
#define CONFIG_VP8DSP 1
|
||||
#define CONFIG_WMA_FREQS 0
|
||||
#define CONFIG_WMV2DSP 0
|
||||
#endif /* FFMPEG_CONFIG_H */
|
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/config_components.h
vendored
Normal file
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/config_components.h
vendored
Normal file
File diff suppressed because it is too large
Load diff
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/libavcodec/bsf_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/libavcodec/bsf_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const FFBitStreamFilter * const bitstream_filters[] = {
|
||||
NULL };
|
20
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/libavcodec/codec_list.c
vendored
Normal file
20
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/libavcodec/codec_list.c
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
static const FFCodec * const codec_list[] = {
|
||||
&ff_h264_decoder,
|
||||
&ff_theora_decoder,
|
||||
&ff_vp3_decoder,
|
||||
&ff_vp8_decoder,
|
||||
&ff_aac_decoder,
|
||||
&ff_flac_decoder,
|
||||
&ff_mp3_decoder,
|
||||
&ff_vorbis_decoder,
|
||||
&ff_pcm_alaw_decoder,
|
||||
&ff_pcm_f32le_decoder,
|
||||
&ff_pcm_mulaw_decoder,
|
||||
&ff_pcm_s16be_decoder,
|
||||
&ff_pcm_s16le_decoder,
|
||||
&ff_pcm_s24be_decoder,
|
||||
&ff_pcm_s24le_decoder,
|
||||
&ff_pcm_s32le_decoder,
|
||||
&ff_pcm_u8_decoder,
|
||||
&ff_libopus_decoder,
|
||||
NULL };
|
11
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/libavcodec/parser_list.c
vendored
Normal file
11
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/libavcodec/parser_list.c
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
static const AVCodecParser * const parser_list[] = {
|
||||
&ff_aac_parser,
|
||||
&ff_flac_parser,
|
||||
&ff_h264_parser,
|
||||
&ff_mpegaudio_parser,
|
||||
&ff_opus_parser,
|
||||
&ff_vorbis_parser,
|
||||
&ff_vp3_parser,
|
||||
&ff_vp8_parser,
|
||||
&ff_vp9_parser,
|
||||
NULL };
|
|
@ -0,0 +1,9 @@
|
|||
static const AVInputFormat * const demuxer_list[] = {
|
||||
&ff_aac_demuxer,
|
||||
&ff_flac_demuxer,
|
||||
&ff_matroska_demuxer,
|
||||
&ff_mov_demuxer,
|
||||
&ff_mp3_demuxer,
|
||||
&ff_ogg_demuxer,
|
||||
&ff_wav_demuxer,
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const AVOutputFormat * const muxer_list[] = {
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const URLProtocol * const url_protocols[] = {
|
||||
NULL };
|
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/libavutil/avconfig.h
vendored
Normal file
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/libavutil/avconfig.h
vendored
Normal file
|
@ -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 0
|
||||
#endif /* AVUTIL_AVCONFIG_H */
|
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/libavutil/ffversion.h
vendored
Normal file
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/libavutil/ffversion.h
vendored
Normal file
|
@ -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-110326-g0bb5dd59ec"
|
||||
#endif /* AVUTIL_FFVERSION_H */
|
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/config.h
vendored
Normal file
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/config.h
vendored
Normal file
|
@ -0,0 +1,748 @@
|
|||
/* Automatically generated by configure - do not modify! */
|
||||
#ifndef FFMPEG_CONFIG_H
|
||||
#define FFMPEG_CONFIG_H
|
||||
/* #define FFMPEG_CONFIGURATION "--disable-everything --disable-all --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-static --enable-avcodec --enable-avformat --enable-avutil --enable-fft --enable-rdft --enable-static --enable-libopus --disable-debug --disable-bzlib --disable-error-resilience --disable-iconv --disable-network --disable-schannel --disable-sdl2 --disable-symver --disable-xlib --disable-zlib --disable-securetransport --disable-faan --disable-alsa --disable-autodetect --enable-decoder='vorbis,libopus,flac' --enable-decoder='pcm_u8,pcm_s16le,pcm_s24le,pcm_s32le,pcm_f32le,mp3' --enable-decoder='pcm_s16be,pcm_s24be,pcm_mulaw,pcm_alaw' --enable-demuxer='ogg,matroska,wav,flac,mp3,mov' --enable-parser='opus,vorbis,flac,mpegaudio,vp9' --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/opus/src/include --disable-linux-perf --x86asmexe=nasm --optflags='\"-O2\"' --enable-decoder='theora,vp8' --enable-parser='vp3,vp8' --arch=arm --enable-armv6 --enable-armv6t2 --enable-vfp --enable-thumb --extra-cflags='-march=armv7-a' --enable-cross-compile --target-os=linux --extra-cflags='--target=arm-linux-gnueabihf' --extra-ldflags='--target=arm-linux-gnueabihf' --sysroot=/usr/local/google/home/tguilbert/Code/chromium/src/build/linux/debian_bullseye_arm-sysroot --extra-cflags='-mtune=cortex-a8' --extra-cflags='-mfloat-abi=hard' --extra-cflags=-O2 --enable-neon --extra-cflags='-mfpu=neon' --enable-pic --cc=clang --cxx=clang++ --ld=clang --extra-ldflags='-fuse-ld=lld' --enable-decoder='aac,h264' --enable-demuxer=aac --enable-parser='aac,h264'" -- elide long configuration string from binary */
|
||||
#define FFMPEG_LICENSE "LGPL version 2.1 or later"
|
||||
#define CONFIG_THIS_YEAR 2022
|
||||
#define FFMPEG_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define AVCONV_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define CC_IDENT "clang version 16.0.0 (https://chromium.googlesource.com/a/external/github.com/llvm/llvm-project 094c0eccdf959c3b9c85219e33c3fcfbab024b61)"
|
||||
#define OS_NAME linux
|
||||
#define av_restrict restrict
|
||||
#define EXTERN_PREFIX ""
|
||||
#define EXTERN_ASM
|
||||
#define BUILDSUF ""
|
||||
#define SLIBSUF ".so"
|
||||
#define HAVE_MMX2 HAVE_MMXEXT
|
||||
#define SWS_MAX_FILTER_SIZE 256
|
||||
#define ARCH_AARCH64 0
|
||||
#define ARCH_ALPHA 0
|
||||
#define ARCH_ARM 1
|
||||
#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_TOMI 0
|
||||
#define ARCH_X86 0
|
||||
#define ARCH_X86_32 0
|
||||
#define ARCH_X86_64 0
|
||||
#define HAVE_ARMV5TE 1
|
||||
#define HAVE_ARMV6 1
|
||||
#define HAVE_ARMV6T2 1
|
||||
#define HAVE_ARMV8 0
|
||||
#define HAVE_NEON 1
|
||||
#define HAVE_VFP 1
|
||||
#define HAVE_VFPV3 1
|
||||
#define HAVE_SETEND 1
|
||||
#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_RVV 0
|
||||
#define HAVE_AESNI 0
|
||||
#define HAVE_AMD3DNOW 0
|
||||
#define HAVE_AMD3DNOWEXT 0
|
||||
#define HAVE_AVX 0
|
||||
#define HAVE_AVX2 0
|
||||
#define HAVE_AVX512 0
|
||||
#define HAVE_AVX512ICL 0
|
||||
#define HAVE_FMA3 0
|
||||
#define HAVE_FMA4 0
|
||||
#define HAVE_MMX 0
|
||||
#define HAVE_MMXEXT 0
|
||||
#define HAVE_SSE 0
|
||||
#define HAVE_SSE2 0
|
||||
#define HAVE_SSE3 0
|
||||
#define HAVE_SSE4 0
|
||||
#define HAVE_SSE42 0
|
||||
#define HAVE_SSSE3 0
|
||||
#define HAVE_XOP 0
|
||||
#define HAVE_CPUNOP 0
|
||||
#define HAVE_I686 0
|
||||
#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 1
|
||||
#define HAVE_ARMV6_EXTERNAL 1
|
||||
#define HAVE_ARMV6T2_EXTERNAL 1
|
||||
#define HAVE_ARMV8_EXTERNAL 0
|
||||
#define HAVE_NEON_EXTERNAL 1
|
||||
#define HAVE_VFP_EXTERNAL 1
|
||||
#define HAVE_VFPV3_EXTERNAL 1
|
||||
#define HAVE_SETEND_EXTERNAL 1
|
||||
#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_RVV_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_CPUNOP_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 1
|
||||
#define HAVE_ARMV6_INLINE 1
|
||||
#define HAVE_ARMV6T2_INLINE 1
|
||||
#define HAVE_ARMV8_INLINE 0
|
||||
#define HAVE_NEON_INLINE 1
|
||||
#define HAVE_VFP_INLINE 1
|
||||
#define HAVE_VFPV3_INLINE 1
|
||||
#define HAVE_SETEND_INLINE 1
|
||||
#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_RVV_INLINE 0
|
||||
#define HAVE_AESNI_INLINE 0
|
||||
#define HAVE_AMD3DNOW_INLINE 0
|
||||
#define HAVE_AMD3DNOWEXT_INLINE 0
|
||||
#define HAVE_AVX_INLINE 0
|
||||
#define HAVE_AVX2_INLINE 0
|
||||
#define HAVE_AVX512_INLINE 0
|
||||
#define HAVE_AVX512ICL_INLINE 0
|
||||
#define HAVE_FMA3_INLINE 0
|
||||
#define HAVE_FMA4_INLINE 0
|
||||
#define HAVE_MMX_INLINE 0
|
||||
#define HAVE_MMXEXT_INLINE 0
|
||||
#define HAVE_SSE_INLINE 0
|
||||
#define HAVE_SSE2_INLINE 0
|
||||
#define HAVE_SSE3_INLINE 0
|
||||
#define HAVE_SSE4_INLINE 0
|
||||
#define HAVE_SSE42_INLINE 0
|
||||
#define HAVE_SSSE3_INLINE 0
|
||||
#define HAVE_XOP_INLINE 0
|
||||
#define HAVE_CPUNOP_INLINE 0
|
||||
#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 0
|
||||
#define HAVE_FAST_64BIT 0
|
||||
#define HAVE_FAST_CLZ 1
|
||||
#define HAVE_FAST_CMOV 0
|
||||
#define HAVE_FAST_FLOAT16 1
|
||||
#define HAVE_LOCAL_ALIGNED 0
|
||||
#define HAVE_SIMD_ALIGN_16 1
|
||||
#define HAVE_SIMD_ALIGN_32 0
|
||||
#define HAVE_SIMD_ALIGN_64 0
|
||||
#define HAVE_ATOMIC_CAS_PTR 0
|
||||
#define HAVE_MACHINE_RW_BARRIER 0
|
||||
#define HAVE_MEMORYBARRIER 0
|
||||
#define HAVE_MM_EMPTY 0
|
||||
#define HAVE_RDTSC 0
|
||||
#define HAVE_SEM_TIMEDWAIT 1
|
||||
#define HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
|
||||
#define HAVE_CABS 0
|
||||
#define HAVE_CEXP 0
|
||||
#define HAVE_INLINE_ASM 1
|
||||
#define HAVE_SYMVER 0
|
||||
#define HAVE_X86ASM 0
|
||||
#define HAVE_BIGENDIAN 0
|
||||
#define HAVE_FAST_UNALIGNED 1
|
||||
#define HAVE_ARPA_INET_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 0
|
||||
#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_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_VALGRIND_VALGRIND_H 1 -- forced to 0. See https://crbug.com/590440 */
|
||||
#define HAVE_WINDOWS_H 0
|
||||
#define HAVE_WINSOCK2_H 0
|
||||
#define HAVE_INTRINSICS_NEON 1
|
||||
#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 0
|
||||
#define HAVE_CLOCK_GETTIME 1
|
||||
#define HAVE_CLOSESOCKET 0
|
||||
#define HAVE_COMMANDLINETOARGVW 0
|
||||
#define HAVE_FCNTL 1
|
||||
#define HAVE_GETADDRINFO 0
|
||||
#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 0
|
||||
#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 0 /* #define HAVE_PRCTL 1 -- forced to 0 for Fuchsia */
|
||||
#define HAVE_PTHREAD_CANCEL 1
|
||||
#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_SYSCTL 1 -- forced to 0 for Fuchsia */
|
||||
#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_VDPAU_X11 0
|
||||
#define HAVE_PTHREADS 1
|
||||
#define HAVE_OS2THREADS 0
|
||||
#define HAVE_W32THREADS 0
|
||||
#define HAVE_AS_ARCH_DIRECTIVE 1
|
||||
#define HAVE_AS_DN_DIRECTIVE 0
|
||||
#define HAVE_AS_FPU_DIRECTIVE 1
|
||||
#define HAVE_AS_FUNC 0
|
||||
#define HAVE_AS_OBJECT_ARCH 1
|
||||
#define HAVE_ASM_MOD_Q 1
|
||||
#define HAVE_BLOCKS_EXTENSION 0
|
||||
#define HAVE_EBP_AVAILABLE 0
|
||||
#define HAVE_EBX_AVAILABLE 0
|
||||
#define HAVE_GNU_AS 1
|
||||
#define HAVE_GNU_WINDRES 0
|
||||
#define HAVE_IBM_ASM 0
|
||||
#define HAVE_INLINE_ASM_DIRECT_SYMBOL_REFS 0
|
||||
#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 1
|
||||
#define HAVE_SYMVER_GNU_ASM 1
|
||||
/* #define HAVE_VFP_ARGS 1 -- softfp/hardfp selection is done by the chrome build */
|
||||
#define HAVE_XFORM_ASM 0
|
||||
#define HAVE_XMM_CLOBBERS 0
|
||||
#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 0
|
||||
#define HAVE_STRUCT_ADDRINFO 0
|
||||
#define HAVE_STRUCT_GROUP_SOURCE_REQ 0
|
||||
#define HAVE_STRUCT_IP_MREQ_SOURCE 0
|
||||
#define HAVE_STRUCT_IPV6_MREQ 0
|
||||
#define HAVE_STRUCT_MSGHDR_MSG_FLAGS 0
|
||||
#define HAVE_STRUCT_POLLFD 0
|
||||
#define HAVE_STRUCT_RUSAGE_RU_MAXRSS 1
|
||||
#define HAVE_STRUCT_SCTP_EVENT_SUBSCRIBE 0
|
||||
#define HAVE_STRUCT_SOCKADDR_IN6 0
|
||||
#define HAVE_STRUCT_SOCKADDR_SA_LEN 0
|
||||
#define HAVE_STRUCT_SOCKADDR_STORAGE 0
|
||||
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
|
||||
#define HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE 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_PERL 1
|
||||
#define HAVE_POD2MAN 1
|
||||
#define HAVE_TEXI2HTML 0
|
||||
#define HAVE_XMLLINT 1
|
||||
#define HAVE_ZLIB_GZIP 0
|
||||
#define CONFIG_DOC 0
|
||||
#define CONFIG_HTMLPAGES 0
|
||||
#define CONFIG_MANPAGES 0
|
||||
#define CONFIG_PODPAGES 0
|
||||
#define CONFIG_TXTPAGES 0
|
||||
#define CONFIG_AVIO_LIST_DIR_EXAMPLE 1
|
||||
#define CONFIG_AVIO_READING_EXAMPLE 1
|
||||
#define CONFIG_DECODE_AUDIO_EXAMPLE 1
|
||||
#define CONFIG_DECODE_VIDEO_EXAMPLE 1
|
||||
#define CONFIG_DEMUXING_DECODING_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 0
|
||||
#define CONFIG_FILTERING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_FILTERING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_HTTP_MULTICLIENT_EXAMPLE 1
|
||||
#define CONFIG_HW_DECODE_EXAMPLE 1
|
||||
#define CONFIG_METADATA_EXAMPLE 1
|
||||
#define CONFIG_MUXING_EXAMPLE 0
|
||||
#define CONFIG_QSVDEC_EXAMPLE 0
|
||||
#define CONFIG_REMUXING_EXAMPLE 1
|
||||
#define CONFIG_RESAMPLING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_SCALING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODE_AAC_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODING_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_ENCODE_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_TRANSCODE_EXAMPLE 0
|
||||
#define CONFIG_AVISYNTH 0
|
||||
#define CONFIG_FREI0R 0
|
||||
#define CONFIG_LIBCDIO 0
|
||||
#define CONFIG_LIBDAVS2 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_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_LIBDRM 0
|
||||
#define CONFIG_LIBFLITE 0
|
||||
#define CONFIG_LIBFONTCONFIG 0
|
||||
#define CONFIG_LIBFREETYPE 0
|
||||
#define CONFIG_LIBFRIBIDI 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_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 1
|
||||
#define CONFIG_LIBPLACEBO 0
|
||||
#define CONFIG_LIBPULSE 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_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_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 0
|
||||
#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_CRYSTALHD 0
|
||||
#define CONFIG_CUDA 0
|
||||
#define CONFIG_CUDA_LLVM 0
|
||||
#define CONFIG_CUVID 0
|
||||
#define CONFIG_D3D11VA 0
|
||||
#define CONFIG_DXVA2 0
|
||||
#define CONFIG_FFNVCODEC 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 0
|
||||
#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 0
|
||||
#define CONFIG_AVFILTER 0
|
||||
#define CONFIG_SWSCALE 0
|
||||
#define CONFIG_POSTPROC 0
|
||||
#define CONFIG_AVFORMAT 1
|
||||
#define CONFIG_AVCODEC 1
|
||||
#define CONFIG_SWRESAMPLE 0
|
||||
#define CONFIG_AVUTIL 1
|
||||
#define CONFIG_FFPLAY 0
|
||||
#define CONFIG_FFPROBE 0
|
||||
#define CONFIG_FFMPEG 0
|
||||
#define CONFIG_DCT 1
|
||||
#define CONFIG_DWT 0
|
||||
#define CONFIG_ERROR_RESILIENCE 0
|
||||
#define CONFIG_FAAN 0
|
||||
#define CONFIG_FAST_UNALIGNED 1
|
||||
#define CONFIG_FFT 1
|
||||
#define CONFIG_LSP 0
|
||||
#define CONFIG_MDCT 0
|
||||
#define CONFIG_PIXELUTILS 0
|
||||
#define CONFIG_NETWORK 0
|
||||
#define CONFIG_RDFT 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 1
|
||||
#define CONFIG_PTX_COMPRESSION 0
|
||||
#define CONFIG_THUMB 1
|
||||
#define CONFIG_VALGRIND_BACKTRACE 0
|
||||
#define CONFIG_XMM_CLOBBER_TEST 0
|
||||
#define CONFIG_BSFS 0
|
||||
#define CONFIG_DECODERS 1
|
||||
#define CONFIG_ENCODERS 0
|
||||
#define CONFIG_HWACCELS 0
|
||||
#define CONFIG_PARSERS 1
|
||||
#define CONFIG_INDEVS 0
|
||||
#define CONFIG_OUTDEVS 0
|
||||
#define CONFIG_FILTERS 0
|
||||
#define CONFIG_DEMUXERS 1
|
||||
#define CONFIG_MUXERS 0
|
||||
#define CONFIG_PROTOCOLS 0
|
||||
#define CONFIG_AANDCTTABLES 0
|
||||
#define CONFIG_AC3DSP 0
|
||||
#define CONFIG_ADTS_HEADER 1
|
||||
#define CONFIG_ATSC_A53 1
|
||||
#define CONFIG_AUDIO_FRAME_QUEUE 0
|
||||
#define CONFIG_AUDIODSP 0
|
||||
#define CONFIG_BLOCKDSP 0
|
||||
#define CONFIG_BSWAPDSP 0
|
||||
#define CONFIG_CABAC 1
|
||||
#define CONFIG_CBS 0
|
||||
#define CONFIG_CBS_AV1 0
|
||||
#define CONFIG_CBS_H264 0
|
||||
#define CONFIG_CBS_H265 0
|
||||
#define CONFIG_CBS_JPEG 0
|
||||
#define CONFIG_CBS_MPEG2 0
|
||||
#define CONFIG_CBS_VP9 0
|
||||
#define CONFIG_DEFLATE_WRAPPER 0
|
||||
#define CONFIG_DIRAC_PARSE 1
|
||||
#define CONFIG_DNN 0
|
||||
#define CONFIG_DOVI_RPU 0
|
||||
#define CONFIG_DVPROFILE 0
|
||||
#define CONFIG_EXIF 0
|
||||
#define CONFIG_FAANDCT 0
|
||||
#define CONFIG_FAANIDCT 0
|
||||
#define CONFIG_FDCTDSP 0
|
||||
#define CONFIG_FMTCONVERT 0
|
||||
#define CONFIG_FRAME_THREAD_ENCODER 0
|
||||
#define CONFIG_G722DSP 0
|
||||
#define CONFIG_GOLOMB 1
|
||||
#define CONFIG_GPLV3 0
|
||||
#define CONFIG_H263DSP 0
|
||||
#define CONFIG_H264CHROMA 1
|
||||
#define CONFIG_H264DSP 1
|
||||
#define CONFIG_H264PARSE 1
|
||||
#define CONFIG_H264PRED 1
|
||||
#define CONFIG_H264QPEL 1
|
||||
#define CONFIG_HEVCPARSE 0
|
||||
#define CONFIG_HPELDSP 1
|
||||
#define CONFIG_HUFFMAN 0
|
||||
#define CONFIG_HUFFYUVDSP 0
|
||||
#define CONFIG_HUFFYUVENCDSP 0
|
||||
#define CONFIG_IDCTDSP 0
|
||||
#define CONFIG_IIRFILTER 0
|
||||
#define CONFIG_INFLATE_WRAPPER 0
|
||||
#define CONFIG_INTRAX8 0
|
||||
#define CONFIG_ISO_MEDIA 1
|
||||
#define CONFIG_IVIDSP 0
|
||||
#define CONFIG_JPEGTABLES 0
|
||||
#define CONFIG_LGPLV3 0
|
||||
#define CONFIG_LIBX262 0
|
||||
#define CONFIG_LLAUDDSP 0
|
||||
#define CONFIG_LLVIDDSP 0
|
||||
#define CONFIG_LLVIDENCDSP 0
|
||||
#define CONFIG_LPC 0
|
||||
#define CONFIG_LZF 0
|
||||
#define CONFIG_ME_CMP 0
|
||||
#define CONFIG_MPEG_ER 0
|
||||
#define CONFIG_MPEGAUDIO 1
|
||||
#define CONFIG_MPEGAUDIODSP 1
|
||||
#define CONFIG_MPEGAUDIOHEADER 1
|
||||
#define CONFIG_MPEG4AUDIO 1
|
||||
#define CONFIG_MPEGVIDEO 0
|
||||
#define CONFIG_MPEGVIDEODEC 0
|
||||
#define CONFIG_MPEGVIDEOENC 0
|
||||
#define CONFIG_MSMPEG4DEC 0
|
||||
#define CONFIG_MSMPEG4ENC 0
|
||||
#define CONFIG_MSS34DSP 0
|
||||
#define CONFIG_PIXBLOCKDSP 0
|
||||
#define CONFIG_QPELDSP 0
|
||||
#define CONFIG_QSV 0
|
||||
#define CONFIG_QSVDEC 0
|
||||
#define CONFIG_QSVENC 0
|
||||
#define CONFIG_QSVVPP 0
|
||||
#define CONFIG_RANGECODER 0
|
||||
#define CONFIG_RIFFDEC 1
|
||||
#define CONFIG_RIFFENC 0
|
||||
#define CONFIG_RTPDEC 0
|
||||
#define CONFIG_RTPENC_CHAIN 0
|
||||
#define CONFIG_RV34DSP 0
|
||||
#define CONFIG_SCENE_SAD 0
|
||||
#define CONFIG_SINEWIN 1
|
||||
#define CONFIG_SNAPPY 0
|
||||
#define CONFIG_SRTP 0
|
||||
#define CONFIG_STARTCODE 1
|
||||
#define CONFIG_TEXTUREDSP 0
|
||||
#define CONFIG_TEXTUREDSPENC 0
|
||||
#define CONFIG_TPELDSP 0
|
||||
#define CONFIG_VAAPI_1 0
|
||||
#define CONFIG_VAAPI_ENCODE 0
|
||||
#define CONFIG_VC1DSP 0
|
||||
#define CONFIG_VIDEODSP 1
|
||||
#define CONFIG_VP3DSP 1
|
||||
#define CONFIG_VP56DSP 0
|
||||
#define CONFIG_VP8DSP 1
|
||||
#define CONFIG_WMA_FREQS 0
|
||||
#define CONFIG_WMV2DSP 0
|
||||
#endif /* FFMPEG_CONFIG_H */
|
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/config_components.h
vendored
Normal file
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/config_components.h
vendored
Normal file
File diff suppressed because it is too large
Load diff
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/libavcodec/bsf_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/libavcodec/bsf_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const FFBitStreamFilter * const bitstream_filters[] = {
|
||||
NULL };
|
20
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/libavcodec/codec_list.c
vendored
Normal file
20
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/libavcodec/codec_list.c
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
static const FFCodec * const codec_list[] = {
|
||||
&ff_h264_decoder,
|
||||
&ff_theora_decoder,
|
||||
&ff_vp3_decoder,
|
||||
&ff_vp8_decoder,
|
||||
&ff_aac_decoder,
|
||||
&ff_flac_decoder,
|
||||
&ff_mp3_decoder,
|
||||
&ff_vorbis_decoder,
|
||||
&ff_pcm_alaw_decoder,
|
||||
&ff_pcm_f32le_decoder,
|
||||
&ff_pcm_mulaw_decoder,
|
||||
&ff_pcm_s16be_decoder,
|
||||
&ff_pcm_s16le_decoder,
|
||||
&ff_pcm_s24be_decoder,
|
||||
&ff_pcm_s24le_decoder,
|
||||
&ff_pcm_s32le_decoder,
|
||||
&ff_pcm_u8_decoder,
|
||||
&ff_libopus_decoder,
|
||||
NULL };
|
11
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/libavcodec/parser_list.c
vendored
Normal file
11
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/libavcodec/parser_list.c
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
static const AVCodecParser * const parser_list[] = {
|
||||
&ff_aac_parser,
|
||||
&ff_flac_parser,
|
||||
&ff_h264_parser,
|
||||
&ff_mpegaudio_parser,
|
||||
&ff_opus_parser,
|
||||
&ff_vorbis_parser,
|
||||
&ff_vp3_parser,
|
||||
&ff_vp8_parser,
|
||||
&ff_vp9_parser,
|
||||
NULL };
|
|
@ -0,0 +1,9 @@
|
|||
static const AVInputFormat * const demuxer_list[] = {
|
||||
&ff_aac_demuxer,
|
||||
&ff_flac_demuxer,
|
||||
&ff_matroska_demuxer,
|
||||
&ff_mov_demuxer,
|
||||
&ff_mp3_demuxer,
|
||||
&ff_ogg_demuxer,
|
||||
&ff_wav_demuxer,
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const AVOutputFormat * const muxer_list[] = {
|
||||
NULL };
|
|
@ -0,0 +1,2 @@
|
|||
static const URLProtocol * const url_protocols[] = {
|
||||
NULL };
|
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/libavutil/avconfig.h
vendored
Normal file
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/libavutil/avconfig.h
vendored
Normal file
|
@ -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 */
|
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/libavutil/ffversion.h
vendored
Normal file
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/libavutil/ffversion.h
vendored
Normal file
|
@ -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-110326-g0bb5dd59ec"
|
||||
#endif /* AVUTIL_FFVERSION_H */
|
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/config.h
vendored
Normal file
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/config.h
vendored
Normal file
|
@ -0,0 +1,748 @@
|
|||
/* Automatically generated by configure - do not modify! */
|
||||
#ifndef FFMPEG_CONFIG_H
|
||||
#define FFMPEG_CONFIG_H
|
||||
/* #define FFMPEG_CONFIGURATION "--disable-everything --disable-all --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-static --enable-avcodec --enable-avformat --enable-avutil --enable-fft --enable-rdft --enable-static --enable-libopus --disable-debug --disable-bzlib --disable-error-resilience --disable-iconv --disable-network --disable-schannel --disable-sdl2 --disable-symver --disable-xlib --disable-zlib --disable-securetransport --disable-faan --disable-alsa --disable-autodetect --enable-decoder='vorbis,libopus,flac' --enable-decoder='pcm_u8,pcm_s16le,pcm_s24le,pcm_s32le,pcm_f32le,mp3' --enable-decoder='pcm_s16be,pcm_s24be,pcm_mulaw,pcm_alaw' --enable-demuxer='ogg,matroska,wav,flac,mp3,mov' --enable-parser='opus,vorbis,flac,mpegaudio,vp9' --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/opus/src/include --disable-linux-perf --x86asmexe=nasm --optflags='\"-O2\"' --enable-decoder='theora,vp8' --enable-parser='vp3,vp8' --arch=arm --enable-armv6 --enable-armv6t2 --enable-vfp --enable-thumb --extra-cflags='-march=armv7-a' --enable-cross-compile --target-os=linux --extra-cflags='--target=arm-linux-gnueabihf' --extra-ldflags='--target=arm-linux-gnueabihf' --sysroot=/usr/local/google/home/tguilbert/Code/chromium/src/build/linux/debian_bullseye_arm-sysroot --extra-cflags='-mtune=cortex-a8' --extra-cflags='-mfloat-abi=hard' --extra-cflags=-O2 --disable-neon --extra-cflags='-mfpu=vfpv3-d16' --enable-pic --cc=clang --cxx=clang++ --ld=clang --extra-ldflags='-fuse-ld=lld' --enable-decoder='aac,h264' --enable-demuxer=aac --enable-parser='aac,h264'" -- elide long configuration string from binary */
|
||||
#define FFMPEG_LICENSE "LGPL version 2.1 or later"
|
||||
#define CONFIG_THIS_YEAR 2022
|
||||
#define FFMPEG_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define AVCONV_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define CC_IDENT "clang version 16.0.0 (https://chromium.googlesource.com/a/external/github.com/llvm/llvm-project 094c0eccdf959c3b9c85219e33c3fcfbab024b61)"
|
||||
#define OS_NAME linux
|
||||
#define av_restrict restrict
|
||||
#define EXTERN_PREFIX ""
|
||||
#define EXTERN_ASM
|
||||
#define BUILDSUF ""
|
||||
#define SLIBSUF ".so"
|
||||
#define HAVE_MMX2 HAVE_MMXEXT
|
||||
#define SWS_MAX_FILTER_SIZE 256
|
||||
#define ARCH_AARCH64 0
|
||||
#define ARCH_ALPHA 0
|
||||
#define ARCH_ARM 1
|
||||
#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_TOMI 0
|
||||
#define ARCH_X86 0
|
||||
#define ARCH_X86_32 0
|
||||
#define ARCH_X86_64 0
|
||||
#define HAVE_ARMV5TE 1
|
||||
#define HAVE_ARMV6 1
|
||||
#define HAVE_ARMV6T2 1
|
||||
#define HAVE_ARMV8 0
|
||||
#define HAVE_NEON 0
|
||||
#define HAVE_VFP 1
|
||||
#define HAVE_VFPV3 1
|
||||
#define HAVE_SETEND 1
|
||||
#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_RVV 0
|
||||
#define HAVE_AESNI 0
|
||||
#define HAVE_AMD3DNOW 0
|
||||
#define HAVE_AMD3DNOWEXT 0
|
||||
#define HAVE_AVX 0
|
||||
#define HAVE_AVX2 0
|
||||
#define HAVE_AVX512 0
|
||||
#define HAVE_AVX512ICL 0
|
||||
#define HAVE_FMA3 0
|
||||
#define HAVE_FMA4 0
|
||||
#define HAVE_MMX 0
|
||||
#define HAVE_MMXEXT 0
|
||||
#define HAVE_SSE 0
|
||||
#define HAVE_SSE2 0
|
||||
#define HAVE_SSE3 0
|
||||
#define HAVE_SSE4 0
|
||||
#define HAVE_SSE42 0
|
||||
#define HAVE_SSSE3 0
|
||||
#define HAVE_XOP 0
|
||||
#define HAVE_CPUNOP 0
|
||||
#define HAVE_I686 0
|
||||
#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 1
|
||||
#define HAVE_ARMV6_EXTERNAL 1
|
||||
#define HAVE_ARMV6T2_EXTERNAL 1
|
||||
#define HAVE_ARMV8_EXTERNAL 0
|
||||
#define HAVE_NEON_EXTERNAL 0
|
||||
#define HAVE_VFP_EXTERNAL 1
|
||||
#define HAVE_VFPV3_EXTERNAL 1
|
||||
#define HAVE_SETEND_EXTERNAL 1
|
||||
#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_RVV_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_CPUNOP_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 1
|
||||
#define HAVE_ARMV6_INLINE 1
|
||||
#define HAVE_ARMV6T2_INLINE 1
|
||||
#define HAVE_ARMV8_INLINE 0
|
||||
#define HAVE_NEON_INLINE 0
|
||||
#define HAVE_VFP_INLINE 1
|
||||
#define HAVE_VFPV3_INLINE 1
|
||||
#define HAVE_SETEND_INLINE 1
|
||||
#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_RVV_INLINE 0
|
||||
#define HAVE_AESNI_INLINE 0
|
||||
#define HAVE_AMD3DNOW_INLINE 0
|
||||
#define HAVE_AMD3DNOWEXT_INLINE 0
|
||||
#define HAVE_AVX_INLINE 0
|
||||
#define HAVE_AVX2_INLINE 0
|
||||
#define HAVE_AVX512_INLINE 0
|
||||
#define HAVE_AVX512ICL_INLINE 0
|
||||
#define HAVE_FMA3_INLINE 0
|
||||
#define HAVE_FMA4_INLINE 0
|
||||
#define HAVE_MMX_INLINE 0
|
||||
#define HAVE_MMXEXT_INLINE 0
|
||||
#define HAVE_SSE_INLINE 0
|
||||
#define HAVE_SSE2_INLINE 0
|
||||
#define HAVE_SSE3_INLINE 0
|
||||
#define HAVE_SSE4_INLINE 0
|
||||
#define HAVE_SSE42_INLINE 0
|
||||
#define HAVE_SSSE3_INLINE 0
|
||||
#define HAVE_XOP_INLINE 0
|
||||
#define HAVE_CPUNOP_INLINE 0
|
||||
#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 0
|
||||
#define HAVE_FAST_64BIT 0
|
||||
#define HAVE_FAST_CLZ 1
|
||||
#define HAVE_FAST_CMOV 0
|
||||
#define HAVE_FAST_FLOAT16 1
|
||||
#define HAVE_LOCAL_ALIGNED 0
|
||||
#define HAVE_SIMD_ALIGN_16 0
|
||||
#define HAVE_SIMD_ALIGN_32 0
|
||||
#define HAVE_SIMD_ALIGN_64 0
|
||||
#define HAVE_ATOMIC_CAS_PTR 0
|
||||
#define HAVE_MACHINE_RW_BARRIER 0
|
||||
#define HAVE_MEMORYBARRIER 0
|
||||
#define HAVE_MM_EMPTY 0
|
||||
#define HAVE_RDTSC 0
|
||||
#define HAVE_SEM_TIMEDWAIT 1
|
||||
#define HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
|
||||
#define HAVE_CABS 0
|
||||
#define HAVE_CEXP 0
|
||||
#define HAVE_INLINE_ASM 1
|
||||
#define HAVE_SYMVER 0
|
||||
#define HAVE_X86ASM 0
|
||||
#define HAVE_BIGENDIAN 0
|
||||
#define HAVE_FAST_UNALIGNED 1
|
||||
#define HAVE_ARPA_INET_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 0
|
||||
#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_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_VALGRIND_VALGRIND_H 1 -- forced to 0. See https://crbug.com/590440 */
|
||||
#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 0
|
||||
#define HAVE_CLOCK_GETTIME 1
|
||||
#define HAVE_CLOSESOCKET 0
|
||||
#define HAVE_COMMANDLINETOARGVW 0
|
||||
#define HAVE_FCNTL 1
|
||||
#define HAVE_GETADDRINFO 0
|
||||
#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 0
|
||||
#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 0 /* #define HAVE_PRCTL 1 -- forced to 0 for Fuchsia */
|
||||
#define HAVE_PTHREAD_CANCEL 1
|
||||
#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_SYSCTL 1 -- forced to 0 for Fuchsia */
|
||||
#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_VDPAU_X11 0
|
||||
#define HAVE_PTHREADS 1
|
||||
#define HAVE_OS2THREADS 0
|
||||
#define HAVE_W32THREADS 0
|
||||
#define HAVE_AS_ARCH_DIRECTIVE 1
|
||||
#define HAVE_AS_DN_DIRECTIVE 0
|
||||
#define HAVE_AS_FPU_DIRECTIVE 1
|
||||
#define HAVE_AS_FUNC 0
|
||||
#define HAVE_AS_OBJECT_ARCH 1
|
||||
#define HAVE_ASM_MOD_Q 1
|
||||
#define HAVE_BLOCKS_EXTENSION 0
|
||||
#define HAVE_EBP_AVAILABLE 0
|
||||
#define HAVE_EBX_AVAILABLE 0
|
||||
#define HAVE_GNU_AS 1
|
||||
#define HAVE_GNU_WINDRES 0
|
||||
#define HAVE_IBM_ASM 0
|
||||
#define HAVE_INLINE_ASM_DIRECT_SYMBOL_REFS 0
|
||||
#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 1
|
||||
#define HAVE_SYMVER_GNU_ASM 1
|
||||
/* #define HAVE_VFP_ARGS 1 -- softfp/hardfp selection is done by the chrome build */
|
||||
#define HAVE_XFORM_ASM 0
|
||||
#define HAVE_XMM_CLOBBERS 0
|
||||
#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 0
|
||||
#define HAVE_STRUCT_ADDRINFO 0
|
||||
#define HAVE_STRUCT_GROUP_SOURCE_REQ 0
|
||||
#define HAVE_STRUCT_IP_MREQ_SOURCE 0
|
||||
#define HAVE_STRUCT_IPV6_MREQ 0
|
||||
#define HAVE_STRUCT_MSGHDR_MSG_FLAGS 0
|
||||
#define HAVE_STRUCT_POLLFD 0
|
||||
#define HAVE_STRUCT_RUSAGE_RU_MAXRSS 1
|
||||
#define HAVE_STRUCT_SCTP_EVENT_SUBSCRIBE 0
|
||||
#define HAVE_STRUCT_SOCKADDR_IN6 0
|
||||
#define HAVE_STRUCT_SOCKADDR_SA_LEN 0
|
||||
#define HAVE_STRUCT_SOCKADDR_STORAGE 0
|
||||
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
|
||||
#define HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE 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_PERL 1
|
||||
#define HAVE_POD2MAN 1
|
||||
#define HAVE_TEXI2HTML 0
|
||||
#define HAVE_XMLLINT 1
|
||||
#define HAVE_ZLIB_GZIP 0
|
||||
#define CONFIG_DOC 0
|
||||
#define CONFIG_HTMLPAGES 0
|
||||
#define CONFIG_MANPAGES 0
|
||||
#define CONFIG_PODPAGES 0
|
||||
#define CONFIG_TXTPAGES 0
|
||||
#define CONFIG_AVIO_LIST_DIR_EXAMPLE 1
|
||||
#define CONFIG_AVIO_READING_EXAMPLE 1
|
||||
#define CONFIG_DECODE_AUDIO_EXAMPLE 1
|
||||
#define CONFIG_DECODE_VIDEO_EXAMPLE 1
|
||||
#define CONFIG_DEMUXING_DECODING_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 0
|
||||
#define CONFIG_FILTERING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_FILTERING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_HTTP_MULTICLIENT_EXAMPLE 1
|
||||
#define CONFIG_HW_DECODE_EXAMPLE 1
|
||||
#define CONFIG_METADATA_EXAMPLE 1
|
||||
#define CONFIG_MUXING_EXAMPLE 0
|
||||
#define CONFIG_QSVDEC_EXAMPLE 0
|
||||
#define CONFIG_REMUXING_EXAMPLE 1
|
||||
#define CONFIG_RESAMPLING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_SCALING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODE_AAC_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODING_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_ENCODE_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_TRANSCODE_EXAMPLE 0
|
||||
#define CONFIG_AVISYNTH 0
|
||||
#define CONFIG_FREI0R 0
|
||||
#define CONFIG_LIBCDIO 0
|
||||
#define CONFIG_LIBDAVS2 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_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_LIBDRM 0
|
||||
#define CONFIG_LIBFLITE 0
|
||||
#define CONFIG_LIBFONTCONFIG 0
|
||||
#define CONFIG_LIBFREETYPE 0
|
||||
#define CONFIG_LIBFRIBIDI 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_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 1
|
||||
#define CONFIG_LIBPLACEBO 0
|
||||
#define CONFIG_LIBPULSE 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_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_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 0
|
||||
#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_CRYSTALHD 0
|
||||
#define CONFIG_CUDA 0
|
||||
#define CONFIG_CUDA_LLVM 0
|
||||
#define CONFIG_CUVID 0
|
||||
#define CONFIG_D3D11VA 0
|
||||
#define CONFIG_DXVA2 0
|
||||
#define CONFIG_FFNVCODEC 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 0
|
||||
#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 0
|
||||
#define CONFIG_AVFILTER 0
|
||||
#define CONFIG_SWSCALE 0
|
||||
#define CONFIG_POSTPROC 0
|
||||
#define CONFIG_AVFORMAT 1
|
||||
#define CONFIG_AVCODEC 1
|
||||
#define CONFIG_SWRESAMPLE 0
|
||||
#define CONFIG_AVUTIL 1
|
||||
#define CONFIG_FFPLAY 0
|
||||
#define CONFIG_FFPROBE 0
|
||||
#define CONFIG_FFMPEG 0
|
||||
#define CONFIG_DCT 1
|
||||
#define CONFIG_DWT 0
|
||||
#define CONFIG_ERROR_RESILIENCE 0
|
||||
#define CONFIG_FAAN 0
|
||||
#define CONFIG_FAST_UNALIGNED 1
|
||||
#define CONFIG_FFT 1
|
||||
#define CONFIG_LSP 0
|
||||
#define CONFIG_MDCT 0
|
||||
#define CONFIG_PIXELUTILS 0
|
||||
#define CONFIG_NETWORK 0
|
||||
#define CONFIG_RDFT 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 1
|
||||
#define CONFIG_PTX_COMPRESSION 0
|
||||
#define CONFIG_THUMB 1
|
||||
#define CONFIG_VALGRIND_BACKTRACE 0
|
||||
#define CONFIG_XMM_CLOBBER_TEST 0
|
||||
#define CONFIG_BSFS 0
|
||||
#define CONFIG_DECODERS 1
|
||||
#define CONFIG_ENCODERS 0
|
||||
#define CONFIG_HWACCELS 0
|
||||
#define CONFIG_PARSERS 1
|
||||
#define CONFIG_INDEVS 0
|
||||
#define CONFIG_OUTDEVS 0
|
||||
#define CONFIG_FILTERS 0
|
||||
#define CONFIG_DEMUXERS 1
|
||||
#define CONFIG_MUXERS 0
|
||||
#define CONFIG_PROTOCOLS 0
|
||||
#define CONFIG_AANDCTTABLES 0
|
||||
#define CONFIG_AC3DSP 0
|
||||
#define CONFIG_ADTS_HEADER 1
|
||||
#define CONFIG_ATSC_A53 1
|
||||
#define CONFIG_AUDIO_FRAME_QUEUE 0
|
||||
#define CONFIG_AUDIODSP 0
|
||||
#define CONFIG_BLOCKDSP 0
|
||||
#define CONFIG_BSWAPDSP 0
|
||||
#define CONFIG_CABAC 1
|
||||
#define CONFIG_CBS 0
|
||||
#define CONFIG_CBS_AV1 0
|
||||
#define CONFIG_CBS_H264 0
|
||||
#define CONFIG_CBS_H265 0
|
||||
#define CONFIG_CBS_JPEG 0
|
||||
#define CONFIG_CBS_MPEG2 0
|
||||
#define CONFIG_CBS_VP9 0
|
||||
#define CONFIG_DEFLATE_WRAPPER 0
|
||||
#define CONFIG_DIRAC_PARSE 1
|
||||
#define CONFIG_DNN 0
|
||||
#define CONFIG_DOVI_RPU 0
|
||||
#define CONFIG_DVPROFILE 0
|
||||
#define CONFIG_EXIF 0
|
||||
#define CONFIG_FAANDCT 0
|
||||
#define CONFIG_FAANIDCT 0
|
||||
#define CONFIG_FDCTDSP 0
|
||||
#define CONFIG_FMTCONVERT 0
|
||||
#define CONFIG_FRAME_THREAD_ENCODER 0
|
||||
#define CONFIG_G722DSP 0
|
||||
#define CONFIG_GOLOMB 1
|
||||
#define CONFIG_GPLV3 0
|
||||
#define CONFIG_H263DSP 0
|
||||
#define CONFIG_H264CHROMA 1
|
||||
#define CONFIG_H264DSP 1
|
||||
#define CONFIG_H264PARSE 1
|
||||
#define CONFIG_H264PRED 1
|
||||
#define CONFIG_H264QPEL 1
|
||||
#define CONFIG_HEVCPARSE 0
|
||||
#define CONFIG_HPELDSP 1
|
||||
#define CONFIG_HUFFMAN 0
|
||||
#define CONFIG_HUFFYUVDSP 0
|
||||
#define CONFIG_HUFFYUVENCDSP 0
|
||||
#define CONFIG_IDCTDSP 0
|
||||
#define CONFIG_IIRFILTER 0
|
||||
#define CONFIG_INFLATE_WRAPPER 0
|
||||
#define CONFIG_INTRAX8 0
|
||||
#define CONFIG_ISO_MEDIA 1
|
||||
#define CONFIG_IVIDSP 0
|
||||
#define CONFIG_JPEGTABLES 0
|
||||
#define CONFIG_LGPLV3 0
|
||||
#define CONFIG_LIBX262 0
|
||||
#define CONFIG_LLAUDDSP 0
|
||||
#define CONFIG_LLVIDDSP 0
|
||||
#define CONFIG_LLVIDENCDSP 0
|
||||
#define CONFIG_LPC 0
|
||||
#define CONFIG_LZF 0
|
||||
#define CONFIG_ME_CMP 0
|
||||
#define CONFIG_MPEG_ER 0
|
||||
#define CONFIG_MPEGAUDIO 1
|
||||
#define CONFIG_MPEGAUDIODSP 1
|
||||
#define CONFIG_MPEGAUDIOHEADER 1
|
||||
#define CONFIG_MPEG4AUDIO 1
|
||||
#define CONFIG_MPEGVIDEO 0
|
||||
#define CONFIG_MPEGVIDEODEC 0
|
||||
#define CONFIG_MPEGVIDEOENC 0
|
||||
#define CONFIG_MSMPEG4DEC 0
|
||||
#define CONFIG_MSMPEG4ENC 0
|
||||
#define CONFIG_MSS34DSP 0
|
||||
#define CONFIG_PIXBLOCKDSP 0
|
||||
#define CONFIG_QPELDSP 0
|
||||
#define CONFIG_QSV 0
|
||||
#define CONFIG_QSVDEC 0
|
||||
#define CONFIG_QSVENC 0
|
||||
#define CONFIG_QSVVPP 0
|
||||
#define CONFIG_RANGECODER 0
|
||||
#define CONFIG_RIFFDEC 1
|
||||
#define CONFIG_RIFFENC 0
|
||||
#define CONFIG_RTPDEC 0
|
||||
#define CONFIG_RTPENC_CHAIN 0
|
||||
#define CONFIG_RV34DSP 0
|
||||
#define CONFIG_SCENE_SAD 0
|
||||
#define CONFIG_SINEWIN 1
|
||||
#define CONFIG_SNAPPY 0
|
||||
#define CONFIG_SRTP 0
|
||||
#define CONFIG_STARTCODE 1
|
||||
#define CONFIG_TEXTUREDSP 0
|
||||
#define CONFIG_TEXTUREDSPENC 0
|
||||
#define CONFIG_TPELDSP 0
|
||||
#define CONFIG_VAAPI_1 0
|
||||
#define CONFIG_VAAPI_ENCODE 0
|
||||
#define CONFIG_VC1DSP 0
|
||||
#define CONFIG_VIDEODSP 1
|
||||
#define CONFIG_VP3DSP 1
|
||||
#define CONFIG_VP56DSP 0
|
||||
#define CONFIG_VP8DSP 1
|
||||
#define CONFIG_WMA_FREQS 0
|
||||
#define CONFIG_WMV2DSP 0
|
||||
#endif /* FFMPEG_CONFIG_H */
|
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/config_components.h
vendored
Normal file
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/config_components.h
vendored
Normal file
File diff suppressed because it is too large
Load diff
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavcodec/bsf_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavcodec/bsf_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const FFBitStreamFilter * const bitstream_filters[] = {
|
||||
NULL };
|
20
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavcodec/codec_list.c
vendored
Normal file
20
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavcodec/codec_list.c
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
static const FFCodec * const codec_list[] = {
|
||||
&ff_h264_decoder,
|
||||
&ff_theora_decoder,
|
||||
&ff_vp3_decoder,
|
||||
&ff_vp8_decoder,
|
||||
&ff_aac_decoder,
|
||||
&ff_flac_decoder,
|
||||
&ff_mp3_decoder,
|
||||
&ff_vorbis_decoder,
|
||||
&ff_pcm_alaw_decoder,
|
||||
&ff_pcm_f32le_decoder,
|
||||
&ff_pcm_mulaw_decoder,
|
||||
&ff_pcm_s16be_decoder,
|
||||
&ff_pcm_s16le_decoder,
|
||||
&ff_pcm_s24be_decoder,
|
||||
&ff_pcm_s24le_decoder,
|
||||
&ff_pcm_s32le_decoder,
|
||||
&ff_pcm_u8_decoder,
|
||||
&ff_libopus_decoder,
|
||||
NULL };
|
11
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavcodec/parser_list.c
vendored
Normal file
11
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavcodec/parser_list.c
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
static const AVCodecParser * const parser_list[] = {
|
||||
&ff_aac_parser,
|
||||
&ff_flac_parser,
|
||||
&ff_h264_parser,
|
||||
&ff_mpegaudio_parser,
|
||||
&ff_opus_parser,
|
||||
&ff_vorbis_parser,
|
||||
&ff_vp3_parser,
|
||||
&ff_vp8_parser,
|
||||
&ff_vp9_parser,
|
||||
NULL };
|
9
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavformat/demuxer_list.c
vendored
Normal file
9
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavformat/demuxer_list.c
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
static const AVInputFormat * const demuxer_list[] = {
|
||||
&ff_aac_demuxer,
|
||||
&ff_flac_demuxer,
|
||||
&ff_matroska_demuxer,
|
||||
&ff_mov_demuxer,
|
||||
&ff_mp3_demuxer,
|
||||
&ff_ogg_demuxer,
|
||||
&ff_wav_demuxer,
|
||||
NULL };
|
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavformat/muxer_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavformat/muxer_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const AVOutputFormat * const muxer_list[] = {
|
||||
NULL };
|
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavformat/protocol_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavformat/protocol_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const URLProtocol * const url_protocols[] = {
|
||||
NULL };
|
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavutil/avconfig.h
vendored
Normal file
6
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavutil/avconfig.h
vendored
Normal file
|
@ -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 */
|
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavutil/ffversion.h
vendored
Normal file
5
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm/libavutil/ffversion.h
vendored
Normal file
|
@ -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-110326-g0bb5dd59ec"
|
||||
#endif /* AVUTIL_FFVERSION_H */
|
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm64/config.h
vendored
Normal file
748
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm64/config.h
vendored
Normal file
|
@ -0,0 +1,748 @@
|
|||
/* Automatically generated by configure - do not modify! */
|
||||
#ifndef FFMPEG_CONFIG_H
|
||||
#define FFMPEG_CONFIG_H
|
||||
/* #define FFMPEG_CONFIGURATION "--disable-everything --disable-all --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-static --enable-avcodec --enable-avformat --enable-avutil --enable-fft --enable-rdft --enable-static --enable-libopus --disable-debug --disable-bzlib --disable-error-resilience --disable-iconv --disable-network --disable-schannel --disable-sdl2 --disable-symver --disable-xlib --disable-zlib --disable-securetransport --disable-faan --disable-alsa --disable-autodetect --enable-decoder='vorbis,libopus,flac' --enable-decoder='pcm_u8,pcm_s16le,pcm_s24le,pcm_s32le,pcm_f32le,mp3' --enable-decoder='pcm_s16be,pcm_s24be,pcm_mulaw,pcm_alaw' --enable-demuxer='ogg,matroska,wav,flac,mp3,mov' --enable-parser='opus,vorbis,flac,mpegaudio,vp9' --extra-cflags=-I/usr/local/google/home/tguilbert/Code/chromium/src/third_party/opus/src/include --disable-linux-perf --x86asmexe=nasm --optflags='\"-O2\"' --enable-decoder='theora,vp8' --enable-parser='vp3,vp8' --enable-cross-compile --cross-prefix=/usr/bin/aarch64-linux-gnu- --extra-cflags='--target=aarch64-linux-gnu' --extra-ldflags='--target=aarch64-linux-gnu' --target-os=linux --sysroot=/usr/local/google/home/tguilbert/Code/chromium/src/build/linux/debian_bullseye_arm64-sysroot --arch=aarch64 --enable-armv8 --extra-cflags='-march=armv8-a' --enable-pic --cc=clang --cxx=clang++ --ld=clang --extra-ldflags='-fuse-ld=lld' --enable-decoder='aac,h264' --enable-demuxer=aac --enable-parser='aac,h264'" -- elide long configuration string from binary */
|
||||
#define FFMPEG_LICENSE "LGPL version 2.1 or later"
|
||||
#define CONFIG_THIS_YEAR 2022
|
||||
#define FFMPEG_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define AVCONV_DATADIR "/usr/local/share/ffmpeg"
|
||||
#define CC_IDENT "clang version 16.0.0 (https://chromium.googlesource.com/a/external/github.com/llvm/llvm-project 094c0eccdf959c3b9c85219e33c3fcfbab024b61)"
|
||||
#define OS_NAME linux
|
||||
#define av_restrict restrict
|
||||
#define EXTERN_PREFIX ""
|
||||
#define EXTERN_ASM
|
||||
#define BUILDSUF ""
|
||||
#define SLIBSUF ".so"
|
||||
#define HAVE_MMX2 HAVE_MMXEXT
|
||||
#define SWS_MAX_FILTER_SIZE 256
|
||||
#define ARCH_AARCH64 1
|
||||
#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_TOMI 0
|
||||
#define ARCH_X86 0
|
||||
#define ARCH_X86_32 0
|
||||
#define ARCH_X86_64 0
|
||||
#define HAVE_ARMV5TE 0
|
||||
#define HAVE_ARMV6 0
|
||||
#define HAVE_ARMV6T2 0
|
||||
#define HAVE_ARMV8 1
|
||||
#define HAVE_NEON 1
|
||||
#define HAVE_VFP 1
|
||||
#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_RVV 0
|
||||
#define HAVE_AESNI 0
|
||||
#define HAVE_AMD3DNOW 0
|
||||
#define HAVE_AMD3DNOWEXT 0
|
||||
#define HAVE_AVX 0
|
||||
#define HAVE_AVX2 0
|
||||
#define HAVE_AVX512 0
|
||||
#define HAVE_AVX512ICL 0
|
||||
#define HAVE_FMA3 0
|
||||
#define HAVE_FMA4 0
|
||||
#define HAVE_MMX 0
|
||||
#define HAVE_MMXEXT 0
|
||||
#define HAVE_SSE 0
|
||||
#define HAVE_SSE2 0
|
||||
#define HAVE_SSE3 0
|
||||
#define HAVE_SSE4 0
|
||||
#define HAVE_SSE42 0
|
||||
#define HAVE_SSSE3 0
|
||||
#define HAVE_XOP 0
|
||||
#define HAVE_CPUNOP 0
|
||||
#define HAVE_I686 0
|
||||
#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 1
|
||||
#define HAVE_NEON_EXTERNAL 1
|
||||
#define HAVE_VFP_EXTERNAL 1
|
||||
#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_RVV_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_CPUNOP_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 1
|
||||
#define HAVE_NEON_INLINE 1
|
||||
#define HAVE_VFP_INLINE 1
|
||||
#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_RVV_INLINE 0
|
||||
#define HAVE_AESNI_INLINE 0
|
||||
#define HAVE_AMD3DNOW_INLINE 0
|
||||
#define HAVE_AMD3DNOWEXT_INLINE 0
|
||||
#define HAVE_AVX_INLINE 0
|
||||
#define HAVE_AVX2_INLINE 0
|
||||
#define HAVE_AVX512_INLINE 0
|
||||
#define HAVE_AVX512ICL_INLINE 0
|
||||
#define HAVE_FMA3_INLINE 0
|
||||
#define HAVE_FMA4_INLINE 0
|
||||
#define HAVE_MMX_INLINE 0
|
||||
#define HAVE_MMXEXT_INLINE 0
|
||||
#define HAVE_SSE_INLINE 0
|
||||
#define HAVE_SSE2_INLINE 0
|
||||
#define HAVE_SSE3_INLINE 0
|
||||
#define HAVE_SSE4_INLINE 0
|
||||
#define HAVE_SSE42_INLINE 0
|
||||
#define HAVE_SSSE3_INLINE 0
|
||||
#define HAVE_XOP_INLINE 0
|
||||
#define HAVE_CPUNOP_INLINE 0
|
||||
#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 0
|
||||
#define HAVE_FAST_FLOAT16 1
|
||||
#define HAVE_LOCAL_ALIGNED 0
|
||||
#define HAVE_SIMD_ALIGN_16 1
|
||||
#define HAVE_SIMD_ALIGN_32 0
|
||||
#define HAVE_SIMD_ALIGN_64 0
|
||||
#define HAVE_ATOMIC_CAS_PTR 0
|
||||
#define HAVE_MACHINE_RW_BARRIER 0
|
||||
#define HAVE_MEMORYBARRIER 0
|
||||
#define HAVE_MM_EMPTY 0
|
||||
#define HAVE_RDTSC 0
|
||||
#define HAVE_SEM_TIMEDWAIT 1
|
||||
#define HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
|
||||
#define HAVE_CABS 0
|
||||
#define HAVE_CEXP 0
|
||||
#define HAVE_INLINE_ASM 1
|
||||
#define HAVE_SYMVER 0
|
||||
#define HAVE_X86ASM 0
|
||||
#define HAVE_BIGENDIAN 0
|
||||
#define HAVE_FAST_UNALIGNED 1
|
||||
#define HAVE_ARPA_INET_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 0
|
||||
#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_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_VALGRIND_VALGRIND_H 1 -- forced to 0. See https://crbug.com/590440 */
|
||||
#define HAVE_WINDOWS_H 0
|
||||
#define HAVE_WINSOCK2_H 0
|
||||
#define HAVE_INTRINSICS_NEON 1
|
||||
#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 0
|
||||
#define HAVE_CLOCK_GETTIME 1
|
||||
#define HAVE_CLOSESOCKET 0
|
||||
#define HAVE_COMMANDLINETOARGVW 0
|
||||
#define HAVE_FCNTL 1
|
||||
#define HAVE_GETADDRINFO 0
|
||||
#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 0
|
||||
#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 0 /* #define HAVE_PRCTL 1 -- forced to 0 for Fuchsia */
|
||||
#define HAVE_PTHREAD_CANCEL 1
|
||||
#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_SYSCTL 1 -- forced to 0 for Fuchsia */
|
||||
#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_VDPAU_X11 0
|
||||
#define HAVE_PTHREADS 1
|
||||
#define HAVE_OS2THREADS 0
|
||||
#define HAVE_W32THREADS 0
|
||||
#define HAVE_AS_ARCH_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 0
|
||||
#define HAVE_EBX_AVAILABLE 0
|
||||
#define HAVE_GNU_AS 0
|
||||
#define HAVE_GNU_WINDRES 0
|
||||
#define HAVE_IBM_ASM 0
|
||||
#define HAVE_INLINE_ASM_DIRECT_SYMBOL_REFS 0
|
||||
#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 1
|
||||
#define HAVE_SYMVER_GNU_ASM 1
|
||||
/* #define HAVE_VFP_ARGS 0 -- softfp/hardfp selection is done by the chrome build */
|
||||
#define HAVE_XFORM_ASM 0
|
||||
#define HAVE_XMM_CLOBBERS 0
|
||||
#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 0
|
||||
#define HAVE_STRUCT_ADDRINFO 0
|
||||
#define HAVE_STRUCT_GROUP_SOURCE_REQ 0
|
||||
#define HAVE_STRUCT_IP_MREQ_SOURCE 0
|
||||
#define HAVE_STRUCT_IPV6_MREQ 0
|
||||
#define HAVE_STRUCT_MSGHDR_MSG_FLAGS 0
|
||||
#define HAVE_STRUCT_POLLFD 0
|
||||
#define HAVE_STRUCT_RUSAGE_RU_MAXRSS 1
|
||||
#define HAVE_STRUCT_SCTP_EVENT_SUBSCRIBE 0
|
||||
#define HAVE_STRUCT_SOCKADDR_IN6 0
|
||||
#define HAVE_STRUCT_SOCKADDR_SA_LEN 0
|
||||
#define HAVE_STRUCT_SOCKADDR_STORAGE 0
|
||||
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
|
||||
#define HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE 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_PERL 1
|
||||
#define HAVE_POD2MAN 1
|
||||
#define HAVE_TEXI2HTML 0
|
||||
#define HAVE_XMLLINT 1
|
||||
#define HAVE_ZLIB_GZIP 0
|
||||
#define CONFIG_DOC 0
|
||||
#define CONFIG_HTMLPAGES 0
|
||||
#define CONFIG_MANPAGES 0
|
||||
#define CONFIG_PODPAGES 0
|
||||
#define CONFIG_TXTPAGES 0
|
||||
#define CONFIG_AVIO_LIST_DIR_EXAMPLE 1
|
||||
#define CONFIG_AVIO_READING_EXAMPLE 1
|
||||
#define CONFIG_DECODE_AUDIO_EXAMPLE 1
|
||||
#define CONFIG_DECODE_VIDEO_EXAMPLE 1
|
||||
#define CONFIG_DEMUXING_DECODING_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 0
|
||||
#define CONFIG_FILTERING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_FILTERING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_HTTP_MULTICLIENT_EXAMPLE 1
|
||||
#define CONFIG_HW_DECODE_EXAMPLE 1
|
||||
#define CONFIG_METADATA_EXAMPLE 1
|
||||
#define CONFIG_MUXING_EXAMPLE 0
|
||||
#define CONFIG_QSVDEC_EXAMPLE 0
|
||||
#define CONFIG_REMUXING_EXAMPLE 1
|
||||
#define CONFIG_RESAMPLING_AUDIO_EXAMPLE 0
|
||||
#define CONFIG_SCALING_VIDEO_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODE_AAC_EXAMPLE 0
|
||||
#define CONFIG_TRANSCODING_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_ENCODE_EXAMPLE 0
|
||||
#define CONFIG_VAAPI_TRANSCODE_EXAMPLE 0
|
||||
#define CONFIG_AVISYNTH 0
|
||||
#define CONFIG_FREI0R 0
|
||||
#define CONFIG_LIBCDIO 0
|
||||
#define CONFIG_LIBDAVS2 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_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_LIBDRM 0
|
||||
#define CONFIG_LIBFLITE 0
|
||||
#define CONFIG_LIBFONTCONFIG 0
|
||||
#define CONFIG_LIBFREETYPE 0
|
||||
#define CONFIG_LIBFRIBIDI 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_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 1
|
||||
#define CONFIG_LIBPLACEBO 0
|
||||
#define CONFIG_LIBPULSE 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_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_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 0
|
||||
#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_CRYSTALHD 0
|
||||
#define CONFIG_CUDA 0
|
||||
#define CONFIG_CUDA_LLVM 0
|
||||
#define CONFIG_CUVID 0
|
||||
#define CONFIG_D3D11VA 0
|
||||
#define CONFIG_DXVA2 0
|
||||
#define CONFIG_FFNVCODEC 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 0
|
||||
#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 0
|
||||
#define CONFIG_AVFILTER 0
|
||||
#define CONFIG_SWSCALE 0
|
||||
#define CONFIG_POSTPROC 0
|
||||
#define CONFIG_AVFORMAT 1
|
||||
#define CONFIG_AVCODEC 1
|
||||
#define CONFIG_SWRESAMPLE 0
|
||||
#define CONFIG_AVUTIL 1
|
||||
#define CONFIG_FFPLAY 0
|
||||
#define CONFIG_FFPROBE 0
|
||||
#define CONFIG_FFMPEG 0
|
||||
#define CONFIG_DCT 1
|
||||
#define CONFIG_DWT 0
|
||||
#define CONFIG_ERROR_RESILIENCE 0
|
||||
#define CONFIG_FAAN 0
|
||||
#define CONFIG_FAST_UNALIGNED 1
|
||||
#define CONFIG_FFT 1
|
||||
#define CONFIG_LSP 0
|
||||
#define CONFIG_MDCT 0
|
||||
#define CONFIG_PIXELUTILS 0
|
||||
#define CONFIG_NETWORK 0
|
||||
#define CONFIG_RDFT 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 1
|
||||
#define CONFIG_PTX_COMPRESSION 0
|
||||
#define CONFIG_THUMB 0
|
||||
#define CONFIG_VALGRIND_BACKTRACE 0
|
||||
#define CONFIG_XMM_CLOBBER_TEST 0
|
||||
#define CONFIG_BSFS 0
|
||||
#define CONFIG_DECODERS 1
|
||||
#define CONFIG_ENCODERS 0
|
||||
#define CONFIG_HWACCELS 0
|
||||
#define CONFIG_PARSERS 1
|
||||
#define CONFIG_INDEVS 0
|
||||
#define CONFIG_OUTDEVS 0
|
||||
#define CONFIG_FILTERS 0
|
||||
#define CONFIG_DEMUXERS 1
|
||||
#define CONFIG_MUXERS 0
|
||||
#define CONFIG_PROTOCOLS 0
|
||||
#define CONFIG_AANDCTTABLES 0
|
||||
#define CONFIG_AC3DSP 0
|
||||
#define CONFIG_ADTS_HEADER 1
|
||||
#define CONFIG_ATSC_A53 1
|
||||
#define CONFIG_AUDIO_FRAME_QUEUE 0
|
||||
#define CONFIG_AUDIODSP 0
|
||||
#define CONFIG_BLOCKDSP 0
|
||||
#define CONFIG_BSWAPDSP 0
|
||||
#define CONFIG_CABAC 1
|
||||
#define CONFIG_CBS 0
|
||||
#define CONFIG_CBS_AV1 0
|
||||
#define CONFIG_CBS_H264 0
|
||||
#define CONFIG_CBS_H265 0
|
||||
#define CONFIG_CBS_JPEG 0
|
||||
#define CONFIG_CBS_MPEG2 0
|
||||
#define CONFIG_CBS_VP9 0
|
||||
#define CONFIG_DEFLATE_WRAPPER 0
|
||||
#define CONFIG_DIRAC_PARSE 1
|
||||
#define CONFIG_DNN 0
|
||||
#define CONFIG_DOVI_RPU 0
|
||||
#define CONFIG_DVPROFILE 0
|
||||
#define CONFIG_EXIF 0
|
||||
#define CONFIG_FAANDCT 0
|
||||
#define CONFIG_FAANIDCT 0
|
||||
#define CONFIG_FDCTDSP 0
|
||||
#define CONFIG_FMTCONVERT 0
|
||||
#define CONFIG_FRAME_THREAD_ENCODER 0
|
||||
#define CONFIG_G722DSP 0
|
||||
#define CONFIG_GOLOMB 1
|
||||
#define CONFIG_GPLV3 0
|
||||
#define CONFIG_H263DSP 0
|
||||
#define CONFIG_H264CHROMA 1
|
||||
#define CONFIG_H264DSP 1
|
||||
#define CONFIG_H264PARSE 1
|
||||
#define CONFIG_H264PRED 1
|
||||
#define CONFIG_H264QPEL 1
|
||||
#define CONFIG_HEVCPARSE 0
|
||||
#define CONFIG_HPELDSP 1
|
||||
#define CONFIG_HUFFMAN 0
|
||||
#define CONFIG_HUFFYUVDSP 0
|
||||
#define CONFIG_HUFFYUVENCDSP 0
|
||||
#define CONFIG_IDCTDSP 0
|
||||
#define CONFIG_IIRFILTER 0
|
||||
#define CONFIG_INFLATE_WRAPPER 0
|
||||
#define CONFIG_INTRAX8 0
|
||||
#define CONFIG_ISO_MEDIA 1
|
||||
#define CONFIG_IVIDSP 0
|
||||
#define CONFIG_JPEGTABLES 0
|
||||
#define CONFIG_LGPLV3 0
|
||||
#define CONFIG_LIBX262 0
|
||||
#define CONFIG_LLAUDDSP 0
|
||||
#define CONFIG_LLVIDDSP 0
|
||||
#define CONFIG_LLVIDENCDSP 0
|
||||
#define CONFIG_LPC 0
|
||||
#define CONFIG_LZF 0
|
||||
#define CONFIG_ME_CMP 0
|
||||
#define CONFIG_MPEG_ER 0
|
||||
#define CONFIG_MPEGAUDIO 1
|
||||
#define CONFIG_MPEGAUDIODSP 1
|
||||
#define CONFIG_MPEGAUDIOHEADER 1
|
||||
#define CONFIG_MPEG4AUDIO 1
|
||||
#define CONFIG_MPEGVIDEO 0
|
||||
#define CONFIG_MPEGVIDEODEC 0
|
||||
#define CONFIG_MPEGVIDEOENC 0
|
||||
#define CONFIG_MSMPEG4DEC 0
|
||||
#define CONFIG_MSMPEG4ENC 0
|
||||
#define CONFIG_MSS34DSP 0
|
||||
#define CONFIG_PIXBLOCKDSP 0
|
||||
#define CONFIG_QPELDSP 0
|
||||
#define CONFIG_QSV 0
|
||||
#define CONFIG_QSVDEC 0
|
||||
#define CONFIG_QSVENC 0
|
||||
#define CONFIG_QSVVPP 0
|
||||
#define CONFIG_RANGECODER 0
|
||||
#define CONFIG_RIFFDEC 1
|
||||
#define CONFIG_RIFFENC 0
|
||||
#define CONFIG_RTPDEC 0
|
||||
#define CONFIG_RTPENC_CHAIN 0
|
||||
#define CONFIG_RV34DSP 0
|
||||
#define CONFIG_SCENE_SAD 0
|
||||
#define CONFIG_SINEWIN 1
|
||||
#define CONFIG_SNAPPY 0
|
||||
#define CONFIG_SRTP 0
|
||||
#define CONFIG_STARTCODE 1
|
||||
#define CONFIG_TEXTUREDSP 0
|
||||
#define CONFIG_TEXTUREDSPENC 0
|
||||
#define CONFIG_TPELDSP 0
|
||||
#define CONFIG_VAAPI_1 0
|
||||
#define CONFIG_VAAPI_ENCODE 0
|
||||
#define CONFIG_VC1DSP 0
|
||||
#define CONFIG_VIDEODSP 1
|
||||
#define CONFIG_VP3DSP 1
|
||||
#define CONFIG_VP56DSP 0
|
||||
#define CONFIG_VP8DSP 1
|
||||
#define CONFIG_WMA_FREQS 0
|
||||
#define CONFIG_WMV2DSP 0
|
||||
#endif /* FFMPEG_CONFIG_H */
|
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm64/config_components.h
vendored
Normal file
2125
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm64/config_components.h
vendored
Normal file
File diff suppressed because it is too large
Load diff
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm64/libavcodec/bsf_list.c
vendored
Normal file
2
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm64/libavcodec/bsf_list.c
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
static const FFBitStreamFilter * const bitstream_filters[] = {
|
||||
NULL };
|
20
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm64/libavcodec/codec_list.c
vendored
Normal file
20
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm64/libavcodec/codec_list.c
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
static const FFCodec * const codec_list[] = {
|
||||
&ff_h264_decoder,
|
||||
&ff_theora_decoder,
|
||||
&ff_vp3_decoder,
|
||||
&ff_vp8_decoder,
|
||||
&ff_aac_decoder,
|
||||
&ff_flac_decoder,
|
||||
&ff_mp3_decoder,
|
||||
&ff_vorbis_decoder,
|
||||
&ff_pcm_alaw_decoder,
|
||||
&ff_pcm_f32le_decoder,
|
||||
&ff_pcm_mulaw_decoder,
|
||||
&ff_pcm_s16be_decoder,
|
||||
&ff_pcm_s16le_decoder,
|
||||
&ff_pcm_s24be_decoder,
|
||||
&ff_pcm_s24le_decoder,
|
||||
&ff_pcm_s32le_decoder,
|
||||
&ff_pcm_u8_decoder,
|
||||
&ff_libopus_decoder,
|
||||
NULL };
|
11
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm64/libavcodec/parser_list.c
vendored
Normal file
11
arm/android/third_party/ffmpeg/chromium/config/Chrome/linux/arm64/libavcodec/parser_list.c
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
static const AVCodecParser * const parser_list[] = {
|
||||
&ff_aac_parser,
|
||||
&ff_flac_parser,
|
||||
&ff_h264_parser,
|
||||
&ff_mpegaudio_parser,
|
||||
&ff_opus_parser,
|
||||
&ff_vorbis_parser,
|
||||
&ff_vp3_parser,
|
||||
&ff_vp8_parser,
|
||||
&ff_vp9_parser,
|
||||
NULL };
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue