Skip to content

Commit

Permalink
A warning fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
aous72 committed Nov 5, 2024
1 parent 3dc2465 commit 4339c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/transform/ojph_colour_sse2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ namespace ojph {
(g->flags & line_buf::LFT_32BIT) &&
(b->flags & line_buf::LFT_32BIT));
__m128i v2 = _mm_set1_epi64x(1ULL << (63 - 2));
__m128i low_bits = _mm_set_epi64x(0, ULLONG_MAX);
__m128i low_bits = _mm_set_epi64x(0, (si64)ULLONG_MAX);
const si64 *yp = y->i64, *cbp = cb->i64, *crp = cr->i64;
si32 *rp = r->i32, *gp = g->i32, *bp = b->i32;
for (int i = (repeat + 3) >> 2; i > 0; --i)
Expand Down

0 comments on commit 4339c8f

Please sign in to comment.