Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Unified Diff: webrtc/voice_engine/channel.h

Issue 2565353002: Wire-up audio BWE with overhead. (Closed)
Patch Set: Response to comments. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/voice_engine/channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/channel.h
diff --git a/webrtc/voice_engine/channel.h b/webrtc/voice_engine/channel.h
index 4056c7fb5688b5b7de5357ab70b876c2a1ef0c32..01907d269b1fa2eab5ce5396a1e09f16ce3e326b 100644
--- a/webrtc/voice_engine/channel.h
+++ b/webrtc/voice_engine/channel.h
@@ -144,8 +144,8 @@ class Channel
public AudioPacketizationCallback, // receive encoded packets from the
// ACM
public ACMVADCallback, // receive voice activity from the ACM
- public MixerParticipant // supplies output mixer with audio frames
-{
+ public MixerParticipant, // supplies output mixer with audio frames
+ public OverheadObserver {
public:
friend class VoERtcpObserver;
@@ -417,6 +417,9 @@ class Channel
void SetRtcpRttStats(RtcpRttStats* rtcp_rtt_stats);
void SetTransportOverhead(int transport_overhead_per_packet);
+ // From OverheadObserver in the RTP/RTCP module
stefan-webrtc 2016/12/14 11:44:20 End with "."
+ void OnOverheadChanged(size_t overhead_bytes_per_packet) override;
+
protected:
void OnIncomingFractionLoss(int fraction_lost);
« no previous file with comments | « no previous file | webrtc/voice_engine/channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698