Make negotiationneeded processing in PeerConnection spec compliant.
This CL fixes the problem of misfired negotiationneeded notifications due to the lack of a NegotiationNeeded slot and the proper procedure to update it. Change-Id: Ie273c691f11316c9846606446f6cf838226b5d5c Bug: chromium:740501 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/131283 Commit-Queue: Guido Urdaneta <guidou@webrtc.org> Reviewed-by: Steve Anton <steveanton@webrtc.org> Reviewed-by: Henrik Boström <hbos@webrtc.org> Reviewed-by: Magnus Jedvert <magjed@webrtc.org> Cr-Commit-Position: refs/heads/master@{#27594}
This commit is contained in:

committed by
Commit Bot

parent
16cb8f5d74
commit
1fa06041bc
@ -44,6 +44,11 @@ RtpTransceiverDirection RtpTransceiverDirectionWithRecvSet(
|
||||
// Returns an unspecified string representation of the given direction.
|
||||
const char* RtpTransceiverDirectionToString(RtpTransceiverDirection direction);
|
||||
|
||||
// Returns the intersection of the directions of two transceivers.
|
||||
RtpTransceiverDirection RtpTransceiverDirectionIntersection(
|
||||
RtpTransceiverDirection lhs,
|
||||
RtpTransceiverDirection rhs);
|
||||
|
||||
#ifdef UNIT_TEST
|
||||
inline std::ostream& operator<<( // no-presubmit-check TODO(webrtc:8982)
|
||||
std::ostream& os, // no-presubmit-check TODO(webrtc:8982)
|
||||
|
Reference in New Issue
Block a user