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

Side by Side Diff: third_party/libvpx/source/config/linux/arm64/vpx_dsp_rtcd.h

Issue 2528543002: Roll src/third_party/libvpx/source/libvpx/ 5c64c01c7..d7f1d60c5 (36 commits). (Closed)
Patch Set: rebase for DEPS Created 4 years 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 68 void vpx_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
69 #define vpx_d117_predictor_32x32 vpx_d117_predictor_32x32_c 69 #define vpx_d117_predictor_32x32 vpx_d117_predictor_32x32_c
70 70
71 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left); 71 void vpx_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
72 #define vpx_d117_predictor_4x4 vpx_d117_predictor_4x4_c 72 #define vpx_d117_predictor_4x4 vpx_d117_predictor_4x4_c
73 73
74 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left); 74 void vpx_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
75 #define vpx_d117_predictor_8x8 vpx_d117_predictor_8x8_c 75 #define vpx_d117_predictor_8x8 vpx_d117_predictor_8x8_c
76 76
77 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 77 void vpx_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
78 #define vpx_d135_predictor_16x16 vpx_d135_predictor_16x16_c 78 void vpx_d135_predictor_16x16_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8 _t *above, const uint8_t *left);
79 #define vpx_d135_predictor_16x16 vpx_d135_predictor_16x16_neon
79 80
80 void vpx_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 81 void vpx_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
81 #define vpx_d135_predictor_32x32 vpx_d135_predictor_32x32_c 82 void vpx_d135_predictor_32x32_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8 _t *above, const uint8_t *left);
83 #define vpx_d135_predictor_32x32 vpx_d135_predictor_32x32_neon
82 84
83 void vpx_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left); 85 void vpx_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
84 void vpx_d135_predictor_4x4_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 86 void vpx_d135_predictor_4x4_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
85 #define vpx_d135_predictor_4x4 vpx_d135_predictor_4x4_neon 87 #define vpx_d135_predictor_4x4 vpx_d135_predictor_4x4_neon
86 88
87 void vpx_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left); 89 void vpx_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
88 #define vpx_d135_predictor_8x8 vpx_d135_predictor_8x8_c 90 void vpx_d135_predictor_8x8_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
91 #define vpx_d135_predictor_8x8 vpx_d135_predictor_8x8_neon
89 92
90 void vpx_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 93 void vpx_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
91 #define vpx_d153_predictor_16x16 vpx_d153_predictor_16x16_c 94 #define vpx_d153_predictor_16x16 vpx_d153_predictor_16x16_c
92 95
93 void vpx_d153_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 96 void vpx_d153_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
94 #define vpx_d153_predictor_32x32 vpx_d153_predictor_32x32_c 97 #define vpx_d153_predictor_32x32 vpx_d153_predictor_32x32_c
95 98
96 void vpx_d153_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left); 99 void vpx_d153_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
97 #define vpx_d153_predictor_4x4 vpx_d153_predictor_4x4_c 100 #define vpx_d153_predictor_4x4 vpx_d153_predictor_4x4_c
98 101
(...skipping 22 matching lines...) Expand all
121 #define vpx_d207e_predictor_4x4 vpx_d207e_predictor_4x4_c 124 #define vpx_d207e_predictor_4x4 vpx_d207e_predictor_4x4_c
122 125
123 void vpx_d207e_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left); 126 void vpx_d207e_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
124 #define vpx_d207e_predictor_8x8 vpx_d207e_predictor_8x8_c 127 #define vpx_d207e_predictor_8x8 vpx_d207e_predictor_8x8_c
125 128
126 void vpx_d45_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left); 129 void vpx_d45_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
127 void vpx_d45_predictor_16x16_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_ t *above, const uint8_t *left); 130 void vpx_d45_predictor_16x16_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_ t *above, const uint8_t *left);
128 #define vpx_d45_predictor_16x16 vpx_d45_predictor_16x16_neon 131 #define vpx_d45_predictor_16x16 vpx_d45_predictor_16x16_neon
129 132
130 void vpx_d45_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left); 133 void vpx_d45_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t * above, const uint8_t *left);
131 #define vpx_d45_predictor_32x32 vpx_d45_predictor_32x32_c 134 void vpx_d45_predictor_32x32_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_ t *above, const uint8_t *left);
135 #define vpx_d45_predictor_32x32 vpx_d45_predictor_32x32_neon
132 136
133 void vpx_d45_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left); 137 void vpx_d45_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
134 void vpx_d45_predictor_4x4_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 138 void vpx_d45_predictor_4x4_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
135 #define vpx_d45_predictor_4x4 vpx_d45_predictor_4x4_neon 139 #define vpx_d45_predictor_4x4 vpx_d45_predictor_4x4_neon
136 140
137 void vpx_d45_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left); 141 void vpx_d45_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
138 void vpx_d45_predictor_8x8_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 142 void vpx_d45_predictor_8x8_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
139 #define vpx_d45_predictor_8x8 vpx_d45_predictor_8x8_neon 143 #define vpx_d45_predictor_8x8 vpx_d45_predictor_8x8_neon
140 144
141 void vpx_d45e_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 145 void vpx_d45e_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 326
323 void vpx_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride); 327 void vpx_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride);
324 void vpx_idct16x16_256_add_neon(const tran_low_t *input, uint8_t *dest, int dest _stride); 328 void vpx_idct16x16_256_add_neon(const tran_low_t *input, uint8_t *dest, int dest _stride);
325 #define vpx_idct16x16_256_add vpx_idct16x16_256_add_neon 329 #define vpx_idct16x16_256_add vpx_idct16x16_256_add_neon
326 330
327 void vpx_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest, int dest_s tride); 331 void vpx_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest, int dest_s tride);
328 void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest, int des t_stride); 332 void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest, int des t_stride);
329 #define vpx_idct32x32_1024_add vpx_idct32x32_1024_add_neon 333 #define vpx_idct32x32_1024_add vpx_idct32x32_1024_add_neon
330 334
331 void vpx_idct32x32_135_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride); 335 void vpx_idct32x32_135_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride);
332 void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest, int des t_stride); 336 void vpx_idct32x32_135_add_neon(const tran_low_t *input, uint8_t *dest, int dest _stride);
333 #define vpx_idct32x32_135_add vpx_idct32x32_1024_add_neon 337 #define vpx_idct32x32_135_add vpx_idct32x32_135_add_neon
334 338
335 void vpx_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de); 339 void vpx_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de);
336 void vpx_idct32x32_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_s tride); 340 void vpx_idct32x32_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_s tride);
337 #define vpx_idct32x32_1_add vpx_idct32x32_1_add_neon 341 #define vpx_idct32x32_1_add vpx_idct32x32_1_add_neon
338 342
339 void vpx_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide); 343 void vpx_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide);
340 void vpx_idct32x32_34_add_neon(const tran_low_t *input, uint8_t *dest, int dest_ stride); 344 void vpx_idct32x32_34_add_neon(const tran_low_t *input, uint8_t *dest, int dest_ stride);
341 #define vpx_idct32x32_34_add vpx_idct32x32_34_add_neon 345 #define vpx_idct32x32_34_add vpx_idct32x32_34_add_neon
342 346
343 void vpx_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e); 347 void vpx_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 (void)flags; 846 (void)flags;
843 847
844 } 848 }
845 #endif 849 #endif
846 850
847 #ifdef __cplusplus 851 #ifdef __cplusplus
848 } // extern "C" 852 } // extern "C"
849 #endif 853 #endif
850 854
851 #endif 855 #endif
OLDNEW
« no previous file with comments | « third_party/libvpx/source/config/linux/arm-neon/vpx_dsp_rtcd.h ('k') | third_party/libvpx/source/config/linux/ia32/vp8_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698