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.

TDA2PXEVM: Error after adding Dup and Null link in semseg

Part Number: TDA2PXEVM

Hi TI,

I am trying to extend my work and want to do image processing on the classes of semseg. In order to do so, I added the Dup_1 and Null link after the tidl_postproc. Something like this:

tidl_postproc-> Dup_1

Dup_1-> Null

and within the semseg, I added this code part to dump the frames  in the chains_semseg_SetAppPrms:

while(!done)
{
Vps_printf(semSegRunTimeMenu);
char ch = Chains_readChar();
switch(ch)
{
case '6':
done = TRUE;
pUcObj->NullPrm.dumpDataType = NULL_LINK_COPY_TYPE_FILE;
strcpy((char*)pUcObj->NullPrm.nameDataFile[0], "dump_file.dat");
break;
case '7':
done = TRUE;
pUcObj->NullPrm.dumpDataType = NULL_LINK_COPY_TYPE_NONE;
break;
default:
Vps_printf("Do it again\n");
}
}
Running this gives me this error, can anyone tell me how to fix it? Thank you
 Assertion @ Line: 231 in ipcOutLink_drv.c: pObj->createArgs.inQueParams.prevLinkQueId < pObj->prevLinkInfo.numQue :!
With best regards,
H.M. Owais