Revert of Wire up send-side bandwidth estimation. (patchset #8 id:140001 of https://codereview.webrtc.org/1338203003/ )
Reason for revert: Breaking some Android bots. https://chromegw.corp.google.com/i/client.webrtc/builders/Android32%20Tests%20%28L%20Nexus5%29 Original issue's description: > Wire up send-side bandwidth estimation. > > BUG=webrtc:4173 > > Committed: https://crrev.com/ef165eefc79cf28bb67779afe303cc2365885547 > Cr-Commit-Position: refs/heads/master@{#10012} TBR=stefan@webrtc.org, kjellander@webrtc.org NOPRESUBMIT=false NOTREECHECKS=false NOTRY=false BUG=webrtc:4173 Review URL: https://codereview.webrtc.org/1362923002 . Cr-Commit-Position: refs/heads/master@{#10029}
This commit is contained in:
@ -91,9 +91,6 @@ class RtcpPacket {
|
||||
size_t max_length,
|
||||
PacketReadyCallback* callback) const;
|
||||
|
||||
// Size of this packet in bytes (including headers, excluding nested packets).
|
||||
virtual size_t BlockLength() const = 0;
|
||||
|
||||
protected:
|
||||
RtcpPacket() {}
|
||||
|
||||
@ -112,6 +109,7 @@ class RtcpPacket {
|
||||
size_t* index,
|
||||
RtcpPacket::PacketReadyCallback* callback) const;
|
||||
|
||||
virtual size_t BlockLength() const = 0;
|
||||
size_t HeaderLength() const;
|
||||
|
||||
static const size_t kHeaderLength = 4;
|
||||
|
||||
Reference in New Issue
Block a user