Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: third_party/libvpx/source/config/linux/arm-neon-cpu-detect/vpx_dsp_rtcd.h

Issue 2295893002: Roll src/third_party/libvpx/source/libvpx/ f5bd76f5c..e66cd132f (23 commits). (Closed)
Patch Set: Roll src/third_party/libvpx/source/libvpx/ f5bd76f5c..e66cd132f (23 commits). Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 804 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 unsigned int vpx_variance8x16_neon(const uint8_t *src_ptr, int source_stride, co nst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 815 unsigned int vpx_variance8x16_neon(const uint8_t *src_ptr, int source_stride, co nst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
816 RTCD_EXTERN unsigned int (*vpx_variance8x16)(const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 816 RTCD_EXTERN unsigned int (*vpx_variance8x16)(const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
817 817
818 unsigned int vpx_variance8x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 818 unsigned int vpx_variance8x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
819 #define vpx_variance8x4 vpx_variance8x4_c 819 #define vpx_variance8x4 vpx_variance8x4_c
820 820
821 unsigned int vpx_variance8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 821 unsigned int vpx_variance8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
822 unsigned int vpx_variance8x8_neon(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 822 unsigned int vpx_variance8x8_neon(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
823 RTCD_EXTERN unsigned int (*vpx_variance8x8)(const uint8_t *src_ptr, int source_s tride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 823 RTCD_EXTERN unsigned int (*vpx_variance8x8)(const uint8_t *src_ptr, int source_s tride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
824 824
825 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);
826 #define vpx_variance_halfpixvar16x16_h vpx_variance_halfpixvar16x16_h_c
827
828 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);
829 #define vpx_variance_halfpixvar16x16_hv vpx_variance_halfpixvar16x16_hv_c
830
831 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);
832 #define vpx_variance_halfpixvar16x16_v vpx_variance_halfpixvar16x16_v_c
833
834 void vpx_ve_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left); 825 void vpx_ve_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
835 #define vpx_ve_predictor_4x4 vpx_ve_predictor_4x4_c 826 #define vpx_ve_predictor_4x4 vpx_ve_predictor_4x4_c
836 827
837 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl); 828 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
838 int vpx_vector_var_neon(const int16_t *ref, const int16_t *src, const int bwl); 829 int vpx_vector_var_neon(const int16_t *ref, const int16_t *src, const int bwl);
839 RTCD_EXTERN int (*vpx_vector_var)(const int16_t *ref, const int16_t *src, const int bwl); 830 RTCD_EXTERN int (*vpx_vector_var)(const int16_t *ref, const int16_t *src, const int bwl);
840 831
841 void vpx_dsp_rtcd(void); 832 void vpx_dsp_rtcd(void);
842 833
843 #include "vpx_config.h" 834 #include "vpx_config.h"
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
1055 vpx_vector_var = vpx_vector_var_c; 1046 vpx_vector_var = vpx_vector_var_c;
1056 if (flags & HAS_NEON) vpx_vector_var = vpx_vector_var_neon; 1047 if (flags & HAS_NEON) vpx_vector_var = vpx_vector_var_neon;
1057 } 1048 }
1058 #endif 1049 #endif
1059 1050
1060 #ifdef __cplusplus 1051 #ifdef __cplusplus
1061 } // extern "C" 1052 } // extern "C"
1062 #endif 1053 #endif
1063 1054
1064 #endif 1055 #endif
OLDNEW
« no previous file with comments | « third_party/libvpx/libvpx_srcs_x86_intrinsics.gypi ('k') | third_party/libvpx/source/config/linux/arm-neon/vpx_dsp_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698