Home | History | Annotate | Download | only in dev

Lines Matching defs:std

1000     struct v4l2_standard *std)
1004 std->id = V4L2_STD_NTSC_M;
1005 strlcpy(std->name, "NTSC-M", sizeof(std->name));
1006 std->frameperiod.numerator = 1001;
1007 std->frameperiod.denominator = 30000;
1008 std->framelines = 525;
1011 std->id = V4L2_STD_UNKNOWN;
1012 strlcpy(std->name, "Unknown", sizeof(std->name));
1018 video_enum_standard(struct video_softc *sc, struct v4l2_standard *std)
1026 if (std->index != 0)
1028 std->id = V4L2_STD_UNKNOWN;
1029 strlcpy(std->name, "webcam", sizeof(std->name));
1033 v4l2_standard_to_video_standard(std->id, &vstd);
1035 err = hw->enum_standard(sc->hw_softc, std->index, &vstd);
1039 video_standard_to_v4l2_standard(vstd, std);
1048 struct v4l2_standard std;
1062 video_standard_to_v4l2_standard(vstd, &std);
1063 *stdid = std.id;
1102 vi->standards = input->std; /* ... values are the same */
1132 input->std = vi->standards; /* ... values are the same */
1985 struct v4l2_standard *std;
2062 std = data;
2063 return video_enum_standard(sc, std);