Ravi Chaudhary | be4dd10 | 2018-03-07 09:19:17 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018, Alliance for Open Media. All rights reserved |
| 3 | * |
| 4 | * This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | * was not distributed with this source code in the LICENSE file, you can |
| 7 | * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | * Media Patent License 1.0 was not distributed with this source code in the |
| 9 | * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
| 10 | */ |
| 11 | |
| 12 | #ifndef AOM_DSP_X86_CONVOLVE_SSE2_H_ |
| 13 | #define AOM_DSP_X86_CONVOLVE_SSE2_H_ |
| 14 | |
| 15 | static INLINE void prepare_coeffs(const InterpFilterParams *const filter_params, |
| 16 | const int subpel_q4, |
| 17 | __m128i *const coeffs /* [4] */) { |
| 18 | const int16_t *filter = av1_get_interp_filter_subpel_kernel( |
| 19 | *filter_params, subpel_q4 & SUBPEL_MASK); |
| 20 | const __m128i coeff = _mm_loadu_si128((__m128i *)filter); |
| 21 | |
| 22 | // coeffs 0 1 0 1 0 1 0 1 |
| 23 | coeffs[0] = _mm_shuffle_epi32(coeff, 0x00); |
| 24 | // coeffs 2 3 2 3 2 3 2 3 |
| 25 | coeffs[1] = _mm_shuffle_epi32(coeff, 0x55); |
| 26 | // coeffs 4 5 4 5 4 5 4 5 |
| 27 | coeffs[2] = _mm_shuffle_epi32(coeff, 0xaa); |
| 28 | // coeffs 6 7 6 7 6 7 6 7 |
| 29 | coeffs[3] = _mm_shuffle_epi32(coeff, 0xff); |
| 30 | } |
| 31 | |
| 32 | static INLINE __m128i convolve(const __m128i *const s, |
| 33 | const __m128i *const coeffs) { |
| 34 | const __m128i res_0 = _mm_madd_epi16(s[0], coeffs[0]); |
| 35 | const __m128i res_1 = _mm_madd_epi16(s[1], coeffs[1]); |
| 36 | const __m128i res_2 = _mm_madd_epi16(s[2], coeffs[2]); |
| 37 | const __m128i res_3 = _mm_madd_epi16(s[3], coeffs[3]); |
| 38 | |
| 39 | const __m128i res = |
| 40 | _mm_add_epi32(_mm_add_epi32(res_0, res_1), _mm_add_epi32(res_2, res_3)); |
| 41 | |
| 42 | return res; |
| 43 | } |
| 44 | |
| 45 | #endif |