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

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

Issue 2708273003: Roll src/third_party/libvpx/source/libvpx/ 91f87e751..4d4231352 (50 commits). (Closed)
Patch Set: Created 3 years, 10 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 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after
1095 void vpx_highbd_idct16x16_10_add_sse2(const tran_low_t *input, uint8_t *dest, in t stride, int bd); 1095 void vpx_highbd_idct16x16_10_add_sse2(const tran_low_t *input, uint8_t *dest, in t stride, int bd);
1096 #define vpx_highbd_idct16x16_10_add vpx_highbd_idct16x16_10_add_sse2 1096 #define vpx_highbd_idct16x16_10_add vpx_highbd_idct16x16_10_add_sse2
1097 1097
1098 void vpx_highbd_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int st ride, int bd); 1098 void vpx_highbd_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int st ride, int bd);
1099 #define vpx_highbd_idct16x16_1_add vpx_highbd_idct16x16_1_add_c 1099 #define vpx_highbd_idct16x16_1_add vpx_highbd_idct16x16_1_add_c
1100 1100
1101 void vpx_highbd_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int stride, int bd); 1101 void vpx_highbd_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int stride, int bd);
1102 void vpx_highbd_idct16x16_256_add_sse2(const tran_low_t *input, uint8_t *dest, i nt stride, int bd); 1102 void vpx_highbd_idct16x16_256_add_sse2(const tran_low_t *input, uint8_t *dest, i nt stride, int bd);
1103 #define vpx_highbd_idct16x16_256_add vpx_highbd_idct16x16_256_add_sse2 1103 #define vpx_highbd_idct16x16_256_add vpx_highbd_idct16x16_256_add_sse2
1104 1104
1105 void vpx_highbd_idct16x16_38_add_c(const tran_low_t *input, uint8_t *dest, int s tride, int bd);
1106 void vpx_highbd_idct16x16_256_add_sse2(const tran_low_t *input, uint8_t *dest, i nt stride, int bd);
1107 #define vpx_highbd_idct16x16_38_add vpx_highbd_idct16x16_256_add_sse2
1108
1105 void vpx_highbd_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest, int stride, int bd); 1109 void vpx_highbd_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest, int stride, int bd);
1106 #define vpx_highbd_idct32x32_1024_add vpx_highbd_idct32x32_1024_add_c 1110 #define vpx_highbd_idct32x32_1024_add vpx_highbd_idct32x32_1024_add_c
1107 1111
1108 void vpx_highbd_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int st ride, int bd); 1112 void vpx_highbd_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int st ride, int bd);
1109 void vpx_highbd_idct32x32_1_add_sse2(const tran_low_t *input, uint8_t *dest, int stride, int bd); 1113 void vpx_highbd_idct32x32_1_add_sse2(const tran_low_t *input, uint8_t *dest, int stride, int bd);
1110 #define vpx_highbd_idct32x32_1_add vpx_highbd_idct32x32_1_add_sse2 1114 #define vpx_highbd_idct32x32_1_add vpx_highbd_idct32x32_1_add_sse2
1111 1115
1112 void vpx_highbd_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int s tride, int bd); 1116 void vpx_highbd_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int s tride, int bd);
1113 #define vpx_highbd_idct32x32_34_add vpx_highbd_idct32x32_34_add_c 1117 #define vpx_highbd_idct32x32_34_add vpx_highbd_idct32x32_34_add_c
1114 1118
(...skipping 1163 matching lines...) Expand 10 before | Expand all | Expand 10 after
2278 vpx_variance64x64 = vpx_variance64x64_sse2; 2282 vpx_variance64x64 = vpx_variance64x64_sse2;
2279 if (flags & HAS_AVX2) vpx_variance64x64 = vpx_variance64x64_avx2; 2283 if (flags & HAS_AVX2) vpx_variance64x64 = vpx_variance64x64_avx2;
2280 } 2284 }
2281 #endif 2285 #endif
2282 2286
2283 #ifdef __cplusplus 2287 #ifdef __cplusplus
2284 } // extern "C" 2288 } // extern "C"
2285 #endif 2289 #endif
2286 2290
2287 #endif 2291 #endif
OLDNEW
« no previous file with comments | « third_party/libvpx/source/config/linux/x64/vp9_rtcd.h ('k') | third_party/libvpx/source/config/mac/ia32/vp9_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698