Lines Matching refs:norm
211 static void set_tvnorm(struct tw68_dev *dev, const struct tw68_tvnorm *norm)
213 if (norm != dev->tvnorm) {
215 dev->height = (norm->id & V4L2_STD_525_60) ? 480 : 576;
216 dev->tvnorm = norm;
245 * getting current norm (as well as debug print)
253 const struct tw68_tvnorm *norm = dev->tvnorm;
265 norm->h_delay, norm->h_start, norm->h_stop,
266 norm->v_delay, norm->video_v_start,
267 norm->video_v_stop);
271 hdelay = norm->h_delay0;
274 hdelay = norm->h_delay;
278 hdelay += norm->h_start;
279 hactive = norm->h_stop - norm->h_start + 1;
283 vdelay = norm->v_delay;
284 vactive = ((norm->id & V4L2_STD_525_60) ? 524 : 624) / 2 - norm->video_v_start;
732 /* Look for match on complete norm id (may have mult bits) */
738 /* If no exact match, look for norm which contains this one */