Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: third_party/libvpx_new/source/config/linux/arm/vpx_dsp_rtcd.h

Issue 1734613003: Move libvpx_new to libvpx (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #ifndef VPX_DSP_RTCD_H_
2 #define VPX_DSP_RTCD_H_
3
4 #ifdef RTCD_C
5 #define RTCD_EXTERN
6 #else
7 #define RTCD_EXTERN extern
8 #endif
9
10 /*
11 * DSP
12 */
13
14 #include "vpx/vpx_integer.h"
15 #include "vpx_dsp/vpx_dsp_common.h"
16
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 unsigned int vpx_avg_4x4_c(const uint8_t *, int p);
23 #define vpx_avg_4x4 vpx_avg_4x4_c
24
25 unsigned int vpx_avg_8x8_c(const uint8_t *, int p);
26 #define vpx_avg_8x8 vpx_avg_8x8_c
27
28 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
29 #define vpx_comp_avg_pred vpx_comp_avg_pred_c
30
31 void vpx_convolve8_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptr diff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter _y, int y_step_q4, int w, int h);
32 #define vpx_convolve8 vpx_convolve8_c
33
34 void vpx_convolve8_avg_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fi lter_y, int y_step_q4, int w, int h);
35 #define vpx_convolve8_avg vpx_convolve8_avg_c
36
37 void vpx_convolve8_avg_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16 _t *filter_y, int y_step_q4, int w, int h);
38 #define vpx_convolve8_avg_horiz vpx_convolve8_avg_horiz_c
39
40 void vpx_convolve8_avg_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_ t *filter_y, int y_step_q4, int w, int h);
41 #define vpx_convolve8_avg_vert vpx_convolve8_avg_vert_c
42
43 void vpx_convolve8_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *ds t, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t * filter_y, int y_step_q4, int w, int h);
44 #define vpx_convolve8_horiz vpx_convolve8_horiz_c
45
46 void vpx_convolve8_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst , ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *f ilter_y, int y_step_q4, int w, int h);
47 #define vpx_convolve8_vert vpx_convolve8_vert_c
48
49 void vpx_convolve_avg_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fil ter_y, int y_step_q4, int w, int h);
50 #define vpx_convolve_avg vpx_convolve_avg_c
51
52 void vpx_convolve_copy_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fi lter_y, int y_step_q4, int w, int h);
53 #define vpx_convolve_copy vpx_convolve_copy_c
54
55 void vpx_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
56 #define vpx_d117_predictor_16x16 vpx_d117_predictor_16x16_c
57
58 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
59 #define vpx_d117_predictor_32x32 vpx_d117_predictor_32x32_c
60
61 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
62 #define vpx_d117_predictor_4x4 vpx_d117_predictor_4x4_c
63
64 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
65 #define vpx_d117_predictor_8x8 vpx_d117_predictor_8x8_c
66
67 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
68 #define vpx_d135_predictor_16x16 vpx_d135_predictor_16x16_c
69
70 void vpx_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
71 #define vpx_d135_predictor_32x32 vpx_d135_predictor_32x32_c
72
73 void vpx_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
74 #define vpx_d135_predictor_4x4 vpx_d135_predictor_4x4_c
75
76 void vpx_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
77 #define vpx_d135_predictor_8x8 vpx_d135_predictor_8x8_c
78
79 void vpx_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
80 #define vpx_d153_predictor_16x16 vpx_d153_predictor_16x16_c
81
82 void vpx_d153_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
83 #define vpx_d153_predictor_32x32 vpx_d153_predictor_32x32_c
84
85 void vpx_d153_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
86 #define vpx_d153_predictor_4x4 vpx_d153_predictor_4x4_c
87
88 void vpx_d153_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
89 #define vpx_d153_predictor_8x8 vpx_d153_predictor_8x8_c
90
91 void vpx_d207_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
92 #define vpx_d207_predictor_16x16 vpx_d207_predictor_16x16_c
93
94 void vpx_d207_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
95 #define vpx_d207_predictor_32x32 vpx_d207_predictor_32x32_c
96
97 void vpx_d207_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
98 #define vpx_d207_predictor_4x4 vpx_d207_predictor_4x4_c
99
100 void vpx_d207_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
101 #define vpx_d207_predictor_8x8 vpx_d207_predictor_8x8_c
102
103 void vpx_d207e_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
104 #define vpx_d207e_predictor_16x16 vpx_d207e_predictor_16x16_c
105
106 void vpx_d207e_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
107 #define vpx_d207e_predictor_32x32 vpx_d207e_predictor_32x32_c
108
109 void vpx_d207e_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
110 #define vpx_d207e_predictor_4x4 vpx_d207e_predictor_4x4_c
111
112 void vpx_d207e_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
113 #define vpx_d207e_predictor_8x8 vpx_d207e_predictor_8x8_c
114
115 void vpx_d45_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
116 #define vpx_d45_predictor_16x16 vpx_d45_predictor_16x16_c
117
118 void vpx_d45_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
119 #define vpx_d45_predictor_32x32 vpx_d45_predictor_32x32_c
120
121 void vpx_d45_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
122 #define vpx_d45_predictor_4x4 vpx_d45_predictor_4x4_c
123
124 void vpx_d45_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
125 #define vpx_d45_predictor_8x8 vpx_d45_predictor_8x8_c
126
127 void vpx_d45e_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
128 #define vpx_d45e_predictor_16x16 vpx_d45e_predictor_16x16_c
129
130 void vpx_d45e_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
131 #define vpx_d45e_predictor_32x32 vpx_d45e_predictor_32x32_c
132
133 void vpx_d45e_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
134 #define vpx_d45e_predictor_4x4 vpx_d45e_predictor_4x4_c
135
136 void vpx_d45e_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
137 #define vpx_d45e_predictor_8x8 vpx_d45e_predictor_8x8_c
138
139 void vpx_d63_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
140 #define vpx_d63_predictor_16x16 vpx_d63_predictor_16x16_c
141
142 void vpx_d63_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
143 #define vpx_d63_predictor_32x32 vpx_d63_predictor_32x32_c
144
145 void vpx_d63_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
146 #define vpx_d63_predictor_4x4 vpx_d63_predictor_4x4_c
147
148 void vpx_d63_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
149 #define vpx_d63_predictor_8x8 vpx_d63_predictor_8x8_c
150
151 void vpx_d63e_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
152 #define vpx_d63e_predictor_16x16 vpx_d63e_predictor_16x16_c
153
154 void vpx_d63e_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
155 #define vpx_d63e_predictor_32x32 vpx_d63e_predictor_32x32_c
156
157 void vpx_d63e_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
158 #define vpx_d63e_predictor_4x4 vpx_d63e_predictor_4x4_c
159
160 void vpx_d63e_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
161 #define vpx_d63e_predictor_8x8 vpx_d63e_predictor_8x8_c
162
163 void vpx_d63f_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
164 #define vpx_d63f_predictor_4x4 vpx_d63f_predictor_4x4_c
165
166 void vpx_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_ t *above, const uint8_t *left);
167 #define vpx_dc_128_predictor_16x16 vpx_dc_128_predictor_16x16_c
168
169 void vpx_dc_128_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_ t *above, const uint8_t *left);
170 #define vpx_dc_128_predictor_32x32 vpx_dc_128_predictor_32x32_c
171
172 void vpx_dc_128_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
173 #define vpx_dc_128_predictor_4x4 vpx_dc_128_predictor_4x4_c
174
175 void vpx_dc_128_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
176 #define vpx_dc_128_predictor_8x8 vpx_dc_128_predictor_8x8_c
177
178 void vpx_dc_left_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8 _t *above, const uint8_t *left);
179 #define vpx_dc_left_predictor_16x16 vpx_dc_left_predictor_16x16_c
180
181 void vpx_dc_left_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8 _t *above, const uint8_t *left);
182 #define vpx_dc_left_predictor_32x32 vpx_dc_left_predictor_32x32_c
183
184 void vpx_dc_left_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
185 #define vpx_dc_left_predictor_4x4 vpx_dc_left_predictor_4x4_c
186
187 void vpx_dc_left_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
188 #define vpx_dc_left_predictor_8x8 vpx_dc_left_predictor_8x8_c
189
190 void vpx_dc_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
191 #define vpx_dc_predictor_16x16 vpx_dc_predictor_16x16_c
192
193 void vpx_dc_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
194 #define vpx_dc_predictor_32x32 vpx_dc_predictor_32x32_c
195
196 void vpx_dc_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
197 #define vpx_dc_predictor_4x4 vpx_dc_predictor_4x4_c
198
199 void vpx_dc_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
200 #define vpx_dc_predictor_8x8 vpx_dc_predictor_8x8_c
201
202 void vpx_dc_top_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_ t *above, const uint8_t *left);
203 #define vpx_dc_top_predictor_16x16 vpx_dc_top_predictor_16x16_c
204
205 void vpx_dc_top_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_ t *above, const uint8_t *left);
206 #define vpx_dc_top_predictor_32x32 vpx_dc_top_predictor_32x32_c
207
208 void vpx_dc_top_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
209 #define vpx_dc_top_predictor_4x4 vpx_dc_top_predictor_4x4_c
210
211 void vpx_dc_top_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
212 #define vpx_dc_top_predictor_8x8 vpx_dc_top_predictor_8x8_c
213
214 void vpx_fdct16x16_c(const int16_t *input, tran_low_t *output, int stride);
215 #define vpx_fdct16x16 vpx_fdct16x16_c
216
217 void vpx_fdct16x16_1_c(const int16_t *input, tran_low_t *output, int stride);
218 #define vpx_fdct16x16_1 vpx_fdct16x16_1_c
219
220 void vpx_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride);
221 #define vpx_fdct32x32 vpx_fdct32x32_c
222
223 void vpx_fdct32x32_1_c(const int16_t *input, tran_low_t *output, int stride);
224 #define vpx_fdct32x32_1 vpx_fdct32x32_1_c
225
226 void vpx_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int stride);
227 #define vpx_fdct32x32_rd vpx_fdct32x32_rd_c
228
229 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride);
230 #define vpx_fdct4x4 vpx_fdct4x4_c
231
232 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride);
233 #define vpx_fdct4x4_1 vpx_fdct4x4_1_c
234
235 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride);
236 #define vpx_fdct8x8 vpx_fdct8x8_c
237
238 void vpx_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride);
239 #define vpx_fdct8x8_1 vpx_fdct8x8_1_c
240
241 void vpx_get16x16var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
242 #define vpx_get16x16var vpx_get16x16var_c
243
244 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
245 #define vpx_get4x4sse_cs vpx_get4x4sse_cs_c
246
247 void vpx_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *r ef_ptr, int ref_stride, unsigned int *sse, int *sum);
248 #define vpx_get8x8var vpx_get8x8var_c
249
250 unsigned int vpx_get_mb_ss_c(const int16_t *);
251 #define vpx_get_mb_ss vpx_get_mb_ss_c
252
253 void vpx_h_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
254 #define vpx_h_predictor_16x16 vpx_h_predictor_16x16_c
255
256 void vpx_h_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
257 #define vpx_h_predictor_32x32 vpx_h_predictor_32x32_c
258
259 void vpx_h_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left);
260 #define vpx_h_predictor_4x4 vpx_h_predictor_4x4_c
261
262 void vpx_h_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left);
263 #define vpx_h_predictor_8x8 vpx_h_predictor_8x8_c
264
265 void vpx_hadamard_16x16_c(int16_t const *src_diff, int src_stride, int16_t *coef f);
266 #define vpx_hadamard_16x16 vpx_hadamard_16x16_c
267
268 void vpx_hadamard_8x8_c(int16_t const *src_diff, int src_stride, int16_t *coeff) ;
269 #define vpx_hadamard_8x8 vpx_hadamard_8x8_c
270
271 void vpx_he_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
272 #define vpx_he_predictor_4x4 vpx_he_predictor_4x4_c
273
274 void vpx_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide);
275 #define vpx_idct16x16_10_add vpx_idct16x16_10_add_c
276
277 void vpx_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de);
278 #define vpx_idct16x16_1_add vpx_idct16x16_1_add_c
279
280 void vpx_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride);
281 #define vpx_idct16x16_256_add vpx_idct16x16_256_add_c
282
283 void vpx_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest, int dest_s tride);
284 #define vpx_idct32x32_1024_add vpx_idct32x32_1024_add_c
285
286 void vpx_idct32x32_135_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride);
287 #define vpx_idct32x32_135_add vpx_idct32x32_135_add_c
288
289 void vpx_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de);
290 #define vpx_idct32x32_1_add vpx_idct32x32_1_add_c
291
292 void vpx_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide);
293 #define vpx_idct32x32_34_add vpx_idct32x32_34_add_c
294
295 void vpx_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
296 #define vpx_idct4x4_16_add vpx_idct4x4_16_add_c
297
298 void vpx_idct4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride );
299 #define vpx_idct4x4_1_add vpx_idct4x4_1_add_c
300
301 void vpx_idct8x8_12_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
302 #define vpx_idct8x8_12_add vpx_idct8x8_12_add_c
303
304 void vpx_idct8x8_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride );
305 #define vpx_idct8x8_1_add vpx_idct8x8_1_add_c
306
307 void vpx_idct8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
308 #define vpx_idct8x8_64_add vpx_idct8x8_64_add_c
309
310 int16_t vpx_int_pro_col_c(uint8_t const *ref, const int width);
311 #define vpx_int_pro_col vpx_int_pro_col_c
312
313 void vpx_int_pro_row_c(int16_t *hbuf, uint8_t const *ref, const int ref_stride, const int height);
314 #define vpx_int_pro_row vpx_int_pro_row_c
315
316 void vpx_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
317 #define vpx_iwht4x4_16_add vpx_iwht4x4_16_add_c
318
319 void vpx_iwht4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride );
320 #define vpx_iwht4x4_1_add vpx_iwht4x4_1_add_c
321
322 void vpx_lpf_horizontal_16_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
323 #define vpx_lpf_horizontal_16 vpx_lpf_horizontal_16_c
324
325 void vpx_lpf_horizontal_4_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
326 #define vpx_lpf_horizontal_4 vpx_lpf_horizontal_4_c
327
328 void vpx_lpf_horizontal_4_dual_c(uint8_t *s, int pitch, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uin t8_t *limit1, const uint8_t *thresh1);
329 #define vpx_lpf_horizontal_4_dual vpx_lpf_horizontal_4_dual_c
330
331 void vpx_lpf_horizontal_8_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
332 #define vpx_lpf_horizontal_8 vpx_lpf_horizontal_8_c
333
334 void vpx_lpf_horizontal_8_dual_c(uint8_t *s, int pitch, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uin t8_t *limit1, const uint8_t *thresh1);
335 #define vpx_lpf_horizontal_8_dual vpx_lpf_horizontal_8_dual_c
336
337 void vpx_lpf_vertical_16_c(uint8_t *s, int pitch, const uint8_t *blimit, const u int8_t *limit, const uint8_t *thresh);
338 #define vpx_lpf_vertical_16 vpx_lpf_vertical_16_c
339
340 void vpx_lpf_vertical_16_dual_c(uint8_t *s, int pitch, const uint8_t *blimit, co nst uint8_t *limit, const uint8_t *thresh);
341 #define vpx_lpf_vertical_16_dual vpx_lpf_vertical_16_dual_c
342
343 void vpx_lpf_vertical_4_c(uint8_t *s, int pitch, const uint8_t *blimit, const ui nt8_t *limit, const uint8_t *thresh, int count);
344 #define vpx_lpf_vertical_4 vpx_lpf_vertical_4_c
345
346 void vpx_lpf_vertical_4_dual_c(uint8_t *s, int pitch, const uint8_t *blimit0, co nst uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8 _t *limit1, const uint8_t *thresh1);
347 #define vpx_lpf_vertical_4_dual vpx_lpf_vertical_4_dual_c
348
349 void vpx_lpf_vertical_8_c(uint8_t *s, int pitch, const uint8_t *blimit, const ui nt8_t *limit, const uint8_t *thresh, int count);
350 #define vpx_lpf_vertical_8 vpx_lpf_vertical_8_c
351
352 void vpx_lpf_vertical_8_dual_c(uint8_t *s, int pitch, const uint8_t *blimit0, co nst uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8 _t *limit1, const uint8_t *thresh1);
353 #define vpx_lpf_vertical_8_dual vpx_lpf_vertical_8_dual_c
354
355 void vpx_minmax_8x8_c(const uint8_t *s, int p, const uint8_t *d, int dp, int *mi n, int *max);
356 #define vpx_minmax_8x8 vpx_minmax_8x8_c
357
358 unsigned int vpx_mse16x16_c(const uint8_t *src_ptr, int source_stride, const ui nt8_t *ref_ptr, int recon_stride, unsigned int *sse);
359 unsigned int vpx_mse16x16_media(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
360 #define vpx_mse16x16 vpx_mse16x16_media
361
362 unsigned int vpx_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uin t8_t *ref_ptr, int recon_stride, unsigned int *sse);
363 #define vpx_mse16x8 vpx_mse16x8_c
364
365 unsigned int vpx_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uin t8_t *ref_ptr, int recon_stride, unsigned int *sse);
366 #define vpx_mse8x16 vpx_mse8x16_c
367
368 unsigned int vpx_mse8x8_c(const uint8_t *src_ptr, int source_stride, const uint 8_t *ref_ptr, int recon_stride, unsigned int *sse);
369 #define vpx_mse8x8 vpx_mse8x8_c
370
371 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_b lock, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_pt r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_p tr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const in t16_t *iscan);
372 #define vpx_quantize_b vpx_quantize_b_c
373
374 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *qu ant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc oeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, co nst int16_t *iscan);
375 #define vpx_quantize_b_32x32 vpx_quantize_b_32x32_c
376
377 unsigned int vpx_sad16x16_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride);
378 unsigned int vpx_sad16x16_media(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride);
379 #define vpx_sad16x16 vpx_sad16x16_media
380
381 unsigned int vpx_sad16x16_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
382 #define vpx_sad16x16_avg vpx_sad16x16_avg_c
383
384 void vpx_sad16x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref _ptr, int ref_stride, uint32_t *sad_array);
385 #define vpx_sad16x16x3 vpx_sad16x16x3_c
386
387 void vpx_sad16x16x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array);
388 #define vpx_sad16x16x4d vpx_sad16x16x4d_c
389
390 void vpx_sad16x16x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref _ptr, int ref_stride, uint32_t *sad_array);
391 #define vpx_sad16x16x8 vpx_sad16x16x8_c
392
393 unsigned int vpx_sad16x32_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride);
394 #define vpx_sad16x32 vpx_sad16x32_c
395
396 unsigned int vpx_sad16x32_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
397 #define vpx_sad16x32_avg vpx_sad16x32_avg_c
398
399 void vpx_sad16x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array);
400 #define vpx_sad16x32x4d vpx_sad16x32x4d_c
401
402 unsigned int vpx_sad16x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
403 #define vpx_sad16x8 vpx_sad16x8_c
404
405 unsigned int vpx_sad16x8_avg_c(const uint8_t *src_ptr, int src_stride, const uin t8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
406 #define vpx_sad16x8_avg vpx_sad16x8_avg_c
407
408 void vpx_sad16x8x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ ptr, int ref_stride, uint32_t *sad_array);
409 #define vpx_sad16x8x3 vpx_sad16x8x3_c
410
411 void vpx_sad16x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * co nst ref_ptr[], int ref_stride, uint32_t *sad_array);
412 #define vpx_sad16x8x4d vpx_sad16x8x4d_c
413
414 void vpx_sad16x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ ptr, int ref_stride, uint32_t *sad_array);
415 #define vpx_sad16x8x8 vpx_sad16x8x8_c
416
417 unsigned int vpx_sad32x16_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride);
418 #define vpx_sad32x16 vpx_sad32x16_c
419
420 unsigned int vpx_sad32x16_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
421 #define vpx_sad32x16_avg vpx_sad32x16_avg_c
422
423 void vpx_sad32x16x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array);
424 #define vpx_sad32x16x4d vpx_sad32x16x4d_c
425
426 unsigned int vpx_sad32x32_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride);
427 #define vpx_sad32x32 vpx_sad32x32_c
428
429 unsigned int vpx_sad32x32_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
430 #define vpx_sad32x32_avg vpx_sad32x32_avg_c
431
432 void vpx_sad32x32x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref _ptr, int ref_stride, uint32_t *sad_array);
433 #define vpx_sad32x32x3 vpx_sad32x32x3_c
434
435 void vpx_sad32x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array);
436 #define vpx_sad32x32x4d vpx_sad32x32x4d_c
437
438 void vpx_sad32x32x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref _ptr, int ref_stride, uint32_t *sad_array);
439 #define vpx_sad32x32x8 vpx_sad32x32x8_c
440
441 unsigned int vpx_sad32x64_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride);
442 #define vpx_sad32x64 vpx_sad32x64_c
443
444 unsigned int vpx_sad32x64_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
445 #define vpx_sad32x64_avg vpx_sad32x64_avg_c
446
447 void vpx_sad32x64x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array);
448 #define vpx_sad32x64x4d vpx_sad32x64x4d_c
449
450 unsigned int vpx_sad4x4_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
451 #define vpx_sad4x4 vpx_sad4x4_c
452
453 unsigned int vpx_sad4x4_avg_c(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
454 #define vpx_sad4x4_avg vpx_sad4x4_avg_c
455
456 void vpx_sad4x4x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p tr, int ref_stride, uint32_t *sad_array);
457 #define vpx_sad4x4x3 vpx_sad4x4x3_c
458
459 void vpx_sad4x4x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * con st ref_ptr[], int ref_stride, uint32_t *sad_array);
460 #define vpx_sad4x4x4d vpx_sad4x4x4d_c
461
462 void vpx_sad4x4x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p tr, int ref_stride, uint32_t *sad_array);
463 #define vpx_sad4x4x8 vpx_sad4x4x8_c
464
465 unsigned int vpx_sad4x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
466 #define vpx_sad4x8 vpx_sad4x8_c
467
468 unsigned int vpx_sad4x8_avg_c(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
469 #define vpx_sad4x8_avg vpx_sad4x8_avg_c
470
471 void vpx_sad4x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * con st ref_ptr[], int ref_stride, uint32_t *sad_array);
472 #define vpx_sad4x8x4d vpx_sad4x8x4d_c
473
474 void vpx_sad4x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p tr, int ref_stride, uint32_t *sad_array);
475 #define vpx_sad4x8x8 vpx_sad4x8x8_c
476
477 unsigned int vpx_sad64x32_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride);
478 #define vpx_sad64x32 vpx_sad64x32_c
479
480 unsigned int vpx_sad64x32_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
481 #define vpx_sad64x32_avg vpx_sad64x32_avg_c
482
483 void vpx_sad64x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array);
484 #define vpx_sad64x32x4d vpx_sad64x32x4d_c
485
486 unsigned int vpx_sad64x64_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride);
487 #define vpx_sad64x64 vpx_sad64x64_c
488
489 unsigned int vpx_sad64x64_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
490 #define vpx_sad64x64_avg vpx_sad64x64_avg_c
491
492 void vpx_sad64x64x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref _ptr, int ref_stride, uint32_t *sad_array);
493 #define vpx_sad64x64x3 vpx_sad64x64x3_c
494
495 void vpx_sad64x64x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array);
496 #define vpx_sad64x64x4d vpx_sad64x64x4d_c
497
498 void vpx_sad64x64x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref _ptr, int ref_stride, uint32_t *sad_array);
499 #define vpx_sad64x64x8 vpx_sad64x64x8_c
500
501 unsigned int vpx_sad8x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
502 #define vpx_sad8x16 vpx_sad8x16_c
503
504 unsigned int vpx_sad8x16_avg_c(const uint8_t *src_ptr, int src_stride, const uin t8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
505 #define vpx_sad8x16_avg vpx_sad8x16_avg_c
506
507 void vpx_sad8x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ ptr, int ref_stride, uint32_t *sad_array);
508 #define vpx_sad8x16x3 vpx_sad8x16x3_c
509
510 void vpx_sad8x16x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * co nst ref_ptr[], int ref_stride, uint32_t *sad_array);
511 #define vpx_sad8x16x4d vpx_sad8x16x4d_c
512
513 void vpx_sad8x16x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ ptr, int ref_stride, uint32_t *sad_array);
514 #define vpx_sad8x16x8 vpx_sad8x16x8_c
515
516 unsigned int vpx_sad8x4_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
517 #define vpx_sad8x4 vpx_sad8x4_c
518
519 unsigned int vpx_sad8x4_avg_c(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
520 #define vpx_sad8x4_avg vpx_sad8x4_avg_c
521
522 void vpx_sad8x4x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * con st ref_ptr[], int ref_stride, uint32_t *sad_array);
523 #define vpx_sad8x4x4d vpx_sad8x4x4d_c
524
525 void vpx_sad8x4x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p tr, int ref_stride, uint32_t *sad_array);
526 #define vpx_sad8x4x8 vpx_sad8x4x8_c
527
528 unsigned int vpx_sad8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
529 #define vpx_sad8x8 vpx_sad8x8_c
530
531 unsigned int vpx_sad8x8_avg_c(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
532 #define vpx_sad8x8_avg vpx_sad8x8_avg_c
533
534 void vpx_sad8x8x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p tr, int ref_stride, uint32_t *sad_array);
535 #define vpx_sad8x8x3 vpx_sad8x8x3_c
536
537 void vpx_sad8x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * con st ref_ptr[], int ref_stride, uint32_t *sad_array);
538 #define vpx_sad8x8x4d vpx_sad8x8x4d_c
539
540 void vpx_sad8x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p tr, int ref_stride, uint32_t *sad_array);
541 #define vpx_sad8x8x8 vpx_sad8x8x8_c
542
543 int vpx_satd_c(const int16_t *coeff, int length);
544 #define vpx_satd vpx_satd_c
545
546 void vpx_scaled_2d_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptr diff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter _y, int y_step_q4, int w, int h);
547 #define vpx_scaled_2d vpx_scaled_2d_c
548
549 void vpx_scaled_avg_2d_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fi lter_y, int y_step_q4, int w, int h);
550 #define vpx_scaled_avg_2d vpx_scaled_avg_2d_c
551
552 void vpx_scaled_avg_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *d st, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
553 #define vpx_scaled_avg_horiz vpx_scaled_avg_horiz_c
554
555 void vpx_scaled_avg_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *ds t, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t * filter_y, int y_step_q4, int w, int h);
556 #define vpx_scaled_avg_vert vpx_scaled_avg_vert_c
557
558 void vpx_scaled_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fil ter_y, int y_step_q4, int w, int h);
559 #define vpx_scaled_horiz vpx_scaled_horiz_c
560
561 void vpx_scaled_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, p trdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filt er_y, int y_step_q4, int w, int h);
562 #define vpx_scaled_vert vpx_scaled_vert_c
563
564 uint32_t vpx_sub_pixel_avg_variance16x16_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_ t *sse, const uint8_t *second_pred);
565 #define vpx_sub_pixel_avg_variance16x16 vpx_sub_pixel_avg_variance16x16_c
566
567 uint32_t vpx_sub_pixel_avg_variance16x32_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_ t *sse, const uint8_t *second_pred);
568 #define vpx_sub_pixel_avg_variance16x32 vpx_sub_pixel_avg_variance16x32_c
569
570 uint32_t vpx_sub_pixel_avg_variance16x8_c(const uint8_t *src_ptr, int source_str ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
571 #define vpx_sub_pixel_avg_variance16x8 vpx_sub_pixel_avg_variance16x8_c
572
573 uint32_t vpx_sub_pixel_avg_variance32x16_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_ t *sse, const uint8_t *second_pred);
574 #define vpx_sub_pixel_avg_variance32x16 vpx_sub_pixel_avg_variance32x16_c
575
576 uint32_t vpx_sub_pixel_avg_variance32x32_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_ t *sse, const uint8_t *second_pred);
577 #define vpx_sub_pixel_avg_variance32x32 vpx_sub_pixel_avg_variance32x32_c
578
579 uint32_t vpx_sub_pixel_avg_variance32x64_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_ t *sse, const uint8_t *second_pred);
580 #define vpx_sub_pixel_avg_variance32x64 vpx_sub_pixel_avg_variance32x64_c
581
582 uint32_t vpx_sub_pixel_avg_variance4x4_c(const uint8_t *src_ptr, int source_stri de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
583 #define vpx_sub_pixel_avg_variance4x4 vpx_sub_pixel_avg_variance4x4_c
584
585 uint32_t vpx_sub_pixel_avg_variance4x8_c(const uint8_t *src_ptr, int source_stri de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
586 #define vpx_sub_pixel_avg_variance4x8 vpx_sub_pixel_avg_variance4x8_c
587
588 uint32_t vpx_sub_pixel_avg_variance64x32_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_ t *sse, const uint8_t *second_pred);
589 #define vpx_sub_pixel_avg_variance64x32 vpx_sub_pixel_avg_variance64x32_c
590
591 uint32_t vpx_sub_pixel_avg_variance64x64_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_ t *sse, const uint8_t *second_pred);
592 #define vpx_sub_pixel_avg_variance64x64 vpx_sub_pixel_avg_variance64x64_c
593
594 uint32_t vpx_sub_pixel_avg_variance8x16_c(const uint8_t *src_ptr, int source_str ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
595 #define vpx_sub_pixel_avg_variance8x16 vpx_sub_pixel_avg_variance8x16_c
596
597 uint32_t vpx_sub_pixel_avg_variance8x4_c(const uint8_t *src_ptr, int source_stri de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
598 #define vpx_sub_pixel_avg_variance8x4 vpx_sub_pixel_avg_variance8x4_c
599
600 uint32_t vpx_sub_pixel_avg_variance8x8_c(const uint8_t *src_ptr, int source_stri de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
601 #define vpx_sub_pixel_avg_variance8x8 vpx_sub_pixel_avg_variance8x8_c
602
603 uint32_t vpx_sub_pixel_variance16x16_c(const uint8_t *src_ptr, int source_stride , int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s se);
604 uint32_t vpx_sub_pixel_variance16x16_media(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_ t *sse);
605 #define vpx_sub_pixel_variance16x16 vpx_sub_pixel_variance16x16_media
606
607 uint32_t vpx_sub_pixel_variance16x32_c(const uint8_t *src_ptr, int source_stride , int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s se);
608 #define vpx_sub_pixel_variance16x32 vpx_sub_pixel_variance16x32_c
609
610 uint32_t vpx_sub_pixel_variance16x8_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *ss e);
611 #define vpx_sub_pixel_variance16x8 vpx_sub_pixel_variance16x8_c
612
613 uint32_t vpx_sub_pixel_variance32x16_c(const uint8_t *src_ptr, int source_stride , int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s se);
614 #define vpx_sub_pixel_variance32x16 vpx_sub_pixel_variance32x16_c
615
616 uint32_t vpx_sub_pixel_variance32x32_c(const uint8_t *src_ptr, int source_stride , int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s se);
617 #define vpx_sub_pixel_variance32x32 vpx_sub_pixel_variance32x32_c
618
619 uint32_t vpx_sub_pixel_variance32x64_c(const uint8_t *src_ptr, int source_stride , int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s se);
620 #define vpx_sub_pixel_variance32x64 vpx_sub_pixel_variance32x64_c
621
622 uint32_t vpx_sub_pixel_variance4x4_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse );
623 #define vpx_sub_pixel_variance4x4 vpx_sub_pixel_variance4x4_c
624
625 uint32_t vpx_sub_pixel_variance4x8_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse );
626 #define vpx_sub_pixel_variance4x8 vpx_sub_pixel_variance4x8_c
627
628 uint32_t vpx_sub_pixel_variance64x32_c(const uint8_t *src_ptr, int source_stride , int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s se);
629 #define vpx_sub_pixel_variance64x32 vpx_sub_pixel_variance64x32_c
630
631 uint32_t vpx_sub_pixel_variance64x64_c(const uint8_t *src_ptr, int source_stride , int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s se);
632 #define vpx_sub_pixel_variance64x64 vpx_sub_pixel_variance64x64_c
633
634 uint32_t vpx_sub_pixel_variance8x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *ss e);
635 #define vpx_sub_pixel_variance8x16 vpx_sub_pixel_variance8x16_c
636
637 uint32_t vpx_sub_pixel_variance8x4_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse );
638 #define vpx_sub_pixel_variance8x4 vpx_sub_pixel_variance8x4_c
639
640 uint32_t vpx_sub_pixel_variance8x8_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse );
641 uint32_t vpx_sub_pixel_variance8x8_media(const uint8_t *src_ptr, int source_stri de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse);
642 #define vpx_sub_pixel_variance8x8 vpx_sub_pixel_variance8x8_media
643
644 void vpx_subtract_block_c(int rows, int cols, int16_t *diff_ptr, ptrdiff_t diff_ stride, const uint8_t *src_ptr, ptrdiff_t src_stride, const uint8_t *pred_ptr, p trdiff_t pred_stride);
645 #define vpx_subtract_block vpx_subtract_block_c
646
647 void vpx_tm_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
648 #define vpx_tm_predictor_16x16 vpx_tm_predictor_16x16_c
649
650 void vpx_tm_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
651 #define vpx_tm_predictor_32x32 vpx_tm_predictor_32x32_c
652
653 void vpx_tm_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
654 #define vpx_tm_predictor_4x4 vpx_tm_predictor_4x4_c
655
656 void vpx_tm_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
657 #define vpx_tm_predictor_8x8 vpx_tm_predictor_8x8_c
658
659 void vpx_v_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
660 #define vpx_v_predictor_16x16 vpx_v_predictor_16x16_c
661
662 void vpx_v_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
663 #define vpx_v_predictor_32x32 vpx_v_predictor_32x32_c
664
665 void vpx_v_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left);
666 #define vpx_v_predictor_4x4 vpx_v_predictor_4x4_c
667
668 void vpx_v_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left);
669 #define vpx_v_predictor_8x8 vpx_v_predictor_8x8_c
670
671 unsigned int vpx_variance16x16_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
672 unsigned int vpx_variance16x16_media(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
673 #define vpx_variance16x16 vpx_variance16x16_media
674
675 unsigned int vpx_variance16x32_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
676 #define vpx_variance16x32 vpx_variance16x32_c
677
678 unsigned int vpx_variance16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
679 #define vpx_variance16x8 vpx_variance16x8_c
680
681 unsigned int vpx_variance32x16_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
682 #define vpx_variance32x16 vpx_variance32x16_c
683
684 unsigned int vpx_variance32x32_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
685 #define vpx_variance32x32 vpx_variance32x32_c
686
687 unsigned int vpx_variance32x64_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
688 #define vpx_variance32x64 vpx_variance32x64_c
689
690 unsigned int vpx_variance4x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
691 #define vpx_variance4x4 vpx_variance4x4_c
692
693 unsigned int vpx_variance4x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
694 #define vpx_variance4x8 vpx_variance4x8_c
695
696 unsigned int vpx_variance64x32_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
697 #define vpx_variance64x32 vpx_variance64x32_c
698
699 unsigned int vpx_variance64x64_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
700 #define vpx_variance64x64 vpx_variance64x64_c
701
702 unsigned int vpx_variance8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
703 #define vpx_variance8x16 vpx_variance8x16_c
704
705 unsigned int vpx_variance8x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
706 #define vpx_variance8x4 vpx_variance8x4_c
707
708 unsigned int vpx_variance8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
709 unsigned int vpx_variance8x8_media(const uint8_t *src_ptr, int source_stride, co nst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
710 #define vpx_variance8x8 vpx_variance8x8_media
711
712 uint32_t vpx_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int sour ce_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse);
713 uint32_t vpx_variance_halfpixvar16x16_h_media(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse);
714 #define vpx_variance_halfpixvar16x16_h vpx_variance_halfpixvar16x16_h_media
715
716 uint32_t vpx_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int sou rce_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse);
717 uint32_t vpx_variance_halfpixvar16x16_hv_media(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse);
718 #define vpx_variance_halfpixvar16x16_hv vpx_variance_halfpixvar16x16_hv_media
719
720 uint32_t vpx_variance_halfpixvar16x16_v_c(const unsigned char *src_ptr, int sour ce_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse);
721 uint32_t vpx_variance_halfpixvar16x16_v_media(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse);
722 #define vpx_variance_halfpixvar16x16_v vpx_variance_halfpixvar16x16_v_media
723
724 void vpx_ve_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
725 #define vpx_ve_predictor_4x4 vpx_ve_predictor_4x4_c
726
727 int vpx_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl);
728 #define vpx_vector_var vpx_vector_var_c
729
730 void vpx_dsp_rtcd(void);
731
732 #include "vpx_config.h"
733
734 #ifdef RTCD_C
735 #include "vpx_ports/arm.h"
736 static void setup_rtcd_internal(void)
737 {
738 int flags = arm_cpu_caps();
739
740 (void)flags;
741
742 }
743 #endif
744
745 #ifdef __cplusplus
746 } // extern "C"
747 #endif
748
749 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698