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

Unified Diff: webrtc/video/video_send_stream_tests.cc

Issue 2500943002: Add FlexFEC to CallTest. (Closed)
Patch Set: Rebase. Created 4 years, 1 month 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 | « webrtc/video/video_quality_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/video_send_stream_tests.cc
diff --git a/webrtc/video/video_send_stream_tests.cc b/webrtc/video/video_send_stream_tests.cc
index 088bdf50046746ed16599f241eed26b24a976946..f6112f9ed9ffeba2043a2c9cd1670323f63317b4 100644
--- a/webrtc/video/video_send_stream_tests.cc
+++ b/webrtc/video/video_send_stream_tests.cc
@@ -65,7 +65,7 @@ TEST_F(VideoSendStreamTest, CanStartStartedStream) {
CreateSenderCall(Call::Config(&event_log_));
test::NullTransport transport;
- CreateSendConfig(1, 0, &transport);
+ CreateSendConfig(1, 0, 0, &transport);
CreateVideoStreams();
video_send_stream_->Start();
video_send_stream_->Start();
@@ -76,7 +76,7 @@ TEST_F(VideoSendStreamTest, CanStopStoppedStream) {
CreateSenderCall(Call::Config(&event_log_));
test::NullTransport transport;
- CreateSendConfig(1, 0, &transport);
+ CreateSendConfig(1, 0, 0, &transport);
CreateVideoStreams();
video_send_stream_->Stop();
video_send_stream_->Stop();
@@ -1517,7 +1517,7 @@ TEST_F(VideoSendStreamTest,
CreateSenderCall(Call::Config(&event_log_));
test::NullTransport transport;
- CreateSendConfig(1, 0, &transport);
+ CreateSendConfig(1, 0, 0, &transport);
EncoderObserver encoder;
video_send_config_.encoder_settings.encoder = &encoder;
CreateVideoStreams();
@@ -1574,7 +1574,7 @@ TEST_F(VideoSendStreamTest, CanReconfigureToUseStartBitrateAbovePreviousMax) {
CreateSenderCall(Call::Config(&event_log_));
test::NullTransport transport;
- CreateSendConfig(1, 0, &transport);
+ CreateSendConfig(1, 0, 0, &transport);
Call::Config::BitrateConfig bitrate_config;
bitrate_config.start_bitrate_bps = 2 * video_encoder_config_.max_bitrate_bps;
@@ -1655,7 +1655,7 @@ TEST_F(VideoSendStreamTest, VideoSendStreamStopSetEncoderRateToZero) {
CreateSenderCall(Call::Config(&event_log_));
test::NullTransport transport;
- CreateSendConfig(1, 0, &transport);
+ CreateSendConfig(1, 0, 0, &transport);
StartStopBitrateObserver encoder;
video_send_config_.encoder_settings.encoder = &encoder;
@@ -1710,7 +1710,7 @@ TEST_F(VideoSendStreamTest, CapturesTextureAndVideoFrames) {
CreateSenderCall(Call::Config(&event_log_));
test::NullTransport transport;
- CreateSendConfig(1, 0, &transport);
+ CreateSendConfig(1, 0, 0, &transport);
FrameObserver observer;
video_send_config_.pre_encode_callback = &observer;
CreateVideoStreams();
@@ -2965,7 +2965,7 @@ void VideoSendStreamTest::TestRequestSourceRotateVideo(
CreateSenderCall(Call::Config(&event_log_));
test::NullTransport transport;
- CreateSendConfig(1, 0, &transport);
+ CreateSendConfig(1, 0, 0, &transport);
video_send_config_.rtp.extensions.clear();
if (support_orientation_ext) {
video_send_config_.rtp.extensions.push_back(
« no previous file with comments | « webrtc/video/video_quality_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698