Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1 | /* |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3 | * |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 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. |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <assert.h> |
| 13 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 14 | #include "./aom_dsp_rtcd.h" |
| 15 | #include "aom_dsp/aom_dsp_common.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 16 | #include "aom_ports/mem.h" |
| 17 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 18 | void aom_convolve8_neon(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 19 | ptrdiff_t dst_stride, const int16_t *filter_x, |
| 20 | int x_step_q4, const int16_t *filter_y, int y_step_q4, |
| 21 | int w, int h) { |
| 22 | /* Given our constraints: w <= 64, h <= 64, taps == 8 we can reduce the |
| 23 | * maximum buffer size to 64 * 64 + 7 (+ 1 to make it divisible by 4). |
| 24 | */ |
| 25 | DECLARE_ALIGNED(8, uint8_t, temp[64 * 72]); |
| 26 | |
| 27 | // Account for the vertical phase needing 3 lines prior and 4 lines post |
| 28 | int intermediate_height = h + 7; |
| 29 | |
| 30 | assert(y_step_q4 == 16); |
| 31 | assert(x_step_q4 == 16); |
| 32 | |
| 33 | /* Filter starting 3 lines back. The neon implementation will ignore the |
| 34 | * given height and filter a multiple of 4 lines. Since this goes in to |
| 35 | * the temp buffer which has lots of extra room and is subsequently discarded |
| 36 | * this is safe if somewhat less than ideal. |
| 37 | */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 38 | aom_convolve8_horiz_neon(src - src_stride * 3, src_stride, temp, 64, filter_x, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 39 | x_step_q4, filter_y, y_step_q4, w, |
| 40 | intermediate_height); |
| 41 | |
| 42 | /* Step into the temp buffer 3 lines to get the actual frame data */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 43 | aom_convolve8_vert_neon(temp + 64 * 3, 64, dst, dst_stride, filter_x, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 44 | x_step_q4, filter_y, y_step_q4, w, h); |
| 45 | } |