ref: 98726d538bd046b19b21233d2d51f8eaf7a5efef
parent: 656f9c41260c376a6e34e6fef6d586f8ebeae325
parent: 9a56a5ea1804f8abc9859ef8ff9d7e50326dcb8d
author: James Zern <[email protected]>
date: Fri May 13 13:56:41 EDT 2016
Merge "convolve_test: Fix high bit depth IOC runtime errors."
--- a/test/convolve_test.cc
+++ b/test/convolve_test.cc
@@ -231,7 +231,8 @@
* and filter_max_width = 16
*/
uint16_t intermediate_buffer[71 * kMaxDimension];
- const int intermediate_next_stride = 1 - intermediate_height * output_width;
+ const int intermediate_next_stride =
+ 1 - static_cast<int>(intermediate_height * output_width);
// Horizontal pass (src -> transposed intermediate).
{