Lines Matching refs:vfh

296 isp_video_check_format(struct isp_video *video, struct isp_video_fh *vfh)  in isp_video_check_format()  argument
301 memcpy(&format, &vfh->format, sizeof(format)); in isp_video_check_format()
306 if (vfh->format.fmt.pix.pixelformat != format.fmt.pix.pixelformat || in isp_video_check_format()
307 vfh->format.fmt.pix.height != format.fmt.pix.height || in isp_video_check_format()
308 vfh->format.fmt.pix.width != format.fmt.pix.width || in isp_video_check_format()
309 vfh->format.fmt.pix.bytesperline != format.fmt.pix.bytesperline || in isp_video_check_format()
310 vfh->format.fmt.pix.sizeimage != format.fmt.pix.sizeimage || in isp_video_check_format()
311 vfh->format.fmt.pix.field != format.fmt.pix.field) in isp_video_check_format()
325 struct isp_video_fh *vfh = vb2_get_drv_priv(queue); in isp_video_queue_setup() local
326 struct isp_video *video = vfh->video; in isp_video_queue_setup()
330 sizes[0] = vfh->format.fmt.pix.sizeimage; in isp_video_queue_setup()
342 struct isp_video_fh *vfh = vb2_get_drv_priv(buf->vb2_queue); in isp_video_buffer_prepare() local
344 struct isp_video *video = vfh->video; in isp_video_buffer_prepare()
364 vfh->format.fmt.pix.sizeimage); in isp_video_buffer_prepare()
382 struct isp_video_fh *vfh = vb2_get_drv_priv(buf->vb2_queue); in isp_video_buffer_queue() local
384 struct isp_video *video = vfh->video; in isp_video_buffer_queue()
453 struct isp_video_fh *vfh = vb2_get_drv_priv(queue); in isp_video_start_streaming() local
454 struct isp_video *video = vfh->video; in isp_video_start_streaming()
660 struct isp_video_fh *vfh = to_isp_video_fh(fh); in isp_video_get_format() local
667 *format = vfh->format; in isp_video_get_format()
676 struct isp_video_fh *vfh = to_isp_video_fh(fh); in isp_video_set_format() local
725 vfh->format = *format; in isp_video_set_format()
861 struct isp_video_fh *vfh = to_isp_video_fh(fh); in isp_video_get_param() local
871 a->parm.output.timeperframe = vfh->timeperframe; in isp_video_get_param()
879 struct isp_video_fh *vfh = to_isp_video_fh(fh); in isp_video_set_param() local
889 vfh->timeperframe = a->parm.output.timeperframe; in isp_video_set_param()
897 struct isp_video_fh *vfh = to_isp_video_fh(fh); in isp_video_reqbufs() local
902 ret = vb2_reqbufs(&vfh->queue, rb); in isp_video_reqbufs()
911 struct isp_video_fh *vfh = to_isp_video_fh(fh); in isp_video_querybuf() local
916 ret = vb2_querybuf(&vfh->queue, b); in isp_video_querybuf()
925 struct isp_video_fh *vfh = to_isp_video_fh(fh); in isp_video_qbuf() local
930 ret = vb2_qbuf(&vfh->queue, video->video.v4l2_dev->mdev, b); in isp_video_qbuf()
939 struct isp_video_fh *vfh = to_isp_video_fh(fh); in isp_video_dqbuf() local
944 ret = vb2_dqbuf(&vfh->queue, b, file->f_flags & O_NONBLOCK); in isp_video_dqbuf()
1077 struct isp_video_fh *vfh = to_isp_video_fh(fh); in isp_video_streamon() local
1109 ret = isp_video_check_format(video, vfh); in isp_video_streamon()
1114 video->bpl_value = vfh->format.fmt.pix.bytesperline; in isp_video_streamon()
1141 pipe->max_timeperframe = vfh->timeperframe; in isp_video_streamon()
1143 video->queue = &vfh->queue; in isp_video_streamon()
1146 pipe->field = vfh->format.fmt.pix.field; in isp_video_streamon()
1149 ret = vb2_streamon(&vfh->queue, type); in isp_video_streamon()
1183 struct isp_video_fh *vfh = to_isp_video_fh(fh); in isp_video_streamoff() local
1197 streaming = vb2_is_streaming(&vfh->queue); in isp_video_streamoff()
1220 vb2_streamoff(&vfh->queue, type); in isp_video_streamoff()
1299 v4l2_fh_init(&handle->vfh, &video->video); in isp_video_open()
1300 v4l2_fh_add(&handle->vfh); in isp_video_open()
1335 file->private_data = &handle->vfh; in isp_video_open()
1339 v4l2_fh_del(&handle->vfh); in isp_video_open()
1340 v4l2_fh_exit(&handle->vfh); in isp_video_open()
1350 struct v4l2_fh *vfh = file->private_data; in isp_video_release() local
1351 struct isp_video_fh *handle = to_isp_video_fh(vfh); in isp_video_release()
1354 isp_video_streamoff(file, vfh, video->type); in isp_video_release()
1363 v4l2_fh_del(vfh); in isp_video_release()
1364 v4l2_fh_exit(vfh); in isp_video_release()
1375 struct isp_video_fh *vfh = to_isp_video_fh(file->private_data); in isp_video_poll() local
1380 ret = vb2_poll(&vfh->queue, file, wait); in isp_video_poll()
1388 struct isp_video_fh *vfh = to_isp_video_fh(file->private_data); in isp_video_mmap() local
1390 return vb2_mmap(&vfh->queue, vma); in isp_video_mmap()