Home
last modified time | relevance | path

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

/linux/drivers/media/platform/mediatek/vcodec/decoder/
H A Dmtk_vcodec_dec_drv.c357 struct video_device *vfd_dec; in mtk_vcodec_probe() local
424 vfd_dec = video_device_alloc(); in mtk_vcodec_probe()
425 if (!vfd_dec) { in mtk_vcodec_probe()
430 vfd_dec->fops = &mtk_vcodec_fops; in mtk_vcodec_probe()
431 vfd_dec->ioctl_ops = &mtk_vdec_ioctl_ops; in mtk_vcodec_probe()
432 vfd_dec->release = video_device_release; in mtk_vcodec_probe()
433 vfd_dec->lock = &dev->dev_mutex; in mtk_vcodec_probe()
434 vfd_dec->v4l2_dev = &dev->v4l2_dev; in mtk_vcodec_probe()
435 vfd_dec->vfl_dir = VFL_DIR_M2M; in mtk_vcodec_probe()
436 vfd_dec->device_caps = V4L2_CAP_VIDEO_M2M_MPLANE | in mtk_vcodec_probe()
[all …]
/linux/drivers/media/platform/samsung/s5p-mfc/
H A Ds5p_mfc.c825 if (vdev == dev->vfd_dec) { in s5p_mfc_open()
881 if (vdev == dev->vfd_dec) { in s5p_mfc_open()
908 if (vdev == dev->vfd_dec) { in s5p_mfc_open()
1386 dev->vfd_dec = vfd; in s5p_mfc_probe()
1414 ret = video_register_device(dev->vfd_dec, VFL_TYPE_VIDEO, 0); in s5p_mfc_probe()
1420 "decoder registered as /dev/video%d\n", dev->vfd_dec->num); in s5p_mfc_probe()
1435 video_unregister_device(dev->vfd_dec); in s5p_mfc_probe()
1436 dev->vfd_dec = NULL; in s5p_mfc_probe()
1440 video_device_release(dev->vfd_dec); in s5p_mfc_probe()
1481 video_unregister_device(dev->vfd_dec); in s5p_mfc_remove()
H A Ds5p_mfc_common.h307 struct video_device *vfd_dec; member
H A Ds5p_mfc_dec.c304 strscpy(cap->card, dev->vfd_dec->name, sizeof(cap->card)); in vidioc_querycap()