Lines Matching refs:std
512 v4l2_std_id std = V4L2_STD_ALL; in cx18_s_input() local
531 std = cx->tuner_std; in cx18_s_input()
532 cx->streams[CX18_ENC_STREAM_TYPE_MPG].video_dev.tvnorms = std; in cx18_s_input()
533 cx->streams[CX18_ENC_STREAM_TYPE_YUV].video_dev.tvnorms = std; in cx18_s_input()
534 cx->streams[CX18_ENC_STREAM_TYPE_VBI].video_dev.tvnorms = std; in cx18_s_input()
572 static int cx18_g_std(struct file *file, void *fh, v4l2_std_id *std) in cx18_g_std() argument
576 *std = cx->std; in cx18_g_std()
580 int cx18_s_std(struct file *file, void *fh, v4l2_std_id std) in cx18_s_std() argument
585 if ((std & V4L2_STD_ALL) == 0) in cx18_s_std()
588 if (std == cx->std) in cx18_s_std()
599 cx->std = std; in cx18_s_std()
600 cx->is_60hz = (std & V4L2_STD_525_60) ? 1 : 0; in cx18_s_std()
609 (unsigned long long) cx->std); in cx18_s_std()
612 cx18_call_all(cx, video, s_std, cx->std); in cx18_s_std()