| 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 #define vp8_variance_halfpixvar16x16_hv vp8_variance_halfpixvar16x16_hv_armv6 | 360 #define vp8_variance_halfpixvar16x16_hv vp8_variance_halfpixvar16x16_hv_armv6 |
| 361 | 361 |
| 362 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)
; | 362 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)
; |
| 363 unsigned int vp8_variance_halfpixvar16x16_v_armv6(const unsigned char *src_ptr,
int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *
sse); | 363 unsigned int vp8_variance_halfpixvar16x16_v_armv6(const unsigned char *src_ptr,
int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *
sse); |
| 364 #define vp8_variance_halfpixvar16x16_v vp8_variance_halfpixvar16x16_v_armv6 | 364 #define vp8_variance_halfpixvar16x16_v vp8_variance_halfpixvar16x16_v_armv6 |
| 365 | 365 |
| 366 void vp8_yv12_copy_partial_frame_c(struct yv12_buffer_config *src_ybc, struct yv
12_buffer_config *dst_ybc); | 366 void vp8_yv12_copy_partial_frame_c(struct yv12_buffer_config *src_ybc, struct yv
12_buffer_config *dst_ybc); |
| 367 #define vp8_yv12_copy_partial_frame vp8_yv12_copy_partial_frame_c | 367 #define vp8_yv12_copy_partial_frame vp8_yv12_copy_partial_frame_c |
| 368 | 368 |
| 369 void vp8_rtcd(void); | 369 void vp8_rtcd(void); |
| 370 |
| 370 #include "vpx_config.h" | 371 #include "vpx_config.h" |
| 371 | 372 |
| 372 #ifdef RTCD_C | 373 #ifdef RTCD_C |
| 373 #include "vpx_ports/arm.h" | 374 #include "vpx_ports/arm.h" |
| 374 static void setup_rtcd_internal(void) | 375 static void setup_rtcd_internal(void) |
| 375 { | 376 { |
| 376 int flags = arm_cpu_caps(); | 377 int flags = arm_cpu_caps(); |
| 377 | 378 |
| 378 (void)flags; | 379 (void)flags; |
| 379 | 380 |
| 380 | |
| 381 } | 381 } |
| 382 #endif | 382 #endif |
| 383 | 383 |
| 384 #ifdef __cplusplus | 384 #ifdef __cplusplus |
| 385 } // extern "C" | 385 } // extern "C" |
| 386 #endif | 386 #endif |
| 387 | 387 |
| 388 #endif | 388 #endif |
| OLD | NEW |