Lines Matching refs:norm
38 .norm = V4L2_STD_525_60,
43 .norm = V4L2_STD_PAL,
49 static int usbtv_configure_for_norm(struct usbtv *usbtv, v4l2_std_id norm) in usbtv_configure_for_norm() argument
55 if (norm_params[i].norm & norm) { in usbtv_configure_for_norm()
66 usbtv->norm = params->norm; in usbtv_configure_for_norm()
110 static int usbtv_select_norm(struct usbtv *usbtv, v4l2_std_id norm) in usbtv_select_norm() argument
149 ret = usbtv_configure_for_norm(usbtv, norm); in usbtv_select_norm()
152 if (norm & V4L2_STD_525_60) in usbtv_select_norm()
154 else if (norm & V4L2_STD_PAL) in usbtv_select_norm()
240 ret = usbtv_select_norm(usbtv, usbtv->norm); in usbtv_setup_capture()
537 static int usbtv_g_std(struct file *file, void *priv, v4l2_std_id *norm) in usbtv_g_std() argument
540 *norm = usbtv->norm; in usbtv_g_std()
544 static int usbtv_s_std(struct file *file, void *priv, v4l2_std_id norm) in usbtv_s_std() argument
549 if ((norm & V4L2_STD_525_60) || (norm & V4L2_STD_PAL)) in usbtv_s_std()
550 ret = usbtv_select_norm(usbtv, norm); in usbtv_s_std()