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
11extern "C" {
12#endif
13
14/*
15 * VP8
16 */
17
18struct blockd;
19struct macroblockd;
20struct loop_filter_info;
21
22/* Encoder forward decls */
23struct block;
24struct macroblock;
25struct variance_vtable;
26union int_mv;
27struct yv12_buffer_config;
28
29void vp8_bilinear_predict16x16_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
30void 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
33void vp8_bilinear_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
34void 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
37void vp8_bilinear_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
38void 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
41void vp8_bilinear_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
42void 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
45void 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
48void 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
51void 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
54int vp8_block_error_c(short *coeff, short *dqcoeff);
55#define vp8_block_error vp8_block_error_c
56
57void vp8_build_intra_predictors_mbuv_s_c(struct macroblockd *x, unsigned char * uabove_row, unsigned char * vabove_row,  unsigned char *uleft, unsigned char *vleft, 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
60void vp8_build_intra_predictors_mby_s_c(struct macroblockd *x, unsigned char * yabove_row, unsigned char * yleft, int left_stride, unsigned char * ypred_ptr, int y_stride);
61#define vp8_build_intra_predictors_mby_s vp8_build_intra_predictors_mby_s_c
62
63void vp8_clear_system_state_c();
64#define vp8_clear_system_state vp8_clear_system_state_c
65
66void vp8_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
67void vp8_copy_mem16x16_neon(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
68#define vp8_copy_mem16x16 vp8_copy_mem16x16_neon
69
70void vp8_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
71void 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
74void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
75void 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
78void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, unsigned char *dst, int dst_stride);
79void 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
82int 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_stride, unsigned int motion_magnitude, int increase_denoising);
83int vp8_denoiser_filter_neon(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_stride, unsigned int motion_magnitude, int increase_denoising);
84#define vp8_denoiser_filter vp8_denoiser_filter_neon
85
86void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
87void vp8_dequant_idct_add_neon(short *input, short *dq, unsigned char *output, int stride);
88#define vp8_dequant_idct_add vp8_dequant_idct_add_neon
89
90void 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
93void 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
96void vp8_dequantize_b_c(struct blockd*, short *dqc);
97void vp8_dequantize_b_neon(struct blockd*, short *dqc);
98#define vp8_dequantize_b vp8_dequantize_b_neon
99
100int vp8_diamond_search_sad_c(struct macroblock *x, struct block *b, struct blockd *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
103void vp8_fast_quantize_b_c(struct block *, struct blockd *);
104#define vp8_fast_quantize_b vp8_fast_quantize_b_c
105
106void vp8_fast_quantize_b_pair_c(struct block *b1, struct block *b2, struct blockd *d1, struct blockd *d2);
107#define vp8_fast_quantize_b_pair vp8_fast_quantize_b_pair_c
108
109void vp8_filter_by_weight16x16_c(unsigned char *src, int src_stride, unsigned char *dst, int dst_stride, int src_weight);
110#define vp8_filter_by_weight16x16 vp8_filter_by_weight16x16_c
111
112void 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
115void 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
118int 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
121unsigned 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
124unsigned int vp8_get_mb_ss_c(const short *);
125#define vp8_get_mb_ss vp8_get_mb_ss_c
126
127void 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
130void 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
133void 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
136void vp8_loop_filter_mbh_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
137void 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
140void vp8_loop_filter_mbv_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
141void 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
144void vp8_loop_filter_bhs_c(unsigned char *y, int ystride, const unsigned char *blimit);
145void 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
148void vp8_loop_filter_bvs_c(unsigned char *y, int ystride, const unsigned char *blimit);
149#define vp8_loop_filter_simple_bv vp8_loop_filter_bvs_c
150
151void vp8_loop_filter_simple_horizontal_edge_c(unsigned char *y, int ystride, const unsigned char *blimit);
152void vp8_loop_filter_mbhs_neon(unsigned char *y, int ystride, const unsigned char *blimit);
153#define vp8_loop_filter_simple_mbh vp8_loop_filter_mbhs_neon
154
155void 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
158int vp8_mbblock_error_c(struct macroblock *mb, int dc);
159#define vp8_mbblock_error vp8_mbblock_error_c
160
161void vp8_mbpost_proc_across_ip_c(unsigned char *dst, int pitch, int rows, int cols,int flimit);
162#define vp8_mbpost_proc_across_ip vp8_mbpost_proc_across_ip_c
163
164void vp8_mbpost_proc_down_c(unsigned char *dst, int pitch, int rows, int cols,int flimit);
165#define vp8_mbpost_proc_down vp8_mbpost_proc_down_c
166
167int vp8_mbuverror_c(struct macroblock *mb);
168#define vp8_mbuverror vp8_mbuverror_c
169
170unsigned int vp8_mse16x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned int *sse);
171#define vp8_mse16x16 vp8_mse16x16_c
172
173void vp8_plane_add_noise_c(unsigned char *s, char *noise, char blackclamp[16], char whiteclamp[16], char bothclamp[16], unsigned int w, unsigned int h, int pitch);
174#define vp8_plane_add_noise vp8_plane_add_noise_c
175
176void vp8_post_proc_down_and_across_mb_row_c(unsigned char *src, unsigned char *dst, 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_row_c
178
179void vp8_quantize_mb_c(struct macroblock *);
180void vp8_quantize_mb_neon(struct macroblock *);
181#define vp8_quantize_mb vp8_quantize_mb_neon
182
183void vp8_quantize_mbuv_c(struct macroblock *);
184void vp8_quantize_mbuv_neon(struct macroblock *);
185#define vp8_quantize_mbuv vp8_quantize_mbuv_neon
186
187void vp8_quantize_mby_c(struct macroblock *);
188void vp8_quantize_mby_neon(struct macroblock *);
189#define vp8_quantize_mby vp8_quantize_mby_neon
190
191int vp8_refining_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);
192#define vp8_refining_search_sad vp8_refining_search_sad_c
193
194void vp8_regular_quantize_b_c(struct block *, struct blockd *);
195#define vp8_regular_quantize_b vp8_regular_quantize_b_c
196
197void vp8_regular_quantize_b_pair_c(struct block *b1, struct block *b2, struct blockd *d1, struct blockd *d2);
198#define vp8_regular_quantize_b_pair vp8_regular_quantize_b_pair_c
199
200unsigned int vp8_sad16x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
201unsigned int vp8_sad16x16_neon(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
202#define vp8_sad16x16 vp8_sad16x16_neon
203
204void vp8_sad16x16x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned int *sad_array);
205#define vp8_sad16x16x3 vp8_sad16x16x3_c
206
207void vp8_sad16x16x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int  ref_stride, unsigned int *sad_array);
208#define vp8_sad16x16x4d vp8_sad16x16x4d_c
209
210void vp8_sad16x16x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned short *sad_array);
211#define vp8_sad16x16x8 vp8_sad16x16x8_c
212
213unsigned int vp8_sad16x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
214unsigned int vp8_sad16x8_neon(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
215#define vp8_sad16x8 vp8_sad16x8_neon
216
217void vp8_sad16x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned int *sad_array);
218#define vp8_sad16x8x3 vp8_sad16x8x3_c
219
220void vp8_sad16x8x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int  ref_stride, unsigned int *sad_array);
221#define vp8_sad16x8x4d vp8_sad16x8x4d_c
222
223void vp8_sad16x8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned short *sad_array);
224#define vp8_sad16x8x8 vp8_sad16x8x8_c
225
226unsigned int vp8_sad4x4_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
227unsigned 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
230void 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
233void vp8_sad4x4x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int  ref_stride, unsigned int *sad_array);
234#define vp8_sad4x4x4d vp8_sad4x4x4d_c
235
236void 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
239unsigned int vp8_sad8x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
240unsigned int vp8_sad8x16_neon(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
241#define vp8_sad8x16 vp8_sad8x16_neon
242
243void vp8_sad8x16x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned int *sad_array);
244#define vp8_sad8x16x3 vp8_sad8x16x3_c
245
246void vp8_sad8x16x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int  ref_stride, unsigned int *sad_array);
247#define vp8_sad8x16x4d vp8_sad8x16x4d_c
248
249void vp8_sad8x16x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned short *sad_array);
250#define vp8_sad8x16x8 vp8_sad8x16x8_c
251
252unsigned int vp8_sad8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
253unsigned 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
256void 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
259void vp8_sad8x8x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int  ref_stride, unsigned int *sad_array);
260#define vp8_sad8x8x4d vp8_sad8x8x4d_c
261
262void 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
265void vp8_short_fdct4x4_c(short *input, short *output, int pitch);
266#define vp8_short_fdct4x4 vp8_short_fdct4x4_c
267
268void vp8_short_fdct8x4_c(short *input, short *output, int pitch);
269#define vp8_short_fdct8x4 vp8_short_fdct8x4_c
270
271void vp8_short_idct4x4llm_c(short *input, unsigned char *pred, int pitch, unsigned char *dst, int dst_stride);
272void vp8_short_idct4x4llm_neon(short *input, unsigned char *pred, int pitch, unsigned char *dst, int dst_stride);
273#define vp8_short_idct4x4llm vp8_short_idct4x4llm_neon
274
275void vp8_short_inv_walsh4x4_c(short *input, short *output);
276void vp8_short_inv_walsh4x4_neon(short *input, short *output);
277#define vp8_short_inv_walsh4x4 vp8_short_inv_walsh4x4_neon
278
279void vp8_short_inv_walsh4x4_1_c(short *input, short *output);
280#define vp8_short_inv_walsh4x4_1 vp8_short_inv_walsh4x4_1_c
281
282void vp8_short_walsh4x4_c(short *input, short *output, int pitch);
283#define vp8_short_walsh4x4 vp8_short_walsh4x4_c
284
285void vp8_sixtap_predict16x16_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
286void 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
289void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
290void vp8_sixtap_predict4x4_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
291#define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_neon
292
293void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
294void vp8_sixtap_predict8x4_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
295#define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_neon
296
297void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
298void vp8_sixtap_predict8x8_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
299#define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_neon
300
301unsigned 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
304unsigned int vp8_sub_pixel_variance16x16_c(const unsigned char  *src_ptr, int  source_stride, int  xoffset, int  yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
305#define vp8_sub_pixel_variance16x16 vp8_sub_pixel_variance16x16_c
306
307unsigned int vp8_sub_pixel_variance16x8_c(const unsigned char  *src_ptr, int  source_stride, int  xoffset, int  yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
308#define vp8_sub_pixel_variance16x8 vp8_sub_pixel_variance16x8_c
309
310unsigned int vp8_sub_pixel_variance4x4_c(const unsigned char  *src_ptr, int  source_stride, int  xoffset, int  yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
311#define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c
312
313unsigned int vp8_sub_pixel_variance8x16_c(const unsigned char  *src_ptr, int  source_stride, int  xoffset, int  yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
314#define vp8_sub_pixel_variance8x16 vp8_sub_pixel_variance8x16_c
315
316unsigned int vp8_sub_pixel_variance8x8_c(const unsigned char  *src_ptr, int  source_stride, int  xoffset, int  yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
317#define vp8_sub_pixel_variance8x8 vp8_sub_pixel_variance8x8_c
318
319void vp8_subtract_b_c(struct block *be, struct blockd *bd, int pitch);
320#define vp8_subtract_b vp8_subtract_b_c
321
322void 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
325void vp8_subtract_mby_c(short *diff, unsigned char *src, int src_stride, unsigned char *pred, int pred_stride);
326#define vp8_subtract_mby vp8_subtract_mby_c
327
328unsigned int vp8_variance16x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned int *sse);
329unsigned int vp8_variance16x16_neon(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned int *sse);
330#define vp8_variance16x16 vp8_variance16x16_neon
331
332unsigned int vp8_variance16x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned int *sse);
333unsigned int vp8_variance16x8_neon(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned int *sse);
334#define vp8_variance16x8 vp8_variance16x8_neon
335
336unsigned 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
339unsigned int vp8_variance8x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned int *sse);
340unsigned int vp8_variance8x16_neon(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned int *sse);
341#define vp8_variance8x16 vp8_variance8x16_neon
342
343unsigned int vp8_variance8x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned int *sse);
344unsigned int vp8_variance8x8_neon(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int  ref_stride, unsigned int *sse);
345#define vp8_variance8x8 vp8_variance8x8_neon
346
347unsigned 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
350unsigned 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
353unsigned 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
356void vp8_yv12_copy_partial_frame_c(struct yv12_buffer_config *src_ybc, struct yv12_buffer_config *dst_ybc);
357#define vp8_yv12_copy_partial_frame vp8_yv12_copy_partial_frame_c
358
359void vp8_rtcd(void);
360
361#include "vpx_config.h"
362
363#ifdef RTCD_C
364#include "vpx_ports/arm.h"
365static 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
379