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

Side by Side Diff: source/config/linux/x64/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/mipsel/vp8_rtcd.h ('k') | source/config/mac/ia32/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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 void vp8_sixtap_predict8x4_sse2(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch); 269 void vp8_sixtap_predict8x4_sse2(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch);
270 void vp8_sixtap_predict8x4_ssse3(unsigned char *src, int src_pitch, int xofst, i nt yofst, unsigned char *dst, int dst_pitch); 270 void vp8_sixtap_predict8x4_ssse3(unsigned char *src, int src_pitch, int xofst, i nt yofst, unsigned char *dst, int dst_pitch);
271 RTCD_EXTERN void (*vp8_sixtap_predict8x4)(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch); 271 RTCD_EXTERN void (*vp8_sixtap_predict8x4)(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
272 272
273 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch); 273 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
274 void vp8_sixtap_predict8x8_mmx(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch); 274 void vp8_sixtap_predict8x8_mmx(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
275 void vp8_sixtap_predict8x8_sse2(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch); 275 void vp8_sixtap_predict8x8_sse2(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch);
276 void vp8_sixtap_predict8x8_ssse3(unsigned char *src, int src_pitch, int xofst, i nt yofst, unsigned char *dst, int dst_pitch); 276 void vp8_sixtap_predict8x8_ssse3(unsigned char *src, int src_pitch, int xofst, i nt yofst, unsigned char *dst, int dst_pitch);
277 RTCD_EXTERN void (*vp8_sixtap_predict8x8)(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch); 277 RTCD_EXTERN void (*vp8_sixtap_predict8x8)(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
278 278
279 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);
280 unsigned int vp8_sub_pixel_mse16x16_mmx(const unsigned char *src_ptr, int sour ce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstri de, unsigned int *sse);
281 unsigned int vp8_sub_pixel_mse16x16_wmt(const unsigned char *src_ptr, int sour ce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstri de, unsigned int *sse);
282 #define vp8_sub_pixel_mse16x16 vp8_sub_pixel_mse16x16_wmt
283
284 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); 279 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);
285 unsigned int vp8_sub_pixel_variance16x16_mmx(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Re fstride, unsigned int *sse); 280 unsigned int vp8_sub_pixel_variance16x16_mmx(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Re fstride, unsigned int *sse);
286 unsigned int vp8_sub_pixel_variance16x16_wmt(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Re fstride, unsigned int *sse); 281 unsigned int vp8_sub_pixel_variance16x16_wmt(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Re fstride, unsigned int *sse);
287 unsigned int vp8_sub_pixel_variance16x16_ssse3(const unsigned char *src_ptr, in t source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse); 282 unsigned int vp8_sub_pixel_variance16x16_ssse3(const unsigned char *src_ptr, in t source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, unsigned int *sse);
288 RTCD_EXTERN unsigned int (*vp8_sub_pixel_variance16x16)(const unsigned char *sr c_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ ptr, int Refstride, unsigned int *sse); 283 RTCD_EXTERN unsigned int (*vp8_sub_pixel_variance16x16)(const unsigned char *sr c_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ ptr, int Refstride, unsigned int *sse);
289 284
290 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); 285 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);
291 unsigned int vp8_sub_pixel_variance16x8_mmx(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Ref stride, unsigned int *sse); 286 unsigned int vp8_sub_pixel_variance16x8_mmx(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Ref stride, unsigned int *sse);
292 unsigned int vp8_sub_pixel_variance16x8_wmt(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Ref stride, unsigned int *sse); 287 unsigned int vp8_sub_pixel_variance16x8_wmt(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Ref stride, unsigned int *sse);
293 unsigned int vp8_sub_pixel_variance16x8_ssse3(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int R efstride, unsigned int *sse); 288 unsigned int vp8_sub_pixel_variance16x8_ssse3(const unsigned char *src_ptr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int R efstride, unsigned int *sse);
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 vp8_sub_pixel_variance16x8 = vp8_sub_pixel_variance16x8_wmt; 377 vp8_sub_pixel_variance16x8 = vp8_sub_pixel_variance16x8_wmt;
383 if (flags & HAS_SSSE3) vp8_sub_pixel_variance16x8 = vp8_sub_pixel_variance16 x8_ssse3; 378 if (flags & HAS_SSSE3) vp8_sub_pixel_variance16x8 = vp8_sub_pixel_variance16 x8_ssse3;
384 } 379 }
385 #endif 380 #endif
386 381
387 #ifdef __cplusplus 382 #ifdef __cplusplus
388 } // extern "C" 383 } // extern "C"
389 #endif 384 #endif
390 385
391 #endif 386 #endif
OLDNEW
« no previous file with comments | « source/config/linux/mipsel/vp8_rtcd.h ('k') | source/config/mac/ia32/vp8_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698