Lines Matching defs:std
95 * @std: video standard (e.g. PAL/NTSC)
124 v4l2_std_id std;
413 * @std: contains standard to be set
424 static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id std)
432 if (std == V4L2_STD_ALL) {
433 v4l2_subdev_call(vip->decoder, video, querystd, &std);
434 if (std == V4L2_STD_UNKNOWN)
438 if (vip->std != std) {
439 vip->std = std;
440 if (V4L2_STD_525_60 & std)
446 return v4l2_subdev_call(vip->decoder, video, s_std, std);
453 * @std: contains return values
459 static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *std)
463 *std = vip->std;
471 * @std: contains return values
477 static int vidioc_querystd(struct file *file, void *priv, v4l2_std_id *std)
481 return v4l2_subdev_call(vip->decoder, video, querystd, std);
491 inp->std = V4L2_STD_ALL;
591 if (V4L2_STD_525_60 & vip->std)
1019 vip->std = V4L2_STD_PAL;