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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 | 47 |
48 void vp8_blend_mb_inner_c(unsigned char *y, unsigned char *u, unsigned char *v,
int y1, int u1, int v1, int alpha, int stride); | 48 void 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 | 49 #define vp8_blend_mb_inner vp8_blend_mb_inner_c |
50 | 50 |
51 void vp8_blend_mb_outer_c(unsigned char *y, unsigned char *u, unsigned char *v,
int y1, int u1, int v1, int alpha, int stride); | 51 void 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 | 52 #define vp8_blend_mb_outer vp8_blend_mb_outer_c |
53 | 53 |
54 int vp8_block_error_c(short *coeff, short *dqcoeff); | 54 int vp8_block_error_c(short *coeff, short *dqcoeff); |
55 #define vp8_block_error vp8_block_error_c | 55 #define vp8_block_error vp8_block_error_c |
56 | 56 |
57 void vp8_clear_system_state_c(); | |
58 #define vp8_clear_system_state vp8_clear_system_state_c | |
59 | |
60 void vp8_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst,
int dst_pitch); | 57 void vp8_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst,
int dst_pitch); |
61 void vp8_copy_mem16x16_neon(unsigned char *src, int src_pitch, unsigned char *ds
t, int dst_pitch); | 58 void vp8_copy_mem16x16_neon(unsigned char *src, int src_pitch, unsigned char *ds
t, int dst_pitch); |
62 RTCD_EXTERN void (*vp8_copy_mem16x16)(unsigned char *src, int src_pitch, unsigne
d char *dst, int dst_pitch); | 59 RTCD_EXTERN void (*vp8_copy_mem16x16)(unsigned char *src, int src_pitch, unsigne
d char *dst, int dst_pitch); |
63 | 60 |
64 void vp8_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, in
t dst_pitch); | 61 void vp8_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, in
t dst_pitch); |
65 void vp8_copy_mem8x4_neon(unsigned char *src, int src_pitch, unsigned char *dst,
int dst_pitch); | 62 void vp8_copy_mem8x4_neon(unsigned char *src, int src_pitch, unsigned char *dst,
int dst_pitch); |
66 RTCD_EXTERN void (*vp8_copy_mem8x4)(unsigned char *src, int src_pitch, unsigned
char *dst, int dst_pitch); | 63 RTCD_EXTERN void (*vp8_copy_mem8x4)(unsigned char *src, int src_pitch, unsigned
char *dst, int dst_pitch); |
67 | 64 |
68 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in
t dst_pitch); | 65 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in
t dst_pitch); |
69 void vp8_copy_mem8x8_neon(unsigned char *src, int src_pitch, unsigned char *dst,
int dst_pitch); | 66 void vp8_copy_mem8x8_neon(unsigned char *src, int src_pitch, unsigned char *dst,
int dst_pitch); |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 vp8_sixtap_predict8x8 = vp8_sixtap_predict8x8_c; | 273 vp8_sixtap_predict8x8 = vp8_sixtap_predict8x8_c; |
277 if (flags & HAS_NEON) vp8_sixtap_predict8x8 = vp8_sixtap_predict8x8_neon; | 274 if (flags & HAS_NEON) vp8_sixtap_predict8x8 = vp8_sixtap_predict8x8_neon; |
278 } | 275 } |
279 #endif | 276 #endif |
280 | 277 |
281 #ifdef __cplusplus | 278 #ifdef __cplusplus |
282 } // extern "C" | 279 } // extern "C" |
283 #endif | 280 #endif |
284 | 281 |
285 #endif | 282 #endif |
OLD | NEW |