Home
last modified time | relevance | path

Searched refs:vfd_dec (Results 1 – 5 of 5) sorted by relevance

/Linux-v5.4/drivers/media/platform/mtk-vcodec/
Dmtk_vcodec_dec_drv.c229 struct video_device *vfd_dec; in mtk_vcodec_probe() local
303 vfd_dec = video_device_alloc(); in mtk_vcodec_probe()
304 if (!vfd_dec) { in mtk_vcodec_probe()
309 vfd_dec->fops = &mtk_vcodec_fops; in mtk_vcodec_probe()
310 vfd_dec->ioctl_ops = &mtk_vdec_ioctl_ops; in mtk_vcodec_probe()
311 vfd_dec->release = video_device_release; in mtk_vcodec_probe()
312 vfd_dec->lock = &dev->dev_mutex; in mtk_vcodec_probe()
313 vfd_dec->v4l2_dev = &dev->v4l2_dev; in mtk_vcodec_probe()
314 vfd_dec->vfl_dir = VFL_DIR_M2M; in mtk_vcodec_probe()
315 vfd_dec->device_caps = V4L2_CAP_VIDEO_M2M_MPLANE | in mtk_vcodec_probe()
[all …]
Dmtk_vcodec_drv.h341 struct video_device *vfd_dec; member
/Linux-v5.4/drivers/media/platform/s5p-mfc/
Ds5p_mfc.c791 if (vdev == dev->vfd_dec) { in s5p_mfc_open()
847 if (vdev == dev->vfd_dec) { in s5p_mfc_open()
874 if (vdev == dev->vfd_dec) { in s5p_mfc_open()
1351 dev->vfd_dec = vfd; in s5p_mfc_probe()
1379 ret = video_register_device(dev->vfd_dec, VFL_TYPE_GRABBER, 0); in s5p_mfc_probe()
1385 "decoder registered as /dev/video%d\n", dev->vfd_dec->num); in s5p_mfc_probe()
1400 video_unregister_device(dev->vfd_dec); in s5p_mfc_probe()
1404 video_device_release(dev->vfd_dec); in s5p_mfc_probe()
1445 video_unregister_device(dev->vfd_dec); in s5p_mfc_remove()
1447 video_device_release(dev->vfd_dec); in s5p_mfc_remove()
Ds5p_mfc_common.h300 struct video_device *vfd_dec; member
Ds5p_mfc_dec.c257 strscpy(cap->card, dev->vfd_dec->name, sizeof(cap->card)); in vidioc_querycap()