Wire up send-side bandwidth estimation.

BUG=webrtc:4173

Review URL: https://codereview.webrtc.org/1338203003

Cr-Commit-Position: refs/heads/master@{#10012}
This commit is contained in:
sprang
2015-09-22 05:10:52 -07:00
committed by Commit bot
parent 22011c1b54
commit ef165eefc7
26 changed files with 430 additions and 111 deletions

View File

@ -91,6 +91,9 @@ 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() {}
@ -109,7 +112,6 @@ 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;