Lines Matching defs:std
94 * @std: video standard (e.g. PAL/NTSC)
123 v4l2_std_id std;
416 * @std: contains standard to be set
427 static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id std)
435 if (std == V4L2_STD_ALL) {
436 v4l2_subdev_call(vip->decoder, video, querystd, &std);
437 if (std == V4L2_STD_UNKNOWN)
441 if (vip->std != std) {
442 vip->std = std;
443 if (V4L2_STD_525_60 & std)
449 return v4l2_subdev_call(vip->decoder, video, s_std, std);
456 * @std: contains return values
462 static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *std)
466 *std = vip->std;
474 * @std: contains return values
480 static int vidioc_querystd(struct file *file, void *priv, v4l2_std_id *std)
484 return v4l2_subdev_call(vip->decoder, video, querystd, std);
494 inp->std = V4L2_STD_ALL;
594 if (V4L2_STD_525_60 & vip->std)
1019 vip->std = V4L2_STD_PAL;