Skip to content
Snippets Groups Projects
Commit 0548c761 authored by Frank Bossen's avatar Frank Bossen
Browse files

Fix #481 loosen restriction on processing width

Note that lines 450-457 should already support the loosened
restriction
parent 10e8a2c6
No related branches found
No related tags found
No related merge requests found
......@@ -303,7 +303,7 @@ static void simdFilter5x5Blk(AlfClassifier **classifier, const PelUnitBuf &recDs
CHECK(blk.y % STEP_Y, "Wrong startHeight in filtering");
CHECK(blk.x % STEP_X, "Wrong startWidth in filtering");
CHECK(height % STEP_Y, "Wrong endHeight in filtering");
CHECK(width % STEP_X, "Wrong endWidth in filtering");
CHECK(width % 4, "Wrong endWidth in filtering");
const Pel *src = srcBuffer.buf + blk.y * srcStride + blk.x;
Pel * dst = dstBuffer.buf + blkDst.y * dstStride + blkDst.x;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment