Hello,
I use an example from wiki.danicidsp (Accessing pixels in a frame on DM643x) and understand this.I can access current frame like this :
void **currentframe;
while{!done && status == 0){
/* grab a fresh video input frame */
FVID_exchange(hGioVpfeCcdc, &frameBuffPtr);
currentframe=(void*)frameBuffPtr->frame.frameBufferPtr;
/7.......
}
I want to send currentframe to memory using EDMA transfer.After new frame capture,dsp access frame on memory and VPSS system send new frame to memory using EDMA .And this will go on like this.But this operations ara very complex for me.How can I implement this? Could you give me an example?
Best regards..