| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 181 |
| 182 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | 182 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); |
| 183 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_c | 183 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_c |
| 184 | 184 |
| 185 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | 185 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); |
| 186 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_c | 186 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_c |
| 187 | 187 |
| 188 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | 188 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); |
| 189 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_c | 189 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_c |
| 190 | 190 |
| 191 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); | |
| 192 #define vp8_sub_pixel_mse16x16 vp8_sub_pixel_mse16x16_c | |
| 193 | |
| 194 unsigned int vp8_sub_pixel_variance16x16_c(const unsigned char *src_ptr, int s
ource_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refs
tride, unsigned int *sse); | 191 unsigned int vp8_sub_pixel_variance16x16_c(const unsigned char *src_ptr, int s
ource_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refs
tride, unsigned int *sse); |
| 195 #define vp8_sub_pixel_variance16x16 vp8_sub_pixel_variance16x16_c | 192 #define vp8_sub_pixel_variance16x16 vp8_sub_pixel_variance16x16_c |
| 196 | 193 |
| 197 unsigned int vp8_sub_pixel_variance16x8_c(const unsigned char *src_ptr, int so
urce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refst
ride, unsigned int *sse); | 194 unsigned int vp8_sub_pixel_variance16x8_c(const unsigned char *src_ptr, int so
urce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refst
ride, unsigned int *sse); |
| 198 #define vp8_sub_pixel_variance16x8 vp8_sub_pixel_variance16x8_c | 195 #define vp8_sub_pixel_variance16x8 vp8_sub_pixel_variance16x8_c |
| 199 | 196 |
| 200 unsigned int vp8_sub_pixel_variance4x4_c(const unsigned char *src_ptr, int sou
rce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstr
ide, unsigned int *sse); | 197 unsigned int vp8_sub_pixel_variance4x4_c(const unsigned char *src_ptr, int sou
rce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstr
ide, unsigned int *sse); |
| 201 #define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c | 198 #define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c |
| 202 | 199 |
| 203 unsigned int vp8_sub_pixel_variance8x16_c(const unsigned char *src_ptr, int so
urce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refst
ride, unsigned int *sse); | 200 unsigned int vp8_sub_pixel_variance8x16_c(const unsigned char *src_ptr, int so
urce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refst
ride, unsigned int *sse); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 static void setup_rtcd_internal(void) | 232 static void setup_rtcd_internal(void) |
| 236 { | 233 { |
| 237 } | 234 } |
| 238 #endif | 235 #endif |
| 239 | 236 |
| 240 #ifdef __cplusplus | 237 #ifdef __cplusplus |
| 241 } // extern "C" | 238 } // extern "C" |
| 242 #endif | 239 #endif |
| 243 | 240 |
| 244 #endif | 241 #endif |
| OLD | NEW |