Other Parts Discussed in Thread: DM385
Hi,
I find that DM385 ISP can not get the first 2 lines image data from cam interface .
In the ipnc rdk 3.5 issdrv_ispApi.c file Iss_ispControl() function:
rszASetOutConfig(pRszCfg->inWidth - 2,pRszCfg->inHeight - 4,pRszCfg->outWidth0,pRszCfg->outHeight0);
I do not know why the rdk set rsz width -2.
I change the code to :
rszASetOutConfig(pRszCfg->inWidth ,pRszCfg->inHeight ,pRszCfg->outWidth0,pRszCfg->outHeight0);
The rdk run also ok.
I think there may be a bug in the cam interface or in the rsz module,so the rdk set width -2.