This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

How change Outbuf's size?

Hi 

 I want to change outBufs's size in AlgLink_ScdCreateOutObj.

In AlgLink_ScdCreateOutObj, the default value is:sizeof(AlgLink_ScdResult). 

But when I change this:

status = Utils_memBitBufAlloc(&(pOutObj->outBufs[totalBufCnt]),
pOutObj->buf_size[i],
pOutObj->outNumBufs[i]);

to

pOutObj->buf_size[i] = 704*576*2;

status = Utils_memBitBufAlloc(&(pOutObj->outBufs[totalBufCnt]),
pOutObj->buf_size[i],
pOutObj->outNumBufs[i]);

I got error:

AlgLink_ScdVACreate:Error 0x2 while setting DMVAL_PARAM_DBG_VERBOSE_LEVEL


What's wrong about this? Does outbuffer size cann't realloc?

What should I do?

Thanks very much!