| 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 #ifdef __cplusplus | 10 #ifdef __cplusplus |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 #define vp8_short_inv_walsh4x4_1 vp8_short_inv_walsh4x4_1_c | 284 #define vp8_short_inv_walsh4x4_1 vp8_short_inv_walsh4x4_1_c |
| 285 | 285 |
| 286 void vp8_short_walsh4x4_c(short *input, short *output, int pitch); | 286 void vp8_short_walsh4x4_c(short *input, short *output, int pitch); |
| 287 #define vp8_short_walsh4x4 vp8_short_walsh4x4_c | 287 #define vp8_short_walsh4x4 vp8_short_walsh4x4_c |
| 288 | 288 |
| 289 void vp8_sixtap_predict16x16_c(unsigned char *src, int src_pitch, int xofst, int
yofst, unsigned char *dst, int dst_pitch); | 289 void vp8_sixtap_predict16x16_c(unsigned char *src, int src_pitch, int xofst, int
yofst, unsigned char *dst, int dst_pitch); |
| 290 void vp8_sixtap_predict16x16_neon(unsigned char *src, int src_pitch, int xofst,
int yofst, unsigned char *dst, int dst_pitch); | 290 void vp8_sixtap_predict16x16_neon(unsigned char *src, int src_pitch, int xofst,
int yofst, unsigned char *dst, int dst_pitch); |
| 291 #define vp8_sixtap_predict16x16 vp8_sixtap_predict16x16_neon | 291 #define vp8_sixtap_predict16x16 vp8_sixtap_predict16x16_neon |
| 292 | 292 |
| 293 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | 293 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); |
| 294 void vp8_sixtap_predict4x4_neon(unsigned char *src, int src_pitch, int xofst, in
t yofst, unsigned char *dst, int dst_pitch); | 294 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_c |
| 295 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_neon | |
| 296 | 295 |
| 297 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | 296 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); |
| 298 void vp8_sixtap_predict8x4_neon(unsigned char *src, int src_pitch, int xofst, in
t yofst, unsigned char *dst, int dst_pitch); | 297 void vp8_sixtap_predict8x4_neon(unsigned char *src, int src_pitch, int xofst, in
t yofst, unsigned char *dst, int dst_pitch); |
| 299 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_neon | 298 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_neon |
| 300 | 299 |
| 301 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | 300 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); |
| 302 void vp8_sixtap_predict8x8_neon(unsigned char *src, int src_pitch, int xofst, in
t yofst, unsigned char *dst, int dst_pitch); | 301 void vp8_sixtap_predict8x8_neon(unsigned char *src, int src_pitch, int xofst, in
t yofst, unsigned char *dst, int dst_pitch); |
| 303 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_neon | 302 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_neon |
| 304 | 303 |
| 305 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); | 304 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); |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 (void)flags; | 372 (void)flags; |
| 374 | 373 |
| 375 } | 374 } |
| 376 #endif | 375 #endif |
| 377 | 376 |
| 378 #ifdef __cplusplus | 377 #ifdef __cplusplus |
| 379 } // extern "C" | 378 } // extern "C" |
| 380 #endif | 379 #endif |
| 381 | 380 |
| 382 #endif | 381 #endif |
| OLD | NEW |