Searched refs:vfd_enc (Results 1 – 5 of 5) sorted by relevance
236 struct video_device *vfd_enc; in mtk_vcodec_probe() local321 vfd_enc = video_device_alloc(); in mtk_vcodec_probe()322 if (!vfd_enc) { in mtk_vcodec_probe()327 vfd_enc->fops = &mtk_vcodec_fops; in mtk_vcodec_probe()328 vfd_enc->ioctl_ops = &mtk_venc_ioctl_ops; in mtk_vcodec_probe()329 vfd_enc->release = video_device_release; in mtk_vcodec_probe()330 vfd_enc->lock = &dev->dev_mutex; in mtk_vcodec_probe()331 vfd_enc->v4l2_dev = &dev->v4l2_dev; in mtk_vcodec_probe()332 vfd_enc->vfl_dir = VFL_DIR_M2M; in mtk_vcodec_probe()333 vfd_enc->device_caps = V4L2_CAP_VIDEO_M2M_MPLANE | in mtk_vcodec_probe()[all …]
342 struct video_device *vfd_enc; member
801 } else if (vdev == dev->vfd_enc) { in s5p_mfc_open()850 } else if (vdev == dev->vfd_enc) { in s5p_mfc_open()877 } else if (vdev == dev->vfd_enc) { in s5p_mfc_open()1369 dev->vfd_enc = vfd; in s5p_mfc_probe()1387 ret = video_register_device(dev->vfd_enc, VFL_TYPE_GRABBER, 0); in s5p_mfc_probe()1393 "encoder registered as /dev/video%d\n", dev->vfd_enc->num); in s5p_mfc_probe()1402 video_device_release(dev->vfd_enc); in s5p_mfc_probe()1444 video_unregister_device(dev->vfd_enc); in s5p_mfc_remove()1446 video_device_release(dev->vfd_enc); in s5p_mfc_remove()
301 struct video_device *vfd_enc; member
1305 strscpy(cap->card, dev->vfd_enc->name, sizeof(cap->card)); in vidioc_querycap()