]> granicus.if.org Git - libvpx/blob - vpx_dsp/arm/idct4x4_1_add_neon.c
Merge "Reapply 'Amend and improve VP8 multithreading implementation'"
[libvpx] / vpx_dsp / arm / idct4x4_1_add_neon.c
1 /*
2  *  Copyright (c) 2014 The WebM project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10
11 #include <arm_neon.h>
12 #include <assert.h>
13
14 #include "./vpx_dsp_rtcd.h"
15 #include "vpx_dsp/inv_txfm.h"
16
17 void vpx_idct4x4_1_add_neon(const tran_low_t *input, uint8_t *dest,
18                             int stride) {
19   int i;
20   const int16_t out0 = dct_const_round_shift((int16_t)input[0] * cospi_16_64);
21   const int16_t out1 = dct_const_round_shift(out0 * cospi_16_64);
22   const int16_t a1 = ROUND_POWER_OF_TWO(out1, 4);
23   const int16x8_t dc = vdupq_n_s16(a1);
24   uint32x2_t d = vdup_n_u32(0);
25   uint16x8_t a;
26   uint8x8_t b;
27
28   assert(!((intptr_t)dest % sizeof(uint32_t)));
29   assert(!(stride % sizeof(uint32_t)));
30
31   for (i = 0; i < 2; i++) {
32     d = vld1_lane_u32((const uint32_t *)dest, d, 0);
33     d = vld1_lane_u32((const uint32_t *)(dest + stride), d, 1);
34     a = vaddw_u8(vreinterpretq_u16_s16(dc), vreinterpret_u8_u32(d));
35     b = vqmovun_s16(vreinterpretq_s16_u16(a));
36     vst1_lane_u32((uint32_t *)dest, vreinterpret_u32_u8(b), 0);
37     dest += stride;
38     vst1_lane_u32((uint32_t *)dest, vreinterpret_u32_u8(b), 1);
39     dest += stride;
40   }
41 }