diff options
Diffstat (limited to 'third_party/aom/av1/av1_cx.mk')
-rw-r--r-- | third_party/aom/av1/av1_cx.mk | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/third_party/aom/av1/av1_cx.mk b/third_party/aom/av1/av1_cx.mk index 5c8c9b8f4..13f297403 100644 --- a/third_party/aom/av1/av1_cx.mk +++ b/third_party/aom/av1/av1_cx.mk @@ -63,6 +63,7 @@ AV1_CX_SRCS-yes += encoder/lookahead.c AV1_CX_SRCS-yes += encoder/lookahead.h AV1_CX_SRCS-yes += encoder/mcomp.h AV1_CX_SRCS-yes += encoder/encoder.h +AV1_CX_SRCS-yes += encoder/random.h AV1_CX_SRCS-yes += encoder/ratectrl.h ifeq ($(CONFIG_XIPHRC),yes) AV1_CX_SRCS-yes += encoder/ratectrl_xiph.h @@ -73,10 +74,9 @@ AV1_CX_SRCS-yes += encoder/tokenize.h AV1_CX_SRCS-yes += encoder/treewriter.h AV1_CX_SRCS-yes += encoder/mcomp.c AV1_CX_SRCS-yes += encoder/encoder.c -ifeq ($(CONFIG_PALETTE),yes) +AV1_CX_SRCS-yes += encoder/k_means_template.h AV1_CX_SRCS-yes += encoder/palette.h AV1_CX_SRCS-yes += encoder/palette.c -endif AV1_CX_SRCS-yes += encoder/picklpf.c AV1_CX_SRCS-yes += encoder/picklpf.h AV1_CX_SRCS-$(CONFIG_LOOP_RESTORATION) += encoder/pickrst.c @@ -107,6 +107,14 @@ AV1_CX_SRCS-yes += encoder/temporal_filter.c AV1_CX_SRCS-yes += encoder/temporal_filter.h AV1_CX_SRCS-yes += encoder/mbgraph.c AV1_CX_SRCS-yes += encoder/mbgraph.h +AV1_CX_SRCS-yes += encoder/hash.c +AV1_CX_SRCS-yes += encoder/hash.h +ifeq ($(CONFIG_HASH_ME),yes) +AV1_CX_SRCS-yes += ../third_party/vector/vector.h +AV1_CX_SRCS-yes += ../third_party/vector/vector.c +AV1_CX_SRCS-yes += encoder/hash_motion.c +AV1_CX_SRCS-yes += encoder/hash_motion.h +endif ifeq ($(CONFIG_CDEF),yes) AV1_CX_SRCS-yes += encoder/pickcdef.c endif @@ -138,22 +146,18 @@ AV1_CX_SRCS-$(HAVE_SSSE3) += encoder/x86/av1_quantize_ssse3_x86_64.asm endif AV1_CX_SRCS-$(HAVE_SSE2) += encoder/x86/dct_intrin_sse2.c -AV1_CX_SRCS-$(HAVE_SSSE3) += encoder/x86/dct_ssse3.c AV1_CX_SRCS-$(HAVE_AVX2) += encoder/x86/hybrid_fwd_txfm_avx2.c AV1_CX_SRCS-$(HAVE_SSE4_1) += encoder/x86/av1_highbd_quantize_sse4.c AV1_CX_SRCS-$(HAVE_SSE4_1) += encoder/x86/highbd_fwd_txfm_sse4.c -ifeq ($(CONFIG_EXT_INTER),yes) AV1_CX_SRCS-yes += encoder/wedge_utils.c AV1_CX_SRCS-$(HAVE_SSE2) += encoder/x86/wedge_utils_sse2.c -endif AV1_CX_SRCS-$(HAVE_AVX2) += encoder/x86/error_intrin_avx2.c ifneq ($(CONFIG_HIGHBITDEPTH),yes) -AV1_CX_SRCS-$(HAVE_NEON) += encoder/arm/neon/dct_neon.c AV1_CX_SRCS-$(HAVE_NEON) += encoder/arm/neon/error_neon.c endif AV1_CX_SRCS-$(HAVE_NEON) += encoder/arm/neon/quantize_neon.c |