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

Unified Diff: webrtc/voice_engine/channel.cc

Issue 2996643002: BWE allocation strategy
Patch Set: BWE allocation strategy Created 3 years, 4 months 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
Index: webrtc/voice_engine/channel.cc
diff --git a/webrtc/voice_engine/channel.cc b/webrtc/voice_engine/channel.cc
index 16122709c31fe976ddde3c63a477d78957f72070..b7f2f9f964852fa054a3bff703745ead5a19a1f9 100644
--- a/webrtc/voice_engine/channel.cc
+++ b/webrtc/voice_engine/channel.cc
@@ -321,6 +321,13 @@ class RtpPacketSenderProxy : public RtpPacketSender {
}
}
+ void AccountForAudioPackets(bool account_for_audio) override {
stefan-webrtc 2017/08/14 07:46:03 I don't think this should ever be called as it's a
alexnarest 2017/08/15 06:02:37 Done.
+ rtc::CritScope lock(&crit_);
+ if (rtp_packet_sender_) {
+ rtp_packet_sender_->AccountForAudioPackets(account_for_audio);
+ }
+ }
+
private:
rtc::ThreadChecker thread_checker_;
rtc::CriticalSection crit_;

Powered by Google App Engine
This is Rietveld 408576698