We are trying to use the video stabilization (vstab) module/link on dm8148, more specifically to use it from DSP side.
Right now I find the user guide and vstab definition in multich_tristream_fullfeature.c
cameraPrm.vstabLinkId = vstabId;
vstabPrm.totalFrameWidth = pCameraInstPrm->sensorOutWidth;
vstabPrm.totalFrameHeight = pCameraInstPrm->sensorOutHeight;
System_linkCreate(vstabId, &vstabPrm, sizeof(vstabPrm));
My understanding is that vstab is already created, and all I need to do is to call the vstab API inside DSP link: vaLink_alg.c. Am I right?
Please share your input. Thank you so much.