Lines Matching refs:dst_v

36                       uint8* dst_v, int dst_stride_v,  in I4xxToI420()  argument
54 dst_v, dst_stride_v, dst_uv_width, dst_uv_height, in I4xxToI420()
68 uint8* dst_v, int dst_stride_v, in I420Copy() argument
73 !dst_y || !dst_u || !dst_v || in I420Copy()
94 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight); in I420Copy()
106 uint8* dst_v, int dst_stride_v, in I422ToI420() argument
114 dst_v, dst_stride_v, in I422ToI420()
127 uint8* dst_v, int dst_stride_v, in I444ToI420() argument
134 dst_v, dst_stride_v, in I444ToI420()
147 uint8* dst_v, int dst_stride_v, in I411ToI420() argument
155 dst_v, dst_stride_v, in I411ToI420()
165 uint8* dst_v, int dst_stride_v, in I400ToI420() argument
169 if (!src_y || !dst_y || !dst_u || !dst_v || in I400ToI420()
182 SetPlane(dst_v, dst_stride_v, halfwidth, halfheight, 128); in I400ToI420()
243 uint8* dst_v, int dst_stride_v, in X420ToI420() argument
248 void (*SplitUVRow)(const uint8* src_uv, uint8* dst_u, uint8* dst_v, int pix) = in X420ToI420()
251 !dst_y || !dst_u || !dst_v || in X420ToI420()
261 dst_v = dst_v + (halfheight - 1) * dst_stride_v; in X420ToI420()
310 IS_ALIGNED(dst_v, 4) && IS_ALIGNED(dst_stride_v, 4)) { in X420ToI420()
329 SplitUVRow(src_uv, dst_u, dst_v, halfwidth); in X420ToI420()
331 dst_v += dst_stride_v; in X420ToI420()
343 uint8* dst_v, int dst_stride_v, in NV12ToI420() argument
349 dst_v, dst_stride_v, in NV12ToI420()
359 uint8* dst_v, int dst_stride_v, in NV21ToI420() argument
364 dst_v, dst_stride_v, in NV21ToI420()
374 uint8* dst_v, int dst_stride_v, in M420ToI420() argument
380 dst_v, dst_stride_v, in M420ToI420()
389 uint8* dst_v, int dst_stride_v, in YUY2ToI420() argument
393 uint8* dst_u, uint8* dst_v, int pix) = YUY2ToUVRow_C; in YUY2ToI420()
434 YUY2ToUVRow(src_yuy2, src_stride_yuy2, dst_u, dst_v, width); in YUY2ToI420()
440 dst_v += dst_stride_v; in YUY2ToI420()
443 YUY2ToUVRow(src_yuy2, 0, dst_u, dst_v, width); in YUY2ToI420()
454 uint8* dst_v, int dst_stride_v, in UYVYToI420() argument
458 uint8* dst_u, uint8* dst_v, int pix) = UYVYToUVRow_C; in UYVYToI420()
499 UYVYToUVRow(src_uyvy, src_stride_uyvy, dst_u, dst_v, width); in UYVYToI420()
505 dst_v += dst_stride_v; in UYVYToI420()
508 UYVYToUVRow(src_uyvy, 0, dst_u, dst_v, width); in UYVYToI420()
519 uint8* dst_v, int dst_stride_v, in ARGBToI420() argument
523 uint8* dst_u, uint8* dst_v, int width) = ARGBToUVRow_C; in ARGBToI420()
527 !dst_y || !dst_u || !dst_v || in ARGBToI420()
575 ARGBToUVRow(src_argb, src_stride_argb, dst_u, dst_v, width); in ARGBToI420()
581 dst_v += dst_stride_v; in ARGBToI420()
584 ARGBToUVRow(src_argb, 0, dst_u, dst_v, width); in ARGBToI420()
595 uint8* dst_v, int dst_stride_v, in BGRAToI420() argument
599 uint8* dst_u, uint8* dst_v, int width) = BGRAToUVRow_C; in BGRAToI420()
603 !dst_y || !dst_u || !dst_v || in BGRAToI420()
641 BGRAToUVRow(src_bgra, src_stride_bgra, dst_u, dst_v, width); in BGRAToI420()
647 dst_v += dst_stride_v; in BGRAToI420()
650 BGRAToUVRow(src_bgra, 0, dst_u, dst_v, width); in BGRAToI420()
661 uint8* dst_v, int dst_stride_v, in ABGRToI420() argument
665 uint8* dst_u, uint8* dst_v, int width) = ABGRToUVRow_C; in ABGRToI420()
669 !dst_y || !dst_u || !dst_v || in ABGRToI420()
707 ABGRToUVRow(src_abgr, src_stride_abgr, dst_u, dst_v, width); in ABGRToI420()
713 dst_v += dst_stride_v; in ABGRToI420()
716 ABGRToUVRow(src_abgr, 0, dst_u, dst_v, width); in ABGRToI420()
727 uint8* dst_v, int dst_stride_v, in RGBAToI420() argument
731 uint8* dst_u, uint8* dst_v, int width) = RGBAToUVRow_C; in RGBAToI420()
735 !dst_y || !dst_u || !dst_v || in RGBAToI420()
773 RGBAToUVRow(src_rgba, src_stride_rgba, dst_u, dst_v, width); in RGBAToI420()
779 dst_v += dst_stride_v; in RGBAToI420()
782 RGBAToUVRow(src_rgba, 0, dst_u, dst_v, width); in RGBAToI420()
793 uint8* dst_v, int dst_stride_v, in RGB24ToI420() argument
798 uint8* dst_u, uint8* dst_v, int width) = RGB24ToUVRow_C; in RGB24ToI420()
805 uint8* dst_u, uint8* dst_v, int width) = ARGBToUVRow_C; in RGB24ToI420()
809 if (!src_rgb24 || !dst_y || !dst_u || !dst_v || in RGB24ToI420()
870 RGB24ToUVRow(src_rgb24, src_stride_rgb24, dst_u, dst_v, width); in RGB24ToI420()
876 ARGBToUVRow(row, kRowSize, dst_u, dst_v, width); in RGB24ToI420()
883 dst_v += dst_stride_v; in RGB24ToI420()
887 RGB24ToUVRow(src_rgb24, 0, dst_u, dst_v, width); in RGB24ToI420()
891 ARGBToUVRow(row, 0, dst_u, dst_v, width); in RGB24ToI420()
907 uint8* dst_v, int dst_stride_v, in RAWToI420() argument
912 uint8* dst_u, uint8* dst_v, int width) = RAWToUVRow_C; in RAWToI420()
919 uint8* dst_u, uint8* dst_v, int width) = ARGBToUVRow_C; in RAWToI420()
923 if (!src_raw || !dst_y || !dst_u || !dst_v || in RAWToI420()
984 RAWToUVRow(src_raw, src_stride_raw, dst_u, dst_v, width); in RAWToI420()
990 ARGBToUVRow(row, kRowSize, dst_u, dst_v, width); in RAWToI420()
997 dst_v += dst_stride_v; in RAWToI420()
1001 RAWToUVRow(src_raw, 0, dst_u, dst_v, width); in RAWToI420()
1005 ARGBToUVRow(row, 0, dst_u, dst_v, width); in RAWToI420()
1021 uint8* dst_v, int dst_stride_v, in RGB565ToI420() argument
1026 uint8* dst_u, uint8* dst_v, int width) = RGB565ToUVRow_C; in RGB565ToI420()
1033 uint8* dst_u, uint8* dst_v, int width) = ARGBToUVRow_C; in RGB565ToI420()
1037 if (!src_rgb565 || !dst_y || !dst_u || !dst_v || in RGB565ToI420()
1106 RGB565ToUVRow(src_rgb565, src_stride_rgb565, dst_u, dst_v, width); in RGB565ToI420()
1112 ARGBToUVRow(row, kRowSize, dst_u, dst_v, width); in RGB565ToI420()
1119 dst_v += dst_stride_v; in RGB565ToI420()
1123 RGB565ToUVRow(src_rgb565, 0, dst_u, dst_v, width); in RGB565ToI420()
1127 ARGBToUVRow(row, 0, dst_u, dst_v, width); in RGB565ToI420()
1143 uint8* dst_v, int dst_stride_v, in ARGB1555ToI420() argument
1148 uint8* dst_u, uint8* dst_v, int width) = ARGB1555ToUVRow_C; in ARGB1555ToI420()
1155 uint8* dst_u, uint8* dst_v, int width) = ARGBToUVRow_C; in ARGB1555ToI420()
1159 if (!src_argb1555 || !dst_y || !dst_u || !dst_v || in ARGB1555ToI420()
1228 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width); in ARGB1555ToI420()
1236 ARGBToUVRow(row, kRowSize, dst_u, dst_v, width); in ARGB1555ToI420()
1243 dst_v += dst_stride_v; in ARGB1555ToI420()
1247 ARGB1555ToUVRow(src_argb1555, 0, dst_u, dst_v, width); in ARGB1555ToI420()
1251 ARGBToUVRow(row, 0, dst_u, dst_v, width); in ARGB1555ToI420()
1267 uint8* dst_v, int dst_stride_v, in ARGB4444ToI420() argument
1272 uint8* dst_u, uint8* dst_v, int width) = ARGB4444ToUVRow_C; in ARGB4444ToI420()
1279 uint8* dst_u, uint8* dst_v, int width) = ARGBToUVRow_C; in ARGB4444ToI420()
1283 if (!src_argb4444 || !dst_y || !dst_u || !dst_v || in ARGB4444ToI420()
1352 ARGB4444ToUVRow(src_argb4444, src_stride_argb4444, dst_u, dst_v, width); in ARGB4444ToI420()
1360 ARGBToUVRow(row, kRowSize, dst_u, dst_v, width); in ARGB4444ToI420()
1367 dst_v += dst_stride_v; in ARGB4444ToI420()
1371 ARGB4444ToUVRow(src_argb4444, 0, dst_u, dst_v, width); in ARGB4444ToI420()
1375 ARGBToUVRow(row, 0, dst_u, dst_v, width); in ARGB4444ToI420()