OLD | NEW |
1 #ifndef VP8_RTCD_H_ | 1 #ifndef VP8_RTCD_H_ |
2 #define VP8_RTCD_H_ | 2 #define VP8_RTCD_H_ |
3 | 3 |
4 #ifdef RTCD_C | 4 #ifdef RTCD_C |
5 #define RTCD_EXTERN | 5 #define RTCD_EXTERN |
6 #else | 6 #else |
7 #define RTCD_EXTERN extern | 7 #define RTCD_EXTERN extern |
8 #endif | 8 #endif |
9 | 9 |
10 /* | 10 /* |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 | 160 |
161 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); | 161 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); |
162 #define vp8_post_proc_down_and_across_mb_row vp8_post_proc_down_and_across_mb_ro
w_c | 162 #define vp8_post_proc_down_and_across_mb_row vp8_post_proc_down_and_across_mb_ro
w_c |
163 | 163 |
164 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); | 164 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); |
165 #define vp8_refining_search_sad vp8_refining_search_sad_c | 165 #define vp8_refining_search_sad vp8_refining_search_sad_c |
166 | 166 |
167 void vp8_regular_quantize_b_c(struct block *, struct blockd *); | 167 void vp8_regular_quantize_b_c(struct block *, struct blockd *); |
168 #define vp8_regular_quantize_b vp8_regular_quantize_b_c | 168 #define vp8_regular_quantize_b vp8_regular_quantize_b_c |
169 | 169 |
170 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); | |
171 #define vp8_sad16x16 vp8_sad16x16_c | |
172 | |
173 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); | |
174 #define vp8_sad16x16x3 vp8_sad16x16x3_c | |
175 | |
176 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); | |
177 #define vp8_sad16x16x4d vp8_sad16x16x4d_c | |
178 | |
179 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); | |
180 #define vp8_sad16x16x8 vp8_sad16x16x8_c | |
181 | |
182 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); | |
183 #define vp8_sad16x8 vp8_sad16x8_c | |
184 | |
185 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); | |
186 #define vp8_sad16x8x3 vp8_sad16x8x3_c | |
187 | |
188 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); | |
189 #define vp8_sad16x8x4d vp8_sad16x8x4d_c | |
190 | |
191 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); | |
192 #define vp8_sad16x8x8 vp8_sad16x8x8_c | |
193 | |
194 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); | |
195 #define vp8_sad4x4 vp8_sad4x4_c | |
196 | |
197 void vp8_sad4x4x3_c(const unsigned char *src_ptr, int src_stride, const unsigned
char *ref_ptr, int ref_stride, unsigned int *sad_array); | |
198 #define vp8_sad4x4x3 vp8_sad4x4x3_c | |
199 | |
200 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); | |
201 #define vp8_sad4x4x4d vp8_sad4x4x4d_c | |
202 | |
203 void vp8_sad4x4x8_c(const unsigned char *src_ptr, int src_stride, const unsigned
char *ref_ptr, int ref_stride, unsigned short *sad_array); | |
204 #define vp8_sad4x4x8 vp8_sad4x4x8_c | |
205 | |
206 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); | |
207 #define vp8_sad8x16 vp8_sad8x16_c | |
208 | |
209 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); | |
210 #define vp8_sad8x16x3 vp8_sad8x16x3_c | |
211 | |
212 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); | |
213 #define vp8_sad8x16x4d vp8_sad8x16x4d_c | |
214 | |
215 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); | |
216 #define vp8_sad8x16x8 vp8_sad8x16x8_c | |
217 | |
218 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); | |
219 #define vp8_sad8x8 vp8_sad8x8_c | |
220 | |
221 void vp8_sad8x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned
char *ref_ptr, int ref_stride, unsigned int *sad_array); | |
222 #define vp8_sad8x8x3 vp8_sad8x8x3_c | |
223 | |
224 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); | |
225 #define vp8_sad8x8x4d vp8_sad8x8x4d_c | |
226 | |
227 void vp8_sad8x8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned
char *ref_ptr, int ref_stride, unsigned short *sad_array); | |
228 #define vp8_sad8x8x8 vp8_sad8x8x8_c | |
229 | |
230 void vp8_short_fdct4x4_c(short *input, short *output, int pitch); | 170 void vp8_short_fdct4x4_c(short *input, short *output, int pitch); |
231 #define vp8_short_fdct4x4 vp8_short_fdct4x4_c | 171 #define vp8_short_fdct4x4 vp8_short_fdct4x4_c |
232 | 172 |
233 void vp8_short_fdct8x4_c(short *input, short *output, int pitch); | 173 void vp8_short_fdct8x4_c(short *input, short *output, int pitch); |
234 #define vp8_short_fdct8x4 vp8_short_fdct8x4_c | 174 #define vp8_short_fdct8x4 vp8_short_fdct8x4_c |
235 | 175 |
236 void vp8_short_idct4x4llm_c(short *input, unsigned char *pred, int pitch, unsign
ed char *dst, int dst_stride); | 176 void vp8_short_idct4x4llm_c(short *input, unsigned char *pred, int pitch, unsign
ed char *dst, int dst_stride); |
237 #define vp8_short_idct4x4llm vp8_short_idct4x4llm_c | 177 #define vp8_short_idct4x4llm vp8_short_idct4x4llm_c |
238 | 178 |
239 void vp8_short_inv_walsh4x4_c(short *input, short *output); | 179 void vp8_short_inv_walsh4x4_c(short *input, short *output); |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 static void setup_rtcd_internal(void) | 256 static void setup_rtcd_internal(void) |
317 { | 257 { |
318 } | 258 } |
319 #endif | 259 #endif |
320 | 260 |
321 #ifdef __cplusplus | 261 #ifdef __cplusplus |
322 } // extern "C" | 262 } // extern "C" |
323 #endif | 263 #endif |
324 | 264 |
325 #endif | 265 #endif |
OLD | NEW |