OLD | NEW |
1 #ifndef VPX_DSP_RTCD_H_ | 1 #ifndef VPX_DSP_RTCD_H_ |
2 #define VPX_DSP_RTCD_H_ | 2 #define VPX_DSP_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 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
714 | 714 |
715 unsigned int vpx_variance8x16_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 715 unsigned int vpx_variance8x16_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
716 #define vpx_variance8x16 vpx_variance8x16_c | 716 #define vpx_variance8x16 vpx_variance8x16_c |
717 | 717 |
718 unsigned int vpx_variance8x4_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 718 unsigned int vpx_variance8x4_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
719 #define vpx_variance8x4 vpx_variance8x4_c | 719 #define vpx_variance8x4 vpx_variance8x4_c |
720 | 720 |
721 unsigned int vpx_variance8x8_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 721 unsigned int vpx_variance8x8_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
722 #define vpx_variance8x8 vpx_variance8x8_c | 722 #define vpx_variance8x8 vpx_variance8x8_c |
723 | 723 |
724 uint32_t vpx_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int sour
ce_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse); | |
725 #define vpx_variance_halfpixvar16x16_h vpx_variance_halfpixvar16x16_h_c | |
726 | |
727 uint32_t vpx_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int sou
rce_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse); | |
728 #define vpx_variance_halfpixvar16x16_hv vpx_variance_halfpixvar16x16_hv_c | |
729 | |
730 uint32_t vpx_variance_halfpixvar16x16_v_c(const unsigned char *src_ptr, int sour
ce_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse); | |
731 #define vpx_variance_halfpixvar16x16_v vpx_variance_halfpixvar16x16_v_c | |
732 | |
733 void vpx_ve_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo
ve, const uint8_t *left); | 724 void vpx_ve_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo
ve, const uint8_t *left); |
734 #define vpx_ve_predictor_4x4 vpx_ve_predictor_4x4_c | 725 #define vpx_ve_predictor_4x4 vpx_ve_predictor_4x4_c |
735 | 726 |
736 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl); | 727 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl); |
737 #define vpx_vector_var vpx_vector_var_c | 728 #define vpx_vector_var vpx_vector_var_c |
738 | 729 |
739 void vpx_dsp_rtcd(void); | 730 void vpx_dsp_rtcd(void); |
740 | 731 |
741 #include "vpx_config.h" | 732 #include "vpx_config.h" |
742 | 733 |
743 #ifdef RTCD_C | 734 #ifdef RTCD_C |
744 #include "vpx_ports/arm.h" | 735 #include "vpx_ports/arm.h" |
745 static void setup_rtcd_internal(void) | 736 static void setup_rtcd_internal(void) |
746 { | 737 { |
747 int flags = arm_cpu_caps(); | 738 int flags = arm_cpu_caps(); |
748 | 739 |
749 (void)flags; | 740 (void)flags; |
750 | 741 |
751 } | 742 } |
752 #endif | 743 #endif |
753 | 744 |
754 #ifdef __cplusplus | 745 #ifdef __cplusplus |
755 } // extern "C" | 746 } // extern "C" |
756 #endif | 747 #endif |
757 | 748 |
758 #endif | 749 #endif |
OLD | NEW |