Closed GoogleCodeExporter closed 9 years ago
r341 disables this test. But the root cause of failure is not fixed.
Original comment by fbarch...@google.com
on 10 Sep 2012 at 8:53
In planar_test.cc you're passing interpolate_pixels[256][4] to
ARGBInterpolate(), which does the following:
memcpy(last16, dst_argb + width * 4, 16); // Save last 16 beyond end.
It looks like |dst_argb| always has the size of |width|*4 (at least it has in
this case), so this memcpy isn't legitimate.
Original comment by gli...@chromium.org
on 13 Sep 2012 at 9:36
r349 fixes this - interpolate unittest did not allocate the required pad bytes
in the destination.
Original comment by fbarch...@google.com
on 13 Sep 2012 at 11:44
Original issue reported on code.google.com by
fbarch...@google.com
on 10 Sep 2012 at 7:24