Home | History | Annotate | Download | only in src

Lines Matching defs:fdesc

835     struct v4l2_fmtdesc fdesc;
852 fdesc.type=V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
853 fdesc.index=0;
855 while (ioctl(m_nDriver_fd, VIDIOC_ENUM_FMT, &fdesc) == 0) {
856 DEBUG_PRINT_LOW("fmt: description: %s, fmt: %x, flags = %x", fdesc.description,
857 fdesc.pixelformat, fdesc.flags);
858 fdesc.index++;
861 fdesc.type=V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
862 fdesc.index=0;
864 while (ioctl(m_nDriver_fd, VIDIOC_ENUM_FMT, &fdesc) == 0) {
865 DEBUG_PRINT_LOW("fmt: description: %s, fmt: %x, flags = %x", fdesc.description,
866 fdesc.pixelformat, fdesc.flags);
867 fdesc.index++;