shithub: libvpx

Download patch

ref: 8010d20b010251d59fff89c0a10f4baffd336579
parent: e6d61ce49d6c42d074e65c1254abfa9414f089c2
parent: 4d41adacaa8d9914fc45f37d27526335d02f43eb
author: Johann Koenig <johannkoenig@google.com>
date: Sun Dec 23 21:06:17 EST 2018

Merge "fwd_dct32x32 avx2: resolve missing declarations"

--- 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