Lines Matching refs:vv

88 	struct saa7146_vv *vv = dev->vv_data;
93 struct v4l2_pix_format *pix = &vv->video_fmt;
184 struct saa7146_vv *vv = dev->vv_data;
191 fmt = saa7146_format_by_fourcc(dev, vv->video_fmt.pixelformat);
219 struct saa7146_vv *vv = dev->vv_data;
226 fmt = saa7146_format_by_fourcc(dev, vv->video_fmt.pixelformat);
279 struct saa7146_vv *vv = dev->vv_data;
309 if (vb2_is_busy(&vv->video_dmaq.q))
311 vv->hflip = ctrl->val;
315 if (vb2_is_busy(&vv->video_dmaq.q))
317 vv->vflip = ctrl->val;
330 struct saa7146_vv *vv = dev->vv_data;
335 v4l2_video_std_frame_period(vv->standard->id,
343 struct saa7146_vv *vv = dev->vv_data;
345 f->fmt.pix = vv->video_fmt;
352 struct saa7146_vv *vv = dev->vv_data;
354 f->fmt.vbi = vv->vbi_fmt;
361 struct saa7146_vv *vv = dev->vv_data;
374 maxw = vv->standard->h_max_out;
375 maxh = vv->standard->v_max_out;
423 struct saa7146_vv *vv = dev->vv_data;
427 if (vb2_is_busy(&vv->video_dmaq.q)) {
436 vv->last_field = V4L2_FIELD_TOP;
439 vv->last_field = V4L2_FIELD_INTERLACED;
442 vv->video_fmt = f->fmt.pix;
444 (char *)&vv->video_fmt.pixelformat);
451 struct saa7146_vv *vv = dev->vv_data;
453 *norm = vv->standard->id;
460 struct saa7146_vv *vv = dev->vv_data;
471 vv->standard == &dev->ext_vv_data->stds[i])
474 if (vb2_is_busy(&vv->video_dmaq.q) || vb2_is_busy(&vv->vbi_dmaq.q)) {
480 vv->standard = &dev->ext_vv_data->stds[i];
482 dev->ext_vv_data->std_callback(dev, vv->standard);
491 DEB_EE("VIDIOC_S_STD: set to standard to '%s'\n", vv->standard->name);
541 struct saa7146_vv *vv = dev->vv_data;
545 mod_timer(&vv->video_dmaq.timeout, jiffies+BUFFER_TIMEOUT);
591 struct saa7146_vv *vv = dev->vv_data;
596 sfmt = saa7146_format_by_fourcc(dev, vv->video_fmt.pixelformat);
616 struct saa7146_vv *vv = dev->vv_data;
617 unsigned int size = vv->video_fmt.sizeimage;
691 static void video_init(struct saa7146_dev *dev, struct saa7146_vv *vv)
693 INIT_LIST_HEAD(&vv->video_dmaq.queue);
695 timer_setup(&vv->video_dmaq.timeout, saa7146_buffer_timeout, 0);
696 vv->video_dmaq.dev = dev;
699 vv->standard = &dev->ext_vv_data->stds[0];
702 vv->current_hps_source = SAA7146_HPS_SOURCE_PORT_A;
703 vv->current_hps_sync = SAA7146_HPS_SYNC_PORT_A;
708 struct saa7146_vv *vv = dev->vv_data;
709 struct saa7146_dmaqueue *q = &vv->video_dmaq;