From 495282774eb033896044cabfb1f05ce59e66831d Mon Sep 17 00:00:00 2001 From: James Zern Date: Fri, 11 Jan 2019 16:36:45 -0800 Subject: convolve_test: Add missing init of HBD buffers this resolves some msan errors. the same change was done in libaom: 5ab58722c Add missing initializations of HBD buffers Change-Id: I8882af45b95c90ba43bf138c7d305a6c3b99e61c --- test/convolve_test.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test') diff --git a/test/convolve_test.cc b/test/convolve_test.cc index 02cc7ff5c..cef602eec 100644 --- a/test/convolve_test.cc +++ b/test/convolve_test.cc @@ -416,8 +416,14 @@ class ConvolveTest : public ::testing::TestWithParam { for (int i = 0; i < kOutputBufferSize; ++i) { if (IsIndexInBorder(i)) { output_[i] = 255; +#if CONFIG_VP9_HIGHBITDEPTH + output16_[i] = mask_; +#endif } else { output_[i] = 0; +#if CONFIG_VP9_HIGHBITDEPTH + output16_[i] = 0; +#endif } } -- cgit v1.2.3