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

Side by Side Diff: source/config/linux/mipsel/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/mips64el/vp8_rtcd.h ('k') | source/config/linux/x64/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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 static void setup_rtcd_internal(void) 232 static void setup_rtcd_internal(void)
236 { 233 {
237 } 234 }
238 #endif 235 #endif
239 236
240 #ifdef __cplusplus 237 #ifdef __cplusplus
241 } // extern "C" 238 } // extern "C"
242 #endif 239 #endif
243 240
244 #endif 241 #endif
OLDNEW
« no previous file with comments | « source/config/linux/mips64el/vp8_rtcd.h ('k') | source/config/linux/x64/vp8_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698