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

Unified Diff: media/cast/net/cast_transport_sender_impl_unittest.cc

Issue 560223002: [Cast] Limit frames in flight by duration, and not by number of frames. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweaks. Created 6 years, 3 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/net/cast_transport_config.cc ('k') | media/cast/net/rtp/packet_storage.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/net/cast_transport_sender_impl_unittest.cc
diff --git a/media/cast/net/cast_transport_sender_impl_unittest.cc b/media/cast/net/cast_transport_sender_impl_unittest.cc
index 606c5775f93f6e80a5ece693763aca38b93f9d1c..3ba40d237f7218147e7803a40a3fa7eafb4dd115 100644
--- a/media/cast/net/cast_transport_sender_impl_unittest.cc
+++ b/media/cast/net/cast_transport_sender_impl_unittest.cc
@@ -110,7 +110,6 @@ class CastTransportSenderImplTest : public ::testing::Test {
rtp_config.ssrc = kVideoSsrc;
rtp_config.feedback_ssrc = 2;
rtp_config.rtp_payload_type = 3;
- rtp_config.stored_frames = 10;
transport_sender_->InitializeVideo(rtp_config,
RtcpCastMessageCallback(),
RtcpRttCallback());
@@ -121,7 +120,6 @@ class CastTransportSenderImplTest : public ::testing::Test {
rtp_config.ssrc = kAudioSsrc;
rtp_config.feedback_ssrc = 3;
rtp_config.rtp_payload_type = 4;
- rtp_config.stored_frames = 10;
transport_sender_->InitializeAudio(rtp_config,
RtcpCastMessageCallback(),
RtcpRttCallback());
« no previous file with comments | « media/cast/net/cast_transport_config.cc ('k') | media/cast/net/rtp/packet_storage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698