9ba2efd034
3.7% boost in decoder performance for the clip used. Change-Id: I74f28486a9352b472b36e21b5eaf30eff35e9199
51 lines
1.4 KiB
C
51 lines
1.4 KiB
C
/*
|
|
* Copyright (c) 2012 The WebM project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include <emmintrin.h> // SSE2
|
|
#include "./vpx_config.h"
|
|
#include "./vpx_rtcd.h"
|
|
|
|
|
|
#if CONFIG_NEWBESTREFMV
|
|
|
|
|
|
#if HAVE_SSE2
|
|
unsigned int vp8_sad16x3_sse2(
|
|
const unsigned char *src_ptr,
|
|
int src_stride,
|
|
const unsigned char *ref_ptr,
|
|
int ref_stride,
|
|
int max_sad) {
|
|
__m128i s0, s1, s2;
|
|
__m128i r0, r1, r2;
|
|
__m128i sad;
|
|
|
|
(void)max_sad;
|
|
|
|
s0 = _mm_loadu_si128((const __m128i *)(src_ptr + 0 * src_stride));
|
|
s1 = _mm_loadu_si128((const __m128i *)(src_ptr + 1 * src_stride));
|
|
s2 = _mm_loadu_si128((const __m128i *)(src_ptr + 2 * src_stride));
|
|
|
|
r0 = _mm_loadu_si128((const __m128i *)(ref_ptr + 0 * src_stride));
|
|
r1 = _mm_loadu_si128((const __m128i *)(ref_ptr + 1 * src_stride));
|
|
r2 = _mm_loadu_si128((const __m128i *)(ref_ptr + 2 * src_stride));
|
|
|
|
sad = _mm_sad_epu8(s0, r0);
|
|
sad = _mm_add_epi16(sad, _mm_sad_epu8(s1, r1));
|
|
sad = _mm_add_epi16(sad, _mm_sad_epu8(s2, r2));
|
|
sad = _mm_add_epi16(sad, _mm_srli_si128(sad, 8));
|
|
|
|
return _mm_cvtsi128_si32(sad);
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif // CONFIG_NEWBESTREFMV
|