Hello,
I'm working on demo_vdec_vdis use case on DM8168, DVR_RDK_3.5.
I have some confusion over the function of SwMsLink_drvGetInputChInfoFromWinId() in file swMsLink_drv.c;
1)
I don't understand the code of pCropInfo->height /= 2, why need to divided by two ? can I delete this line of code ?
2)
In the function, I find the code is always pCropInfo->startX=32,pCropInfo->startY=24 , and whether the value is assigned in the function of DecLink_codecCreateOutChObj() or not . can I modify the value
pOutChInfo->startX = 32;
pOutChInfo->startY = 24;
to
pOutChInfo->startX = 0;
pOutChInfo->startY = 0;
Pls tell me the detail of this assignment ?
Thank you!