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

Unified Diff: media/cast/cast_config.cc

Issue 1012573002: Remove rtcp_interval from cast_config (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « media/cast/cast_config.h ('k') | media/cast/receiver/frame_receiver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/cast_config.cc
diff --git a/media/cast/cast_config.cc b/media/cast/cast_config.cc
index 0368affeab20703b5a677e171828e0e3ff5984a2..e361f158c49964ea43bed553693d00c964938fd7 100644
--- a/media/cast/cast_config.cc
+++ b/media/cast/cast_config.cc
@@ -24,7 +24,6 @@ namespace cast {
VideoSenderConfig::VideoSenderConfig()
: ssrc(0),
receiver_ssrc(0),
- rtcp_interval(kDefaultRtcpIntervalMs),
max_playout_delay(
base::TimeDelta::FromMilliseconds(kDefaultRtpMaxDelayMs)),
rtp_payload_type(0),
@@ -45,7 +44,6 @@ VideoSenderConfig::~VideoSenderConfig() {}
AudioSenderConfig::AudioSenderConfig()
: ssrc(0),
receiver_ssrc(0),
- rtcp_interval(kDefaultRtcpIntervalMs),
max_playout_delay(
base::TimeDelta::FromMilliseconds(kDefaultRtpMaxDelayMs)),
rtp_payload_type(0),
@@ -60,7 +58,6 @@ AudioSenderConfig::~AudioSenderConfig() {}
FrameReceiverConfig::FrameReceiverConfig()
: receiver_ssrc(0),
sender_ssrc(0),
- rtcp_interval(kDefaultRtcpIntervalMs),
rtp_max_delay_ms(kDefaultRtpMaxDelayMs),
rtp_payload_type(0),
rtp_timebase(0),
« no previous file with comments | « media/cast/cast_config.h ('k') | media/cast/receiver/frame_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698