Hello.
I am applying VICP 3.3 library to my DSP application. My DSP application is based on "call_dsplib" example. I use Linux DVSDK 2.00 for EVM DM6446.
I take a "sobel" VICP example and embed it to my DSP application.
I have an error here (it is a beginning part of procFunction() function):
if((SRC = (char*) memAlloc( 2* WIDTH*HEIGHT + 2*4*WIDTH*HEIGHT) )==NULL) {
......
}
This condition is always true, ie. the mamAlloc can not be implemented correctly.
What can I do now? I take an example and almost didn't modify it.
Thank you.