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

Side by Side Diff: source/config/linux/arm-neon/vp9_rtcd.h

Issue 11555023: libvpx: Add VP9 decoder. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 8 years 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 #ifndef VP__RTCD_
2 #define VP__RTCD_
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 struct loop_filter_info;
15 struct blockd;
16 struct macroblockd;
17 struct loop_filter_info;
18
19 /* Encoder forward decls */
20 struct block;
21 struct macroblock;
22 struct variance_vtable;
23
24 #define DEC_MVCOSTS int *mvjcost, int *mvcost[2]
25 union int_mv;
26 struct yv12_buffer_config;
27
28 void vp9_filter_block2d_4x4_8_c(const unsigned char *src_ptr, const unsigned int src_stride, const short *HFilter_aligned16, const short *VFilter_aligned16, uns igned char *dst_ptr, unsigned int dst_stride);
29 #define vp9_filter_block2d_4x4_8 vp9_filter_block2d_4x4_8_c
30
31 void vp9_filter_block2d_8x4_8_c(const unsigned char *src_ptr, const unsigned int src_stride, const short *HFilter_aligned16, const short *VFilter_aligned16, uns igned char *dst_ptr, unsigned int dst_stride);
32 #define vp9_filter_block2d_8x4_8 vp9_filter_block2d_8x4_8_c
33
34 void vp9_filter_block2d_8x8_8_c(const unsigned char *src_ptr, const unsigned int src_stride, const short *HFilter_aligned16, const short *VFilter_aligned16, uns igned char *dst_ptr, unsigned int dst_stride);
35 #define vp9_filter_block2d_8x8_8 vp9_filter_block2d_8x8_8_c
36
37 void vp9_filter_block2d_16x16_8_c(const unsigned char *src_ptr, const unsigned i nt src_stride, const short *HFilter_aligned16, const short *VFilter_aligned16, u nsigned char *dst_ptr, unsigned int dst_stride);
38 #define vp9_filter_block2d_16x16_8 vp9_filter_block2d_16x16_8_c
39
40 void vp9_dequantize_b_c(struct blockd *x);
41 #define vp9_dequantize_b vp9_dequantize_b_c
42
43 void vp9_dequantize_b_2x2_c(struct blockd *x);
44 #define vp9_dequantize_b_2x2 vp9_dequantize_b_2x2_c
45
46 void vp9_dequant_dc_idct_add_y_block_8x8_c(short *q, const short *dq, unsigned c har *pre, unsigned char *dst, int stride, unsigned short *eobs, const short *dc, struct macroblockd *xd);
47 #define vp9_dequant_dc_idct_add_y_block_8x8 vp9_dequant_dc_idct_add_y_block_8x8_ c
48
49 void vp9_dequant_idct_add_y_block_8x8_c(short *q, const short *dq, unsigned char *pre, unsigned char *dst, int stride, unsigned short *eobs, struct macroblockd *xd);
50 #define vp9_dequant_idct_add_y_block_8x8 vp9_dequant_idct_add_y_block_8x8_c
51
52 void vp9_dequant_idct_add_uv_block_8x8_c(short *q, const short *dq, unsigned cha r *pre, unsigned char *dstu, unsigned char *dstv, int stride, unsigned short *eo bs, struct macroblockd *xd);
53 #define vp9_dequant_idct_add_uv_block_8x8 vp9_dequant_idct_add_uv_block_8x8_c
54
55 void vp9_dequant_idct_add_16x16_c(short *input, const short *dq, unsigned char * pred, unsigned char *dest, int pitch, int stride, unsigned short eobs);
56 #define vp9_dequant_idct_add_16x16 vp9_dequant_idct_add_16x16_c
57
58 void vp9_dequant_idct_add_8x8_c(short *input, const short *dq, unsigned char *pr ed, unsigned char *dest, int pitch, int stride, int dc, unsigned short eobs);
59 #define vp9_dequant_idct_add_8x8 vp9_dequant_idct_add_8x8_c
60
61 void vp9_dequant_idct_add_c(short *input, const short *dq, unsigned char *pred, unsigned char *dest, int pitch, int stride);
62 #define vp9_dequant_idct_add vp9_dequant_idct_add_c
63
64 void vp9_dequant_dc_idct_add_c(short *input, const short *dq, unsigned char *pre d, unsigned char *dest, int pitch, int stride, int Dc);
65 #define vp9_dequant_dc_idct_add vp9_dequant_dc_idct_add_c
66
67 void vp9_dequant_dc_idct_add_y_block_c(short *q, const short *dq, unsigned char *pre, unsigned char *dst, int stride, unsigned short *eobs, const short *dc);
68 #define vp9_dequant_dc_idct_add_y_block vp9_dequant_dc_idct_add_y_block_c
69
70 void vp9_dequant_idct_add_y_block_c(short *q, const short *dq, unsigned char *pr e, unsigned char *dst, int stride, unsigned short *eobs);
71 #define vp9_dequant_idct_add_y_block vp9_dequant_idct_add_y_block_c
72
73 void vp9_dequant_idct_add_uv_block_c(short *q, const short *dq, unsigned char *p re, unsigned char *dstu, unsigned char *dstv, int stride, unsigned short *eobs);
74 #define vp9_dequant_idct_add_uv_block vp9_dequant_idct_add_uv_block_c
75
76 void vp9_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
77 #define vp9_copy_mem16x16 vp9_copy_mem16x16_c
78
79 void vp9_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch);
80 #define vp9_copy_mem8x8 vp9_copy_mem8x8_c
81
82 void vp9_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch);
83 #define vp9_copy_mem8x4 vp9_copy_mem8x4_c
84
85 void vp9_avg_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst, i nt dst_pitch);
86 #define vp9_avg_mem16x16 vp9_avg_mem16x16_c
87
88 void vp9_avg_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
89 #define vp9_avg_mem8x8 vp9_avg_mem8x8_c
90
91 void vp9_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch);
92 #define vp9_copy_mem8x4 vp9_copy_mem8x4_c
93
94 void vp9_recon_b_c(unsigned char *pred_ptr, short *diff_ptr, unsigned char *dst_ ptr, int stride);
95 #define vp9_recon_b vp9_recon_b_c
96
97 void vp9_recon_uv_b_c(unsigned char *pred_ptr, short *diff_ptr, unsigned char *d st_ptr, int stride);
98 #define vp9_recon_uv_b vp9_recon_uv_b_c
99
100 void vp9_recon2b_c(unsigned char *pred_ptr, short *diff_ptr, unsigned char *dst_ ptr, int stride);
101 #define vp9_recon2b vp9_recon2b_c
102
103 void vp9_recon4b_c(unsigned char *pred_ptr, short *diff_ptr, unsigned char *dst_ ptr, int stride);
104 #define vp9_recon4b vp9_recon4b_c
105
106 void vp9_recon_mb_c(struct macroblockd *x);
107 #define vp9_recon_mb vp9_recon_mb_c
108
109 void vp9_recon_mby_c(struct macroblockd *x);
110 #define vp9_recon_mby vp9_recon_mby_c
111
112 void vp9_recon_mby_s_c(struct macroblockd *x, unsigned char *dst);
113 #define vp9_recon_mby_s vp9_recon_mby_s_c
114
115 void vp9_recon_mbuv_s_c(struct macroblockd *x, unsigned char *udst, unsigned cha r *vdst);
116 #define vp9_recon_mbuv_s vp9_recon_mbuv_s_c
117
118 void vp9_build_intra_predictors_mby_s_c(struct macroblockd *x);
119 #define vp9_build_intra_predictors_mby_s vp9_build_intra_predictors_mby_s_c
120
121 void vp9_build_intra_predictors_sby_s_c(struct macroblockd *x);
122 #define vp9_build_intra_predictors_sby_s vp9_build_intra_predictors_sby_s_c
123
124 void vp9_build_intra_predictors_sbuv_s_c(struct macroblockd *x);
125 #define vp9_build_intra_predictors_sbuv_s vp9_build_intra_predictors_sbuv_s_c
126
127 void vp9_build_intra_predictors_mby_c(struct macroblockd *x);
128 #define vp9_build_intra_predictors_mby vp9_build_intra_predictors_mby_c
129
130 void vp9_build_comp_intra_predictors_mby_c(struct macroblockd *x);
131 #define vp9_build_comp_intra_predictors_mby vp9_build_comp_intra_predictors_mby_ c
132
133 void vp9_build_intra_predictors_mby_s_c(struct macroblockd *x);
134 #define vp9_build_intra_predictors_mby_s vp9_build_intra_predictors_mby_s_c
135
136 void vp9_build_intra_predictors_mbuv_c(struct macroblockd *x);
137 #define vp9_build_intra_predictors_mbuv vp9_build_intra_predictors_mbuv_c
138
139 void vp9_build_intra_predictors_mbuv_s_c(struct macroblockd *x);
140 #define vp9_build_intra_predictors_mbuv_s vp9_build_intra_predictors_mbuv_s_c
141
142 void vp9_build_comp_intra_predictors_mbuv_c(struct macroblockd *x);
143 #define vp9_build_comp_intra_predictors_mbuv vp9_build_comp_intra_predictors_mbu v_c
144
145 void vp9_intra4x4_predict_c(struct blockd *x, int b_mode, unsigned char *predict or);
146 #define vp9_intra4x4_predict vp9_intra4x4_predict_c
147
148 void vp9_comp_intra4x4_predict_c(struct blockd *x, int b_mode, int second_mode, unsigned char *predictor);
149 #define vp9_comp_intra4x4_predict vp9_comp_intra4x4_predict_c
150
151 void vp9_intra8x8_predict_c(struct blockd *x, int b_mode, unsigned char *predict or);
152 #define vp9_intra8x8_predict vp9_intra8x8_predict_c
153
154 void vp9_comp_intra8x8_predict_c(struct blockd *x, int b_mode, int second_mode, unsigned char *predictor);
155 #define vp9_comp_intra8x8_predict vp9_comp_intra8x8_predict_c
156
157 void vp9_intra_uv4x4_predict_c(struct blockd *x, int b_mode, unsigned char *pred ictor);
158 #define vp9_intra_uv4x4_predict vp9_intra_uv4x4_predict_c
159
160 void vp9_comp_intra_uv4x4_predict_c(struct blockd *x, int b_mode, int second_mod e, unsigned char *predictor);
161 #define vp9_comp_intra_uv4x4_predict vp9_comp_intra_uv4x4_predict_c
162
163 void vp9_loop_filter_mbv_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
164 #define vp9_loop_filter_mbv vp9_loop_filter_mbv_c
165
166 void vp9_loop_filter_bv_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
167 #define vp9_loop_filter_bv vp9_loop_filter_bv_c
168
169 void vp9_loop_filter_bv8x8_c(unsigned char *y, unsigned char *u, unsigned char * v, int ystride, int uv_stride, struct loop_filter_info *lfi);
170 #define vp9_loop_filter_bv8x8 vp9_loop_filter_bv8x8_c
171
172 void vp9_loop_filter_mbh_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
173 #define vp9_loop_filter_mbh vp9_loop_filter_mbh_c
174
175 void vp9_loop_filter_bh_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
176 #define vp9_loop_filter_bh vp9_loop_filter_bh_c
177
178 void vp9_loop_filter_bh8x8_c(unsigned char *y, unsigned char *u, unsigned char * v, int ystride, int uv_stride, struct loop_filter_info *lfi);
179 #define vp9_loop_filter_bh8x8 vp9_loop_filter_bh8x8_c
180
181 void vp9_loop_filter_simple_vertical_edge_c(unsigned char *y, int ystride, const unsigned char *blimit);
182 #define vp9_loop_filter_simple_mbv vp9_loop_filter_simple_vertical_edge_c
183
184 void vp9_loop_filter_simple_horizontal_edge_c(unsigned char *y, int ystride, con st unsigned char *blimit);
185 #define vp9_loop_filter_simple_mbh vp9_loop_filter_simple_horizontal_edge_c
186
187 void vp9_loop_filter_bvs_c(unsigned char *y, int ystride, const unsigned char *b limit);
188 #define vp9_loop_filter_simple_bv vp9_loop_filter_bvs_c
189
190 void vp9_loop_filter_bhs_c(unsigned char *y, int ystride, const unsigned char *b limit);
191 #define vp9_loop_filter_simple_bh vp9_loop_filter_bhs_c
192
193 void vp9_mbpost_proc_down_c(unsigned char *dst, int pitch, int rows, int cols, i nt flimit);
194 #define vp9_mbpost_proc_down vp9_mbpost_proc_down_c
195
196 void vp9_mbpost_proc_across_ip_c(unsigned char *src, int pitch, int rows, int co ls, int flimit);
197 #define vp9_mbpost_proc_across_ip vp9_mbpost_proc_across_ip_c
198
199 void vp9_post_proc_down_and_across_c(unsigned char *src_ptr, unsigned char *dst_ ptr, int src_pixels_per_line, int dst_pixels_per_line, int rows, int cols, int f limit);
200 #define vp9_post_proc_down_and_across vp9_post_proc_down_and_across_c
201
202 void vp9_plane_add_noise_c(unsigned char *Start, char *noise, char blackclamp[16 ], char whiteclamp[16], char bothclamp[16], unsigned int Width, unsigned int Hei ght, int Pitch);
203 #define vp9_plane_add_noise vp9_plane_add_noise_c
204
205 void vp9_blend_mb_inner_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
206 #define vp9_blend_mb_inner vp9_blend_mb_inner_c
207
208 void vp9_blend_mb_outer_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
209 #define vp9_blend_mb_outer vp9_blend_mb_outer_c
210
211 void vp9_blend_b_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
212 #define vp9_blend_b vp9_blend_b_c
213
214 unsigned int vp9_sad16x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride);
215 #define vp9_sad16x3 vp9_sad16x3_c
216
217 unsigned int vp9_sad3x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride);
218 #define vp9_sad3x16 vp9_sad3x16_c
219
220 void vp9_eighttap_predict16x16_c(unsigned char *src_ptr, int src_pixels_per_lin e, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
221 #define vp9_eighttap_predict16x16 vp9_eighttap_predict16x16_c
222
223 void vp9_eighttap_predict8x8_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
224 #define vp9_eighttap_predict8x8 vp9_eighttap_predict8x8_c
225
226 void vp9_eighttap_predict_avg16x16_c(unsigned char *src_ptr, int src_pixels_per _line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
227 #define vp9_eighttap_predict_avg16x16 vp9_eighttap_predict_avg16x16_c
228
229 void vp9_eighttap_predict_avg8x8_c(unsigned char *src_ptr, int src_pixels_per_l ine, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
230 #define vp9_eighttap_predict_avg8x8 vp9_eighttap_predict_avg8x8_c
231
232 void vp9_eighttap_predict_avg4x4_c(unsigned char *src_ptr, int src_pixels_per_l ine, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
233 #define vp9_eighttap_predict_avg4x4 vp9_eighttap_predict_avg4x4_c
234
235 void vp9_eighttap_predict8x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
236 #define vp9_eighttap_predict8x4 vp9_eighttap_predict8x4_c
237
238 void vp9_eighttap_predict_c(unsigned char *src_ptr, int src_pixels_per_line, in t xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
239 #define vp9_eighttap_predict vp9_eighttap_predict_c
240
241 void vp9_eighttap_predict16x16_sharp_c(unsigned char *src_ptr, int src_pixels_p er_line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
242 #define vp9_eighttap_predict16x16_sharp vp9_eighttap_predict16x16_sharp_c
243
244 void vp9_eighttap_predict8x8_sharp_c(unsigned char *src_ptr, int src_pixels_per _line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
245 #define vp9_eighttap_predict8x8_sharp vp9_eighttap_predict8x8_sharp_c
246
247 void vp9_eighttap_predict_avg16x16_sharp_c(unsigned char *src_ptr, int src_pixe ls_per_line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch) ;
248 #define vp9_eighttap_predict_avg16x16_sharp vp9_eighttap_predict_avg16x16_sharp_ c
249
250 void vp9_eighttap_predict_avg8x8_sharp_c(unsigned char *src_ptr, int src_pixels _per_line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
251 #define vp9_eighttap_predict_avg8x8_sharp vp9_eighttap_predict_avg8x8_sharp_c
252
253 void vp9_eighttap_predict_avg4x4_sharp_c(unsigned char *src_ptr, int src_pixels _per_line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
254 #define vp9_eighttap_predict_avg4x4_sharp vp9_eighttap_predict_avg4x4_sharp_c
255
256 void vp9_eighttap_predict8x4_sharp_c(unsigned char *src_ptr, int src_pixels_per _line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
257 #define vp9_eighttap_predict8x4_sharp vp9_eighttap_predict8x4_sharp_c
258
259 void vp9_eighttap_predict_sharp_c(unsigned char *src_ptr, int src_pixels_per_li ne, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
260 #define vp9_eighttap_predict_sharp vp9_eighttap_predict_sharp_c
261
262 void vp9_sixtap_predict16x16_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
263 #define vp9_sixtap_predict16x16 vp9_sixtap_predict16x16_c
264
265 void vp9_sixtap_predict8x8_c(unsigned char *src_ptr, int src_pixels_per_line, i nt xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
266 #define vp9_sixtap_predict8x8 vp9_sixtap_predict8x8_c
267
268 void vp9_sixtap_predict_avg16x16_c(unsigned char *src_ptr, int src_pixels_per_l ine, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
269 #define vp9_sixtap_predict_avg16x16 vp9_sixtap_predict_avg16x16_c
270
271 void vp9_sixtap_predict_avg8x8_c(unsigned char *src_ptr, int src_pixels_per_lin e, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
272 #define vp9_sixtap_predict_avg8x8 vp9_sixtap_predict_avg8x8_c
273
274 void vp9_sixtap_predict8x4_c(unsigned char *src_ptr, int src_pixels_per_line, i nt xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
275 #define vp9_sixtap_predict8x4 vp9_sixtap_predict8x4_c
276
277 void vp9_sixtap_predict_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
278 #define vp9_sixtap_predict vp9_sixtap_predict_c
279
280 void vp9_sixtap_predict_avg_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
281 #define vp9_sixtap_predict_avg vp9_sixtap_predict_avg_c
282
283 void vp9_bilinear_predict16x16_c(unsigned char *src_ptr, int src_pixels_per_lin e, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
284 #define vp9_bilinear_predict16x16 vp9_bilinear_predict16x16_c
285
286 void vp9_bilinear_predict8x8_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
287 #define vp9_bilinear_predict8x8 vp9_bilinear_predict8x8_c
288
289 void vp9_bilinear_predict_avg16x16_c(unsigned char *src_ptr, int src_pixels_per _line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
290 #define vp9_bilinear_predict_avg16x16 vp9_bilinear_predict_avg16x16_c
291
292 void vp9_bilinear_predict_avg8x8_c(unsigned char *src_ptr, int src_pixels_per_l ine, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
293 #define vp9_bilinear_predict_avg8x8 vp9_bilinear_predict_avg8x8_c
294
295 void vp9_bilinear_predict8x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
296 #define vp9_bilinear_predict8x4 vp9_bilinear_predict8x4_c
297
298 void vp9_bilinear_predict4x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
299 #define vp9_bilinear_predict4x4 vp9_bilinear_predict4x4_c
300
301 void vp9_bilinear_predict_avg4x4_c(unsigned char *src_ptr, int src_pixels_per_l ine, int xoffset, int yoffset, unsigned char *dst_ptr, int dst_pitch);
302 #define vp9_bilinear_predict_avg4x4 vp9_bilinear_predict_avg4x4_c
303
304 void vp9_short_idct4x4llm_1_c(short *input, short *output, int pitch);
305 #define vp9_short_idct4x4llm_1 vp9_short_idct4x4llm_1_c
306
307 void vp9_short_idct4x4llm_c(short *input, short *output, int pitch);
308 #define vp9_short_idct4x4llm vp9_short_idct4x4llm_c
309
310 void vp9_short_idct8x8_c(short *input, short *output, int pitch);
311 #define vp9_short_idct8x8 vp9_short_idct8x8_c
312
313 void vp9_short_idct10_8x8_c(short *input, short *output, int pitch);
314 #define vp9_short_idct10_8x8 vp9_short_idct10_8x8_c
315
316 void vp9_short_ihaar2x2_c(short *input, short *output, int pitch);
317 #define vp9_short_ihaar2x2 vp9_short_ihaar2x2_c
318
319 void vp9_short_idct16x16_c(short *input, short *output, int pitch);
320 #define vp9_short_idct16x16 vp9_short_idct16x16_c
321
322 void vp9_short_idct10_16x16_c(short *input, short *output, int pitch);
323 #define vp9_short_idct10_16x16 vp9_short_idct10_16x16_c
324
325 void vp9_ihtllm_c(const short *input, short *output, int pitch, int tx_type, int tx_dim);
326 #define vp9_ihtllm vp9_ihtllm_c
327
328 void vp9_short_inv_walsh4x4_1_c(short *in, short *out);
329 #define vp9_short_inv_walsh4x4_1 vp9_short_inv_walsh4x4_1_c
330
331 void vp9_short_inv_walsh4x4_c(short *in, short *out);
332 #define vp9_short_inv_walsh4x4 vp9_short_inv_walsh4x4_c
333
334 void vp9_dc_only_idct_add_8x8_c(short input_dc, unsigned char *pred_ptr, unsigne d char *dst_ptr, int pitch, int stride);
335 #define vp9_dc_only_idct_add_8x8 vp9_dc_only_idct_add_8x8_c
336
337 void vp9_dc_only_idct_add_c(short input_dc, unsigned char *pred_ptr, unsigned ch ar *dst_ptr, int pitch, int stride);
338 #define vp9_dc_only_idct_add vp9_dc_only_idct_add_c
339
340 void vp9_rtcd(void);
341 #include "vpx_config.h"
342
343 #ifdef RTCD_C
344 #include "vpx_ports/arm.h"
345 static void setup_rtcd_internal(void)
346 {
347 int flags = arm_cpu_caps();
348
349 (void)flags;
350
351
352 }
353 #endif
354 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698