Dear Experts,
If two memories are allocated inside OMAP DSP with Codec Engine help, I found they can not be exchanged, is that right?
Example:
int * A;
int *B;
A=memTab[1];// the memTab[1] has been allocated in initial part.
B=memTab[2]; // the memTab[2] has been allocated in initial part.
Question: how can we exchange the two pointers A and B?
Thanks,
Dave