Part Number: TDA2EVM5777
Hi,
I am using VSDK3.4 on TD2X EVM. And I have written a camera display use-case (similar to below) and config is "tda2xx_evm_linux_all"
Capture -> VPE -> Display
It is working fine and i can see camera live feed on HDMI display.
Currently VPE params are configured as below:
width = 1280;
height = 720;
crop_width = 1280;
crop_height = 720;
pPrm->chParams[chId].outParams[0].width = width;
pPrm->chParams[chId].outParams[0].height = height;
pPrm->chParams[chId].scCropCfg.cropStartX = 0;
pPrm->chParams[chId].scCropCfg.cropStartY = 0;
pPrm->chParams[chId].scCropCfg.cropWidth = crop_width;
pPrm->chParams[chId].scCropCfg.cropHeight = crop_height;
Now, when use-case is running, I want to modify, scCropCfg. So that i can able to see change on display something like zooming in and zooming out.
Questions:
1. Is is possible to change VPE params when use-case is running using system_link_control or something ?
2. If yes, Please tell me how can i do it?
Regards,
Sagar K