HomeSort by relevance Sort by last modified time
    Searched refs:src_ptr (Results 1 - 25 of 160) sorted by null

1 2 3 4 5 6 7

  /external/libvpx/libvpx/vp8/common/
copy_c.c 17 void vp8_copy32xn_c(const unsigned char *src_ptr, int src_stride,
22 memcpy(dst_ptr, src_ptr, 32);
24 src_ptr += src_stride;
filter.c 33 static void filter_block2d_first_pass(unsigned char *src_ptr, int *output_ptr,
44 Temp = ((int)src_ptr[-2 * (int)pixel_step] * vp8_filter[0]) +
45 ((int)src_ptr[-1 * (int)pixel_step] * vp8_filter[1]) +
46 ((int)src_ptr[0] * vp8_filter[2]) +
47 ((int)src_ptr[pixel_step] * vp8_filter[3]) +
48 ((int)src_ptr[2 * pixel_step] * vp8_filter[4]) +
49 ((int)src_ptr[3 * pixel_step] * vp8_filter[5]) +
62 src_ptr++;
66 src_ptr += src_pixels_per_line - output_width;
71 static void filter_block2d_second_pass(int *src_ptr, unsigned char *output_ptr
    [all...]
reconintra4x4.h 24 unsigned int *src_ptr = (unsigned int *)above_right_src; local
29 *dst_ptr0 = *src_ptr;
30 *dst_ptr1 = *src_ptr;
31 *dst_ptr2 = *src_ptr;
  /external/libyuv/files/source/
scale_dspr2.cc 23 void ScaleRowDown2_DSPR2(const uint8* src_ptr,
36 "lw $t0, 0(%[src_ptr]) \n" // |3|2|1|0|
37 "lw $t1, 4(%[src_ptr]) \n" // |7|6|5|4|
38 "lw $t2, 8(%[src_ptr]) \n" // |11|10|9|8|
39 "lw $t3, 12(%[src_ptr]) \n" // |15|14|13|12|
40 "lw $t4, 16(%[src_ptr]) \n" // |19|18|17|16|
41 "lw $t5, 20(%[src_ptr]) \n" // |23|22|21|20|
42 "lw $t6, 24(%[src_ptr]) \n" // |27|26|25|24|
43 "lw $t7, 28(%[src_ptr]) \n" // |31|30|29|28|
49 "addiu %[src_ptr], %[src_ptr], 32 \n
    [all...]
scale_common.cc 31 void ScaleRowDown2_C(const uint8* src_ptr,
38 dst[0] = src_ptr[1];
39 dst[1] = src_ptr[3];
41 src_ptr += 4;
44 dst[0] = src_ptr[1];
48 void ScaleRowDown2_16_C(const uint16* src_ptr,
55 dst[0] = src_ptr[1];
56 dst[1] = src_ptr[3];
58 src_ptr += 4;
61 dst[0] = src_ptr[1]
    [all...]
scale_neon.cc 26 void ScaleRowDown2_NEON(const uint8* src_ptr,
40 : "+r"(src_ptr), // %0
49 void ScaleRowDown2Linear_NEON(const uint8* src_ptr,
66 : "+r"(src_ptr), // %0
75 void ScaleRowDown2Box_NEON(const uint8* src_ptr,
97 : "+r"(src_ptr), // %0
106 void ScaleRowDown4_NEON(const uint8* src_ptr,
119 : "+r"(src_ptr), // %0
127 void ScaleRowDown4Box_NEON(const uint8* src_ptr,
131 const uint8* src_ptr1 = src_ptr + src_stride
    [all...]
scale_neon64.cc 24 void ScaleRowDown2_NEON(const uint8* src_ptr,
38 : "+r"(src_ptr), // %0
47 void ScaleRowDown2Linear_NEON(const uint8* src_ptr,
64 : "+r"(src_ptr), // %0
73 void ScaleRowDown2Box_NEON(const uint8* src_ptr,
95 : "+r"(src_ptr), // %0
104 void ScaleRowDown4_NEON(const uint8* src_ptr,
117 : "+r"(src_ptr), // %0
125 void ScaleRowDown4Box_NEON(const uint8* src_ptr,
129 const uint8* src_ptr1 = src_ptr + src_stride
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
scale_common.cc 31 void ScaleRowDown2_C(const uint8* src_ptr, ptrdiff_t src_stride,
35 dst[0] = src_ptr[1];
36 dst[1] = src_ptr[3];
38 src_ptr += 4;
41 dst[0] = src_ptr[1];
45 void ScaleRowDown2_16_C(const uint16* src_ptr, ptrdiff_t src_stride,
49 dst[0] = src_ptr[1];
50 dst[1] = src_ptr[3];
52 src_ptr += 4;
55 dst[0] = src_ptr[1]
    [all...]
scale_mips.cc 24 void ScaleRowDown2_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride,
35 "lw $t0, 0(%[src_ptr]) \n" // |3|2|1|0|
36 "lw $t1, 4(%[src_ptr]) \n" // |7|6|5|4|
37 "lw $t2, 8(%[src_ptr]) \n" // |11|10|9|8|
38 "lw $t3, 12(%[src_ptr]) \n" // |15|14|13|12|
39 "lw $t4, 16(%[src_ptr]) \n" // |19|18|17|16|
40 "lw $t5, 20(%[src_ptr]) \n" // |23|22|21|20|
41 "lw $t6, 24(%[src_ptr]) \n" // |27|26|25|24|
42 "lw $t7, 28(%[src_ptr]) \n" // |31|30|29|28|
48 "addiu %[src_ptr], %[src_ptr], 32 \n
    [all...]
scale_neon.cc 26 void ScaleRowDown2_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
37 : "+r"(src_ptr), // %0
46 void ScaleRowDown2Linear_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
60 : "+r"(src_ptr), // %0
69 void ScaleRowDown2Box_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
89 : "+r"(src_ptr), // %0
98 void ScaleRowDown4_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
108 : "+r"(src_ptr), // %0
116 void ScaleRowDown4Box_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
118 const uint8* src_ptr1 = src_ptr + src_stride
    [all...]
scale_neon64.cc 24 void ScaleRowDown2_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
35 : "+r"(src_ptr), // %0
44 void ScaleRowDown2Linear_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
58 : "+r"(src_ptr), // %0
67 void ScaleRowDown2Box_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
87 : "+r"(src_ptr), // %0
96 void ScaleRowDown4_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
106 : "+r"(src_ptr), // %0
114 void ScaleRowDown4Box_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
116 const uint8* src_ptr1 = src_ptr + src_stride
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
vp8_asm_stubs.c 18 extern void vp8_filter_block1d_h6_mmx(unsigned char *src_ptr,
26 unsigned short *src_ptr, unsigned char *output_ptr, int output_pitch,
30 extern void vp8_filter_block1d8_h6_sse2(unsigned char *src_ptr,
37 extern void vp8_filter_block1d16_h6_sse2(unsigned char *src_ptr,
45 unsigned short *src_ptr, unsigned char *output_ptr, int dst_ptich,
50 unsigned short *src_ptr, unsigned char *output_ptr, int dst_ptich,
54 extern void vp8_unpack_block1d16_h6_sse2(unsigned char *src_ptr,
59 extern void vp8_filter_block1d8_h6_only_sse2(unsigned char *src_ptr,
65 extern void vp8_filter_block1d16_h6_only_sse2(unsigned char *src_ptr,
71 extern void vp8_filter_block1d8_v6_only_sse2(unsigned char *src_ptr,
    [all...]
  /external/libyuv/files/include/libyuv/
scale_row.h 175 void ScaleRowDown2_C(const uint8* src_ptr,
179 void ScaleRowDown2_16_C(const uint16* src_ptr,
183 void ScaleRowDown2Linear_C(const uint8* src_ptr,
187 void ScaleRowDown2Linear_16_C(const uint16* src_ptr,
191 void ScaleRowDown2Box_C(const uint8* src_ptr,
195 void ScaleRowDown2Box_Odd_C(const uint8* src_ptr,
199 void ScaleRowDown2Box_16_C(const uint16* src_ptr,
203 void ScaleRowDown4_C(const uint8* src_ptr,
207 void ScaleRowDown4_16_C(const uint16* src_ptr,
211 void ScaleRowDown4Box_C(const uint8* src_ptr,
    [all...]
  /external/libvpx/libvpx/vp8/common/mips/dspr2/
filter_dspr2.c 96 void vp8_filter_block2d_first_pass_4(unsigned char *RESTRICT src_ptr,
116 /* prefetch src_ptr data to cache memory */
117 prefetch_load(src_ptr + src_pixels_per_line);
118 dst_ptr[0] = src_ptr[0];
119 dst_ptr[1] = src_ptr[1];
120 dst_ptr[2] = src_ptr[2];
121 dst_ptr[3] = src_ptr[3];
124 src_ptr += src_pixels_per_line;
134 /* prefetch src_ptr data to cache memory */
135 prefetch_load(src_ptr + src_pixels_per_line)
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
scale_row.h 145 void ScaleRowDown2_C(const uint8* src_ptr, ptrdiff_t src_stride,
147 void ScaleRowDown2_16_C(const uint16* src_ptr, ptrdiff_t src_stride,
149 void ScaleRowDown2Linear_C(const uint8* src_ptr, ptrdiff_t src_stride,
151 void ScaleRowDown2Linear_16_C(const uint16* src_ptr, ptrdiff_t src_stride,
153 void ScaleRowDown2Box_C(const uint8* src_ptr, ptrdiff_t src_stride,
155 void ScaleRowDown2Box_Odd_C(const uint8* src_ptr, ptrdiff_t src_stride,
157 void ScaleRowDown2Box_16_C(const uint16* src_ptr, ptrdiff_t src_stride,
159 void ScaleRowDown4_C(const uint8* src_ptr, ptrdiff_t src_stride,
161 void ScaleRowDown4_16_C(const uint16* src_ptr, ptrdiff_t src_stride,
163 void ScaleRowDown4Box_C(const uint8* src_ptr, ptrdiff_t src_stride
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/neon/
bilinearpredict_neon.c 25 void vp8_bilinear_predict4x4_neon(unsigned char *src_ptr,
34 a0 = load_and_shift(src_ptr);
35 src_ptr += src_pixels_per_line;
36 a1 = vld1_u8(src_ptr);
37 src_ptr += src_pixels_per_line;
38 a2 = load_and_shift(src_ptr);
39 src_ptr += src_pixels_per_line;
40 a3 = vld1_u8(src_ptr);
41 src_ptr += src_pixels_per_line;
42 a4 = vld1_u8(src_ptr);
    [all...]
  /external/libvpx/config/x86/
vpx_dsp_rtcd.h 266 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);
267 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);
270 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
273 void vpx_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
274 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);
440 unsigned int vpx_mse16x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
441 unsigned int vpx_mse16x16_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
444 unsigned int vpx_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
445 unsigned int vpx_mse16x8_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
448 unsigned int vpx_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse)
    [all...]
  /external/libvpx/config/x86_64/
vpx_dsp_rtcd.h 267 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);
268 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);
271 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
274 void vpx_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
275 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);
442 unsigned int vpx_mse16x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
443 unsigned int vpx_mse16x16_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
446 unsigned int vpx_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
447 unsigned int vpx_mse16x8_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
450 unsigned int vpx_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse)
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
sad_sse3.asm 15 %define src_ptr rsi
29 mov rsi, arg(0) ; src_ptr
37 %define src_ptr rcx
46 %define src_ptr rdi
60 %define src_ptr
169 ; unsigned char *src_ptr,
179 PROCESS_16X2X3 0, src_ptr, ref_ptr, src_stride, ref_stride
180 PROCESS_16X2X3 1, src_ptr, ref_ptr, src_stride, ref_stride
181 PROCESS_16X2X3 1, src_ptr, ref_ptr, src_stride, ref_stride
182 PROCESS_16X2X3 1, src_ptr, ref_ptr, src_stride, ref_strid
    [all...]
  /external/libvpx/config/mips32-msa/
vpx_dsp_rtcd.h 242 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);
243 void vpx_get16x16var_msa(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
246 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
247 unsigned int vpx_get4x4sse_cs_msa(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
250 void vpx_get8x8var_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_get8x8var_msa(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
405 unsigned int vpx_mse16x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
406 unsigned int vpx_mse16x16_msa(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
409 unsigned int vpx_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
410 unsigned int vpx_mse16x8_msa(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse)
    [all...]
  /external/libvpx/config/mips64-msa/
vpx_dsp_rtcd.h 242 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);
243 void vpx_get16x16var_msa(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
246 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
247 unsigned int vpx_get4x4sse_cs_msa(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
250 void vpx_get8x8var_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_get8x8var_msa(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
405 unsigned int vpx_mse16x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
406 unsigned int vpx_mse16x16_msa(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
409 unsigned int vpx_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
410 unsigned int vpx_mse16x8_msa(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse)
    [all...]
  /external/libvpx/config/arm/
vpx_dsp_rtcd.h 208 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);
211 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
214 void vpx_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
331 unsigned int vpx_mse16x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
334 unsigned int vpx_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
337 unsigned int vpx_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
340 unsigned int vpx_mse8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
349 unsigned int vpx_sad16x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
352 unsigned int vpx_sad16x16_avg_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
355 void vpx_sad16x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array)
    [all...]
  /external/libvpx/config/generic/
vpx_dsp_rtcd.h 208 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);
211 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
214 void vpx_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
331 unsigned int vpx_mse16x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
334 unsigned int vpx_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
337 unsigned int vpx_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
340 unsigned int vpx_mse8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
349 unsigned int vpx_sad16x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
352 unsigned int vpx_sad16x16_avg_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
355 void vpx_sad16x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array)
    [all...]
  /external/libvpx/config/mips32/
vpx_dsp_rtcd.h 208 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);
211 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
214 void vpx_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
331 unsigned int vpx_mse16x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
334 unsigned int vpx_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
337 unsigned int vpx_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
340 unsigned int vpx_mse8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
349 unsigned int vpx_sad16x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
352 unsigned int vpx_sad16x16_avg_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
355 void vpx_sad16x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array)
    [all...]
  /external/libvpx/config/mips64/
vpx_dsp_rtcd.h 208 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);
211 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
214 void vpx_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
331 unsigned int vpx_mse16x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
334 unsigned int vpx_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
337 unsigned int vpx_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
340 unsigned int vpx_mse8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
349 unsigned int vpx_sad16x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
352 unsigned int vpx_sad16x16_avg_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
355 void vpx_sad16x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array)
    [all...]

Completed in 513 milliseconds

1 2 3 4 5 6 7