From: James Zern Date: Tue, 4 May 2021 19:10:21 +0000 (-0700) Subject: test.mk: enable vp9_denoiser_test w/NEON X-Git-Tag: v1.11.0-rc1~50 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=abc7105acdfbbeaeecf41c675148683a1cb8b4f7;p=libvpx test.mk: enable vp9_denoiser_test w/NEON this file uses GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST so it's safe to enable unconditionally. the filter check fell out of sync with the code, there's a sse2 and neon implementation for the filter. Change-Id: I2a3336ccef3fb524ca5d9b8f88279240c9a276aa --- diff --git a/test/test.mk b/test/test.mk index 04902382d..b0319fb0d 100644 --- a/test/test.mk +++ b/test/test.mk @@ -193,10 +193,8 @@ LIBVPX_TEST_SRCS-$(CONFIG_NON_GREEDY_MV) += non_greedy_mv_test.cc endif ifeq ($(CONFIG_VP9_ENCODER)$(CONFIG_VP9_TEMPORAL_DENOISING),yesyes) -ifneq (, $(filter yes, $(HAVE_SSE2) $(HAVE_AVX2))) LIBVPX_TEST_SRCS-yes += vp9_denoiser_test.cc endif -endif LIBVPX_TEST_SRCS-$(CONFIG_VP9_ENCODER) += vp9_arf_freq_test.cc ifeq ($(CONFIG_VP9_ENCODER),yes)