Home
last modified time | relevance | path

Searched refs:dst_vu (Results 1 – 21 of 21) sorted by relevance

/external/libyuv/files/include/libyuv/
Dconvert.h55 uint8_t* dst_vu,
87 uint8_t* dst_vu,
166 uint8_t* dst_vu,
246 uint8_t* dst_vu,
444 uint8_t* dst_vu,
Dconvert_from_argb.h248 uint8_t* dst_vu,
259 uint8_t* dst_vu,
Dconvert_from.h105 uint8_t* dst_vu,
Drow.h3375 void UVToVURow_C(const uint8_t* src_uv, uint8_t* dst_vu, int width);
3376 void UVToVURow_NEON(const uint8_t* src_uv, uint8_t* dst_vu, int width);
3377 void UVToVURow_Any_NEON(const uint8_t* src_uv, uint8_t* dst_vu, int width);
3385 uint8_t* dst_vu,
3394 uint8_t* dst_vu,
3403 uint8_t* dst_vu,
/external/libyuv/files/source/
Dconvert.cc228 uint8_t* dst_vu, in I422ToNV21() argument
253 MergeUVPlane(plane_v, halfwidth, plane_u, halfwidth, dst_vu, dst_stride_vu, in I422ToNV21()
273 uint8_t* dst_vu, in I422ToNV21() argument
285 if (!src_u || !src_v || !dst_vu || width <= 0 || height == 0) { in I422ToNV21()
393 InterpolateRow(dst_vu, row_vu_0, awidth, awidth, 128); in I422ToNV21()
396 dst_vu += dst_stride_vu; in I422ToNV21()
399 MergeUVRow(src_v, src_u, dst_vu, halfwidth); in I422ToNV21()
439 uint8_t* dst_vu, in I444ToNV21() argument
463 MergeUVPlane(plane_v, halfwidth, plane_u, halfwidth, dst_vu, dst_stride_vu, in I444ToNV21()
507 uint8_t* dst_vu, in I400ToNV21() argument
[all …]
Drow_neon.cc2824 uint8_t* dst_vu, in AYUVToVURow_NEON() argument
2847 "+r"(dst_vu), // %2 in AYUVToVURow_NEON()
2871 void UVToVURow_NEON(const uint8_t* src_uv, uint8_t* dst_vu, int width) { in UVToVURow_NEON() argument
2881 "+r"(dst_vu), // %1 in UVToVURow_NEON()
Drow_neon64.cc2931 uint8_t* dst_vu, in AYUVToVURow_NEON() argument
2951 "+r"(dst_vu), // %2 in AYUVToVURow_NEON()
3016 void UVToVURow_NEON(const uint8_t* src_uv, uint8_t* dst_vu, int width) { in UVToVURow_NEON() argument
3025 "+r"(dst_vu), // %1 in UVToVURow_NEON()
Dconvert_from_argb.cc420 uint8_t* dst_vu, in ARGBToNV21() argument
432 uint8_t* dst_vu, int width) = MergeUVRow_C; in ARGBToNV21()
433 if (!src_argb || !dst_y || !dst_vu || width <= 0 || height == 0) { in ARGBToNV21()
558 MergeUVRow_(row_v, row_u, dst_vu, halfwidth); in ARGBToNV21()
563 dst_vu += dst_stride_vu; in ARGBToNV21()
567 MergeUVRow_(row_v, row_u, dst_vu, halfwidth); in ARGBToNV21()
Dconvert_jpeg.cc256 uint8_t* dst_vu, in MJPGToNV21() argument
277 NV21Buffers bufs = {dst_y, dst_stride_y, dst_vu, in MJPGToNV21()
Dconvert_from.cc528 uint8_t* dst_vu, in I420ToNV21() argument
533 src_stride_u, dst_y, dst_stride_y, dst_vu, dst_stride_vu, in I420ToNV21()
1432 uint8_t* dst_vu = dst_sample + width * height; in ConvertFromI420() local
1434 dst_sample_stride ? dst_sample_stride : width, dst_vu, in ConvertFromI420()
Drow_common.cc3288 uint8_t* dst_vu, in AYUVToVURow_C() argument
3293 dst_vu[0] = (src_ayuv[0] + src_ayuv[4] + src_ayuv[src_stride_ayuv + 0] + in AYUVToVURow_C()
3296 dst_vu[1] = (src_ayuv[1] + src_ayuv[5] + src_ayuv[src_stride_ayuv + 1] + in AYUVToVURow_C()
3300 dst_vu += 2; in AYUVToVURow_C()
3303 dst_vu[0] = (src_ayuv[0] + src_ayuv[0] + src_ayuv[src_stride_ayuv + 0] + in AYUVToVURow_C()
3306 dst_vu[1] = (src_ayuv[1] + src_ayuv[1] + src_ayuv[src_stride_ayuv + 1] + in AYUVToVURow_C()
3322 void UVToVURow_C(const uint8_t* src_uv, uint8_t* dst_vu, int width) { in UVToVURow_C() argument
3327 dst_vu[0] = v; in UVToVURow_C()
3328 dst_vu[1] = u; in UVToVURow_C()
3330 dst_vu += 2; in UVToVURow_C()
Drow_any.cc1398 void NAMEANY(const uint8_t* src_ptr, int src_stride_ptr, uint8_t* dst_vu, \
1405 ANY_SIMD(src_ptr, src_stride_ptr, dst_vu, n); \
1417 memcpy(dst_vu + (n >> 1) * 2, temp + 256, SS(r, 1) * 2); \
Dplanar_functions.cc519 void (*UVToVURow)(const uint8_t* src_uv, uint8_t* dst_vu, int width) = in NV21ToNV12()
/external/libaom/libaom/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h164 uint8* dst_vu, int dst_stride_vu,
171 uint8* dst_vu, int dst_stride_vu,
Dconvert_from.h75 uint8* dst_vu, int dst_stride_vu,
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h248 uint8_t* dst_vu,
259 uint8_t* dst_vu,
Dconvert_from.h105 uint8_t* dst_vu,
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from_argb.cc363 uint8_t* dst_vu, in ARGBToNV21() argument
375 uint8_t* dst_vu, int width) = MergeUVRow_C; in ARGBToNV21()
376 if (!src_argb || !dst_y || !dst_vu || width <= 0 || height == 0) { in ARGBToNV21()
476 MergeUVRow_(row_v, row_u, dst_vu, halfwidth); in ARGBToNV21()
481 dst_vu += dst_stride_vu; in ARGBToNV21()
485 MergeUVRow_(row_v, row_u, dst_vu, halfwidth); in ARGBToNV21()
Dconvert_from.cc504 uint8_t* dst_vu, in I420ToNV21() argument
509 src_stride_u, dst_y, dst_stride_y, dst_vu, dst_stride_vu, in I420ToNV21()
1356 uint8_t* dst_vu = dst_sample + width * height; in ConvertFromI420() local
1358 dst_sample_stride ? dst_sample_stride : width, dst_vu, in ConvertFromI420()
/external/libaom/libaom/third_party/libyuv/source/
Dconvert_from.cc443 uint8* dst_vu, int dst_stride_vu, in I420ToNV21() argument
449 dst_vu, dst_stride_vu, in I420ToNV21()
1246 uint8* dst_vu = dst_sample + width * height; in ConvertFromI420() local
1252 dst_vu, in ConvertFromI420()
/external/libyuv/files/unit_test/
Dconvert_test.cc293 uint8_t* dst_vu, in I400ToNV21() argument
297 return I400ToNV21(src_y, src_stride_y, dst_y, dst_stride_y, dst_vu, in I400ToNV21()
1840 align_buffer_page_end(dst_vu, half_width * half_height * 2); in TEST_F()
1843 ret = MJPGToNV21(kTest2Jpg, kTest2JpgLen, dst_y, width, dst_vu, in TEST_F()
1871 EXPECT_EQ(dst_vu[i], dst3_vu[i]); in TEST_F()
1872 EXPECT_EQ(dst_vu[i], dst3_vu[i]); in TEST_F()
1883 free_aligned_buffer_page_end(dst_vu); in TEST_F()