Home
last modified time | relevance | path

Searched refs:dst_rgb24 (Results 1 – 4 of 4) sorted by relevance

/external/libyuv/files/source/
Drow_neon.cc658 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb24, int pix) { in ARGBToRGB24Row_NEON() argument
667 "+r"(dst_rgb24), // %1 in ARGBToRGB24Row_NEON()
Dconvert_from.cc902 uint8* dst_rgb24, int dst_stride_rgb24, in I420ToRGB24() argument
905 !dst_rgb24 || in I420ToRGB24()
912 dst_rgb24 = dst_rgb24 + (height - 1) * dst_stride_rgb24; in I420ToRGB24()
932 if (IS_ALIGNED(dst_rgb24, 16) && IS_ALIGNED(dst_stride_rgb24, 16)) { in I420ToRGB24()
940 I422ToRGB24Row(src_y, src_u, src_v, dst_rgb24, width); in I420ToRGB24()
941 dst_rgb24 += dst_stride_rgb24; in I420ToRGB24()
Dplanar_functions.cc629 uint8* dst_rgb24, int dst_stride_rgb24, in ARGBToRGB24() argument
631 if (!src_argb || !dst_rgb24 || width <= 0 || height == 0) { in ARGBToRGB24()
648 IS_ALIGNED(dst_rgb24, 16) && IS_ALIGNED(dst_stride_rgb24, 16)) { in ARGBToRGB24()
665 ARGBToRGB24Row(src_argb, dst_rgb24, width); in ARGBToRGB24()
667 dst_rgb24 += dst_stride_rgb24; in ARGBToRGB24()
/external/libyuv/files/include/libyuv/
Dplanar_functions.h105 uint8* dst_rgb24, int dst_stride_rgb24,