Hello @plazauscas ,
I hope you are doing well.
->If one has selected the pixel format RGB666 then the RGB666 is being used.
for ex:-
else if (!strncmp(pixfmt, "RGB666", 6))
host->pix_fmt = V4L2_PIX_FMT_RGB666;
->Please select pixel format RGB888 to use RGB24 pixel format.
for ex:-
else if (!strncmp(pixfmt, "RGB888", 6))
host->pix_fmt = V4L2_PIX_FMT_RGB24;
I hope it helps!
Thanks & Regards,
Sanket Parekh