mungeSdpForSimulcasting method
- dynamic sdp
Implementation
mungeSdpForSimulcasting(sdp) {
// Let's munge the SDP to add the attributes for enabling simulcasting
// (based on https://gist.github.com/ggarber/a19b4c33510028b9c657)
var sdpSession = parse(sdp);
// TODO
// Need to be ported for dart
return write(sdpSession, null);
}