| 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 723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 734 unsigned int vp9_variance8x16_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 734 unsigned int vp9_variance8x16_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
| 735 #define vp9_variance8x16 vp9_variance8x16_c | 735 #define vp9_variance8x16 vp9_variance8x16_c |
| 736 | 736 |
| 737 unsigned int vp9_variance8x4_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 737 unsigned int vp9_variance8x4_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
| 738 #define vp9_variance8x4 vp9_variance8x4_c | 738 #define vp9_variance8x4 vp9_variance8x4_c |
| 739 | 739 |
| 740 unsigned int vp9_variance8x8_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 740 unsigned int vp9_variance8x8_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
| 741 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); | 741 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); |
| 742 #define vp9_variance8x8 vp9_variance8x8_neon | 742 #define vp9_variance8x8 vp9_variance8x8_neon |
| 743 | 743 |
| 744 int vp9_vector_sad_c(int16_t const *ref, int16_t const *src, const int width); | 744 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl); |
| 745 #define vp9_vector_sad vp9_vector_sad_c | 745 #define vp9_vector_var vp9_vector_var_c |
| 746 | 746 |
| 747 void vp9_rtcd(void); | 747 void vp9_rtcd(void); |
| 748 | 748 |
| 749 #include "vpx_config.h" | 749 #include "vpx_config.h" |
| 750 | 750 |
| 751 #ifdef RTCD_C | 751 #ifdef RTCD_C |
| 752 #include "vpx_ports/arm.h" | 752 #include "vpx_ports/arm.h" |
| 753 static void setup_rtcd_internal(void) | 753 static void setup_rtcd_internal(void) |
| 754 { | 754 { |
| 755 int flags = arm_cpu_caps(); | 755 int flags = arm_cpu_caps(); |
| 756 | 756 |
| 757 (void)flags; | 757 (void)flags; |
| 758 | 758 |
| 759 } | 759 } |
| 760 #endif | 760 #endif |
| 761 | 761 |
| 762 #ifdef __cplusplus | 762 #ifdef __cplusplus |
| 763 } // extern "C" | 763 } // extern "C" |
| 764 #endif | 764 #endif |
| 765 | 765 |
| 766 #endif | 766 #endif |
| OLD | NEW |