| OLD | NEW |
| 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 /* |
| 11 * DSP | 11 * DSP |
| 12 */ | 12 */ |
| 13 | 13 |
| 14 #include "vpx/vpx_integer.h" | 14 #include "vpx/vpx_integer.h" |
| 15 #include "vpx_dsp/vpx_dsp_common.h" | 15 #include "vpx_dsp/vpx_dsp_common.h" |
| 16 | 16 |
| 17 | 17 |
| 18 #ifdef __cplusplus | 18 #ifdef __cplusplus |
| 19 extern "C" { | 19 extern "C" { |
| 20 #endif | 20 #endif |
| 21 | 21 |
| 22 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int
height, const uint8_t *ref, int ref_stride); | 22 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int
height, const uint8_t *ref, int ref_stride); |
| 23 #define vpx_comp_avg_pred vpx_comp_avg_pred_c | 23 #define vpx_comp_avg_pred vpx_comp_avg_pred_c |
| 24 | 24 |
| 25 void vpx_convolve8_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptr
diff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter
_y, int y_step_q4, int w, int h); | 25 void vpx_convolve8_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptr
diff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter
_y, int y_step_q4, int w, int h); |
| 26 void vpx_convolve8_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fil
ter_y, int y_step_q4, int w, int h); | 26 void vpx_convolve8_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fil
ter_y, int y_step_q4, int w, int h); |
| 27 void vpx_convolve8_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fi
lter_y, int y_step_q4, int w, int h); | 27 void vpx_convolve8_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fi
lter_y, int y_step_q4, int w, int h); |
| 28 void vpx_convolve8_avx2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fil
ter_y, int y_step_q4, int w, int h); | |
| 29 RTCD_EXTERN void (*vpx_convolve8)(const uint8_t *src, ptrdiff_t src_stride, uint
8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const in
t16_t *filter_y, int y_step_q4, int w, int h); | 28 RTCD_EXTERN void (*vpx_convolve8)(const uint8_t *src, ptrdiff_t src_stride, uint
8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const in
t16_t *filter_y, int y_step_q4, int w, int h); |
| 30 | 29 |
| 31 void vpx_convolve8_avg_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fi
lter_y, int y_step_q4, int w, int h); | 30 void vpx_convolve8_avg_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fi
lter_y, int y_step_q4, int w, int h); |
| 32 void vpx_convolve8_avg_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *d
st, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t
*filter_y, int y_step_q4, int w, int h); | 31 void vpx_convolve8_avg_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *d
st, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t
*filter_y, int y_step_q4, int w, int h); |
| 33 void vpx_convolve8_avg_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint8_t *
dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t
*filter_y, int y_step_q4, int w, int h); | 32 void vpx_convolve8_avg_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint8_t *
dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t
*filter_y, int y_step_q4, int w, int h); |
| 34 RTCD_EXTERN void (*vpx_convolve8_avg)(const uint8_t *src, ptrdiff_t src_stride,
uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, cons
t int16_t *filter_y, int y_step_q4, int w, int h); | 33 RTCD_EXTERN void (*vpx_convolve8_avg)(const uint8_t *src, ptrdiff_t src_stride,
uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, cons
t int16_t *filter_y, int y_step_q4, int w, int h); |
| 35 | 34 |
| 36 void vpx_convolve8_avg_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16
_t *filter_y, int y_step_q4, int w, int h); | 35 void vpx_convolve8_avg_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16
_t *filter_y, int y_step_q4, int w, int h); |
| 37 void vpx_convolve8_avg_horiz_sse2(const uint8_t *src, ptrdiff_t src_stride, uint
8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const in
t16_t *filter_y, int y_step_q4, int w, int h); | 36 void vpx_convolve8_avg_horiz_sse2(const uint8_t *src, ptrdiff_t src_stride, uint
8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const in
t16_t *filter_y, int y_step_q4, int w, int h); |
| 38 void vpx_convolve8_avg_horiz_ssse3(const uint8_t *src, ptrdiff_t src_stride, uin
t8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const i
nt16_t *filter_y, int y_step_q4, int w, int h); | 37 void vpx_convolve8_avg_horiz_ssse3(const uint8_t *src, ptrdiff_t src_stride, uin
t8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const i
nt16_t *filter_y, int y_step_q4, int w, int h); |
| 39 RTCD_EXTERN void (*vpx_convolve8_avg_horiz)(const uint8_t *src, ptrdiff_t src_st
ride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4
, const int16_t *filter_y, int y_step_q4, int w, int h); | 38 RTCD_EXTERN void (*vpx_convolve8_avg_horiz)(const uint8_t *src, ptrdiff_t src_st
ride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4
, const int16_t *filter_y, int y_step_q4, int w, int h); |
| 40 | 39 |
| 41 void vpx_convolve8_avg_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_
t *filter_y, int y_step_q4, int w, int h); | 40 void vpx_convolve8_avg_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_
t *filter_y, int y_step_q4, int w, int h); |
| 42 void vpx_convolve8_avg_vert_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8
_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int
16_t *filter_y, int y_step_q4, int w, int h); | 41 void vpx_convolve8_avg_vert_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8
_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int
16_t *filter_y, int y_step_q4, int w, int h); |
| 43 void vpx_convolve8_avg_vert_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint
8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const in
t16_t *filter_y, int y_step_q4, int w, int h); | 42 void vpx_convolve8_avg_vert_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint
8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const in
t16_t *filter_y, int y_step_q4, int w, int h); |
| 44 RTCD_EXTERN void (*vpx_convolve8_avg_vert)(const uint8_t *src, ptrdiff_t src_str
ide, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4,
const int16_t *filter_y, int y_step_q4, int w, int h); | 43 RTCD_EXTERN void (*vpx_convolve8_avg_vert)(const uint8_t *src, ptrdiff_t src_str
ide, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4,
const int16_t *filter_y, int y_step_q4, int w, int h); |
| 45 | 44 |
| 46 void vpx_convolve8_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *ds
t, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *
filter_y, int y_step_q4, int w, int h); | 45 void vpx_convolve8_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *ds
t, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *
filter_y, int y_step_q4, int w, int h); |
| 47 void vpx_convolve8_horiz_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_
t *filter_y, int y_step_q4, int w, int h); | 46 void vpx_convolve8_horiz_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_
t *filter_y, int y_step_q4, int w, int h); |
| 48 void vpx_convolve8_horiz_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16
_t *filter_y, int y_step_q4, int w, int h); | 47 void vpx_convolve8_horiz_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16
_t *filter_y, int y_step_q4, int w, int h); |
| 49 void vpx_convolve8_horiz_avx2(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_
t *filter_y, int y_step_q4, int w, int h); | |
| 50 RTCD_EXTERN void (*vpx_convolve8_horiz)(const uint8_t *src, ptrdiff_t src_stride
, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, co
nst int16_t *filter_y, int y_step_q4, int w, int h); | 48 RTCD_EXTERN void (*vpx_convolve8_horiz)(const uint8_t *src, ptrdiff_t src_stride
, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, co
nst int16_t *filter_y, int y_step_q4, int w, int h); |
| 51 | 49 |
| 52 void vpx_convolve8_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst
, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *f
ilter_y, int y_step_q4, int w, int h); | 50 void vpx_convolve8_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst
, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *f
ilter_y, int y_step_q4, int w, int h); |
| 53 void vpx_convolve8_vert_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *
dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t
*filter_y, int y_step_q4, int w, int h); | 51 void vpx_convolve8_vert_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *
dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t
*filter_y, int y_step_q4, int w, int h); |
| 54 void vpx_convolve8_vert_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_
t *filter_y, int y_step_q4, int w, int h); | 52 void vpx_convolve8_vert_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint8_t
*dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_
t *filter_y, int y_step_q4, int w, int h); |
| 55 void vpx_convolve8_vert_avx2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *
dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t
*filter_y, int y_step_q4, int w, int h); | |
| 56 RTCD_EXTERN void (*vpx_convolve8_vert)(const uint8_t *src, ptrdiff_t src_stride,
uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, con
st int16_t *filter_y, int y_step_q4, int w, int h); | 53 RTCD_EXTERN void (*vpx_convolve8_vert)(const uint8_t *src, ptrdiff_t src_stride,
uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, con
st int16_t *filter_y, int y_step_q4, int w, int h); |
| 57 | 54 |
| 58 void vpx_convolve_avg_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fil
ter_y, int y_step_q4, int w, int h); | 55 void vpx_convolve_avg_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fil
ter_y, int y_step_q4, int w, int h); |
| 59 void vpx_convolve_avg_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *ds
t, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *
filter_y, int y_step_q4, int w, int h); | 56 void vpx_convolve_avg_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *ds
t, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *
filter_y, int y_step_q4, int w, int h); |
| 60 RTCD_EXTERN void (*vpx_convolve_avg)(const uint8_t *src, ptrdiff_t src_stride, u
int8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const
int16_t *filter_y, int y_step_q4, int w, int h); | 57 RTCD_EXTERN void (*vpx_convolve_avg)(const uint8_t *src, ptrdiff_t src_stride, u
int8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const
int16_t *filter_y, int y_step_q4, int w, int h); |
| 61 | 58 |
| 62 void vpx_convolve_copy_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fi
lter_y, int y_step_q4, int w, int h); | 59 void vpx_convolve_copy_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *fi
lter_y, int y_step_q4, int w, int h); |
| 63 void vpx_convolve_copy_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *d
st, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t
*filter_y, int y_step_q4, int w, int h); | 60 void vpx_convolve_copy_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *d
st, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t
*filter_y, int y_step_q4, int w, int h); |
| 64 RTCD_EXTERN void (*vpx_convolve_copy)(const uint8_t *src, ptrdiff_t src_stride,
uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, cons
t int16_t *filter_y, int y_step_q4, int w, int h); | 61 RTCD_EXTERN void (*vpx_convolve_copy)(const uint8_t *src, ptrdiff_t src_stride,
uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, cons
t int16_t *filter_y, int y_step_q4, int w, int h); |
| 65 | 62 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 void vpx_fdct16x16_c(const int16_t *input, tran_low_t *output, int stride); | 215 void vpx_fdct16x16_c(const int16_t *input, tran_low_t *output, int stride); |
| 219 void vpx_fdct16x16_sse2(const int16_t *input, tran_low_t *output, int stride); | 216 void vpx_fdct16x16_sse2(const int16_t *input, tran_low_t *output, int stride); |
| 220 RTCD_EXTERN void (*vpx_fdct16x16)(const int16_t *input, tran_low_t *output, int
stride); | 217 RTCD_EXTERN void (*vpx_fdct16x16)(const int16_t *input, tran_low_t *output, int
stride); |
| 221 | 218 |
| 222 void vpx_fdct16x16_1_c(const int16_t *input, tran_low_t *output, int stride); | 219 void vpx_fdct16x16_1_c(const int16_t *input, tran_low_t *output, int stride); |
| 223 void vpx_fdct16x16_1_sse2(const int16_t *input, tran_low_t *output, int stride); | 220 void vpx_fdct16x16_1_sse2(const int16_t *input, tran_low_t *output, int stride); |
| 224 RTCD_EXTERN void (*vpx_fdct16x16_1)(const int16_t *input, tran_low_t *output, in
t stride); | 221 RTCD_EXTERN void (*vpx_fdct16x16_1)(const int16_t *input, tran_low_t *output, in
t stride); |
| 225 | 222 |
| 226 void vpx_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride); | 223 void vpx_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride); |
| 227 void vpx_fdct32x32_sse2(const int16_t *input, tran_low_t *output, int stride); | 224 void vpx_fdct32x32_sse2(const int16_t *input, tran_low_t *output, int stride); |
| 228 void vpx_fdct32x32_avx2(const int16_t *input, tran_low_t *output, int stride); | |
| 229 RTCD_EXTERN void (*vpx_fdct32x32)(const int16_t *input, tran_low_t *output, int
stride); | 225 RTCD_EXTERN void (*vpx_fdct32x32)(const int16_t *input, tran_low_t *output, int
stride); |
| 230 | 226 |
| 231 void vpx_fdct32x32_1_c(const int16_t *input, tran_low_t *output, int stride); | 227 void vpx_fdct32x32_1_c(const int16_t *input, tran_low_t *output, int stride); |
| 232 void vpx_fdct32x32_1_sse2(const int16_t *input, tran_low_t *output, int stride); | 228 void vpx_fdct32x32_1_sse2(const int16_t *input, tran_low_t *output, int stride); |
| 233 RTCD_EXTERN void (*vpx_fdct32x32_1)(const int16_t *input, tran_low_t *output, in
t stride); | 229 RTCD_EXTERN void (*vpx_fdct32x32_1)(const int16_t *input, tran_low_t *output, in
t stride); |
| 234 | 230 |
| 235 void vpx_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int stride); | 231 void vpx_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int stride); |
| 236 void vpx_fdct32x32_rd_sse2(const int16_t *input, tran_low_t *output, int stride)
; | 232 void vpx_fdct32x32_rd_sse2(const int16_t *input, tran_low_t *output, int stride)
; |
| 237 void vpx_fdct32x32_rd_avx2(const int16_t *input, tran_low_t *output, int stride)
; | |
| 238 RTCD_EXTERN void (*vpx_fdct32x32_rd)(const int16_t *input, tran_low_t *output, i
nt stride); | 233 RTCD_EXTERN void (*vpx_fdct32x32_rd)(const int16_t *input, tran_low_t *output, i
nt stride); |
| 239 | 234 |
| 240 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride); | 235 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride); |
| 241 void vpx_fdct4x4_sse2(const int16_t *input, tran_low_t *output, int stride); | 236 void vpx_fdct4x4_sse2(const int16_t *input, tran_low_t *output, int stride); |
| 242 RTCD_EXTERN void (*vpx_fdct4x4)(const int16_t *input, tran_low_t *output, int st
ride); | 237 RTCD_EXTERN void (*vpx_fdct4x4)(const int16_t *input, tran_low_t *output, int st
ride); |
| 243 | 238 |
| 244 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride); | 239 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride); |
| 245 void vpx_fdct4x4_1_sse2(const int16_t *input, tran_low_t *output, int stride); | 240 void vpx_fdct4x4_1_sse2(const int16_t *input, tran_low_t *output, int stride); |
| 246 RTCD_EXTERN void (*vpx_fdct4x4_1)(const int16_t *input, tran_low_t *output, int
stride); | 241 RTCD_EXTERN void (*vpx_fdct4x4_1)(const int16_t *input, tran_low_t *output, int
stride); |
| 247 | 242 |
| 248 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride); | 243 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride); |
| 249 void vpx_fdct8x8_sse2(const int16_t *input, tran_low_t *output, int stride); | 244 void vpx_fdct8x8_sse2(const int16_t *input, tran_low_t *output, int stride); |
| 250 RTCD_EXTERN void (*vpx_fdct8x8)(const int16_t *input, tran_low_t *output, int st
ride); | 245 RTCD_EXTERN void (*vpx_fdct8x8)(const int16_t *input, tran_low_t *output, int st
ride); |
| 251 | 246 |
| 252 void vpx_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride); | 247 void vpx_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride); |
| 253 void vpx_fdct8x8_1_sse2(const int16_t *input, tran_low_t *output, int stride); | 248 void vpx_fdct8x8_1_sse2(const int16_t *input, tran_low_t *output, int stride); |
| 254 RTCD_EXTERN void (*vpx_fdct8x8_1)(const int16_t *input, tran_low_t *output, int
stride); | 249 RTCD_EXTERN void (*vpx_fdct8x8_1)(const int16_t *input, tran_low_t *output, int
stride); |
| 255 | 250 |
| 256 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); | 251 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); |
| 257 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); | 252 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); |
| 258 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); | |
| 259 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); | 253 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); |
| 260 | 254 |
| 261 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride,
const unsigned char *ref_ptr, int ref_stride); | 255 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride,
const unsigned char *ref_ptr, int ref_stride); |
| 262 #define vpx_get4x4sse_cs vpx_get4x4sse_cs_c | 256 #define vpx_get4x4sse_cs vpx_get4x4sse_cs_c |
| 263 | 257 |
| 264 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); | 258 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); |
| 265 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); | 259 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); |
| 266 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); | 260 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); |
| 267 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); | 261 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); |
| 268 | 262 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 | 327 |
| 334 void vpx_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid
e); | 328 void vpx_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid
e); |
| 335 void vpx_iwht4x4_16_add_sse2(const tran_low_t *input, uint8_t *dest, int dest_st
ride); | 329 void vpx_iwht4x4_16_add_sse2(const tran_low_t *input, uint8_t *dest, int dest_st
ride); |
| 336 RTCD_EXTERN void (*vpx_iwht4x4_16_add)(const tran_low_t *input, uint8_t *dest, i
nt dest_stride); | 330 RTCD_EXTERN void (*vpx_iwht4x4_16_add)(const tran_low_t *input, uint8_t *dest, i
nt dest_stride); |
| 337 | 331 |
| 338 void vpx_iwht4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride
); | 332 void vpx_iwht4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride
); |
| 339 #define vpx_iwht4x4_1_add vpx_iwht4x4_1_add_c | 333 #define vpx_iwht4x4_1_add vpx_iwht4x4_1_add_c |
| 340 | 334 |
| 341 void vpx_lpf_horizontal_16_c(uint8_t *s, int pitch, const uint8_t *blimit, const
uint8_t *limit, const uint8_t *thresh, int count); | 335 void vpx_lpf_horizontal_16_c(uint8_t *s, int pitch, const uint8_t *blimit, const
uint8_t *limit, const uint8_t *thresh, int count); |
| 342 void vpx_lpf_horizontal_16_sse2(uint8_t *s, int pitch, const uint8_t *blimit, co
nst uint8_t *limit, const uint8_t *thresh, int count); | 336 void vpx_lpf_horizontal_16_sse2(uint8_t *s, int pitch, const uint8_t *blimit, co
nst uint8_t *limit, const uint8_t *thresh, int count); |
| 343 void vpx_lpf_horizontal_16_avx2(uint8_t *s, int pitch, const uint8_t *blimit, co
nst uint8_t *limit, const uint8_t *thresh, int count); | |
| 344 RTCD_EXTERN void (*vpx_lpf_horizontal_16)(uint8_t *s, int pitch, const uint8_t *
blimit, const uint8_t *limit, const uint8_t *thresh, int count); | 337 RTCD_EXTERN void (*vpx_lpf_horizontal_16)(uint8_t *s, int pitch, const uint8_t *
blimit, const uint8_t *limit, const uint8_t *thresh, int count); |
| 345 | 338 |
| 346 void vpx_lpf_horizontal_4_c(uint8_t *s, int pitch, const uint8_t *blimit, const
uint8_t *limit, const uint8_t *thresh, int count); | 339 void vpx_lpf_horizontal_4_c(uint8_t *s, int pitch, const uint8_t *blimit, const
uint8_t *limit, const uint8_t *thresh, int count); |
| 347 void vpx_lpf_horizontal_4_mmx(uint8_t *s, int pitch, const uint8_t *blimit, cons
t uint8_t *limit, const uint8_t *thresh, int count); | 340 void vpx_lpf_horizontal_4_mmx(uint8_t *s, int pitch, const uint8_t *blimit, cons
t uint8_t *limit, const uint8_t *thresh, int count); |
| 348 RTCD_EXTERN void (*vpx_lpf_horizontal_4)(uint8_t *s, int pitch, const uint8_t *b
limit, const uint8_t *limit, const uint8_t *thresh, int count); | 341 RTCD_EXTERN void (*vpx_lpf_horizontal_4)(uint8_t *s, int pitch, const uint8_t *b
limit, const uint8_t *limit, const uint8_t *thresh, int count); |
| 349 | 342 |
| 350 void vpx_lpf_horizontal_4_dual_c(uint8_t *s, int pitch, const uint8_t *blimit0,
const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uin
t8_t *limit1, const uint8_t *thresh1); | 343 void vpx_lpf_horizontal_4_dual_c(uint8_t *s, int pitch, const uint8_t *blimit0,
const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uin
t8_t *limit1, const uint8_t *thresh1); |
| 351 void vpx_lpf_horizontal_4_dual_sse2(uint8_t *s, int pitch, const uint8_t *blimit
0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const
uint8_t *limit1, const uint8_t *thresh1); | 344 void vpx_lpf_horizontal_4_dual_sse2(uint8_t *s, int pitch, const uint8_t *blimit
0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const
uint8_t *limit1, const uint8_t *thresh1); |
| 352 RTCD_EXTERN void (*vpx_lpf_horizontal_4_dual)(uint8_t *s, int pitch, const uint8
_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimi
t1, const uint8_t *limit1, const uint8_t *thresh1); | 345 RTCD_EXTERN void (*vpx_lpf_horizontal_4_dual)(uint8_t *s, int pitch, const uint8
_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimi
t1, const uint8_t *limit1, const uint8_t *thresh1); |
| 353 | 346 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 379 void vpx_lpf_vertical_8_sse2(uint8_t *s, int pitch, const uint8_t *blimit, const
uint8_t *limit, const uint8_t *thresh, int count); | 372 void vpx_lpf_vertical_8_sse2(uint8_t *s, int pitch, const uint8_t *blimit, const
uint8_t *limit, const uint8_t *thresh, int count); |
| 380 RTCD_EXTERN void (*vpx_lpf_vertical_8)(uint8_t *s, int pitch, const uint8_t *bli
mit, const uint8_t *limit, const uint8_t *thresh, int count); | 373 RTCD_EXTERN void (*vpx_lpf_vertical_8)(uint8_t *s, int pitch, const uint8_t *bli
mit, const uint8_t *limit, const uint8_t *thresh, int count); |
| 381 | 374 |
| 382 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); | 375 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); |
| 383 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); | 376 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); |
| 384 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); | 377 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); |
| 385 | 378 |
| 386 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); | 379 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); |
| 387 unsigned int vpx_mse16x16_mmx(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int recon_stride, unsigned int *sse); | 380 unsigned int vpx_mse16x16_mmx(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int recon_stride, unsigned int *sse); |
| 388 unsigned int vpx_mse16x16_sse2(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int recon_stride, unsigned int *sse); | 381 unsigned int vpx_mse16x16_sse2(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int recon_stride, unsigned int *sse); |
| 389 unsigned int vpx_mse16x16_avx2(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int recon_stride, unsigned int *sse); | |
| 390 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); | 382 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); |
| 391 | 383 |
| 392 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); | 384 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); |
| 393 unsigned int vpx_mse16x8_sse2(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int recon_stride, unsigned int *sse); | 385 unsigned int vpx_mse16x8_sse2(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int recon_stride, unsigned int *sse); |
| 394 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); | 386 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); |
| 395 | 387 |
| 396 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); | 388 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); |
| 397 unsigned int vpx_mse8x16_sse2(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int recon_stride, unsigned int *sse); | 389 unsigned int vpx_mse8x16_sse2(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int recon_stride, unsigned int *sse); |
| 398 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); | 390 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); |
| 399 | 391 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 void vpx_sad16x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * co
nst ref_ptr[], int ref_stride, uint32_t *sad_array); | 451 void vpx_sad16x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * co
nst ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 460 void vpx_sad16x8x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t *
const ref_ptr[], int ref_stride, uint32_t *sad_array); | 452 void vpx_sad16x8x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t *
const ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 461 RTCD_EXTERN void (*vpx_sad16x8x4d)(const uint8_t *src_ptr, int src_stride, const
uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); | 453 RTCD_EXTERN void (*vpx_sad16x8x4d)(const uint8_t *src_ptr, int src_stride, const
uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 462 | 454 |
| 463 void vpx_sad16x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_
ptr, int ref_stride, uint32_t *sad_array); | 455 void vpx_sad16x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_
ptr, int ref_stride, uint32_t *sad_array); |
| 464 void vpx_sad16x8x8_sse4_1(const uint8_t *src_ptr, int src_stride, const uint8_t
*ref_ptr, int ref_stride, uint32_t *sad_array); | 456 void vpx_sad16x8x8_sse4_1(const uint8_t *src_ptr, int src_stride, const uint8_t
*ref_ptr, int ref_stride, uint32_t *sad_array); |
| 465 RTCD_EXTERN void (*vpx_sad16x8x8)(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array); | 457 RTCD_EXTERN void (*vpx_sad16x8x8)(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array); |
| 466 | 458 |
| 467 unsigned int vpx_sad32x16_c(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); | 459 unsigned int vpx_sad32x16_c(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); |
| 468 unsigned int vpx_sad32x16_sse2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); | 460 unsigned int vpx_sad32x16_sse2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); |
| 469 unsigned int vpx_sad32x16_avx2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); | |
| 470 RTCD_EXTERN unsigned int (*vpx_sad32x16)(const uint8_t *src_ptr, int src_stride,
const uint8_t *ref_ptr, int ref_stride); | 461 RTCD_EXTERN unsigned int (*vpx_sad32x16)(const uint8_t *src_ptr, int src_stride,
const uint8_t *ref_ptr, int ref_stride); |
| 471 | 462 |
| 472 unsigned int vpx_sad32x16_avg_c(const uint8_t *src_ptr, int src_stride, const ui
nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | 463 unsigned int vpx_sad32x16_avg_c(const uint8_t *src_ptr, int src_stride, const ui
nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); |
| 473 unsigned int vpx_sad32x16_avg_sse2(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | 464 unsigned int vpx_sad32x16_avg_sse2(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); |
| 474 unsigned int vpx_sad32x16_avg_avx2(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | |
| 475 RTCD_EXTERN unsigned int (*vpx_sad32x16_avg)(const uint8_t *src_ptr, int src_str
ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | 465 RTCD_EXTERN unsigned int (*vpx_sad32x16_avg)(const uint8_t *src_ptr, int src_str
ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); |
| 476 | 466 |
| 477 void vpx_sad32x16x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c
onst ref_ptr[], int ref_stride, uint32_t *sad_array); | 467 void vpx_sad32x16x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c
onst ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 478 void vpx_sad32x16x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t
* const ref_ptr[], int ref_stride, uint32_t *sad_array); | 468 void vpx_sad32x16x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t
* const ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 479 RTCD_EXTERN void (*vpx_sad32x16x4d)(const uint8_t *src_ptr, int src_stride, cons
t uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); | 469 RTCD_EXTERN void (*vpx_sad32x16x4d)(const uint8_t *src_ptr, int src_stride, cons
t uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 480 | 470 |
| 481 unsigned int vpx_sad32x32_c(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); | 471 unsigned int vpx_sad32x32_c(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); |
| 482 unsigned int vpx_sad32x32_sse2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); | 472 unsigned int vpx_sad32x32_sse2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); |
| 483 unsigned int vpx_sad32x32_avx2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); | |
| 484 RTCD_EXTERN unsigned int (*vpx_sad32x32)(const uint8_t *src_ptr, int src_stride,
const uint8_t *ref_ptr, int ref_stride); | 473 RTCD_EXTERN unsigned int (*vpx_sad32x32)(const uint8_t *src_ptr, int src_stride,
const uint8_t *ref_ptr, int ref_stride); |
| 485 | 474 |
| 486 unsigned int vpx_sad32x32_avg_c(const uint8_t *src_ptr, int src_stride, const ui
nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | 475 unsigned int vpx_sad32x32_avg_c(const uint8_t *src_ptr, int src_stride, const ui
nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); |
| 487 unsigned int vpx_sad32x32_avg_sse2(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | 476 unsigned int vpx_sad32x32_avg_sse2(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); |
| 488 unsigned int vpx_sad32x32_avg_avx2(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | |
| 489 RTCD_EXTERN unsigned int (*vpx_sad32x32_avg)(const uint8_t *src_ptr, int src_str
ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | 477 RTCD_EXTERN unsigned int (*vpx_sad32x32_avg)(const uint8_t *src_ptr, int src_str
ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); |
| 490 | 478 |
| 491 void vpx_sad32x32x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref
_ptr, int ref_stride, uint32_t *sad_array); | 479 void vpx_sad32x32x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref
_ptr, int ref_stride, uint32_t *sad_array); |
| 492 #define vpx_sad32x32x3 vpx_sad32x32x3_c | 480 #define vpx_sad32x32x3 vpx_sad32x32x3_c |
| 493 | 481 |
| 494 void vpx_sad32x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c
onst ref_ptr[], int ref_stride, uint32_t *sad_array); | 482 void vpx_sad32x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c
onst ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 495 void vpx_sad32x32x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t
* const ref_ptr[], int ref_stride, uint32_t *sad_array); | 483 void vpx_sad32x32x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t
* const ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 496 void vpx_sad32x32x4d_avx2(const uint8_t *src_ptr, int src_stride, const uint8_t
* const ref_ptr[], int ref_stride, uint32_t *sad_array); | |
| 497 RTCD_EXTERN void (*vpx_sad32x32x4d)(const uint8_t *src_ptr, int src_stride, cons
t uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); | 484 RTCD_EXTERN void (*vpx_sad32x32x4d)(const uint8_t *src_ptr, int src_stride, cons
t uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 498 | 485 |
| 499 void vpx_sad32x32x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref
_ptr, int ref_stride, uint32_t *sad_array); | 486 void vpx_sad32x32x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref
_ptr, int ref_stride, uint32_t *sad_array); |
| 500 #define vpx_sad32x32x8 vpx_sad32x32x8_c | 487 #define vpx_sad32x32x8 vpx_sad32x32x8_c |
| 501 | 488 |
| 502 unsigned int vpx_sad32x64_c(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); | 489 unsigned int vpx_sad32x64_c(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); |
| 503 unsigned int vpx_sad32x64_sse2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); | 490 unsigned int vpx_sad32x64_sse2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); |
| 504 unsigned int vpx_sad32x64_avx2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); | |
| 505 RTCD_EXTERN unsigned int (*vpx_sad32x64)(const uint8_t *src_ptr, int src_stride,
const uint8_t *ref_ptr, int ref_stride); | 491 RTCD_EXTERN unsigned int (*vpx_sad32x64)(const uint8_t *src_ptr, int src_stride,
const uint8_t *ref_ptr, int ref_stride); |
| 506 | 492 |
| 507 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); | 493 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); |
| 508 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); | 494 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); |
| 509 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); | |
| 510 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); | 495 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); |
| 511 | 496 |
| 512 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); | 497 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); |
| 513 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); | 498 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); |
| 514 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); | 499 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); |
| 515 | 500 |
| 516 unsigned int vpx_sad4x4_c(const uint8_t *src_ptr, int src_stride, const uint8_t
*ref_ptr, int ref_stride); | 501 unsigned int vpx_sad4x4_c(const uint8_t *src_ptr, int src_stride, const uint8_t
*ref_ptr, int ref_stride); |
| 517 unsigned int vpx_sad4x4_mmx(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); | 502 unsigned int vpx_sad4x4_mmx(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); |
| 518 unsigned int vpx_sad4x4_sse(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); | 503 unsigned int vpx_sad4x4_sse(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); |
| 519 RTCD_EXTERN unsigned int (*vpx_sad4x4)(const uint8_t *src_ptr, int src_stride, c
onst uint8_t *ref_ptr, int ref_stride); | 504 RTCD_EXTERN unsigned int (*vpx_sad4x4)(const uint8_t *src_ptr, int src_stride, c
onst uint8_t *ref_ptr, int ref_stride); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 544 | 529 |
| 545 void vpx_sad4x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * con
st ref_ptr[], int ref_stride, uint32_t *sad_array); | 530 void vpx_sad4x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * con
st ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 546 void vpx_sad4x8x4d_sse(const uint8_t *src_ptr, int src_stride, const uint8_t * c
onst ref_ptr[], int ref_stride, uint32_t *sad_array); | 531 void vpx_sad4x8x4d_sse(const uint8_t *src_ptr, int src_stride, const uint8_t * c
onst ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 547 RTCD_EXTERN void (*vpx_sad4x8x4d)(const uint8_t *src_ptr, int src_stride, const
uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); | 532 RTCD_EXTERN void (*vpx_sad4x8x4d)(const uint8_t *src_ptr, int src_stride, const
uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 548 | 533 |
| 549 void vpx_sad4x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p
tr, int ref_stride, uint32_t *sad_array); | 534 void vpx_sad4x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_p
tr, int ref_stride, uint32_t *sad_array); |
| 550 #define vpx_sad4x8x8 vpx_sad4x8x8_c | 535 #define vpx_sad4x8x8 vpx_sad4x8x8_c |
| 551 | 536 |
| 552 unsigned int vpx_sad64x32_c(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); | 537 unsigned int vpx_sad64x32_c(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); |
| 553 unsigned int vpx_sad64x32_sse2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); | 538 unsigned int vpx_sad64x32_sse2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); |
| 554 unsigned int vpx_sad64x32_avx2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); | |
| 555 RTCD_EXTERN unsigned int (*vpx_sad64x32)(const uint8_t *src_ptr, int src_stride,
const uint8_t *ref_ptr, int ref_stride); | 539 RTCD_EXTERN unsigned int (*vpx_sad64x32)(const uint8_t *src_ptr, int src_stride,
const uint8_t *ref_ptr, int ref_stride); |
| 556 | 540 |
| 557 unsigned int vpx_sad64x32_avg_c(const uint8_t *src_ptr, int src_stride, const ui
nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | 541 unsigned int vpx_sad64x32_avg_c(const uint8_t *src_ptr, int src_stride, const ui
nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); |
| 558 unsigned int vpx_sad64x32_avg_sse2(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | 542 unsigned int vpx_sad64x32_avg_sse2(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); |
| 559 unsigned int vpx_sad64x32_avg_avx2(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | |
| 560 RTCD_EXTERN unsigned int (*vpx_sad64x32_avg)(const uint8_t *src_ptr, int src_str
ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | 543 RTCD_EXTERN unsigned int (*vpx_sad64x32_avg)(const uint8_t *src_ptr, int src_str
ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); |
| 561 | 544 |
| 562 void vpx_sad64x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c
onst ref_ptr[], int ref_stride, uint32_t *sad_array); | 545 void vpx_sad64x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t * c
onst ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 563 void vpx_sad64x32x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t
* const ref_ptr[], int ref_stride, uint32_t *sad_array); | 546 void vpx_sad64x32x4d_sse2(const uint8_t *src_ptr, int src_stride, const uint8_t
* const ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 564 RTCD_EXTERN void (*vpx_sad64x32x4d)(const uint8_t *src_ptr, int src_stride, cons
t uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); | 547 RTCD_EXTERN void (*vpx_sad64x32x4d)(const uint8_t *src_ptr, int src_stride, cons
t uint8_t * const ref_ptr[], int ref_stride, uint32_t *sad_array); |
| 565 | 548 |
| 566 unsigned int vpx_sad64x64_c(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); | 549 unsigned int vpx_sad64x64_c(const uint8_t *src_ptr, int src_stride, const uint8_
t *ref_ptr, int ref_stride); |
| 567 unsigned int vpx_sad64x64_sse2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); | 550 unsigned int vpx_sad64x64_sse2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); |
| 568 unsigned int vpx_sad64x64_avx2(const uint8_t *src_ptr, int src_stride, const uin
t8_t *ref_ptr, int ref_stride); | |
| 569 RTCD_EXTERN unsigned int (*vpx_sad64x64)(const uint8_t *src_ptr, int src_stride,
const uint8_t *ref_ptr, int ref_stride); | 551 RTCD_EXTERN unsigned int (*vpx_sad64x64)(const uint8_t *src_ptr, int src_stride,
const uint8_t *ref_ptr, int ref_stride); |
| 570 | 552 |
| 571 unsigned int vpx_sad64x64_avg_c(const uint8_t *src_ptr, int src_stride, const ui
nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | 553 unsigned int vpx_sad64x64_avg_c(const uint8_t *src_ptr, int src_stride, const ui
nt8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); |
| 572 unsigned int vpx_sad64x64_avg_sse2(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | 554 unsigned int vpx_sad64x64_avg_sse2(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); |
| 573 unsigned int vpx_sad64x64_avg_avx2(const uint8_t *src_ptr, int src_stride, const
uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | |
| 574 RTCD_EXTERN unsigned int (*vpx_sad64x64_avg)(const uint8_t *src_ptr, int src_str
ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); | 555 RTCD_EXTERN unsigned int (*vpx_sad64x64_avg)(const uint8_t *src_ptr, int src_str
ide, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred); |
| 575 | 556 |
| 576 void vpx_sad64x64x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref
_ptr, int ref_stride, uint32_t *sad_array); | 557 void vpx_sad64x64x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref
_ptr, int ref_stride, uint32_t *sad_array); |
| 577 #define vpx_sad64x64x3 vpx_sad64x64x3_c | 558 #define vpx_sad64x64x3 vpx_sad64x64x3_c |
| 578 | 559 |
| 579 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); | 560 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); |
| 580 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); | 561 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); |
| 581 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); | |
| 582 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); | 562 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); |
| 583 | 563 |
| 584 void vpx_sad64x64x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref
_ptr, int ref_stride, uint32_t *sad_array); | 564 void vpx_sad64x64x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref
_ptr, int ref_stride, uint32_t *sad_array); |
| 585 #define vpx_sad64x64x8 vpx_sad64x64x8_c | 565 #define vpx_sad64x64x8 vpx_sad64x64x8_c |
| 586 | 566 |
| 587 unsigned int vpx_sad8x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t
*ref_ptr, int ref_stride); | 567 unsigned int vpx_sad8x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t
*ref_ptr, int ref_stride); |
| 588 unsigned int vpx_sad8x16_mmx(const uint8_t *src_ptr, int src_stride, const uint8
_t *ref_ptr, int ref_stride); | 568 unsigned int vpx_sad8x16_mmx(const uint8_t *src_ptr, int src_stride, const uint8
_t *ref_ptr, int ref_stride); |
| 589 unsigned int vpx_sad8x16_sse2(const uint8_t *src_ptr, int src_stride, const uint
8_t *ref_ptr, int ref_stride); | 569 unsigned int vpx_sad8x16_sse2(const uint8_t *src_ptr, int src_stride, const uint
8_t *ref_ptr, int ref_stride); |
| 590 RTCD_EXTERN unsigned int (*vpx_sad8x16)(const uint8_t *src_ptr, int src_stride,
const uint8_t *ref_ptr, int ref_stride); | 570 RTCD_EXTERN unsigned int (*vpx_sad8x16)(const uint8_t *src_ptr, int src_stride,
const uint8_t *ref_ptr, int ref_stride); |
| 591 | 571 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance16x8)(const uint8_t *src_ptr, i
nt source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_str
ide, uint32_t *sse, const uint8_t *second_pred); | 656 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance16x8)(const uint8_t *src_ptr, i
nt source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_str
ide, uint32_t *sse, const uint8_t *second_pred); |
| 677 | 657 |
| 678 uint32_t vpx_sub_pixel_avg_variance32x16_c(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); | 658 uint32_t vpx_sub_pixel_avg_variance32x16_c(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); |
| 679 uint32_t vpx_sub_pixel_avg_variance32x16_sse2(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); | 659 uint32_t vpx_sub_pixel_avg_variance32x16_sse2(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); |
| 680 uint32_t vpx_sub_pixel_avg_variance32x16_ssse3(const uint8_t *src_ptr, int sourc
e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin
t32_t *sse, const uint8_t *second_pred); | 660 uint32_t vpx_sub_pixel_avg_variance32x16_ssse3(const uint8_t *src_ptr, int sourc
e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin
t32_t *sse, const uint8_t *second_pred); |
| 681 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance32x16)(const uint8_t *src_ptr,
int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_st
ride, uint32_t *sse, const uint8_t *second_pred); | 661 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance32x16)(const uint8_t *src_ptr,
int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_st
ride, uint32_t *sse, const uint8_t *second_pred); |
| 682 | 662 |
| 683 uint32_t vpx_sub_pixel_avg_variance32x32_c(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); | 663 uint32_t vpx_sub_pixel_avg_variance32x32_c(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); |
| 684 uint32_t vpx_sub_pixel_avg_variance32x32_sse2(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); | 664 uint32_t vpx_sub_pixel_avg_variance32x32_sse2(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); |
| 685 uint32_t vpx_sub_pixel_avg_variance32x32_ssse3(const uint8_t *src_ptr, int sourc
e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin
t32_t *sse, const uint8_t *second_pred); | 665 uint32_t vpx_sub_pixel_avg_variance32x32_ssse3(const uint8_t *src_ptr, int sourc
e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin
t32_t *sse, const uint8_t *second_pred); |
| 686 uint32_t vpx_sub_pixel_avg_variance32x32_avx2(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); | |
| 687 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance32x32)(const uint8_t *src_ptr,
int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_st
ride, uint32_t *sse, const uint8_t *second_pred); | 666 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance32x32)(const uint8_t *src_ptr,
int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_st
ride, uint32_t *sse, const uint8_t *second_pred); |
| 688 | 667 |
| 689 uint32_t vpx_sub_pixel_avg_variance32x64_c(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); | 668 uint32_t vpx_sub_pixel_avg_variance32x64_c(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); |
| 690 uint32_t vpx_sub_pixel_avg_variance32x64_sse2(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); | 669 uint32_t vpx_sub_pixel_avg_variance32x64_sse2(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); |
| 691 uint32_t vpx_sub_pixel_avg_variance32x64_ssse3(const uint8_t *src_ptr, int sourc
e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin
t32_t *sse, const uint8_t *second_pred); | 670 uint32_t vpx_sub_pixel_avg_variance32x64_ssse3(const uint8_t *src_ptr, int sourc
e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin
t32_t *sse, const uint8_t *second_pred); |
| 692 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance32x64)(const uint8_t *src_ptr,
int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_st
ride, uint32_t *sse, const uint8_t *second_pred); | 671 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance32x64)(const uint8_t *src_ptr,
int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_st
ride, uint32_t *sse, const uint8_t *second_pred); |
| 693 | 672 |
| 694 uint32_t vpx_sub_pixel_avg_variance4x4_c(const uint8_t *src_ptr, int source_stri
de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse, const uint8_t *second_pred); | 673 uint32_t vpx_sub_pixel_avg_variance4x4_c(const uint8_t *src_ptr, int source_stri
de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse, const uint8_t *second_pred); |
| 695 uint32_t vpx_sub_pixel_avg_variance4x4_sse(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); | 674 uint32_t vpx_sub_pixel_avg_variance4x4_sse(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); |
| 696 uint32_t vpx_sub_pixel_avg_variance4x4_ssse3(const uint8_t *src_ptr, int source_
stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint3
2_t *sse, const uint8_t *second_pred); | 675 uint32_t vpx_sub_pixel_avg_variance4x4_ssse3(const uint8_t *src_ptr, int source_
stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint3
2_t *sse, const uint8_t *second_pred); |
| 697 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance4x4)(const uint8_t *src_ptr, in
t source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stri
de, uint32_t *sse, const uint8_t *second_pred); | 676 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance4x4)(const uint8_t *src_ptr, in
t source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stri
de, uint32_t *sse, const uint8_t *second_pred); |
| 698 | 677 |
| 699 uint32_t vpx_sub_pixel_avg_variance4x8_c(const uint8_t *src_ptr, int source_stri
de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse, const uint8_t *second_pred); | 678 uint32_t vpx_sub_pixel_avg_variance4x8_c(const uint8_t *src_ptr, int source_stri
de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse, const uint8_t *second_pred); |
| 700 uint32_t vpx_sub_pixel_avg_variance4x8_sse(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); | 679 uint32_t vpx_sub_pixel_avg_variance4x8_sse(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); |
| 701 uint32_t vpx_sub_pixel_avg_variance4x8_ssse3(const uint8_t *src_ptr, int source_
stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint3
2_t *sse, const uint8_t *second_pred); | 680 uint32_t vpx_sub_pixel_avg_variance4x8_ssse3(const uint8_t *src_ptr, int source_
stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint3
2_t *sse, const uint8_t *second_pred); |
| 702 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance4x8)(const uint8_t *src_ptr, in
t source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stri
de, uint32_t *sse, const uint8_t *second_pred); | 681 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance4x8)(const uint8_t *src_ptr, in
t source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stri
de, uint32_t *sse, const uint8_t *second_pred); |
| 703 | 682 |
| 704 uint32_t vpx_sub_pixel_avg_variance64x32_c(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); | 683 uint32_t vpx_sub_pixel_avg_variance64x32_c(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); |
| 705 uint32_t vpx_sub_pixel_avg_variance64x32_sse2(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); | 684 uint32_t vpx_sub_pixel_avg_variance64x32_sse2(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); |
| 706 uint32_t vpx_sub_pixel_avg_variance64x32_ssse3(const uint8_t *src_ptr, int sourc
e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin
t32_t *sse, const uint8_t *second_pred); | 685 uint32_t vpx_sub_pixel_avg_variance64x32_ssse3(const uint8_t *src_ptr, int sourc
e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin
t32_t *sse, const uint8_t *second_pred); |
| 707 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance64x32)(const uint8_t *src_ptr,
int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_st
ride, uint32_t *sse, const uint8_t *second_pred); | 686 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance64x32)(const uint8_t *src_ptr,
int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_st
ride, uint32_t *sse, const uint8_t *second_pred); |
| 708 | 687 |
| 709 uint32_t vpx_sub_pixel_avg_variance64x64_c(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); | 688 uint32_t vpx_sub_pixel_avg_variance64x64_c(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse, const uint8_t *second_pred); |
| 710 uint32_t vpx_sub_pixel_avg_variance64x64_sse2(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); | 689 uint32_t vpx_sub_pixel_avg_variance64x64_sse2(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); |
| 711 uint32_t vpx_sub_pixel_avg_variance64x64_ssse3(const uint8_t *src_ptr, int sourc
e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin
t32_t *sse, const uint8_t *second_pred); | 690 uint32_t vpx_sub_pixel_avg_variance64x64_ssse3(const uint8_t *src_ptr, int sourc
e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin
t32_t *sse, const uint8_t *second_pred); |
| 712 uint32_t vpx_sub_pixel_avg_variance64x64_avx2(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); | |
| 713 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance64x64)(const uint8_t *src_ptr,
int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_st
ride, uint32_t *sse, const uint8_t *second_pred); | 691 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance64x64)(const uint8_t *src_ptr,
int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_st
ride, uint32_t *sse, const uint8_t *second_pred); |
| 714 | 692 |
| 715 uint32_t vpx_sub_pixel_avg_variance8x16_c(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse, const uint8_t *second_pred); | 693 uint32_t vpx_sub_pixel_avg_variance8x16_c(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse, const uint8_t *second_pred); |
| 716 uint32_t vpx_sub_pixel_avg_variance8x16_sse2(const uint8_t *src_ptr, int source_
stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint3
2_t *sse, const uint8_t *second_pred); | 694 uint32_t vpx_sub_pixel_avg_variance8x16_sse2(const uint8_t *src_ptr, int source_
stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint3
2_t *sse, const uint8_t *second_pred); |
| 717 uint32_t vpx_sub_pixel_avg_variance8x16_ssse3(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); | 695 uint32_t vpx_sub_pixel_avg_variance8x16_ssse3(const uint8_t *src_ptr, int source
_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint
32_t *sse, const uint8_t *second_pred); |
| 718 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance8x16)(const uint8_t *src_ptr, i
nt source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_str
ide, uint32_t *sse, const uint8_t *second_pred); | 696 RTCD_EXTERN uint32_t (*vpx_sub_pixel_avg_variance8x16)(const uint8_t *src_ptr, i
nt source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_str
ide, uint32_t *sse, const uint8_t *second_pred); |
| 719 | 697 |
| 720 uint32_t vpx_sub_pixel_avg_variance8x4_c(const uint8_t *src_ptr, int source_stri
de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse, const uint8_t *second_pred); | 698 uint32_t vpx_sub_pixel_avg_variance8x4_c(const uint8_t *src_ptr, int source_stri
de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse, const uint8_t *second_pred); |
| 721 uint32_t vpx_sub_pixel_avg_variance8x4_sse2(const uint8_t *src_ptr, int source_s
tride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32
_t *sse, const uint8_t *second_pred); | 699 uint32_t vpx_sub_pixel_avg_variance8x4_sse2(const uint8_t *src_ptr, int source_s
tride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32
_t *sse, const uint8_t *second_pred); |
| 722 uint32_t vpx_sub_pixel_avg_variance8x4_ssse3(const uint8_t *src_ptr, int source_
stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint3
2_t *sse, const uint8_t *second_pred); | 700 uint32_t vpx_sub_pixel_avg_variance8x4_ssse3(const uint8_t *src_ptr, int source_
stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint3
2_t *sse, const uint8_t *second_pred); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 745 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance16x8)(const uint8_t *src_ptr, int s
ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride,
uint32_t *sse); | 723 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance16x8)(const uint8_t *src_ptr, int s
ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride,
uint32_t *sse); |
| 746 | 724 |
| 747 uint32_t vpx_sub_pixel_variance32x16_c(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); | 725 uint32_t vpx_sub_pixel_variance32x16_c(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); |
| 748 uint32_t vpx_sub_pixel_variance32x16_sse2(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); | 726 uint32_t vpx_sub_pixel_variance32x16_sse2(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); |
| 749 uint32_t vpx_sub_pixel_variance32x16_ssse3(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse); | 727 uint32_t vpx_sub_pixel_variance32x16_ssse3(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse); |
| 750 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance32x16)(const uint8_t *src_ptr, int
source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride
, uint32_t *sse); | 728 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance32x16)(const uint8_t *src_ptr, int
source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride
, uint32_t *sse); |
| 751 | 729 |
| 752 uint32_t vpx_sub_pixel_variance32x32_c(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); | 730 uint32_t vpx_sub_pixel_variance32x32_c(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); |
| 753 uint32_t vpx_sub_pixel_variance32x32_sse2(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); | 731 uint32_t vpx_sub_pixel_variance32x32_sse2(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); |
| 754 uint32_t vpx_sub_pixel_variance32x32_ssse3(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse); | 732 uint32_t vpx_sub_pixel_variance32x32_ssse3(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse); |
| 755 uint32_t vpx_sub_pixel_variance32x32_avx2(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); | |
| 756 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance32x32)(const uint8_t *src_ptr, int
source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride
, uint32_t *sse); | 733 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance32x32)(const uint8_t *src_ptr, int
source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride
, uint32_t *sse); |
| 757 | 734 |
| 758 uint32_t vpx_sub_pixel_variance32x64_c(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); | 735 uint32_t vpx_sub_pixel_variance32x64_c(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); |
| 759 uint32_t vpx_sub_pixel_variance32x64_sse2(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); | 736 uint32_t vpx_sub_pixel_variance32x64_sse2(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); |
| 760 uint32_t vpx_sub_pixel_variance32x64_ssse3(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse); | 737 uint32_t vpx_sub_pixel_variance32x64_ssse3(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse); |
| 761 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance32x64)(const uint8_t *src_ptr, int
source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride
, uint32_t *sse); | 738 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance32x64)(const uint8_t *src_ptr, int
source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride
, uint32_t *sse); |
| 762 | 739 |
| 763 uint32_t vpx_sub_pixel_variance4x4_c(const uint8_t *src_ptr, int source_stride,
int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse
); | 740 uint32_t vpx_sub_pixel_variance4x4_c(const uint8_t *src_ptr, int source_stride,
int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse
); |
| 764 uint32_t vpx_sub_pixel_variance4x4_mmx(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); | 741 uint32_t vpx_sub_pixel_variance4x4_mmx(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); |
| 765 uint32_t vpx_sub_pixel_variance4x4_sse(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); | 742 uint32_t vpx_sub_pixel_variance4x4_sse(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); |
| 766 uint32_t vpx_sub_pixel_variance4x4_ssse3(const uint8_t *src_ptr, int source_stri
de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); | 743 uint32_t vpx_sub_pixel_variance4x4_ssse3(const uint8_t *src_ptr, int source_stri
de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); |
| 767 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance4x4)(const uint8_t *src_ptr, int so
urce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride,
uint32_t *sse); | 744 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance4x4)(const uint8_t *src_ptr, int so
urce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride,
uint32_t *sse); |
| 768 | 745 |
| 769 uint32_t vpx_sub_pixel_variance4x8_c(const uint8_t *src_ptr, int source_stride,
int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse
); | 746 uint32_t vpx_sub_pixel_variance4x8_c(const uint8_t *src_ptr, int source_stride,
int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse
); |
| 770 uint32_t vpx_sub_pixel_variance4x8_sse(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); | 747 uint32_t vpx_sub_pixel_variance4x8_sse(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); |
| 771 uint32_t vpx_sub_pixel_variance4x8_ssse3(const uint8_t *src_ptr, int source_stri
de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); | 748 uint32_t vpx_sub_pixel_variance4x8_ssse3(const uint8_t *src_ptr, int source_stri
de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); |
| 772 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance4x8)(const uint8_t *src_ptr, int so
urce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride,
uint32_t *sse); | 749 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance4x8)(const uint8_t *src_ptr, int so
urce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride,
uint32_t *sse); |
| 773 | 750 |
| 774 uint32_t vpx_sub_pixel_variance64x32_c(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); | 751 uint32_t vpx_sub_pixel_variance64x32_c(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); |
| 775 uint32_t vpx_sub_pixel_variance64x32_sse2(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); | 752 uint32_t vpx_sub_pixel_variance64x32_sse2(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); |
| 776 uint32_t vpx_sub_pixel_variance64x32_ssse3(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse); | 753 uint32_t vpx_sub_pixel_variance64x32_ssse3(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse); |
| 777 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance64x32)(const uint8_t *src_ptr, int
source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride
, uint32_t *sse); | 754 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance64x32)(const uint8_t *src_ptr, int
source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride
, uint32_t *sse); |
| 778 | 755 |
| 779 uint32_t vpx_sub_pixel_variance64x64_c(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); | 756 uint32_t vpx_sub_pixel_variance64x64_c(const uint8_t *src_ptr, int source_stride
, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *s
se); |
| 780 uint32_t vpx_sub_pixel_variance64x64_sse2(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); | 757 uint32_t vpx_sub_pixel_variance64x64_sse2(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); |
| 781 uint32_t vpx_sub_pixel_variance64x64_ssse3(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse); | 758 uint32_t vpx_sub_pixel_variance64x64_ssse3(const uint8_t *src_ptr, int source_st
ride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_
t *sse); |
| 782 uint32_t vpx_sub_pixel_variance64x64_avx2(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); | |
| 783 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance64x64)(const uint8_t *src_ptr, int
source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride
, uint32_t *sse); | 759 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance64x64)(const uint8_t *src_ptr, int
source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride
, uint32_t *sse); |
| 784 | 760 |
| 785 uint32_t vpx_sub_pixel_variance8x16_c(const uint8_t *src_ptr, int source_stride,
int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *ss
e); | 761 uint32_t vpx_sub_pixel_variance8x16_c(const uint8_t *src_ptr, int source_stride,
int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *ss
e); |
| 786 uint32_t vpx_sub_pixel_variance8x16_mmx(const uint8_t *src_ptr, int source_strid
e, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *
sse); | 762 uint32_t vpx_sub_pixel_variance8x16_mmx(const uint8_t *src_ptr, int source_strid
e, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *
sse); |
| 787 uint32_t vpx_sub_pixel_variance8x16_sse2(const uint8_t *src_ptr, int source_stri
de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); | 763 uint32_t vpx_sub_pixel_variance8x16_sse2(const uint8_t *src_ptr, int source_stri
de, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); |
| 788 uint32_t vpx_sub_pixel_variance8x16_ssse3(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); | 764 uint32_t vpx_sub_pixel_variance8x16_ssse3(const uint8_t *src_ptr, int source_str
ide, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t
*sse); |
| 789 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance8x16)(const uint8_t *src_ptr, int s
ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride,
uint32_t *sse); | 765 RTCD_EXTERN uint32_t (*vpx_sub_pixel_variance8x16)(const uint8_t *src_ptr, int s
ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride,
uint32_t *sse); |
| 790 | 766 |
| 791 uint32_t vpx_sub_pixel_variance8x4_c(const uint8_t *src_ptr, int source_stride,
int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse
); | 767 uint32_t vpx_sub_pixel_variance8x4_c(const uint8_t *src_ptr, int source_stride,
int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse
); |
| 792 uint32_t vpx_sub_pixel_variance8x4_sse2(const uint8_t *src_ptr, int source_strid
e, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *
sse); | 768 uint32_t vpx_sub_pixel_variance8x4_sse2(const uint8_t *src_ptr, int source_strid
e, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *
sse); |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 void vpx_v_predictor_4x4_sse(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab
ove, const uint8_t *left); | 806 void vpx_v_predictor_4x4_sse(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab
ove, const uint8_t *left); |
| 831 RTCD_EXTERN void (*vpx_v_predictor_4x4)(uint8_t *dst, ptrdiff_t y_stride, const
uint8_t *above, const uint8_t *left); | 807 RTCD_EXTERN void (*vpx_v_predictor_4x4)(uint8_t *dst, ptrdiff_t y_stride, const
uint8_t *above, const uint8_t *left); |
| 832 | 808 |
| 833 void vpx_v_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov
e, const uint8_t *left); | 809 void vpx_v_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov
e, const uint8_t *left); |
| 834 void vpx_v_predictor_8x8_sse(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab
ove, const uint8_t *left); | 810 void vpx_v_predictor_8x8_sse(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *ab
ove, const uint8_t *left); |
| 835 RTCD_EXTERN void (*vpx_v_predictor_8x8)(uint8_t *dst, ptrdiff_t y_stride, const
uint8_t *above, const uint8_t *left); | 811 RTCD_EXTERN void (*vpx_v_predictor_8x8)(uint8_t *dst, ptrdiff_t y_stride, const
uint8_t *above, const uint8_t *left); |
| 836 | 812 |
| 837 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); | 813 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); |
| 838 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); | 814 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); |
| 839 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); | 815 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); |
| 840 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); | |
| 841 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); | 816 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); |
| 842 | 817 |
| 843 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); | 818 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); |
| 844 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); | 819 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); |
| 845 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); | 820 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); |
| 846 | 821 |
| 847 unsigned int vpx_variance16x8_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 822 unsigned int vpx_variance16x8_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
| 848 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); | 823 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); |
| 849 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); | 824 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); |
| 850 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); | 825 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); |
| 851 | 826 |
| 852 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); | 827 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); |
| 853 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); | 828 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); |
| 854 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); | |
| 855 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); | 829 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); |
| 856 | 830 |
| 857 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); | 831 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); |
| 858 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); | 832 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); |
| 859 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); | |
| 860 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); | 833 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); |
| 861 | 834 |
| 862 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); | 835 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); |
| 863 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); | 836 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); |
| 864 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); | 837 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); |
| 865 | 838 |
| 866 unsigned int vpx_variance4x4_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 839 unsigned int vpx_variance4x4_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
| 867 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); | 840 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); |
| 868 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); | 841 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); |
| 869 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); | 842 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); |
| 870 | 843 |
| 871 unsigned int vpx_variance4x8_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 844 unsigned int vpx_variance4x8_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
| 872 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); | 845 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); |
| 873 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); | 846 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); |
| 874 | 847 |
| 875 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); | 848 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); |
| 876 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); | 849 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); |
| 877 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); | |
| 878 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); | 850 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); |
| 879 | 851 |
| 880 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); | 852 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); |
| 881 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); | 853 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); |
| 882 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); | |
| 883 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); | 854 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); |
| 884 | 855 |
| 885 unsigned int vpx_variance8x16_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 856 unsigned int vpx_variance8x16_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
| 886 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); | 857 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); |
| 887 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); | 858 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); |
| 888 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); | 859 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); |
| 889 | 860 |
| 890 unsigned int vpx_variance8x4_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); | 861 unsigned int vpx_variance8x4_c(const uint8_t *src_ptr, int source_stride, const
uint8_t *ref_ptr, int ref_stride, unsigned int *sse); |
| 891 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); | 862 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); |
| 892 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); | 863 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); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 917 #include "vpx_ports/x86.h" | 888 #include "vpx_ports/x86.h" |
| 918 static void setup_rtcd_internal(void) | 889 static void setup_rtcd_internal(void) |
| 919 { | 890 { |
| 920 int flags = x86_simd_caps(); | 891 int flags = x86_simd_caps(); |
| 921 | 892 |
| 922 (void)flags; | 893 (void)flags; |
| 923 | 894 |
| 924 vpx_convolve8 = vpx_convolve8_c; | 895 vpx_convolve8 = vpx_convolve8_c; |
| 925 if (flags & HAS_SSE2) vpx_convolve8 = vpx_convolve8_sse2; | 896 if (flags & HAS_SSE2) vpx_convolve8 = vpx_convolve8_sse2; |
| 926 if (flags & HAS_SSSE3) vpx_convolve8 = vpx_convolve8_ssse3; | 897 if (flags & HAS_SSSE3) vpx_convolve8 = vpx_convolve8_ssse3; |
| 927 if (flags & HAS_AVX2) vpx_convolve8 = vpx_convolve8_avx2; | |
| 928 vpx_convolve8_avg = vpx_convolve8_avg_c; | 898 vpx_convolve8_avg = vpx_convolve8_avg_c; |
| 929 if (flags & HAS_SSE2) vpx_convolve8_avg = vpx_convolve8_avg_sse2; | 899 if (flags & HAS_SSE2) vpx_convolve8_avg = vpx_convolve8_avg_sse2; |
| 930 if (flags & HAS_SSSE3) vpx_convolve8_avg = vpx_convolve8_avg_ssse3; | 900 if (flags & HAS_SSSE3) vpx_convolve8_avg = vpx_convolve8_avg_ssse3; |
| 931 vpx_convolve8_avg_horiz = vpx_convolve8_avg_horiz_c; | 901 vpx_convolve8_avg_horiz = vpx_convolve8_avg_horiz_c; |
| 932 if (flags & HAS_SSE2) vpx_convolve8_avg_horiz = vpx_convolve8_avg_horiz_sse2
; | 902 if (flags & HAS_SSE2) vpx_convolve8_avg_horiz = vpx_convolve8_avg_horiz_sse2
; |
| 933 if (flags & HAS_SSSE3) vpx_convolve8_avg_horiz = vpx_convolve8_avg_horiz_sss
e3; | 903 if (flags & HAS_SSSE3) vpx_convolve8_avg_horiz = vpx_convolve8_avg_horiz_sss
e3; |
| 934 vpx_convolve8_avg_vert = vpx_convolve8_avg_vert_c; | 904 vpx_convolve8_avg_vert = vpx_convolve8_avg_vert_c; |
| 935 if (flags & HAS_SSE2) vpx_convolve8_avg_vert = vpx_convolve8_avg_vert_sse2; | 905 if (flags & HAS_SSE2) vpx_convolve8_avg_vert = vpx_convolve8_avg_vert_sse2; |
| 936 if (flags & HAS_SSSE3) vpx_convolve8_avg_vert = vpx_convolve8_avg_vert_ssse3
; | 906 if (flags & HAS_SSSE3) vpx_convolve8_avg_vert = vpx_convolve8_avg_vert_ssse3
; |
| 937 vpx_convolve8_horiz = vpx_convolve8_horiz_c; | 907 vpx_convolve8_horiz = vpx_convolve8_horiz_c; |
| 938 if (flags & HAS_SSE2) vpx_convolve8_horiz = vpx_convolve8_horiz_sse2; | 908 if (flags & HAS_SSE2) vpx_convolve8_horiz = vpx_convolve8_horiz_sse2; |
| 939 if (flags & HAS_SSSE3) vpx_convolve8_horiz = vpx_convolve8_horiz_ssse3; | 909 if (flags & HAS_SSSE3) vpx_convolve8_horiz = vpx_convolve8_horiz_ssse3; |
| 940 if (flags & HAS_AVX2) vpx_convolve8_horiz = vpx_convolve8_horiz_avx2; | |
| 941 vpx_convolve8_vert = vpx_convolve8_vert_c; | 910 vpx_convolve8_vert = vpx_convolve8_vert_c; |
| 942 if (flags & HAS_SSE2) vpx_convolve8_vert = vpx_convolve8_vert_sse2; | 911 if (flags & HAS_SSE2) vpx_convolve8_vert = vpx_convolve8_vert_sse2; |
| 943 if (flags & HAS_SSSE3) vpx_convolve8_vert = vpx_convolve8_vert_ssse3; | 912 if (flags & HAS_SSSE3) vpx_convolve8_vert = vpx_convolve8_vert_ssse3; |
| 944 if (flags & HAS_AVX2) vpx_convolve8_vert = vpx_convolve8_vert_avx2; | |
| 945 vpx_convolve_avg = vpx_convolve_avg_c; | 913 vpx_convolve_avg = vpx_convolve_avg_c; |
| 946 if (flags & HAS_SSE2) vpx_convolve_avg = vpx_convolve_avg_sse2; | 914 if (flags & HAS_SSE2) vpx_convolve_avg = vpx_convolve_avg_sse2; |
| 947 vpx_convolve_copy = vpx_convolve_copy_c; | 915 vpx_convolve_copy = vpx_convolve_copy_c; |
| 948 if (flags & HAS_SSE2) vpx_convolve_copy = vpx_convolve_copy_sse2; | 916 if (flags & HAS_SSE2) vpx_convolve_copy = vpx_convolve_copy_sse2; |
| 949 vpx_d153_predictor_16x16 = vpx_d153_predictor_16x16_c; | 917 vpx_d153_predictor_16x16 = vpx_d153_predictor_16x16_c; |
| 950 if (flags & HAS_SSSE3) vpx_d153_predictor_16x16 = vpx_d153_predictor_16x16_s
sse3; | 918 if (flags & HAS_SSSE3) vpx_d153_predictor_16x16 = vpx_d153_predictor_16x16_s
sse3; |
| 951 vpx_d153_predictor_32x32 = vpx_d153_predictor_32x32_c; | 919 vpx_d153_predictor_32x32 = vpx_d153_predictor_32x32_c; |
| 952 if (flags & HAS_SSSE3) vpx_d153_predictor_32x32 = vpx_d153_predictor_32x32_s
sse3; | 920 if (flags & HAS_SSSE3) vpx_d153_predictor_32x32 = vpx_d153_predictor_32x32_s
sse3; |
| 953 vpx_d153_predictor_4x4 = vpx_d153_predictor_4x4_c; | 921 vpx_d153_predictor_4x4 = vpx_d153_predictor_4x4_c; |
| 954 if (flags & HAS_SSSE3) vpx_d153_predictor_4x4 = vpx_d153_predictor_4x4_ssse3
; | 922 if (flags & HAS_SSSE3) vpx_d153_predictor_4x4 = vpx_d153_predictor_4x4_ssse3
; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1009 vpx_dc_top_predictor_4x4 = vpx_dc_top_predictor_4x4_c; | 977 vpx_dc_top_predictor_4x4 = vpx_dc_top_predictor_4x4_c; |
| 1010 if (flags & HAS_SSE) vpx_dc_top_predictor_4x4 = vpx_dc_top_predictor_4x4_sse
; | 978 if (flags & HAS_SSE) vpx_dc_top_predictor_4x4 = vpx_dc_top_predictor_4x4_sse
; |
| 1011 vpx_dc_top_predictor_8x8 = vpx_dc_top_predictor_8x8_c; | 979 vpx_dc_top_predictor_8x8 = vpx_dc_top_predictor_8x8_c; |
| 1012 if (flags & HAS_SSE) vpx_dc_top_predictor_8x8 = vpx_dc_top_predictor_8x8_sse
; | 980 if (flags & HAS_SSE) vpx_dc_top_predictor_8x8 = vpx_dc_top_predictor_8x8_sse
; |
| 1013 vpx_fdct16x16 = vpx_fdct16x16_c; | 981 vpx_fdct16x16 = vpx_fdct16x16_c; |
| 1014 if (flags & HAS_SSE2) vpx_fdct16x16 = vpx_fdct16x16_sse2; | 982 if (flags & HAS_SSE2) vpx_fdct16x16 = vpx_fdct16x16_sse2; |
| 1015 vpx_fdct16x16_1 = vpx_fdct16x16_1_c; | 983 vpx_fdct16x16_1 = vpx_fdct16x16_1_c; |
| 1016 if (flags & HAS_SSE2) vpx_fdct16x16_1 = vpx_fdct16x16_1_sse2; | 984 if (flags & HAS_SSE2) vpx_fdct16x16_1 = vpx_fdct16x16_1_sse2; |
| 1017 vpx_fdct32x32 = vpx_fdct32x32_c; | 985 vpx_fdct32x32 = vpx_fdct32x32_c; |
| 1018 if (flags & HAS_SSE2) vpx_fdct32x32 = vpx_fdct32x32_sse2; | 986 if (flags & HAS_SSE2) vpx_fdct32x32 = vpx_fdct32x32_sse2; |
| 1019 if (flags & HAS_AVX2) vpx_fdct32x32 = vpx_fdct32x32_avx2; | |
| 1020 vpx_fdct32x32_1 = vpx_fdct32x32_1_c; | 987 vpx_fdct32x32_1 = vpx_fdct32x32_1_c; |
| 1021 if (flags & HAS_SSE2) vpx_fdct32x32_1 = vpx_fdct32x32_1_sse2; | 988 if (flags & HAS_SSE2) vpx_fdct32x32_1 = vpx_fdct32x32_1_sse2; |
| 1022 vpx_fdct32x32_rd = vpx_fdct32x32_rd_c; | 989 vpx_fdct32x32_rd = vpx_fdct32x32_rd_c; |
| 1023 if (flags & HAS_SSE2) vpx_fdct32x32_rd = vpx_fdct32x32_rd_sse2; | 990 if (flags & HAS_SSE2) vpx_fdct32x32_rd = vpx_fdct32x32_rd_sse2; |
| 1024 if (flags & HAS_AVX2) vpx_fdct32x32_rd = vpx_fdct32x32_rd_avx2; | |
| 1025 vpx_fdct4x4 = vpx_fdct4x4_c; | 991 vpx_fdct4x4 = vpx_fdct4x4_c; |
| 1026 if (flags & HAS_SSE2) vpx_fdct4x4 = vpx_fdct4x4_sse2; | 992 if (flags & HAS_SSE2) vpx_fdct4x4 = vpx_fdct4x4_sse2; |
| 1027 vpx_fdct4x4_1 = vpx_fdct4x4_1_c; | 993 vpx_fdct4x4_1 = vpx_fdct4x4_1_c; |
| 1028 if (flags & HAS_SSE2) vpx_fdct4x4_1 = vpx_fdct4x4_1_sse2; | 994 if (flags & HAS_SSE2) vpx_fdct4x4_1 = vpx_fdct4x4_1_sse2; |
| 1029 vpx_fdct8x8 = vpx_fdct8x8_c; | 995 vpx_fdct8x8 = vpx_fdct8x8_c; |
| 1030 if (flags & HAS_SSE2) vpx_fdct8x8 = vpx_fdct8x8_sse2; | 996 if (flags & HAS_SSE2) vpx_fdct8x8 = vpx_fdct8x8_sse2; |
| 1031 vpx_fdct8x8_1 = vpx_fdct8x8_1_c; | 997 vpx_fdct8x8_1 = vpx_fdct8x8_1_c; |
| 1032 if (flags & HAS_SSE2) vpx_fdct8x8_1 = vpx_fdct8x8_1_sse2; | 998 if (flags & HAS_SSE2) vpx_fdct8x8_1 = vpx_fdct8x8_1_sse2; |
| 1033 vpx_get16x16var = vpx_get16x16var_c; | 999 vpx_get16x16var = vpx_get16x16var_c; |
| 1034 if (flags & HAS_SSE2) vpx_get16x16var = vpx_get16x16var_sse2; | 1000 if (flags & HAS_SSE2) vpx_get16x16var = vpx_get16x16var_sse2; |
| 1035 if (flags & HAS_AVX2) vpx_get16x16var = vpx_get16x16var_avx2; | |
| 1036 vpx_get8x8var = vpx_get8x8var_c; | 1001 vpx_get8x8var = vpx_get8x8var_c; |
| 1037 if (flags & HAS_MMX) vpx_get8x8var = vpx_get8x8var_mmx; | 1002 if (flags & HAS_MMX) vpx_get8x8var = vpx_get8x8var_mmx; |
| 1038 if (flags & HAS_SSE2) vpx_get8x8var = vpx_get8x8var_sse2; | 1003 if (flags & HAS_SSE2) vpx_get8x8var = vpx_get8x8var_sse2; |
| 1039 vpx_get_mb_ss = vpx_get_mb_ss_c; | 1004 vpx_get_mb_ss = vpx_get_mb_ss_c; |
| 1040 if (flags & HAS_MMX) vpx_get_mb_ss = vpx_get_mb_ss_mmx; | 1005 if (flags & HAS_MMX) vpx_get_mb_ss = vpx_get_mb_ss_mmx; |
| 1041 if (flags & HAS_SSE2) vpx_get_mb_ss = vpx_get_mb_ss_sse2; | 1006 if (flags & HAS_SSE2) vpx_get_mb_ss = vpx_get_mb_ss_sse2; |
| 1042 vpx_h_predictor_16x16 = vpx_h_predictor_16x16_c; | 1007 vpx_h_predictor_16x16 = vpx_h_predictor_16x16_c; |
| 1043 if (flags & HAS_SSSE3) vpx_h_predictor_16x16 = vpx_h_predictor_16x16_ssse3; | 1008 if (flags & HAS_SSSE3) vpx_h_predictor_16x16 = vpx_h_predictor_16x16_ssse3; |
| 1044 vpx_h_predictor_32x32 = vpx_h_predictor_32x32_c; | 1009 vpx_h_predictor_32x32 = vpx_h_predictor_32x32_c; |
| 1045 if (flags & HAS_SSSE3) vpx_h_predictor_32x32 = vpx_h_predictor_32x32_ssse3; | 1010 if (flags & HAS_SSSE3) vpx_h_predictor_32x32 = vpx_h_predictor_32x32_ssse3; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 1066 vpx_idct8x8_12_add = vpx_idct8x8_12_add_c; | 1031 vpx_idct8x8_12_add = vpx_idct8x8_12_add_c; |
| 1067 if (flags & HAS_SSE2) vpx_idct8x8_12_add = vpx_idct8x8_12_add_sse2; | 1032 if (flags & HAS_SSE2) vpx_idct8x8_12_add = vpx_idct8x8_12_add_sse2; |
| 1068 vpx_idct8x8_1_add = vpx_idct8x8_1_add_c; | 1033 vpx_idct8x8_1_add = vpx_idct8x8_1_add_c; |
| 1069 if (flags & HAS_SSE2) vpx_idct8x8_1_add = vpx_idct8x8_1_add_sse2; | 1034 if (flags & HAS_SSE2) vpx_idct8x8_1_add = vpx_idct8x8_1_add_sse2; |
| 1070 vpx_idct8x8_64_add = vpx_idct8x8_64_add_c; | 1035 vpx_idct8x8_64_add = vpx_idct8x8_64_add_c; |
| 1071 if (flags & HAS_SSE2) vpx_idct8x8_64_add = vpx_idct8x8_64_add_sse2; | 1036 if (flags & HAS_SSE2) vpx_idct8x8_64_add = vpx_idct8x8_64_add_sse2; |
| 1072 vpx_iwht4x4_16_add = vpx_iwht4x4_16_add_c; | 1037 vpx_iwht4x4_16_add = vpx_iwht4x4_16_add_c; |
| 1073 if (flags & HAS_SSE2) vpx_iwht4x4_16_add = vpx_iwht4x4_16_add_sse2; | 1038 if (flags & HAS_SSE2) vpx_iwht4x4_16_add = vpx_iwht4x4_16_add_sse2; |
| 1074 vpx_lpf_horizontal_16 = vpx_lpf_horizontal_16_c; | 1039 vpx_lpf_horizontal_16 = vpx_lpf_horizontal_16_c; |
| 1075 if (flags & HAS_SSE2) vpx_lpf_horizontal_16 = vpx_lpf_horizontal_16_sse2; | 1040 if (flags & HAS_SSE2) vpx_lpf_horizontal_16 = vpx_lpf_horizontal_16_sse2; |
| 1076 if (flags & HAS_AVX2) vpx_lpf_horizontal_16 = vpx_lpf_horizontal_16_avx2; | |
| 1077 vpx_lpf_horizontal_4 = vpx_lpf_horizontal_4_c; | 1041 vpx_lpf_horizontal_4 = vpx_lpf_horizontal_4_c; |
| 1078 if (flags & HAS_MMX) vpx_lpf_horizontal_4 = vpx_lpf_horizontal_4_mmx; | 1042 if (flags & HAS_MMX) vpx_lpf_horizontal_4 = vpx_lpf_horizontal_4_mmx; |
| 1079 vpx_lpf_horizontal_4_dual = vpx_lpf_horizontal_4_dual_c; | 1043 vpx_lpf_horizontal_4_dual = vpx_lpf_horizontal_4_dual_c; |
| 1080 if (flags & HAS_SSE2) vpx_lpf_horizontal_4_dual = vpx_lpf_horizontal_4_dual_
sse2; | 1044 if (flags & HAS_SSE2) vpx_lpf_horizontal_4_dual = vpx_lpf_horizontal_4_dual_
sse2; |
| 1081 vpx_lpf_horizontal_8 = vpx_lpf_horizontal_8_c; | 1045 vpx_lpf_horizontal_8 = vpx_lpf_horizontal_8_c; |
| 1082 if (flags & HAS_SSE2) vpx_lpf_horizontal_8 = vpx_lpf_horizontal_8_sse2; | 1046 if (flags & HAS_SSE2) vpx_lpf_horizontal_8 = vpx_lpf_horizontal_8_sse2; |
| 1083 vpx_lpf_horizontal_8_dual = vpx_lpf_horizontal_8_dual_c; | 1047 vpx_lpf_horizontal_8_dual = vpx_lpf_horizontal_8_dual_c; |
| 1084 if (flags & HAS_SSE2) vpx_lpf_horizontal_8_dual = vpx_lpf_horizontal_8_dual_
sse2; | 1048 if (flags & HAS_SSE2) vpx_lpf_horizontal_8_dual = vpx_lpf_horizontal_8_dual_
sse2; |
| 1085 vpx_lpf_vertical_16 = vpx_lpf_vertical_16_c; | 1049 vpx_lpf_vertical_16 = vpx_lpf_vertical_16_c; |
| 1086 if (flags & HAS_SSE2) vpx_lpf_vertical_16 = vpx_lpf_vertical_16_sse2; | 1050 if (flags & HAS_SSE2) vpx_lpf_vertical_16 = vpx_lpf_vertical_16_sse2; |
| 1087 vpx_lpf_vertical_16_dual = vpx_lpf_vertical_16_dual_c; | 1051 vpx_lpf_vertical_16_dual = vpx_lpf_vertical_16_dual_c; |
| 1088 if (flags & HAS_SSE2) vpx_lpf_vertical_16_dual = vpx_lpf_vertical_16_dual_ss
e2; | 1052 if (flags & HAS_SSE2) vpx_lpf_vertical_16_dual = vpx_lpf_vertical_16_dual_ss
e2; |
| 1089 vpx_lpf_vertical_4 = vpx_lpf_vertical_4_c; | 1053 vpx_lpf_vertical_4 = vpx_lpf_vertical_4_c; |
| 1090 if (flags & HAS_MMX) vpx_lpf_vertical_4 = vpx_lpf_vertical_4_mmx; | 1054 if (flags & HAS_MMX) vpx_lpf_vertical_4 = vpx_lpf_vertical_4_mmx; |
| 1091 vpx_lpf_vertical_4_dual = vpx_lpf_vertical_4_dual_c; | 1055 vpx_lpf_vertical_4_dual = vpx_lpf_vertical_4_dual_c; |
| 1092 if (flags & HAS_SSE2) vpx_lpf_vertical_4_dual = vpx_lpf_vertical_4_dual_sse2
; | 1056 if (flags & HAS_SSE2) vpx_lpf_vertical_4_dual = vpx_lpf_vertical_4_dual_sse2
; |
| 1093 vpx_lpf_vertical_8 = vpx_lpf_vertical_8_c; | 1057 vpx_lpf_vertical_8 = vpx_lpf_vertical_8_c; |
| 1094 if (flags & HAS_SSE2) vpx_lpf_vertical_8 = vpx_lpf_vertical_8_sse2; | 1058 if (flags & HAS_SSE2) vpx_lpf_vertical_8 = vpx_lpf_vertical_8_sse2; |
| 1095 vpx_lpf_vertical_8_dual = vpx_lpf_vertical_8_dual_c; | 1059 vpx_lpf_vertical_8_dual = vpx_lpf_vertical_8_dual_c; |
| 1096 if (flags & HAS_SSE2) vpx_lpf_vertical_8_dual = vpx_lpf_vertical_8_dual_sse2
; | 1060 if (flags & HAS_SSE2) vpx_lpf_vertical_8_dual = vpx_lpf_vertical_8_dual_sse2
; |
| 1097 vpx_mse16x16 = vpx_mse16x16_c; | 1061 vpx_mse16x16 = vpx_mse16x16_c; |
| 1098 if (flags & HAS_MMX) vpx_mse16x16 = vpx_mse16x16_mmx; | 1062 if (flags & HAS_MMX) vpx_mse16x16 = vpx_mse16x16_mmx; |
| 1099 if (flags & HAS_SSE2) vpx_mse16x16 = vpx_mse16x16_sse2; | 1063 if (flags & HAS_SSE2) vpx_mse16x16 = vpx_mse16x16_sse2; |
| 1100 if (flags & HAS_AVX2) vpx_mse16x16 = vpx_mse16x16_avx2; | |
| 1101 vpx_mse16x8 = vpx_mse16x8_c; | 1064 vpx_mse16x8 = vpx_mse16x8_c; |
| 1102 if (flags & HAS_SSE2) vpx_mse16x8 = vpx_mse16x8_sse2; | 1065 if (flags & HAS_SSE2) vpx_mse16x8 = vpx_mse16x8_sse2; |
| 1103 vpx_mse8x16 = vpx_mse8x16_c; | 1066 vpx_mse8x16 = vpx_mse8x16_c; |
| 1104 if (flags & HAS_SSE2) vpx_mse8x16 = vpx_mse8x16_sse2; | 1067 if (flags & HAS_SSE2) vpx_mse8x16 = vpx_mse8x16_sse2; |
| 1105 vpx_mse8x8 = vpx_mse8x8_c; | 1068 vpx_mse8x8 = vpx_mse8x8_c; |
| 1106 if (flags & HAS_SSE2) vpx_mse8x8 = vpx_mse8x8_sse2; | 1069 if (flags & HAS_SSE2) vpx_mse8x8 = vpx_mse8x8_sse2; |
| 1107 vpx_quantize_b = vpx_quantize_b_c; | 1070 vpx_quantize_b = vpx_quantize_b_c; |
| 1108 if (flags & HAS_SSE2) vpx_quantize_b = vpx_quantize_b_sse2; | 1071 if (flags & HAS_SSE2) vpx_quantize_b = vpx_quantize_b_sse2; |
| 1109 vpx_sad16x16 = vpx_sad16x16_c; | 1072 vpx_sad16x16 = vpx_sad16x16_c; |
| 1110 if (flags & HAS_MMX) vpx_sad16x16 = vpx_sad16x16_mmx; | 1073 if (flags & HAS_MMX) vpx_sad16x16 = vpx_sad16x16_mmx; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 1131 if (flags & HAS_SSE2) vpx_sad16x8_avg = vpx_sad16x8_avg_sse2; | 1094 if (flags & HAS_SSE2) vpx_sad16x8_avg = vpx_sad16x8_avg_sse2; |
| 1132 vpx_sad16x8x3 = vpx_sad16x8x3_c; | 1095 vpx_sad16x8x3 = vpx_sad16x8x3_c; |
| 1133 if (flags & HAS_SSE3) vpx_sad16x8x3 = vpx_sad16x8x3_sse3; | 1096 if (flags & HAS_SSE3) vpx_sad16x8x3 = vpx_sad16x8x3_sse3; |
| 1134 if (flags & HAS_SSSE3) vpx_sad16x8x3 = vpx_sad16x8x3_ssse3; | 1097 if (flags & HAS_SSSE3) vpx_sad16x8x3 = vpx_sad16x8x3_ssse3; |
| 1135 vpx_sad16x8x4d = vpx_sad16x8x4d_c; | 1098 vpx_sad16x8x4d = vpx_sad16x8x4d_c; |
| 1136 if (flags & HAS_SSE2) vpx_sad16x8x4d = vpx_sad16x8x4d_sse2; | 1099 if (flags & HAS_SSE2) vpx_sad16x8x4d = vpx_sad16x8x4d_sse2; |
| 1137 vpx_sad16x8x8 = vpx_sad16x8x8_c; | 1100 vpx_sad16x8x8 = vpx_sad16x8x8_c; |
| 1138 if (flags & HAS_SSE4_1) vpx_sad16x8x8 = vpx_sad16x8x8_sse4_1; | 1101 if (flags & HAS_SSE4_1) vpx_sad16x8x8 = vpx_sad16x8x8_sse4_1; |
| 1139 vpx_sad32x16 = vpx_sad32x16_c; | 1102 vpx_sad32x16 = vpx_sad32x16_c; |
| 1140 if (flags & HAS_SSE2) vpx_sad32x16 = vpx_sad32x16_sse2; | 1103 if (flags & HAS_SSE2) vpx_sad32x16 = vpx_sad32x16_sse2; |
| 1141 if (flags & HAS_AVX2) vpx_sad32x16 = vpx_sad32x16_avx2; | |
| 1142 vpx_sad32x16_avg = vpx_sad32x16_avg_c; | 1104 vpx_sad32x16_avg = vpx_sad32x16_avg_c; |
| 1143 if (flags & HAS_SSE2) vpx_sad32x16_avg = vpx_sad32x16_avg_sse2; | 1105 if (flags & HAS_SSE2) vpx_sad32x16_avg = vpx_sad32x16_avg_sse2; |
| 1144 if (flags & HAS_AVX2) vpx_sad32x16_avg = vpx_sad32x16_avg_avx2; | |
| 1145 vpx_sad32x16x4d = vpx_sad32x16x4d_c; | 1106 vpx_sad32x16x4d = vpx_sad32x16x4d_c; |
| 1146 if (flags & HAS_SSE2) vpx_sad32x16x4d = vpx_sad32x16x4d_sse2; | 1107 if (flags & HAS_SSE2) vpx_sad32x16x4d = vpx_sad32x16x4d_sse2; |
| 1147 vpx_sad32x32 = vpx_sad32x32_c; | 1108 vpx_sad32x32 = vpx_sad32x32_c; |
| 1148 if (flags & HAS_SSE2) vpx_sad32x32 = vpx_sad32x32_sse2; | 1109 if (flags & HAS_SSE2) vpx_sad32x32 = vpx_sad32x32_sse2; |
| 1149 if (flags & HAS_AVX2) vpx_sad32x32 = vpx_sad32x32_avx2; | |
| 1150 vpx_sad32x32_avg = vpx_sad32x32_avg_c; | 1110 vpx_sad32x32_avg = vpx_sad32x32_avg_c; |
| 1151 if (flags & HAS_SSE2) vpx_sad32x32_avg = vpx_sad32x32_avg_sse2; | 1111 if (flags & HAS_SSE2) vpx_sad32x32_avg = vpx_sad32x32_avg_sse2; |
| 1152 if (flags & HAS_AVX2) vpx_sad32x32_avg = vpx_sad32x32_avg_avx2; | |
| 1153 vpx_sad32x32x4d = vpx_sad32x32x4d_c; | 1112 vpx_sad32x32x4d = vpx_sad32x32x4d_c; |
| 1154 if (flags & HAS_SSE2) vpx_sad32x32x4d = vpx_sad32x32x4d_sse2; | 1113 if (flags & HAS_SSE2) vpx_sad32x32x4d = vpx_sad32x32x4d_sse2; |
| 1155 if (flags & HAS_AVX2) vpx_sad32x32x4d = vpx_sad32x32x4d_avx2; | |
| 1156 vpx_sad32x64 = vpx_sad32x64_c; | 1114 vpx_sad32x64 = vpx_sad32x64_c; |
| 1157 if (flags & HAS_SSE2) vpx_sad32x64 = vpx_sad32x64_sse2; | 1115 if (flags & HAS_SSE2) vpx_sad32x64 = vpx_sad32x64_sse2; |
| 1158 if (flags & HAS_AVX2) vpx_sad32x64 = vpx_sad32x64_avx2; | |
| 1159 vpx_sad32x64_avg = vpx_sad32x64_avg_c; | 1116 vpx_sad32x64_avg = vpx_sad32x64_avg_c; |
| 1160 if (flags & HAS_SSE2) vpx_sad32x64_avg = vpx_sad32x64_avg_sse2; | 1117 if (flags & HAS_SSE2) vpx_sad32x64_avg = vpx_sad32x64_avg_sse2; |
| 1161 if (flags & HAS_AVX2) vpx_sad32x64_avg = vpx_sad32x64_avg_avx2; | |
| 1162 vpx_sad32x64x4d = vpx_sad32x64x4d_c; | 1118 vpx_sad32x64x4d = vpx_sad32x64x4d_c; |
| 1163 if (flags & HAS_SSE2) vpx_sad32x64x4d = vpx_sad32x64x4d_sse2; | 1119 if (flags & HAS_SSE2) vpx_sad32x64x4d = vpx_sad32x64x4d_sse2; |
| 1164 vpx_sad4x4 = vpx_sad4x4_c; | 1120 vpx_sad4x4 = vpx_sad4x4_c; |
| 1165 if (flags & HAS_MMX) vpx_sad4x4 = vpx_sad4x4_mmx; | 1121 if (flags & HAS_MMX) vpx_sad4x4 = vpx_sad4x4_mmx; |
| 1166 if (flags & HAS_SSE) vpx_sad4x4 = vpx_sad4x4_sse; | 1122 if (flags & HAS_SSE) vpx_sad4x4 = vpx_sad4x4_sse; |
| 1167 vpx_sad4x4_avg = vpx_sad4x4_avg_c; | 1123 vpx_sad4x4_avg = vpx_sad4x4_avg_c; |
| 1168 if (flags & HAS_SSE) vpx_sad4x4_avg = vpx_sad4x4_avg_sse; | 1124 if (flags & HAS_SSE) vpx_sad4x4_avg = vpx_sad4x4_avg_sse; |
| 1169 vpx_sad4x4x3 = vpx_sad4x4x3_c; | 1125 vpx_sad4x4x3 = vpx_sad4x4x3_c; |
| 1170 if (flags & HAS_SSE3) vpx_sad4x4x3 = vpx_sad4x4x3_sse3; | 1126 if (flags & HAS_SSE3) vpx_sad4x4x3 = vpx_sad4x4x3_sse3; |
| 1171 vpx_sad4x4x4d = vpx_sad4x4x4d_c; | 1127 vpx_sad4x4x4d = vpx_sad4x4x4d_c; |
| 1172 if (flags & HAS_SSE) vpx_sad4x4x4d = vpx_sad4x4x4d_sse; | 1128 if (flags & HAS_SSE) vpx_sad4x4x4d = vpx_sad4x4x4d_sse; |
| 1173 vpx_sad4x4x8 = vpx_sad4x4x8_c; | 1129 vpx_sad4x4x8 = vpx_sad4x4x8_c; |
| 1174 if (flags & HAS_SSE4_1) vpx_sad4x4x8 = vpx_sad4x4x8_sse4_1; | 1130 if (flags & HAS_SSE4_1) vpx_sad4x4x8 = vpx_sad4x4x8_sse4_1; |
| 1175 vpx_sad4x8 = vpx_sad4x8_c; | 1131 vpx_sad4x8 = vpx_sad4x8_c; |
| 1176 if (flags & HAS_SSE) vpx_sad4x8 = vpx_sad4x8_sse; | 1132 if (flags & HAS_SSE) vpx_sad4x8 = vpx_sad4x8_sse; |
| 1177 vpx_sad4x8_avg = vpx_sad4x8_avg_c; | 1133 vpx_sad4x8_avg = vpx_sad4x8_avg_c; |
| 1178 if (flags & HAS_SSE) vpx_sad4x8_avg = vpx_sad4x8_avg_sse; | 1134 if (flags & HAS_SSE) vpx_sad4x8_avg = vpx_sad4x8_avg_sse; |
| 1179 vpx_sad4x8x4d = vpx_sad4x8x4d_c; | 1135 vpx_sad4x8x4d = vpx_sad4x8x4d_c; |
| 1180 if (flags & HAS_SSE) vpx_sad4x8x4d = vpx_sad4x8x4d_sse; | 1136 if (flags & HAS_SSE) vpx_sad4x8x4d = vpx_sad4x8x4d_sse; |
| 1181 vpx_sad64x32 = vpx_sad64x32_c; | 1137 vpx_sad64x32 = vpx_sad64x32_c; |
| 1182 if (flags & HAS_SSE2) vpx_sad64x32 = vpx_sad64x32_sse2; | 1138 if (flags & HAS_SSE2) vpx_sad64x32 = vpx_sad64x32_sse2; |
| 1183 if (flags & HAS_AVX2) vpx_sad64x32 = vpx_sad64x32_avx2; | |
| 1184 vpx_sad64x32_avg = vpx_sad64x32_avg_c; | 1139 vpx_sad64x32_avg = vpx_sad64x32_avg_c; |
| 1185 if (flags & HAS_SSE2) vpx_sad64x32_avg = vpx_sad64x32_avg_sse2; | 1140 if (flags & HAS_SSE2) vpx_sad64x32_avg = vpx_sad64x32_avg_sse2; |
| 1186 if (flags & HAS_AVX2) vpx_sad64x32_avg = vpx_sad64x32_avg_avx2; | |
| 1187 vpx_sad64x32x4d = vpx_sad64x32x4d_c; | 1141 vpx_sad64x32x4d = vpx_sad64x32x4d_c; |
| 1188 if (flags & HAS_SSE2) vpx_sad64x32x4d = vpx_sad64x32x4d_sse2; | 1142 if (flags & HAS_SSE2) vpx_sad64x32x4d = vpx_sad64x32x4d_sse2; |
| 1189 vpx_sad64x64 = vpx_sad64x64_c; | 1143 vpx_sad64x64 = vpx_sad64x64_c; |
| 1190 if (flags & HAS_SSE2) vpx_sad64x64 = vpx_sad64x64_sse2; | 1144 if (flags & HAS_SSE2) vpx_sad64x64 = vpx_sad64x64_sse2; |
| 1191 if (flags & HAS_AVX2) vpx_sad64x64 = vpx_sad64x64_avx2; | |
| 1192 vpx_sad64x64_avg = vpx_sad64x64_avg_c; | 1145 vpx_sad64x64_avg = vpx_sad64x64_avg_c; |
| 1193 if (flags & HAS_SSE2) vpx_sad64x64_avg = vpx_sad64x64_avg_sse2; | 1146 if (flags & HAS_SSE2) vpx_sad64x64_avg = vpx_sad64x64_avg_sse2; |
| 1194 if (flags & HAS_AVX2) vpx_sad64x64_avg = vpx_sad64x64_avg_avx2; | |
| 1195 vpx_sad64x64x4d = vpx_sad64x64x4d_c; | 1147 vpx_sad64x64x4d = vpx_sad64x64x4d_c; |
| 1196 if (flags & HAS_SSE2) vpx_sad64x64x4d = vpx_sad64x64x4d_sse2; | 1148 if (flags & HAS_SSE2) vpx_sad64x64x4d = vpx_sad64x64x4d_sse2; |
| 1197 if (flags & HAS_AVX2) vpx_sad64x64x4d = vpx_sad64x64x4d_avx2; | |
| 1198 vpx_sad8x16 = vpx_sad8x16_c; | 1149 vpx_sad8x16 = vpx_sad8x16_c; |
| 1199 if (flags & HAS_MMX) vpx_sad8x16 = vpx_sad8x16_mmx; | 1150 if (flags & HAS_MMX) vpx_sad8x16 = vpx_sad8x16_mmx; |
| 1200 if (flags & HAS_SSE2) vpx_sad8x16 = vpx_sad8x16_sse2; | 1151 if (flags & HAS_SSE2) vpx_sad8x16 = vpx_sad8x16_sse2; |
| 1201 vpx_sad8x16_avg = vpx_sad8x16_avg_c; | 1152 vpx_sad8x16_avg = vpx_sad8x16_avg_c; |
| 1202 if (flags & HAS_SSE2) vpx_sad8x16_avg = vpx_sad8x16_avg_sse2; | 1153 if (flags & HAS_SSE2) vpx_sad8x16_avg = vpx_sad8x16_avg_sse2; |
| 1203 vpx_sad8x16x3 = vpx_sad8x16x3_c; | 1154 vpx_sad8x16x3 = vpx_sad8x16x3_c; |
| 1204 if (flags & HAS_SSE3) vpx_sad8x16x3 = vpx_sad8x16x3_sse3; | 1155 if (flags & HAS_SSE3) vpx_sad8x16x3 = vpx_sad8x16x3_sse3; |
| 1205 vpx_sad8x16x4d = vpx_sad8x16x4d_c; | 1156 vpx_sad8x16x4d = vpx_sad8x16x4d_c; |
| 1206 if (flags & HAS_SSE2) vpx_sad8x16x4d = vpx_sad8x16x4d_sse2; | 1157 if (flags & HAS_SSE2) vpx_sad8x16x4d = vpx_sad8x16x4d_sse2; |
| 1207 vpx_sad8x16x8 = vpx_sad8x16x8_c; | 1158 vpx_sad8x16x8 = vpx_sad8x16x8_c; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 1233 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance16x32 = vpx_sub_pixel_avg_v
ariance16x32_ssse3; | 1184 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance16x32 = vpx_sub_pixel_avg_v
ariance16x32_ssse3; |
| 1234 vpx_sub_pixel_avg_variance16x8 = vpx_sub_pixel_avg_variance16x8_c; | 1185 vpx_sub_pixel_avg_variance16x8 = vpx_sub_pixel_avg_variance16x8_c; |
| 1235 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance16x8 = vpx_sub_pixel_avg_var
iance16x8_sse2; | 1186 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance16x8 = vpx_sub_pixel_avg_var
iance16x8_sse2; |
| 1236 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance16x8 = vpx_sub_pixel_avg_va
riance16x8_ssse3; | 1187 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance16x8 = vpx_sub_pixel_avg_va
riance16x8_ssse3; |
| 1237 vpx_sub_pixel_avg_variance32x16 = vpx_sub_pixel_avg_variance32x16_c; | 1188 vpx_sub_pixel_avg_variance32x16 = vpx_sub_pixel_avg_variance32x16_c; |
| 1238 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance32x16 = vpx_sub_pixel_avg_va
riance32x16_sse2; | 1189 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance32x16 = vpx_sub_pixel_avg_va
riance32x16_sse2; |
| 1239 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance32x16 = vpx_sub_pixel_avg_v
ariance32x16_ssse3; | 1190 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance32x16 = vpx_sub_pixel_avg_v
ariance32x16_ssse3; |
| 1240 vpx_sub_pixel_avg_variance32x32 = vpx_sub_pixel_avg_variance32x32_c; | 1191 vpx_sub_pixel_avg_variance32x32 = vpx_sub_pixel_avg_variance32x32_c; |
| 1241 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance32x32 = vpx_sub_pixel_avg_va
riance32x32_sse2; | 1192 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance32x32 = vpx_sub_pixel_avg_va
riance32x32_sse2; |
| 1242 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance32x32 = vpx_sub_pixel_avg_v
ariance32x32_ssse3; | 1193 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance32x32 = vpx_sub_pixel_avg_v
ariance32x32_ssse3; |
| 1243 if (flags & HAS_AVX2) vpx_sub_pixel_avg_variance32x32 = vpx_sub_pixel_avg_va
riance32x32_avx2; | |
| 1244 vpx_sub_pixel_avg_variance32x64 = vpx_sub_pixel_avg_variance32x64_c; | 1194 vpx_sub_pixel_avg_variance32x64 = vpx_sub_pixel_avg_variance32x64_c; |
| 1245 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance32x64 = vpx_sub_pixel_avg_va
riance32x64_sse2; | 1195 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance32x64 = vpx_sub_pixel_avg_va
riance32x64_sse2; |
| 1246 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance32x64 = vpx_sub_pixel_avg_v
ariance32x64_ssse3; | 1196 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance32x64 = vpx_sub_pixel_avg_v
ariance32x64_ssse3; |
| 1247 vpx_sub_pixel_avg_variance4x4 = vpx_sub_pixel_avg_variance4x4_c; | 1197 vpx_sub_pixel_avg_variance4x4 = vpx_sub_pixel_avg_variance4x4_c; |
| 1248 if (flags & HAS_SSE) vpx_sub_pixel_avg_variance4x4 = vpx_sub_pixel_avg_varia
nce4x4_sse; | 1198 if (flags & HAS_SSE) vpx_sub_pixel_avg_variance4x4 = vpx_sub_pixel_avg_varia
nce4x4_sse; |
| 1249 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance4x4 = vpx_sub_pixel_avg_var
iance4x4_ssse3; | 1199 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance4x4 = vpx_sub_pixel_avg_var
iance4x4_ssse3; |
| 1250 vpx_sub_pixel_avg_variance4x8 = vpx_sub_pixel_avg_variance4x8_c; | 1200 vpx_sub_pixel_avg_variance4x8 = vpx_sub_pixel_avg_variance4x8_c; |
| 1251 if (flags & HAS_SSE) vpx_sub_pixel_avg_variance4x8 = vpx_sub_pixel_avg_varia
nce4x8_sse; | 1201 if (flags & HAS_SSE) vpx_sub_pixel_avg_variance4x8 = vpx_sub_pixel_avg_varia
nce4x8_sse; |
| 1252 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance4x8 = vpx_sub_pixel_avg_var
iance4x8_ssse3; | 1202 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance4x8 = vpx_sub_pixel_avg_var
iance4x8_ssse3; |
| 1253 vpx_sub_pixel_avg_variance64x32 = vpx_sub_pixel_avg_variance64x32_c; | 1203 vpx_sub_pixel_avg_variance64x32 = vpx_sub_pixel_avg_variance64x32_c; |
| 1254 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance64x32 = vpx_sub_pixel_avg_va
riance64x32_sse2; | 1204 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance64x32 = vpx_sub_pixel_avg_va
riance64x32_sse2; |
| 1255 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance64x32 = vpx_sub_pixel_avg_v
ariance64x32_ssse3; | 1205 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance64x32 = vpx_sub_pixel_avg_v
ariance64x32_ssse3; |
| 1256 vpx_sub_pixel_avg_variance64x64 = vpx_sub_pixel_avg_variance64x64_c; | 1206 vpx_sub_pixel_avg_variance64x64 = vpx_sub_pixel_avg_variance64x64_c; |
| 1257 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance64x64 = vpx_sub_pixel_avg_va
riance64x64_sse2; | 1207 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance64x64 = vpx_sub_pixel_avg_va
riance64x64_sse2; |
| 1258 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance64x64 = vpx_sub_pixel_avg_v
ariance64x64_ssse3; | 1208 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance64x64 = vpx_sub_pixel_avg_v
ariance64x64_ssse3; |
| 1259 if (flags & HAS_AVX2) vpx_sub_pixel_avg_variance64x64 = vpx_sub_pixel_avg_va
riance64x64_avx2; | |
| 1260 vpx_sub_pixel_avg_variance8x16 = vpx_sub_pixel_avg_variance8x16_c; | 1209 vpx_sub_pixel_avg_variance8x16 = vpx_sub_pixel_avg_variance8x16_c; |
| 1261 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance8x16 = vpx_sub_pixel_avg_var
iance8x16_sse2; | 1210 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance8x16 = vpx_sub_pixel_avg_var
iance8x16_sse2; |
| 1262 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance8x16 = vpx_sub_pixel_avg_va
riance8x16_ssse3; | 1211 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance8x16 = vpx_sub_pixel_avg_va
riance8x16_ssse3; |
| 1263 vpx_sub_pixel_avg_variance8x4 = vpx_sub_pixel_avg_variance8x4_c; | 1212 vpx_sub_pixel_avg_variance8x4 = vpx_sub_pixel_avg_variance8x4_c; |
| 1264 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance8x4 = vpx_sub_pixel_avg_vari
ance8x4_sse2; | 1213 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance8x4 = vpx_sub_pixel_avg_vari
ance8x4_sse2; |
| 1265 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance8x4 = vpx_sub_pixel_avg_var
iance8x4_ssse3; | 1214 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance8x4 = vpx_sub_pixel_avg_var
iance8x4_ssse3; |
| 1266 vpx_sub_pixel_avg_variance8x8 = vpx_sub_pixel_avg_variance8x8_c; | 1215 vpx_sub_pixel_avg_variance8x8 = vpx_sub_pixel_avg_variance8x8_c; |
| 1267 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance8x8 = vpx_sub_pixel_avg_vari
ance8x8_sse2; | 1216 if (flags & HAS_SSE2) vpx_sub_pixel_avg_variance8x8 = vpx_sub_pixel_avg_vari
ance8x8_sse2; |
| 1268 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance8x8 = vpx_sub_pixel_avg_var
iance8x8_ssse3; | 1217 if (flags & HAS_SSSE3) vpx_sub_pixel_avg_variance8x8 = vpx_sub_pixel_avg_var
iance8x8_ssse3; |
| 1269 vpx_sub_pixel_variance16x16 = vpx_sub_pixel_variance16x16_c; | 1218 vpx_sub_pixel_variance16x16 = vpx_sub_pixel_variance16x16_c; |
| 1270 if (flags & HAS_MMX) vpx_sub_pixel_variance16x16 = vpx_sub_pixel_variance16x
16_mmx; | 1219 if (flags & HAS_MMX) vpx_sub_pixel_variance16x16 = vpx_sub_pixel_variance16x
16_mmx; |
| 1271 if (flags & HAS_SSE2) vpx_sub_pixel_variance16x16 = vpx_sub_pixel_variance16
x16_sse2; | 1220 if (flags & HAS_SSE2) vpx_sub_pixel_variance16x16 = vpx_sub_pixel_variance16
x16_sse2; |
| 1272 if (flags & HAS_SSSE3) vpx_sub_pixel_variance16x16 = vpx_sub_pixel_variance1
6x16_ssse3; | 1221 if (flags & HAS_SSSE3) vpx_sub_pixel_variance16x16 = vpx_sub_pixel_variance1
6x16_ssse3; |
| 1273 vpx_sub_pixel_variance16x32 = vpx_sub_pixel_variance16x32_c; | 1222 vpx_sub_pixel_variance16x32 = vpx_sub_pixel_variance16x32_c; |
| 1274 if (flags & HAS_SSE2) vpx_sub_pixel_variance16x32 = vpx_sub_pixel_variance16
x32_sse2; | 1223 if (flags & HAS_SSE2) vpx_sub_pixel_variance16x32 = vpx_sub_pixel_variance16
x32_sse2; |
| 1275 if (flags & HAS_SSSE3) vpx_sub_pixel_variance16x32 = vpx_sub_pixel_variance1
6x32_ssse3; | 1224 if (flags & HAS_SSSE3) vpx_sub_pixel_variance16x32 = vpx_sub_pixel_variance1
6x32_ssse3; |
| 1276 vpx_sub_pixel_variance16x8 = vpx_sub_pixel_variance16x8_c; | 1225 vpx_sub_pixel_variance16x8 = vpx_sub_pixel_variance16x8_c; |
| 1277 if (flags & HAS_MMX) vpx_sub_pixel_variance16x8 = vpx_sub_pixel_variance16x8
_mmx; | 1226 if (flags & HAS_MMX) vpx_sub_pixel_variance16x8 = vpx_sub_pixel_variance16x8
_mmx; |
| 1278 if (flags & HAS_SSE2) vpx_sub_pixel_variance16x8 = vpx_sub_pixel_variance16x
8_sse2; | 1227 if (flags & HAS_SSE2) vpx_sub_pixel_variance16x8 = vpx_sub_pixel_variance16x
8_sse2; |
| 1279 if (flags & HAS_SSSE3) vpx_sub_pixel_variance16x8 = vpx_sub_pixel_variance16
x8_ssse3; | 1228 if (flags & HAS_SSSE3) vpx_sub_pixel_variance16x8 = vpx_sub_pixel_variance16
x8_ssse3; |
| 1280 vpx_sub_pixel_variance32x16 = vpx_sub_pixel_variance32x16_c; | 1229 vpx_sub_pixel_variance32x16 = vpx_sub_pixel_variance32x16_c; |
| 1281 if (flags & HAS_SSE2) vpx_sub_pixel_variance32x16 = vpx_sub_pixel_variance32
x16_sse2; | 1230 if (flags & HAS_SSE2) vpx_sub_pixel_variance32x16 = vpx_sub_pixel_variance32
x16_sse2; |
| 1282 if (flags & HAS_SSSE3) vpx_sub_pixel_variance32x16 = vpx_sub_pixel_variance3
2x16_ssse3; | 1231 if (flags & HAS_SSSE3) vpx_sub_pixel_variance32x16 = vpx_sub_pixel_variance3
2x16_ssse3; |
| 1283 vpx_sub_pixel_variance32x32 = vpx_sub_pixel_variance32x32_c; | 1232 vpx_sub_pixel_variance32x32 = vpx_sub_pixel_variance32x32_c; |
| 1284 if (flags & HAS_SSE2) vpx_sub_pixel_variance32x32 = vpx_sub_pixel_variance32
x32_sse2; | 1233 if (flags & HAS_SSE2) vpx_sub_pixel_variance32x32 = vpx_sub_pixel_variance32
x32_sse2; |
| 1285 if (flags & HAS_SSSE3) vpx_sub_pixel_variance32x32 = vpx_sub_pixel_variance3
2x32_ssse3; | 1234 if (flags & HAS_SSSE3) vpx_sub_pixel_variance32x32 = vpx_sub_pixel_variance3
2x32_ssse3; |
| 1286 if (flags & HAS_AVX2) vpx_sub_pixel_variance32x32 = vpx_sub_pixel_variance32
x32_avx2; | |
| 1287 vpx_sub_pixel_variance32x64 = vpx_sub_pixel_variance32x64_c; | 1235 vpx_sub_pixel_variance32x64 = vpx_sub_pixel_variance32x64_c; |
| 1288 if (flags & HAS_SSE2) vpx_sub_pixel_variance32x64 = vpx_sub_pixel_variance32
x64_sse2; | 1236 if (flags & HAS_SSE2) vpx_sub_pixel_variance32x64 = vpx_sub_pixel_variance32
x64_sse2; |
| 1289 if (flags & HAS_SSSE3) vpx_sub_pixel_variance32x64 = vpx_sub_pixel_variance3
2x64_ssse3; | 1237 if (flags & HAS_SSSE3) vpx_sub_pixel_variance32x64 = vpx_sub_pixel_variance3
2x64_ssse3; |
| 1290 vpx_sub_pixel_variance4x4 = vpx_sub_pixel_variance4x4_c; | 1238 vpx_sub_pixel_variance4x4 = vpx_sub_pixel_variance4x4_c; |
| 1291 if (flags & HAS_MMX) vpx_sub_pixel_variance4x4 = vpx_sub_pixel_variance4x4_m
mx; | 1239 if (flags & HAS_MMX) vpx_sub_pixel_variance4x4 = vpx_sub_pixel_variance4x4_m
mx; |
| 1292 if (flags & HAS_SSE) vpx_sub_pixel_variance4x4 = vpx_sub_pixel_variance4x4_s
se; | 1240 if (flags & HAS_SSE) vpx_sub_pixel_variance4x4 = vpx_sub_pixel_variance4x4_s
se; |
| 1293 if (flags & HAS_SSSE3) vpx_sub_pixel_variance4x4 = vpx_sub_pixel_variance4x4
_ssse3; | 1241 if (flags & HAS_SSSE3) vpx_sub_pixel_variance4x4 = vpx_sub_pixel_variance4x4
_ssse3; |
| 1294 vpx_sub_pixel_variance4x8 = vpx_sub_pixel_variance4x8_c; | 1242 vpx_sub_pixel_variance4x8 = vpx_sub_pixel_variance4x8_c; |
| 1295 if (flags & HAS_SSE) vpx_sub_pixel_variance4x8 = vpx_sub_pixel_variance4x8_s
se; | 1243 if (flags & HAS_SSE) vpx_sub_pixel_variance4x8 = vpx_sub_pixel_variance4x8_s
se; |
| 1296 if (flags & HAS_SSSE3) vpx_sub_pixel_variance4x8 = vpx_sub_pixel_variance4x8
_ssse3; | 1244 if (flags & HAS_SSSE3) vpx_sub_pixel_variance4x8 = vpx_sub_pixel_variance4x8
_ssse3; |
| 1297 vpx_sub_pixel_variance64x32 = vpx_sub_pixel_variance64x32_c; | 1245 vpx_sub_pixel_variance64x32 = vpx_sub_pixel_variance64x32_c; |
| 1298 if (flags & HAS_SSE2) vpx_sub_pixel_variance64x32 = vpx_sub_pixel_variance64
x32_sse2; | 1246 if (flags & HAS_SSE2) vpx_sub_pixel_variance64x32 = vpx_sub_pixel_variance64
x32_sse2; |
| 1299 if (flags & HAS_SSSE3) vpx_sub_pixel_variance64x32 = vpx_sub_pixel_variance6
4x32_ssse3; | 1247 if (flags & HAS_SSSE3) vpx_sub_pixel_variance64x32 = vpx_sub_pixel_variance6
4x32_ssse3; |
| 1300 vpx_sub_pixel_variance64x64 = vpx_sub_pixel_variance64x64_c; | 1248 vpx_sub_pixel_variance64x64 = vpx_sub_pixel_variance64x64_c; |
| 1301 if (flags & HAS_SSE2) vpx_sub_pixel_variance64x64 = vpx_sub_pixel_variance64
x64_sse2; | 1249 if (flags & HAS_SSE2) vpx_sub_pixel_variance64x64 = vpx_sub_pixel_variance64
x64_sse2; |
| 1302 if (flags & HAS_SSSE3) vpx_sub_pixel_variance64x64 = vpx_sub_pixel_variance6
4x64_ssse3; | 1250 if (flags & HAS_SSSE3) vpx_sub_pixel_variance64x64 = vpx_sub_pixel_variance6
4x64_ssse3; |
| 1303 if (flags & HAS_AVX2) vpx_sub_pixel_variance64x64 = vpx_sub_pixel_variance64
x64_avx2; | |
| 1304 vpx_sub_pixel_variance8x16 = vpx_sub_pixel_variance8x16_c; | 1251 vpx_sub_pixel_variance8x16 = vpx_sub_pixel_variance8x16_c; |
| 1305 if (flags & HAS_MMX) vpx_sub_pixel_variance8x16 = vpx_sub_pixel_variance8x16
_mmx; | 1252 if (flags & HAS_MMX) vpx_sub_pixel_variance8x16 = vpx_sub_pixel_variance8x16
_mmx; |
| 1306 if (flags & HAS_SSE2) vpx_sub_pixel_variance8x16 = vpx_sub_pixel_variance8x1
6_sse2; | 1253 if (flags & HAS_SSE2) vpx_sub_pixel_variance8x16 = vpx_sub_pixel_variance8x1
6_sse2; |
| 1307 if (flags & HAS_SSSE3) vpx_sub_pixel_variance8x16 = vpx_sub_pixel_variance8x
16_ssse3; | 1254 if (flags & HAS_SSSE3) vpx_sub_pixel_variance8x16 = vpx_sub_pixel_variance8x
16_ssse3; |
| 1308 vpx_sub_pixel_variance8x4 = vpx_sub_pixel_variance8x4_c; | 1255 vpx_sub_pixel_variance8x4 = vpx_sub_pixel_variance8x4_c; |
| 1309 if (flags & HAS_SSE2) vpx_sub_pixel_variance8x4 = vpx_sub_pixel_variance8x4_
sse2; | 1256 if (flags & HAS_SSE2) vpx_sub_pixel_variance8x4 = vpx_sub_pixel_variance8x4_
sse2; |
| 1310 if (flags & HAS_SSSE3) vpx_sub_pixel_variance8x4 = vpx_sub_pixel_variance8x4
_ssse3; | 1257 if (flags & HAS_SSSE3) vpx_sub_pixel_variance8x4 = vpx_sub_pixel_variance8x4
_ssse3; |
| 1311 vpx_sub_pixel_variance8x8 = vpx_sub_pixel_variance8x8_c; | 1258 vpx_sub_pixel_variance8x8 = vpx_sub_pixel_variance8x8_c; |
| 1312 if (flags & HAS_MMX) vpx_sub_pixel_variance8x8 = vpx_sub_pixel_variance8x8_m
mx; | 1259 if (flags & HAS_MMX) vpx_sub_pixel_variance8x8 = vpx_sub_pixel_variance8x8_m
mx; |
| 1313 if (flags & HAS_SSE2) vpx_sub_pixel_variance8x8 = vpx_sub_pixel_variance8x8_
sse2; | 1260 if (flags & HAS_SSE2) vpx_sub_pixel_variance8x8 = vpx_sub_pixel_variance8x8_
sse2; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 1324 if (flags & HAS_SSE2) vpx_v_predictor_16x16 = vpx_v_predictor_16x16_sse2; | 1271 if (flags & HAS_SSE2) vpx_v_predictor_16x16 = vpx_v_predictor_16x16_sse2; |
| 1325 vpx_v_predictor_32x32 = vpx_v_predictor_32x32_c; | 1272 vpx_v_predictor_32x32 = vpx_v_predictor_32x32_c; |
| 1326 if (flags & HAS_SSE2) vpx_v_predictor_32x32 = vpx_v_predictor_32x32_sse2; | 1273 if (flags & HAS_SSE2) vpx_v_predictor_32x32 = vpx_v_predictor_32x32_sse2; |
| 1327 vpx_v_predictor_4x4 = vpx_v_predictor_4x4_c; | 1274 vpx_v_predictor_4x4 = vpx_v_predictor_4x4_c; |
| 1328 if (flags & HAS_SSE) vpx_v_predictor_4x4 = vpx_v_predictor_4x4_sse; | 1275 if (flags & HAS_SSE) vpx_v_predictor_4x4 = vpx_v_predictor_4x4_sse; |
| 1329 vpx_v_predictor_8x8 = vpx_v_predictor_8x8_c; | 1276 vpx_v_predictor_8x8 = vpx_v_predictor_8x8_c; |
| 1330 if (flags & HAS_SSE) vpx_v_predictor_8x8 = vpx_v_predictor_8x8_sse; | 1277 if (flags & HAS_SSE) vpx_v_predictor_8x8 = vpx_v_predictor_8x8_sse; |
| 1331 vpx_variance16x16 = vpx_variance16x16_c; | 1278 vpx_variance16x16 = vpx_variance16x16_c; |
| 1332 if (flags & HAS_MMX) vpx_variance16x16 = vpx_variance16x16_mmx; | 1279 if (flags & HAS_MMX) vpx_variance16x16 = vpx_variance16x16_mmx; |
| 1333 if (flags & HAS_SSE2) vpx_variance16x16 = vpx_variance16x16_sse2; | 1280 if (flags & HAS_SSE2) vpx_variance16x16 = vpx_variance16x16_sse2; |
| 1334 if (flags & HAS_AVX2) vpx_variance16x16 = vpx_variance16x16_avx2; | |
| 1335 vpx_variance16x32 = vpx_variance16x32_c; | 1281 vpx_variance16x32 = vpx_variance16x32_c; |
| 1336 if (flags & HAS_SSE2) vpx_variance16x32 = vpx_variance16x32_sse2; | 1282 if (flags & HAS_SSE2) vpx_variance16x32 = vpx_variance16x32_sse2; |
| 1337 vpx_variance16x8 = vpx_variance16x8_c; | 1283 vpx_variance16x8 = vpx_variance16x8_c; |
| 1338 if (flags & HAS_MMX) vpx_variance16x8 = vpx_variance16x8_mmx; | 1284 if (flags & HAS_MMX) vpx_variance16x8 = vpx_variance16x8_mmx; |
| 1339 if (flags & HAS_SSE2) vpx_variance16x8 = vpx_variance16x8_sse2; | 1285 if (flags & HAS_SSE2) vpx_variance16x8 = vpx_variance16x8_sse2; |
| 1340 vpx_variance32x16 = vpx_variance32x16_c; | 1286 vpx_variance32x16 = vpx_variance32x16_c; |
| 1341 if (flags & HAS_SSE2) vpx_variance32x16 = vpx_variance32x16_sse2; | 1287 if (flags & HAS_SSE2) vpx_variance32x16 = vpx_variance32x16_sse2; |
| 1342 if (flags & HAS_AVX2) vpx_variance32x16 = vpx_variance32x16_avx2; | |
| 1343 vpx_variance32x32 = vpx_variance32x32_c; | 1288 vpx_variance32x32 = vpx_variance32x32_c; |
| 1344 if (flags & HAS_SSE2) vpx_variance32x32 = vpx_variance32x32_sse2; | 1289 if (flags & HAS_SSE2) vpx_variance32x32 = vpx_variance32x32_sse2; |
| 1345 if (flags & HAS_AVX2) vpx_variance32x32 = vpx_variance32x32_avx2; | |
| 1346 vpx_variance32x64 = vpx_variance32x64_c; | 1290 vpx_variance32x64 = vpx_variance32x64_c; |
| 1347 if (flags & HAS_SSE2) vpx_variance32x64 = vpx_variance32x64_sse2; | 1291 if (flags & HAS_SSE2) vpx_variance32x64 = vpx_variance32x64_sse2; |
| 1348 vpx_variance4x4 = vpx_variance4x4_c; | 1292 vpx_variance4x4 = vpx_variance4x4_c; |
| 1349 if (flags & HAS_MMX) vpx_variance4x4 = vpx_variance4x4_mmx; | 1293 if (flags & HAS_MMX) vpx_variance4x4 = vpx_variance4x4_mmx; |
| 1350 if (flags & HAS_SSE2) vpx_variance4x4 = vpx_variance4x4_sse2; | 1294 if (flags & HAS_SSE2) vpx_variance4x4 = vpx_variance4x4_sse2; |
| 1351 vpx_variance4x8 = vpx_variance4x8_c; | 1295 vpx_variance4x8 = vpx_variance4x8_c; |
| 1352 if (flags & HAS_SSE2) vpx_variance4x8 = vpx_variance4x8_sse2; | 1296 if (flags & HAS_SSE2) vpx_variance4x8 = vpx_variance4x8_sse2; |
| 1353 vpx_variance64x32 = vpx_variance64x32_c; | 1297 vpx_variance64x32 = vpx_variance64x32_c; |
| 1354 if (flags & HAS_SSE2) vpx_variance64x32 = vpx_variance64x32_sse2; | 1298 if (flags & HAS_SSE2) vpx_variance64x32 = vpx_variance64x32_sse2; |
| 1355 if (flags & HAS_AVX2) vpx_variance64x32 = vpx_variance64x32_avx2; | |
| 1356 vpx_variance64x64 = vpx_variance64x64_c; | 1299 vpx_variance64x64 = vpx_variance64x64_c; |
| 1357 if (flags & HAS_SSE2) vpx_variance64x64 = vpx_variance64x64_sse2; | 1300 if (flags & HAS_SSE2) vpx_variance64x64 = vpx_variance64x64_sse2; |
| 1358 if (flags & HAS_AVX2) vpx_variance64x64 = vpx_variance64x64_avx2; | |
| 1359 vpx_variance8x16 = vpx_variance8x16_c; | 1301 vpx_variance8x16 = vpx_variance8x16_c; |
| 1360 if (flags & HAS_MMX) vpx_variance8x16 = vpx_variance8x16_mmx; | 1302 if (flags & HAS_MMX) vpx_variance8x16 = vpx_variance8x16_mmx; |
| 1361 if (flags & HAS_SSE2) vpx_variance8x16 = vpx_variance8x16_sse2; | 1303 if (flags & HAS_SSE2) vpx_variance8x16 = vpx_variance8x16_sse2; |
| 1362 vpx_variance8x4 = vpx_variance8x4_c; | 1304 vpx_variance8x4 = vpx_variance8x4_c; |
| 1363 if (flags & HAS_SSE2) vpx_variance8x4 = vpx_variance8x4_sse2; | 1305 if (flags & HAS_SSE2) vpx_variance8x4 = vpx_variance8x4_sse2; |
| 1364 vpx_variance8x8 = vpx_variance8x8_c; | 1306 vpx_variance8x8 = vpx_variance8x8_c; |
| 1365 if (flags & HAS_MMX) vpx_variance8x8 = vpx_variance8x8_mmx; | 1307 if (flags & HAS_MMX) vpx_variance8x8 = vpx_variance8x8_mmx; |
| 1366 if (flags & HAS_SSE2) vpx_variance8x8 = vpx_variance8x8_sse2; | 1308 if (flags & HAS_SSE2) vpx_variance8x8 = vpx_variance8x8_sse2; |
| 1367 vpx_variance_halfpixvar16x16_h = vpx_variance_halfpixvar16x16_h_c; | 1309 vpx_variance_halfpixvar16x16_h = vpx_variance_halfpixvar16x16_h_c; |
| 1368 if (flags & HAS_MMX) vpx_variance_halfpixvar16x16_h = vpx_variance_halfpixva
r16x16_h_mmx; | 1310 if (flags & HAS_MMX) vpx_variance_halfpixvar16x16_h = vpx_variance_halfpixva
r16x16_h_mmx; |
| 1369 if (flags & HAS_SSE2) vpx_variance_halfpixvar16x16_h = vpx_variance_halfpixv
ar16x16_h_sse2; | 1311 if (flags & HAS_SSE2) vpx_variance_halfpixvar16x16_h = vpx_variance_halfpixv
ar16x16_h_sse2; |
| 1370 vpx_variance_halfpixvar16x16_hv = vpx_variance_halfpixvar16x16_hv_c; | 1312 vpx_variance_halfpixvar16x16_hv = vpx_variance_halfpixvar16x16_hv_c; |
| 1371 if (flags & HAS_MMX) vpx_variance_halfpixvar16x16_hv = vpx_variance_halfpixv
ar16x16_hv_mmx; | 1313 if (flags & HAS_MMX) vpx_variance_halfpixvar16x16_hv = vpx_variance_halfpixv
ar16x16_hv_mmx; |
| 1372 if (flags & HAS_SSE2) vpx_variance_halfpixvar16x16_hv = vpx_variance_halfpix
var16x16_hv_sse2; | 1314 if (flags & HAS_SSE2) vpx_variance_halfpixvar16x16_hv = vpx_variance_halfpix
var16x16_hv_sse2; |
| 1373 vpx_variance_halfpixvar16x16_v = vpx_variance_halfpixvar16x16_v_c; | 1315 vpx_variance_halfpixvar16x16_v = vpx_variance_halfpixvar16x16_v_c; |
| 1374 if (flags & HAS_MMX) vpx_variance_halfpixvar16x16_v = vpx_variance_halfpixva
r16x16_v_mmx; | 1316 if (flags & HAS_MMX) vpx_variance_halfpixvar16x16_v = vpx_variance_halfpixva
r16x16_v_mmx; |
| 1375 if (flags & HAS_SSE2) vpx_variance_halfpixvar16x16_v = vpx_variance_halfpixv
ar16x16_v_sse2; | 1317 if (flags & HAS_SSE2) vpx_variance_halfpixvar16x16_v = vpx_variance_halfpixv
ar16x16_v_sse2; |
| 1376 } | 1318 } |
| 1377 #endif | 1319 #endif |
| 1378 | 1320 |
| 1379 #ifdef __cplusplus | 1321 #ifdef __cplusplus |
| 1380 } // extern "C" | 1322 } // extern "C" |
| 1381 #endif | 1323 #endif |
| 1382 | 1324 |
| 1383 #endif | 1325 #endif |
| OLD | NEW |