Home
last modified time | relevance | path

Searched refs:src_u (Results 1 – 25 of 88) sorted by relevance

1234

/external/libaom/libaom/third_party/libyuv/include/libyuv/
Dconvert_argb.h69 const uint8_t* src_u,
82 const uint8_t* src_u,
95 const uint8_t* src_u,
108 const uint8_t* src_u,
121 const uint8_t* src_u,
134 const uint8_t* src_u,
147 const uint8_t* src_u,
160 const uint8_t* src_u,
173 const uint8_t* src_u,
186 const uint8_t* src_u,
[all …]
Dconvert_from.h29 const uint8_t* src_u,
45 const uint8_t* src_u,
61 const uint8_t* src_u,
86 const uint8_t* src_u,
100 const uint8_t* src_u,
114 const uint8_t* src_u,
126 const uint8_t* src_u,
142 const uint8_t* src_u,
155 const uint8_t* src_u,
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from.cc35 const uint8_t* src_u, in I420ToI4xx() argument
61 ScalePlane(src_u, src_stride_u, src_uv_width, src_uv_height, dst_u, in I420ToI4xx()
72 const uint8_t* src_u, in I420ToI010() argument
86 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I420ToI010()
94 src_u = src_u + (halfheight - 1) * src_stride_u; in I420ToI010()
105 Convert8To16Plane(src_u, src_stride_u, dst_u, dst_stride_u, 1024, halfwidth, in I420ToI010()
117 const uint8_t* src_u, in I420ToI422() argument
131 return I420ToI4xx(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420ToI422()
142 const uint8_t* src_u, in I420ToI444() argument
156 return I420ToI4xx(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420ToI444()
[all …]
Dconvert_argb.cc53 const uint8_t* src_u, in I420ToARGBMatrix() argument
67 if (!src_y || !src_u || !src_v || !dst_argb || width <= 0 || height == 0) { in I420ToARGBMatrix()
110 I422ToARGBRow(src_y, src_u, src_v, dst_argb, yuvconstants, width); in I420ToARGBMatrix()
114 src_u += src_stride_u; in I420ToARGBMatrix()
125 const uint8_t* src_u, in I420ToARGB() argument
133 return I420ToARGBMatrix(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420ToARGB()
142 const uint8_t* src_u, in I420ToABGR() argument
152 src_u, src_stride_u, dst_abgr, dst_stride_abgr, in I420ToABGR()
161 const uint8_t* src_u, in J420ToARGB() argument
169 return I420ToARGBMatrix(src_y, src_stride_y, src_u, src_stride_u, src_v, in J420ToARGB()
[all …]
Dconvert_to_argb.cc191 const uint8_t* src_u; in ConvertToARGB() local
198 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
201 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
206 r = I420ToARGB(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToARGB()
213 const uint8_t* src_u; in ConvertToARGB() local
217 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
221 r = J420ToARGB(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToARGB()
229 const uint8_t* src_u; in ConvertToARGB() local
235 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
238 src_u = sample + src_width * abs_src_height + halfwidth * crop_y + in ConvertToARGB()
[all …]
Drow_neon.cc110 const uint8_t* src_u, in I444ToARGBRow_NEON() argument
123 "+r"(src_u), // %1 in I444ToARGBRow_NEON()
136 const uint8_t* src_u, in I422ToARGBRow_NEON() argument
149 "+r"(src_u), // %1 in I422ToARGBRow_NEON()
162 const uint8_t* src_u, in I422AlphaToARGBRow_NEON() argument
176 "+r"(src_u), // %1 in I422AlphaToARGBRow_NEON()
190 const uint8_t* src_u, in I422ToRGBARow_NEON() argument
203 "+r"(src_u), // %1 in I422ToRGBARow_NEON()
216 const uint8_t* src_u, in I422ToRGB24Row_NEON() argument
228 "+r"(src_u), // %1 in I422ToRGB24Row_NEON()
[all …]
Dconvert_to_i420.cc191 const uint8_t* src_u; in ConvertToI420() local
198 src_u = sample + src_width * abs_src_height + in ConvertToI420()
201 src_u = sample + src_width * abs_src_height + in ConvertToI420()
206 r = I420Rotate(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToI420()
214 const uint8_t* src_u; in ConvertToI420() local
220 src_u = sample + src_width * abs_src_height + in ConvertToI420()
223 src_u = sample + src_width * abs_src_height + halfwidth * crop_y + in ConvertToI420()
228 r = I422ToI420(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToI420()
236 const uint8_t* src_u; in ConvertToI420() local
240 src_u = sample + src_width * (abs_src_height * 2 + crop_y) + crop_x; in ConvertToI420()
[all …]
/external/libyuv/files/source/
Dconvert_from.cc35 const uint8_t* src_u, in I420ToI4xx() argument
61 ScalePlane(src_u, src_stride_u, src_uv_width, src_uv_height, dst_u, in I420ToI4xx()
72 const uint8_t* src_u, in I420ToI010() argument
86 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I420ToI010()
94 src_u = src_u + (halfheight - 1) * src_stride_u; in I420ToI010()
105 Convert8To16Plane(src_u, src_stride_u, dst_u, dst_stride_u, 1024, halfwidth, in I420ToI010()
117 const uint8_t* src_u, in I420ToI422() argument
131 return I420ToI4xx(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420ToI422()
142 const uint8_t* src_u, in I420ToI444() argument
156 return I420ToI4xx(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420ToI444()
[all …]
Dconvert_argb.cc53 const uint8_t* src_u, in I420ToARGBMatrix() argument
67 if (!src_y || !src_u || !src_v || !dst_argb || width <= 0 || height == 0) { in I420ToARGBMatrix()
110 I422ToARGBRow(src_y, src_u, src_v, dst_argb, yuvconstants, width); in I420ToARGBMatrix()
114 src_u += src_stride_u; in I420ToARGBMatrix()
125 const uint8_t* src_u, in I420ToARGB() argument
133 return I420ToARGBMatrix(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420ToARGB()
142 const uint8_t* src_u, in I420ToABGR() argument
152 src_u, src_stride_u, dst_abgr, dst_stride_abgr, in I420ToABGR()
161 const uint8_t* src_u, in J420ToARGB() argument
169 return I420ToARGBMatrix(src_y, src_stride_y, src_u, src_stride_u, src_v, in J420ToARGB()
[all …]
Dconvert_to_argb.cc191 const uint8_t* src_u; in ConvertToARGB() local
198 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
201 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
206 r = I420ToARGB(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToARGB()
215 const uint8_t* src_u = sample + src_width * abs_src_height + in ConvertToARGB() local
219 r = H420ToARGB(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToARGB()
228 const uint8_t* src_u = sample + src_width * abs_src_height + in ConvertToARGB() local
232 r = J420ToARGB(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToARGB()
241 const uint8_t* src_u; in ConvertToARGB() local
246 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
[all …]
Dconvert_to_i420.cc191 const uint8_t* src_u; in ConvertToI420() local
198 src_u = sample + src_width * abs_src_height + in ConvertToI420()
201 src_u = sample + src_width * abs_src_height + halfwidth * (crop_y / 2) + in ConvertToI420()
206 r = I420Rotate(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToI420()
214 const uint8_t* src_u; in ConvertToI420() local
220 src_u = sample + src_width * abs_src_height + in ConvertToI420()
223 src_u = sample + src_width * abs_src_height + halfwidth * crop_y + in ConvertToI420()
228 r = I422ToI420(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToI420()
236 const uint8_t* src_u; in ConvertToI420() local
240 src_u = sample + src_width * (abs_src_height * 2 + crop_y) + crop_x; in ConvertToI420()
[all …]
Drow_neon.cc110 const uint8_t* src_u, in I444ToARGBRow_NEON() argument
123 "+r"(src_u), // %1 in I444ToARGBRow_NEON()
136 const uint8_t* src_u, in I422ToARGBRow_NEON() argument
149 "+r"(src_u), // %1 in I422ToARGBRow_NEON()
162 const uint8_t* src_u, in I422AlphaToARGBRow_NEON() argument
176 "+r"(src_u), // %1 in I422AlphaToARGBRow_NEON()
190 const uint8_t* src_u, in I422ToRGBARow_NEON() argument
203 "+r"(src_u), // %1 in I422ToRGBARow_NEON()
216 const uint8_t* src_u, in I422ToRGB24Row_NEON() argument
228 "+r"(src_u), // %1 in I422ToRGB24Row_NEON()
[all …]
Drotate.cc419 const uint8_t* src_u, in I420Rotate() argument
434 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I420Rotate()
444 src_u = src_u + (halfheight - 1) * src_stride_u; in I420Rotate()
454 return I420Copy(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420Rotate()
459 RotatePlane90(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I420Rotate()
466 RotatePlane270(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I420Rotate()
473 RotatePlane180(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I420Rotate()
487 const uint8_t* src_u, in I444Rotate() argument
500 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I444Rotate()
509 src_u = src_u + (height - 1) * src_stride_u; in I444Rotate()
[all …]
/external/libaom/libaom/third_party/libyuv/source/
Dconvert_argb.cc54 const uint8_t* src_u, in I420ToARGBMatrix() argument
68 if (!src_y || !src_u || !src_v || !dst_argb || width <= 0 || height == 0) { in I420ToARGBMatrix()
119 I422ToARGBRow(src_y, src_u, src_v, dst_argb, yuvconstants, width); in I420ToARGBMatrix()
123 src_u += src_stride_u; in I420ToARGBMatrix()
134 const uint8_t* src_u, in I420ToARGB() argument
142 return I420ToARGBMatrix(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420ToARGB()
151 const uint8_t* src_u, in I420ToABGR() argument
161 src_u, src_stride_u, dst_abgr, dst_stride_abgr, in I420ToABGR()
170 const uint8_t* src_u, in J420ToARGB() argument
178 return I420ToARGBMatrix(src_y, src_stride_y, src_u, src_stride_u, src_v, in J420ToARGB()
[all …]
Dconvert_to_argb.cc187 const uint8_t* src_u; in ConvertToARGB() local
194 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
197 src_u = sample + src_width * abs_src_height + in ConvertToARGB()
202 r = I420ToARGB(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToARGB()
211 const uint8_t* src_u = sample + src_width * abs_src_height + in ConvertToARGB() local
215 r = J420ToARGB(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToARGB()
224 const uint8_t* src_u = sample + src_width * abs_src_height + in ConvertToARGB() local
228 r = H420ToARGB(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToARGB()
237 const uint8_t* src_u = sample + src_width * abs_src_height + in ConvertToARGB() local
241 r = U420ToARGB(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToARGB()
[all …]
Dconvert_from.cc35 const uint8_t* src_u, in I420ToI4xx() argument
61 ScalePlane(src_u, src_stride_u, src_uv_width, src_uv_height, dst_u, in I420ToI4xx()
72 const uint8_t* src_u, in I420ToI010() argument
86 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I420ToI010()
94 src_u = src_u + (halfheight - 1) * src_stride_u; in I420ToI010()
105 Convert8To16Plane(src_u, src_stride_u, dst_u, dst_stride_u, 1024, halfwidth, in I420ToI010()
117 const uint8_t* src_u, in I420ToI422() argument
131 return I420ToI4xx(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420ToI422()
142 const uint8_t* src_u, in I420ToI444() argument
156 return I420ToI4xx(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420ToI444()
[all …]
Drow_neon.cc110 const uint8_t* src_u, in I444ToARGBRow_NEON() argument
123 "+r"(src_u), // %1 in I444ToARGBRow_NEON()
136 const uint8_t* src_u, in I422ToARGBRow_NEON() argument
149 "+r"(src_u), // %1 in I422ToARGBRow_NEON()
162 const uint8_t* src_u, in I422AlphaToARGBRow_NEON() argument
176 "+r"(src_u), // %1 in I422AlphaToARGBRow_NEON()
190 const uint8_t* src_u, in I422ToRGBARow_NEON() argument
203 "+r"(src_u), // %1 in I422ToRGBARow_NEON()
216 const uint8_t* src_u, in I422ToRGB24Row_NEON() argument
228 "+r"(src_u), // %1 in I422ToRGB24Row_NEON()
[all …]
Dconvert_to_i420.cc186 const uint8_t* src_u; in ConvertToI420() local
193 src_u = sample + src_width * abs_src_height + in ConvertToI420()
196 src_u = sample + src_width * abs_src_height + halfwidth * (crop_y / 2) + in ConvertToI420()
201 r = I420Rotate(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToI420()
209 const uint8_t* src_u; in ConvertToI420() local
215 src_u = sample + src_width * abs_src_height + in ConvertToI420()
218 src_u = sample + src_width * abs_src_height + halfwidth * crop_y + in ConvertToI420()
223 r = I422ToI420(src_y, src_width, src_u, halfwidth, src_v, halfwidth, in ConvertToI420()
231 const uint8_t* src_u; in ConvertToI420() local
235 src_u = sample + src_width * (abs_src_height * 2 + crop_y) + crop_x; in ConvertToI420()
[all …]
Drotate.cc423 const uint8_t* src_u, in I420Rotate() argument
438 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I420Rotate()
448 src_u = src_u + (halfheight - 1) * src_stride_u; in I420Rotate()
458 return I420Copy(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420Rotate()
463 RotatePlane90(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I420Rotate()
470 RotatePlane270(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I420Rotate()
477 RotatePlane180(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I420Rotate()
491 const uint8_t* src_u, in I444Rotate() argument
504 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I444Rotate()
513 src_u = src_u + (height - 1) * src_stride_u; in I444Rotate()
[all …]
Dconvert.cc33 const uint8_t* src_u, in I4xxToI420() argument
58 ScalePlane(src_u, src_stride_u, src_uv_width, src_uv_height, dst_u, in I4xxToI420()
71 const uint8_t* src_u, in I420Copy() argument
85 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I420Copy()
93 src_u = src_u + (halfheight - 1) * src_stride_u; in I420Copy()
104 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight); in I420Copy()
113 const uint16_t* src_u, in I010Copy() argument
127 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I010Copy()
135 src_u = src_u + (halfheight - 1) * src_stride_u; in I010Copy()
146 CopyPlane_16(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight); in I010Copy()
[all …]
/external/libyuv/files/include/libyuv/
Dconvert_from.h28 const uint8_t* src_u,
44 const uint8_t* src_u,
60 const uint8_t* src_u,
85 const uint8_t* src_u,
99 const uint8_t* src_u,
113 const uint8_t* src_u,
125 const uint8_t* src_u,
137 const uint8_t* src_u,
149 const uint8_t* src_u,
161 const uint8_t* src_u,
[all …]
Dconvert_argb.h44 const uint8_t* src_u,
57 const uint8_t* src_u,
70 const uint16_t* src_u,
83 const uint16_t* src_u,
96 const uint16_t* src_u,
109 const uint16_t* src_u,
122 const uint16_t* src_u,
135 const uint8_t* src_u,
148 const uint8_t* src_u,
161 const uint8_t* src_u,
[all …]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from.h28 const uint8_t* src_u,
44 const uint8_t* src_u,
60 const uint8_t* src_u,
85 const uint8_t* src_u,
99 const uint8_t* src_u,
113 const uint8_t* src_u,
125 const uint8_t* src_u,
137 const uint8_t* src_u,
149 const uint8_t* src_u,
161 const uint8_t* src_u,
[all …]
Dconvert_argb.h44 const uint8_t* src_u,
57 const uint8_t* src_u,
70 const uint16_t* src_u,
83 const uint16_t* src_u,
96 const uint16_t* src_u,
109 const uint16_t* src_u,
122 const uint16_t* src_u,
135 const uint8_t* src_u,
148 const uint8_t* src_u,
161 const uint8_t* src_u,
[all …]
/external/libvpx/libvpx/vp8/common/mips/msa/
Dloopfilter_filters_msa.c309 static void mbloop_filter_horizontal_edge_uv_msa(uint8_t *src_u, uint8_t *src_v, in mbloop_filter_horizontal_edge_uv_msa() argument
325 temp_src = src_u - (pitch << 2); in mbloop_filter_horizontal_edge_uv_msa()
342 src_u -= (pitch * 3); in mbloop_filter_horizontal_edge_uv_msa()
343 SD4(p2_d, p1_d, p0_d, q0_d, src_u, pitch); in mbloop_filter_horizontal_edge_uv_msa()
344 src_u += 4 * pitch; in mbloop_filter_horizontal_edge_uv_msa()
345 SD(q1_d, src_u); in mbloop_filter_horizontal_edge_uv_msa()
346 src_u += pitch; in mbloop_filter_horizontal_edge_uv_msa()
347 SD(q2_d, src_u); in mbloop_filter_horizontal_edge_uv_msa()
428 static void mbloop_filter_vertical_edge_uv_msa(uint8_t *src_u, uint8_t *src_v, in mbloop_filter_vertical_edge_uv_msa() argument
443 LD_UB8(src_u - 4, pitch, row0, row1, row2, row3, row4, row5, row6, row7); in mbloop_filter_vertical_edge_uv_msa()
[all …]

1234