| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 | 182 |
| 183 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); | 183 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); |
| 184 #define vp8_post_proc_down_and_across_mb_row vp8_post_proc_down_and_across_mb_ro
w_c | 184 #define vp8_post_proc_down_and_across_mb_row vp8_post_proc_down_and_across_mb_ro
w_c |
| 185 | 185 |
| 186 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); | 186 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); |
| 187 #define vp8_refining_search_sad vp8_refining_search_sad_c | 187 #define vp8_refining_search_sad vp8_refining_search_sad_c |
| 188 | 188 |
| 189 void vp8_regular_quantize_b_c(struct block *, struct blockd *); | 189 void vp8_regular_quantize_b_c(struct block *, struct blockd *); |
| 190 #define vp8_regular_quantize_b vp8_regular_quantize_b_c | 190 #define vp8_regular_quantize_b vp8_regular_quantize_b_c |
| 191 | 191 |
| 192 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); | |
| 193 unsigned int vp8_sad16x16_armv6(const unsigned char *src_ptr, int src_stride, co
nst unsigned char *ref_ptr, int ref_stride, unsigned int max_sad); | |
| 194 #define vp8_sad16x16 vp8_sad16x16_armv6 | |
| 195 | |
| 196 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); | |
| 197 #define vp8_sad16x16x3 vp8_sad16x16x3_c | |
| 198 | |
| 199 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); | |
| 200 #define vp8_sad16x16x4d vp8_sad16x16x4d_c | |
| 201 | |
| 202 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); | |
| 203 #define vp8_sad16x16x8 vp8_sad16x16x8_c | |
| 204 | |
| 205 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); | |
| 206 #define vp8_sad16x8 vp8_sad16x8_c | |
| 207 | |
| 208 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); | |
| 209 #define vp8_sad16x8x3 vp8_sad16x8x3_c | |
| 210 | |
| 211 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); | |
| 212 #define vp8_sad16x8x4d vp8_sad16x8x4d_c | |
| 213 | |
| 214 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); | |
| 215 #define vp8_sad16x8x8 vp8_sad16x8x8_c | |
| 216 | |
| 217 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); | |
| 218 #define vp8_sad4x4 vp8_sad4x4_c | |
| 219 | |
| 220 void vp8_sad4x4x3_c(const unsigned char *src_ptr, int src_stride, const unsigned
char *ref_ptr, int ref_stride, unsigned int *sad_array); | |
| 221 #define vp8_sad4x4x3 vp8_sad4x4x3_c | |
| 222 | |
| 223 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); | |
| 224 #define vp8_sad4x4x4d vp8_sad4x4x4d_c | |
| 225 | |
| 226 void vp8_sad4x4x8_c(const unsigned char *src_ptr, int src_stride, const unsigned
char *ref_ptr, int ref_stride, unsigned short *sad_array); | |
| 227 #define vp8_sad4x4x8 vp8_sad4x4x8_c | |
| 228 | |
| 229 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); | |
| 230 #define vp8_sad8x16 vp8_sad8x16_c | |
| 231 | |
| 232 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); | |
| 233 #define vp8_sad8x16x3 vp8_sad8x16x3_c | |
| 234 | |
| 235 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); | |
| 236 #define vp8_sad8x16x4d vp8_sad8x16x4d_c | |
| 237 | |
| 238 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); | |
| 239 #define vp8_sad8x16x8 vp8_sad8x16x8_c | |
| 240 | |
| 241 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); | |
| 242 #define vp8_sad8x8 vp8_sad8x8_c | |
| 243 | |
| 244 void vp8_sad8x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned
char *ref_ptr, int ref_stride, unsigned int *sad_array); | |
| 245 #define vp8_sad8x8x3 vp8_sad8x8x3_c | |
| 246 | |
| 247 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); | |
| 248 #define vp8_sad8x8x4d vp8_sad8x8x4d_c | |
| 249 | |
| 250 void vp8_sad8x8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned
char *ref_ptr, int ref_stride, unsigned short *sad_array); | |
| 251 #define vp8_sad8x8x8 vp8_sad8x8x8_c | |
| 252 | |
| 253 void vp8_short_fdct4x4_c(short *input, short *output, int pitch); | 192 void vp8_short_fdct4x4_c(short *input, short *output, int pitch); |
| 254 void vp8_short_fdct4x4_armv6(short *input, short *output, int pitch); | 193 void vp8_short_fdct4x4_armv6(short *input, short *output, int pitch); |
| 255 #define vp8_short_fdct4x4 vp8_short_fdct4x4_armv6 | 194 #define vp8_short_fdct4x4 vp8_short_fdct4x4_armv6 |
| 256 | 195 |
| 257 void vp8_short_fdct8x4_c(short *input, short *output, int pitch); | 196 void vp8_short_fdct8x4_c(short *input, short *output, int pitch); |
| 258 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch); | 197 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch); |
| 259 #define vp8_short_fdct8x4 vp8_short_fdct8x4_armv6 | 198 #define vp8_short_fdct8x4 vp8_short_fdct8x4_armv6 |
| 260 | 199 |
| 261 void vp8_short_idct4x4llm_c(short *input, unsigned char *pred, int pitch, unsign
ed char *dst, int dst_stride); | 200 void vp8_short_idct4x4llm_c(short *input, unsigned char *pred, int pitch, unsign
ed char *dst, int dst_stride); |
| 262 void vp8_short_idct4x4llm_v6_dual(short *input, unsigned char *pred, int pitch,
unsigned char *dst, int dst_stride); | 201 void vp8_short_idct4x4llm_v6_dual(short *input, unsigned char *pred, int pitch,
unsigned char *dst, int dst_stride); |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 (void)flags; | 299 (void)flags; |
| 361 | 300 |
| 362 } | 301 } |
| 363 #endif | 302 #endif |
| 364 | 303 |
| 365 #ifdef __cplusplus | 304 #ifdef __cplusplus |
| 366 } // extern "C" | 305 } // extern "C" |
| 367 #endif | 306 #endif |
| 368 | 307 |
| 369 #endif | 308 #endif |
| OLD | NEW |