Merge "convolve_test: Fix high bit depth IOC runtime errors."

This commit is contained in:
James Zern 2016-05-13 17:56:41 +00:00 committed by Gerrit Code Review
commit 98726d538b

View File

@ -231,7 +231,8 @@ void highbd_filter_block2d_8_c(const uint16_t *src_ptr,
* 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).
{