Lines Matching full:input
12 be a video input. Video and VBI capture devices have inputs. Video and
22 status information applicable when the current video input is queried.
26 the current video input or output. To select a different input or output
29 implement all the input ioctls when the device has one or more inputs,
32 Example: Information about the current video input
37 struct v4l2_input input;
45 memset(&input, 0, sizeof(input));
46 input.index = index;
48 if (-1 == ioctl(fd, VIDIOC_ENUMINPUT, &input)) {
53 printf("Current input: %s\\n", input.name);
56 Example: Switching to the first video input