Commit 6059a687 authored by Ilya Lavrenov's avatar Ilya Lavrenov

fixed bug with s1 calculating

parent 4ccb5a30
......@@ -1359,7 +1359,7 @@ public:
int dx = 0;
const ushort* S0 = (const ushort*)S;
const ushort* S1 = (const ushort*)(S + step);
const ushort* S1 = (const ushort*)(S + step/2);
__m128i masklow = _mm_set1_epi32(0x0000ffff);
__m128i zero = _mm_setzero_si128();
__m128i delta2 = _mm_set1_epi32(2);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment