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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 | 43 |
44 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); | 44 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); |
45 #define vp8_blend_mb_inner vp8_blend_mb_inner_c | 45 #define vp8_blend_mb_inner vp8_blend_mb_inner_c |
46 | 46 |
47 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); | 47 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); |
48 #define vp8_blend_mb_outer vp8_blend_mb_outer_c | 48 #define vp8_blend_mb_outer vp8_blend_mb_outer_c |
49 | 49 |
50 int vp8_block_error_c(short *coeff, short *dqcoeff); | 50 int vp8_block_error_c(short *coeff, short *dqcoeff); |
51 #define vp8_block_error vp8_block_error_c | 51 #define vp8_block_error vp8_block_error_c |
52 | 52 |
53 void vp8_clear_system_state_c(); | |
54 #define vp8_clear_system_state vp8_clear_system_state_c | |
55 | |
56 void vp8_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst,
int dst_pitch); | 53 void vp8_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst,
int dst_pitch); |
57 #define vp8_copy_mem16x16 vp8_copy_mem16x16_c | 54 #define vp8_copy_mem16x16 vp8_copy_mem16x16_c |
58 | 55 |
59 void vp8_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, in
t dst_pitch); | 56 void vp8_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, in
t dst_pitch); |
60 #define vp8_copy_mem8x4 vp8_copy_mem8x4_c | 57 #define vp8_copy_mem8x4 vp8_copy_mem8x4_c |
61 | 58 |
62 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in
t dst_pitch); | 59 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in
t dst_pitch); |
63 #define vp8_copy_mem8x8 vp8_copy_mem8x8_c | 60 #define vp8_copy_mem8x8 vp8_copy_mem8x8_c |
64 | 61 |
65 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, u
nsigned char *dst, int dst_stride); | 62 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, u
nsigned char *dst, int dst_stride); |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 (void)flags; | 177 (void)flags; |
181 | 178 |
182 } | 179 } |
183 #endif | 180 #endif |
184 | 181 |
185 #ifdef __cplusplus | 182 #ifdef __cplusplus |
186 } // extern "C" | 183 } // extern "C" |
187 #endif | 184 #endif |
188 | 185 |
189 #endif | 186 #endif |
OLD | NEW |