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

Side by Side Diff: third_party/libvpx/source/config/linux/arm/vp9_rtcd.h

Issue 1158913006: Move libvpx from DEPS to src (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add DEPS file with #include paths Created 5 years, 6 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 VP9_RTCD_H_
2 #define VP9_RTCD_H_
3
4 #ifdef RTCD_C
5 #define RTCD_EXTERN
6 #else
7 #define RTCD_EXTERN extern
8 #endif
9
10 /*
11 * VP9
12 */
13
14 #include "vpx/vpx_integer.h"
15 #include "vp9/common/vp9_common.h"
16 #include "vp9/common/vp9_enums.h"
17
18 struct macroblockd;
19
20 /* Encoder forward decls */
21 struct macroblock;
22 struct vp9_variance_vtable;
23 struct search_site_config;
24 struct mv;
25 union int_mv;
26 struct yv12_buffer_config;
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 unsigned int vp9_avg_4x4_c(const uint8_t *, int p);
33 #define vp9_avg_4x4 vp9_avg_4x4_c
34
35 unsigned int vp9_avg_8x8_c(const uint8_t *, int p);
36 #define vp9_avg_8x8 vp9_avg_8x8_c
37
38 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, in tptr_t block_size, int64_t *ssz);
39 #define vp9_block_error vp9_block_error_c
40
41 int64_t vp9_block_error_fp_c(const int16_t *coeff, const int16_t *dqcoeff, int b lock_size);
42 #define vp9_block_error_fp vp9_block_error_fp_c
43
44 void vp9_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);
45 #define vp9_convolve8 vp9_convolve8_c
46
47 void vp9_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);
48 #define vp9_convolve8_avg vp9_convolve8_avg_c
49
50 void vp9_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);
51 #define vp9_convolve8_avg_horiz vp9_convolve8_avg_horiz_c
52
53 void vp9_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);
54 #define vp9_convolve8_avg_vert vp9_convolve8_avg_vert_c
55
56 void vp9_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);
57 #define vp9_convolve8_horiz vp9_convolve8_horiz_c
58
59 void vp9_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);
60 #define vp9_convolve8_vert vp9_convolve8_vert_c
61
62 void vp9_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);
63 #define vp9_convolve_avg vp9_convolve_avg_c
64
65 void vp9_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);
66 #define vp9_convolve_copy vp9_convolve_copy_c
67
68 void vp9_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
69 #define vp9_d117_predictor_16x16 vp9_d117_predictor_16x16_c
70
71 void vp9_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
72 #define vp9_d117_predictor_32x32 vp9_d117_predictor_32x32_c
73
74 void vp9_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
75 #define vp9_d117_predictor_4x4 vp9_d117_predictor_4x4_c
76
77 void vp9_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
78 #define vp9_d117_predictor_8x8 vp9_d117_predictor_8x8_c
79
80 void vp9_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
81 #define vp9_d135_predictor_16x16 vp9_d135_predictor_16x16_c
82
83 void vp9_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
84 #define vp9_d135_predictor_32x32 vp9_d135_predictor_32x32_c
85
86 void vp9_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
87 #define vp9_d135_predictor_4x4 vp9_d135_predictor_4x4_c
88
89 void vp9_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
90 #define vp9_d135_predictor_8x8 vp9_d135_predictor_8x8_c
91
92 void vp9_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
93 #define vp9_d153_predictor_16x16 vp9_d153_predictor_16x16_c
94
95 void vp9_d153_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
96 #define vp9_d153_predictor_32x32 vp9_d153_predictor_32x32_c
97
98 void vp9_d153_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
99 #define vp9_d153_predictor_4x4 vp9_d153_predictor_4x4_c
100
101 void vp9_d153_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
102 #define vp9_d153_predictor_8x8 vp9_d153_predictor_8x8_c
103
104 void vp9_d207_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
105 #define vp9_d207_predictor_16x16 vp9_d207_predictor_16x16_c
106
107 void vp9_d207_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
108 #define vp9_d207_predictor_32x32 vp9_d207_predictor_32x32_c
109
110 void vp9_d207_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
111 #define vp9_d207_predictor_4x4 vp9_d207_predictor_4x4_c
112
113 void vp9_d207_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
114 #define vp9_d207_predictor_8x8 vp9_d207_predictor_8x8_c
115
116 void vp9_d45_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
117 #define vp9_d45_predictor_16x16 vp9_d45_predictor_16x16_c
118
119 void vp9_d45_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
120 #define vp9_d45_predictor_32x32 vp9_d45_predictor_32x32_c
121
122 void vp9_d45_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
123 #define vp9_d45_predictor_4x4 vp9_d45_predictor_4x4_c
124
125 void vp9_d45_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
126 #define vp9_d45_predictor_8x8 vp9_d45_predictor_8x8_c
127
128 void vp9_d63_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
129 #define vp9_d63_predictor_16x16 vp9_d63_predictor_16x16_c
130
131 void vp9_d63_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
132 #define vp9_d63_predictor_32x32 vp9_d63_predictor_32x32_c
133
134 void vp9_d63_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
135 #define vp9_d63_predictor_4x4 vp9_d63_predictor_4x4_c
136
137 void vp9_d63_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
138 #define vp9_d63_predictor_8x8 vp9_d63_predictor_8x8_c
139
140 void vp9_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_ t *above, const uint8_t *left);
141 #define vp9_dc_128_predictor_16x16 vp9_dc_128_predictor_16x16_c
142
143 void vp9_dc_128_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_ t *above, const uint8_t *left);
144 #define vp9_dc_128_predictor_32x32 vp9_dc_128_predictor_32x32_c
145
146 void vp9_dc_128_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
147 #define vp9_dc_128_predictor_4x4 vp9_dc_128_predictor_4x4_c
148
149 void vp9_dc_128_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
150 #define vp9_dc_128_predictor_8x8 vp9_dc_128_predictor_8x8_c
151
152 void vp9_dc_left_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8 _t *above, const uint8_t *left);
153 #define vp9_dc_left_predictor_16x16 vp9_dc_left_predictor_16x16_c
154
155 void vp9_dc_left_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8 _t *above, const uint8_t *left);
156 #define vp9_dc_left_predictor_32x32 vp9_dc_left_predictor_32x32_c
157
158 void vp9_dc_left_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
159 #define vp9_dc_left_predictor_4x4 vp9_dc_left_predictor_4x4_c
160
161 void vp9_dc_left_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
162 #define vp9_dc_left_predictor_8x8 vp9_dc_left_predictor_8x8_c
163
164 void vp9_dc_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
165 #define vp9_dc_predictor_16x16 vp9_dc_predictor_16x16_c
166
167 void vp9_dc_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
168 #define vp9_dc_predictor_32x32 vp9_dc_predictor_32x32_c
169
170 void vp9_dc_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
171 #define vp9_dc_predictor_4x4 vp9_dc_predictor_4x4_c
172
173 void vp9_dc_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
174 #define vp9_dc_predictor_8x8 vp9_dc_predictor_8x8_c
175
176 void vp9_dc_top_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_ t *above, const uint8_t *left);
177 #define vp9_dc_top_predictor_16x16 vp9_dc_top_predictor_16x16_c
178
179 void vp9_dc_top_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_ t *above, const uint8_t *left);
180 #define vp9_dc_top_predictor_32x32 vp9_dc_top_predictor_32x32_c
181
182 void vp9_dc_top_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
183 #define vp9_dc_top_predictor_4x4 vp9_dc_top_predictor_4x4_c
184
185 void vp9_dc_top_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
186 #define vp9_dc_top_predictor_8x8 vp9_dc_top_predictor_8x8_c
187
188 int vp9_denoiser_filter_c(const uint8_t *sig, int sig_stride, const uint8_t *mc_ avg, int mc_avg_stride, uint8_t *avg, int avg_stride, int increase_denoising, BL OCK_SIZE bs, int motion_magnitude);
189 #define vp9_denoiser_filter vp9_denoiser_filter_c
190
191 int vp9_diamond_search_sad_c(const struct macroblock *x, const struct search_sit e_config *cfg, struct mv *ref_mv, struct mv *best_mv, int search_param, int sad _per_bit, int *num00, const struct vp9_variance_vtable *fn_ptr, const struct mv *center_mv);
192 #define vp9_diamond_search_sad vp9_diamond_search_sad_c
193
194 void vp9_fdct16x16_c(const int16_t *input, tran_low_t *output, int stride);
195 #define vp9_fdct16x16 vp9_fdct16x16_c
196
197 void vp9_fdct16x16_1_c(const int16_t *input, tran_low_t *output, int stride);
198 #define vp9_fdct16x16_1 vp9_fdct16x16_1_c
199
200 void vp9_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride);
201 #define vp9_fdct32x32 vp9_fdct32x32_c
202
203 void vp9_fdct32x32_1_c(const int16_t *input, tran_low_t *output, int stride);
204 #define vp9_fdct32x32_1 vp9_fdct32x32_1_c
205
206 void vp9_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int stride);
207 #define vp9_fdct32x32_rd vp9_fdct32x32_rd_c
208
209 void vp9_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride);
210 #define vp9_fdct4x4 vp9_fdct4x4_c
211
212 void vp9_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride);
213 #define vp9_fdct4x4_1 vp9_fdct4x4_1_c
214
215 void vp9_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride);
216 #define vp9_fdct8x8 vp9_fdct8x8_c
217
218 void vp9_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride);
219 #define vp9_fdct8x8_1 vp9_fdct8x8_1_c
220
221 void vp9_fdct8x8_quant_c(const int16_t *input, int stride, tran_low_t *coeff_ptr , intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *rou nd_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qc oeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr , const int16_t *scan, const int16_t *iscan);
222 #define vp9_fdct8x8_quant vp9_fdct8x8_quant_c
223
224 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx _type);
225 #define vp9_fht16x16 vp9_fht16x16_c
226
227 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_t ype);
228 #define vp9_fht4x4 vp9_fht4x4_c
229
230 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_t ype);
231 #define vp9_fht8x8 vp9_fht8x8_c
232
233 void vp9_filter_by_weight16x16_c(const uint8_t *src, int src_stride, uint8_t *ds t, int dst_stride, int src_weight);
234 #define vp9_filter_by_weight16x16 vp9_filter_by_weight16x16_c
235
236 void vp9_filter_by_weight8x8_c(const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int src_weight);
237 #define vp9_filter_by_weight8x8 vp9_filter_by_weight8x8_c
238
239 int vp9_full_range_search_c(const struct macroblock *x, const struct search_site _config *cfg, struct mv *ref_mv, struct mv *best_mv, int search_param, int sad_p er_bit, int *num00, const struct vp9_variance_vtable *fn_ptr, const struct mv *c enter_mv);
240 #define vp9_full_range_search vp9_full_range_search_c
241
242 int vp9_full_search_sad_c(const struct macroblock *x, const struct mv *ref_mv, i nt sad_per_bit, int distance, const struct vp9_variance_vtable *fn_ptr, const st ruct mv *center_mv, struct mv *best_mv);
243 #define vp9_full_search_sad vp9_full_search_sad_c
244
245 void vp9_fwht4x4_c(const int16_t *input, tran_low_t *output, int stride);
246 #define vp9_fwht4x4 vp9_fwht4x4_c
247
248 void vp9_get16x16var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
249 #define vp9_get16x16var vp9_get16x16var_c
250
251 void vp9_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *r ef_ptr, int ref_stride, unsigned int *sse, int *sum);
252 #define vp9_get8x8var vp9_get8x8var_c
253
254 unsigned int vp9_get_mb_ss_c(const int16_t *);
255 #define vp9_get_mb_ss vp9_get_mb_ss_c
256
257 void vp9_h_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
258 #define vp9_h_predictor_16x16 vp9_h_predictor_16x16_c
259
260 void vp9_h_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
261 #define vp9_h_predictor_32x32 vp9_h_predictor_32x32_c
262
263 void vp9_h_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left);
264 #define vp9_h_predictor_4x4 vp9_h_predictor_4x4_c
265
266 void vp9_h_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left);
267 #define vp9_h_predictor_8x8 vp9_h_predictor_8x8_c
268
269 void vp9_hadamard_16x16_c(int16_t const *src_diff, int src_stride, int16_t *coef f);
270 #define vp9_hadamard_16x16 vp9_hadamard_16x16_c
271
272 void vp9_hadamard_8x8_c(int16_t const *src_diff, int src_stride, int16_t *coeff) ;
273 #define vp9_hadamard_8x8 vp9_hadamard_8x8_c
274
275 void vp9_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide);
276 #define vp9_idct16x16_10_add vp9_idct16x16_10_add_c
277
278 void vp9_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de);
279 #define vp9_idct16x16_1_add vp9_idct16x16_1_add_c
280
281 void vp9_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride);
282 #define vp9_idct16x16_256_add vp9_idct16x16_256_add_c
283
284 void vp9_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest, int dest_s tride);
285 #define vp9_idct32x32_1024_add vp9_idct32x32_1024_add_c
286
287 void vp9_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de);
288 #define vp9_idct32x32_1_add vp9_idct32x32_1_add_c
289
290 void vp9_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide);
291 #define vp9_idct32x32_34_add vp9_idct32x32_34_add_c
292
293 void vp9_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
294 #define vp9_idct4x4_16_add vp9_idct4x4_16_add_c
295
296 void vp9_idct4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride );
297 #define vp9_idct4x4_1_add vp9_idct4x4_1_add_c
298
299 void vp9_idct8x8_12_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
300 #define vp9_idct8x8_12_add vp9_idct8x8_12_add_c
301
302 void vp9_idct8x8_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride );
303 #define vp9_idct8x8_1_add vp9_idct8x8_1_add_c
304
305 void vp9_idct8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
306 #define vp9_idct8x8_64_add vp9_idct8x8_64_add_c
307
308 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type);
309 #define vp9_iht16x16_256_add vp9_iht16x16_256_add_c
310
311 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride , int tx_type);
312 #define vp9_iht4x4_16_add vp9_iht4x4_16_add_c
313
314 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride , int tx_type);
315 #define vp9_iht8x8_64_add vp9_iht8x8_64_add_c
316
317 int16_t vp9_int_pro_col_c(uint8_t const *ref, const int width);
318 #define vp9_int_pro_col vp9_int_pro_col_c
319
320 void vp9_int_pro_row_c(int16_t *hbuf, uint8_t const *ref, const int ref_stride, const int height);
321 #define vp9_int_pro_row vp9_int_pro_row_c
322
323 void vp9_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
324 #define vp9_iwht4x4_16_add vp9_iwht4x4_16_add_c
325
326 void vp9_iwht4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride );
327 #define vp9_iwht4x4_1_add vp9_iwht4x4_1_add_c
328
329 void vp9_lpf_horizontal_16_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
330 #define vp9_lpf_horizontal_16 vp9_lpf_horizontal_16_c
331
332 void vp9_lpf_horizontal_4_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
333 #define vp9_lpf_horizontal_4 vp9_lpf_horizontal_4_c
334
335 void vp9_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);
336 #define vp9_lpf_horizontal_4_dual vp9_lpf_horizontal_4_dual_c
337
338 void vp9_lpf_horizontal_8_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
339 #define vp9_lpf_horizontal_8 vp9_lpf_horizontal_8_c
340
341 void vp9_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);
342 #define vp9_lpf_horizontal_8_dual vp9_lpf_horizontal_8_dual_c
343
344 void vp9_lpf_vertical_16_c(uint8_t *s, int pitch, const uint8_t *blimit, const u int8_t *limit, const uint8_t *thresh);
345 #define vp9_lpf_vertical_16 vp9_lpf_vertical_16_c
346
347 void vp9_lpf_vertical_16_dual_c(uint8_t *s, int pitch, const uint8_t *blimit, co nst uint8_t *limit, const uint8_t *thresh);
348 #define vp9_lpf_vertical_16_dual vp9_lpf_vertical_16_dual_c
349
350 void vp9_lpf_vertical_4_c(uint8_t *s, int pitch, const uint8_t *blimit, const ui nt8_t *limit, const uint8_t *thresh, int count);
351 #define vp9_lpf_vertical_4 vp9_lpf_vertical_4_c
352
353 void vp9_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);
354 #define vp9_lpf_vertical_4_dual vp9_lpf_vertical_4_dual_c
355
356 void vp9_lpf_vertical_8_c(uint8_t *s, int pitch, const uint8_t *blimit, const ui nt8_t *limit, const uint8_t *thresh, int count);
357 #define vp9_lpf_vertical_8 vp9_lpf_vertical_8_c
358
359 void vp9_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);
360 #define vp9_lpf_vertical_8_dual vp9_lpf_vertical_8_dual_c
361
362 void vp9_mbpost_proc_across_ip_c(uint8_t *src, int pitch, int rows, int cols, in t flimit);
363 #define vp9_mbpost_proc_across_ip vp9_mbpost_proc_across_ip_c
364
365 void vp9_mbpost_proc_down_c(uint8_t *dst, int pitch, int rows, int cols, int fli mit);
366 #define vp9_mbpost_proc_down vp9_mbpost_proc_down_c
367
368 void vp9_minmax_8x8_c(const uint8_t *s, int p, const uint8_t *d, int dp, int *mi n, int *max);
369 #define vp9_minmax_8x8 vp9_minmax_8x8_c
370
371 unsigned int vp9_mse16x16_c(const uint8_t *src_ptr, int source_stride, const ui nt8_t *ref_ptr, int recon_stride, unsigned int *sse);
372 #define vp9_mse16x16 vp9_mse16x16_c
373
374 unsigned int vp9_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uin t8_t *ref_ptr, int recon_stride, unsigned int *sse);
375 #define vp9_mse16x8 vp9_mse16x8_c
376
377 unsigned int vp9_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uin t8_t *ref_ptr, int recon_stride, unsigned int *sse);
378 #define vp9_mse8x16 vp9_mse8x16_c
379
380 unsigned int vp9_mse8x8_c(const uint8_t *src_ptr, int source_stride, const uint 8_t *ref_ptr, int recon_stride, unsigned int *sse);
381 #define vp9_mse8x8 vp9_mse8x8_c
382
383 void vp9_plane_add_noise_c(uint8_t *Start, char *noise, char blackclamp[16], cha r whiteclamp[16], char bothclamp[16], unsigned int Width, unsigned int Height, i nt Pitch);
384 #define vp9_plane_add_noise vp9_plane_add_noise_c
385
386 void vp9_post_proc_down_and_across_c(const uint8_t *src_ptr, uint8_t *dst_ptr, i nt src_pixels_per_line, int dst_pixels_per_line, int rows, int cols, int flimit) ;
387 #define vp9_post_proc_down_and_across vp9_post_proc_down_and_across_c
388
389 void vp9_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);
390 #define vp9_quantize_b vp9_quantize_b_c
391
392 void vp9_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);
393 #define vp9_quantize_b_32x32 vp9_quantize_b_32x32_c
394
395 void vp9_quantize_fp_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 *quant_p tr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const i nt16_t *iscan);
396 #define vp9_quantize_fp vp9_quantize_fp_c
397
398 void vp9_quantize_fp_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 *q uant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dq coeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, c onst int16_t *iscan);
399 #define vp9_quantize_fp_32x32 vp9_quantize_fp_32x32_c
400
401 int16_t vp9_satd_c(const int16_t *coeff, int length);
402 #define vp9_satd vp9_satd_c
403
404 unsigned int vp9_sub_pixel_avg_variance16x16_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uns igned int *sse, const uint8_t *second_pred);
405 #define vp9_sub_pixel_avg_variance16x16 vp9_sub_pixel_avg_variance16x16_c
406
407 unsigned int vp9_sub_pixel_avg_variance16x32_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uns igned int *sse, const uint8_t *second_pred);
408 #define vp9_sub_pixel_avg_variance16x32 vp9_sub_pixel_avg_variance16x32_c
409
410 unsigned int vp9_sub_pixel_avg_variance16x8_c(const uint8_t *src_ptr, int source _stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsi gned int *sse, const uint8_t *second_pred);
411 #define vp9_sub_pixel_avg_variance16x8 vp9_sub_pixel_avg_variance16x8_c
412
413 unsigned int vp9_sub_pixel_avg_variance32x16_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uns igned int *sse, const uint8_t *second_pred);
414 #define vp9_sub_pixel_avg_variance32x16 vp9_sub_pixel_avg_variance32x16_c
415
416 unsigned int vp9_sub_pixel_avg_variance32x32_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uns igned int *sse, const uint8_t *second_pred);
417 #define vp9_sub_pixel_avg_variance32x32 vp9_sub_pixel_avg_variance32x32_c
418
419 unsigned int vp9_sub_pixel_avg_variance32x64_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uns igned int *sse, const uint8_t *second_pred);
420 #define vp9_sub_pixel_avg_variance32x64 vp9_sub_pixel_avg_variance32x64_c
421
422 unsigned int vp9_sub_pixel_avg_variance4x4_c(const uint8_t *src_ptr, int source_ stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsig ned int *sse, const uint8_t *second_pred);
423 #define vp9_sub_pixel_avg_variance4x4 vp9_sub_pixel_avg_variance4x4_c
424
425 unsigned int vp9_sub_pixel_avg_variance4x8_c(const uint8_t *src_ptr, int source_ stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsign ed int *sse, const uint8_t *second_pred);
426 #define vp9_sub_pixel_avg_variance4x8 vp9_sub_pixel_avg_variance4x8_c
427
428 unsigned int vp9_sub_pixel_avg_variance64x32_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uns igned int *sse, const uint8_t *second_pred);
429 #define vp9_sub_pixel_avg_variance64x32 vp9_sub_pixel_avg_variance64x32_c
430
431 unsigned int vp9_sub_pixel_avg_variance64x64_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uns igned int *sse, const uint8_t *second_pred);
432 #define vp9_sub_pixel_avg_variance64x64 vp9_sub_pixel_avg_variance64x64_c
433
434 unsigned int vp9_sub_pixel_avg_variance8x16_c(const uint8_t *src_ptr, int source _stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsi gned int *sse, const uint8_t *second_pred);
435 #define vp9_sub_pixel_avg_variance8x16 vp9_sub_pixel_avg_variance8x16_c
436
437 unsigned int vp9_sub_pixel_avg_variance8x4_c(const uint8_t *src_ptr, int source_ stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsign ed int *sse, const uint8_t *second_pred);
438 #define vp9_sub_pixel_avg_variance8x4 vp9_sub_pixel_avg_variance8x4_c
439
440 unsigned int vp9_sub_pixel_avg_variance8x8_c(const uint8_t *src_ptr, int source_ stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsig ned int *sse, const uint8_t *second_pred);
441 #define vp9_sub_pixel_avg_variance8x8 vp9_sub_pixel_avg_variance8x8_c
442
443 unsigned int vp9_sub_pixel_variance16x16_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigne d int *sse);
444 #define vp9_sub_pixel_variance16x16 vp9_sub_pixel_variance16x16_c
445
446 unsigned int vp9_sub_pixel_variance16x32_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigne d int *sse);
447 #define vp9_sub_pixel_variance16x32 vp9_sub_pixel_variance16x32_c
448
449 unsigned int vp9_sub_pixel_variance16x8_c(const uint8_t *src_ptr, int source_str ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
450 #define vp9_sub_pixel_variance16x8 vp9_sub_pixel_variance16x8_c
451
452 unsigned int vp9_sub_pixel_variance32x16_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigne d int *sse);
453 #define vp9_sub_pixel_variance32x16 vp9_sub_pixel_variance32x16_c
454
455 unsigned int vp9_sub_pixel_variance32x32_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigne d int *sse);
456 #define vp9_sub_pixel_variance32x32 vp9_sub_pixel_variance32x32_c
457
458 unsigned int vp9_sub_pixel_variance32x64_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigne d int *sse);
459 #define vp9_sub_pixel_variance32x64 vp9_sub_pixel_variance32x64_c
460
461 unsigned int vp9_sub_pixel_variance4x4_c(const uint8_t *src_ptr, int source_stri de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
462 #define vp9_sub_pixel_variance4x4 vp9_sub_pixel_variance4x4_c
463
464 unsigned int vp9_sub_pixel_variance4x8_c(const uint8_t *src_ptr, int source_stri de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned i nt *sse);
465 #define vp9_sub_pixel_variance4x8 vp9_sub_pixel_variance4x8_c
466
467 unsigned int vp9_sub_pixel_variance64x32_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigne d int *sse);
468 #define vp9_sub_pixel_variance64x32 vp9_sub_pixel_variance64x32_c
469
470 unsigned int vp9_sub_pixel_variance64x64_c(const uint8_t *src_ptr, int source_st ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigne d int *sse);
471 #define vp9_sub_pixel_variance64x64 vp9_sub_pixel_variance64x64_c
472
473 unsigned int vp9_sub_pixel_variance8x16_c(const uint8_t *src_ptr, int source_str ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
474 #define vp9_sub_pixel_variance8x16 vp9_sub_pixel_variance8x16_c
475
476 unsigned int vp9_sub_pixel_variance8x4_c(const uint8_t *src_ptr, int source_stri de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned i nt *sse);
477 #define vp9_sub_pixel_variance8x4 vp9_sub_pixel_variance8x4_c
478
479 unsigned int vp9_sub_pixel_variance8x8_c(const uint8_t *src_ptr, int source_stri de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
480 #define vp9_sub_pixel_variance8x8 vp9_sub_pixel_variance8x8_c
481
482 void vp9_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);
483 #define vp9_subtract_block vp9_subtract_block_c
484
485 void vp9_temporal_filter_apply_c(uint8_t *frame1, unsigned int stride, uint8_t * frame2, unsigned int block_width, unsigned int block_height, int strength, int f ilter_weight, unsigned int *accumulator, uint16_t *count);
486 #define vp9_temporal_filter_apply vp9_temporal_filter_apply_c
487
488 void vp9_tm_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
489 #define vp9_tm_predictor_16x16 vp9_tm_predictor_16x16_c
490
491 void vp9_tm_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
492 #define vp9_tm_predictor_32x32 vp9_tm_predictor_32x32_c
493
494 void vp9_tm_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
495 #define vp9_tm_predictor_4x4 vp9_tm_predictor_4x4_c
496
497 void vp9_tm_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
498 #define vp9_tm_predictor_8x8 vp9_tm_predictor_8x8_c
499
500 void vp9_v_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
501 #define vp9_v_predictor_16x16 vp9_v_predictor_16x16_c
502
503 void vp9_v_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
504 #define vp9_v_predictor_32x32 vp9_v_predictor_32x32_c
505
506 void vp9_v_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left);
507 #define vp9_v_predictor_4x4 vp9_v_predictor_4x4_c
508
509 void vp9_v_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left);
510 #define vp9_v_predictor_8x8 vp9_v_predictor_8x8_c
511
512 unsigned int vp9_variance16x16_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
513 #define vp9_variance16x16 vp9_variance16x16_c
514
515 unsigned int vp9_variance16x32_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
516 #define vp9_variance16x32 vp9_variance16x32_c
517
518 unsigned int vp9_variance16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
519 #define vp9_variance16x8 vp9_variance16x8_c
520
521 unsigned int vp9_variance32x16_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
522 #define vp9_variance32x16 vp9_variance32x16_c
523
524 unsigned int vp9_variance32x32_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
525 #define vp9_variance32x32 vp9_variance32x32_c
526
527 unsigned int vp9_variance32x64_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
528 #define vp9_variance32x64 vp9_variance32x64_c
529
530 unsigned int vp9_variance4x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
531 #define vp9_variance4x4 vp9_variance4x4_c
532
533 unsigned int vp9_variance4x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
534 #define vp9_variance4x8 vp9_variance4x8_c
535
536 unsigned int vp9_variance64x32_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
537 #define vp9_variance64x32 vp9_variance64x32_c
538
539 unsigned int vp9_variance64x64_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
540 #define vp9_variance64x64 vp9_variance64x64_c
541
542 unsigned int vp9_variance8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
543 #define vp9_variance8x16 vp9_variance8x16_c
544
545 unsigned int vp9_variance8x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
546 #define vp9_variance8x4 vp9_variance8x4_c
547
548 unsigned int vp9_variance8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
549 #define vp9_variance8x8 vp9_variance8x8_c
550
551 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl);
552 #define vp9_vector_var vp9_vector_var_c
553
554 void vp9_rtcd(void);
555
556 #include "vpx_config.h"
557
558 #ifdef RTCD_C
559 #include "vpx_ports/arm.h"
560 static void setup_rtcd_internal(void)
561 {
562 int flags = arm_cpu_caps();
563
564 (void)flags;
565
566 }
567 #endif
568
569 #ifdef __cplusplus
570 } // extern "C"
571 #endif
572
573 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698