Home
last modified time | relevance | path

Searched refs:dst_uyvy (Results 1 – 7 of 7) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from.cc258 uint8* dst_uyvy, int dst_stride_uyvy, in I422ToUYVY() argument
262 const uint8* src_v, uint8* dst_uyvy, int width) = in I422ToUYVY()
264 if (!src_y || !src_u || !src_v || !dst_uyvy || in I422ToUYVY()
271 dst_uyvy = dst_uyvy + (height - 1) * dst_stride_uyvy; in I422ToUYVY()
301 I422ToUYVYRow(src_y, src_u, src_v, dst_uyvy, width); in I422ToUYVY()
305 dst_uyvy += dst_stride_uyvy; in I422ToUYVY()
314 uint8* dst_uyvy, int dst_stride_uyvy, in I420ToUYVY() argument
318 const uint8* src_v, uint8* dst_uyvy, int width) = in I420ToUYVY()
320 if (!src_y || !src_u || !src_v || !dst_uyvy || in I420ToUYVY()
327 dst_uyvy = dst_uyvy + (height - 1) * dst_stride_uyvy; in I420ToUYVY()
[all …]
Dconvert_from_argb.cc585 uint8* dst_uyvy, int dst_stride_uyvy, in ARGBToUYVY() argument
593 const uint8* src_v, uint8* dst_uyvy, int width) = I422ToUYVYRow_C; in ARGBToUYVY()
595 if (!src_argb || !dst_uyvy || in ARGBToUYVY()
602 dst_uyvy = dst_uyvy + (height - 1) * dst_stride_uyvy; in ARGBToUYVY()
679 I422ToUYVYRow(row_y, row_u, row_v, dst_uyvy, width); in ARGBToUYVY()
681 dst_uyvy += dst_stride_uyvy; in ARGBToUYVY()
Drow_neon.cc1307 uint8* dst_uyvy, int width) { in I422ToUYVYRow_NEON() argument
1324 "+r"(dst_uyvy), // %3 in I422ToUYVYRow_NEON()
Drow_neon64.cc1319 uint8* dst_uyvy, int width) { in I422ToUYVYRow_NEON() argument
1336 "+r"(dst_uyvy), // %3 in I422ToUYVYRow_NEON()
/external/libyuv/files/source/
Dconvert.cc796 static void V210ToUYVYRow_C(const uint8* src_v210, uint8* dst_uyvy, int width) { in V210ToUYVYRow_C() argument
799 dst_uyvy[0] = (w >> 2) & 0xff; in V210ToUYVYRow_C()
800 dst_uyvy[1] = (w >> 12) & 0xff; in V210ToUYVYRow_C()
801 dst_uyvy[2] = (w >> 22) & 0xff; in V210ToUYVYRow_C()
804 dst_uyvy[3] = (w >> 2) & 0xff; in V210ToUYVYRow_C()
805 dst_uyvy[4] = (w >> 12) & 0xff; in V210ToUYVYRow_C()
806 dst_uyvy[5] = (w >> 22) & 0xff; in V210ToUYVYRow_C()
809 dst_uyvy[6] = (w >> 2) & 0xff; in V210ToUYVYRow_C()
810 dst_uyvy[7] = (w >> 12) & 0xff; in V210ToUYVYRow_C()
811 dst_uyvy[8] = (w >> 22) & 0xff; in V210ToUYVYRow_C()
[all …]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h182 uint8* dst_uyvy, int dst_stride_uyvy,
Drow.h1640 uint8* dst_uyvy, int width);
1648 uint8* dst_uyvy, int width);
1656 uint8* dst_uyvy, int width);
1664 uint8* dst_uyvy, int width);
1672 uint8* dst_uyvy, int width);