From: Johann Date: Fri, 21 Dec 2018 20:44:49 +0000 (-0800) Subject: fwd_dct32x32 avx2: resolve missing declarations X-Git-Tag: v1.8.0~21^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4d41adacaa8d9914fc45f37d27526335d02f43eb;p=libvpx fwd_dct32x32 avx2: resolve missing declarations BUG=webm:1584 Change-Id: Iaba854952534a95e710a985acfcab46e093872c2 --- 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