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

Side by Side Diff: source/config/nacl/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/mac/x64/vp8_rtcd.h ('k') | source/config/win/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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 181
182 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch); 182 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
183 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_c 183 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_c
184 184
185 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch); 185 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
186 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_c 186 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_c
187 187
188 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch); 188 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
189 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_c 189 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_c
190 190
191 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);
192 #define vp8_sub_pixel_mse16x16 vp8_sub_pixel_mse16x16_c
193
194 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); 191 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);
195 #define vp8_sub_pixel_variance16x16 vp8_sub_pixel_variance16x16_c 192 #define vp8_sub_pixel_variance16x16 vp8_sub_pixel_variance16x16_c
196 193
197 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); 194 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);
198 #define vp8_sub_pixel_variance16x8 vp8_sub_pixel_variance16x8_c 195 #define vp8_sub_pixel_variance16x8 vp8_sub_pixel_variance16x8_c
199 196
200 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); 197 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);
201 #define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c 198 #define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c
202 199
203 unsigned int vp8_sub_pixel_variance8x16_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); 200 unsigned int vp8_sub_pixel_variance8x16_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);
(...skipping 28 matching lines...) Expand all
232 static void setup_rtcd_internal(void) 229 static void setup_rtcd_internal(void)
233 { 230 {
234 } 231 }
235 #endif 232 #endif
236 233
237 #ifdef __cplusplus 234 #ifdef __cplusplus
238 } // extern "C" 235 } // extern "C"
239 #endif 236 #endif
240 237
241 #endif 238 #endif
OLDNEW
« no previous file with comments | « source/config/mac/x64/vp8_rtcd.h ('k') | source/config/win/ia32/vp8_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698