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

Side by Side Diff: source/config/linux/x64/vp8_rtcd.h

Issue 1162573005: 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/vpx_dsp_rtcd.h ('k') | source/config/linux/x64/vp9_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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 67
68 void vp8_build_intra_predictors_mby_s_c(struct macroblockd *x, unsigned char * y above_row, unsigned char * yleft, int left_stride, unsigned char * ypred_ptr, in t y_stride); 68 void vp8_build_intra_predictors_mby_s_c(struct macroblockd *x, unsigned char * y above_row, unsigned char * yleft, int left_stride, unsigned char * ypred_ptr, in t y_stride);
69 void vp8_build_intra_predictors_mby_s_sse2(struct macroblockd *x, unsigned char * yabove_row, unsigned char * yleft, int left_stride, unsigned char * ypred_ptr, int y_stride); 69 void vp8_build_intra_predictors_mby_s_sse2(struct macroblockd *x, unsigned char * yabove_row, unsigned char * yleft, int left_stride, unsigned char * ypred_ptr, int y_stride);
70 void vp8_build_intra_predictors_mby_s_ssse3(struct macroblockd *x, unsigned char * yabove_row, unsigned char * yleft, int left_stride, unsigned char * ypred_ptr , int y_stride); 70 void vp8_build_intra_predictors_mby_s_ssse3(struct macroblockd *x, unsigned char * yabove_row, unsigned char * yleft, int left_stride, unsigned char * ypred_ptr , int y_stride);
71 RTCD_EXTERN void (*vp8_build_intra_predictors_mby_s)(struct macroblockd *x, unsi gned char * yabove_row, unsigned char * yleft, int left_stride, unsigned char * ypred_ptr, int y_stride); 71 RTCD_EXTERN void (*vp8_build_intra_predictors_mby_s)(struct macroblockd *x, unsi gned char * yabove_row, unsigned char * yleft, int left_stride, unsigned char * ypred_ptr, int y_stride);
72 72
73 void vp8_clear_system_state_c(); 73 void vp8_clear_system_state_c();
74 void vpx_reset_mmx_state(); 74 void vpx_reset_mmx_state();
75 #define vp8_clear_system_state vpx_reset_mmx_state 75 #define vp8_clear_system_state vpx_reset_mmx_state
76 76
77 void vp8_copy32xn_c(const unsigned char *src_ptr, int source_stride, const unsig ned char *ref_ptr, int ref_stride, int n); 77 void vp8_copy32xn_c(const unsigned char *src_ptr, int source_stride, unsigned ch ar *dst_ptr, int dst_stride, int n);
78 void vp8_copy32xn_sse2(const unsigned char *src_ptr, int source_stride, const un signed char *ref_ptr, int ref_stride, int n); 78 void vp8_copy32xn_sse2(const unsigned char *src_ptr, int source_stride, unsigned char *dst_ptr, int dst_stride, int n);
79 void vp8_copy32xn_sse3(const unsigned char *src_ptr, int source_stride, const un signed char *ref_ptr, int ref_stride, int n); 79 void vp8_copy32xn_sse3(const unsigned char *src_ptr, int source_stride, unsigned char *dst_ptr, int dst_stride, int n);
80 RTCD_EXTERN void (*vp8_copy32xn)(const unsigned char *src_ptr, int source_stride , const unsigned char *ref_ptr, int ref_stride, int n); 80 RTCD_EXTERN void (*vp8_copy32xn)(const unsigned char *src_ptr, int source_stride , unsigned char *dst_ptr, int dst_stride, int n);
81 81
82 void vp8_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch); 82 void vp8_copy_mem16x16_c(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
83 void vp8_copy_mem16x16_mmx(unsigned char *src, int src_pitch, unsigned char *dst , int dst_pitch); 83 void vp8_copy_mem16x16_mmx(unsigned char *src, int src_pitch, unsigned char *dst , int dst_pitch);
84 void vp8_copy_mem16x16_sse2(unsigned char *src, int src_pitch, unsigned char *ds t, int dst_pitch); 84 void vp8_copy_mem16x16_sse2(unsigned char *src, int src_pitch, unsigned char *ds t, int dst_pitch);
85 #define vp8_copy_mem16x16 vp8_copy_mem16x16_sse2 85 #define vp8_copy_mem16x16 vp8_copy_mem16x16_sse2
86 86
87 void vp8_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch); 87 void vp8_copy_mem8x4_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch);
88 void vp8_copy_mem8x4_mmx(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch); 88 void vp8_copy_mem8x4_mmx(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
89 #define vp8_copy_mem8x4 vp8_copy_mem8x4_mmx 89 #define vp8_copy_mem8x4 vp8_copy_mem8x4_mmx
90 90
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 140
141 void vp8_filter_by_weight8x8_c(unsigned char *src, int src_stride, unsigned char *dst, int dst_stride, int src_weight); 141 void vp8_filter_by_weight8x8_c(unsigned char *src, int src_stride, unsigned char *dst, int dst_stride, int src_weight);
142 void vp8_filter_by_weight8x8_sse2(unsigned char *src, int src_stride, unsigned c har *dst, int dst_stride, int src_weight); 142 void vp8_filter_by_weight8x8_sse2(unsigned char *src, int src_stride, unsigned c har *dst, int dst_stride, int src_weight);
143 #define vp8_filter_by_weight8x8 vp8_filter_by_weight8x8_sse2 143 #define vp8_filter_by_weight8x8 vp8_filter_by_weight8x8_sse2
144 144
145 int vp8_full_search_sad_c(struct macroblock *x, struct block *b, struct blockd * d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable * fn_ptr, int *mvcost[2], union int_mv *center_mv); 145 int vp8_full_search_sad_c(struct macroblock *x, struct block *b, struct blockd * d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable * fn_ptr, int *mvcost[2], union int_mv *center_mv);
146 int vp8_full_search_sadx3(struct macroblock *x, struct block *b, struct blockd * d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable * fn_ptr, int *mvcost[2], union int_mv *center_mv); 146 int vp8_full_search_sadx3(struct macroblock *x, struct block *b, struct blockd * d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable * fn_ptr, int *mvcost[2], union int_mv *center_mv);
147 int vp8_full_search_sadx8(struct macroblock *x, struct block *b, struct blockd * d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable * fn_ptr, int *mvcost[2], union int_mv *center_mv); 147 int vp8_full_search_sadx8(struct macroblock *x, struct block *b, struct blockd * d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable * fn_ptr, int *mvcost[2], union int_mv *center_mv);
148 RTCD_EXTERN int (*vp8_full_search_sad)(struct macroblock *x, struct block *b, st ruct blockd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct vari ance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv); 148 RTCD_EXTERN int (*vp8_full_search_sad)(struct macroblock *x, struct block *b, st ruct blockd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct vari ance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv);
149 149
150 unsigned int vp8_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
151 unsigned int vp8_get4x4sse_cs_mmx(const unsigned char *src_ptr, int source_strid e, const unsigned char *ref_ptr, int ref_stride);
152 #define vp8_get4x4sse_cs vp8_get4x4sse_cs_mmx
153
154 unsigned int vp8_get_mb_ss_c(const short *);
155 unsigned int vp8_get_mb_ss_mmx(const short *);
156 unsigned int vp8_get_mb_ss_sse2(const short *);
157 #define vp8_get_mb_ss vp8_get_mb_ss_sse2
158
159 void vp8_intra4x4_predict_c(unsigned char *Above, unsigned char *yleft, int left _stride, int b_mode, unsigned char *dst, int dst_stride, unsigned char top_left) ; 150 void vp8_intra4x4_predict_c(unsigned char *Above, unsigned char *yleft, int left _stride, int b_mode, unsigned char *dst, int dst_stride, unsigned char top_left) ;
160 #define vp8_intra4x4_predict vp8_intra4x4_predict_c 151 #define vp8_intra4x4_predict vp8_intra4x4_predict_c
161 152
162 void vp8_loop_filter_bh_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi); 153 void vp8_loop_filter_bh_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
163 void vp8_loop_filter_bh_mmx(unsigned char *y, unsigned char *u, unsigned char *v , int ystride, int uv_stride, struct loop_filter_info *lfi); 154 void vp8_loop_filter_bh_mmx(unsigned char *y, unsigned char *u, unsigned char *v , int ystride, int uv_stride, struct loop_filter_info *lfi);
164 void vp8_loop_filter_bh_sse2(unsigned char *y, unsigned char *u, unsigned char * v, int ystride, int uv_stride, struct loop_filter_info *lfi); 155 void vp8_loop_filter_bh_sse2(unsigned char *y, unsigned char *u, unsigned char * v, int ystride, int uv_stride, struct loop_filter_info *lfi);
165 #define vp8_loop_filter_bh vp8_loop_filter_bh_sse2 156 #define vp8_loop_filter_bh vp8_loop_filter_bh_sse2
166 157
167 void vp8_loop_filter_bv_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi); 158 void vp8_loop_filter_bv_c(unsigned char *y, unsigned char *u, unsigned char *v, int ystride, int uv_stride, struct loop_filter_info *lfi);
168 void vp8_loop_filter_bv_mmx(unsigned char *y, unsigned char *u, unsigned char *v , int ystride, int uv_stride, struct loop_filter_info *lfi); 159 void vp8_loop_filter_bv_mmx(unsigned char *y, unsigned char *u, unsigned char *v , int ystride, int uv_stride, struct loop_filter_info *lfi);
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 void vp8_mbpost_proc_down_c(unsigned char *dst, int pitch, int rows, int cols,in t flimit); 202 void vp8_mbpost_proc_down_c(unsigned char *dst, int pitch, int rows, int cols,in t flimit);
212 void vp8_mbpost_proc_down_mmx(unsigned char *dst, int pitch, int rows, int cols, int flimit); 203 void vp8_mbpost_proc_down_mmx(unsigned char *dst, int pitch, int rows, int cols, int flimit);
213 void vp8_mbpost_proc_down_xmm(unsigned char *dst, int pitch, int rows, int cols, int flimit); 204 void vp8_mbpost_proc_down_xmm(unsigned char *dst, int pitch, int rows, int cols, int flimit);
214 #define vp8_mbpost_proc_down vp8_mbpost_proc_down_xmm 205 #define vp8_mbpost_proc_down vp8_mbpost_proc_down_xmm
215 206
216 int vp8_mbuverror_c(struct macroblock *mb); 207 int vp8_mbuverror_c(struct macroblock *mb);
217 int vp8_mbuverror_mmx(struct macroblock *mb); 208 int vp8_mbuverror_mmx(struct macroblock *mb);
218 int vp8_mbuverror_xmm(struct macroblock *mb); 209 int vp8_mbuverror_xmm(struct macroblock *mb);
219 #define vp8_mbuverror vp8_mbuverror_xmm 210 #define vp8_mbuverror vp8_mbuverror_xmm
220 211
221 unsigned int vp8_mse16x16_c(const unsigned char *src_ptr, int source_stride, con st unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
222 unsigned int vp8_mse16x16_mmx(const unsigned char *src_ptr, int source_stride, c onst unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
223 unsigned int vp8_mse16x16_wmt(const unsigned char *src_ptr, int source_stride, c onst unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
224 #define vp8_mse16x16 vp8_mse16x16_wmt
225
226 void vp8_plane_add_noise_c(unsigned char *s, char *noise, char blackclamp[16], c har whiteclamp[16], char bothclamp[16], unsigned int w, unsigned int h, int pitc h); 212 void vp8_plane_add_noise_c(unsigned char *s, char *noise, char blackclamp[16], c har whiteclamp[16], char bothclamp[16], unsigned int w, unsigned int h, int pitc h);
227 void vp8_plane_add_noise_mmx(unsigned char *s, char *noise, char blackclamp[16], char whiteclamp[16], char bothclamp[16], unsigned int w, unsigned int h, int pi tch); 213 void vp8_plane_add_noise_mmx(unsigned char *s, char *noise, char blackclamp[16], char whiteclamp[16], char bothclamp[16], unsigned int w, unsigned int h, int pi tch);
228 void vp8_plane_add_noise_wmt(unsigned char *s, char *noise, char blackclamp[16], char whiteclamp[16], char bothclamp[16], unsigned int w, unsigned int h, int pi tch); 214 void vp8_plane_add_noise_wmt(unsigned char *s, char *noise, char blackclamp[16], char whiteclamp[16], char bothclamp[16], unsigned int w, unsigned int h, int pi tch);
229 #define vp8_plane_add_noise vp8_plane_add_noise_wmt 215 #define vp8_plane_add_noise vp8_plane_add_noise_wmt
230 216
231 void vp8_post_proc_down_and_across_mb_row_c(unsigned char *src, unsigned char *d st, int src_pitch, int dst_pitch, int cols, unsigned char *flimits, int size); 217 void vp8_post_proc_down_and_across_mb_row_c(unsigned char *src, unsigned char *d st, int src_pitch, int dst_pitch, int cols, unsigned char *flimits, int size);
232 void vp8_post_proc_down_and_across_mb_row_sse2(unsigned char *src, unsigned char *dst, int src_pitch, int dst_pitch, int cols, unsigned char *flimits, int size) ; 218 void vp8_post_proc_down_and_across_mb_row_sse2(unsigned char *src, unsigned char *dst, int src_pitch, int dst_pitch, int cols, unsigned char *flimits, int size) ;
233 #define vp8_post_proc_down_and_across_mb_row vp8_post_proc_down_and_across_mb_ro w_sse2 219 #define vp8_post_proc_down_and_across_mb_row vp8_post_proc_down_and_across_mb_ro w_sse2
234 220
235 int vp8_refining_search_sad_c(struct macroblock *x, struct block *b, struct bloc kd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtab le *fn_ptr, int *mvcost[2], union int_mv *center_mv); 221 int vp8_refining_search_sad_c(struct macroblock *x, struct block *b, struct bloc kd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtab le *fn_ptr, int *mvcost[2], union int_mv *center_mv);
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 void vp8_subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc, int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride); 316 void vp8_subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc, int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride);
331 void vp8_subtract_mbuv_mmx(short *diff, unsigned char *usrc, unsigned char *vsrc , int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride); 317 void vp8_subtract_mbuv_mmx(short *diff, unsigned char *usrc, unsigned char *vsrc , int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride);
332 void vp8_subtract_mbuv_sse2(short *diff, unsigned char *usrc, unsigned char *vsr c, int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride); 318 void vp8_subtract_mbuv_sse2(short *diff, unsigned char *usrc, unsigned char *vsr c, int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride);
333 #define vp8_subtract_mbuv vp8_subtract_mbuv_sse2 319 #define vp8_subtract_mbuv vp8_subtract_mbuv_sse2
334 320
335 void vp8_subtract_mby_c(short *diff, unsigned char *src, int src_stride, unsigne d char *pred, int pred_stride); 321 void vp8_subtract_mby_c(short *diff, unsigned char *src, int src_stride, unsigne d char *pred, int pred_stride);
336 void vp8_subtract_mby_mmx(short *diff, unsigned char *src, int src_stride, unsig ned char *pred, int pred_stride); 322 void vp8_subtract_mby_mmx(short *diff, unsigned char *src, int src_stride, unsig ned char *pred, int pred_stride);
337 void vp8_subtract_mby_sse2(short *diff, unsigned char *src, int src_stride, unsi gned char *pred, int pred_stride); 323 void vp8_subtract_mby_sse2(short *diff, unsigned char *src, int src_stride, unsi gned char *pred, int pred_stride);
338 #define vp8_subtract_mby vp8_subtract_mby_sse2 324 #define vp8_subtract_mby vp8_subtract_mby_sse2
339 325
340 unsigned int vp8_variance16x16_c(const unsigned char *src_ptr, int source_stride , const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
341 unsigned int vp8_variance16x16_mmx(const unsigned char *src_ptr, int source_stri de, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
342 unsigned int vp8_variance16x16_wmt(const unsigned char *src_ptr, int source_stri de, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
343 #define vp8_variance16x16 vp8_variance16x16_wmt
344
345 unsigned int vp8_variance16x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
346 unsigned int vp8_variance16x8_mmx(const unsigned char *src_ptr, int source_strid e, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
347 unsigned int vp8_variance16x8_wmt(const unsigned char *src_ptr, int source_strid e, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
348 #define vp8_variance16x8 vp8_variance16x8_wmt
349
350 unsigned int vp8_variance4x4_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
351 unsigned int vp8_variance4x4_mmx(const unsigned char *src_ptr, int source_stride , const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
352 unsigned int vp8_variance4x4_wmt(const unsigned char *src_ptr, int source_stride , const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
353 #define vp8_variance4x4 vp8_variance4x4_wmt
354
355 unsigned int vp8_variance8x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
356 unsigned int vp8_variance8x16_mmx(const unsigned char *src_ptr, int source_strid e, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
357 unsigned int vp8_variance8x16_wmt(const unsigned char *src_ptr, int source_strid e, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
358 #define vp8_variance8x16 vp8_variance8x16_wmt
359
360 unsigned int vp8_variance8x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
361 unsigned int vp8_variance8x8_mmx(const unsigned char *src_ptr, int source_stride , const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
362 unsigned int vp8_variance8x8_wmt(const unsigned char *src_ptr, int source_stride , const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
363 #define vp8_variance8x8 vp8_variance8x8_wmt
364
365 unsigned int vp8_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse) ; 326 unsigned int vp8_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse) ;
366 unsigned int vp8_variance_halfpixvar16x16_h_mmx(const unsigned char *src_ptr, in t source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *ss e); 327 unsigned int vp8_variance_halfpixvar16x16_h_mmx(const unsigned char *src_ptr, in t source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *ss e);
367 unsigned int vp8_variance_halfpixvar16x16_h_wmt(const unsigned char *src_ptr, in t source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *ss e); 328 unsigned int vp8_variance_halfpixvar16x16_h_wmt(const unsigned char *src_ptr, in t source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *ss e);
368 #define vp8_variance_halfpixvar16x16_h vp8_variance_halfpixvar16x16_h_wmt 329 #define vp8_variance_halfpixvar16x16_h vp8_variance_halfpixvar16x16_h_wmt
369 330
370 unsigned int vp8_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse ); 331 unsigned int vp8_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse );
371 unsigned int vp8_variance_halfpixvar16x16_hv_mmx(const unsigned char *src_ptr, i nt source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *s se); 332 unsigned int vp8_variance_halfpixvar16x16_hv_mmx(const unsigned char *src_ptr, i nt source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *s se);
372 unsigned int vp8_variance_halfpixvar16x16_hv_wmt(const unsigned char *src_ptr, i nt source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *s se); 333 unsigned int vp8_variance_halfpixvar16x16_hv_wmt(const unsigned char *src_ptr, i nt source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *s se);
373 #define vp8_variance_halfpixvar16x16_hv vp8_variance_halfpixvar16x16_hv_wmt 334 #define vp8_variance_halfpixvar16x16_hv vp8_variance_halfpixvar16x16_hv_wmt
374 335
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 vp8_sub_pixel_variance16x8 = vp8_sub_pixel_variance16x8_wmt; 382 vp8_sub_pixel_variance16x8 = vp8_sub_pixel_variance16x8_wmt;
422 if (flags & HAS_SSSE3) vp8_sub_pixel_variance16x8 = vp8_sub_pixel_variance16 x8_ssse3; 383 if (flags & HAS_SSSE3) vp8_sub_pixel_variance16x8 = vp8_sub_pixel_variance16 x8_ssse3;
423 } 384 }
424 #endif 385 #endif
425 386
426 #ifdef __cplusplus 387 #ifdef __cplusplus
427 } // extern "C" 388 } // extern "C"
428 #endif 389 #endif
429 390
430 #endif 391 #endif
OLDNEW
« no previous file with comments | « source/config/linux/mipsel/vpx_dsp_rtcd.h ('k') | source/config/linux/x64/vp9_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698