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

Side by Side Diff: source/config/linux/arm64/vp8_rtcd.h

Issue 290653003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 #ifndef VP8_RTCD_H_
2 #define VP8_RTCD_H_
3
4 #ifdef RTCD_C
5 #define RTCD_EXTERN
6 #else
7 #define RTCD_EXTERN extern
8 #endif
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
14 /*
15 * VP8
16 */
17
18 struct blockd;
19 struct macroblockd;
20 struct loop_filter_info;
21
22 /* Encoder forward decls */
23 struct block;
24 struct macroblock;
25 struct variance_vtable;
26 union int_mv;
27 struct yv12_buffer_config;
28
29 void vp8_bilinear_predict16x16_c(unsigned char *src, int src_pitch, int xofst, i nt yofst, unsigned char *dst, int dst_pitch);
30 void vp8_bilinear_predict16x16_neon(unsigned char *src, int src_pitch, int xofst , int yofst, unsigned char *dst, int dst_pitch);
31 #define vp8_bilinear_predict16x16 vp8_bilinear_predict16x16_neon
32
33 void vp8_bilinear_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
34 void vp8_bilinear_predict4x4_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
35 #define vp8_bilinear_predict4x4 vp8_bilinear_predict4x4_neon
36
37 void vp8_bilinear_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
38 void vp8_bilinear_predict8x4_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
39 #define vp8_bilinear_predict8x4 vp8_bilinear_predict8x4_neon
40
41 void vp8_bilinear_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
42 void vp8_bilinear_predict8x8_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
43 #define vp8_bilinear_predict8x8 vp8_bilinear_predict8x8_neon
44
45 void vp8_blend_b_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
46 #define vp8_blend_b vp8_blend_b_c
47
48 void vp8_blend_mb_inner_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
49 #define vp8_blend_mb_inner vp8_blend_mb_inner_c
50
51 void vp8_blend_mb_outer_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
52 #define vp8_blend_mb_outer vp8_blend_mb_outer_c
53
54 int vp8_block_error_c(short *coeff, short *dqcoeff);
55 #define vp8_block_error vp8_block_error_c
56
57 void vp8_build_intra_predictors_mbuv_s_c(struct macroblockd *x, unsigned char * uabove_row, unsigned char * vabove_row, unsigned char *uleft, unsigned char *vl eft, int left_stride, unsigned char * upred_ptr, unsigned char * vpred_ptr, int pred_stride);
58 #define vp8_build_intra_predictors_mbuv_s vp8_build_intra_predictors_mbuv_s_c
59
60 void vp8_build_intra_predictors_mby_s_c(struct macroblockd *x, unsigned char * y above_row, unsigned char * yleft, int left_stride, unsigned char * ypred_ptr, in t y_stride);
61 #define vp8_build_intra_predictors_mby_s vp8_build_intra_predictors_mby_s_c
62
63 void vp8_clear_system_state_c();
64 #define vp8_clear_system_state vp8_clear_system_state_c
65
66 void vp8_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
67 void vp8_copy_mem16x16_neon(unsigned char *src, int src_pitch, unsigned char *ds t, int dst_pitch);
68 #define vp8_copy_mem16x16 vp8_copy_mem16x16_neon
69
70 void vp8_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch);
71 void vp8_copy_mem8x4_neon(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
72 #define vp8_copy_mem8x4 vp8_copy_mem8x4_neon
73
74 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch);
75 void vp8_copy_mem8x8_neon(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
76 #define vp8_copy_mem8x8 vp8_copy_mem8x8_neon
77
78 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, u nsigned char *dst, int dst_stride);
79 void vp8_dc_only_idct_add_neon(short input, unsigned char *pred, int pred_stride , unsigned char *dst, int dst_stride);
80 #define vp8_dc_only_idct_add vp8_dc_only_idct_add_neon
81
82 int vp8_denoiser_filter_c(unsigned char *mc_running_avg_y, int mc_avg_y_stride, unsigned char *running_avg_y, int avg_y_stride, unsigned char *sig, int sig_stri de, unsigned int motion_magnitude);
83 int vp8_denoiser_filter_neon(unsigned char *mc_running_avg_y, int mc_avg_y_strid e, unsigned char *running_avg_y, int avg_y_stride, unsigned char *sig, int sig_s tride, unsigned int motion_magnitude);
84 #define vp8_denoiser_filter vp8_denoiser_filter_neon
85
86 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
87 void vp8_dequant_idct_add_neon(short *input, short *dq, unsigned char *output, i nt stride);
88 #define vp8_dequant_idct_add vp8_dequant_idct_add_neon
89
90 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
91 #define vp8_dequant_idct_add_uv_block vp8_dequant_idct_add_uv_block_c
92
93 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
94 #define vp8_dequant_idct_add_y_block vp8_dequant_idct_add_y_block_c
95
96 void vp8_dequantize_b_c(struct blockd*, short *dqc);
97 void vp8_dequantize_b_neon(struct blockd*, short *dqc);
98 #define vp8_dequantize_b vp8_dequantize_b_neon
99
100 int vp8_diamond_search_sad_c(struct macroblock *x, struct block *b, struct block d *d, union int_mv *ref_mv, union int_mv *best_mv, int search_param, int sad_per _bit, int *num00, struct variance_vtable *fn_ptr, int *mvcost[2], union int_mv * center_mv);
101 #define vp8_diamond_search_sad vp8_diamond_search_sad_c
102
103 void vp8_fast_quantize_b_c(struct block *, struct blockd *);
104 #define vp8_fast_quantize_b vp8_fast_quantize_b_c
105
106 void vp8_fast_quantize_b_pair_c(struct block *b1, struct block *b2, struct block d *d1, struct blockd *d2);
107 #define vp8_fast_quantize_b_pair vp8_fast_quantize_b_pair_c
108
109 void vp8_filter_by_weight16x16_c(unsigned char *src, int src_stride, unsigned ch ar *dst, int dst_stride, int src_weight);
110 #define vp8_filter_by_weight16x16 vp8_filter_by_weight16x16_c
111
112 void vp8_filter_by_weight4x4_c(unsigned char *src, int src_stride, unsigned char *dst, int dst_stride, int src_weight);
113 #define vp8_filter_by_weight4x4 vp8_filter_by_weight4x4_c
114
115 void vp8_filter_by_weight8x8_c(unsigned char *src, int src_stride, unsigned char *dst, int dst_stride, int src_weight);
116 #define vp8_filter_by_weight8x8 vp8_filter_by_weight8x8_c
117
118 int vp8_full_search_sad_c(struct macroblock *x, struct block *b, struct blockd * d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable * fn_ptr, int *mvcost[2], union int_mv *center_mv);
119 #define vp8_full_search_sad vp8_full_search_sad_c
120
121 unsigned int vp8_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
122 #define vp8_get4x4sse_cs vp8_get4x4sse_cs_c
123
124 unsigned int vp8_get_mb_ss_c(const short *);
125 #define vp8_get_mb_ss vp8_get_mb_ss_c
126
127 void vp8_intra4x4_predict_c(unsigned char *Above, unsigned char *yleft, int left _stride, int b_mode, unsigned char *dst, int dst_stride, unsigned char top_left) ;
128 #define vp8_intra4x4_predict vp8_intra4x4_predict_c
129
130 void vp8_loop_filter_bh_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
131 #define vp8_loop_filter_bh vp8_loop_filter_bh_c
132
133 void vp8_loop_filter_bv_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
134 #define vp8_loop_filter_bv vp8_loop_filter_bv_c
135
136 void vp8_loop_filter_mbh_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
137 void vp8_loop_filter_mbh_neon(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
138 #define vp8_loop_filter_mbh vp8_loop_filter_mbh_neon
139
140 void vp8_loop_filter_mbv_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
141 void vp8_loop_filter_mbv_neon(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
142 #define vp8_loop_filter_mbv vp8_loop_filter_mbv_neon
143
144 void vp8_loop_filter_bhs_c(unsigned char *y, int ystride, const unsigned char *b limit);
145 void vp8_loop_filter_bhs_neon(unsigned char *y, int ystride, const unsigned char *blimit);
146 #define vp8_loop_filter_simple_bh vp8_loop_filter_bhs_neon
147
148 void vp8_loop_filter_bvs_c(unsigned char *y, int ystride, const unsigned char *b limit);
149 #define vp8_loop_filter_simple_bv vp8_loop_filter_bvs_c
150
151 void vp8_loop_filter_simple_horizontal_edge_c(unsigned char *y, int ystride, con st unsigned char *blimit);
152 void vp8_loop_filter_mbhs_neon(unsigned char *y, int ystride, const unsigned cha r *blimit);
153 #define vp8_loop_filter_simple_mbh vp8_loop_filter_mbhs_neon
154
155 void vp8_loop_filter_simple_vertical_edge_c(unsigned char *y, int ystride, const unsigned char *blimit);
156 #define vp8_loop_filter_simple_mbv vp8_loop_filter_simple_vertical_edge_c
157
158 int vp8_mbblock_error_c(struct macroblock *mb, int dc);
159 #define vp8_mbblock_error vp8_mbblock_error_c
160
161 void vp8_mbpost_proc_across_ip_c(unsigned char *dst, int pitch, int rows, int co ls,int flimit);
162 #define vp8_mbpost_proc_across_ip vp8_mbpost_proc_across_ip_c
163
164 void vp8_mbpost_proc_down_c(unsigned char *dst, int pitch, int rows, int cols,in t flimit);
165 #define vp8_mbpost_proc_down vp8_mbpost_proc_down_c
166
167 int vp8_mbuverror_c(struct macroblock *mb);
168 #define vp8_mbuverror vp8_mbuverror_c
169
170 unsigned int vp8_mse16x16_c(const unsigned char *src_ptr, int source_stride, con st unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
171 #define vp8_mse16x16 vp8_mse16x16_c
172
173 void vp8_plane_add_noise_c(unsigned char *s, char *noise, char blackclamp[16], c har whiteclamp[16], char bothclamp[16], unsigned int w, unsigned int h, int pitc h);
174 #define vp8_plane_add_noise vp8_plane_add_noise_c
175
176 void vp8_post_proc_down_and_across_mb_row_c(unsigned char *src, unsigned char *d st, int src_pitch, int dst_pitch, int cols, unsigned char *flimits, int size);
177 #define vp8_post_proc_down_and_across_mb_row vp8_post_proc_down_and_across_mb_ro w_c
178
179 void vp8_quantize_mb_c(struct macroblock *);
180 void vp8_quantize_mb_neon(struct macroblock *);
181 #define vp8_quantize_mb vp8_quantize_mb_neon
182
183 void vp8_quantize_mbuv_c(struct macroblock *);
184 void vp8_quantize_mbuv_neon(struct macroblock *);
185 #define vp8_quantize_mbuv vp8_quantize_mbuv_neon
186
187 void vp8_quantize_mby_c(struct macroblock *);
188 void vp8_quantize_mby_neon(struct macroblock *);
189 #define vp8_quantize_mby vp8_quantize_mby_neon
190
191 int vp8_refining_search_sad_c(struct macroblock *x, struct block *b, struct bloc kd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtab le *fn_ptr, int *mvcost[2], union int_mv *center_mv);
192 #define vp8_refining_search_sad vp8_refining_search_sad_c
193
194 void vp8_regular_quantize_b_c(struct block *, struct blockd *);
195 #define vp8_regular_quantize_b vp8_regular_quantize_b_c
196
197 void vp8_regular_quantize_b_pair_c(struct block *b1, struct block *b2, struct bl ockd *d1, struct blockd *d2);
198 #define vp8_regular_quantize_b_pair vp8_regular_quantize_b_pair_c
199
200 unsigned int vp8_sad16x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
201 unsigned int vp8_sad16x16_neon(const unsigned char *src_ptr, int src_stride, con st unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
202 #define vp8_sad16x16 vp8_sad16x16_neon
203
204 void vp8_sad16x16x3_c(const unsigned char *src_ptr, int src_stride, const unsign ed char *ref_ptr, int ref_stride, unsigned int *sad_array);
205 #define vp8_sad16x16x3 vp8_sad16x16x3_c
206
207 void vp8_sad16x16x4d_c(const unsigned char *src_ptr, int src_stride, const unsig ned char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
208 #define vp8_sad16x16x4d vp8_sad16x16x4d_c
209
210 void vp8_sad16x16x8_c(const unsigned char *src_ptr, int src_stride, const unsign ed char *ref_ptr, int ref_stride, unsigned short *sad_array);
211 #define vp8_sad16x16x8 vp8_sad16x16x8_c
212
213 unsigned int vp8_sad16x8_c(const unsigned char *src_ptr, int src_stride, const u nsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
214 unsigned int vp8_sad16x8_neon(const unsigned char *src_ptr, int src_stride, cons t unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
215 #define vp8_sad16x8 vp8_sad16x8_neon
216
217 void vp8_sad16x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigne d char *ref_ptr, int ref_stride, unsigned int *sad_array);
218 #define vp8_sad16x8x3 vp8_sad16x8x3_c
219
220 void vp8_sad16x8x4d_c(const unsigned char *src_ptr, int src_stride, const unsign ed char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
221 #define vp8_sad16x8x4d vp8_sad16x8x4d_c
222
223 void vp8_sad16x8x8_c(const unsigned char *src_ptr, int src_stride, const unsigne d char *ref_ptr, int ref_stride, unsigned short *sad_array);
224 #define vp8_sad16x8x8 vp8_sad16x8x8_c
225
226 unsigned int vp8_sad4x4_c(const unsigned char *src_ptr, int src_stride, const un signed char *ref_ptr, int ref_stride, unsigned int max_sad);
227 unsigned int vp8_sad4x4_neon(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
228 #define vp8_sad4x4 vp8_sad4x4_neon
229
230 void vp8_sad4x4x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
231 #define vp8_sad4x4x3 vp8_sad4x4x3_c
232
233 void vp8_sad4x4x4d_c(const unsigned char *src_ptr, int src_stride, const unsigne d char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
234 #define vp8_sad4x4x4d vp8_sad4x4x4d_c
235
236 void vp8_sad4x4x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array);
237 #define vp8_sad4x4x8 vp8_sad4x4x8_c
238
239 unsigned int vp8_sad8x16_c(const unsigned char *src_ptr, int src_stride, const u nsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
240 unsigned int vp8_sad8x16_neon(const unsigned char *src_ptr, int src_stride, cons t unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
241 #define vp8_sad8x16 vp8_sad8x16_neon
242
243 void vp8_sad8x16x3_c(const unsigned char *src_ptr, int src_stride, const unsigne d char *ref_ptr, int ref_stride, unsigned int *sad_array);
244 #define vp8_sad8x16x3 vp8_sad8x16x3_c
245
246 void vp8_sad8x16x4d_c(const unsigned char *src_ptr, int src_stride, const unsign ed char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
247 #define vp8_sad8x16x4d vp8_sad8x16x4d_c
248
249 void vp8_sad8x16x8_c(const unsigned char *src_ptr, int src_stride, const unsigne d char *ref_ptr, int ref_stride, unsigned short *sad_array);
250 #define vp8_sad8x16x8 vp8_sad8x16x8_c
251
252 unsigned int vp8_sad8x8_c(const unsigned char *src_ptr, int src_stride, const un signed char *ref_ptr, int ref_stride, unsigned int max_sad);
253 unsigned int vp8_sad8x8_neon(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
254 #define vp8_sad8x8 vp8_sad8x8_neon
255
256 void vp8_sad8x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
257 #define vp8_sad8x8x3 vp8_sad8x8x3_c
258
259 void vp8_sad8x8x4d_c(const unsigned char *src_ptr, int src_stride, const unsigne d char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
260 #define vp8_sad8x8x4d vp8_sad8x8x4d_c
261
262 void vp8_sad8x8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array);
263 #define vp8_sad8x8x8 vp8_sad8x8x8_c
264
265 void vp8_short_fdct4x4_c(short *input, short *output, int pitch);
266 #define vp8_short_fdct4x4 vp8_short_fdct4x4_c
267
268 void vp8_short_fdct8x4_c(short *input, short *output, int pitch);
269 #define vp8_short_fdct8x4 vp8_short_fdct8x4_c
270
271 void vp8_short_idct4x4llm_c(short *input, unsigned char *pred, int pitch, unsign ed char *dst, int dst_stride);
272 void vp8_short_idct4x4llm_neon(short *input, unsigned char *pred, int pitch, uns igned char *dst, int dst_stride);
273 #define vp8_short_idct4x4llm vp8_short_idct4x4llm_neon
274
275 void vp8_short_inv_walsh4x4_c(short *input, short *output);
276 void vp8_short_inv_walsh4x4_neon(short *input, short *output);
277 #define vp8_short_inv_walsh4x4 vp8_short_inv_walsh4x4_neon
278
279 void vp8_short_inv_walsh4x4_1_c(short *input, short *output);
280 #define vp8_short_inv_walsh4x4_1 vp8_short_inv_walsh4x4_1_c
281
282 void vp8_short_walsh4x4_c(short *input, short *output, int pitch);
283 #define vp8_short_walsh4x4 vp8_short_walsh4x4_c
284
285 void vp8_sixtap_predict16x16_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
286 void vp8_sixtap_predict16x16_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
287 #define vp8_sixtap_predict16x16 vp8_sixtap_predict16x16_neon
288
289 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
290 void vp8_sixtap_predict4x4_neon(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch);
291 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_neon
292
293 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
294 void vp8_sixtap_predict8x4_neon(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch);
295 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_neon
296
297 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
298 void vp8_sixtap_predict8x8_neon(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch);
299 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_neon
300
301 unsigned int vp8_sub_pixel_mse16x16_c(const unsigned char *src_ptr, int source _stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride , unsigned int *sse);
302 #define vp8_sub_pixel_mse16x16 vp8_sub_pixel_mse16x16_c
303
304 unsigned int vp8_sub_pixel_variance16x16_c(const unsigned char *src_ptr, int s ource_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refs tride, unsigned int *sse);
305 #define vp8_sub_pixel_variance16x16 vp8_sub_pixel_variance16x16_c
306
307 unsigned int vp8_sub_pixel_variance16x8_c(const unsigned char *src_ptr, int so urce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refst ride, unsigned int *sse);
308 #define vp8_sub_pixel_variance16x8 vp8_sub_pixel_variance16x8_c
309
310 unsigned int vp8_sub_pixel_variance4x4_c(const unsigned char *src_ptr, int sou rce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstr ide, unsigned int *sse);
311 #define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c
312
313 unsigned int vp8_sub_pixel_variance8x16_c(const unsigned char *src_ptr, int so urce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refst ride, unsigned int *sse);
314 #define vp8_sub_pixel_variance8x16 vp8_sub_pixel_variance8x16_c
315
316 unsigned int vp8_sub_pixel_variance8x8_c(const unsigned char *src_ptr, int sou rce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstr ide, unsigned int *sse);
317 #define vp8_sub_pixel_variance8x8 vp8_sub_pixel_variance8x8_c
318
319 void vp8_subtract_b_c(struct block *be, struct blockd *bd, int pitch);
320 #define vp8_subtract_b vp8_subtract_b_c
321
322 void vp8_subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc, int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride);
323 #define vp8_subtract_mbuv vp8_subtract_mbuv_c
324
325 void vp8_subtract_mby_c(short *diff, unsigned char *src, int src_stride, unsigne d char *pred, int pred_stride);
326 #define vp8_subtract_mby vp8_subtract_mby_c
327
328 unsigned int vp8_variance16x16_c(const unsigned char *src_ptr, int source_stride , const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
329 unsigned int vp8_variance16x16_neon(const unsigned char *src_ptr, int source_str ide, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
330 #define vp8_variance16x16 vp8_variance16x16_neon
331
332 unsigned int vp8_variance16x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
333 unsigned int vp8_variance16x8_neon(const unsigned char *src_ptr, int source_stri de, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
334 #define vp8_variance16x8 vp8_variance16x8_neon
335
336 unsigned int vp8_variance4x4_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
337 #define vp8_variance4x4 vp8_variance4x4_c
338
339 unsigned int vp8_variance8x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
340 unsigned int vp8_variance8x16_neon(const unsigned char *src_ptr, int source_stri de, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
341 #define vp8_variance8x16 vp8_variance8x16_neon
342
343 unsigned int vp8_variance8x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
344 unsigned int vp8_variance8x8_neon(const unsigned char *src_ptr, int source_strid e, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
345 #define vp8_variance8x8 vp8_variance8x8_neon
346
347 unsigned int vp8_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse) ;
348 #define vp8_variance_halfpixvar16x16_h vp8_variance_halfpixvar16x16_h_c
349
350 unsigned int vp8_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse );
351 #define vp8_variance_halfpixvar16x16_hv vp8_variance_halfpixvar16x16_hv_c
352
353 unsigned int vp8_variance_halfpixvar16x16_v_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse) ;
354 #define vp8_variance_halfpixvar16x16_v vp8_variance_halfpixvar16x16_v_c
355
356 void vp8_yv12_copy_partial_frame_c(struct yv12_buffer_config *src_ybc, struct yv 12_buffer_config *dst_ybc);
357 #define vp8_yv12_copy_partial_frame vp8_yv12_copy_partial_frame_c
358
359 void vp8_rtcd(void);
360
361 #include "vpx_config.h"
362
363 #ifdef RTCD_C
364 #include "vpx_ports/arm.h"
365 static void setup_rtcd_internal(void)
366 {
367 int flags = arm_cpu_caps();
368
369 (void)flags;
370
371 }
372 #endif
373
374 #ifdef __cplusplus
375 } // extern "C"
376 #endif
377
378 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698