Lines Matching defs:std
42 * @std: current SDTV standard
58 v4l2_std_id std;
314 pix->height = (skel->std & V4L2_STD_525_60) ? 480 : 576;
398 static int skeleton_s_std(struct file *file, void *priv, v4l2_std_id std)
411 if (std == skel->std)
421 /* TODO: handle changing std */
423 skel->std = std;
430 static int skeleton_g_std(struct file *file, void *priv, v4l2_std_id *std)
438 *std = skel->std;
445 * The framework will initially set *std to tvnorms (i.e. the set of
447 * this value. If there is no signal, then *std should be set to 0.
449 static int skeleton_querystd(struct file *file, void *priv, v4l2_std_id *std)
459 * Query currently seen standard. Initial value of *std is
464 *std = 0;
469 *std &= V4L2_STD_525_60;
471 *std &= V4L2_STD_625_50;
599 i->std = SKEL_TVNORMS;
603 i->std = 0;
781 skel->std = V4L2_STD_625_50;