| 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 662 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  673  |  673  | 
|  674 unsigned int vp9_variance8x16_c(const uint8_t *src_ptr, int source_stride, const
      uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |  674 unsigned int vp9_variance8x16_c(const uint8_t *src_ptr, int source_stride, const
      uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 
|  675 #define vp9_variance8x16 vp9_variance8x16_c |  675 #define vp9_variance8x16 vp9_variance8x16_c | 
|  676  |  676  | 
|  677 unsigned int vp9_variance8x4_c(const uint8_t *src_ptr, int source_stride, const 
     uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |  677 unsigned int vp9_variance8x4_c(const uint8_t *src_ptr, int source_stride, const 
     uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 
|  678 #define vp9_variance8x4 vp9_variance8x4_c |  678 #define vp9_variance8x4 vp9_variance8x4_c | 
|  679  |  679  | 
|  680 unsigned int vp9_variance8x8_c(const uint8_t *src_ptr, int source_stride, const 
     uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |  680 unsigned int vp9_variance8x8_c(const uint8_t *src_ptr, int source_stride, const 
     uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 
|  681 #define vp9_variance8x8 vp9_variance8x8_c |  681 #define vp9_variance8x8 vp9_variance8x8_c | 
|  682  |  682  | 
|  683 int vp9_vector_sad_c(int16_t const *ref, int16_t const *src, const int width); |  683 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl); | 
|  684 #define vp9_vector_sad vp9_vector_sad_c |  684 #define vp9_vector_var vp9_vector_var_c | 
|  685  |  685  | 
|  686 void vp9_rtcd(void); |  686 void vp9_rtcd(void); | 
|  687  |  687  | 
|  688 #include "vpx_config.h" |  688 #include "vpx_config.h" | 
|  689  |  689  | 
|  690 #ifdef RTCD_C |  690 #ifdef RTCD_C | 
|  691 #include "vpx_ports/arm.h" |  691 #include "vpx_ports/arm.h" | 
|  692 static void setup_rtcd_internal(void) |  692 static void setup_rtcd_internal(void) | 
|  693 { |  693 { | 
|  694     int flags = arm_cpu_caps(); |  694     int flags = arm_cpu_caps(); | 
|  695  |  695  | 
|  696     (void)flags; |  696     (void)flags; | 
|  697  |  697  | 
|  698 } |  698 } | 
|  699 #endif |  699 #endif | 
|  700  |  700  | 
|  701 #ifdef __cplusplus |  701 #ifdef __cplusplus | 
|  702 }  // extern "C" |  702 }  // extern "C" | 
|  703 #endif |  703 #endif | 
|  704  |  704  | 
|  705 #endif |  705 #endif | 
| OLD | NEW |