In a C++ program I'm using a GStreamer pipeline to generate an RTP stream and send it to two destinations at the same time with a multiudpsink element.
This works fine, except that both streams have the same RTP SSRC. Is there a way to set different SSRCs for the two streams ?
The solution I found was to use a
teeelement and have multiple legs that each have their own RTP encoder (in my casertpopuspay) andmultiupdsinkelement.That way each feeds gets a different SSRC.