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

Side by Side Diff: third_party/libvpx/source/config/mac/ia32/vpx_dsp_rtcd.h

Issue 2005893002: Roll src/third_party/libvpx/source/libvpx/ 57566ff24..4f774ac50 (29 commits). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 #ifndef VPX_DSP_RTCD_H_ 1 #ifndef VPX_DSP_RTCD_H_
2 #define VPX_DSP_RTCD_H_ 2 #define VPX_DSP_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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 302
303 void vpx_get16x16var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum); 303 void vpx_get16x16var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
304 void vpx_get16x16var_sse2(const uint8_t *src_ptr, int source_stride, const uint8 _t *ref_ptr, int ref_stride, unsigned int *sse, int *sum); 304 void vpx_get16x16var_sse2(const uint8_t *src_ptr, int source_stride, const uint8 _t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
305 void vpx_get16x16var_avx2(const uint8_t *src_ptr, int source_stride, const uint8 _t *ref_ptr, int ref_stride, unsigned int *sse, int *sum); 305 void vpx_get16x16var_avx2(const uint8_t *src_ptr, int source_stride, const uint8 _t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
306 RTCD_EXTERN void (*vpx_get16x16var)(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum); 306 RTCD_EXTERN void (*vpx_get16x16var)(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
307 307
308 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride); 308 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
309 #define vpx_get4x4sse_cs vpx_get4x4sse_cs_c 309 #define vpx_get4x4sse_cs vpx_get4x4sse_cs_c
310 310
311 void vpx_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *r ef_ptr, int ref_stride, unsigned int *sse, int *sum); 311 void vpx_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *r ef_ptr, int ref_stride, unsigned int *sse, int *sum);
312 void vpx_get8x8var_mmx(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
313 void vpx_get8x8var_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum); 312 void vpx_get8x8var_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
314 RTCD_EXTERN void (*vpx_get8x8var)(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum); 313 RTCD_EXTERN void (*vpx_get8x8var)(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
315 314
316 unsigned int vpx_get_mb_ss_c(const int16_t *); 315 unsigned int vpx_get_mb_ss_c(const int16_t *);
317 unsigned int vpx_get_mb_ss_mmx(const int16_t *);
318 unsigned int vpx_get_mb_ss_sse2(const int16_t *); 316 unsigned int vpx_get_mb_ss_sse2(const int16_t *);
319 RTCD_EXTERN unsigned int (*vpx_get_mb_ss)(const int16_t *); 317 RTCD_EXTERN unsigned int (*vpx_get_mb_ss)(const int16_t *);
320 318
321 void vpx_h_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left); 319 void vpx_h_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
322 void vpx_h_predictor_16x16_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 320 void vpx_h_predictor_16x16_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
323 RTCD_EXTERN void (*vpx_h_predictor_16x16)(uint8_t *dst, ptrdiff_t y_stride, cons t uint8_t *above, const uint8_t *left); 321 RTCD_EXTERN void (*vpx_h_predictor_16x16)(uint8_t *dst, ptrdiff_t y_stride, cons t uint8_t *above, const uint8_t *left);
324 322
325 void vpx_h_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left); 323 void vpx_h_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab ove, const uint8_t *left);
326 void vpx_h_predictor_32x32_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 324 void vpx_h_predictor_32x32_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
327 RTCD_EXTERN void (*vpx_h_predictor_32x32)(uint8_t *dst, ptrdiff_t y_stride, cons t uint8_t *above, const uint8_t *left); 325 RTCD_EXTERN void (*vpx_h_predictor_32x32)(uint8_t *dst, ptrdiff_t y_stride, cons t uint8_t *above, const uint8_t *left);
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 454
457 void vpx_lpf_vertical_8_dual_c(uint8_t *s, int pitch, const uint8_t *blimit0, co nst uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8 _t *limit1, const uint8_t *thresh1); 455 void vpx_lpf_vertical_8_dual_c(uint8_t *s, int pitch, const uint8_t *blimit0, co nst uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8 _t *limit1, const uint8_t *thresh1);
458 void vpx_lpf_vertical_8_dual_sse2(uint8_t *s, int pitch, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const ui nt8_t *limit1, const uint8_t *thresh1); 456 void vpx_lpf_vertical_8_dual_sse2(uint8_t *s, int pitch, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const ui nt8_t *limit1, const uint8_t *thresh1);
459 RTCD_EXTERN void (*vpx_lpf_vertical_8_dual)(uint8_t *s, int pitch, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1 , const uint8_t *limit1, const uint8_t *thresh1); 457 RTCD_EXTERN void (*vpx_lpf_vertical_8_dual)(uint8_t *s, int pitch, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1 , const uint8_t *limit1, const uint8_t *thresh1);
460 458
461 void vpx_minmax_8x8_c(const uint8_t *s, int p, const uint8_t *d, int dp, int *mi n, int *max); 459 void vpx_minmax_8x8_c(const uint8_t *s, int p, const uint8_t *d, int dp, int *mi n, int *max);
462 void vpx_minmax_8x8_sse2(const uint8_t *s, int p, const uint8_t *d, int dp, int *min, int *max); 460 void vpx_minmax_8x8_sse2(const uint8_t *s, int p, const uint8_t *d, int dp, int *min, int *max);
463 RTCD_EXTERN void (*vpx_minmax_8x8)(const uint8_t *s, int p, const uint8_t *d, in t dp, int *min, int *max); 461 RTCD_EXTERN void (*vpx_minmax_8x8)(const uint8_t *s, int p, const uint8_t *d, in t dp, int *min, int *max);
464 462
465 unsigned int vpx_mse16x16_c(const uint8_t *src_ptr, int source_stride, const ui nt8_t *ref_ptr, int recon_stride, unsigned int *sse); 463 unsigned int vpx_mse16x16_c(const uint8_t *src_ptr, int source_stride, const ui nt8_t *ref_ptr, int recon_stride, unsigned int *sse);
466 unsigned int vpx_mse16x16_mmx(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
467 unsigned int vpx_mse16x16_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse); 464 unsigned int vpx_mse16x16_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
468 unsigned int vpx_mse16x16_avx2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse); 465 unsigned int vpx_mse16x16_avx2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
469 RTCD_EXTERN unsigned int (*vpx_mse16x16)(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse); 466 RTCD_EXTERN unsigned int (*vpx_mse16x16)(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
470 467
471 unsigned int vpx_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uin t8_t *ref_ptr, int recon_stride, unsigned int *sse); 468 unsigned int vpx_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uin t8_t *ref_ptr, int recon_stride, unsigned int *sse);
472 unsigned int vpx_mse16x8_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse); 469 unsigned int vpx_mse16x8_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
473 RTCD_EXTERN unsigned int (*vpx_mse16x8)(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse); 470 RTCD_EXTERN unsigned int (*vpx_mse16x8)(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
474 471
475 unsigned int vpx_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uin t8_t *ref_ptr, int recon_stride, unsigned int *sse); 472 unsigned int vpx_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uin t8_t *ref_ptr, int recon_stride, unsigned int *sse);
476 unsigned int vpx_mse8x16_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse); 473 unsigned int vpx_mse8x16_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
477 RTCD_EXTERN unsigned int (*vpx_mse8x16)(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse); 474 RTCD_EXTERN unsigned int (*vpx_mse8x16)(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
478 475
479 unsigned int vpx_mse8x8_c(const uint8_t *src_ptr, int source_stride, const uint 8_t *ref_ptr, int recon_stride, unsigned int *sse); 476 unsigned int vpx_mse8x8_c(const uint8_t *src_ptr, int source_stride, const uint 8_t *ref_ptr, int recon_stride, unsigned int *sse);
480 unsigned int vpx_mse8x8_sse2(const uint8_t *src_ptr, int source_stride, const u int8_t *ref_ptr, int recon_stride, unsigned int *sse); 477 unsigned int vpx_mse8x8_sse2(const uint8_t *src_ptr, int source_stride, const u int8_t *ref_ptr, int recon_stride, unsigned int *sse);
481 RTCD_EXTERN unsigned int (*vpx_mse8x8)(const uint8_t *src_ptr, int source_strid e, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse); 478 RTCD_EXTERN unsigned int (*vpx_mse8x8)(const uint8_t *src_ptr, int source_strid e, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
482 479
483 void vpx_plane_add_noise_c(uint8_t *Start, char *noise, char blackclamp[16], cha r whiteclamp[16], char bothclamp[16], unsigned int Width, unsigned int Height, i nt Pitch); 480 void vpx_plane_add_noise_c(uint8_t *Start, char *noise, char blackclamp[16], cha r whiteclamp[16], char bothclamp[16], unsigned int Width, unsigned int Height, i nt Pitch);
484 void vpx_plane_add_noise_mmx(uint8_t *Start, char *noise, char blackclamp[16], c har whiteclamp[16], char bothclamp[16], unsigned int Width, unsigned int Height, int Pitch); 481 void vpx_plane_add_noise_mmx(uint8_t *Start, char *noise, char blackclamp[16], c har whiteclamp[16], char bothclamp[16], unsigned int Width, unsigned int Height, int Pitch);
485 void vpx_plane_add_noise_sse2(uint8_t *Start, char *noise, char blackclamp[16], char whiteclamp[16], char bothclamp[16], unsigned int Width, unsigned int Height , int Pitch); 482 void vpx_plane_add_noise_sse2(uint8_t *Start, char *noise, char blackclamp[16], char whiteclamp[16], char bothclamp[16], unsigned int Width, unsigned int Height , int Pitch);
486 RTCD_EXTERN void (*vpx_plane_add_noise)(uint8_t *Start, char *noise, char blackc lamp[16], char whiteclamp[16], char bothclamp[16], unsigned int Width, unsigned int Height, int Pitch); 483 RTCD_EXTERN void (*vpx_plane_add_noise)(uint8_t *Start, char *noise, char blackc lamp[16], char whiteclamp[16], char bothclamp[16], unsigned int Width, unsigned int Height, int Pitch);
487 484
488 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_b lock, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_pt r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_p tr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const in t16_t *iscan); 485 void vpx_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_b lock, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_pt r, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_p tr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const in t16_t *iscan);
489 void vpx_quantize_b_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int ski p_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant _ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoef f_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan); 486 void vpx_quantize_b_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int ski p_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant _ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoef f_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
490 RTCD_EXTERN void (*vpx_quantize_b)(const tran_low_t *coeff_ptr, intptr_t n_coeff s, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int1 6_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low _t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *s can, const int16_t *iscan); 487 RTCD_EXTERN void (*vpx_quantize_b)(const tran_low_t *coeff_ptr, intptr_t n_coeff s, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int1 6_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low _t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *s can, const int16_t *iscan);
491 488
492 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *qu ant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc oeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, co nst int16_t *iscan); 489 void vpx_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *qu ant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqc oeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, co nst int16_t *iscan);
493 #define vpx_quantize_b_32x32 vpx_quantize_b_32x32_c 490 #define vpx_quantize_b_32x32 vpx_quantize_b_32x32_c
494 491
495 unsigned int vpx_sad16x16_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride); 492 unsigned int vpx_sad16x16_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride);
496 unsigned int vpx_sad16x16_mmx(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride);
497 unsigned int vpx_sad16x16_sse2(const uint8_t *src_ptr, int src_stride, const uin t8_t *ref_ptr, int ref_stride); 493 unsigned int vpx_sad16x16_sse2(const uint8_t *src_ptr, int src_stride, const uin t8_t *ref_ptr, int ref_stride);
498 RTCD_EXTERN unsigned int (*vpx_sad16x16)(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride); 494 RTCD_EXTERN unsigned int (*vpx_sad16x16)(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
499 495
500 unsigned int vpx_sad16x16_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 496 unsigned int vpx_sad16x16_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
501 unsigned int vpx_sad16x16_avg_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 497 unsigned int vpx_sad16x16_avg_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
502 RTCD_EXTERN unsigned int (*vpx_sad16x16_avg)(const uint8_t *src_ptr, int src_str ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 498 RTCD_EXTERN unsigned int (*vpx_sad16x16_avg)(const uint8_t *src_ptr, int src_str ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
503 499
504 void vpx_sad16x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref _ptr, int ref_stride, uint32_t *sad_array); 500 void vpx_sad16x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref _ptr, int ref_stride, uint32_t *sad_array);
505 void vpx_sad16x16x3_sse3(const uint8_t *src_ptr, int src_stride, const uint8_t * ref_ptr, int ref_stride, uint32_t *sad_array); 501 void vpx_sad16x16x3_sse3(const uint8_t *src_ptr, int src_stride, const uint8_t * ref_ptr, int ref_stride, uint32_t *sad_array);
506 void vpx_sad16x16x3_ssse3(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array); 502 void vpx_sad16x16x3_ssse3(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array);
(...skipping 13 matching lines...) Expand all
520 516
521 unsigned int vpx_sad16x32_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 517 unsigned int vpx_sad16x32_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
522 unsigned int vpx_sad16x32_avg_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 518 unsigned int vpx_sad16x32_avg_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
523 RTCD_EXTERN unsigned int (*vpx_sad16x32_avg)(const uint8_t *src_ptr, int src_str ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 519 RTCD_EXTERN unsigned int (*vpx_sad16x32_avg)(const uint8_t *src_ptr, int src_str ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
524 520
525 void vpx_sad16x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array); 521 void vpx_sad16x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array);
526 void vpx_sad16x32x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); 522 void vpx_sad16x32x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array);
527 RTCD_EXTERN void (*vpx_sad16x32x4d)(const uint8_t *src_ptr, int src_stride, cons t uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); 523 RTCD_EXTERN void (*vpx_sad16x32x4d)(const uint8_t *src_ptr, int src_stride, cons t uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array);
528 524
529 unsigned int vpx_sad16x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride); 525 unsigned int vpx_sad16x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
530 unsigned int vpx_sad16x8_mmx(const uint8_t *src_ptr, int src_stride, const uint8 _t *ref_ptr, int ref_stride);
531 unsigned int vpx_sad16x8_sse2(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride); 526 unsigned int vpx_sad16x8_sse2(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride);
532 RTCD_EXTERN unsigned int (*vpx_sad16x8)(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride); 527 RTCD_EXTERN unsigned int (*vpx_sad16x8)(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
533 528
534 unsigned int vpx_sad16x8_avg_c(const uint8_t *src_ptr, int src_stride, const uin t8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 529 unsigned int vpx_sad16x8_avg_c(const uint8_t *src_ptr, int src_stride, const uin t8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
535 unsigned int vpx_sad16x8_avg_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 530 unsigned int vpx_sad16x8_avg_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
536 RTCD_EXTERN unsigned int (*vpx_sad16x8_avg)(const uint8_t *src_ptr, int src_stri de, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 531 RTCD_EXTERN unsigned int (*vpx_sad16x8_avg)(const uint8_t *src_ptr, int src_stri de, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
537 532
538 void vpx_sad16x8x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ ptr, int ref_stride, uint32_t *sad_array); 533 void vpx_sad16x8x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ ptr, int ref_stride, uint32_t *sad_array);
539 void vpx_sad16x8x3_sse3(const uint8_t *src_ptr, int src_stride, const uint8_t *r ef_ptr, int ref_stride, uint32_t *sad_array); 534 void vpx_sad16x8x3_sse3(const uint8_t *src_ptr, int src_stride, const uint8_t *r ef_ptr, int ref_stride, uint32_t *sad_array);
540 void vpx_sad16x8x3_ssse3(const uint8_t *src_ptr, int src_stride, const uint8_t * ref_ptr, int ref_stride, uint32_t *sad_array); 535 void vpx_sad16x8x3_ssse3(const uint8_t *src_ptr, int src_stride, const uint8_t * ref_ptr, int ref_stride, uint32_t *sad_array);
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 unsigned int vpx_sad32x64_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 586 unsigned int vpx_sad32x64_avg_c(const uint8_t *src_ptr, int src_stride, const ui nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
592 unsigned int vpx_sad32x64_avg_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 587 unsigned int vpx_sad32x64_avg_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
593 unsigned int vpx_sad32x64_avg_avx2(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 588 unsigned int vpx_sad32x64_avg_avx2(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
594 RTCD_EXTERN unsigned int (*vpx_sad32x64_avg)(const uint8_t *src_ptr, int src_str ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 589 RTCD_EXTERN unsigned int (*vpx_sad32x64_avg)(const uint8_t *src_ptr, int src_str ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
595 590
596 void vpx_sad32x64x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array); 591 void vpx_sad32x64x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array);
597 void vpx_sad32x64x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); 592 void vpx_sad32x64x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array);
598 RTCD_EXTERN void (*vpx_sad32x64x4d)(const uint8_t *src_ptr, int src_stride, cons t uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); 593 RTCD_EXTERN void (*vpx_sad32x64x4d)(const uint8_t *src_ptr, int src_stride, cons t uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array);
599 594
600 unsigned int vpx_sad4x4_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride); 595 unsigned int vpx_sad4x4_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
601 unsigned int vpx_sad4x4_mmx(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride);
602 unsigned int vpx_sad4x4_sse2(const uint8_t *src_ptr, int src_stride, const uint8 _t *ref_ptr, int ref_stride); 596 unsigned int vpx_sad4x4_sse2(const uint8_t *src_ptr, int src_stride, const uint8 _t *ref_ptr, int ref_stride);
603 RTCD_EXTERN unsigned int (*vpx_sad4x4)(const uint8_t *src_ptr, int src_stride, c onst uint8_t *ref_ptr, int ref_stride); 597 RTCD_EXTERN unsigned int (*vpx_sad4x4)(const uint8_t *src_ptr, int src_stride, c onst uint8_t *ref_ptr, int ref_stride);
604 598
605 unsigned int vpx_sad4x4_avg_c(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 599 unsigned int vpx_sad4x4_avg_c(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
606 unsigned int vpx_sad4x4_avg_sse2(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 600 unsigned int vpx_sad4x4_avg_sse2(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
607 RTCD_EXTERN unsigned int (*vpx_sad4x4_avg)(const uint8_t *src_ptr, int src_strid e, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 601 RTCD_EXTERN unsigned int (*vpx_sad4x4_avg)(const uint8_t *src_ptr, int src_strid e, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
608 602
609 void vpx_sad4x4x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p tr, int ref_stride, uint32_t *sad_array); 603 void vpx_sad4x4x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p tr, int ref_stride, uint32_t *sad_array);
610 void vpx_sad4x4x3_sse3(const uint8_t *src_ptr, int src_stride, const uint8_t *re f_ptr, int ref_stride, uint32_t *sad_array); 604 void vpx_sad4x4x3_sse3(const uint8_t *src_ptr, int src_stride, const uint8_t *re f_ptr, int ref_stride, uint32_t *sad_array);
611 RTCD_EXTERN void (*vpx_sad4x4x3)(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride, uint32_t *sad_array); 605 RTCD_EXTERN void (*vpx_sad4x4x3)(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride, uint32_t *sad_array);
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 656
663 void vpx_sad64x64x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array); 657 void vpx_sad64x64x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c onst ref_ptr[], int ref_stride, uint32_t *sad_array);
664 void vpx_sad64x64x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); 658 void vpx_sad64x64x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array);
665 void vpx_sad64x64x4d_avx2(const uint8_t *src_ptr, int src_stride, const uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); 659 void vpx_sad64x64x4d_avx2(const uint8_t *src_ptr, int src_stride, const uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array);
666 RTCD_EXTERN void (*vpx_sad64x64x4d)(const uint8_t *src_ptr, int src_stride, cons t uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); 660 RTCD_EXTERN void (*vpx_sad64x64x4d)(const uint8_t *src_ptr, int src_stride, cons t uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array);
667 661
668 void vpx_sad64x64x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref _ptr, int ref_stride, uint32_t *sad_array); 662 void vpx_sad64x64x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref _ptr, int ref_stride, uint32_t *sad_array);
669 #define vpx_sad64x64x8 vpx_sad64x64x8_c 663 #define vpx_sad64x64x8 vpx_sad64x64x8_c
670 664
671 unsigned int vpx_sad8x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride); 665 unsigned int vpx_sad8x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
672 unsigned int vpx_sad8x16_mmx(const uint8_t *src_ptr, int src_stride, const uint8 _t *ref_ptr, int ref_stride);
673 unsigned int vpx_sad8x16_sse2(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride); 666 unsigned int vpx_sad8x16_sse2(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride);
674 RTCD_EXTERN unsigned int (*vpx_sad8x16)(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride); 667 RTCD_EXTERN unsigned int (*vpx_sad8x16)(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
675 668
676 unsigned int vpx_sad8x16_avg_c(const uint8_t *src_ptr, int src_stride, const uin t8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 669 unsigned int vpx_sad8x16_avg_c(const uint8_t *src_ptr, int src_stride, const uin t8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
677 unsigned int vpx_sad8x16_avg_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 670 unsigned int vpx_sad8x16_avg_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
678 RTCD_EXTERN unsigned int (*vpx_sad8x16_avg)(const uint8_t *src_ptr, int src_stri de, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 671 RTCD_EXTERN unsigned int (*vpx_sad8x16_avg)(const uint8_t *src_ptr, int src_stri de, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
679 672
680 void vpx_sad8x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ ptr, int ref_stride, uint32_t *sad_array); 673 void vpx_sad8x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ ptr, int ref_stride, uint32_t *sad_array);
681 void vpx_sad8x16x3_sse3(const uint8_t *src_ptr, int src_stride, const uint8_t *r ef_ptr, int ref_stride, uint32_t *sad_array); 674 void vpx_sad8x16x3_sse3(const uint8_t *src_ptr, int src_stride, const uint8_t *r ef_ptr, int ref_stride, uint32_t *sad_array);
682 RTCD_EXTERN void (*vpx_sad8x16x3)(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array); 675 RTCD_EXTERN void (*vpx_sad8x16x3)(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array);
(...skipping 15 matching lines...) Expand all
698 RTCD_EXTERN unsigned int (*vpx_sad8x4_avg)(const uint8_t *src_ptr, int src_strid e, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 691 RTCD_EXTERN unsigned int (*vpx_sad8x4_avg)(const uint8_t *src_ptr, int src_strid e, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
699 692
700 void vpx_sad8x4x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * con st ref_ptr[], int ref_stride, uint32_t *sad_array); 693 void vpx_sad8x4x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * con st ref_ptr[], int ref_stride, uint32_t *sad_array);
701 void vpx_sad8x4x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); 694 void vpx_sad8x4x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array);
702 RTCD_EXTERN void (*vpx_sad8x4x4d)(const uint8_t *src_ptr, int src_stride, const uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); 695 RTCD_EXTERN void (*vpx_sad8x4x4d)(const uint8_t *src_ptr, int src_stride, const uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array);
703 696
704 void vpx_sad8x4x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p tr, int ref_stride, uint32_t *sad_array); 697 void vpx_sad8x4x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p tr, int ref_stride, uint32_t *sad_array);
705 #define vpx_sad8x4x8 vpx_sad8x4x8_c 698 #define vpx_sad8x4x8 vpx_sad8x4x8_c
706 699
707 unsigned int vpx_sad8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride); 700 unsigned int vpx_sad8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
708 unsigned int vpx_sad8x8_mmx(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride);
709 unsigned int vpx_sad8x8_sse2(const uint8_t *src_ptr, int src_stride, const uint8 _t *ref_ptr, int ref_stride); 701 unsigned int vpx_sad8x8_sse2(const uint8_t *src_ptr, int src_stride, const uint8 _t *ref_ptr, int ref_stride);
710 RTCD_EXTERN unsigned int (*vpx_sad8x8)(const uint8_t *src_ptr, int src_stride, c onst uint8_t *ref_ptr, int ref_stride); 702 RTCD_EXTERN unsigned int (*vpx_sad8x8)(const uint8_t *src_ptr, int src_stride, c onst uint8_t *ref_ptr, int ref_stride);
711 703
712 unsigned int vpx_sad8x8_avg_c(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 704 unsigned int vpx_sad8x8_avg_c(const uint8_t *src_ptr, int src_stride, const uint 8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
713 unsigned int vpx_sad8x8_avg_sse2(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 705 unsigned int vpx_sad8x8_avg_sse2(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
714 RTCD_EXTERN unsigned int (*vpx_sad8x8_avg)(const uint8_t *src_ptr, int src_strid e, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); 706 RTCD_EXTERN unsigned int (*vpx_sad8x8_avg)(const uint8_t *src_ptr, int src_strid e, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
715 707
716 void vpx_sad8x8x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p tr, int ref_stride, uint32_t *sad_array); 708 void vpx_sad8x8x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p tr, int ref_stride, uint32_t *sad_array);
717 void vpx_sad8x8x3_sse3(const uint8_t *src_ptr, int src_stride, const uint8_t *re f_ptr, int ref_stride, uint32_t *sad_array); 709 void vpx_sad8x8x3_sse3(const uint8_t *src_ptr, int src_stride, const uint8_t *re f_ptr, int ref_stride, uint32_t *sad_array);
718 RTCD_EXTERN void (*vpx_sad8x8x3)(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride, uint32_t *sad_array); 710 RTCD_EXTERN void (*vpx_sad8x8x3)(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride, uint32_t *sad_array);
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 909
918 void vpx_v_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left); 910 void vpx_v_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left);
919 void vpx_v_predictor_4x4_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left); 911 void vpx_v_predictor_4x4_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
920 RTCD_EXTERN void (*vpx_v_predictor_4x4)(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 912 RTCD_EXTERN void (*vpx_v_predictor_4x4)(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
921 913
922 void vpx_v_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left); 914 void vpx_v_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left);
923 void vpx_v_predictor_8x8_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left); 915 void vpx_v_predictor_8x8_sse2(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
924 RTCD_EXTERN void (*vpx_v_predictor_8x8)(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left); 916 RTCD_EXTERN void (*vpx_v_predictor_8x8)(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
925 917
926 unsigned int vpx_variance16x16_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 918 unsigned int vpx_variance16x16_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
927 unsigned int vpx_variance16x16_mmx(const uint8_t *src_ptr, int source_stride, co nst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
928 unsigned int vpx_variance16x16_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 919 unsigned int vpx_variance16x16_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
929 unsigned int vpx_variance16x16_avx2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 920 unsigned int vpx_variance16x16_avx2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
930 RTCD_EXTERN unsigned int (*vpx_variance16x16)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 921 RTCD_EXTERN unsigned int (*vpx_variance16x16)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
931 922
932 unsigned int vpx_variance16x32_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 923 unsigned int vpx_variance16x32_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
933 unsigned int vpx_variance16x32_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 924 unsigned int vpx_variance16x32_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
934 RTCD_EXTERN unsigned int (*vpx_variance16x32)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 925 RTCD_EXTERN unsigned int (*vpx_variance16x32)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
935 926
936 unsigned int vpx_variance16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 927 unsigned int vpx_variance16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
937 unsigned int vpx_variance16x8_mmx(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
938 unsigned int vpx_variance16x8_sse2(const uint8_t *src_ptr, int source_stride, co nst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 928 unsigned int vpx_variance16x8_sse2(const uint8_t *src_ptr, int source_stride, co nst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
939 RTCD_EXTERN unsigned int (*vpx_variance16x8)(const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 929 RTCD_EXTERN unsigned int (*vpx_variance16x8)(const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
940 930
941 unsigned int vpx_variance32x16_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 931 unsigned int vpx_variance32x16_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
942 unsigned int vpx_variance32x16_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 932 unsigned int vpx_variance32x16_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
943 unsigned int vpx_variance32x16_avx2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 933 unsigned int vpx_variance32x16_avx2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
944 RTCD_EXTERN unsigned int (*vpx_variance32x16)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 934 RTCD_EXTERN unsigned int (*vpx_variance32x16)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
945 935
946 unsigned int vpx_variance32x32_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 936 unsigned int vpx_variance32x32_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
947 unsigned int vpx_variance32x32_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 937 unsigned int vpx_variance32x32_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
948 unsigned int vpx_variance32x32_avx2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 938 unsigned int vpx_variance32x32_avx2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
949 RTCD_EXTERN unsigned int (*vpx_variance32x32)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 939 RTCD_EXTERN unsigned int (*vpx_variance32x32)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
950 940
951 unsigned int vpx_variance32x64_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 941 unsigned int vpx_variance32x64_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
952 unsigned int vpx_variance32x64_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 942 unsigned int vpx_variance32x64_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
953 RTCD_EXTERN unsigned int (*vpx_variance32x64)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 943 RTCD_EXTERN unsigned int (*vpx_variance32x64)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
954 944
955 unsigned int vpx_variance4x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 945 unsigned int vpx_variance4x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
956 unsigned int vpx_variance4x4_mmx(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
957 unsigned int vpx_variance4x4_sse2(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 946 unsigned int vpx_variance4x4_sse2(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
958 RTCD_EXTERN unsigned int (*vpx_variance4x4)(const uint8_t *src_ptr, int source_s tride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 947 RTCD_EXTERN unsigned int (*vpx_variance4x4)(const uint8_t *src_ptr, int source_s tride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
959 948
960 unsigned int vpx_variance4x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 949 unsigned int vpx_variance4x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
961 unsigned int vpx_variance4x8_sse2(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 950 unsigned int vpx_variance4x8_sse2(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
962 RTCD_EXTERN unsigned int (*vpx_variance4x8)(const uint8_t *src_ptr, int source_s tride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 951 RTCD_EXTERN unsigned int (*vpx_variance4x8)(const uint8_t *src_ptr, int source_s tride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
963 952
964 unsigned int vpx_variance64x32_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 953 unsigned int vpx_variance64x32_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
965 unsigned int vpx_variance64x32_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 954 unsigned int vpx_variance64x32_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
966 unsigned int vpx_variance64x32_avx2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 955 unsigned int vpx_variance64x32_avx2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
967 RTCD_EXTERN unsigned int (*vpx_variance64x32)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 956 RTCD_EXTERN unsigned int (*vpx_variance64x32)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
968 957
969 unsigned int vpx_variance64x64_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 958 unsigned int vpx_variance64x64_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
970 unsigned int vpx_variance64x64_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 959 unsigned int vpx_variance64x64_sse2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
971 unsigned int vpx_variance64x64_avx2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 960 unsigned int vpx_variance64x64_avx2(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
972 RTCD_EXTERN unsigned int (*vpx_variance64x64)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 961 RTCD_EXTERN unsigned int (*vpx_variance64x64)(const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
973 962
974 unsigned int vpx_variance8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 963 unsigned int vpx_variance8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
975 unsigned int vpx_variance8x16_mmx(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
976 unsigned int vpx_variance8x16_sse2(const uint8_t *src_ptr, int source_stride, co nst uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 964 unsigned int vpx_variance8x16_sse2(const uint8_t *src_ptr, int source_stride, co nst uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
977 RTCD_EXTERN unsigned int (*vpx_variance8x16)(const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 965 RTCD_EXTERN unsigned int (*vpx_variance8x16)(const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
978 966
979 unsigned int vpx_variance8x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 967 unsigned int vpx_variance8x4_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
980 unsigned int vpx_variance8x4_sse2(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 968 unsigned int vpx_variance8x4_sse2(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
981 RTCD_EXTERN unsigned int (*vpx_variance8x4)(const uint8_t *src_ptr, int source_s tride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 969 RTCD_EXTERN unsigned int (*vpx_variance8x4)(const uint8_t *src_ptr, int source_s tride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
982 970
983 unsigned int vpx_variance8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 971 unsigned int vpx_variance8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
984 unsigned int vpx_variance8x8_mmx(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
985 unsigned int vpx_variance8x8_sse2(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 972 unsigned int vpx_variance8x8_sse2(const uint8_t *src_ptr, int source_stride, con st uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
986 RTCD_EXTERN unsigned int (*vpx_variance8x8)(const uint8_t *src_ptr, int source_s tride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse); 973 RTCD_EXTERN unsigned int (*vpx_variance8x8)(const uint8_t *src_ptr, int source_s tride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
987 974
988 uint32_t vpx_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int sour ce_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse); 975 uint32_t vpx_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int sour ce_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse);
989 uint32_t vpx_variance_halfpixvar16x16_h_mmx(const unsigned char *src_ptr, int so urce_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse); 976 uint32_t vpx_variance_halfpixvar16x16_h_mmx(const unsigned char *src_ptr, int so urce_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse);
990 uint32_t vpx_variance_halfpixvar16x16_h_sse2(const unsigned char *src_ptr, int s ource_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse); 977 uint32_t vpx_variance_halfpixvar16x16_h_sse2(const unsigned char *src_ptr, int s ource_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse);
991 RTCD_EXTERN uint32_t (*vpx_variance_halfpixvar16x16_h)(const unsigned char *src_ ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse); 978 RTCD_EXTERN uint32_t (*vpx_variance_halfpixvar16x16_h)(const unsigned char *src_ ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse);
992 979
993 uint32_t vpx_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int sou rce_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse); 980 uint32_t vpx_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int sou rce_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse);
994 uint32_t vpx_variance_halfpixvar16x16_hv_mmx(const unsigned char *src_ptr, int s ource_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse); 981 uint32_t vpx_variance_halfpixvar16x16_hv_mmx(const unsigned char *src_ptr, int s ource_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse);
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 vpx_fdct4x4_1 = vpx_fdct4x4_1_c; 1114 vpx_fdct4x4_1 = vpx_fdct4x4_1_c;
1128 if (flags & HAS_SSE2) vpx_fdct4x4_1 = vpx_fdct4x4_1_sse2; 1115 if (flags & HAS_SSE2) vpx_fdct4x4_1 = vpx_fdct4x4_1_sse2;
1129 vpx_fdct8x8 = vpx_fdct8x8_c; 1116 vpx_fdct8x8 = vpx_fdct8x8_c;
1130 if (flags & HAS_SSE2) vpx_fdct8x8 = vpx_fdct8x8_sse2; 1117 if (flags & HAS_SSE2) vpx_fdct8x8 = vpx_fdct8x8_sse2;
1131 vpx_fdct8x8_1 = vpx_fdct8x8_1_c; 1118 vpx_fdct8x8_1 = vpx_fdct8x8_1_c;
1132 if (flags & HAS_SSE2) vpx_fdct8x8_1 = vpx_fdct8x8_1_sse2; 1119 if (flags & HAS_SSE2) vpx_fdct8x8_1 = vpx_fdct8x8_1_sse2;
1133 vpx_get16x16var = vpx_get16x16var_c; 1120 vpx_get16x16var = vpx_get16x16var_c;
1134 if (flags & HAS_SSE2) vpx_get16x16var = vpx_get16x16var_sse2; 1121 if (flags & HAS_SSE2) vpx_get16x16var = vpx_get16x16var_sse2;
1135 if (flags & HAS_AVX2) vpx_get16x16var = vpx_get16x16var_avx2; 1122 if (flags & HAS_AVX2) vpx_get16x16var = vpx_get16x16var_avx2;
1136 vpx_get8x8var = vpx_get8x8var_c; 1123 vpx_get8x8var = vpx_get8x8var_c;
1137 if (flags & HAS_MMX) vpx_get8x8var = vpx_get8x8var_mmx;
1138 if (flags & HAS_SSE2) vpx_get8x8var = vpx_get8x8var_sse2; 1124 if (flags & HAS_SSE2) vpx_get8x8var = vpx_get8x8var_sse2;
1139 vpx_get_mb_ss = vpx_get_mb_ss_c; 1125 vpx_get_mb_ss = vpx_get_mb_ss_c;
1140 if (flags & HAS_MMX) vpx_get_mb_ss = vpx_get_mb_ss_mmx;
1141 if (flags & HAS_SSE2) vpx_get_mb_ss = vpx_get_mb_ss_sse2; 1126 if (flags & HAS_SSE2) vpx_get_mb_ss = vpx_get_mb_ss_sse2;
1142 vpx_h_predictor_16x16 = vpx_h_predictor_16x16_c; 1127 vpx_h_predictor_16x16 = vpx_h_predictor_16x16_c;
1143 if (flags & HAS_SSE2) vpx_h_predictor_16x16 = vpx_h_predictor_16x16_sse2; 1128 if (flags & HAS_SSE2) vpx_h_predictor_16x16 = vpx_h_predictor_16x16_sse2;
1144 vpx_h_predictor_32x32 = vpx_h_predictor_32x32_c; 1129 vpx_h_predictor_32x32 = vpx_h_predictor_32x32_c;
1145 if (flags & HAS_SSE2) vpx_h_predictor_32x32 = vpx_h_predictor_32x32_sse2; 1130 if (flags & HAS_SSE2) vpx_h_predictor_32x32 = vpx_h_predictor_32x32_sse2;
1146 vpx_h_predictor_4x4 = vpx_h_predictor_4x4_c; 1131 vpx_h_predictor_4x4 = vpx_h_predictor_4x4_c;
1147 if (flags & HAS_SSE2) vpx_h_predictor_4x4 = vpx_h_predictor_4x4_sse2; 1132 if (flags & HAS_SSE2) vpx_h_predictor_4x4 = vpx_h_predictor_4x4_sse2;
1148 vpx_h_predictor_8x8 = vpx_h_predictor_8x8_c; 1133 vpx_h_predictor_8x8 = vpx_h_predictor_8x8_c;
1149 if (flags & HAS_SSE2) vpx_h_predictor_8x8 = vpx_h_predictor_8x8_sse2; 1134 if (flags & HAS_SSE2) vpx_h_predictor_8x8 = vpx_h_predictor_8x8_sse2;
1150 vpx_hadamard_16x16 = vpx_hadamard_16x16_c; 1135 vpx_hadamard_16x16 = vpx_hadamard_16x16_c;
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
1203 if (flags & HAS_MMX) vpx_lpf_vertical_4 = vpx_lpf_vertical_4_mmx; 1188 if (flags & HAS_MMX) vpx_lpf_vertical_4 = vpx_lpf_vertical_4_mmx;
1204 vpx_lpf_vertical_4_dual = vpx_lpf_vertical_4_dual_c; 1189 vpx_lpf_vertical_4_dual = vpx_lpf_vertical_4_dual_c;
1205 if (flags & HAS_SSE2) vpx_lpf_vertical_4_dual = vpx_lpf_vertical_4_dual_sse2 ; 1190 if (flags & HAS_SSE2) vpx_lpf_vertical_4_dual = vpx_lpf_vertical_4_dual_sse2 ;
1206 vpx_lpf_vertical_8 = vpx_lpf_vertical_8_c; 1191 vpx_lpf_vertical_8 = vpx_lpf_vertical_8_c;
1207 if (flags & HAS_SSE2) vpx_lpf_vertical_8 = vpx_lpf_vertical_8_sse2; 1192 if (flags & HAS_SSE2) vpx_lpf_vertical_8 = vpx_lpf_vertical_8_sse2;
1208 vpx_lpf_vertical_8_dual = vpx_lpf_vertical_8_dual_c; 1193 vpx_lpf_vertical_8_dual = vpx_lpf_vertical_8_dual_c;
1209 if (flags & HAS_SSE2) vpx_lpf_vertical_8_dual = vpx_lpf_vertical_8_dual_sse2 ; 1194 if (flags & HAS_SSE2) vpx_lpf_vertical_8_dual = vpx_lpf_vertical_8_dual_sse2 ;
1210 vpx_minmax_8x8 = vpx_minmax_8x8_c; 1195 vpx_minmax_8x8 = vpx_minmax_8x8_c;
1211 if (flags & HAS_SSE2) vpx_minmax_8x8 = vpx_minmax_8x8_sse2; 1196 if (flags & HAS_SSE2) vpx_minmax_8x8 = vpx_minmax_8x8_sse2;
1212 vpx_mse16x16 = vpx_mse16x16_c; 1197 vpx_mse16x16 = vpx_mse16x16_c;
1213 if (flags & HAS_MMX) vpx_mse16x16 = vpx_mse16x16_mmx;
1214 if (flags & HAS_SSE2) vpx_mse16x16 = vpx_mse16x16_sse2; 1198 if (flags & HAS_SSE2) vpx_mse16x16 = vpx_mse16x16_sse2;
1215 if (flags & HAS_AVX2) vpx_mse16x16 = vpx_mse16x16_avx2; 1199 if (flags & HAS_AVX2) vpx_mse16x16 = vpx_mse16x16_avx2;
1216 vpx_mse16x8 = vpx_mse16x8_c; 1200 vpx_mse16x8 = vpx_mse16x8_c;
1217 if (flags & HAS_SSE2) vpx_mse16x8 = vpx_mse16x8_sse2; 1201 if (flags & HAS_SSE2) vpx_mse16x8 = vpx_mse16x8_sse2;
1218 vpx_mse8x16 = vpx_mse8x16_c; 1202 vpx_mse8x16 = vpx_mse8x16_c;
1219 if (flags & HAS_SSE2) vpx_mse8x16 = vpx_mse8x16_sse2; 1203 if (flags & HAS_SSE2) vpx_mse8x16 = vpx_mse8x16_sse2;
1220 vpx_mse8x8 = vpx_mse8x8_c; 1204 vpx_mse8x8 = vpx_mse8x8_c;
1221 if (flags & HAS_SSE2) vpx_mse8x8 = vpx_mse8x8_sse2; 1205 if (flags & HAS_SSE2) vpx_mse8x8 = vpx_mse8x8_sse2;
1222 vpx_plane_add_noise = vpx_plane_add_noise_c; 1206 vpx_plane_add_noise = vpx_plane_add_noise_c;
1223 if (flags & HAS_MMX) vpx_plane_add_noise = vpx_plane_add_noise_mmx; 1207 if (flags & HAS_MMX) vpx_plane_add_noise = vpx_plane_add_noise_mmx;
1224 if (flags & HAS_SSE2) vpx_plane_add_noise = vpx_plane_add_noise_sse2; 1208 if (flags & HAS_SSE2) vpx_plane_add_noise = vpx_plane_add_noise_sse2;
1225 vpx_quantize_b = vpx_quantize_b_c; 1209 vpx_quantize_b = vpx_quantize_b_c;
1226 if (flags & HAS_SSE2) vpx_quantize_b = vpx_quantize_b_sse2; 1210 if (flags & HAS_SSE2) vpx_quantize_b = vpx_quantize_b_sse2;
1227 vpx_sad16x16 = vpx_sad16x16_c; 1211 vpx_sad16x16 = vpx_sad16x16_c;
1228 if (flags & HAS_MMX) vpx_sad16x16 = vpx_sad16x16_mmx;
1229 if (flags & HAS_SSE2) vpx_sad16x16 = vpx_sad16x16_sse2; 1212 if (flags & HAS_SSE2) vpx_sad16x16 = vpx_sad16x16_sse2;
1230 vpx_sad16x16_avg = vpx_sad16x16_avg_c; 1213 vpx_sad16x16_avg = vpx_sad16x16_avg_c;
1231 if (flags & HAS_SSE2) vpx_sad16x16_avg = vpx_sad16x16_avg_sse2; 1214 if (flags & HAS_SSE2) vpx_sad16x16_avg = vpx_sad16x16_avg_sse2;
1232 vpx_sad16x16x3 = vpx_sad16x16x3_c; 1215 vpx_sad16x16x3 = vpx_sad16x16x3_c;
1233 if (flags & HAS_SSE3) vpx_sad16x16x3 = vpx_sad16x16x3_sse3; 1216 if (flags & HAS_SSE3) vpx_sad16x16x3 = vpx_sad16x16x3_sse3;
1234 if (flags & HAS_SSSE3) vpx_sad16x16x3 = vpx_sad16x16x3_ssse3; 1217 if (flags & HAS_SSSE3) vpx_sad16x16x3 = vpx_sad16x16x3_ssse3;
1235 vpx_sad16x16x4d = vpx_sad16x16x4d_c; 1218 vpx_sad16x16x4d = vpx_sad16x16x4d_c;
1236 if (flags & HAS_SSE2) vpx_sad16x16x4d = vpx_sad16x16x4d_sse2; 1219 if (flags & HAS_SSE2) vpx_sad16x16x4d = vpx_sad16x16x4d_sse2;
1237 vpx_sad16x16x8 = vpx_sad16x16x8_c; 1220 vpx_sad16x16x8 = vpx_sad16x16x8_c;
1238 if (flags & HAS_SSE4_1) vpx_sad16x16x8 = vpx_sad16x16x8_sse4_1; 1221 if (flags & HAS_SSE4_1) vpx_sad16x16x8 = vpx_sad16x16x8_sse4_1;
1239 vpx_sad16x32 = vpx_sad16x32_c; 1222 vpx_sad16x32 = vpx_sad16x32_c;
1240 if (flags & HAS_SSE2) vpx_sad16x32 = vpx_sad16x32_sse2; 1223 if (flags & HAS_SSE2) vpx_sad16x32 = vpx_sad16x32_sse2;
1241 vpx_sad16x32_avg = vpx_sad16x32_avg_c; 1224 vpx_sad16x32_avg = vpx_sad16x32_avg_c;
1242 if (flags & HAS_SSE2) vpx_sad16x32_avg = vpx_sad16x32_avg_sse2; 1225 if (flags & HAS_SSE2) vpx_sad16x32_avg = vpx_sad16x32_avg_sse2;
1243 vpx_sad16x32x4d = vpx_sad16x32x4d_c; 1226 vpx_sad16x32x4d = vpx_sad16x32x4d_c;
1244 if (flags & HAS_SSE2) vpx_sad16x32x4d = vpx_sad16x32x4d_sse2; 1227 if (flags & HAS_SSE2) vpx_sad16x32x4d = vpx_sad16x32x4d_sse2;
1245 vpx_sad16x8 = vpx_sad16x8_c; 1228 vpx_sad16x8 = vpx_sad16x8_c;
1246 if (flags & HAS_MMX) vpx_sad16x8 = vpx_sad16x8_mmx;
1247 if (flags & HAS_SSE2) vpx_sad16x8 = vpx_sad16x8_sse2; 1229 if (flags & HAS_SSE2) vpx_sad16x8 = vpx_sad16x8_sse2;
1248 vpx_sad16x8_avg = vpx_sad16x8_avg_c; 1230 vpx_sad16x8_avg = vpx_sad16x8_avg_c;
1249 if (flags & HAS_SSE2) vpx_sad16x8_avg = vpx_sad16x8_avg_sse2; 1231 if (flags & HAS_SSE2) vpx_sad16x8_avg = vpx_sad16x8_avg_sse2;
1250 vpx_sad16x8x3 = vpx_sad16x8x3_c; 1232 vpx_sad16x8x3 = vpx_sad16x8x3_c;
1251 if (flags & HAS_SSE3) vpx_sad16x8x3 = vpx_sad16x8x3_sse3; 1233 if (flags & HAS_SSE3) vpx_sad16x8x3 = vpx_sad16x8x3_sse3;
1252 if (flags & HAS_SSSE3) vpx_sad16x8x3 = vpx_sad16x8x3_ssse3; 1234 if (flags & HAS_SSSE3) vpx_sad16x8x3 = vpx_sad16x8x3_ssse3;
1253 vpx_sad16x8x4d = vpx_sad16x8x4d_c; 1235 vpx_sad16x8x4d = vpx_sad16x8x4d_c;
1254 if (flags & HAS_SSE2) vpx_sad16x8x4d = vpx_sad16x8x4d_sse2; 1236 if (flags & HAS_SSE2) vpx_sad16x8x4d = vpx_sad16x8x4d_sse2;
1255 vpx_sad16x8x8 = vpx_sad16x8x8_c; 1237 vpx_sad16x8x8 = vpx_sad16x8x8_c;
1256 if (flags & HAS_SSE4_1) vpx_sad16x8x8 = vpx_sad16x8x8_sse4_1; 1238 if (flags & HAS_SSE4_1) vpx_sad16x8x8 = vpx_sad16x8x8_sse4_1;
(...skipping 16 matching lines...) Expand all
1273 if (flags & HAS_AVX2) vpx_sad32x32x4d = vpx_sad32x32x4d_avx2; 1255 if (flags & HAS_AVX2) vpx_sad32x32x4d = vpx_sad32x32x4d_avx2;
1274 vpx_sad32x64 = vpx_sad32x64_c; 1256 vpx_sad32x64 = vpx_sad32x64_c;
1275 if (flags & HAS_SSE2) vpx_sad32x64 = vpx_sad32x64_sse2; 1257 if (flags & HAS_SSE2) vpx_sad32x64 = vpx_sad32x64_sse2;
1276 if (flags & HAS_AVX2) vpx_sad32x64 = vpx_sad32x64_avx2; 1258 if (flags & HAS_AVX2) vpx_sad32x64 = vpx_sad32x64_avx2;
1277 vpx_sad32x64_avg = vpx_sad32x64_avg_c; 1259 vpx_sad32x64_avg = vpx_sad32x64_avg_c;
1278 if (flags & HAS_SSE2) vpx_sad32x64_avg = vpx_sad32x64_avg_sse2; 1260 if (flags & HAS_SSE2) vpx_sad32x64_avg = vpx_sad32x64_avg_sse2;
1279 if (flags & HAS_AVX2) vpx_sad32x64_avg = vpx_sad32x64_avg_avx2; 1261 if (flags & HAS_AVX2) vpx_sad32x64_avg = vpx_sad32x64_avg_avx2;
1280 vpx_sad32x64x4d = vpx_sad32x64x4d_c; 1262 vpx_sad32x64x4d = vpx_sad32x64x4d_c;
1281 if (flags & HAS_SSE2) vpx_sad32x64x4d = vpx_sad32x64x4d_sse2; 1263 if (flags & HAS_SSE2) vpx_sad32x64x4d = vpx_sad32x64x4d_sse2;
1282 vpx_sad4x4 = vpx_sad4x4_c; 1264 vpx_sad4x4 = vpx_sad4x4_c;
1283 if (flags & HAS_MMX) vpx_sad4x4 = vpx_sad4x4_mmx;
1284 if (flags & HAS_SSE2) vpx_sad4x4 = vpx_sad4x4_sse2; 1265 if (flags & HAS_SSE2) vpx_sad4x4 = vpx_sad4x4_sse2;
1285 vpx_sad4x4_avg = vpx_sad4x4_avg_c; 1266 vpx_sad4x4_avg = vpx_sad4x4_avg_c;
1286 if (flags & HAS_SSE2) vpx_sad4x4_avg = vpx_sad4x4_avg_sse2; 1267 if (flags & HAS_SSE2) vpx_sad4x4_avg = vpx_sad4x4_avg_sse2;
1287 vpx_sad4x4x3 = vpx_sad4x4x3_c; 1268 vpx_sad4x4x3 = vpx_sad4x4x3_c;
1288 if (flags & HAS_SSE3) vpx_sad4x4x3 = vpx_sad4x4x3_sse3; 1269 if (flags & HAS_SSE3) vpx_sad4x4x3 = vpx_sad4x4x3_sse3;
1289 vpx_sad4x4x4d = vpx_sad4x4x4d_c; 1270 vpx_sad4x4x4d = vpx_sad4x4x4d_c;
1290 if (flags & HAS_SSE2) vpx_sad4x4x4d = vpx_sad4x4x4d_sse2; 1271 if (flags & HAS_SSE2) vpx_sad4x4x4d = vpx_sad4x4x4d_sse2;
1291 vpx_sad4x4x8 = vpx_sad4x4x8_c; 1272 vpx_sad4x4x8 = vpx_sad4x4x8_c;
1292 if (flags & HAS_SSE4_1) vpx_sad4x4x8 = vpx_sad4x4x8_sse4_1; 1273 if (flags & HAS_SSE4_1) vpx_sad4x4x8 = vpx_sad4x4x8_sse4_1;
1293 vpx_sad4x8 = vpx_sad4x8_c; 1274 vpx_sad4x8 = vpx_sad4x8_c;
(...skipping 13 matching lines...) Expand all
1307 vpx_sad64x64 = vpx_sad64x64_c; 1288 vpx_sad64x64 = vpx_sad64x64_c;
1308 if (flags & HAS_SSE2) vpx_sad64x64 = vpx_sad64x64_sse2; 1289 if (flags & HAS_SSE2) vpx_sad64x64 = vpx_sad64x64_sse2;
1309 if (flags & HAS_AVX2) vpx_sad64x64 = vpx_sad64x64_avx2; 1290 if (flags & HAS_AVX2) vpx_sad64x64 = vpx_sad64x64_avx2;
1310 vpx_sad64x64_avg = vpx_sad64x64_avg_c; 1291 vpx_sad64x64_avg = vpx_sad64x64_avg_c;
1311 if (flags & HAS_SSE2) vpx_sad64x64_avg = vpx_sad64x64_avg_sse2; 1292 if (flags & HAS_SSE2) vpx_sad64x64_avg = vpx_sad64x64_avg_sse2;
1312 if (flags & HAS_AVX2) vpx_sad64x64_avg = vpx_sad64x64_avg_avx2; 1293 if (flags & HAS_AVX2) vpx_sad64x64_avg = vpx_sad64x64_avg_avx2;
1313 vpx_sad64x64x4d = vpx_sad64x64x4d_c; 1294 vpx_sad64x64x4d = vpx_sad64x64x4d_c;
1314 if (flags & HAS_SSE2) vpx_sad64x64x4d = vpx_sad64x64x4d_sse2; 1295 if (flags & HAS_SSE2) vpx_sad64x64x4d = vpx_sad64x64x4d_sse2;
1315 if (flags & HAS_AVX2) vpx_sad64x64x4d = vpx_sad64x64x4d_avx2; 1296 if (flags & HAS_AVX2) vpx_sad64x64x4d = vpx_sad64x64x4d_avx2;
1316 vpx_sad8x16 = vpx_sad8x16_c; 1297 vpx_sad8x16 = vpx_sad8x16_c;
1317 if (flags & HAS_MMX) vpx_sad8x16 = vpx_sad8x16_mmx;
1318 if (flags & HAS_SSE2) vpx_sad8x16 = vpx_sad8x16_sse2; 1298 if (flags & HAS_SSE2) vpx_sad8x16 = vpx_sad8x16_sse2;
1319 vpx_sad8x16_avg = vpx_sad8x16_avg_c; 1299 vpx_sad8x16_avg = vpx_sad8x16_avg_c;
1320 if (flags & HAS_SSE2) vpx_sad8x16_avg = vpx_sad8x16_avg_sse2; 1300 if (flags & HAS_SSE2) vpx_sad8x16_avg = vpx_sad8x16_avg_sse2;
1321 vpx_sad8x16x3 = vpx_sad8x16x3_c; 1301 vpx_sad8x16x3 = vpx_sad8x16x3_c;
1322 if (flags & HAS_SSE3) vpx_sad8x16x3 = vpx_sad8x16x3_sse3; 1302 if (flags & HAS_SSE3) vpx_sad8x16x3 = vpx_sad8x16x3_sse3;
1323 vpx_sad8x16x4d = vpx_sad8x16x4d_c; 1303 vpx_sad8x16x4d = vpx_sad8x16x4d_c;
1324 if (flags & HAS_SSE2) vpx_sad8x16x4d = vpx_sad8x16x4d_sse2; 1304 if (flags & HAS_SSE2) vpx_sad8x16x4d = vpx_sad8x16x4d_sse2;
1325 vpx_sad8x16x8 = vpx_sad8x16x8_c; 1305 vpx_sad8x16x8 = vpx_sad8x16x8_c;
1326 if (flags & HAS_SSE4_1) vpx_sad8x16x8 = vpx_sad8x16x8_sse4_1; 1306 if (flags & HAS_SSE4_1) vpx_sad8x16x8 = vpx_sad8x16x8_sse4_1;
1327 vpx_sad8x4 = vpx_sad8x4_c; 1307 vpx_sad8x4 = vpx_sad8x4_c;
1328 if (flags & HAS_SSE2) vpx_sad8x4 = vpx_sad8x4_sse2; 1308 if (flags & HAS_SSE2) vpx_sad8x4 = vpx_sad8x4_sse2;
1329 vpx_sad8x4_avg = vpx_sad8x4_avg_c; 1309 vpx_sad8x4_avg = vpx_sad8x4_avg_c;
1330 if (flags & HAS_SSE2) vpx_sad8x4_avg = vpx_sad8x4_avg_sse2; 1310 if (flags & HAS_SSE2) vpx_sad8x4_avg = vpx_sad8x4_avg_sse2;
1331 vpx_sad8x4x4d = vpx_sad8x4x4d_c; 1311 vpx_sad8x4x4d = vpx_sad8x4x4d_c;
1332 if (flags & HAS_SSE2) vpx_sad8x4x4d = vpx_sad8x4x4d_sse2; 1312 if (flags & HAS_SSE2) vpx_sad8x4x4d = vpx_sad8x4x4d_sse2;
1333 vpx_sad8x8 = vpx_sad8x8_c; 1313 vpx_sad8x8 = vpx_sad8x8_c;
1334 if (flags & HAS_MMX) vpx_sad8x8 = vpx_sad8x8_mmx;
1335 if (flags & HAS_SSE2) vpx_sad8x8 = vpx_sad8x8_sse2; 1314 if (flags & HAS_SSE2) vpx_sad8x8 = vpx_sad8x8_sse2;
1336 vpx_sad8x8_avg = vpx_sad8x8_avg_c; 1315 vpx_sad8x8_avg = vpx_sad8x8_avg_c;
1337 if (flags & HAS_SSE2) vpx_sad8x8_avg = vpx_sad8x8_avg_sse2; 1316 if (flags & HAS_SSE2) vpx_sad8x8_avg = vpx_sad8x8_avg_sse2;
1338 vpx_sad8x8x3 = vpx_sad8x8x3_c; 1317 vpx_sad8x8x3 = vpx_sad8x8x3_c;
1339 if (flags & HAS_SSE3) vpx_sad8x8x3 = vpx_sad8x8x3_sse3; 1318 if (flags & HAS_SSE3) vpx_sad8x8x3 = vpx_sad8x8x3_sse3;
1340 vpx_sad8x8x4d = vpx_sad8x8x4d_c; 1319 vpx_sad8x8x4d = vpx_sad8x8x4d_c;
1341 if (flags & HAS_SSE2) vpx_sad8x8x4d = vpx_sad8x8x4d_sse2; 1320 if (flags & HAS_SSE2) vpx_sad8x8x4d = vpx_sad8x8x4d_sse2;
1342 vpx_sad8x8x8 = vpx_sad8x8x8_c; 1321 vpx_sad8x8x8 = vpx_sad8x8x8_c;
1343 if (flags & HAS_SSE4_1) vpx_sad8x8x8 = vpx_sad8x8x8_sse4_1; 1322 if (flags & HAS_SSE4_1) vpx_sad8x8x8 = vpx_sad8x8x8_sse4_1;
1344 vpx_satd = vpx_satd_c; 1323 vpx_satd = vpx_satd_c;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
1444 if (flags & HAS_SSE2) vpx_tm_predictor_8x8 = vpx_tm_predictor_8x8_sse2; 1423 if (flags & HAS_SSE2) vpx_tm_predictor_8x8 = vpx_tm_predictor_8x8_sse2;
1445 vpx_v_predictor_16x16 = vpx_v_predictor_16x16_c; 1424 vpx_v_predictor_16x16 = vpx_v_predictor_16x16_c;
1446 if (flags & HAS_SSE2) vpx_v_predictor_16x16 = vpx_v_predictor_16x16_sse2; 1425 if (flags & HAS_SSE2) vpx_v_predictor_16x16 = vpx_v_predictor_16x16_sse2;
1447 vpx_v_predictor_32x32 = vpx_v_predictor_32x32_c; 1426 vpx_v_predictor_32x32 = vpx_v_predictor_32x32_c;
1448 if (flags & HAS_SSE2) vpx_v_predictor_32x32 = vpx_v_predictor_32x32_sse2; 1427 if (flags & HAS_SSE2) vpx_v_predictor_32x32 = vpx_v_predictor_32x32_sse2;
1449 vpx_v_predictor_4x4 = vpx_v_predictor_4x4_c; 1428 vpx_v_predictor_4x4 = vpx_v_predictor_4x4_c;
1450 if (flags & HAS_SSE2) vpx_v_predictor_4x4 = vpx_v_predictor_4x4_sse2; 1429 if (flags & HAS_SSE2) vpx_v_predictor_4x4 = vpx_v_predictor_4x4_sse2;
1451 vpx_v_predictor_8x8 = vpx_v_predictor_8x8_c; 1430 vpx_v_predictor_8x8 = vpx_v_predictor_8x8_c;
1452 if (flags & HAS_SSE2) vpx_v_predictor_8x8 = vpx_v_predictor_8x8_sse2; 1431 if (flags & HAS_SSE2) vpx_v_predictor_8x8 = vpx_v_predictor_8x8_sse2;
1453 vpx_variance16x16 = vpx_variance16x16_c; 1432 vpx_variance16x16 = vpx_variance16x16_c;
1454 if (flags & HAS_MMX) vpx_variance16x16 = vpx_variance16x16_mmx;
1455 if (flags & HAS_SSE2) vpx_variance16x16 = vpx_variance16x16_sse2; 1433 if (flags & HAS_SSE2) vpx_variance16x16 = vpx_variance16x16_sse2;
1456 if (flags & HAS_AVX2) vpx_variance16x16 = vpx_variance16x16_avx2; 1434 if (flags & HAS_AVX2) vpx_variance16x16 = vpx_variance16x16_avx2;
1457 vpx_variance16x32 = vpx_variance16x32_c; 1435 vpx_variance16x32 = vpx_variance16x32_c;
1458 if (flags & HAS_SSE2) vpx_variance16x32 = vpx_variance16x32_sse2; 1436 if (flags & HAS_SSE2) vpx_variance16x32 = vpx_variance16x32_sse2;
1459 vpx_variance16x8 = vpx_variance16x8_c; 1437 vpx_variance16x8 = vpx_variance16x8_c;
1460 if (flags & HAS_MMX) vpx_variance16x8 = vpx_variance16x8_mmx;
1461 if (flags & HAS_SSE2) vpx_variance16x8 = vpx_variance16x8_sse2; 1438 if (flags & HAS_SSE2) vpx_variance16x8 = vpx_variance16x8_sse2;
1462 vpx_variance32x16 = vpx_variance32x16_c; 1439 vpx_variance32x16 = vpx_variance32x16_c;
1463 if (flags & HAS_SSE2) vpx_variance32x16 = vpx_variance32x16_sse2; 1440 if (flags & HAS_SSE2) vpx_variance32x16 = vpx_variance32x16_sse2;
1464 if (flags & HAS_AVX2) vpx_variance32x16 = vpx_variance32x16_avx2; 1441 if (flags & HAS_AVX2) vpx_variance32x16 = vpx_variance32x16_avx2;
1465 vpx_variance32x32 = vpx_variance32x32_c; 1442 vpx_variance32x32 = vpx_variance32x32_c;
1466 if (flags & HAS_SSE2) vpx_variance32x32 = vpx_variance32x32_sse2; 1443 if (flags & HAS_SSE2) vpx_variance32x32 = vpx_variance32x32_sse2;
1467 if (flags & HAS_AVX2) vpx_variance32x32 = vpx_variance32x32_avx2; 1444 if (flags & HAS_AVX2) vpx_variance32x32 = vpx_variance32x32_avx2;
1468 vpx_variance32x64 = vpx_variance32x64_c; 1445 vpx_variance32x64 = vpx_variance32x64_c;
1469 if (flags & HAS_SSE2) vpx_variance32x64 = vpx_variance32x64_sse2; 1446 if (flags & HAS_SSE2) vpx_variance32x64 = vpx_variance32x64_sse2;
1470 vpx_variance4x4 = vpx_variance4x4_c; 1447 vpx_variance4x4 = vpx_variance4x4_c;
1471 if (flags & HAS_MMX) vpx_variance4x4 = vpx_variance4x4_mmx;
1472 if (flags & HAS_SSE2) vpx_variance4x4 = vpx_variance4x4_sse2; 1448 if (flags & HAS_SSE2) vpx_variance4x4 = vpx_variance4x4_sse2;
1473 vpx_variance4x8 = vpx_variance4x8_c; 1449 vpx_variance4x8 = vpx_variance4x8_c;
1474 if (flags & HAS_SSE2) vpx_variance4x8 = vpx_variance4x8_sse2; 1450 if (flags & HAS_SSE2) vpx_variance4x8 = vpx_variance4x8_sse2;
1475 vpx_variance64x32 = vpx_variance64x32_c; 1451 vpx_variance64x32 = vpx_variance64x32_c;
1476 if (flags & HAS_SSE2) vpx_variance64x32 = vpx_variance64x32_sse2; 1452 if (flags & HAS_SSE2) vpx_variance64x32 = vpx_variance64x32_sse2;
1477 if (flags & HAS_AVX2) vpx_variance64x32 = vpx_variance64x32_avx2; 1453 if (flags & HAS_AVX2) vpx_variance64x32 = vpx_variance64x32_avx2;
1478 vpx_variance64x64 = vpx_variance64x64_c; 1454 vpx_variance64x64 = vpx_variance64x64_c;
1479 if (flags & HAS_SSE2) vpx_variance64x64 = vpx_variance64x64_sse2; 1455 if (flags & HAS_SSE2) vpx_variance64x64 = vpx_variance64x64_sse2;
1480 if (flags & HAS_AVX2) vpx_variance64x64 = vpx_variance64x64_avx2; 1456 if (flags & HAS_AVX2) vpx_variance64x64 = vpx_variance64x64_avx2;
1481 vpx_variance8x16 = vpx_variance8x16_c; 1457 vpx_variance8x16 = vpx_variance8x16_c;
1482 if (flags & HAS_MMX) vpx_variance8x16 = vpx_variance8x16_mmx;
1483 if (flags & HAS_SSE2) vpx_variance8x16 = vpx_variance8x16_sse2; 1458 if (flags & HAS_SSE2) vpx_variance8x16 = vpx_variance8x16_sse2;
1484 vpx_variance8x4 = vpx_variance8x4_c; 1459 vpx_variance8x4 = vpx_variance8x4_c;
1485 if (flags & HAS_SSE2) vpx_variance8x4 = vpx_variance8x4_sse2; 1460 if (flags & HAS_SSE2) vpx_variance8x4 = vpx_variance8x4_sse2;
1486 vpx_variance8x8 = vpx_variance8x8_c; 1461 vpx_variance8x8 = vpx_variance8x8_c;
1487 if (flags & HAS_MMX) vpx_variance8x8 = vpx_variance8x8_mmx;
1488 if (flags & HAS_SSE2) vpx_variance8x8 = vpx_variance8x8_sse2; 1462 if (flags & HAS_SSE2) vpx_variance8x8 = vpx_variance8x8_sse2;
1489 vpx_variance_halfpixvar16x16_h = vpx_variance_halfpixvar16x16_h_c; 1463 vpx_variance_halfpixvar16x16_h = vpx_variance_halfpixvar16x16_h_c;
1490 if (flags & HAS_MMX) vpx_variance_halfpixvar16x16_h = vpx_variance_halfpixva r16x16_h_mmx; 1464 if (flags & HAS_MMX) vpx_variance_halfpixvar16x16_h = vpx_variance_halfpixva r16x16_h_mmx;
1491 if (flags & HAS_SSE2) vpx_variance_halfpixvar16x16_h = vpx_variance_halfpixv ar16x16_h_sse2; 1465 if (flags & HAS_SSE2) vpx_variance_halfpixvar16x16_h = vpx_variance_halfpixv ar16x16_h_sse2;
1492 vpx_variance_halfpixvar16x16_hv = vpx_variance_halfpixvar16x16_hv_c; 1466 vpx_variance_halfpixvar16x16_hv = vpx_variance_halfpixvar16x16_hv_c;
1493 if (flags & HAS_MMX) vpx_variance_halfpixvar16x16_hv = vpx_variance_halfpixv ar16x16_hv_mmx; 1467 if (flags & HAS_MMX) vpx_variance_halfpixvar16x16_hv = vpx_variance_halfpixv ar16x16_hv_mmx;
1494 if (flags & HAS_SSE2) vpx_variance_halfpixvar16x16_hv = vpx_variance_halfpix var16x16_hv_sse2; 1468 if (flags & HAS_SSE2) vpx_variance_halfpixvar16x16_hv = vpx_variance_halfpix var16x16_hv_sse2;
1495 vpx_variance_halfpixvar16x16_v = vpx_variance_halfpixvar16x16_v_c; 1469 vpx_variance_halfpixvar16x16_v = vpx_variance_halfpixvar16x16_v_c;
1496 if (flags & HAS_MMX) vpx_variance_halfpixvar16x16_v = vpx_variance_halfpixva r16x16_v_mmx; 1470 if (flags & HAS_MMX) vpx_variance_halfpixvar16x16_v = vpx_variance_halfpixva r16x16_v_mmx;
1497 if (flags & HAS_SSE2) vpx_variance_halfpixvar16x16_v = vpx_variance_halfpixv ar16x16_v_sse2; 1471 if (flags & HAS_SSE2) vpx_variance_halfpixvar16x16_v = vpx_variance_halfpixv ar16x16_v_sse2;
1498 vpx_vector_var = vpx_vector_var_c; 1472 vpx_vector_var = vpx_vector_var_c;
1499 if (flags & HAS_SSE2) vpx_vector_var = vpx_vector_var_sse2; 1473 if (flags & HAS_SSE2) vpx_vector_var = vpx_vector_var_sse2;
1500 } 1474 }
1501 #endif 1475 #endif
1502 1476
1503 #ifdef __cplusplus 1477 #ifdef __cplusplus
1504 } // extern "C" 1478 } // extern "C"
1505 #endif 1479 #endif
1506 1480
1507 #endif 1481 #endif
OLDNEW
« no previous file with comments | « third_party/libvpx/source/config/linux/x64/vpx_dsp_rtcd.h ('k') | third_party/libvpx/source/config/mac/x64/vpx_dsp_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698