Lines Matching full:standard
61 * struct tvp514x_std_info - Structure to store standard information
65 * @standard: v4l2 standard structure information
71 struct v4l2_standard standard; member
88 * @current_std: Current standard
231 /* Standard: STD_NTSC_MJ */
236 .standard = {
243 /* Standard: STD_PAL_BDGHIN */
249 .standard = {
257 /* Standard: need to add for additional standard */
378 * tvp514x_query_current_std() : Query the current standard detected by TVP5146/47
381 * Returns the current standard detected by TVP5146/47, STD_INVALID if there is no
382 * standard detected.
390 /* use the standard status register */ in tvp514x_query_current_std()
393 /* use the standard register itself */ in tvp514x_query_current_std()
483 * @sd: pointer to standard V4L2 sub-device structure
526 * @sd: pointer to standard V4L2 sub-device structure
527 * @std_id: standard V4L2 std_id ioctl enum
529 * Returns the current standard detected by TVP5146/47. If no active input is
542 /* To query the standard the TVP514x must power on the ADCs. */ in tvp514x_querystd()
548 /* query the current standard */ in tvp514x_querystd()
599 *std_id &= decoder->std_list[current_std].standard.id; in tvp514x_querystd()
602 decoder->std_list[current_std].standard.name); in tvp514x_querystd()
608 * @sd: pointer to standard V4L2 sub-device structure
609 * @std_id: standard V4L2 v4l2_std_id ioctl enum
611 * If std_id is supported, sets the requested standard. Otherwise, returns
620 if (std_id & decoder->std_list[i].standard.id) in tvp514x_s_std()
635 v4l2_dbg(1, debug, sd, "Standard set to: %s\n", in tvp514x_s_std()
636 decoder->std_list[i].standard.name); in tvp514x_s_std()
642 * @sd: pointer to standard V4L2 sub-device structure
742 * @sd: pointer to standard V4L2 sub-device structure
755 /* get the current standard */ in tvp514x_g_frame_interval()
759 decoder->std_list[current_std].standard.frameperiod; in tvp514x_g_frame_interval()
766 * @sd: pointer to standard V4L2 sub-device structure
783 /* get the current standard */ in tvp514x_s_frame_interval()
787 decoder->std_list[current_std].standard.frameperiod; in tvp514x_s_frame_interval()
794 * @sd: pointer to standard V4L2 sub-device structure
855 * @sd: pointer to standard V4L2 sub-device structure
882 * @sd: pointer to standard V4L2 sub-device structure
914 * @sd: pointer to standard V4L2 sub-device structure
1067 /* Set default standard to auto */ in tvp514x_probe()