Lines Matching refs:norm
110 if (dev->norm & V4L2_STD_525_60) {
378 base_height = (dev->norm & V4L2_STD_525_60) ? 480 : 576;
500 static int vidioc_querystd(struct file *file, void *priv, v4l2_std_id *norm)
503 v4l2_device_call_all(&dev->v4l2_dev, 0, video, querystd, norm);
507 static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *norm)
511 *norm = dev->norm;
515 static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id norm)
520 if (dev->norm == norm)
532 dev->height = (norm & V4L2_STD_525_60) ? 480 : 576;
533 dev->norm = norm;
541 dev->norm);
821 dev->norm = V4L2_STD_NTSC_M;
830 dev->norm);