Fix asserts in high_convolve

Change-Id: I89fb190ef22d8edf7622dea5ef1c0e47faa95d23
This commit is contained in:
Deb Mukherjee
2014-09-15 11:33:27 -07:00
parent 75c8fc2412
commit 53ef87e0c7

View File

@@ -405,8 +405,8 @@ static void high_convolve(const uint8_t *src, ptrdiff_t src_stride,
assert(w <= 64);
assert(h <= 64);
assert(y_step_q4 <= 80);
assert(x_step_q4 <= 80);
assert(y_step_q4 <= 32);
assert(x_step_q4 <= 32);
if (intermediate_height < h)
intermediate_height = h;