Simulcast work to enable RID mux.
Rids can now be sent using rtp_sender. Hooking up the rid values in the voice and video engine is still WIP. Bug: webrtc:10074 Change-Id: I245c7ecb23b67fc0ba65caaa5dbb4fcfd60c81bb Reviewed-on: https://webrtc-review.googlesource.com/c/114505 Commit-Queue: Amit Hilbuch <amithi@webrtc.org> Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Reviewed-by: Steve Anton <steveanton@webrtc.org> Reviewed-by: Seth Hampson <shampson@webrtc.org> Reviewed-by: Fredrik Solenberg <solenberg@webrtc.org> Reviewed-by: Sam Zackrisson <saza@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26092}
This commit is contained in:
@ -335,6 +335,12 @@ void ModuleRtpRtcpImpl::SetSSRC(const uint32_t ssrc) {
|
||||
SetRtcpReceiverSsrcs(ssrc);
|
||||
}
|
||||
|
||||
void ModuleRtpRtcpImpl::SetRid(const std::string& rid) {
|
||||
if (rtp_sender_) {
|
||||
rtp_sender_->SetRid(rid);
|
||||
}
|
||||
}
|
||||
|
||||
void ModuleRtpRtcpImpl::SetMid(const std::string& mid) {
|
||||
if (rtp_sender_) {
|
||||
rtp_sender_->SetMid(mid);
|
||||
|
||||
Reference in New Issue
Block a user