Lines Matching refs:norm
110 if (dev->norm & V4L2_STD_525_60) {
382 base_height = (dev->norm & V4L2_STD_525_60) ? 480 : 576;
504 static int vidioc_querystd(struct file *file, void *priv, v4l2_std_id *norm)
507 v4l2_device_call_all(&dev->v4l2_dev, 0, video, querystd, norm);
511 static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *norm)
515 *norm = dev->norm;
519 static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id norm)
524 if (dev->norm == norm)
536 dev->height = (norm & V4L2_STD_525_60) ? 480 : 576;
537 dev->norm = norm;
545 dev->norm);
825 dev->norm = V4L2_STD_NTSC_M;
834 dev->norm);