Lines Matching +full:576 +full:i

50 	unsigned int i;  in cx25821_format_by_fourcc()  local
52 for (i = 0; i < ARRAY_SIZE(formats); i++) in cx25821_format_by_fourcc()
53 if (formats[i].fourcc == fourcc) in cx25821_format_by_fourcc()
54 return formats + i; in cx25821_format_by_fourcc()
72 cx_set(PCI_INT_MSK, cx_read(PCI_INT_MSK) | (1 << channel->i)); in cx25821_start_video_dma()
108 &dev->channels[channel->i].dma_vidq; in cx25821_video_irq()
346 maxh = (dev->tvnorm & V4L2_STD_625_50) ? 576 : 480; in cx25821_vidioc_try_fmt_vid_cap()
455 chan->height = (dev->tvnorm & V4L2_STD_625_50) ? 576 : 480; in cx25821_vidioc_s_std()
463 struct v4l2_input *i) in cx25821_vidioc_enum_input() argument
465 if (i->index) in cx25821_vidioc_enum_input()
468 i->type = V4L2_INPUT_TYPE_CAMERA; in cx25821_vidioc_enum_input()
469 i->std = CX25821_NORMS; in cx25821_vidioc_enum_input()
470 strscpy(i->name, "Composite", sizeof(i->name)); in cx25821_vidioc_enum_input()
474 static int cx25821_vidioc_g_input(struct file *file, void *priv, unsigned int *i) in cx25821_vidioc_g_input() argument
476 *i = 0; in cx25821_vidioc_g_input()
480 static int cx25821_vidioc_s_input(struct file *file, void *priv, unsigned int i) in cx25821_vidioc_s_input() argument
482 return i ? -EINVAL : 0; in cx25821_vidioc_s_input()
544 f->fmt.pix.height = (dev->tvnorm & V4L2_STD_625_50) ? 576 : 480; in cx25821_vidioc_try_fmt_vid_out()
670 int i; in cx25821_video_register() local
677 for (i = 0; i < MAX_VID_CAP_CHANNEL_NUM - 1; ++i) { in cx25821_video_register()
678 struct cx25821_channel *chan = &dev->channels[i]; in cx25821_video_register()
682 bool is_output = i > SRAM_CH08; in cx25821_video_register()
684 if (i == SRAM_CH08) /* audio channel */ in cx25821_video_register()
705 chan->out = &dev->vid_out_data[i - SRAM_CH09]; in cx25821_video_register()
709 chan->sram_channels = &cx25821_sram_channels[i]; in cx25821_video_register()
713 chan->height = 576; in cx25821_video_register()
757 snprintf(vdev->name, sizeof(vdev->name), "%s #%d", dev->name, i); in cx25821_video_register()
773 while (i >= 0) in cx25821_video_register()
774 cx25821_video_unregister(dev, i--); in cx25821_video_register()