OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "vpx_config.h" | 11 #include "vpx_config.h" |
12 #include "vpx_rtcd.h" | 12 #include "vp8_rtcd.h" |
13 #include "vp8/common/variance.h" | 13 #include "vp8/common/variance.h" |
14 #include "vp8/common/filter.h" | 14 #include "vp8/common/filter.h" |
15 | 15 |
16 #if HAVE_MEDIA | 16 #if HAVE_MEDIA |
17 #include "vp8/common/arm/bilinearfilter_arm.h" | 17 #include "vp8/common/arm/bilinearfilter_arm.h" |
18 | 18 |
19 unsigned int vp8_sub_pixel_variance8x8_armv6 | 19 unsigned int vp8_sub_pixel_variance8x8_armv6 |
20 ( | 20 ( |
21 const unsigned char *src_ptr, | 21 const unsigned char *src_ptr, |
22 int src_pixels_per_line, | 22 int src_pixels_per_line, |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 return vp8_variance_halfpixvar16x16_h_neon(src_ptr, src_pixels_per_line, dst
_ptr, dst_pixels_per_line, sse); | 123 return vp8_variance_halfpixvar16x16_h_neon(src_ptr, src_pixels_per_line, dst
_ptr, dst_pixels_per_line, sse); |
124 else if (xoffset == 0 && yoffset == 4) | 124 else if (xoffset == 0 && yoffset == 4) |
125 return vp8_variance_halfpixvar16x16_v_neon(src_ptr, src_pixels_per_line, dst
_ptr, dst_pixels_per_line, sse); | 125 return vp8_variance_halfpixvar16x16_v_neon(src_ptr, src_pixels_per_line, dst
_ptr, dst_pixels_per_line, sse); |
126 else if (xoffset == 4 && yoffset == 4) | 126 else if (xoffset == 4 && yoffset == 4) |
127 return vp8_variance_halfpixvar16x16_hv_neon(src_ptr, src_pixels_per_line, ds
t_ptr, dst_pixels_per_line, sse); | 127 return vp8_variance_halfpixvar16x16_hv_neon(src_ptr, src_pixels_per_line, ds
t_ptr, dst_pixels_per_line, sse); |
128 else | 128 else |
129 return vp8_sub_pixel_variance16x16_neon_func(src_ptr, src_pixels_per_line, x
offset, yoffset, dst_ptr, dst_pixels_per_line, sse); | 129 return vp8_sub_pixel_variance16x16_neon_func(src_ptr, src_pixels_per_line, x
offset, yoffset, dst_ptr, dst_pixels_per_line, sse); |
130 } | 130 } |
131 | 131 |
132 #endif | 132 #endif |
OLD | NEW |