We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33083a commit 34e3fc3Copy full SHA for 34e3fc3
src/core/transform/ojph_colour_avx2.cpp
@@ -86,7 +86,6 @@ namespace ojph {
86
{
87
const si32 *sp = src_line->i32 + src_line_offset;
88
si64 *dp = dst_line->i64 + dst_line_offset;
89
- __m256i zero = _mm256_setzero_si256();
90
__m256i sh = _mm256_set1_epi64x(shift);
91
for (int i = (width + 7) >> 3; i > 0; --i, sp+=8, dp+=8)
92
@@ -286,7 +285,6 @@ namespace ojph {
286
285
(r->flags & line_buf::LFT_32BIT) &&
287
(g->flags & line_buf::LFT_32BIT) &&
288
(b->flags & line_buf::LFT_32BIT));
289
290
__m256i v2 = _mm256_set1_epi64x(1ULL << (63 - 2));
291
const si32 *rp = r->i32, *gp = g->i32, *bp = b->i32;
292
si64 *yp = y->i64, *cbp = cb->i64, *crp = cr->i64;
0 commit comments