summaryrefslogtreecommitdiff
path: root/vp9/encoder/arm/vp9_variance_arm.h
blob: 144feea3d40c065683543adf8790ce75f50cbfa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
 *  Copyright (c) 2010 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.
 */


#ifndef VP9_ENCODER_ARM_VP9_VARIANCE_ARM_H_
#define VP9_ENCODER_ARM_VP9_VARIANCE_ARM_H_

#if HAVE_ARMV6

extern prototype_sad(vp9_sad16x16_armv6);
extern prototype_variance(vp9_variance16x16_armv6);
extern prototype_variance(vp9_variance8x8_armv6);
extern prototype_subpixvariance(vp9_sub_pixel_variance16x16_armv6);
extern prototype_subpixvariance(vp9_sub_pixel_variance8x8_armv6);
extern prototype_variance(vp9_variance_halfpixvar16x16_h_armv6);
extern prototype_variance(vp9_variance_halfpixvar16x16_v_armv6);
extern prototype_variance(vp9_variance_halfpixvar16x16_hv_armv6);
extern prototype_variance(vp9_mse16x16_armv6);

#if !CONFIG_RUNTIME_CPU_DETECT

#undef  vp9_variance_sad16x16
#define vp9_variance_sad16x16 vp9_sad16x16_armv6

#undef  vp9_variance_subpixvar16x16
#define vp9_variance_subpixvar16x16 vp9_sub_pixel_variance16x16_armv6

#undef  vp9_variance_subpixvar8x8
#define vp9_variance_subpixvar8x8 vp9_sub_pixel_variance8x8_armv6

#undef  vp9_variance_var16x16
#define vp9_variance_var16x16 vp9_variance16x16_armv6

#undef  vp9_variance_mse16x16
#define vp9_variance_mse16x16 vp9_mse16x16_armv6

#undef  vp9_variance_var8x8
#define vp9_variance_var8x8 vp9_variance8x8_armv6

#undef  vp9_variance_halfpixvar16x16_h
#define vp9_variance_halfpixvar16x16_h vp9_variance_halfpixvar16x16_h_armv6

#undef  vp9_variance_halfpixvar16x16_v
#define vp9_variance_halfpixvar16x16_v vp9_variance_halfpixvar16x16_v_armv6

#undef  vp9_variance_halfpixvar16x16_hv
#define vp9_variance_halfpixvar16x16_hv vp9_variance_halfpixvar16x16_hv_armv6

#endif /* !CONFIG_RUNTIME_CPU_DETECT */

#endif /* HAVE_ARMV6 */


#if HAVE_ARMV7
extern prototype_sad(vp9_sad4x4_neon);
extern prototype_sad(vp9_sad8x8_neon);
extern prototype_sad(vp9_sad8x16_neon);
extern prototype_sad(vp9_sad16x8_neon);
extern prototype_sad(vp9_sad16x16_neon);

extern prototype_variance(vp9_variance8x8_neon);
extern prototype_variance(vp9_variance8x16_neon);
extern prototype_variance(vp9_variance16x8_neon);
extern prototype_variance(vp9_variance16x16_neon);

extern prototype_subpixvariance(vp9_sub_pixel_variance8x8_neon);
extern prototype_subpixvariance(vp9_sub_pixel_variance16x16_neon);
extern prototype_subpixvariance(vp9_sub_pixel_variance16x16_neon_func);
extern prototype_variance(vp9_variance_halfpixvar16x16_h_neon);
extern prototype_variance(vp9_variance_halfpixvar16x16_v_neon);
extern prototype_variance(vp9_variance_halfpixvar16x16_hv_neon);

extern prototype_variance(vp9_mse16x16_neon);

#if !CONFIG_RUNTIME_CPU_DETECT
#undef  vp9_variance_sad4x4
#define vp9_variance_sad4x4 vp9_sad4x4_neon

#undef  vp9_variance_sad8x8
#define vp9_variance_sad8x8 vp9_sad8x8_neon

#undef  vp9_variance_sad8x16
#define vp9_variance_sad8x16 vp9_sad8x16_neon

#undef  vp9_variance_sad16x8
#define vp9_variance_sad16x8 vp9_sad16x8_neon

#undef  vp9_variance_sad16x16
#define vp9_variance_sad16x16 vp9_sad16x16_neon

#undef  vp9_variance_var8x8
#define vp9_variance_var8x8 vp9_variance8x8_neon

#undef  vp9_variance_var8x16
#define vp9_variance_var8x16 vp9_variance8x16_neon

#undef  vp9_variance_var16x8
#define vp9_variance_var16x8 vp9_variance16x8_neon

#undef  vp9_variance_var16x16
#define vp9_variance_var16x16 vp9_variance16x16_neon

#undef  vp9_variance_subpixvar8x8
#define vp9_variance_subpixvar8x8 vp9_sub_pixel_variance8x8_neon

#undef  vp9_variance_subpixvar16x16
#define vp9_variance_subpixvar16x16 vp9_sub_pixel_variance16x16_neon

#undef  vp9_variance_halfpixvar16x16_h
#define vp9_variance_halfpixvar16x16_h vp9_variance_halfpixvar16x16_h_neon

#undef  vp9_variance_halfpixvar16x16_v
#define vp9_variance_halfpixvar16x16_v vp9_variance_halfpixvar16x16_v_neon

#undef  vp9_variance_halfpixvar16x16_hv
#define vp9_variance_halfpixvar16x16_hv vp9_variance_halfpixvar16x16_hv_neon

#undef  vp9_variance_mse16x16
#define vp9_variance_mse16x16 vp9_mse16x16_neon

#endif

#endif

#endif