Commit a5e6f2f8 authored by Johann's avatar Johann Committed by Commit Bot

libaom: fix msan build

msan builds skip optimizations because of past issues instrumenting
the assembly.

R=tomfinegan@chromium.org

Change-Id: I4ec4195687b54b85e12e21bbb16666ef4dcb8658
Reviewed-on: https://chromium-review.googlesource.com/806634
Commit-Queue: Johann Koenig <johannkoenig@google.com>
Reviewed-by: default avatarTom Finegan <tomfinegan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#521408}
parent f0f72552
...@@ -22,6 +22,8 @@ if (enable_av1_decoder) { ...@@ -22,6 +22,8 @@ if (enable_av1_decoder) {
cpu_arch_full = "ia32" cpu_arch_full = "ia32"
} else if (current_cpu == "x64") { } else if (current_cpu == "x64") {
if (is_msan) { if (is_msan) {
# TODO(johannkoenig): Check if MSAN builds pass. libaom is favoring
# intrinsics over assembly.
cpu_arch_full = "generic" cpu_arch_full = "generic"
} else { } else {
cpu_arch_full = "x64" cpu_arch_full = "x64"
...@@ -39,7 +41,7 @@ if (enable_av1_decoder) { ...@@ -39,7 +41,7 @@ if (enable_av1_decoder) {
} }
if (is_nacl) { if (is_nacl) {
platform_include_dir = "source/config/nacl" platform_include_dir = "source/config/linux/generic"
} else { } else {
# TODO(johannkoenig): remove mac-specific config files. # TODO(johannkoenig): remove mac-specific config files.
# The mac configurations are currently a relic. They were useful when # The mac configurations are currently a relic. They were useful when
......
...@@ -321,7 +321,7 @@ gen_config_files linux/x64 "--target=x86_64-linux-gcc ${all_platforms} ${x86_pla ...@@ -321,7 +321,7 @@ gen_config_files linux/x64 "--target=x86_64-linux-gcc ${all_platforms} ${x86_pla
#gen_config_files linux/arm64 "--target=armv8-linux-gcc ${all_platforms}" #gen_config_files linux/arm64 "--target=armv8-linux-gcc ${all_platforms}"
#gen_config_files linux/mipsel "--target=mips32-linux-gcc ${all_platforms}" #gen_config_files linux/mipsel "--target=mips32-linux-gcc ${all_platforms}"
#gen_config_files linux/mips64el "--target=mips64-linux-gcc ${all_platforms}" #gen_config_files linux/mips64el "--target=mips64-linux-gcc ${all_platforms}"
#gen_config_files linux/generic "--target=generic-gnu $HIGHBD ${all_platforms}" gen_config_files linux/generic "--target=generic-gnu $HIGHBD ${all_platforms}"
gen_config_files win/ia32 "--target=x86-win32-vs12 ${all_platforms} ${x86_platforms}" gen_config_files win/ia32 "--target=x86-win32-vs12 ${all_platforms} ${x86_platforms}"
gen_config_files win/x64 "--target=x86_64-win64-vs12 ${all_platforms} ${x86_platforms}" gen_config_files win/x64 "--target=x86_64-win64-vs12 ${all_platforms} ${x86_platforms}"
#gen_config_files mac/ia32 "--target=x86-darwin9-gcc ${all_platforms} ${x86_platforms}" #gen_config_files mac/ia32 "--target=x86-darwin9-gcc ${all_platforms} ${x86_platforms}"
...@@ -343,7 +343,7 @@ lint_config linux/x64 ...@@ -343,7 +343,7 @@ lint_config linux/x64
#lint_config linux/arm64 #lint_config linux/arm64
#lint_config linux/mipsel #lint_config linux/mipsel
#lint_config linux/mips64el #lint_config linux/mips64el
#lint_config linux/generic lint_config linux/generic
lint_config win/ia32 lint_config win/ia32
lint_config win/x64 lint_config win/x64
#lint_config mac/ia32 #lint_config mac/ia32
...@@ -366,7 +366,7 @@ gen_rtcd_header linux/x64 x86_64 ...@@ -366,7 +366,7 @@ gen_rtcd_header linux/x64 x86_64
#gen_rtcd_header linux/arm64 armv8 #gen_rtcd_header linux/arm64 armv8
#gen_rtcd_header linux/mipsel mipsel #gen_rtcd_header linux/mipsel mipsel
#gen_rtcd_header linux/mips64el mips64el #gen_rtcd_header linux/mips64el mips64el
#gen_rtcd_header linux/generic generic gen_rtcd_header linux/generic generic
gen_rtcd_header win/ia32 x86 gen_rtcd_header win/ia32 x86
gen_rtcd_header win/x64 x86_64 gen_rtcd_header win/x64 x86_64
#gen_rtcd_header mac/ia32 x86 #gen_rtcd_header mac/ia32 x86
...@@ -436,12 +436,12 @@ if [ -z $ONLY_CONFIGS ]; then ...@@ -436,12 +436,12 @@ if [ -z $ONLY_CONFIGS ]; then
# make_clean # make_clean
# make libaom_srcs.txt target=libs $config > /dev/null # make libaom_srcs.txt target=libs $config > /dev/null
# convert_srcs_to_project_files libaom_srcs.txt libaom_srcs_nacl # convert_srcs_to_project_files libaom_srcs.txt libaom_srcs_nacl
#
# echo "Generate GENERIC source list." echo "Generate GENERIC source list."
# config=$(print_config_basic linux/generic) config=$(print_config_basic linux/generic)
# make_clean make_clean
# make libaom_srcs.txt target=libs $config > /dev/null make libaom_srcs.txt target=libs $config > /dev/null
# convert_srcs_to_project_files libaom_srcs.txt libaom_srcs_generic convert_srcs_to_project_files libaom_srcs.txt libaom_srcs_generic
fi fi
echo "Remove temporary directory." echo "Remove temporary directory."
......
...@@ -465,3 +465,171 @@ libaom_srcs_x86_64_avx2 = [ ...@@ -465,3 +465,171 @@ libaom_srcs_x86_64_avx2 = [
"//third_party/libaom/source/libaom/av1/common/x86/highbd_inv_txfm_avx2.c", "//third_party/libaom/source/libaom/av1/common/x86/highbd_inv_txfm_avx2.c",
"//third_party/libaom/source/libaom/av1/common/x86/hybrid_inv_txfm_avx2.c", "//third_party/libaom/source/libaom/av1/common/x86/hybrid_inv_txfm_avx2.c",
] ]
libaom_srcs_generic = [
"//third_party/libaom/source/libaom/aom/aom.h",
"//third_party/libaom/source/libaom/aom/aom_codec.h",
"//third_party/libaom/source/libaom/aom/aom_decoder.h",
"//third_party/libaom/source/libaom/aom/aom_encoder.h",
"//third_party/libaom/source/libaom/aom/aom_frame_buffer.h",
"//third_party/libaom/source/libaom/aom/aom_image.h",
"//third_party/libaom/source/libaom/aom/aom_integer.h",
"//third_party/libaom/source/libaom/aom/aomdx.h",
"//third_party/libaom/source/libaom/aom/internal/aom_codec_internal.h",
"//third_party/libaom/source/libaom/aom/src/aom_codec.c",
"//third_party/libaom/source/libaom/aom/src/aom_decoder.c",
"//third_party/libaom/source/libaom/aom/src/aom_encoder.c",
"//third_party/libaom/source/libaom/aom/src/aom_image.c",
"//third_party/libaom/source/libaom/aom_dsp/aom_convolve.c",
"//third_party/libaom/source/libaom/aom_dsp/aom_convolve.h",
"//third_party/libaom/source/libaom/aom_dsp/aom_dsp_common.h",
"//third_party/libaom/source/libaom/aom_dsp/aom_dsp_rtcd.c",
"//third_party/libaom/source/libaom/aom_dsp/aom_filter.h",
"//third_party/libaom/source/libaom/aom_dsp/aom_simd.h",
"//third_party/libaom/source/libaom/aom_dsp/aom_simd_inline.h",
"//third_party/libaom/source/libaom/aom_dsp/binary_codes_reader.c",
"//third_party/libaom/source/libaom/aom_dsp/binary_codes_reader.h",
"//third_party/libaom/source/libaom/aom_dsp/bitreader.h",
"//third_party/libaom/source/libaom/aom_dsp/bitreader_buffer.c",
"//third_party/libaom/source/libaom/aom_dsp/bitreader_buffer.h",
"//third_party/libaom/source/libaom/aom_dsp/blend.h",
"//third_party/libaom/source/libaom/aom_dsp/blend_a64_hmask.c",
"//third_party/libaom/source/libaom/aom_dsp/blend_a64_mask.c",
"//third_party/libaom/source/libaom/aom_dsp/blend_a64_vmask.c",
"//third_party/libaom/source/libaom/aom_dsp/daalaboolreader.c",
"//third_party/libaom/source/libaom/aom_dsp/daalaboolreader.h",
"//third_party/libaom/source/libaom/aom_dsp/entcode.c",
"//third_party/libaom/source/libaom/aom_dsp/entcode.h",
"//third_party/libaom/source/libaom/aom_dsp/entdec.c",
"//third_party/libaom/source/libaom/aom_dsp/entdec.h",
"//third_party/libaom/source/libaom/aom_dsp/intrapred.c",
"//third_party/libaom/source/libaom/aom_dsp/inv_txfm.c",
"//third_party/libaom/source/libaom/aom_dsp/inv_txfm.h",
"//third_party/libaom/source/libaom/aom_dsp/loopfilter.c",
"//third_party/libaom/source/libaom/aom_dsp/prob.c",
"//third_party/libaom/source/libaom/aom_dsp/prob.h",
"//third_party/libaom/source/libaom/aom_dsp/simd/v128_intrinsics.h",
"//third_party/libaom/source/libaom/aom_dsp/simd/v128_intrinsics_c.h",
"//third_party/libaom/source/libaom/aom_dsp/simd/v256_intrinsics.h",
"//third_party/libaom/source/libaom/aom_dsp/simd/v256_intrinsics_c.h",
"//third_party/libaom/source/libaom/aom_dsp/simd/v256_intrinsics_v128.h",
"//third_party/libaom/source/libaom/aom_dsp/simd/v64_intrinsics.h",
"//third_party/libaom/source/libaom/aom_dsp/simd/v64_intrinsics_c.h",
"//third_party/libaom/source/libaom/aom_dsp/txfm_common.h",
"//third_party/libaom/source/libaom/aom_dsp/x86/txfm_common_intrin.h",
"//third_party/libaom/source/libaom/aom_mem/aom_mem.c",
"//third_party/libaom/source/libaom/aom_mem/aom_mem.h",
"//third_party/libaom/source/libaom/aom_mem/include/aom_mem_intrnl.h",
"//third_party/libaom/source/libaom/aom_ports/aom_once.h",
"//third_party/libaom/source/libaom/aom_ports/aom_timer.h",
"//third_party/libaom/source/libaom/aom_ports/bitops.h",
"//third_party/libaom/source/libaom/aom_ports/emmintrin_compat.h",
"//third_party/libaom/source/libaom/aom_ports/mem.h",
"//third_party/libaom/source/libaom/aom_ports/mem_ops.h",
"//third_party/libaom/source/libaom/aom_ports/mem_ops_aligned.h",
"//third_party/libaom/source/libaom/aom_ports/msvc.h",
"//third_party/libaom/source/libaom/aom_ports/system_state.h",
"//third_party/libaom/source/libaom/aom_scale/aom_scale.h",
"//third_party/libaom/source/libaom/aom_scale/aom_scale_rtcd.c",
"//third_party/libaom/source/libaom/aom_scale/generic/aom_scale.c",
"//third_party/libaom/source/libaom/aom_scale/generic/gen_scalers.c",
"//third_party/libaom/source/libaom/aom_scale/generic/yv12config.c",
"//third_party/libaom/source/libaom/aom_scale/generic/yv12extend.c",
"//third_party/libaom/source/libaom/aom_scale/yv12config.h",
"//third_party/libaom/source/libaom/aom_util/aom_thread.c",
"//third_party/libaom/source/libaom/aom_util/aom_thread.h",
"//third_party/libaom/source/libaom/aom_util/endian_inl.h",
"//third_party/libaom/source/libaom/av1/av1_dx_iface.c",
"//third_party/libaom/source/libaom/av1/av1_iface_common.h",
"//third_party/libaom/source/libaom/av1/common/alloccommon.c",
"//third_party/libaom/source/libaom/av1/common/alloccommon.h",
"//third_party/libaom/source/libaom/av1/common/av1_fwd_txfm1d.c",
"//third_party/libaom/source/libaom/av1/common/av1_fwd_txfm1d.h",
"//third_party/libaom/source/libaom/av1/common/av1_fwd_txfm1d_cfg.h",
"//third_party/libaom/source/libaom/av1/common/av1_fwd_txfm2d.c",
"//third_party/libaom/source/libaom/av1/common/av1_inv_txfm1d.c",
"//third_party/libaom/source/libaom/av1/common/av1_inv_txfm1d.h",
"//third_party/libaom/source/libaom/av1/common/av1_inv_txfm1d_cfg.h",
"//third_party/libaom/source/libaom/av1/common/av1_inv_txfm2d.c",
"//third_party/libaom/source/libaom/av1/common/av1_loopfilter.c",
"//third_party/libaom/source/libaom/av1/common/av1_loopfilter.h",
"//third_party/libaom/source/libaom/av1/common/av1_rtcd.c",
"//third_party/libaom/source/libaom/av1/common/av1_txfm.h",
"//third_party/libaom/source/libaom/av1/common/blockd.c",
"//third_party/libaom/source/libaom/av1/common/blockd.h",
"//third_party/libaom/source/libaom/av1/common/cdef.c",
"//third_party/libaom/source/libaom/av1/common/cdef.h",
"//third_party/libaom/source/libaom/av1/common/cdef_block.c",
"//third_party/libaom/source/libaom/av1/common/cdef_block.h",
"//third_party/libaom/source/libaom/av1/common/cdef_block_simd.h",
"//third_party/libaom/source/libaom/av1/common/clpf.c",
"//third_party/libaom/source/libaom/av1/common/clpf_simd.h",
"//third_party/libaom/source/libaom/av1/common/common.h",
"//third_party/libaom/source/libaom/av1/common/common_data.h",
"//third_party/libaom/source/libaom/av1/common/convolve.c",
"//third_party/libaom/source/libaom/av1/common/convolve.h",
"//third_party/libaom/source/libaom/av1/common/daala_tx.c",
"//third_party/libaom/source/libaom/av1/common/daala_tx.h",
"//third_party/libaom/source/libaom/av1/common/debugmodes.c",
"//third_party/libaom/source/libaom/av1/common/entropy.c",
"//third_party/libaom/source/libaom/av1/common/entropy.h",
"//third_party/libaom/source/libaom/av1/common/entropymode.c",
"//third_party/libaom/source/libaom/av1/common/entropymode.h",
"//third_party/libaom/source/libaom/av1/common/entropymv.c",
"//third_party/libaom/source/libaom/av1/common/entropymv.h",
"//third_party/libaom/source/libaom/av1/common/enums.h",
"//third_party/libaom/source/libaom/av1/common/filter.c",
"//third_party/libaom/source/libaom/av1/common/filter.h",
"//third_party/libaom/source/libaom/av1/common/frame_buffers.c",
"//third_party/libaom/source/libaom/av1/common/frame_buffers.h",
"//third_party/libaom/source/libaom/av1/common/idct.c",
"//third_party/libaom/source/libaom/av1/common/idct.h",
"//third_party/libaom/source/libaom/av1/common/mv.h",
"//third_party/libaom/source/libaom/av1/common/mvref_common.c",
"//third_party/libaom/source/libaom/av1/common/mvref_common.h",
"//third_party/libaom/source/libaom/av1/common/obmc.h",
"//third_party/libaom/source/libaom/av1/common/odintrin.c",
"//third_party/libaom/source/libaom/av1/common/odintrin.h",
"//third_party/libaom/source/libaom/av1/common/onyxc_int.h",
"//third_party/libaom/source/libaom/av1/common/pred_common.c",
"//third_party/libaom/source/libaom/av1/common/pred_common.h",
"//third_party/libaom/source/libaom/av1/common/quant_common.c",
"//third_party/libaom/source/libaom/av1/common/quant_common.h",
"//third_party/libaom/source/libaom/av1/common/reconinter.c",
"//third_party/libaom/source/libaom/av1/common/reconinter.h",
"//third_party/libaom/source/libaom/av1/common/reconintra.c",
"//third_party/libaom/source/libaom/av1/common/reconintra.h",
"//third_party/libaom/source/libaom/av1/common/resize.c",
"//third_party/libaom/source/libaom/av1/common/resize.h",
"//third_party/libaom/source/libaom/av1/common/scale.c",
"//third_party/libaom/source/libaom/av1/common/scale.h",
"//third_party/libaom/source/libaom/av1/common/scan.c",
"//third_party/libaom/source/libaom/av1/common/scan.h",
"//third_party/libaom/source/libaom/av1/common/seg_common.c",
"//third_party/libaom/source/libaom/av1/common/seg_common.h",
"//third_party/libaom/source/libaom/av1/common/thread_common.c",
"//third_party/libaom/source/libaom/av1/common/thread_common.h",
"//third_party/libaom/source/libaom/av1/common/tile_common.c",
"//third_party/libaom/source/libaom/av1/common/tile_common.h",
"//third_party/libaom/source/libaom/av1/common/warped_motion.c",
"//third_party/libaom/source/libaom/av1/common/warped_motion.h",
"//third_party/libaom/source/libaom/av1/decoder/decodeframe.c",
"//third_party/libaom/source/libaom/av1/decoder/decodeframe.h",
"//third_party/libaom/source/libaom/av1/decoder/decodemv.c",
"//third_party/libaom/source/libaom/av1/decoder/decodemv.h",
"//third_party/libaom/source/libaom/av1/decoder/decoder.c",
"//third_party/libaom/source/libaom/av1/decoder/decoder.h",
"//third_party/libaom/source/libaom/av1/decoder/detokenize.c",
"//third_party/libaom/source/libaom/av1/decoder/detokenize.h",
"//third_party/libaom/source/libaom/av1/decoder/dsubexp.c",
"//third_party/libaom/source/libaom/av1/decoder/dsubexp.h",
"//third_party/libaom/source/libaom/av1/decoder/dthread.c",
"//third_party/libaom/source/libaom/av1/decoder/dthread.h",
]
libaom_srcs_generic_assembly = []
libaom_srcs_generic_mmx = []
libaom_srcs_generic_sse2 = []
libaom_srcs_generic_sse3 = []
libaom_srcs_generic_ssse3 = []
libaom_srcs_generic_sse4_1 = []
libaom_srcs_generic_avx = []
libaom_srcs_generic_avx2 = []
@ This file was created from a .asm file
@ using the ads2gas.pl script.
.equ DO1STROUNDING, 0
.equ ARCH_ARM , 0
.equ ARCH_MIPS , 0
.equ ARCH_X86 , 0
.equ ARCH_X86_64 , 0
.equ HAVE_NEON , 0
.equ HAVE_NEON_ASM , 0
.equ HAVE_MIPS32 , 0
.equ HAVE_DSPR2 , 0
.equ HAVE_MSA , 0
.equ HAVE_MIPS64 , 0
.equ HAVE_MMX , 0
.equ HAVE_SSE , 0
.equ HAVE_SSE2 , 0
.equ HAVE_SSE3 , 0
.equ HAVE_SSSE3 , 0
.equ HAVE_SSE4_1 , 0
.equ HAVE_AVX , 0
.equ HAVE_AVX2 , 0
.equ HAVE_AOM_PORTS , 1
.equ HAVE_FEXCEPT , 1
.equ HAVE_PTHREAD_H , 1
.equ HAVE_UNISTD_H , 1
.equ HAVE_WXWIDGETS , 0
.equ CONFIG_DEPENDENCY_TRACKING , 1
.equ CONFIG_EXTERNAL_BUILD , 1
.equ CONFIG_INSTALL_DOCS , 0
.equ CONFIG_INSTALL_BINS , 1
.equ CONFIG_INSTALL_LIBS , 1
.equ CONFIG_INSTALL_SRCS , 0
.equ CONFIG_DEBUG , 0
.equ CONFIG_GPROF , 0
.equ CONFIG_GCOV , 0
.equ CONFIG_RVCT , 0
.equ CONFIG_GCC , 1
.equ CONFIG_MSVS , 0
.equ CONFIG_PIC , 0
.equ CONFIG_BIG_ENDIAN , 0
.equ CONFIG_CODEC_SRCS , 0
.equ CONFIG_DEBUG_LIBS , 0
.equ CONFIG_RUNTIME_CPU_DETECT , 0
.equ CONFIG_POSTPROC , 1
.equ CONFIG_MULTITHREAD , 1
.equ CONFIG_INTERNAL_STATS , 0
.equ CONFIG_AV1_ENCODER , 0
.equ CONFIG_AV1_DECODER , 1
.equ CONFIG_AV1 , 1
.equ CONFIG_STATIC_MSVCRT , 0
.equ CONFIG_SPATIAL_RESAMPLING , 1
.equ CONFIG_REALTIME_ONLY , 1
.equ CONFIG_SHARED , 0
.equ CONFIG_STATIC , 1
.equ CONFIG_SMALL , 0
.equ CONFIG_POSTPROC_VISUALIZER , 0
.equ CONFIG_OS_SUPPORT , 1
.equ CONFIG_UNIT_TESTS , 1
.equ CONFIG_WEBM_IO , 1
.equ CONFIG_LIBYUV , 1
.equ CONFIG_ACCOUNTING , 0
.equ CONFIG_INSPECTION , 0
.equ CONFIG_DECODE_PERF_TESTS , 0
.equ CONFIG_ENCODE_PERF_TESTS , 0
.equ CONFIG_COEFFICIENT_RANGE_CHECKING , 0
.equ CONFIG_LOWBITDEPTH , 1
.equ CONFIG_HIGHBITDEPTH , 1
.equ CONFIG_EXPERIMENTAL , 0
.equ CONFIG_SIZE_LIMIT , 1
.equ CONFIG_FP_MB_STATS , 0
.equ CONFIG_CDEF , 1
.equ CONFIG_CDEF_SINGLEPASS , 0
.equ CONFIG_VAR_TX , 1
.equ CONFIG_RECT_TX , 1
.equ CONFIG_RECT_TX_EXT , 0
.equ CONFIG_TPL_MV , 0
.equ CONFIG_DUAL_FILTER , 1
.equ CONFIG_CONVOLVE_ROUND , 1
.equ CONFIG_COMPOUND_ROUND , 0
.equ CONFIG_EXT_TX , 1
.equ CONFIG_DPCM_INTRA , 0
.equ CONFIG_TX64X64 , 0
.equ CONFIG_EXT_INTRA , 1
.equ CONFIG_INTRA_INTERP , 0
.equ CONFIG_FILTER_INTRA , 0
.equ CONFIG_INTRA_EDGE , 0
.equ CONFIG_INTRABC , 0
.equ CONFIG_EXT_INTER , 1
.equ CONFIG_INTERINTRA , 1
.equ CONFIG_WEDGE , 1
.equ CONFIG_COMPOUND_SEGMENT , 1
.equ CONFIG_EXT_REFS , 1
.equ CONFIG_SPEED_REFS , 0
.equ CONFIG_GF_GROUPS , 0
.equ CONFIG_GLOBAL_MOTION , 1
.equ CONFIG_NEW_QUANT , 0
.equ CONFIG_SUPERTX , 0
.equ CONFIG_ANS , 0
.equ CONFIG_LOOP_RESTORATION , 0
.equ CONFIG_EXT_PARTITION , 0
.equ CONFIG_EXT_PARTITION_TYPES , 0
.equ CONFIG_UNPOISON_PARTITION_CTX , 0
.equ CONFIG_EXT_TILE , 0
.equ CONFIG_MOTION_VAR , 1
.equ CONFIG_NCOBMC , 0
.equ CONFIG_WARPED_MOTION , 1
.equ CONFIG_Q_ADAPT_PROBS , 0
.equ CONFIG_BITSTREAM_DEBUG , 0
.equ CONFIG_INTER_STATS_ONLY , 0
.equ CONFIG_PALETTE_DELTA_ENCODING , 0
.equ CONFIG_RAWBITS , 0
.equ CONFIG_PVQ , 0
.equ CONFIG_CFL , 0
.equ CONFIG_XIPHRC , 0
.equ CONFIG_DCT_ONLY , 0
.equ CONFIG_DAALA_DCT4 , 0
.equ CONFIG_DAALA_DCT8 , 0
.equ CONFIG_DAALA_DCT16 , 0
.equ CONFIG_DAALA_DCT32 , 0
.equ CONFIG_DAALA_DCT64 , 0
.equ CONFIG_CB4X4 , 1
.equ CONFIG_CHROMA_2X2 , 0
.equ CONFIG_CHROMA_SUB8X8 , 1
.equ CONFIG_FRAME_SIZE , 0
.equ CONFIG_DELTA_Q , 1
.equ CONFIG_EXT_DELTA_Q , 1
.equ CONFIG_ADAPT_SCAN , 0
.equ CONFIG_FILTER_7BIT , 1
.equ CONFIG_PARALLEL_DEBLOCKING , 1
.equ CONFIG_LOOPFILTERING_ACROSS_TILES , 1
.equ CONFIG_TEMPMV_SIGNALING , 1
.equ CONFIG_RD_DEBUG , 0
.equ CONFIG_REFERENCE_BUFFER , 1
.equ CONFIG_COEF_INTERLEAVE , 0
.equ CONFIG_ENTROPY_STATS , 0
.equ CONFIG_MASKED_TX , 0
.equ CONFIG_DEPENDENT_HORZTILES , 0
.equ CONFIG_DIST_8X8 , 1
.equ CONFIG_TRIPRED , 0
.equ CONFIG_PALETTE_THROUGHPUT , 1
.equ CONFIG_REF_ADAPT , 0
.equ CONFIG_LV_MAP , 0
.equ CONFIG_TXK_SEL , 0
.equ CONFIG_MV_COMPRESS , 1
.equ CONFIG_SEGMENT_ZEROMV , 0
.equ CONFIG_FRAME_SUPERRES , 0
.equ CONFIG_NEW_MULTISYMBOL , 0
.equ CONFIG_COMPOUND_SINGLEREF , 0
.equ CONFIG_AOM_QM , 1
.equ CONFIG_ONE_SIDED_COMPOUND , 1
.equ CONFIG_EXT_COMP_REFS , 1
.equ CONFIG_SMOOTH_HV , 1
.equ CONFIG_VAR_REFS , 0
.equ CONFIG_RECT_INTRA_PRED , 1
.equ CONFIG_LGT , 0
.equ CONFIG_SBL_SYMBOL , 0
.equ CONFIG_NCOBMC_ADAPT_WEIGHT , 0
.equ CONFIG_BGSPRITE , 0
.equ CONFIG_VAR_TX_NO_TX_MODE , 0
.equ CONFIG_MRC_TX , 0
.equ CONFIG_LPF_DIRECT , 0
.equ CONFIG_LOOPFILTER_LEVEL , 0
.equ CONFIG_NO_FRAME_CONTEXT_SIGNALING , 0
.equ CONFIG_TXMG , 0
.equ CONFIG_HASH_ME , 0
.equ CONFIG_COLORSPACE_HEADERS , 0
.equ CONFIG_MFMV , 0
.equ CONFIG_JNT_COMP , 0
.equ CONFIG_ANALYZER , 0
.equ DECODE_WIDTH_LIMIT , 16384
.equ DECODE_HEIGHT_LIMIT , 16384
.section .note.GNU-stack,"",%progbits
/* Copyright (c) 2016, Alliance for Open Media. All rights reserved. */
/* */
/* This source code is subject to the terms of the BSD 2 Clause License and */
/* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License */
/* was not distributed with this source code in the LICENSE file, you can */
/* obtain it at www.aomedia.org/license/software. If the Alliance for Open */
/* Media Patent License 1.0 was not distributed with this source code in the */
/* PATENTS file, you can obtain it at www.aomedia.org/license/patent. */
#include "aom/aom_codec.h"
static const char* const cfg = "--target=generic-gnu --enable-external-build --enable-postproc --disable-av1-encoder --size-limit=16384x16384 --enable-realtime-only --disable-install-docs";
const char *aom_codec_build_config(void) {return cfg;}
/* Copyright (c) 2016, Alliance for Open Media. All rights reserved. */
/* */
/* This source code is subject to the terms of the BSD 2 Clause License and */
/* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License */
/* was not distributed with this source code in the LICENSE file, you can */
/* obtain it at www.aomedia.org/license/software. If the Alliance for Open */
/* Media Patent License 1.0 was not distributed with this source code in the */
/* PATENTS file, you can obtain it at www.aomedia.org/license/patent. */
/* This file automatically generated by configure. Do not edit! */
#ifndef AOM_CONFIG_H
#define AOM_CONFIG_H
#define RESTRICT
#define INLINE inline
#define ARCH_ARM 0
#define ARCH_MIPS 0
#define ARCH_X86 0
#define ARCH_X86_64 0
#define HAVE_NEON 0
#define HAVE_NEON_ASM 0
#define HAVE_MIPS32 0
#define HAVE_DSPR2 0
#define HAVE_MSA 0
#define HAVE_MIPS64 0
#define HAVE_MMX 0
#define HAVE_SSE 0
#define HAVE_SSE2 0
#define HAVE_SSE3 0
#define HAVE_SSSE3 0
#define HAVE_SSE4_1 0
#define HAVE_AVX 0
#define HAVE_AVX2 0
#define HAVE_AOM_PORTS 1
#define HAVE_FEXCEPT 1
#define HAVE_PTHREAD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_WXWIDGETS 0
#define CONFIG_DEPENDENCY_TRACKING 1
#define CONFIG_EXTERNAL_BUILD 1
#define CONFIG_INSTALL_DOCS 0
#define CONFIG_INSTALL_BINS 1
#define CONFIG_INSTALL_LIBS 1
#define CONFIG_INSTALL_SRCS 0
#define CONFIG_DEBUG 0
#define CONFIG_GPROF 0
#define CONFIG_GCOV 0
#define CONFIG_RVCT 0
#define CONFIG_GCC 1
#define CONFIG_MSVS 0
#define CONFIG_PIC 0
#define CONFIG_BIG_ENDIAN 0
#define CONFIG_CODEC_SRCS 0
#define CONFIG_DEBUG_LIBS 0
#define CONFIG_RUNTIME_CPU_DETECT 0
#define CONFIG_POSTPROC 1
#define CONFIG_MULTITHREAD 1
#define CONFIG_INTERNAL_STATS 0
#define CONFIG_AV1_ENCODER 0
#define CONFIG_AV1_DECODER 1
#define CONFIG_AV1 1
#define CONFIG_STATIC_MSVCRT 0
#define CONFIG_SPATIAL_RESAMPLING 1
#define CONFIG_REALTIME_ONLY 1
#define CONFIG_SHARED 0
#define CONFIG_STATIC 1
#define CONFIG_SMALL 0
#define CONFIG_POSTPROC_VISUALIZER 0
#define CONFIG_OS_SUPPORT 1
#define CONFIG_UNIT_TESTS 1
#define CONFIG_WEBM_IO 1
#define CONFIG_LIBYUV 1
#define CONFIG_ACCOUNTING 0
#define CONFIG_INSPECTION 0
#define CONFIG_DECODE_PERF_TESTS 0
#define CONFIG_ENCODE_PERF_TESTS 0
#define CONFIG_COEFFICIENT_RANGE_CHECKING 0
#define CONFIG_LOWBITDEPTH 1
#define CONFIG_HIGHBITDEPTH 1
#define CONFIG_EXPERIMENTAL 0
#define CONFIG_SIZE_LIMIT 1
#define CONFIG_FP_MB_STATS 0
#define CONFIG_CDEF 1
#define CONFIG_CDEF_SINGLEPASS 0
#define CONFIG_VAR_TX 1
#define CONFIG_RECT_TX 1
#define CONFIG_RECT_TX_EXT 0
#define CONFIG_TPL_MV 0
#define CONFIG_DUAL_FILTER 1
#define CONFIG_CONVOLVE_ROUND 1
#define CONFIG_COMPOUND_ROUND 0
#define CONFIG_EXT_TX 1
#define CONFIG_DPCM_INTRA 0
#define CONFIG_TX64X64 0
#define CONFIG_EXT_INTRA 1
#define CONFIG_INTRA_INTERP 0
#define CONFIG_FILTER_INTRA 0
#define CONFIG_INTRA_EDGE 0
#define CONFIG_INTRABC 0
#define CONFIG_EXT_INTER 1
#define CONFIG_INTERINTRA 1
#define CONFIG_WEDGE 1
#define CONFIG_COMPOUND_SEGMENT 1
#define CONFIG_EXT_REFS 1
#define CONFIG_SPEED_REFS 0
#define CONFIG_GF_GROUPS 0
#define CONFIG_GLOBAL_MOTION 1
#define CONFIG_NEW_QUANT 0
#define CONFIG_SUPERTX 0
#define CONFIG_ANS 0
#define CONFIG_LOOP_RESTORATION 0
#define CONFIG_EXT_PARTITION 0
#define CONFIG_EXT_PARTITION_TYPES 0
#define CONFIG_UNPOISON_PARTITION_CTX 0
#define CONFIG_EXT_TILE 0
#define CONFIG_MOTION_VAR 1
#define CONFIG_NCOBMC 0
#define CONFIG_WARPED_MOTION 1
#define CONFIG_Q_ADAPT_PROBS 0
#define CONFIG_BITSTREAM_DEBUG 0
#define CONFIG_INTER_STATS_ONLY 0
#define CONFIG_PALETTE_DELTA_ENCODING 0
#define CONFIG_RAWBITS 0
#define CONFIG_PVQ 0
#define CONFIG_CFL 0
#define CONFIG_XIPHRC 0
#define CONFIG_DCT_ONLY 0
#define CONFIG_DAALA_DCT4 0
#define CONFIG_DAALA_DCT8 0
#define CONFIG_DAALA_DCT16 0
#define CONFIG_DAALA_DCT32 0
#define CONFIG_DAALA_DCT64 0
#define CONFIG_CB4X4 1
#define CONFIG_CHROMA_2X2 0
#define CONFIG_CHROMA_SUB8X8 1
#define CONFIG_FRAME_SIZE 0
#define CONFIG_DELTA_Q 1
#define CONFIG_EXT_DELTA_Q 1
#define CONFIG_ADAPT_SCAN 0
#define CONFIG_FILTER_7BIT 1
#define CONFIG_PARALLEL_DEBLOCKING 1
#define CONFIG_LOOPFILTERING_ACROSS_TILES 1
#define CONFIG_TEMPMV_SIGNALING 1
#define CONFIG_RD_DEBUG 0
#define CONFIG_REFERENCE_BUFFER 1
#define CONFIG_COEF_INTERLEAVE 0
#define CONFIG_ENTROPY_STATS 0
#define CONFIG_MASKED_TX 0
#define CONFIG_DEPENDENT_HORZTILES 0
#define CONFIG_DIST_8X8 1
#define CONFIG_TRIPRED 0
#define CONFIG_PALETTE_THROUGHPUT 1
#define CONFIG_REF_ADAPT 0
#define CONFIG_LV_MAP 0
#define CONFIG_TXK_SEL 0
#define CONFIG_MV_COMPRESS 1
#define CONFIG_SEGMENT_ZEROMV 0
#define CONFIG_FRAME_SUPERRES 0
#define CONFIG_NEW_MULTISYMBOL 0
#define CONFIG_COMPOUND_SINGLEREF 0
#define CONFIG_AOM_QM 1
#define CONFIG_ONE_SIDED_COMPOUND 1
#define CONFIG_EXT_COMP_REFS 1
#define CONFIG_SMOOTH_HV 1
#define CONFIG_VAR_REFS 0
#define CONFIG_RECT_INTRA_PRED 1
#define CONFIG_LGT 0
#define CONFIG_SBL_SYMBOL 0
#define CONFIG_NCOBMC_ADAPT_WEIGHT 0
#define CONFIG_BGSPRITE 0
#define CONFIG_VAR_TX_NO_TX_MODE 0
#define CONFIG_MRC_TX 0
#define CONFIG_LPF_DIRECT 0
#define CONFIG_LOOPFILTER_LEVEL 0
#define CONFIG_NO_FRAME_CONTEXT_SIGNALING 0
#define CONFIG_TXMG 0
#define CONFIG_HASH_ME 0
#define CONFIG_COLORSPACE_HEADERS 0
#define CONFIG_MFMV 0
#define CONFIG_JNT_COMP 0
#define CONFIG_ANALYZER 0
#define DECODE_WIDTH_LIMIT 16384
#define DECODE_HEIGHT_LIMIT 16384
#endif /* AOM_CONFIG_H */
This source diff could not be displayed because it is too large. You can view the blob instead.
#ifndef AOM_SCALE_RTCD_H_
#define AOM_SCALE_RTCD_H_
#ifdef RTCD_C
#define RTCD_EXTERN
#else
#define RTCD_EXTERN extern
#endif
struct yv12_buffer_config;
#ifdef __cplusplus
extern "C" {
#endif
void aom_extend_frame_borders_c(struct yv12_buffer_config* ybf);
#define aom_extend_frame_borders aom_extend_frame_borders_c
void aom_extend_frame_borders_y_c(struct yv12_buffer_config* ybf);
#define aom_extend_frame_borders_y aom_extend_frame_borders_y_c
void aom_extend_frame_inner_borders_c(struct yv12_buffer_config* ybf);
#define aom_extend_frame_inner_borders aom_extend_frame_inner_borders_c
void aom_horizontal_line_2_1_scale_c(const unsigned char* source,
unsigned int source_width,
unsigned char* dest,
unsigned int dest_width);
#define aom_horizontal_line_2_1_scale aom_horizontal_line_2_1_scale_c
void aom_horizontal_line_5_3_scale_c(const unsigned char* source,
unsigned int source_width,
unsigned char* dest,
unsigned int dest_width);
#define aom_horizontal_line_5_3_scale aom_horizontal_line_5_3_scale_c
void aom_horizontal_line_5_4_scale_c(const unsigned char* source,
unsigned int source_width,
unsigned char* dest,
unsigned int dest_width);
#define aom_horizontal_line_5_4_scale aom_horizontal_line_5_4_scale_c
void aom_vertical_band_2_1_scale_c(unsigned char* source,
int src_pitch,
unsigned char* dest,
int dest_pitch,
unsigned int dest_width);
#define aom_vertical_band_2_1_scale aom_vertical_band_2_1_scale_c
void aom_vertical_band_2_1_scale_i_c(unsigned char* source,
int src_pitch,
unsigned char* dest,
int dest_pitch,
unsigned int dest_width);
#define aom_vertical_band_2_1_scale_i aom_vertical_band_2_1_scale_i_c
void aom_vertical_band_5_3_scale_c(unsigned char* source,
int src_pitch,
unsigned char* dest,
int dest_pitch,
unsigned int dest_width);
#define aom_vertical_band_5_3_scale aom_vertical_band_5_3_scale_c
void aom_vertical_band_5_4_scale_c(unsigned char* source,
int src_pitch,
unsigned char* dest,
int dest_pitch,
unsigned int dest_width);
#define aom_vertical_band_5_4_scale aom_vertical_band_5_4_scale_c
void aom_yv12_copy_frame_c(const struct yv12_buffer_config* src_bc,
struct yv12_buffer_config* dst_bc);
#define aom_yv12_copy_frame aom_yv12_copy_frame_c
void aom_yv12_copy_u_c(const struct yv12_buffer_config* src_bc,
struct yv12_buffer_config* dst_bc);
#define aom_yv12_copy_u aom_yv12_copy_u_c
void aom_yv12_copy_v_c(const struct yv12_buffer_config* src_bc,
struct yv12_buffer_config* dst_bc);
#define aom_yv12_copy_v aom_yv12_copy_v_c
void aom_yv12_copy_y_c(const struct yv12_buffer_config* src_ybc,
struct yv12_buffer_config* dst_ybc);
#define aom_yv12_copy_y aom_yv12_copy_y_c
void aom_yv12_extend_frame_borders_c(struct yv12_buffer_config* ybf);
#define aom_yv12_extend_frame_borders aom_yv12_extend_frame_borders_c
void aom_scale_rtcd(void);
#include "aom_config.h"
#ifdef RTCD_C
static void setup_rtcd_internal(void) {}
#endif
#ifdef __cplusplus
} // extern "C"
#endif
#endif
#ifndef AV1_RTCD_H_
#define AV1_RTCD_H_
#ifdef RTCD_C
#define RTCD_EXTERN
#else
#define RTCD_EXTERN extern
#endif
/*
* AV1
*/
#include "aom/aom_integer.h"
#include "aom_dsp/txfm_common.h"
#include "av1/common/av1_txfm.h"
#include "av1/common/common.h"
#include "av1/common/convolve.h"
#include "av1/common/enums.h"
#include "av1/common/filter.h"
#include "av1/common/odintrin.h"
#include "av1/common/quant_common.h"
struct macroblockd;
/* Encoder forward decls */
struct macroblock;
struct txfm_param;
struct aom_variance_vtable;
struct search_site_config;
struct mv;
union int_mv;
struct yv12_buffer_config;
#ifdef __cplusplus
extern "C" {
#endif
void aom_clpf_block_c(uint8_t* dst,
const uint16_t* src,
int dstride,
int sstride,
int sizex,
int sizey,
unsigned int strength,
unsigned int bd);
#define aom_clpf_block aom_clpf_block_c
void aom_clpf_block_hbd_c(uint16_t* dst,
const uint16_t* src,
int dstride,
int sstride,
int sizex,
int sizey,
unsigned int strength,
unsigned int bd);
#define aom_clpf_block_hbd aom_clpf_block_hbd_c
void aom_clpf_hblock_c(uint8_t* dst,
const uint16_t* src,
int dstride,
int sstride,
int sizex,
int sizey,
unsigned int strength,
unsigned int bd);
#define aom_clpf_hblock aom_clpf_hblock_c
void aom_clpf_hblock_hbd_c(uint16_t* dst,
const uint16_t* src,
int dstride,
int sstride,
int sizex,
int sizey,
unsigned int strength,
unsigned int bd);
#define aom_clpf_hblock_hbd aom_clpf_hblock_hbd_c
void av1_convolve_2d_c(const uint8_t* src,
int src_stride,
CONV_BUF_TYPE* dst,
int dst_stride,
int w,
int h,
InterpFilterParams* filter_params_x,
InterpFilterParams* filter_params_y,
const int subpel_x_q4,
const int subpel_y_q4,
ConvolveParams* conv_params);
#define av1_convolve_2d av1_convolve_2d_c
void av1_convolve_2d_scale_c(const uint8_t* src,
int src_stride,
CONV_BUF_TYPE* dst,
int dst_stride,
int w,
int h,
InterpFilterParams* filter_params_x,
InterpFilterParams* filter_params_y,
const int subpel_x_qn,
const int x_step_qn,
const int subpel_y_q4,
const int y_step_qn,
ConvolveParams* conv_params);
#define av1_convolve_2d_scale av1_convolve_2d_scale_c
void av1_convolve_horiz_c(const uint8_t* src,
int src_stride,
uint8_t* dst,
int dst_stride,
int w,
int h,
const InterpFilterParams fp,
const int subpel_x_q4,
int x_step_q4,
ConvolveParams* conv_params);
#define av1_convolve_horiz av1_convolve_horiz_c
void av1_convolve_rounding_c(const int32_t* src,
int src_stride,
uint8_t* dst,
int dst_stride,
int w,
int h,
int bits);
#define av1_convolve_rounding av1_convolve_rounding_c
void av1_convolve_vert_c(const uint8_t* src,
int src_stride,
uint8_t* dst,
int dst_stride,
int w,
int h,
const InterpFilterParams fp,
const int subpel_x_q4,
int x_step_q4,
ConvolveParams* conv_params);
#define av1_convolve_vert av1_convolve_vert_c
void av1_highbd_convolve8_c(const uint8_t* src,
ptrdiff_t src_stride,
uint8_t* dst,
ptrdiff_t dst_stride,
const int16_t* filter_x,
int x_step_q4,
const int16_t* filter_y,
int y_step_q4,
int w,
int h,
int bps);
#define av1_highbd_convolve8 av1_highbd_convolve8_c
void av1_highbd_convolve8_avg_c(const uint8_t* src,
ptrdiff_t src_stride,
uint8_t* dst,
ptrdiff_t dst_stride,
const int16_t* filter_x,
int x_step_q4,
const int16_t* filter_y,
int y_step_q4,
int w,
int h,
int bps);
#define av1_highbd_convolve8_avg av1_highbd_convolve8_avg_c
void av1_highbd_convolve8_avg_horiz_c(const uint8_t* src,
ptrdiff_t src_stride,
uint8_t* dst,
ptrdiff_t dst_stride,
const int16_t* filter_x,
int x_step_q4,
const int16_t* filter_y,
int y_step_q4,
int w,
int h,
int bps);
#define av1_highbd_convolve8_avg_horiz av1_highbd_convolve8_avg_horiz_c
void av1_highbd_convolve8_avg_vert_c(const uint8_t* src,
ptrdiff_t src_stride,
uint8_t* dst,
ptrdiff_t dst_stride,
const int16_t* filter_x,
int x_step_q4,
const int16_t* filter_y,
int y_step_q4,
int w,
int h,
int bps);
#define av1_highbd_convolve8_avg_vert av1_highbd_convolve8_avg_vert_c
void av1_highbd_convolve8_horiz_c(const uint8_t* src,
ptrdiff_t src_stride,
uint8_t* dst,
ptrdiff_t dst_stride,
const int16_t* filter_x,
int x_step_q4,
const int16_t* filter_y,
int y_step_q4,
int w,
int h,
int bps);
#define av1_highbd_convolve8_horiz av1_highbd_convolve8_horiz_c
void av1_highbd_convolve8_vert_c(const uint8_t* src,
ptrdiff_t src_stride,
uint8_t* dst,
ptrdiff_t dst_stride,
const int16_t* filter_x,
int x_step_q4,
const int16_t* filter_y,
int y_step_q4,
int w,
int h,
int bps);
#define av1_highbd_convolve8_vert av1_highbd_convolve8_vert_c
void av1_highbd_convolve_2d_c(const uint16_t* src,
int src_stride,
CONV_BUF_TYPE* dst,
int dst_stride,
int w,
int h,
InterpFilterParams* filter_params_x,
InterpFilterParams* filter_params_y,
const int subpel_x_q4,
const int subpel_y_q4,
ConvolveParams* conv_params,
int bd);
#define av1_highbd_convolve_2d av1_highbd_convolve_2d_c
void av1_highbd_convolve_2d_scale_c(const uint16_t* src,
int src_stride,
CONV_BUF_TYPE* dst,
int dst_stride,
int w,
int h,
InterpFilterParams* filter_params_x,
InterpFilterParams* filter_params_y,
const int subpel_x_q4,
const int x_step_qn,
const int subpel_y_q4,
const int y_step_qn,
ConvolveParams* conv_params,
int bd);
#define av1_highbd_convolve_2d_scale av1_highbd_convolve_2d_scale_c
void av1_highbd_convolve_avg_c(const uint8_t* src,
ptrdiff_t src_stride,
uint8_t* dst,
ptrdiff_t dst_stride,
const int16_t* filter_x,
int x_step_q4,
const int16_t* filter_y,
int y_step_q4,
int w,
int h,
int bps);
#define av1_highbd_convolve_avg av1_highbd_convolve_avg_c
void av1_highbd_convolve_copy_c(const uint8_t* src,
ptrdiff_t src_stride,
uint8_t* dst,
ptrdiff_t dst_stride,
const int16_t* filter_x,
int x_step_q4,
const int16_t* filter_y,
int y_step_q4,
int w,
int h,
int bps);
#define av1_highbd_convolve_copy av1_highbd_convolve_copy_c
void av1_highbd_convolve_horiz_c(const uint16_t* src,
int src_stride,
uint16_t* dst,
int dst_stride,
int w,
int h,
const InterpFilterParams fp,
const int subpel_x_q4,
int x_step_q4,
int avg,
int bd);
#define av1_highbd_convolve_horiz av1_highbd_convolve_horiz_c
void av1_highbd_convolve_init_c(void);
#define av1_highbd_convolve_init av1_highbd_convolve_init_c
void av1_highbd_convolve_rounding_c(const int32_t* src,
int src_stride,
uint8_t* dst,
int dst_stride,
int w,
int h,
int bits,
int bd);
#define av1_highbd_convolve_rounding av1_highbd_convolve_rounding_c
void av1_highbd_convolve_vert_c(const uint16_t* src,
int src_stride,
uint16_t* dst,
int dst_stride,
int w,
int h,
const InterpFilterParams fp,
const int subpel_x_q4,
int x_step_q4,
int avg,
int bd);
#define av1_highbd_convolve_vert av1_highbd_convolve_vert_c
void av1_highbd_iht16x16_256_add_c(const tran_low_t* input,
uint8_t* output,
int pitch,
const struct txfm_param* param);
#define av1_highbd_iht16x16_256_add av1_highbd_iht16x16_256_add_c
void av1_highbd_iht16x32_512_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_highbd_iht16x32_512_add av1_highbd_iht16x32_512_add_c
void av1_highbd_iht16x4_64_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_highbd_iht16x4_64_add av1_highbd_iht16x4_64_add_c
void av1_highbd_iht16x8_128_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_highbd_iht16x8_128_add av1_highbd_iht16x8_128_add_c
void av1_highbd_iht32x16_512_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_highbd_iht32x16_512_add av1_highbd_iht32x16_512_add_c
void av1_highbd_iht32x8_256_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_highbd_iht32x8_256_add av1_highbd_iht32x8_256_add_c
void av1_highbd_iht4x16_64_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_highbd_iht4x16_64_add av1_highbd_iht4x16_64_add_c
void av1_highbd_iht4x4_16_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_highbd_iht4x4_16_add av1_highbd_iht4x4_16_add_c
void av1_highbd_iht4x8_32_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_highbd_iht4x8_32_add av1_highbd_iht4x8_32_add_c
void av1_highbd_iht8x16_128_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_highbd_iht8x16_128_add av1_highbd_iht8x16_128_add_c
void av1_highbd_iht8x32_256_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_highbd_iht8x32_256_add av1_highbd_iht8x32_256_add_c
void av1_highbd_iht8x4_32_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_highbd_iht8x4_32_add av1_highbd_iht8x4_32_add_c
void av1_highbd_iht8x8_64_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_highbd_iht8x8_64_add av1_highbd_iht8x8_64_add_c
void av1_highbd_warp_affine_c(const int32_t* mat,
const uint16_t* ref,
int width,
int height,
int stride,
uint16_t* pred,
int p_col,
int p_row,
int p_width,
int p_height,
int p_stride,
int subsampling_x,
int subsampling_y,
int bd,
ConvolveParams* conv_params,
int16_t alpha,
int16_t beta,
int16_t gamma,
int16_t delta);
#define av1_highbd_warp_affine av1_highbd_warp_affine_c
void av1_iht16x16_256_add_c(const tran_low_t* input,
uint8_t* output,
int pitch,
const struct txfm_param* param);
#define av1_iht16x16_256_add av1_iht16x16_256_add_c
void av1_iht16x32_512_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_iht16x32_512_add av1_iht16x32_512_add_c
void av1_iht16x4_64_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_iht16x4_64_add av1_iht16x4_64_add_c
void av1_iht16x8_128_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_iht16x8_128_add av1_iht16x8_128_add_c
void av1_iht32x16_512_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_iht32x16_512_add av1_iht32x16_512_add_c
void av1_iht32x32_1024_add_c(const tran_low_t* input,
uint8_t* output,
int pitch,
const struct txfm_param* param);
#define av1_iht32x32_1024_add av1_iht32x32_1024_add_c
void av1_iht32x8_256_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_iht32x8_256_add av1_iht32x8_256_add_c
void av1_iht4x16_64_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_iht4x16_64_add av1_iht4x16_64_add_c
void av1_iht4x4_16_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_iht4x4_16_add av1_iht4x4_16_add_c
void av1_iht4x8_32_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_iht4x8_32_add av1_iht4x8_32_add_c
void av1_iht8x16_128_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_iht8x16_128_add av1_iht8x16_128_add_c
void av1_iht8x32_256_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_iht8x32_256_add av1_iht8x32_256_add_c
void av1_iht8x4_32_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_iht8x4_32_add av1_iht8x4_32_add_c
void av1_iht8x8_64_add_c(const tran_low_t* input,
uint8_t* dest,
int dest_stride,
const struct txfm_param* param);
#define av1_iht8x8_64_add av1_iht8x8_64_add_c
void av1_inv_txfm2d_add_16x16_c(const int32_t* input,
uint16_t* output,
int stride,
int tx_type,
int bd);
#define av1_inv_txfm2d_add_16x16 av1_inv_txfm2d_add_16x16_c
void av1_inv_txfm2d_add_16x32_c(const int32_t* input,
uint16_t* output,
int stride,
int tx_type,
int bd);
#define av1_inv_txfm2d_add_16x32 av1_inv_txfm2d_add_16x32_c
void av1_inv_txfm2d_add_16x8_c(const int32_t* input,
uint16_t* output,
int stride,
int tx_type,
int bd);
#define av1_inv_txfm2d_add_16x8 av1_inv_txfm2d_add_16x8_c
void av1_inv_txfm2d_add_32x16_c(const int32_t* input,
uint16_t* output,
int stride,
int tx_type,
int bd);
#define av1_inv_txfm2d_add_32x16 av1_inv_txfm2d_add_32x16_c
void av1_inv_txfm2d_add_32x32_c(const int32_t* input,
uint16_t* output,
int stride,
int tx_type,
int bd);
#define av1_inv_txfm2d_add_32x32 av1_inv_txfm2d_add_32x32_c
void av1_inv_txfm2d_add_4x4_c(const int32_t* input,
uint16_t* output,
int stride,
int tx_type,
int bd);
#define av1_inv_txfm2d_add_4x4 av1_inv_txfm2d_add_4x4_c
void av1_inv_txfm2d_add_4x8_c(const int32_t* input,
uint16_t* output,
int stride,
int tx_type,
int bd);
#define av1_inv_txfm2d_add_4x8 av1_inv_txfm2d_add_4x8_c
void av1_inv_txfm2d_add_64x64_c(const int32_t* input,
uint16_t* output,
int stride,
int tx_type,
int bd);
#define av1_inv_txfm2d_add_64x64 av1_inv_txfm2d_add_64x64_c
void av1_inv_txfm2d_add_8x16_c(const int32_t* input,
uint16_t* output,
int stride,
int tx_type,
int bd);
#define av1_inv_txfm2d_add_8x16 av1_inv_txfm2d_add_8x16_c
void av1_inv_txfm2d_add_8x4_c(const int32_t* input,
uint16_t* output,
int stride,
int tx_type,
int bd);
#define av1_inv_txfm2d_add_8x4 av1_inv_txfm2d_add_8x4_c
void av1_inv_txfm2d_add_8x8_c(const int32_t* input,
uint16_t* output,
int stride,
int tx_type,
int bd);
#define av1_inv_txfm2d_add_8x8 av1_inv_txfm2d_add_8x8_c
void av1_lowbd_convolve_init_c(void);
#define av1_lowbd_convolve_init av1_lowbd_convolve_init_c
void av1_warp_affine_c(const int32_t* mat,
const uint8_t* ref,
int width,
int height,
int stride,
uint8_t* pred,
int p_col,
int p_row,
int p_width,
int p_height,
int p_stride,
int subsampling_x,
int subsampling_y,
ConvolveParams* conv_params,
int16_t alpha,
int16_t beta,
int16_t gamma,
int16_t delta);
#define av1_warp_affine av1_warp_affine_c
void cdef_direction_4x4_c(uint16_t* y,
int ystride,
const uint16_t* in,
int threshold,
int dir,
int damping);
#define cdef_direction_4x4 cdef_direction_4x4_c
void cdef_direction_8x8_c(uint16_t* y,
int ystride,
const uint16_t* in,
int threshold,
int dir,
int damping);
#define cdef_direction_8x8 cdef_direction_8x8_c
int cdef_find_dir_c(const uint16_t* img,
int stride,
int32_t* var,
int coeff_shift);
#define cdef_find_dir cdef_find_dir_c
void copy_4x4_16bit_to_16bit_c(uint16_t* dst,
int dstride,
const uint16_t* src,
int sstride);
#define copy_4x4_16bit_to_16bit copy_4x4_16bit_to_16bit_c
void copy_4x4_16bit_to_8bit_c(uint8_t* dst,
int dstride,
const uint16_t* src,
int sstride);
#define copy_4x4_16bit_to_8bit copy_4x4_16bit_to_8bit_c
void copy_8x8_16bit_to_16bit_c(uint16_t* dst,
int dstride,
const uint16_t* src,
int sstride);
#define copy_8x8_16bit_to_16bit copy_8x8_16bit_to_16bit_c
void copy_8x8_16bit_to_8bit_c(uint8_t* dst,
int dstride,
const uint16_t* src,
int sstride);
#define copy_8x8_16bit_to_8bit copy_8x8_16bit_to_8bit_c
void copy_rect8_16bit_to_16bit_c(uint16_t* dst,
int dstride,
const uint16_t* src,
int sstride,
int v,
int h);
#define copy_rect8_16bit_to_16bit copy_rect8_16bit_to_16bit_c
void copy_rect8_8bit_to_16bit_c(uint16_t* dst,
int dstride,
const uint8_t* src,
int sstride,
int v,
int h);
#define copy_rect8_8bit_to_16bit copy_rect8_8bit_to_16bit_c
void av1_rtcd(void);
#include "aom_config.h"
#ifdef RTCD_C
static void setup_rtcd_internal(void) {}
#endif
#ifdef __cplusplus
} // extern "C"
#endif
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment