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

Unified Diff: webrtc/voice_engine/channel.cc

Issue 2437503004: Set actual transport overhead in rtp_rtcp (Closed)
Patch Set: Created 4 years, 2 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 e36e54d07502fbbfa27182c04aea646bd227951d..eccc4a76fc7453f90dec7752e1ef7349fc2cda66 100644
--- a/webrtc/voice_engine/channel.cc
+++ b/webrtc/voice_engine/channel.cc
@@ -2844,6 +2844,10 @@ void Channel::SetRtcEventLog(RtcEventLog* event_log) {
event_log_proxy_->SetEventLog(event_log);
}
+void Channel::SetTransportOverhead(int transport_overhead_per_packet_byte) {
+ _rtpRtcpModule->SetTransportOverhead(transport_overhead_per_packet_byte);
the sun 2016/10/20 08:56:46 Either remove the return value of RtpRtcp::SetTran
michaelt 2016/10/20 09:38:05 I remove the return value of the function.
+}
+
int Channel::RegisterExternalMediaProcessing(ProcessingTypes type,
VoEMediaProcess& processObject) {
WEBRTC_TRACE(kTraceInfo, kTraceVoice, VoEId(_instanceId, _channelId),

Powered by Google App Engine
This is Rietveld 408576698