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

Unified Diff: media/cast/cast_config.cc

Issue 306783002: [Cast] Clean-up: Merge AudioReceiverConfig+VideoReceiverConfig-->FrameReceiverConfig. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 6 years, 7 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: media/cast/cast_config.cc
diff --git a/media/cast/cast_config.cc b/media/cast/cast_config.cc
index c4702697751c12c167fa6c61fd7bd867ad2ffb2d..0e7953af01e08e7613041b4b70c5ad16269cac86 100644
--- a/media/cast/cast_config.cc
+++ b/media/cast/cast_config.cc
@@ -48,28 +48,18 @@ AudioSenderConfig::AudioSenderConfig()
channels(0),
bitrate(0) {}
-AudioReceiverConfig::AudioReceiverConfig()
+FrameReceiverConfig::FrameReceiverConfig()
: feedback_ssrc(0),
incoming_ssrc(0),
rtcp_interval(kDefaultRtcpIntervalMs),
rtcp_mode(kRtcpReducedSize),
rtp_max_delay_ms(kDefaultRtpMaxDelayMs),
rtp_payload_type(0),
- use_external_decoder(false),
frequency(0),
- channels(0) {}
+ channels(0),
+ max_frame_rate(0) {}
-VideoReceiverConfig::VideoReceiverConfig()
- : feedback_ssrc(0),
- incoming_ssrc(0),
- rtcp_interval(kDefaultRtcpIntervalMs),
- rtcp_mode(kRtcpReducedSize),
- rtp_max_delay_ms(kDefaultRtpMaxDelayMs),
- rtp_payload_type(0),
- use_external_decoder(false),
- max_frame_rate(kDefaultMaxFrameRate),
- decoder_faster_than_max_frame_rate(true),
- codec(transport::kVp8) {}
+FrameReceiverConfig::~FrameReceiverConfig() {}
} // namespace cast
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698