Skip to content

Commit

Permalink
[common] rect: fix avx unaligned bytes copy
Browse files Browse the repository at this point in the history
  • Loading branch information
D0ot committed Aug 29, 2024
1 parent 3ea37b8 commit a90944f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/rects.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ static void rectCopyUnaligned_avx(
for (int i = ystart; i < yend; ++i)
{
// copy the unaligned bytes
for(int col = align; col >= 0; --col)
for(int col = align - 1; col >= 0; --col)
dst[col] = src[col];

const __m256i *restrict s = (__m256i*)(src + align);
Expand Down

0 comments on commit a90944f

Please sign in to comment.