• Home
  • Raw
  • Download

Lines Matching refs:dst_v

36              uint8* dst_v, int dst_stride_v,  in I420Copy()  argument
39 !dst_y || !dst_u || !dst_v || in I420Copy()
61 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight); in I420Copy()
131 uint8* dst_v, int dst_stride_v, in I422ToI420() argument
134 !dst_y || !dst_u || !dst_v || in I422ToI420()
157 IS_ALIGNED(dst_v, 16) && IS_ALIGNED(dst_stride_v, 16)) { in I422ToI420()
180 HalfRow(src_v, src_stride_v, dst_v, halfwidth); in I422ToI420()
182 dst_v += dst_stride_v; in I422ToI420()
185 HalfRow(src_v, 0, dst_v, halfwidth); in I422ToI420()
211 uint8* dst_v, int dst_stride_v, in I444ToI420() argument
214 !dst_y || !dst_u || !dst_v || in I444ToI420()
242 IS_ALIGNED(dst_v, 16) && IS_ALIGNED(dst_stride_v, 16)) { in I444ToI420()
265 ScaleRowDown2(src_v, src_stride_v, dst_v, halfwidth); in I444ToI420()
267 dst_v += dst_stride_v; in I444ToI420()
270 ScaleRowDown2(src_v, 0, dst_v, halfwidth); in I444ToI420()
289 uint8* dst_v, int dst_stride_v, in I411ToI420() argument
292 !dst_y || !dst_u || !dst_v || in I411ToI420()
301 dst_v = dst_v + (height - 1) * dst_stride_v; in I411ToI420()
328 src_v, dst_v); in I411ToI420()
337 uint8* dst_v, int dst_stride_v, in I400ToI420() argument
339 if (!src_y || !dst_y || !dst_u || !dst_v || in I400ToI420()
353 SetPlane(dst_v, dst_stride_v, halfwidth, halfheight, 128); in I400ToI420()
405 uint8* dst_v, int dst_stride_v, in X420ToI420() argument
408 !dst_y || !dst_u || !dst_v || in X420ToI420()
418 dst_v = dst_v + (halfheight - 1) * dst_stride_v; in X420ToI420()
425 void (*SplitUV)(const uint8* src_uv, uint8* dst_u, uint8* dst_v, int pix) = in X420ToI420()
436 IS_ALIGNED(dst_v, 16) && IS_ALIGNED(dst_stride_v, 16)) { in X420ToI420()
449 SplitUV(src_uv, dst_u, dst_v, halfwidth); in X420ToI420()
451 dst_v += dst_stride_v; in X420ToI420()
463 uint8* dst_v, int dst_stride_v, in NV12ToI420() argument
469 dst_v, dst_stride_v, in NV12ToI420()
478 uint8* dst_v, int dst_stride_v, in M420ToI420() argument
484 dst_v, dst_stride_v, in M420ToI420()
495 uint8* dst_v, int dst_stride_v, in Q420ToI420() argument
498 !dst_y || !dst_u || !dst_v || in Q420ToI420()
508 dst_v = dst_v + (halfheight - 1) * dst_stride_v; in Q420ToI420()
533 void (*YUY2ToUV422Row)(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, in Q420ToI420()
574 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in Q420ToI420()
579 dst_v += dst_stride_v; in Q420ToI420()
583 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in Q420ToI420()
646 uint8* dst_v, int dst_stride_v, in YUY2ToI420() argument
655 uint8* dst_u, uint8* dst_v, int pix); in YUY2ToI420()
693 YUY2ToUVRow(src_yuy2, src_stride_yuy2, dst_u, dst_v, width); in YUY2ToI420()
699 dst_v += dst_stride_v; in YUY2ToI420()
702 YUY2ToUVRow(src_yuy2, 0, dst_u, dst_v, width); in YUY2ToI420()
713 uint8* dst_v, int dst_stride_v, in UYVYToI420() argument
722 uint8* dst_u, uint8* dst_v, int pix); in UYVYToI420()
760 UYVYToUVRow(src_uyvy, src_stride_uyvy, dst_u, dst_v, width); in UYVYToI420()
766 dst_v += dst_stride_v; in UYVYToI420()
769 UYVYToUVRow(src_uyvy, 0, dst_u, dst_v, width); in UYVYToI420()
830 uint8* dst_v, int dst_stride_v, in V210ToI420() argument
834 } else if (!src_v210 || !dst_y || !dst_u || !dst_v || in V210ToI420()
849 uint8* dst_u, uint8* dst_v, int pix); in V210ToI420()
909 UYVYToUVRow(row, kMaxStride, dst_u, dst_v, width); in V210ToI420()
915 dst_v += dst_stride_v; in V210ToI420()
919 UYVYToUVRow(row, 0, dst_u, dst_v, width); in V210ToI420()
929 uint8* dst_v, int dst_stride_v, in ARGBToI420() argument
932 !dst_y || !dst_u || !dst_v || in ARGBToI420()
944 uint8* dst_u, uint8* dst_v, int width); in ARGBToI420()
968 ARGBToUVRow(src_argb, src_stride_argb, dst_u, dst_v, width); in ARGBToI420()
974 dst_v += dst_stride_v; in ARGBToI420()
977 ARGBToUVRow(src_argb, 0, dst_u, dst_v, width); in ARGBToI420()
987 uint8* dst_v, int dst_stride_v, in BGRAToI420() argument
990 !dst_y || !dst_u || !dst_v || in BGRAToI420()
1002 uint8* dst_u, uint8* dst_v, int width); in BGRAToI420()
1026 BGRAToUVRow(src_bgra, src_stride_bgra, dst_u, dst_v, width); in BGRAToI420()
1032 dst_v += dst_stride_v; in BGRAToI420()
1035 BGRAToUVRow(src_bgra, 0, dst_u, dst_v, width); in BGRAToI420()
1045 uint8* dst_v, int dst_stride_v, in ABGRToI420() argument
1048 !dst_y || !dst_u || !dst_v || in ABGRToI420()
1060 uint8* dst_u, uint8* dst_v, int width); in ABGRToI420()
1084 ABGRToUVRow(src_abgr, src_stride_abgr, dst_u, dst_v, width); in ABGRToI420()
1090 dst_v += dst_stride_v; in ABGRToI420()
1093 ABGRToUVRow(src_abgr, 0, dst_u, dst_v, width); in ABGRToI420()
1103 uint8* dst_v, int dst_stride_v, in RGBAToI420() argument
1106 !dst_y || !dst_u || !dst_v || in RGBAToI420()
1118 uint8* dst_u, uint8* dst_v, int width); in RGBAToI420()
1142 RGBAToUVRow(src_rgba, src_stride_rgba, dst_u, dst_v, width); in RGBAToI420()
1148 dst_v += dst_stride_v; in RGBAToI420()
1151 RGBAToUVRow(src_rgba, 0, dst_u, dst_v, width); in RGBAToI420()
1161 uint8* dst_v, int dst_stride_v, in RGB24ToI420() argument
1166 !dst_y || !dst_u || !dst_v || in RGB24ToI420()
1189 uint8* dst_u, uint8* dst_v, int width); in RGB24ToI420()
1212 ARGBToUVRow(row, kMaxStride, dst_u, dst_v, width); in RGB24ToI420()
1218 dst_v += dst_stride_v; in RGB24ToI420()
1222 ARGBToUVRow(row, 0, dst_u, dst_v, width); in RGB24ToI420()
1232 uint8* dst_v, int dst_stride_v, in RAWToI420() argument
1237 !dst_y || !dst_u || !dst_v || in RAWToI420()
1260 uint8* dst_u, uint8* dst_v, int width); in RAWToI420()
1283 ARGBToUVRow(row, kMaxStride, dst_u, dst_v, width); in RAWToI420()
1289 dst_v += dst_stride_v; in RAWToI420()
1293 ARGBToUVRow(row, 0, dst_u, dst_v, width); in RAWToI420()
1303 uint8* dst_v, int dst_stride_v, in RGB565ToI420() argument
1308 !dst_y || !dst_u || !dst_v || in RGB565ToI420()
1331 uint8* dst_u, uint8* dst_v, int width); in RGB565ToI420()
1354 ARGBToUVRow(row, kMaxStride, dst_u, dst_v, width); in RGB565ToI420()
1360 dst_v += dst_stride_v; in RGB565ToI420()
1364 ARGBToUVRow(row, 0, dst_u, dst_v, width); in RGB565ToI420()
1374 uint8* dst_v, int dst_stride_v, in ARGB1555ToI420() argument
1379 !dst_y || !dst_u || !dst_v || in ARGB1555ToI420()
1402 uint8* dst_u, uint8* dst_v, int width); in ARGB1555ToI420()
1426 ARGBToUVRow(row, kMaxStride, dst_u, dst_v, width); in ARGB1555ToI420()
1432 dst_v += dst_stride_v; in ARGB1555ToI420()
1436 ARGBToUVRow(row, 0, dst_u, dst_v, width); in ARGB1555ToI420()
1446 uint8* dst_v, int dst_stride_v, in ARGB4444ToI420() argument
1451 !dst_y || !dst_u || !dst_v || in ARGB4444ToI420()
1474 uint8* dst_u, uint8* dst_v, int width); in ARGB4444ToI420()
1498 ARGBToUVRow(row, kMaxStride, dst_u, dst_v, width); in ARGB4444ToI420()
1504 dst_v += dst_stride_v; in ARGB4444ToI420()
1508 ARGBToUVRow(row, 0, dst_u, dst_v, width); in ARGB4444ToI420()