From 4d41adacaa8d9914fc45f37d27526335d02f43eb Mon Sep 17 00:00:00 2001 From: Johann Date: Fri, 21 Dec 2018 12:44:49 -0800 Subject: [PATCH] fwd_dct32x32 avx2: resolve missing declarations BUG=webm:1584 Change-Id: Iaba854952534a95e710a985acfcab46e093872c2 --- vpx_dsp/x86/fwd_txfm_avx2.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vpx_dsp/x86/fwd_txfm_avx2.c b/vpx_dsp/x86/fwd_txfm_avx2.c index 21f11f0c3..a2ed420e3 100644 --- a/vpx_dsp/x86/fwd_txfm_avx2.c +++ b/vpx_dsp/x86/fwd_txfm_avx2.c @@ -9,7 +9,9 @@ */ #include "./vpx_config.h" +#include "./vpx_dsp_rtcd.h" +#if !CONFIG_VP9_HIGHBITDEPTH #define FDCT32x32_2D_AVX2 vpx_fdct32x32_rd_avx2 #define FDCT32x32_HIGH_PRECISION 0 #include "vpx_dsp/x86/fwd_dct32x32_impl_avx2.h" @@ -21,3 +23,4 @@ #include "vpx_dsp/x86/fwd_dct32x32_impl_avx2.h" // NOLINT #undef FDCT32x32_2D_AVX2 #undef FDCT32x32_HIGH_PRECISION +#endif // !CONFIG_VP9_HIGHBITDEPTH -- 2.40.0