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 #define vp8_copy_mem16x16 vp8_copy_mem16x16_neon | 59 #define vp8_copy_mem16x16 vp8_copy_mem16x16_neon |
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 #define vp8_copy_mem8x4 vp8_copy_mem8x4_neon | 63 #define vp8_copy_mem8x4 vp8_copy_mem8x4_neon |
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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 (void)flags; | 209 (void)flags; |
213 | 210 |
214 } | 211 } |
215 #endif | 212 #endif |
216 | 213 |
217 #ifdef __cplusplus | 214 #ifdef __cplusplus |
218 } // extern "C" | 215 } // extern "C" |
219 #endif | 216 #endif |
220 | 217 |
221 #endif | 218 #endif |
OLD | NEW |