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

Side by Side Diff: source/config/linux/arm/vp8_rtcd.h

Issue 1169543007: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « source/config/linux/arm-neon/vp8_rtcd.h ('k') | source/config/linux/arm64/vp8_rtcd.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef VP8_RTCD_H_ 1 #ifndef VP8_RTCD_H_
2 #define VP8_RTCD_H_ 2 #define VP8_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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_armv6 211 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_armv6
212 212
213 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch); 213 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
214 void vp8_sixtap_predict8x4_armv6(unsigned char *src, int src_pitch, int xofst, i nt yofst, unsigned char *dst, int dst_pitch); 214 void vp8_sixtap_predict8x4_armv6(unsigned char *src, int src_pitch, int xofst, i nt yofst, unsigned char *dst, int dst_pitch);
215 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_armv6 215 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_armv6
216 216
217 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch); 217 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
218 void vp8_sixtap_predict8x8_armv6(unsigned char *src, int src_pitch, int xofst, i nt yofst, unsigned char *dst, int dst_pitch); 218 void vp8_sixtap_predict8x8_armv6(unsigned char *src, int src_pitch, int xofst, i nt yofst, unsigned char *dst, int dst_pitch);
219 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_armv6 219 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_armv6
220 220
221 unsigned int vp8_sub_pixel_mse16x16_c(const unsigned char *src_ptr, int source _stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride , unsigned int *sse);
222 #define vp8_sub_pixel_mse16x16 vp8_sub_pixel_mse16x16_c
223
224 unsigned int vp8_sub_pixel_variance16x16_c(const unsigned char *src_ptr, int s ource_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refs tride, unsigned int *sse); 221 unsigned int vp8_sub_pixel_variance16x16_c(const unsigned char *src_ptr, int s ource_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refs tride, unsigned int *sse);
225 unsigned int vp8_sub_pixel_variance16x16_armv6(const unsigned char *src_ptr, in t source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse); 222 unsigned int vp8_sub_pixel_variance16x16_armv6(const unsigned char *src_ptr, in t source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
226 #define vp8_sub_pixel_variance16x16 vp8_sub_pixel_variance16x16_armv6 223 #define vp8_sub_pixel_variance16x16 vp8_sub_pixel_variance16x16_armv6
227 224
228 unsigned int vp8_sub_pixel_variance16x8_c(const unsigned char *src_ptr, int so urce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refst ride, unsigned int *sse); 225 unsigned int vp8_sub_pixel_variance16x8_c(const unsigned char *src_ptr, int so urce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refst ride, unsigned int *sse);
229 #define vp8_sub_pixel_variance16x8 vp8_sub_pixel_variance16x8_c 226 #define vp8_sub_pixel_variance16x8 vp8_sub_pixel_variance16x8_c
230 227
231 unsigned int vp8_sub_pixel_variance4x4_c(const unsigned char *src_ptr, int sou rce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstr ide, unsigned int *sse); 228 unsigned int vp8_sub_pixel_variance4x4_c(const unsigned char *src_ptr, int sou rce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstr ide, unsigned int *sse);
232 #define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c 229 #define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c
233 230
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 (void)flags; 269 (void)flags;
273 270
274 } 271 }
275 #endif 272 #endif
276 273
277 #ifdef __cplusplus 274 #ifdef __cplusplus
278 } // extern "C" 275 } // extern "C"
279 #endif 276 #endif
280 277
281 #endif 278 #endif
OLDNEW
« no previous file with comments | « source/config/linux/arm-neon/vp8_rtcd.h ('k') | source/config/linux/arm64/vp8_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698