[x265] [PATCH] pixel: replace sse_sp16 vector class with intrinsic
yuvaraj at multicorewareinc.com
yuvaraj at multicorewareinc.com
Thu Oct 10 08:36:12 CEST 2013
# HG changeset patch
# User Yuvaraj Venkatesh <yuvaraj at multicorewareinc.com>
# Date 1381386925 -19800
# Thu Oct 10 12:05:25 2013 +0530
# Node ID 713a38eff96fcd35d99fa8a4d9c2941100bd4adf
# Parent a5a07d890f4e01841fc99354c1231f42611a5ea0
pixel: replace sse_sp16 vector class with intrinsic
diff -r a5a07d890f4e -r 713a38eff96f source/common/vec/sse.inc
--- a/source/common/vec/sse.inc Thu Oct 10 11:57:14 2013 +0530
+++ b/source/common/vec/sse.inc Thu Oct 10 12:05:25 2013 +0530
@@ -372,29 +372,34 @@
template<int ly>
int sse_sp16(short* fenc, intptr_t strideFenc, pixel* fref, intptr_t strideFref)
{
- int rows = ly;
- Vec8s m1;
- Vec16uc n1;
+ __m128i sum0 = _mm_setzero_si128();
+ __m128i sum1 = _mm_setzero_si128();
- Vec8us diff_low(0), diff_high(0);
- Vec4i sum_low(0), sum_high(0);
- for (; rows != 0; rows--)
+ for(int i = 0; i < ly; i++)
{
- n1.load(fref);
- m1.load(fenc);
- diff_low = m1 - extend_low(n1);
- m1.load(fenc + 8);
- diff_high = m1 - extend_high(n1);
- diff_low = diff_low * diff_low;
- diff_high = diff_high * diff_high;
- sum_low += (extend_low(diff_low) + extend_low(diff_high));
- sum_high += (extend_high(diff_low) + extend_high(diff_high));
+ __m128i T00, T01, T02;
+ __m128i T10, T11, T12, T13;
+
+ T00 = _mm_loadu_si128((__m128i*)(fenc));
+ T01 = _mm_loadu_si128((__m128i*)(fref));
+ T02 = _mm_unpacklo_epi8(T01, _mm_setzero_si128());
+
+ SSE_SP8x1;
+
+ T00 = _mm_loadu_si128((__m128i*)(fenc + 8));
+ T02 = _mm_unpackhi_epi8(T01, _mm_setzero_si128());
+
+ SSE_SP8x1;
fenc += strideFenc;
fref += strideFref;
}
+ sum0 = _mm_add_epi32(sum0, sum1);
- return horizontal_add(sum_low) + horizontal_add(sum_high);
+ sum0 = _mm_hadd_epi32(sum0, _mm_setzero_si128());
+ sum0 = _mm_hadd_epi32(sum0, _mm_setzero_si128());
+
+ return _mm_cvtsi128_si32(sum0);
}
template<int ly>
More information about the x265-devel
mailing list