| OLD | NEW |
| 1 #ifndef VP9_RTCD_H_ | 1 #ifndef VP9_RTCD_H_ |
| 2 #define VP9_RTCD_H_ | 2 #define VP9_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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 unsigned int vp9_variance8x16_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 742 unsigned int vp9_variance8x16_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
| 743 #define vp9_variance8x16 vp9_variance8x16_c | 743 #define vp9_variance8x16 vp9_variance8x16_c |
| 744 | 744 |
| 745 unsigned int vp9_variance8x4_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 745 unsigned int vp9_variance8x4_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
| 746 #define vp9_variance8x4 vp9_variance8x4_c | 746 #define vp9_variance8x4 vp9_variance8x4_c |
| 747 | 747 |
| 748 unsigned int vp9_variance8x8_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 748 unsigned int vp9_variance8x8_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
| 749 unsigned int vp9_variance8x8_neon(const uint8_t *src_ptr, int source_stride, con
st uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 749 unsigned int vp9_variance8x8_neon(const uint8_t *src_ptr, int source_stride, con
st uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
| 750 #define vp9_variance8x8 vp9_variance8x8_neon | 750 #define vp9_variance8x8 vp9_variance8x8_neon |
| 751 | 751 |
| 752 int vp9_vector_sad_c(int16_t const *ref, int16_t const *src, const int width); | 752 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl); |
| 753 #define vp9_vector_sad vp9_vector_sad_c | 753 #define vp9_vector_var vp9_vector_var_c |
| 754 | 754 |
| 755 void vp9_rtcd(void); | 755 void vp9_rtcd(void); |
| 756 | 756 |
| 757 #include "vpx_config.h" | 757 #include "vpx_config.h" |
| 758 | 758 |
| 759 #ifdef RTCD_C | 759 #ifdef RTCD_C |
| 760 #include "vpx_ports/arm.h" | 760 #include "vpx_ports/arm.h" |
| 761 static void setup_rtcd_internal(void) | 761 static void setup_rtcd_internal(void) |
| 762 { | 762 { |
| 763 int flags = arm_cpu_caps(); | 763 int flags = arm_cpu_caps(); |
| 764 | 764 |
| 765 (void)flags; | 765 (void)flags; |
| 766 | 766 |
| 767 } | 767 } |
| 768 #endif | 768 #endif |
| 769 | 769 |
| 770 #ifdef __cplusplus | 770 #ifdef __cplusplus |
| 771 } // extern "C" | 771 } // extern "C" |
| 772 #endif | 772 #endif |
| 773 | 773 |
| 774 #endif | 774 #endif |
| OLD | NEW |