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.

Linux/TMS320DM8168: Lost UDP packets streaming YUV packets

Part Number: TMS320DM8168

Tool/software: Linux

I'm trying to multicast 1 channel of (unencrypted) YUV420 data at 25 fps.  My use case is:

capture -> dei -> ipcFramesOutVpss -> ipcFramesInHost

The pseudo code for ipcFramesRecvFxn() is:

Vcap_getFullVideoFrames(&bufList)

fd = open("/dev/mem");
for (i = 0; i < bufList.numFrames; i++)
{
  bufPtr = &bufList->frames[i];
  if (bufPtr->channelNum == 0)
  {
    {
      // luma
      virtAddr = mmap(addr, len, prot, flags, fd, offset);
      WriteRtpPacket(virtAddr);
      unmap(virtAddr);

      // chroma
      virtAddr = mmap(addr, len, prot, flags, fd, offset);
      WriteRtpPacket(virtAddr);
      unmap(virtAddr);
    }
  }
}

The issue is that the RTP packets are not captured by Wireshark i.e. the DM8168 is not sending them?