Lines Matching defs:std
285 v4l2_std_id std = pstd ? *pstd : V4L2_STD_ALL;
302 std &= V4L2_STD_PAL;
306 std &= V4L2_STD_SECAM;
312 std &= V4L2_STD_NTSC;
316 std = V4L2_STD_UNKNOWN;
319 *pstd = std;
325 static int vpx3220_querystd(struct v4l2_subdev *sd, v4l2_std_id *std)
328 return vpx3220_status(sd, NULL, std);
337 static int vpx3220_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
347 v4l2_dbg(1, debug, sd, "s_std %llx\n", (unsigned long long)std);
348 if (std & V4L2_STD_NTSC) {
351 } else if (std & V4L2_STD_PAL) {
354 } else if (std & V4L2_STD_SECAM) {
361 decoder->norm = std;