Lines Matching refs:std
514 v4l2_std_id std = V4L2_STD_ALL; in cx18_s_input() local
533 std = cx->tuner_std; in cx18_s_input()
534 cx->streams[CX18_ENC_STREAM_TYPE_MPG].video_dev.tvnorms = std; in cx18_s_input()
535 cx->streams[CX18_ENC_STREAM_TYPE_YUV].video_dev.tvnorms = std; in cx18_s_input()
536 cx->streams[CX18_ENC_STREAM_TYPE_VBI].video_dev.tvnorms = std; in cx18_s_input()
574 static int cx18_g_std(struct file *file, void *fh, v4l2_std_id *std) in cx18_g_std() argument
578 *std = cx->std; in cx18_g_std()
582 int cx18_s_std(struct file *file, void *fh, v4l2_std_id std) in cx18_s_std() argument
587 if ((std & V4L2_STD_ALL) == 0) in cx18_s_std()
590 if (std == cx->std) in cx18_s_std()
601 cx->std = std; in cx18_s_std()
602 cx->is_60hz = (std & V4L2_STD_525_60) ? 1 : 0; in cx18_s_std()
611 (unsigned long long) cx->std); in cx18_s_std()
614 cx18_call_all(cx, video, s_std, cx->std); in cx18_s_std()