the dsp run at 794M, and i test it on evm DM8168(+DaughterCard), 1channel 1080p60 input and encode.
on default usercase, the osd and scd usage is 5.3%.
after i add some code before osd:
Int32 AlgLink_MYalgProcessFrame(FVID2_Frame *pFrame)
{
unsigned char *yStart = (unsigned char *)(pFrame->addr[0][0]);
int i;
for(i = 0; i < 1920 * 1080; i++) {
*yStart *= 2;
yStart++;
}
return 0;
}
the cpu usage is 51.6%(1 channel 1080p60).
i want do some hue,saturation adjust(AD chip not support), 4 channel 1080p30, does it appropriate?
thanks.