• Home
  • Raw
  • Download

Lines Matching refs:src_yuy2

492                const uint8* src_yuy2, int src_stride_yuy2,  in Q420ToI420()  argument
497 if (!src_y || !src_yuy2 || in Q420ToI420()
533 void (*YUY2ToUV422Row)(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, in Q420ToI420()
535 void (*YUY2ToYRow)(const uint8* src_yuy2, uint8* dst_y, int pix) = in Q420ToI420()
546 if (IS_ALIGNED(src_yuy2, 16) && IS_ALIGNED(src_stride_yuy2, 16)) { in Q420ToI420()
574 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in Q420ToI420()
575 YUY2ToYRow(src_yuy2, dst_y, width); in Q420ToI420()
576 src_yuy2 += src_stride_yuy2; in Q420ToI420()
583 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in Q420ToI420()
612 static bool TestReadSafe(const uint8* src_yuy2, int src_stride_yuy2, in TestReadSafe() argument
629 src_yuy2 += (height - 1) * src_stride_yuy2; in TestReadSafe()
631 uintptr_t last_adr = (uintptr_t)(src_yuy2) + width * bpp - 1; in TestReadSafe()
643 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI420() argument
651 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI420()
654 void (*YUY2ToUVRow)(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI420()
656 void (*YUY2ToYRow)(const uint8* src_yuy2, in YUY2ToI420()
669 if (IS_ALIGNED(src_yuy2, 16) && IS_ALIGNED(src_stride_yuy2, 16)) { in YUY2ToI420()
693 YUY2ToUVRow(src_yuy2, src_stride_yuy2, dst_u, dst_v, width); in YUY2ToI420()
694 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI420()
695 YUY2ToYRow(src_yuy2 + src_stride_yuy2, dst_y + dst_stride_y, width); in YUY2ToI420()
696 src_yuy2 += src_stride_yuy2 * 2; in YUY2ToI420()
702 YUY2ToUVRow(src_yuy2, 0, dst_u, dst_v, width); in YUY2ToI420()
703 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI420()