Lines Matching defs:std
980 v4l2_std_id std;
1004 std = itv->tuner_std;
1006 std = V4L2_STD_ALL;
1008 itv->streams[i].vdev.tvnorms = std;
1085 static int ivtv_g_std(struct file *file, void *fh, v4l2_std_id *std)
1089 *std = itv->std;
1093 void ivtv_s_std_enc(struct ivtv *itv, v4l2_std_id std)
1095 itv->std = std;
1096 itv->is_60hz = (std & V4L2_STD_525_60) ? 1 : 0;
1109 ivtv_call_all(itv, video, s_std, itv->std);
1112 void ivtv_s_std_dec(struct ivtv *itv, v4l2_std_id std)
1119 itv->std_out = std;
1120 itv->is_out_60hz = (std & V4L2_STD_525_60) ? 1 : 0;
1158 static int ivtv_s_std(struct file *file, void *fh, v4l2_std_id std)
1162 if ((std & V4L2_STD_ALL) == 0)
1165 if (std == itv->std)
1177 (unsigned long long)itv->std);
1179 ivtv_s_std_enc(itv, std);
1181 ivtv_s_std_dec(itv, std);