Hi,
I wanted to understand uvc_frame_info structure
struct uvc_frame_info {
unsigned int width;
unsigned int height;
unsigned int intervals[8];
};
static const struct uvc_frame_info uvc_frames_yuyv[] = {
{
640,
360,
{666666, 10000000, 50000000, 0},
},
what does {666666, 10000000, 50000000, 0}, represent even though intervals has 8 values why only four are filled
Hi,
I wanted to understand uvc_frame_info structure
struct uvc_frame_info {
unsigned int width;
unsigned int height;
unsigned int intervals[8];
};
static const struct uvc_frame_info uvc_frames_yuyv[] = {
{
640,
360,
{666666, 10000000, 50000000, 0},
},
what does {666666, 10000000, 50000000, 0}, represent even though intervals has 8 values why only four are filled