Add FIXME comment to the Rust sendrecv example for implementation proper SDP negotiation

This commit is contained in:
Sebastian Dröge 2019-07-09 14:51:41 +03:00
parent a8fca4037d
commit 48130e07a1

View file

@ -582,6 +582,10 @@ impl App {
} else if type_ == "offer" {
print!("Received offer:\n{}\n", sdp);
// FIXME: We need to do negotiation here based on what the peer offers us in the SDP
// and what we can produce. For example all RTCP or RTP header extensions we don't
// understand have to be removed, and similarly we have to negotiate the codecs.
// Need to start the pipeline as a first step here
self.setup_pipeline()?;