Add warped motion config flag

Change-Id: I4b5e1251dc215073384e168a6f845ae059d6c4f2
This commit is contained in:
Debargha Mukherjee 2016-06-09 02:22:48 -07:00
parent f59bf76eef
commit bcf4e0aba8
3 changed files with 5 additions and 2 deletions

1
configure vendored
View File

@ -288,6 +288,7 @@ EXPERIMENT_LIST="
ext_partition_types
ext_tile
obmc
warped_motion
entropy
bidir_pred
"

View File

@ -88,6 +88,10 @@ ifeq ($(CONFIG_VP9_POSTPROC),yes)
VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/mfqe_sse2.asm
VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/postproc_sse2.asm
endif
ifeq (yes,$(filter yes,$(CONFIG_GLOBAL_MOTION) $(CONFIG_WARPED_MOTION)))
VP10_COMMON_SRCS-yes += common/warped_motion.h
VP10_COMMON_SRCS-yes += common/warped_motion.c
endif
ifneq ($(CONFIG_VP9_HIGHBITDEPTH),yes)
VP10_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/itrans4_dspr2.c

View File

@ -96,8 +96,6 @@ VP10_CX_SRCS-yes += encoder/temporal_filter.c
VP10_CX_SRCS-yes += encoder/temporal_filter.h
VP10_CX_SRCS-yes += encoder/mbgraph.c
VP10_CX_SRCS-yes += encoder/mbgraph.h
VP10_CX_SRCS-$(CONFIG_GLOBAL_MOTION) += common/warped_motion.h
VP10_CX_SRCS-$(CONFIG_GLOBAL_MOTION) += common/warped_motion.c
VP10_CX_SRCS-$(HAVE_SSE2) += encoder/x86/temporal_filter_apply_sse2.asm
VP10_CX_SRCS-$(HAVE_SSE2) += encoder/x86/quantize_sse2.c