I want to just use the DSP for frame analyse.Attached below is the mainly flow:
1,Set the my DSP algorithm as the process link( ipcFramesOutHostPrm.baseCreateParams.processLink).
2, Read the frame file from hard disk on host A8.
3,Use Vdis_putFullVideoFrames() to send the frame.
This is my plan to framework of my demo.
my question is: what's the next link of ipcFramesOutHost ?
In the past when I did the jpeg DEC work, I use the following link design:
fread() - read from harddisk
|
IPC_Frames_OUT_A8 (BitStream)
|
IPC_Frames_IN_M3 (BitStream)
|
DEC (YUV420SP)
|
IPC_BITS_Out_M3(Frames)
|
IPC_BITS_IN_A8(Frames)
|
fwrite() - write to harddisk
Is there any suggestion for the requirement "hard disk read ----------DSP ALG-------------hard dsk write" ?