123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #include "CameraSensor.h"
- #include <errno.h>
- #include <fcntl.h>
- #include <linux/v4l2-subdev.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <sys/ioctl.h>
- #include <unistd.h>
- using namespace Linux;
- bool CameraSensor::set_format(uint32_t width, uint32_t height, uint32_t format)
- {
- struct v4l2_subdev_format fmt;
- int ret, fd;
- fd = open(_device_path, O_RDWR | O_CLOEXEC);
- if (fd < 0) {
- return false;
- }
- memset(&fmt, 0, sizeof(fmt));
- fmt.pad = 0;
- fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE;
- fmt.format.width = width;
- fmt.format.height = height;
- fmt.format.code = format;
- ret = ioctl(fd, VIDIOC_SUBDEV_S_FMT, &fmt);
- if (ret < 0) {
- return false;
- }
- return true;
- }
|