Hi everyone,
I am working on NVR product and was assiged to implement multi video stream input (or multi media file playback) to show at least 4 video images on FULL HD LCD screen simultaneously.
I am using DaVinci DMAI module to implement it, but I do not know how to combine 2 video into framebuffer !!!
I got display buffer handle "hDstBuf" from:
Display_get(hDisplay, &hDstBuf);
and got video source from FiFo:
Fifo_get(envp->hInFifo, &hSrcBuf1);
Fifo_get(envp->hInFifo, &hSrcBuf2);
Now how can I combine hSrcBuf1 and hSrcBuf2 and then copy to Display buffer "hDstBuf" ??
Thanks if any suggestion !!!
Tai Chang.