Transport ignores RTP packets

I’m producing RTP packets with OPUS audio data to a transport, where plainTransport.getStats() is showing a growing number of bytesReceived, but 0 rtpBytesReceived, and consumers aren’t receiving anything. What could cause this to occur, does this mean the RTP packets aren’t properly formatted (I’m using jrtplib) and mediasoup is ignoring them?

Enable “rtp” in the Worker logTags and set logLevel to “warn”. Probably those RTP packets are malformed or they do not have a SSRC matching the one given in transport.produce() in server side.

Thanks! That was it, I had to set the SSRC in the RTP packets, and it had to match to SSRC of the producer options (in the ‘encodings’ array)