Merge "intrapred: protect functions w/CONFIG check x2"
diff --git a/vpx_dsp/intrapred.c b/vpx_dsp/intrapred.c
index d4f2d06..a0d1f41 100644
--- a/vpx_dsp/intrapred.c
+++ b/vpx_dsp/intrapred.c
@@ -521,6 +521,7 @@
}
}
+#if CONFIG_MISC_FIXES
static INLINE void highbd_d207e_predictor(uint16_t *dst, ptrdiff_t stride,
int bs, const uint16_t *above,
const uint16_t *left, int bd) {
@@ -537,6 +538,7 @@
dst += stride;
}
}
+#endif // CONFIG_MISC_FIXES
static INLINE void highbd_d63_predictor(uint16_t *dst, ptrdiff_t stride, int bs,
const uint16_t *above,
@@ -572,6 +574,7 @@
}
}
+#if CONFIG_MISC_FIXES
static INLINE void highbd_d45e_predictor(uint16_t *dst, ptrdiff_t stride,
int bs, const uint16_t *above,
const uint16_t *left, int bd) {
@@ -586,6 +589,7 @@
dst += stride;
}
}
+#endif // CONFIG_MISC_FIXES
static INLINE void highbd_d117_predictor(uint16_t *dst, ptrdiff_t stride,
int bs, const uint16_t *above,