Home | History | Annotate | Download | only in src

Lines Matching refs:fdesc

1189 	struct v4l2_fmtdesc fdesc;
1379 fdesc.type=V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
1380 fdesc.index=0;
1381 while (ioctl(drv_ctx.video_driver_fd, VIDIOC_ENUM_FMT, &fdesc) == 0) {
1382 printf("fmt: description: %s, fmt: %x, flags = %x\n", fdesc.description,
1383 fdesc.pixelformat, fdesc.flags);
1384 fdesc.index++;
1386 fdesc.type=V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
1387 fdesc.index=0;
1388 while (ioctl(drv_ctx.video_driver_fd, VIDIOC_ENUM_FMT, &fdesc) == 0) {
1390 printf("fmt: description: %s, fmt: %x, flags = %x\n", fdesc.description,
1391 fdesc.pixelformat, fdesc.flags);
1392 fdesc.index++;