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

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

Issue 1124333011: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: only update to last nights LKGR Created 5 years, 7 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 234
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); 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);
236 int vp8_refining_search_sadx4(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); 236 int vp8_refining_search_sadx4(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);
237 RTCD_EXTERN int (*vp8_refining_search_sad)(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); 237 RTCD_EXTERN int (*vp8_refining_search_sad)(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);
238 238
239 void vp8_regular_quantize_b_c(struct block *, struct blockd *); 239 void vp8_regular_quantize_b_c(struct block *, struct blockd *);
240 void vp8_regular_quantize_b_sse2(struct block *, struct blockd *); 240 void vp8_regular_quantize_b_sse2(struct block *, struct blockd *);
241 void vp8_regular_quantize_b_sse4_1(struct block *, struct blockd *); 241 void vp8_regular_quantize_b_sse4_1(struct block *, struct blockd *);
242 RTCD_EXTERN void (*vp8_regular_quantize_b)(struct block *, struct blockd *); 242 RTCD_EXTERN void (*vp8_regular_quantize_b)(struct block *, struct blockd *);
243 243
244 unsigned int vp8_sad16x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
245 unsigned int vp8_sad16x16_mmx(const unsigned char *src_ptr, int src_stride, cons t unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
246 unsigned int vp8_sad16x16_wmt(const unsigned char *src_ptr, int src_stride, cons t unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
247 unsigned int vp8_sad16x16_sse3(const unsigned char *src_ptr, int src_stride, con st unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
248 RTCD_EXTERN unsigned int (*vp8_sad16x16)(const unsigned char *src_ptr, int src_s tride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
249
250 void vp8_sad16x16x3_c(const unsigned char *src_ptr, int src_stride, const unsign ed char *ref_ptr, int ref_stride, unsigned int *sad_array);
251 void vp8_sad16x16x3_sse3(const unsigned char *src_ptr, int src_stride, const uns igned char *ref_ptr, int ref_stride, unsigned int *sad_array);
252 void vp8_sad16x16x3_ssse3(const unsigned char *src_ptr, int src_stride, const un signed char *ref_ptr, int ref_stride, unsigned int *sad_array);
253 RTCD_EXTERN void (*vp8_sad16x16x3)(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
254
255 void vp8_sad16x16x4d_c(const unsigned char *src_ptr, int src_stride, const unsig ned char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
256 void vp8_sad16x16x4d_sse3(const unsigned char *src_ptr, int src_stride, const un signed char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
257 RTCD_EXTERN void (*vp8_sad16x16x4d)(const unsigned char *src_ptr, int src_stride , const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_arra y);
258
259 void vp8_sad16x16x8_c(const unsigned char *src_ptr, int src_stride, const unsign ed char *ref_ptr, int ref_stride, unsigned short *sad_array);
260 void vp8_sad16x16x8_sse4(const unsigned char *src_ptr, int src_stride, const uns igned char *ref_ptr, int ref_stride, unsigned short *sad_array);
261 RTCD_EXTERN void (*vp8_sad16x16x8)(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array);
262
263 unsigned int vp8_sad16x8_c(const unsigned char *src_ptr, int src_stride, const u nsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
264 unsigned int vp8_sad16x8_mmx(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
265 unsigned int vp8_sad16x8_wmt(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
266 #define vp8_sad16x8 vp8_sad16x8_wmt
267
268 void vp8_sad16x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigne d char *ref_ptr, int ref_stride, unsigned int *sad_array);
269 void vp8_sad16x8x3_sse3(const unsigned char *src_ptr, int src_stride, const unsi gned char *ref_ptr, int ref_stride, unsigned int *sad_array);
270 void vp8_sad16x8x3_ssse3(const unsigned char *src_ptr, int src_stride, const uns igned char *ref_ptr, int ref_stride, unsigned int *sad_array);
271 RTCD_EXTERN void (*vp8_sad16x8x3)(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
272
273 void vp8_sad16x8x4d_c(const unsigned char *src_ptr, int src_stride, const unsign ed char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
274 void vp8_sad16x8x4d_sse3(const unsigned char *src_ptr, int src_stride, const uns igned char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
275 RTCD_EXTERN void (*vp8_sad16x8x4d)(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array );
276
277 void vp8_sad16x8x8_c(const unsigned char *src_ptr, int src_stride, const unsigne d char *ref_ptr, int ref_stride, unsigned short *sad_array);
278 void vp8_sad16x8x8_sse4(const unsigned char *src_ptr, int src_stride, const unsi gned char *ref_ptr, int ref_stride, unsigned short *sad_array);
279 RTCD_EXTERN void (*vp8_sad16x8x8)(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array);
280
281 unsigned int vp8_sad4x4_c(const unsigned char *src_ptr, int src_stride, const un signed char *ref_ptr, int ref_stride, unsigned int max_sad);
282 unsigned int vp8_sad4x4_mmx(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
283 unsigned int vp8_sad4x4_wmt(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
284 #define vp8_sad4x4 vp8_sad4x4_wmt
285
286 void vp8_sad4x4x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
287 void vp8_sad4x4x3_sse3(const unsigned char *src_ptr, int src_stride, const unsig ned char *ref_ptr, int ref_stride, unsigned int *sad_array);
288 RTCD_EXTERN void (*vp8_sad4x4x3)(const unsigned char *src_ptr, int src_stride, c onst unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
289
290 void vp8_sad4x4x4d_c(const unsigned char *src_ptr, int src_stride, const unsigne d char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
291 void vp8_sad4x4x4d_sse3(const unsigned char *src_ptr, int src_stride, const unsi gned char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
292 RTCD_EXTERN void (*vp8_sad4x4x4d)(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array) ;
293
294 void vp8_sad4x4x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array);
295 void vp8_sad4x4x8_sse4(const unsigned char *src_ptr, int src_stride, const unsig ned char *ref_ptr, int ref_stride, unsigned short *sad_array);
296 RTCD_EXTERN void (*vp8_sad4x4x8)(const unsigned char *src_ptr, int src_stride, c onst unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array);
297
298 unsigned int vp8_sad8x16_c(const unsigned char *src_ptr, int src_stride, const u nsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
299 unsigned int vp8_sad8x16_mmx(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
300 unsigned int vp8_sad8x16_wmt(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
301 #define vp8_sad8x16 vp8_sad8x16_wmt
302
303 void vp8_sad8x16x3_c(const unsigned char *src_ptr, int src_stride, const unsigne d char *ref_ptr, int ref_stride, unsigned int *sad_array);
304 void vp8_sad8x16x3_sse3(const unsigned char *src_ptr, int src_stride, const unsi gned char *ref_ptr, int ref_stride, unsigned int *sad_array);
305 RTCD_EXTERN void (*vp8_sad8x16x3)(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
306
307 void vp8_sad8x16x4d_c(const unsigned char *src_ptr, int src_stride, const unsign ed char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
308 void vp8_sad8x16x4d_sse3(const unsigned char *src_ptr, int src_stride, const uns igned char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
309 RTCD_EXTERN void (*vp8_sad8x16x4d)(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array );
310
311 void vp8_sad8x16x8_c(const unsigned char *src_ptr, int src_stride, const unsigne d char *ref_ptr, int ref_stride, unsigned short *sad_array);
312 void vp8_sad8x16x8_sse4(const unsigned char *src_ptr, int src_stride, const unsi gned char *ref_ptr, int ref_stride, unsigned short *sad_array);
313 RTCD_EXTERN void (*vp8_sad8x16x8)(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array);
314
315 unsigned int vp8_sad8x8_c(const unsigned char *src_ptr, int src_stride, const un signed char *ref_ptr, int ref_stride, unsigned int max_sad);
316 unsigned int vp8_sad8x8_mmx(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
317 unsigned int vp8_sad8x8_wmt(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
318 #define vp8_sad8x8 vp8_sad8x8_wmt
319
320 void vp8_sad8x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
321 void vp8_sad8x8x3_sse3(const unsigned char *src_ptr, int src_stride, const unsig ned char *ref_ptr, int ref_stride, unsigned int *sad_array);
322 RTCD_EXTERN void (*vp8_sad8x8x3)(const unsigned char *src_ptr, int src_stride, c onst unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
323
324 void vp8_sad8x8x4d_c(const unsigned char *src_ptr, int src_stride, const unsigne d char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
325 void vp8_sad8x8x4d_sse3(const unsigned char *src_ptr, int src_stride, const unsi gned char * const ref_ptr[], int ref_stride, unsigned int *sad_array);
326 RTCD_EXTERN void (*vp8_sad8x8x4d)(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array) ;
327
328 void vp8_sad8x8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array);
329 void vp8_sad8x8x8_sse4(const unsigned char *src_ptr, int src_stride, const unsig ned char *ref_ptr, int ref_stride, unsigned short *sad_array);
330 RTCD_EXTERN void (*vp8_sad8x8x8)(const unsigned char *src_ptr, int src_stride, c onst unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array);
331
332 void vp8_short_fdct4x4_c(short *input, short *output, int pitch); 244 void vp8_short_fdct4x4_c(short *input, short *output, int pitch);
333 void vp8_short_fdct4x4_mmx(short *input, short *output, int pitch); 245 void vp8_short_fdct4x4_mmx(short *input, short *output, int pitch);
334 void vp8_short_fdct4x4_sse2(short *input, short *output, int pitch); 246 void vp8_short_fdct4x4_sse2(short *input, short *output, int pitch);
335 #define vp8_short_fdct4x4 vp8_short_fdct4x4_sse2 247 #define vp8_short_fdct4x4 vp8_short_fdct4x4_sse2
336 248
337 void vp8_short_fdct8x4_c(short *input, short *output, int pitch); 249 void vp8_short_fdct8x4_c(short *input, short *output, int pitch);
338 void vp8_short_fdct8x4_mmx(short *input, short *output, int pitch); 250 void vp8_short_fdct8x4_mmx(short *input, short *output, int pitch);
339 void vp8_short_fdct8x4_sse2(short *input, short *output, int pitch); 251 void vp8_short_fdct8x4_sse2(short *input, short *output, int pitch);
340 #define vp8_short_fdct8x4 vp8_short_fdct8x4_sse2 252 #define vp8_short_fdct8x4 vp8_short_fdct8x4_sse2
341 253
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 if (flags & HAS_SSE3) vp8_diamond_search_sad = vp8_diamond_search_sadx4; 401 if (flags & HAS_SSE3) vp8_diamond_search_sad = vp8_diamond_search_sadx4;
490 vp8_fast_quantize_b = vp8_fast_quantize_b_sse2; 402 vp8_fast_quantize_b = vp8_fast_quantize_b_sse2;
491 if (flags & HAS_SSSE3) vp8_fast_quantize_b = vp8_fast_quantize_b_ssse3; 403 if (flags & HAS_SSSE3) vp8_fast_quantize_b = vp8_fast_quantize_b_ssse3;
492 vp8_full_search_sad = vp8_full_search_sad_c; 404 vp8_full_search_sad = vp8_full_search_sad_c;
493 if (flags & HAS_SSE3) vp8_full_search_sad = vp8_full_search_sadx3; 405 if (flags & HAS_SSE3) vp8_full_search_sad = vp8_full_search_sadx3;
494 if (flags & HAS_SSE4_1) vp8_full_search_sad = vp8_full_search_sadx8; 406 if (flags & HAS_SSE4_1) vp8_full_search_sad = vp8_full_search_sadx8;
495 vp8_refining_search_sad = vp8_refining_search_sad_c; 407 vp8_refining_search_sad = vp8_refining_search_sad_c;
496 if (flags & HAS_SSE3) vp8_refining_search_sad = vp8_refining_search_sadx4; 408 if (flags & HAS_SSE3) vp8_refining_search_sad = vp8_refining_search_sadx4;
497 vp8_regular_quantize_b = vp8_regular_quantize_b_sse2; 409 vp8_regular_quantize_b = vp8_regular_quantize_b_sse2;
498 if (flags & HAS_SSE4_1) vp8_regular_quantize_b = vp8_regular_quantize_b_sse4 _1; 410 if (flags & HAS_SSE4_1) vp8_regular_quantize_b = vp8_regular_quantize_b_sse4 _1;
499 vp8_sad16x16 = vp8_sad16x16_wmt;
500 if (flags & HAS_SSE3) vp8_sad16x16 = vp8_sad16x16_sse3;
501 vp8_sad16x16x3 = vp8_sad16x16x3_c;
502 if (flags & HAS_SSE3) vp8_sad16x16x3 = vp8_sad16x16x3_sse3;
503 if (flags & HAS_SSSE3) vp8_sad16x16x3 = vp8_sad16x16x3_ssse3;
504 vp8_sad16x16x4d = vp8_sad16x16x4d_c;
505 if (flags & HAS_SSE3) vp8_sad16x16x4d = vp8_sad16x16x4d_sse3;
506 vp8_sad16x16x8 = vp8_sad16x16x8_c;
507 if (flags & HAS_SSE4_1) vp8_sad16x16x8 = vp8_sad16x16x8_sse4;
508 vp8_sad16x8x3 = vp8_sad16x8x3_c;
509 if (flags & HAS_SSE3) vp8_sad16x8x3 = vp8_sad16x8x3_sse3;
510 if (flags & HAS_SSSE3) vp8_sad16x8x3 = vp8_sad16x8x3_ssse3;
511 vp8_sad16x8x4d = vp8_sad16x8x4d_c;
512 if (flags & HAS_SSE3) vp8_sad16x8x4d = vp8_sad16x8x4d_sse3;
513 vp8_sad16x8x8 = vp8_sad16x8x8_c;
514 if (flags & HAS_SSE4_1) vp8_sad16x8x8 = vp8_sad16x8x8_sse4;
515 vp8_sad4x4x3 = vp8_sad4x4x3_c;
516 if (flags & HAS_SSE3) vp8_sad4x4x3 = vp8_sad4x4x3_sse3;
517 vp8_sad4x4x4d = vp8_sad4x4x4d_c;
518 if (flags & HAS_SSE3) vp8_sad4x4x4d = vp8_sad4x4x4d_sse3;
519 vp8_sad4x4x8 = vp8_sad4x4x8_c;
520 if (flags & HAS_SSE4_1) vp8_sad4x4x8 = vp8_sad4x4x8_sse4;
521 vp8_sad8x16x3 = vp8_sad8x16x3_c;
522 if (flags & HAS_SSE3) vp8_sad8x16x3 = vp8_sad8x16x3_sse3;
523 vp8_sad8x16x4d = vp8_sad8x16x4d_c;
524 if (flags & HAS_SSE3) vp8_sad8x16x4d = vp8_sad8x16x4d_sse3;
525 vp8_sad8x16x8 = vp8_sad8x16x8_c;
526 if (flags & HAS_SSE4_1) vp8_sad8x16x8 = vp8_sad8x16x8_sse4;
527 vp8_sad8x8x3 = vp8_sad8x8x3_c;
528 if (flags & HAS_SSE3) vp8_sad8x8x3 = vp8_sad8x8x3_sse3;
529 vp8_sad8x8x4d = vp8_sad8x8x4d_c;
530 if (flags & HAS_SSE3) vp8_sad8x8x4d = vp8_sad8x8x4d_sse3;
531 vp8_sad8x8x8 = vp8_sad8x8x8_c;
532 if (flags & HAS_SSE4_1) vp8_sad8x8x8 = vp8_sad8x8x8_sse4;
533 vp8_sixtap_predict16x16 = vp8_sixtap_predict16x16_sse2; 411 vp8_sixtap_predict16x16 = vp8_sixtap_predict16x16_sse2;
534 if (flags & HAS_SSSE3) vp8_sixtap_predict16x16 = vp8_sixtap_predict16x16_sss e3; 412 if (flags & HAS_SSSE3) vp8_sixtap_predict16x16 = vp8_sixtap_predict16x16_sss e3;
535 vp8_sixtap_predict4x4 = vp8_sixtap_predict4x4_mmx; 413 vp8_sixtap_predict4x4 = vp8_sixtap_predict4x4_mmx;
536 if (flags & HAS_SSSE3) vp8_sixtap_predict4x4 = vp8_sixtap_predict4x4_ssse3; 414 if (flags & HAS_SSSE3) vp8_sixtap_predict4x4 = vp8_sixtap_predict4x4_ssse3;
537 vp8_sixtap_predict8x4 = vp8_sixtap_predict8x4_sse2; 415 vp8_sixtap_predict8x4 = vp8_sixtap_predict8x4_sse2;
538 if (flags & HAS_SSSE3) vp8_sixtap_predict8x4 = vp8_sixtap_predict8x4_ssse3; 416 if (flags & HAS_SSSE3) vp8_sixtap_predict8x4 = vp8_sixtap_predict8x4_ssse3;
539 vp8_sixtap_predict8x8 = vp8_sixtap_predict8x8_sse2; 417 vp8_sixtap_predict8x8 = vp8_sixtap_predict8x8_sse2;
540 if (flags & HAS_SSSE3) vp8_sixtap_predict8x8 = vp8_sixtap_predict8x8_ssse3; 418 if (flags & HAS_SSSE3) vp8_sixtap_predict8x8 = vp8_sixtap_predict8x8_ssse3;
541 vp8_sub_pixel_variance16x16 = vp8_sub_pixel_variance16x16_wmt; 419 vp8_sub_pixel_variance16x16 = vp8_sub_pixel_variance16x16_wmt;
542 if (flags & HAS_SSSE3) vp8_sub_pixel_variance16x16 = vp8_sub_pixel_variance1 6x16_ssse3; 420 if (flags & HAS_SSSE3) vp8_sub_pixel_variance16x16 = vp8_sub_pixel_variance1 6x16_ssse3;
543 vp8_sub_pixel_variance16x8 = vp8_sub_pixel_variance16x8_wmt; 421 vp8_sub_pixel_variance16x8 = vp8_sub_pixel_variance16x8_wmt;
544 if (flags & HAS_SSSE3) vp8_sub_pixel_variance16x8 = vp8_sub_pixel_variance16 x8_ssse3; 422 if (flags & HAS_SSSE3) vp8_sub_pixel_variance16x8 = vp8_sub_pixel_variance16 x8_ssse3;
545 } 423 }
546 #endif 424 #endif
547 425
548 #ifdef __cplusplus 426 #ifdef __cplusplus
549 } // extern "C" 427 } // extern "C"
550 #endif 428 #endif
551 429
552 #endif 430 #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