Hi all:
We will request buffer from capture driver for save raw data, I had print out the buffer size under continous mode on DM365:
...
ioctl(capt_fd, VIDIOC_REQBUFS, &req)
...
ioctl(capt_fd, VIDIOC_QUERYBUF, &buf)
...
buf.length=4763648
Anyone who can help explain why we need allocate so BIG buffer? what is it used for?
PS: The capture input is 720P, pixel format is YUV420SP
Thanks.