Add overhead per packet observer to the rtp_sender.

BUG=webrtc:6638

Review-Url: https://codereview.webrtc.org/2495553002
Cr-Commit-Position: refs/heads/master@{#15124}
This commit is contained in:
michaelt
2016-11-17 01:38:43 -08:00
committed by Commit bot
parent 4a4b3cfc01
commit 4da304407c
6 changed files with 158 additions and 44 deletions

View File

@ -27,6 +27,7 @@
namespace webrtc {
// Forward declarations.
class OverheadObserver;
class RateLimiter;
class ReceiveStatistics;
class RemoteBitrateEstimator;
@ -89,6 +90,7 @@ class RtpRtcp : public Module {
RtcEventLog* event_log = nullptr;
SendPacketObserver* send_packet_observer = nullptr;
RateLimiter* retransmission_rate_limiter = nullptr;
OverheadObserver* overhead_observer = nullptr;
private:
RTC_DISALLOW_COPY_AND_ASSIGN(Configuration);