Part Number: TDA3
Hi,
I'm trying to use network_rx.exe tool to send the Bayer video(1280x720) through network and process the frames instead of using the sensor stream.
The pipeline looks like,
NullSource(IPU1_1) -> MyAlgo(DSP1) -> IssM2mIsp -> IssM2mSimcop -> Display_Video
GrpxSrc -> Display_Grpx
I have modified the use case file accordingly.
When the use case is strated and Bayer file is sent though network, I'm getting "ERROR:Server Connect failed" message.
Do any more parameters need to be set for this use case?
Regards,
Navinprashath.R.R
The NullSource parameters are
pPrm->outQueInfo.numCh = 1;
pPrm->timerPeriodMilliSecs = 100;
for (chId = 0; chId < pPrm->outQueInfo.numCh; chId++)
{
pPrm->channelParams[chId].numBuffers = 2;
pChInfo = &pPrm->outQueInfo.chInfo[chId];
pChInfo->flags = System_Link_Ch_Info_Set_Flag_Data_Format(pChInfo->flags,
SYSTEM_DF_BAYER_GRBG);
pChInfo->flags = System_Link_Ch_Info_Set_Flag_Buf_Type(pChInfo->flags,
SYSTEM_BUFFER_TYPE_VIDEO_FRAME);
pChInfo->width = CAPTURE_SENSOR_WIDTH;
pChInfo->height = CAPTURE_SENSOR_HEIGHT;
pChInfo->startX = 0;
pChInfo->startY = 0;
pChInfo->pitch[0] = SystemUtils_align(pChInfo->width, 32);
pChInfo->pitch[1] = SystemUtils_align(pChInfo->width, 32);
}
pPrm->networkServerPort = NETWORK_RX_SERVER_PORT;
pPrm->dataRxMode = NULLSRC_LINK_DATA_RX_MODE_NETWORK;