I have a question like this:
now, I have a data structure
typedef struct macroblock{
int qp;
int qpc[2];
int slice_nr;
int delta_quant;}Macroblock
This data structure is a pointer. I want to send this data structure to DSP from ARM.
This structure means the information of macroblocks, 99 macroblocks.
In short, I want to konw the information of macroblocks in DSP-side like ARM-side
I want to use XDM_Buf Desc structure to transmit the data structure. Am I right?
anyone could tell me how can i write the code? Thanks very much.