Hello Jose,
>>Are these tested?
Yes.
>>Are they working correctly in the EVK?
Some modes can't normally work!
A Camera Module provider told me that OV5642 sensor chip has been discontinued, so you had better confirm the message with corresponding provider, and arrage to validate camera module based on other sensor chip like ov5640 etc.
If you are using android BSP, you can open ~/myandroid/hardware/imx/mx6/libcamera2/Ov5642Csi.cpp, there are some comments in the files like below:
......
//If w/h ratio is not same with senserW/sensorH, framework assume that
//first crop little width or little height, then scale.
//But 1920x1080, 176x144 not work in this mode.
//For 1M pixel, 720p sometimes may take green picture(5%), so not report it,
//use 1024x768 for 1M pixel
if( !((vid_frmsize.discrete.width == 1920 && vid_frmsize.discrete.height == 1080) ||
(vid_frmsize.discrete.width == 176 && vid_frmsize.discrete.height == 144) ||
(vid_frmsize.discrete.width == 1280 && vid_frmsize.discrete.height == 720)) ){
mPictureResolutions[pictureCnt++] = vid_frmsize.discrete.width;
mPictureResolutions[pictureCnt++] = vid_frmsize.discrete.height;
}
.....
Best Regards,
Weidong