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

Side by Side Diff: webrtc/call/bitrate_estimator_tests.cc

Issue 2383493005: Revert of Let ViEEncoder handle resolution changes. (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 unified diff | Download patch
« no previous file with comments | « webrtc/api/videocapturertracksource_unittest.cc ('k') | webrtc/call/call_perf_tests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 #include <functional> 10 #include <functional>
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 receive_transport_.reset(new test::DirectTransport(receiver_call_.get())); 120 receive_transport_.reset(new test::DirectTransport(receiver_call_.get()));
121 receive_transport_->SetReceiver(sender_call_->Receiver()); 121 receive_transport_->SetReceiver(sender_call_->Receiver());
122 122
123 video_send_config_ = VideoSendStream::Config(send_transport_.get()); 123 video_send_config_ = VideoSendStream::Config(send_transport_.get());
124 video_send_config_.rtp.ssrcs.push_back(kVideoSendSsrcs[0]); 124 video_send_config_.rtp.ssrcs.push_back(kVideoSendSsrcs[0]);
125 // Encoders will be set separately per stream. 125 // Encoders will be set separately per stream.
126 video_send_config_.encoder_settings.encoder = nullptr; 126 video_send_config_.encoder_settings.encoder = nullptr;
127 video_send_config_.encoder_settings.payload_name = "FAKE"; 127 video_send_config_.encoder_settings.payload_name = "FAKE";
128 video_send_config_.encoder_settings.payload_type = 128 video_send_config_.encoder_settings.payload_type =
129 kFakeVideoSendPayloadType; 129 kFakeVideoSendPayloadType;
130 test::FillEncoderConfiguration(1, &video_encoder_config_); 130 video_encoder_config_.streams = test::CreateVideoStreams(1);
131 131
132 receive_config_ = VideoReceiveStream::Config(receive_transport_.get()); 132 receive_config_ = VideoReceiveStream::Config(receive_transport_.get());
133 // receive_config_.decoders will be set by every stream separately. 133 // receive_config_.decoders will be set by every stream separately.
134 receive_config_.rtp.remote_ssrc = video_send_config_.rtp.ssrcs[0]; 134 receive_config_.rtp.remote_ssrc = video_send_config_.rtp.ssrcs[0];
135 receive_config_.rtp.local_ssrc = kReceiverLocalVideoSsrc; 135 receive_config_.rtp.local_ssrc = kReceiverLocalVideoSsrc;
136 receive_config_.rtp.remb = true; 136 receive_config_.rtp.remb = true;
137 receive_config_.rtp.extensions.push_back( 137 receive_config_.rtp.extensions.push_back(
138 RtpExtension(RtpExtension::kTimestampOffsetUri, kTOFExtensionId)); 138 RtpExtension(RtpExtension::kTimestampOffsetUri, kTOFExtensionId));
139 receive_config_.rtp.extensions.push_back( 139 receive_config_.rtp.extensions.push_back(
140 RtpExtension(RtpExtension::kAbsSendTimeUri, kASTExtensionId)); 140 RtpExtension(RtpExtension::kAbsSendTimeUri, kASTExtensionId));
(...skipping 27 matching lines...) Expand all
168 audio_receive_stream_(nullptr), 168 audio_receive_stream_(nullptr),
169 video_receive_stream_(nullptr), 169 video_receive_stream_(nullptr),
170 frame_generator_capturer_(), 170 frame_generator_capturer_(),
171 fake_encoder_(Clock::GetRealTimeClock()), 171 fake_encoder_(Clock::GetRealTimeClock()),
172 fake_decoder_() { 172 fake_decoder_() {
173 test_->video_send_config_.rtp.ssrcs[0]++; 173 test_->video_send_config_.rtp.ssrcs[0]++;
174 test_->video_send_config_.encoder_settings.encoder = &fake_encoder_; 174 test_->video_send_config_.encoder_settings.encoder = &fake_encoder_;
175 send_stream_ = test_->sender_call_->CreateVideoSendStream( 175 send_stream_ = test_->sender_call_->CreateVideoSendStream(
176 test_->video_send_config_.Copy(), 176 test_->video_send_config_.Copy(),
177 test_->video_encoder_config_.Copy()); 177 test_->video_encoder_config_.Copy());
178 RTC_DCHECK_EQ(1u, test_->video_encoder_config_.number_of_streams); 178 RTC_DCHECK_EQ(1u, test_->video_encoder_config_.streams.size());
179 frame_generator_capturer_.reset(test::FrameGeneratorCapturer::Create( 179 frame_generator_capturer_.reset(test::FrameGeneratorCapturer::Create(
180 kDefaultWidth, kDefaultHeight, kDefaultFramerate, 180 test_->video_encoder_config_.streams[0].width,
181 test_->video_encoder_config_.streams[0].height, 30,
181 Clock::GetRealTimeClock())); 182 Clock::GetRealTimeClock()));
182 send_stream_->SetSource(frame_generator_capturer_.get()); 183 send_stream_->SetSource(frame_generator_capturer_.get());
183 send_stream_->Start(); 184 send_stream_->Start();
184 frame_generator_capturer_->Start(); 185 frame_generator_capturer_->Start();
185 186
186 if (receive_audio) { 187 if (receive_audio) {
187 AudioReceiveStream::Config receive_config; 188 AudioReceiveStream::Config receive_config;
188 receive_config.rtp.remote_ssrc = test_->video_send_config_.rtp.ssrcs[0]; 189 receive_config.rtp.remote_ssrc = test_->video_send_config_.rtp.ssrcs[0];
189 // Bogus non-default id to prevent hitting a RTC_DCHECK when creating 190 // Bogus non-default id to prevent hitting a RTC_DCHECK when creating
190 // the AudioReceiveStream. Every receive stream has to correspond to 191 // the AudioReceiveStream. Every receive stream has to correspond to
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 RtpExtension(RtpExtension::kTimestampOffsetUri, kTOFExtensionId); 324 RtpExtension(RtpExtension::kTimestampOffsetUri, kTOFExtensionId);
324 receiver_log_.PushExpectedLogLine(kAbsSendTimeLog); 325 receiver_log_.PushExpectedLogLine(kAbsSendTimeLog);
325 receiver_log_.PushExpectedLogLine( 326 receiver_log_.PushExpectedLogLine(
326 "WrappingBitrateEstimator: Switching to transmission time offset RBE."); 327 "WrappingBitrateEstimator: Switching to transmission time offset RBE.");
327 streams_.push_back(new Stream(this, false)); 328 streams_.push_back(new Stream(this, false));
328 streams_[0]->StopSending(); 329 streams_[0]->StopSending();
329 streams_[1]->StopSending(); 330 streams_[1]->StopSending();
330 EXPECT_TRUE(receiver_log_.Wait()); 331 EXPECT_TRUE(receiver_log_.Wait());
331 } 332 }
332 } // namespace webrtc 333 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/api/videocapturertracksource_unittest.cc ('k') | webrtc/call/call_perf_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698