Lines Matching defs:std
54 * @std: current SDTV standard
70 v4l2_std_id std;
326 pix->height = (skel->std & V4L2_STD_525_60) ? 480 : 576;
410 static int skeleton_s_std(struct file *file, void *priv, v4l2_std_id std)
423 if (std == skel->std)
433 /* TODO: handle changing std */
435 skel->std = std;
442 static int skeleton_g_std(struct file *file, void *priv, v4l2_std_id *std)
450 *std = skel->std;
457 * The framework will initially set *std to tvnorms (i.e. the set of
459 * this value. If there is no signal, then *std should be set to 0.
461 static int skeleton_querystd(struct file *file, void *priv, v4l2_std_id *std)
471 * Query currently seen standard. Initial value of *std is
476 *std = 0;
481 *std &= V4L2_STD_525_60;
483 *std &= V4L2_STD_625_50;
611 i->std = SKEL_TVNORMS;
615 i->std = 0;
793 skel->std = V4L2_STD_625_50;