| 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 #ifdef __cplusplus | 10 #ifdef __cplusplus |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 | 316 |
| 317 unsigned int vp8_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int
source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse)
; | 317 unsigned int vp8_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int
source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse)
; |
| 318 #define vp8_variance_halfpixvar16x16_h vp8_variance_halfpixvar16x16_h_c | 318 #define vp8_variance_halfpixvar16x16_h vp8_variance_halfpixvar16x16_h_c |
| 319 | 319 |
| 320 unsigned int vp8_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int
source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse
); | 320 unsigned int vp8_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int
source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse
); |
| 321 #define vp8_variance_halfpixvar16x16_hv vp8_variance_halfpixvar16x16_hv_c | 321 #define vp8_variance_halfpixvar16x16_hv vp8_variance_halfpixvar16x16_hv_c |
| 322 | 322 |
| 323 unsigned int vp8_variance_halfpixvar16x16_v_c(const unsigned char *src_ptr, int
source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse)
; | 323 unsigned int vp8_variance_halfpixvar16x16_v_c(const unsigned char *src_ptr, int
source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse)
; |
| 324 #define vp8_variance_halfpixvar16x16_v vp8_variance_halfpixvar16x16_v_c | 324 #define vp8_variance_halfpixvar16x16_v vp8_variance_halfpixvar16x16_v_c |
| 325 | 325 |
| 326 void vp8_yv12_copy_partial_frame_c(struct yv12_buffer_config *src_ybc, struct yv
12_buffer_config *dst_ybc); | |
| 327 #define vp8_yv12_copy_partial_frame vp8_yv12_copy_partial_frame_c | |
| 328 | |
| 329 void vp8_rtcd(void); | 326 void vp8_rtcd(void); |
| 330 | 327 |
| 331 #include "vpx_config.h" | 328 #include "vpx_config.h" |
| 332 | 329 |
| 333 #ifdef RTCD_C | 330 #ifdef RTCD_C |
| 334 static void setup_rtcd_internal(void) | 331 static void setup_rtcd_internal(void) |
| 335 { | 332 { |
| 336 } | 333 } |
| 337 #endif | 334 #endif |
| 338 | 335 |
| 339 #ifdef __cplusplus | 336 #ifdef __cplusplus |
| 340 } // extern "C" | 337 } // extern "C" |
| 341 #endif | 338 #endif |
| 342 | 339 |
| 343 #endif | 340 #endif |
| OLD | NEW |