2015-11-23 15:22:39 -04:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include "CameraSensor.h"
|
2015-12-14 10:05:17 -04:00
|
|
|
|
|
|
|
#include <errno.h>
|
2015-11-23 15:22:39 -04:00
|
|
|
#include <fcntl.h>
|
2015-12-14 10:05:17 -04:00
|
|
|
#include <linux/v4l2-subdev.h>
|
|
|
|
#include <stdio.h>
|
2015-11-23 15:22:39 -04:00
|
|
|
#include <stdlib.h>
|
2015-12-14 10:05:17 -04:00
|
|
|
#include <string.h>
|
2015-11-23 15:22:39 -04:00
|
|
|
#include <sys/ioctl.h>
|
2015-12-14 10:05:17 -04:00
|
|
|
#include <unistd.h>
|
2015-11-23 15:22:39 -04:00
|
|
|
|
|
|
|
using namespace Linux;
|
|
|
|
|
|
|
|
bool CameraSensor::set_format(uint32_t width, uint32_t height, uint32_t format)
|
|
|
|
{
|
|
|
|
struct v4l2_subdev_format fmt;
|
2015-12-14 10:05:17 -04:00
|
|
|
int ret, fd;
|
2015-11-23 15:22:39 -04:00
|
|
|
|
2016-10-30 10:22:29 -03:00
|
|
|
fd = open(_device_path, O_RDWR | O_CLOEXEC);
|
2015-12-14 10:05:17 -04:00
|
|
|
if (fd < 0) {
|
|
|
|
return false;
|
2015-11-23 15:22:39 -04:00
|
|
|
}
|
|
|
|
|
2015-12-14 10:05:17 -04:00
|
|
|
memset(&fmt, 0, sizeof(fmt));
|
|
|
|
fmt.pad = 0;
|
|
|
|
fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE;
|
|
|
|
fmt.format.width = width;
|
2015-11-23 15:22:39 -04:00
|
|
|
fmt.format.height = height;
|
|
|
|
fmt.format.code = format;
|
|
|
|
|
2015-12-14 10:05:17 -04:00
|
|
|
ret = ioctl(fd, VIDIOC_SUBDEV_S_FMT, &fmt);
|
|
|
|
if (ret < 0) {
|
|
|
|
return false;
|
2015-11-23 15:22:39 -04:00
|
|
|
}
|
|
|
|
|
2015-12-14 10:05:17 -04:00
|
|
|
return true;
|
2015-11-23 15:22:39 -04:00
|
|
|
}
|