| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_armv6 | 211 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_armv6 |
| 212 | 212 |
| 213 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | 213 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); |
| 214 void vp8_sixtap_predict8x4_armv6(unsigned char *src, int src_pitch, int xofst, i
nt yofst, unsigned char *dst, int dst_pitch); | 214 void vp8_sixtap_predict8x4_armv6(unsigned char *src, int src_pitch, int xofst, i
nt yofst, unsigned char *dst, int dst_pitch); |
| 215 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_armv6 | 215 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_armv6 |
| 216 | 216 |
| 217 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); | 217 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y
ofst, unsigned char *dst, int dst_pitch); |
| 218 void vp8_sixtap_predict8x8_armv6(unsigned char *src, int src_pitch, int xofst, i
nt yofst, unsigned char *dst, int dst_pitch); | 218 void vp8_sixtap_predict8x8_armv6(unsigned char *src, int src_pitch, int xofst, i
nt yofst, unsigned char *dst, int dst_pitch); |
| 219 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_armv6 | 219 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_armv6 |
| 220 | 220 |
| 221 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); | |
| 222 #define vp8_sub_pixel_mse16x16 vp8_sub_pixel_mse16x16_c | |
| 223 | |
| 224 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); | 221 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); |
| 225 unsigned int vp8_sub_pixel_variance16x16_armv6(const unsigned char *src_ptr, in
t source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int
Refstride, unsigned int *sse); | 222 unsigned int vp8_sub_pixel_variance16x16_armv6(const unsigned char *src_ptr, in
t source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int
Refstride, unsigned int *sse); |
| 226 #define vp8_sub_pixel_variance16x16 vp8_sub_pixel_variance16x16_armv6 | 223 #define vp8_sub_pixel_variance16x16 vp8_sub_pixel_variance16x16_armv6 |
| 227 | 224 |
| 228 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); | 225 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); |
| 229 #define vp8_sub_pixel_variance16x8 vp8_sub_pixel_variance16x8_c | 226 #define vp8_sub_pixel_variance16x8 vp8_sub_pixel_variance16x8_c |
| 230 | 227 |
| 231 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); | 228 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); |
| 232 #define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c | 229 #define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c |
| 233 | 230 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 (void)flags; | 269 (void)flags; |
| 273 | 270 |
| 274 } | 271 } |
| 275 #endif | 272 #endif |
| 276 | 273 |
| 277 #ifdef __cplusplus | 274 #ifdef __cplusplus |
| 278 } // extern "C" | 275 } // extern "C" |
| 279 #endif | 276 #endif |
| 280 | 277 |
| 281 #endif | 278 #endif |
| OLD | NEW |