Lines Matching full:standard
62 * struct tvp514x_std_info - Structure to store standard information
66 * @standard: v4l2 standard structure information
72 struct v4l2_standard standard; member
89 * @current_std: Current standard
232 /* Standard: STD_NTSC_MJ */
237 .standard = {
244 /* Standard: STD_PAL_BDGHIN */
250 .standard = {
258 /* Standard: need to add for additional standard */
379 * tvp514x_query_current_std() : Query the current standard detected by TVP5146/47
382 * Returns the current standard detected by TVP5146/47, STD_INVALID if there is no
383 * standard detected.
391 /* use the standard status register */ in tvp514x_query_current_std()
394 /* use the standard register itself */ in tvp514x_query_current_std()
484 * @sd: pointer to standard V4L2 sub-device structure
527 * @sd: pointer to standard V4L2 sub-device structure
528 * @std_id: standard V4L2 std_id ioctl enum
530 * Returns the current standard detected by TVP5146/47. If no active input is
543 /* To query the standard the TVP514x must power on the ADCs. */ in tvp514x_querystd()
549 /* query the current standard */ in tvp514x_querystd()
600 *std_id &= decoder->std_list[current_std].standard.id; in tvp514x_querystd()
603 decoder->std_list[current_std].standard.name); in tvp514x_querystd()
609 * @sd: pointer to standard V4L2 sub-device structure
610 * @std_id: standard V4L2 v4l2_std_id ioctl enum
612 * If std_id is supported, sets the requested standard. Otherwise, returns
621 if (std_id & decoder->std_list[i].standard.id) in tvp514x_s_std()
636 v4l2_dbg(1, debug, sd, "Standard set to: %s\n", in tvp514x_s_std()
637 decoder->std_list[i].standard.name); in tvp514x_s_std()
643 * @sd: pointer to standard V4L2 sub-device structure
756 /* get the current standard */ in tvp514x_get_frame_interval()
760 decoder->std_list[current_std].standard.frameperiod; in tvp514x_get_frame_interval()
783 /* get the current standard */ in tvp514x_set_frame_interval()
787 decoder->std_list[current_std].standard.frameperiod; in tvp514x_set_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
1066 /* Set default standard to auto */ in tvp514x_probe()