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

Side by Side Diff: third_party/libvpx/source/config/linux/mips64el/vp8_rtcd.h

Issue 2397473002: Roll src/third_party/libvpx/source/libvpx/ 691ef2027..50b9c467d (21 commits). (Closed)
Patch Set: Created 4 years, 2 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 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 void vp8_blend_mb_inner_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride); 44 void vp8_blend_mb_inner_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
45 #define vp8_blend_mb_inner vp8_blend_mb_inner_c 45 #define vp8_blend_mb_inner vp8_blend_mb_inner_c
46 46
47 void vp8_blend_mb_outer_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride); 47 void vp8_blend_mb_outer_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
48 #define vp8_blend_mb_outer vp8_blend_mb_outer_c 48 #define vp8_blend_mb_outer vp8_blend_mb_outer_c
49 49
50 int vp8_block_error_c(short *coeff, short *dqcoeff); 50 int vp8_block_error_c(short *coeff, short *dqcoeff);
51 #define vp8_block_error vp8_block_error_c 51 #define vp8_block_error vp8_block_error_c
52 52
53 void vp8_clear_system_state_c();
54 #define vp8_clear_system_state vp8_clear_system_state_c
55
56 void vp8_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch); 53 void vp8_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
57 #define vp8_copy_mem16x16 vp8_copy_mem16x16_c 54 #define vp8_copy_mem16x16 vp8_copy_mem16x16_c
58 55
59 void vp8_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch); 56 void vp8_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch);
60 #define vp8_copy_mem8x4 vp8_copy_mem8x4_c 57 #define vp8_copy_mem8x4 vp8_copy_mem8x4_c
61 58
62 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch); 59 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch);
63 #define vp8_copy_mem8x8 vp8_copy_mem8x8_c 60 #define vp8_copy_mem8x8 vp8_copy_mem8x8_c
64 61
65 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, u nsigned char *dst, int dst_stride); 62 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, u nsigned char *dst, int dst_stride);
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 static void setup_rtcd_internal(void) 172 static void setup_rtcd_internal(void)
176 { 173 {
177 } 174 }
178 #endif 175 #endif
179 176
180 #ifdef __cplusplus 177 #ifdef __cplusplus
181 } // extern "C" 178 } // extern "C"
182 #endif 179 #endif
183 180
184 #endif 181 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698