Home | History | Annotate | Download | only in src

Lines Matching defs:fdesc

325 	struct v4l2_fmtdesc fdesc;
339 fdesc.type=V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
340 fdesc.index=0;
341 while (ioctl(m_nDriver_fd, VIDIOC_ENUM_FMT, &fdesc) == 0) {
342 printf("fmt: description: %s, fmt: %x, flags = %x\n", fdesc.description,
343 fdesc.pixelformat, fdesc.flags);
344 fdesc.index++;
347 fdesc.type=V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
348 fdesc.index=0;
349 while (ioctl(m_nDriver_fd, VIDIOC_ENUM_FMT, &fdesc) == 0) {
351 printf("fmt: description: %s, fmt: %x, flags = %x\n", fdesc.description,
352 fdesc.pixelformat, fdesc.flags);
353 fdesc.index++;