Searched defs:dst_uv (Results 1 - 16 of 16) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert_from_argb.cc260 uint8* dst_uv, int dst_stride_uv,
268 void (*MergeUVRow_)(const uint8* src_u, const uint8* src_v, uint8* dst_uv,
271 !dst_y || !dst_uv ||
348 MergeUVRow_(row_u, row_v, dst_uv, halfwidth);
353 dst_uv += dst_stride_uv;
357 MergeUVRow_(row_u, row_v, dst_uv, halfwidth);
369 uint8* dst_uv, int dst_stride_uv,
377 void (*MergeUVRow_)(const uint8* src_u, const uint8* src_v, uint8* dst_uv,
380 !dst_y || !dst_uv ||
457 MergeUVRow_(row_v, row_u, dst_uv, halfwidt
258 ARGBToNV12(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
367 ARGBToNV21(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
[all...]
H A Dconvert_from.cc370 uint8* dst_uv, int dst_stride_uv,
372 if (!src_y || !src_u || !src_v || !dst_y || !dst_uv ||
383 dst_uv, dst_stride_uv,
1003 uint8* dst_uv = dst_sample + width * height; local
1009 dst_uv,
366 I420ToNV12(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
H A Dplanar_functions.cc307 uint8* dst_uv, int dst_stride_uv,
310 void (*MergeUVRow)(const uint8* src_u, const uint8* src_v, uint8* dst_uv,
316 dst_uv = dst_uv + (height - 1) * dst_stride_uv;
354 MergeUVRow(src_u, src_v, dst_uv, width);
357 dst_uv += dst_stride_uv;
2615 uint8* dst_uv, int dst_stride_uv,
2625 !dst_y || !dst_uv ||
2695 InterpolateRow(dst_uv, rows + awidth, awidth, awidth, 128);
2698 dst_uv
305 MergeUVPlane(const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
2613 YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
2711 UYVYToNV12(const uint8* src_uyvy, int src_stride_uyvy, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
[all...]
H A Drow_neon.cc643 void MergeUVRow_NEON(const uint8* src_u, const uint8* src_v, uint8* dst_uv, argument
658 "+r"(dst_uv), // %2
H A Drow_neon64.cc637 void MergeUVRow_NEON(const uint8* src_u, const uint8* src_v, uint8* dst_uv, argument
652 "+r"(dst_uv), // %2
H A Drow_common.cc1803 void MergeUVRow_C(const uint8* src_u, const uint8* src_v, uint8* dst_uv, argument
1807 dst_uv[0] = src_u[x];
1808 dst_uv[1] = src_v[x];
1809 dst_uv[2] = src_u[x + 1];
1810 dst_uv[3] = src_v[x + 1];
1811 dst_uv += 4;
1814 dst_uv[0] = src_u[width - 1];
1815 dst_uv[1] = src_v[width - 1];
2151 uint8* dst_uv, int width) {
2154 dst_uv[
2150 HalfRow_C(const uint8* src_uv, ptrdiff_t src_uv_stride, uint8* dst_uv, int width) argument
2158 HalfRow_16_C(const uint16* src_uv, ptrdiff_t src_uv_stride, uint16* dst_uv, int width) argument
[all...]
H A Drow_gcc.cc2738 void MergeUVRow_AVX2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, argument
2759 "+r"(dst_uv), // %2
2769 void MergeUVRow_SSE2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, argument
2788 "+r"(dst_uv), // %2
/external/libyuv/files/source/
H A Dconvert_from_argb.cc250 uint8* dst_uv,
260 void (*MergeUVRow_)(const uint8* src_u, const uint8* src_v, uint8* dst_uv,
262 if (!src_argb || !dst_y || !dst_uv || width <= 0 || height == 0) {
378 MergeUVRow_(row_u, row_v, dst_uv, halfwidth);
383 dst_uv += dst_stride_uv;
387 MergeUVRow_(row_u, row_v, dst_uv, halfwidth);
401 uint8* dst_uv,
411 void (*MergeUVRow_)(const uint8* src_u, const uint8* src_v, uint8* dst_uv,
413 if (!src_argb || !dst_y || !dst_uv || width <= 0 || height == 0) {
529 MergeUVRow_(row_v, row_u, dst_uv, halfwidt
246 ARGBToNV12(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
397 ARGBToNV21(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
[all...]
H A Dconvert_from.cc401 uint8* dst_uv,
405 if (!src_y || !src_u || !src_v || !dst_y || !dst_uv || width <= 0 ||
414 MergeUVPlane(src_u, src_stride_u, src_v, src_stride_v, dst_uv, dst_stride_uv,
1173 uint8* dst_uv = dst_sample + width * height; local
1175 dst_sample_stride ? dst_sample_stride : width, dst_uv,
393 I420ToNV12(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
H A Dplanar_functions.cc339 uint8* dst_uv,
344 void (*MergeUVRow)(const uint8* src_u, const uint8* src_v, uint8* dst_uv,
350 dst_uv = dst_uv + (height - 1) * dst_stride_uv;
395 MergeUVRow(src_u, src_v, dst_uv, width);
398 dst_uv += dst_stride_uv;
3119 uint8* dst_uv,
3130 if (!src_yuy2 || !dst_y || !dst_uv || width <= 0 || height == 0) {
3207 InterpolateRow(dst_uv, rows + awidth, awidth, awidth, 128);
3210 dst_uv
335 MergeUVPlane(const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
3115 YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
3223 UYVYToNV12(const uint8* src_uyvy, int src_stride_uyvy, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
[all...]
H A Drow_neon.cc604 uint8* dst_uv,
619 "+r"(dst_uv), // %2
602 MergeUVRow_NEON(const uint8* src_u, const uint8* src_v, uint8* dst_uv, int width) argument
H A Drow_neon64.cc605 uint8* dst_uv,
620 "+r"(dst_uv), // %2
603 MergeUVRow_NEON(const uint8* src_u, const uint8* src_v, uint8* dst_uv, int width) argument
H A Drow_common.cc1757 uint8* dst_uv,
1761 dst_uv[0] = src_u[x];
1762 dst_uv[1] = src_v[x];
1763 dst_uv[2] = src_u[x + 1];
1764 dst_uv[3] = src_v[x + 1];
1765 dst_uv += 4;
1768 dst_uv[0] = src_u[width - 1];
1769 dst_uv[1] = src_v[width - 1];
2134 uint8* dst_uv,
2138 dst_uv[
1755 MergeUVRow_C(const uint8* src_u, const uint8* src_v, uint8* dst_uv, int width) argument
2132 HalfRow_C(const uint8* src_uv, ptrdiff_t src_uv_stride, uint8* dst_uv, int width) argument
2142 HalfRow_16_C(const uint16* src_uv, ptrdiff_t src_uv_stride, uint16* dst_uv, int width) argument
[all...]
H A Drow_gcc.cc2694 uint8* dst_uv,
2716 "+r"(dst_uv), // %2
2728 uint8* dst_uv,
2748 "+r"(dst_uv), // %2
2692 MergeUVRow_AVX2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, int width) argument
2726 MergeUVRow_SSE2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, int width) argument
H A Drow_msa.cc2955 uint8* dst_uv,
2965 ST_UB2(dst0, dst1, dst_uv, 16);
2968 dst_uv += 32;
2953 MergeUVRow_MSA(const uint8* src_u, const uint8* src_v, uint8* dst_uv, int width) argument
/external/webrtc/webrtc/modules/video_coding/codecs/h264/
H A Dh264_video_toolbox_encoder.cc138 uint8_t* dst_uv = reinterpret_cast<uint8_t*>( local
146 dst_stride_y, dst_uv, dst_stride_uv, frame.width(), frame.height());

Completed in 743 milliseconds