vpx/vpx_dsp/arm/highbd_vpx_convolve_copy_neon.c
Linfeng Zhang bf8a49abbd Clean CONVERT_TO_BYTEPTR/SHORTPTR in convolve
Replace by CAST_TO_BYTEPTR/SHORTPTR.
The rule is: if a short ptr is casted to a byte ptr, any offset
operation on the byte ptr must be doubled. We do this by casting to
short ptr first, adding offset, then casting back to byte ptr.

BUG=webm:1388

Change-Id: I9e18a73ba45ddae58fc9dae470c0ff34951fe248
2017-04-19 12:13:49 -07:00

104 lines
3.0 KiB
C

/*
* Copyright (c) 2016 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 <arm_neon.h>
#include "./vpx_dsp_rtcd.h"
#include "vpx/vpx_integer.h"
void vpx_highbd_convolve_copy_neon(const uint8_t *src8, ptrdiff_t src_stride,
uint8_t *dst8, ptrdiff_t dst_stride,
const int16_t *filter_x, int filter_x_stride,
const int16_t *filter_y, int filter_y_stride,
int w, int h, int bd) {
const uint16_t *src = CAST_TO_SHORTPTR(src8);
uint16_t *dst = CAST_TO_SHORTPTR(dst8);
(void)filter_x;
(void)filter_x_stride;
(void)filter_y;
(void)filter_y_stride;
(void)bd;
if (w < 8) { // copy4
do {
vst1_u16(dst, vld1_u16(src));
src += src_stride;
dst += dst_stride;
vst1_u16(dst, vld1_u16(src));
src += src_stride;
dst += dst_stride;
h -= 2;
} while (h > 0);
} else if (w == 8) { // copy8
do {
vst1q_u16(dst, vld1q_u16(src));
src += src_stride;
dst += dst_stride;
vst1q_u16(dst, vld1q_u16(src));
src += src_stride;
dst += dst_stride;
h -= 2;
} while (h > 0);
} else if (w < 32) { // copy16
do {
vst2q_u16(dst, vld2q_u16(src));
src += src_stride;
dst += dst_stride;
vst2q_u16(dst, vld2q_u16(src));
src += src_stride;
dst += dst_stride;
vst2q_u16(dst, vld2q_u16(src));
src += src_stride;
dst += dst_stride;
vst2q_u16(dst, vld2q_u16(src));
src += src_stride;
dst += dst_stride;
h -= 4;
} while (h > 0);
} else if (w == 32) { // copy32
do {
vst4q_u16(dst, vld4q_u16(src));
src += src_stride;
dst += dst_stride;
vst4q_u16(dst, vld4q_u16(src));
src += src_stride;
dst += dst_stride;
vst4q_u16(dst, vld4q_u16(src));
src += src_stride;
dst += dst_stride;
vst4q_u16(dst, vld4q_u16(src));
src += src_stride;
dst += dst_stride;
h -= 4;
} while (h > 0);
} else { // copy64
do {
vst4q_u16(dst, vld4q_u16(src));
vst4q_u16(dst + 32, vld4q_u16(src + 32));
src += src_stride;
dst += dst_stride;
vst4q_u16(dst, vld4q_u16(src));
vst4q_u16(dst + 32, vld4q_u16(src + 32));
src += src_stride;
dst += dst_stride;
vst4q_u16(dst, vld4q_u16(src));
vst4q_u16(dst + 32, vld4q_u16(src + 32));
src += src_stride;
dst += dst_stride;
vst4q_u16(dst, vld4q_u16(src));
vst4q_u16(dst + 32, vld4q_u16(src + 32));
src += src_stride;
dst += dst_stride;
h -= 4;
} while (h > 0);
}
}