Lines Matching refs:m_frmDst

68     memset(&m_frmDst, 0, sizeof(m_frmDst));  in CScalerV4L2()
71 m_frmDst.fdAcquireFence = -1; in CScalerV4L2()
74 m_frmDst.name = "capture"; in CScalerV4L2()
77 m_frmDst.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE; in CScalerV4L2()
106 if (!ResetDevice(m_frmDst)) { in Stop()
118 m_frmDst.crop.width, m_frmDst.crop.height, in Run()
345 return DevSetFormat(m_frmDst); in DevSetFormat()
549 if (m_frmSrc.color_format != m_frmDst.color_format) { in RunSWScaling()
561 m_frmDst.crop.width, m_frmDst.crop.height); in RunSWScaling()
571 m_frmDst.out_num_planes = 1; in RunSWScaling()
572 m_frmDst.out_plane_size[0] = m_frmDst.width * m_frmDst.height * 2; in RunSWScaling()
577 if (!GetBuffer(m_frmDst, dst)) { in RunSWScaling()
587 m_frmDst.out_num_planes = 2; in RunSWScaling()
589 m_frmDst.out_plane_size[0] = m_frmDst.width * m_frmDst.height; in RunSWScaling()
591 m_frmDst.out_plane_size[1] = m_frmDst.out_plane_size[0] / 2; in RunSWScaling()
596 if (!GetBuffer(m_frmDst, dst)) { in RunSWScaling()
606 m_frmDst.out_num_planes = 1; in RunSWScaling()
608 m_frmDst.out_plane_size[0] = m_frmDst.width * m_frmDst.height; in RunSWScaling()
610 m_frmDst.out_plane_size[0] += m_frmDst.out_plane_size[0] / 2; in RunSWScaling()
615 if (!GetBuffer(m_frmDst, dst)) { in RunSWScaling()
621 dst[1] = dst[0] + m_frmDst.width * m_frmDst.height; in RunSWScaling()
634 PutBuffer(m_frmDst, dst); in RunSWScaling()
641 swsc->SetDstRect(m_frmDst.crop.left, m_frmDst.crop.top, in RunSWScaling()
642 m_frmDst.crop.width, m_frmDst.crop.height, m_frmDst.width); in RunSWScaling()
649 PutBuffer(m_frmDst, dst); in RunSWScaling()