blob: db3b5e4c040587d4c4c925f87eb640a8dc2c1b49 [file] [log] [blame]
pbos@webrtc.org1d096902013-12-13 12:48:05 +00001/*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
asaperssonf8cdd182016-03-15 01:00:47 -070010
pbos@webrtc.org1d096902013-12-13 12:48:05 +000011#include <algorithm>
asaperssonf8cdd182016-03-15 01:00:47 -070012#include <limits>
kwibergb25345e2016-03-12 06:10:44 -080013#include <memory>
pbos@webrtc.org1d096902013-12-13 12:48:05 +000014#include <string>
15
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020016#include "api/audio_codecs/builtin_audio_encoder_factory.h"
17#include "call/call.h"
18#include "call/video_config.h"
19#include "logging/rtc_event_log/rtc_event_log.h"
20#include "modules/audio_coding/include/audio_coding_module.h"
21#include "modules/audio_mixer/audio_mixer_impl.h"
22#include "modules/rtp_rtcp/include/rtp_header_parser.h"
Alex Narestd0e196b2017-11-22 17:22:35 +010023#include "rtc_base/bitrateallocationstrategy.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020024#include "rtc_base/checks.h"
25#include "rtc_base/ptr_util.h"
26#include "rtc_base/thread_annotations.h"
27#include "system_wrappers/include/metrics_default.h"
28#include "test/call_test.h"
29#include "test/direct_transport.h"
30#include "test/drifting_clock.h"
31#include "test/encoder_settings.h"
32#include "test/fake_audio_device.h"
33#include "test/fake_encoder.h"
34#include "test/field_trial.h"
35#include "test/frame_generator.h"
36#include "test/frame_generator_capturer.h"
37#include "test/gtest.h"
38#include "test/rtp_rtcp_observer.h"
39#include "test/single_threaded_task_queue.h"
40#include "test/testsupport/fileutils.h"
41#include "test/testsupport/perf_test.h"
42#include "video/transport_adapter.h"
43#include "voice_engine/include/voe_base.h"
pbos@webrtc.org1d096902013-12-13 12:48:05 +000044
danilchap9c6a0c72016-02-10 10:54:47 -080045using webrtc::test::DriftingClock;
46using webrtc::test::FakeAudioDevice;
47
pbos@webrtc.org1d096902013-12-13 12:48:05 +000048namespace webrtc {
49
pbos@webrtc.org994d0b72014-06-27 08:47:52 +000050class CallPerfTest : public test::CallTest {
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +000051 protected:
Danil Chapovalovcde5d6b2016-02-15 11:14:58 +010052 enum class FecMode {
53 kOn, kOff
54 };
55 enum class CreateOrder {
56 kAudioFirst, kVideoFirst
57 };
58 void TestAudioVideoSync(FecMode fec,
59 CreateOrder create_first,
danilchap9c6a0c72016-02-10 10:54:47 -080060 float video_ntp_speed,
61 float video_rtp_speed,
62 float audio_rtp_speed);
stefan@webrtc.org01581da2014-09-04 06:48:14 +000063
pbos@webrtc.org3349ae02014-03-13 12:52:27 +000064 void TestMinTransmitBitrate(bool pad_to_min_bitrate);
65
wu@webrtc.orgcd701192014-04-24 22:10:24 +000066 void TestCaptureNtpTime(const FakeNetworkPipe::Config& net_config,
67 int threshold_ms,
68 int start_time_ms,
69 int run_time_ms);
Alex Narestd0e196b2017-11-22 17:22:35 +010070 void TestMinAudioVideoBitrate(bool use_bitrate_allocation_strategy,
71 int test_bitrate_from,
72 int test_bitrate_to,
73 int test_bitrate_step,
74 int min_bwe,
75 int start_bwe,
76 int max_bwe);
pbos@webrtc.org1d096902013-12-13 12:48:05 +000077};
78
asaperssonf8cdd182016-03-15 01:00:47 -070079class VideoRtcpAndSyncObserver : public test::RtpRtcpObserver,
nisse7ade7b32016-03-23 04:48:10 -070080 public rtc::VideoSinkInterface<VideoFrame> {
pbos@webrtc.org1d096902013-12-13 12:48:05 +000081 static const int kInSyncThresholdMs = 50;
82 static const int kStartupTimeMs = 2000;
83 static const int kMinRunTimeMs = 30000;
84
85 public:
asaperssonf8cdd182016-03-15 01:00:47 -070086 explicit VideoRtcpAndSyncObserver(Clock* clock)
87 : test::RtpRtcpObserver(CallPerfTest::kLongTimeoutMs),
88 clock_(clock),
pbos@webrtc.org1d096902013-12-13 12:48:05 +000089 creation_time_ms_(clock_->TimeInMilliseconds()),
asaperssonf8cdd182016-03-15 01:00:47 -070090 first_time_in_sync_(-1),
91 receive_stream_(nullptr) {}
pbos@webrtc.org1d096902013-12-13 12:48:05 +000092
nisseeb83a1a2016-03-21 01:27:56 -070093 void OnFrame(const VideoFrame& video_frame) override {
asaperssonf8cdd182016-03-15 01:00:47 -070094 VideoReceiveStream::Stats stats;
95 {
96 rtc::CritScope lock(&crit_);
97 if (receive_stream_)
98 stats = receive_stream_->GetStats();
99 }
100 if (stats.sync_offset_ms == std::numeric_limits<int>::max())
101 return;
102
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000103 int64_t now_ms = clock_->TimeInMilliseconds();
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000104 int64_t time_since_creation = now_ms - creation_time_ms_;
105 // During the first couple of seconds audio and video can falsely be
106 // estimated as being synchronized. We don't want to trigger on those.
107 if (time_since_creation < kStartupTimeMs)
108 return;
asaperssonf8cdd182016-03-15 01:00:47 -0700109 if (std::abs(stats.sync_offset_ms) < kInSyncThresholdMs) {
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000110 if (first_time_in_sync_ == -1) {
111 first_time_in_sync_ = now_ms;
112 webrtc::test::PrintResult("sync_convergence_time",
henrik.lundin@webrtc.orgd144bb62014-04-22 08:36:33 +0000113 "",
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000114 "synchronization",
115 time_since_creation,
116 "ms",
117 false);
118 }
119 if (time_since_creation > kMinRunTimeMs)
Peter Boström5811a392015-12-10 13:02:50 +0100120 observation_complete_.Set();
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000121 }
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200122 if (first_time_in_sync_ != -1)
123 sync_offset_ms_list_.push_back(stats.sync_offset_ms);
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000124 }
125
asaperssonf8cdd182016-03-15 01:00:47 -0700126 void set_receive_stream(VideoReceiveStream* receive_stream) {
127 rtc::CritScope lock(&crit_);
128 receive_stream_ = receive_stream;
129 }
130
danilchap46b89b92016-06-03 09:27:37 -0700131 void PrintResults() {
132 test::PrintResultList("stream_offset", "", "synchronization",
Edward Lemur2f061682017-11-24 13:40:01 +0100133 sync_offset_ms_list_, "ms", false);
danilchap46b89b92016-06-03 09:27:37 -0700134 }
135
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000136 private:
pbos@webrtc.orgde1429e2014-04-28 13:00:21 +0000137 Clock* const clock_;
stefanf116bd02015-10-27 08:29:42 -0700138 const int64_t creation_time_ms_;
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000139 int64_t first_time_in_sync_;
asaperssonf8cdd182016-03-15 01:00:47 -0700140 rtc::CriticalSection crit_;
danilchapa37de392017-09-09 04:17:22 -0700141 VideoReceiveStream* receive_stream_ RTC_GUARDED_BY(crit_);
Edward Lemur2f061682017-11-24 13:40:01 +0100142 std::vector<double> sync_offset_ms_list_;
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000143};
144
Danil Chapovalovcde5d6b2016-02-15 11:14:58 +0100145void CallPerfTest::TestAudioVideoSync(FecMode fec,
146 CreateOrder create_first,
danilchap9c6a0c72016-02-10 10:54:47 -0800147 float video_ntp_speed,
148 float video_rtp_speed,
149 float audio_rtp_speed) {
pbos8fc7fa72015-07-15 08:02:58 -0700150 const char* kSyncGroup = "av_sync";
Stefan Holmerb86d4e42015-12-07 10:26:18 +0100151 const uint32_t kAudioSendSsrc = 1234;
152 const uint32_t kAudioRecvSsrc = 5678;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000153
eladalon413ee9a2017-08-22 04:02:52 -0700154 int send_channel_id;
155 int recv_channel_id;
asaperssonf8cdd182016-03-15 01:00:47 -0700156
mflodman3d7db262016-04-29 00:57:13 -0700157 FakeNetworkPipe::Config audio_net_config;
158 audio_net_config.queue_delay_ms = 500;
159 audio_net_config.loss_percent = 5;
minyue20c84cc2017-04-10 16:57:57 -0700160
eladalon413ee9a2017-08-22 04:02:52 -0700161 VoiceEngine* voice_engine;
162 VoEBase* voe_base;
eladalon413ee9a2017-08-22 04:02:52 -0700163 VideoRtcpAndSyncObserver observer(Clock::GetRealTimeClock());
164
minyue20c84cc2017-04-10 16:57:57 -0700165 std::map<uint8_t, MediaType> audio_pt_map;
166 std::map<uint8_t, MediaType> video_pt_map;
minyue20c84cc2017-04-10 16:57:57 -0700167
eladalon413ee9a2017-08-22 04:02:52 -0700168 std::unique_ptr<test::PacketTransport> audio_send_transport;
169 std::unique_ptr<test::PacketTransport> video_send_transport;
170 std::unique_ptr<test::PacketTransport> receive_transport;
mflodman3d7db262016-04-29 00:57:13 -0700171
eladalon413ee9a2017-08-22 04:02:52 -0700172 AudioSendStream* audio_send_stream;
Stefan Holmerb86d4e42015-12-07 10:26:18 +0100173 AudioReceiveStream* audio_receive_stream;
eladalon413ee9a2017-08-22 04:02:52 -0700174 std::unique_ptr<DriftingClock> drifting_clock;
pbos8fc7fa72015-07-15 08:02:58 -0700175
eladalon413ee9a2017-08-22 04:02:52 -0700176 task_queue_.SendTask([&]() {
177 metrics::Reset();
eladalon413ee9a2017-08-22 04:02:52 -0700178 voice_engine = VoiceEngine::Create();
179 voe_base = VoEBase::GetInterface(voice_engine);
Fredrik Solenberg2a877972017-12-15 16:42:15 +0100180 rtc::scoped_refptr<FakeAudioDevice> fake_audio_device =
181 new rtc::RefCountedObject<FakeAudioDevice>(
182 FakeAudioDevice::CreatePulsedNoiseCapturer(256, 48000),
183 FakeAudioDevice::CreateDiscardRenderer(48000), audio_rtp_speed);
Fredrik Solenbergd3195342017-11-21 20:33:05 +0100184 EXPECT_EQ(0, fake_audio_device->Init());
Fredrik Solenberg2a877972017-12-15 16:42:15 +0100185 EXPECT_EQ(0, voe_base->Init(fake_audio_device.get(), nullptr,
Rasmus Brandt31027342017-09-29 13:48:12 +0000186 decoder_factory_));
eladalon413ee9a2017-08-22 04:02:52 -0700187 VoEBase::ChannelConfig config;
188 config.enable_voice_pacing = true;
189 send_channel_id = voe_base->CreateChannel(config);
190 recv_channel_id = voe_base->CreateChannel();
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000191
eladalon413ee9a2017-08-22 04:02:52 -0700192 AudioState::Config send_audio_state_config;
193 send_audio_state_config.voice_engine = voice_engine;
194 send_audio_state_config.audio_mixer = AudioMixerImpl::Create();
Fredrik Solenberg2a877972017-12-15 16:42:15 +0100195 send_audio_state_config.audio_processing = AudioProcessing::Create();
196 send_audio_state_config.audio_device_module = fake_audio_device;
eladalon413ee9a2017-08-22 04:02:52 -0700197 Call::Config sender_config(event_log_.get());
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000198
Fredrik Solenbergd3195342017-11-21 20:33:05 +0100199 auto audio_state = AudioState::Create(send_audio_state_config);
200 fake_audio_device->RegisterAudioCallback(audio_state->audio_transport());
201 sender_config.audio_state = audio_state;
eladalon413ee9a2017-08-22 04:02:52 -0700202 Call::Config receiver_config(event_log_.get());
Fredrik Solenbergd3195342017-11-21 20:33:05 +0100203 receiver_config.audio_state = audio_state;
eladalon413ee9a2017-08-22 04:02:52 -0700204 CreateCalls(sender_config, receiver_config);
205
206 std::copy_if(std::begin(payload_type_map_), std::end(payload_type_map_),
207 std::inserter(audio_pt_map, audio_pt_map.end()),
208 [](const std::pair<const uint8_t, MediaType>& pair) {
209 return pair.second == MediaType::AUDIO;
210 });
211 std::copy_if(std::begin(payload_type_map_), std::end(payload_type_map_),
212 std::inserter(video_pt_map, video_pt_map.end()),
213 [](const std::pair<const uint8_t, MediaType>& pair) {
214 return pair.second == MediaType::VIDEO;
215 });
216
217 audio_send_transport = rtc::MakeUnique<test::PacketTransport>(
218 &task_queue_, sender_call_.get(), &observer,
219 test::PacketTransport::kSender, audio_pt_map, audio_net_config);
220 audio_send_transport->SetReceiver(receiver_call_->Receiver());
221
222 video_send_transport = rtc::MakeUnique<test::PacketTransport>(
223 &task_queue_, sender_call_.get(), &observer,
224 test::PacketTransport::kSender, video_pt_map,
225 FakeNetworkPipe::Config());
226 video_send_transport->SetReceiver(receiver_call_->Receiver());
227
228 receive_transport = rtc::MakeUnique<test::PacketTransport>(
229 &task_queue_, receiver_call_.get(), &observer,
230 test::PacketTransport::kReceiver, payload_type_map_,
231 FakeNetworkPipe::Config());
232 receive_transport->SetReceiver(sender_call_->Receiver());
233
234 CreateSendConfig(1, 0, 0, video_send_transport.get());
235 CreateMatchingReceiveConfigs(receive_transport.get());
236
237 AudioSendStream::Config audio_send_config(audio_send_transport.get());
238 audio_send_config.voe_channel_id = send_channel_id;
239 audio_send_config.rtp.ssrc = kAudioSendSsrc;
240 audio_send_config.send_codec_spec =
241 rtc::Optional<AudioSendStream::Config::SendCodecSpec>(
242 {kAudioSendPayloadType, {"ISAC", 16000, 1}});
243 audio_send_config.encoder_factory = CreateBuiltinAudioEncoderFactory();
244 audio_send_stream = sender_call_->CreateAudioSendStream(audio_send_config);
245
246 video_send_config_.rtp.nack.rtp_history_ms = kNackRtpHistoryMs;
247 if (fec == FecMode::kOn) {
248 video_send_config_.rtp.ulpfec.red_payload_type = kRedPayloadType;
249 video_send_config_.rtp.ulpfec.ulpfec_payload_type = kUlpfecPayloadType;
nisse3b3622f2017-09-26 02:49:21 -0700250 video_receive_configs_[0].rtp.red_payload_type = kRedPayloadType;
251 video_receive_configs_[0].rtp.ulpfec_payload_type = kUlpfecPayloadType;
eladalon413ee9a2017-08-22 04:02:52 -0700252 }
253 video_receive_configs_[0].rtp.nack.rtp_history_ms = 1000;
254 video_receive_configs_[0].renderer = &observer;
255 video_receive_configs_[0].sync_group = kSyncGroup;
256
257 AudioReceiveStream::Config audio_recv_config;
258 audio_recv_config.rtp.remote_ssrc = kAudioSendSsrc;
259 audio_recv_config.rtp.local_ssrc = kAudioRecvSsrc;
260 audio_recv_config.voe_channel_id = recv_channel_id;
261 audio_recv_config.sync_group = kSyncGroup;
Rasmus Brandt31027342017-09-29 13:48:12 +0000262 audio_recv_config.decoder_factory = decoder_factory_;
eladalon413ee9a2017-08-22 04:02:52 -0700263 audio_recv_config.decoder_map = {
264 {kAudioSendPayloadType, {"ISAC", 16000, 1}}};
265
266 if (create_first == CreateOrder::kAudioFirst) {
267 audio_receive_stream =
268 receiver_call_->CreateAudioReceiveStream(audio_recv_config);
269 CreateVideoStreams();
270 } else {
271 CreateVideoStreams();
272 audio_receive_stream =
273 receiver_call_->CreateAudioReceiveStream(audio_recv_config);
274 }
275 EXPECT_EQ(1u, video_receive_streams_.size());
276 observer.set_receive_stream(video_receive_streams_[0]);
277 drifting_clock = rtc::MakeUnique<DriftingClock>(clock_, video_ntp_speed);
278 CreateFrameGeneratorCapturerWithDrift(drifting_clock.get(), video_rtp_speed,
279 kDefaultFramerate, kDefaultWidth,
280 kDefaultHeight);
281
282 Start();
283
284 audio_send_stream->Start();
285 audio_receive_stream->Start();
286 });
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000287
Peter Boström5811a392015-12-10 13:02:50 +0100288 EXPECT_TRUE(observer.Wait())
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000289 << "Timed out while waiting for audio and video to be synchronized.";
290
eladalon413ee9a2017-08-22 04:02:52 -0700291 task_queue_.SendTask([&]() {
292 audio_send_stream->Stop();
293 audio_receive_stream->Stop();
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000294
eladalon413ee9a2017-08-22 04:02:52 -0700295 Stop();
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000296
eladalon413ee9a2017-08-22 04:02:52 -0700297 DestroyStreams();
Stefan Holmerb86d4e42015-12-07 10:26:18 +0100298
eladalon413ee9a2017-08-22 04:02:52 -0700299 video_send_transport.reset();
300 audio_send_transport.reset();
301 receive_transport.reset();
Stefan Holmerb86d4e42015-12-07 10:26:18 +0100302
eladalon413ee9a2017-08-22 04:02:52 -0700303 sender_call_->DestroyAudioSendStream(audio_send_stream);
304 receiver_call_->DestroyAudioReceiveStream(audio_receive_stream);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000305
eladalon413ee9a2017-08-22 04:02:52 -0700306 voe_base->DeleteChannel(send_channel_id);
307 voe_base->DeleteChannel(recv_channel_id);
308 voe_base->Release();
Fredrik Solenberg4f4ec0a2015-10-22 10:49:27 +0200309
eladalon413ee9a2017-08-22 04:02:52 -0700310 DestroyCalls();
311
312 VoiceEngine::Delete(voice_engine);
eladalon413ee9a2017-08-22 04:02:52 -0700313 });
asaperssonf8cdd182016-03-15 01:00:47 -0700314
danilchap46b89b92016-06-03 09:27:37 -0700315 observer.PrintResults();
ilnik5328b9e2017-02-21 05:20:28 -0800316
317 // In quick test synchronization may not be achieved in time.
sprange5d3a3e2017-03-01 06:20:56 -0800318 if (!field_trial::IsEnabled("WebRTC-QuickPerfTest")) {
ilnik5328b9e2017-02-21 05:20:28 -0800319 EXPECT_EQ(1, metrics::NumSamples("WebRTC.Video.AVSyncOffsetInMs"));
320 }
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000321}
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +0000322
danilchapac287ee2016-02-29 12:17:04 -0800323TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithVideoNtpDrift) {
Danil Chapovalovcde5d6b2016-02-15 11:14:58 +0100324 TestAudioVideoSync(FecMode::kOff, CreateOrder::kAudioFirst,
325 DriftingClock::PercentsFaster(10.0f),
danilchap9c6a0c72016-02-10 10:54:47 -0800326 DriftingClock::kNoDrift, DriftingClock::kNoDrift);
327}
328
danilchap9c6a0c72016-02-10 10:54:47 -0800329TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithAudioFasterThanVideoDrift) {
Danil Chapovalovcde5d6b2016-02-15 11:14:58 +0100330 TestAudioVideoSync(FecMode::kOff, CreateOrder::kAudioFirst,
331 DriftingClock::kNoDrift,
danilchap9c6a0c72016-02-10 10:54:47 -0800332 DriftingClock::PercentsSlower(30.0f),
333 DriftingClock::PercentsFaster(30.0f));
334}
335
336TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithVideoFasterThanAudioDrift) {
Danil Chapovalovcde5d6b2016-02-15 11:14:58 +0100337 TestAudioVideoSync(FecMode::kOn, CreateOrder::kVideoFirst,
338 DriftingClock::kNoDrift,
danilchap9c6a0c72016-02-10 10:54:47 -0800339 DriftingClock::PercentsFaster(30.0f),
340 DriftingClock::PercentsSlower(30.0f));
stefan@webrtc.org01581da2014-09-04 06:48:14 +0000341}
342
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000343void CallPerfTest::TestCaptureNtpTime(const FakeNetworkPipe::Config& net_config,
344 int threshold_ms,
345 int start_time_ms,
346 int run_time_ms) {
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000347 class CaptureNtpTimeObserver : public test::EndToEndTest,
nisse7ade7b32016-03-23 04:48:10 -0700348 public rtc::VideoSinkInterface<VideoFrame> {
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000349 public:
stefane74eef12016-01-08 06:47:13 -0800350 CaptureNtpTimeObserver(const FakeNetworkPipe::Config& net_config,
351 int threshold_ms,
352 int start_time_ms,
353 int run_time_ms)
stefanf116bd02015-10-27 08:29:42 -0700354 : EndToEndTest(kLongTimeoutMs),
stefane74eef12016-01-08 06:47:13 -0800355 net_config_(net_config),
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000356 clock_(Clock::GetRealTimeClock()),
357 threshold_ms_(threshold_ms),
358 start_time_ms_(start_time_ms),
359 run_time_ms_(run_time_ms),
360 creation_time_ms_(clock_->TimeInMilliseconds()),
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24 +0000361 capturer_(nullptr),
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000362 rtp_start_timestamp_set_(false),
363 rtp_start_timestamp_(0) {}
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000364
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000365 private:
eladalon413ee9a2017-08-22 04:02:52 -0700366 test::PacketTransport* CreateSendTransport(
367 test::SingleThreadedTaskQueueForTesting* task_queue,
368 Call* sender_call) override {
369 return new test::PacketTransport(task_queue, sender_call, this,
minyue20c84cc2017-04-10 16:57:57 -0700370 test::PacketTransport::kSender,
371 payload_type_map_, net_config_);
stefane74eef12016-01-08 06:47:13 -0800372 }
373
eladalon413ee9a2017-08-22 04:02:52 -0700374 test::PacketTransport* CreateReceiveTransport(
375 test::SingleThreadedTaskQueueForTesting* task_queue) override {
376 return new test::PacketTransport(task_queue, nullptr, this,
minyue20c84cc2017-04-10 16:57:57 -0700377 test::PacketTransport::kReceiver,
378 payload_type_map_, net_config_);
Stefan Holmerea8c0f62016-01-13 08:58:38 +0100379 }
380
nisseeb83a1a2016-03-21 01:27:56 -0700381 void OnFrame(const VideoFrame& video_frame) override {
stefanf116bd02015-10-27 08:29:42 -0700382 rtc::CritScope lock(&crit_);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000383 if (video_frame.ntp_time_ms() <= 0) {
384 // Haven't got enough RTCP SR in order to calculate the capture ntp
385 // time.
386 return;
387 }
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000388
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000389 int64_t now_ms = clock_->TimeInMilliseconds();
390 int64_t time_since_creation = now_ms - creation_time_ms_;
391 if (time_since_creation < start_time_ms_) {
392 // Wait for |start_time_ms_| before start measuring.
393 return;
394 }
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000395
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000396 if (time_since_creation > run_time_ms_) {
Peter Boström5811a392015-12-10 13:02:50 +0100397 observation_complete_.Set();
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000398 }
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000399
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000400 FrameCaptureTimeList::iterator iter =
401 capture_time_list_.find(video_frame.timestamp());
402 EXPECT_TRUE(iter != capture_time_list_.end());
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000403
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000404 // The real capture time has been wrapped to uint32_t before converted
405 // to rtp timestamp in the sender side. So here we convert the estimated
406 // capture time to a uint32_t 90k timestamp also for comparing.
407 uint32_t estimated_capture_timestamp =
408 90 * static_cast<uint32_t>(video_frame.ntp_time_ms());
409 uint32_t real_capture_timestamp = iter->second;
410 int time_offset_ms = real_capture_timestamp - estimated_capture_timestamp;
411 time_offset_ms = time_offset_ms / 90;
danilchap46b89b92016-06-03 09:27:37 -0700412 time_offset_ms_list_.push_back(time_offset_ms);
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000413
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000414 EXPECT_TRUE(std::abs(time_offset_ms) < threshold_ms_);
415 }
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000416
nisseef8b61e2016-04-29 06:09:15 -0700417 Action OnSendRtp(const uint8_t* packet, size_t length) override {
stefanf116bd02015-10-27 08:29:42 -0700418 rtc::CritScope lock(&crit_);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000419 RTPHeader header;
pbos@webrtc.org62bafae2014-07-08 12:10:51 +0000420 EXPECT_TRUE(parser_->Parse(packet, length, &header));
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000421
422 if (!rtp_start_timestamp_set_) {
423 // Calculate the rtp timestamp offset in order to calculate the real
424 // capture time.
425 uint32_t first_capture_timestamp =
426 90 * static_cast<uint32_t>(capturer_->first_frame_capture_time());
427 rtp_start_timestamp_ = header.timestamp - first_capture_timestamp;
428 rtp_start_timestamp_set_ = true;
429 }
430
431 uint32_t capture_timestamp = header.timestamp - rtp_start_timestamp_;
432 capture_time_list_.insert(
433 capture_time_list_.end(),
434 std::make_pair(header.timestamp, capture_timestamp));
435 return SEND_PACKET;
436 }
437
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000438 void OnFrameGeneratorCapturerCreated(
439 test::FrameGeneratorCapturer* frame_generator_capturer) override {
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000440 capturer_ = frame_generator_capturer;
441 }
442
stefanff483612015-12-21 03:14:00 -0800443 void ModifyVideoConfigs(
444 VideoSendStream::Config* send_config,
445 std::vector<VideoReceiveStream::Config>* receive_configs,
446 VideoEncoderConfig* encoder_config) override {
pbos@webrtc.orgbe9d2a42014-06-30 13:19:09 +0000447 (*receive_configs)[0].renderer = this;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000448 // Enable the receiver side rtt calculation.
pbos@webrtc.orgbe9d2a42014-06-30 13:19:09 +0000449 (*receive_configs)[0].rtp.rtcp_xr.receiver_reference_time_report = true;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000450 }
451
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000452 void PerformTest() override {
Peter Boström5811a392015-12-10 13:02:50 +0100453 EXPECT_TRUE(Wait()) << "Timed out while waiting for "
454 "estimated capture NTP time to be "
455 "within bounds.";
danilchap46b89b92016-06-03 09:27:37 -0700456 test::PrintResultList("capture_ntp_time", "", "real - estimated",
Edward Lemur2f061682017-11-24 13:40:01 +0100457 time_offset_ms_list_, "ms", true);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000458 }
459
stefanf116bd02015-10-27 08:29:42 -0700460 rtc::CriticalSection crit_;
stefane74eef12016-01-08 06:47:13 -0800461 const FakeNetworkPipe::Config net_config_;
stefanf116bd02015-10-27 08:29:42 -0700462 Clock* const clock_;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000463 int threshold_ms_;
464 int start_time_ms_;
465 int run_time_ms_;
466 int64_t creation_time_ms_;
467 test::FrameGeneratorCapturer* capturer_;
468 bool rtp_start_timestamp_set_;
469 uint32_t rtp_start_timestamp_;
470 typedef std::map<uint32_t, uint32_t> FrameCaptureTimeList;
danilchapa37de392017-09-09 04:17:22 -0700471 FrameCaptureTimeList capture_time_list_ RTC_GUARDED_BY(&crit_);
Edward Lemur2f061682017-11-24 13:40:01 +0100472 std::vector<double> time_offset_ms_list_;
stefane74eef12016-01-08 06:47:13 -0800473 } test(net_config, threshold_ms, start_time_ms, run_time_ms);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000474
stefane74eef12016-01-08 06:47:13 -0800475 RunBaseTest(&test);
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000476}
477
Alex Loiko5aea38c2017-09-27 13:10:28 +0200478// Flaky tests, disabled on Mac due to webrtc:8291.
479#if !(defined(WEBRTC_MAC))
wu@webrtc.org9aa7d8d2014-05-29 05:03:52 +0000480TEST_F(CallPerfTest, CaptureNtpTimeWithNetworkDelay) {
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000481 FakeNetworkPipe::Config net_config;
482 net_config.queue_delay_ms = 100;
483 // TODO(wu): lower the threshold as the calculation/estimatation becomes more
484 // accurate.
wu@webrtc.org9aa7d8d2014-05-29 05:03:52 +0000485 const int kThresholdMs = 100;
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000486 const int kStartTimeMs = 10000;
487 const int kRunTimeMs = 20000;
488 TestCaptureNtpTime(net_config, kThresholdMs, kStartTimeMs, kRunTimeMs);
489}
490
wu@webrtc.org0224c202014-05-05 17:42:43 +0000491TEST_F(CallPerfTest, CaptureNtpTimeWithNetworkJitter) {
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000492 FakeNetworkPipe::Config net_config;
wu@webrtc.org0224c202014-05-05 17:42:43 +0000493 net_config.queue_delay_ms = 100;
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000494 net_config.delay_standard_deviation_ms = 10;
495 // TODO(wu): lower the threshold as the calculation/estimatation becomes more
496 // accurate.
wu@webrtc.org0224c202014-05-05 17:42:43 +0000497 const int kThresholdMs = 100;
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000498 const int kStartTimeMs = 10000;
499 const int kRunTimeMs = 20000;
500 TestCaptureNtpTime(net_config, kThresholdMs, kStartTimeMs, kRunTimeMs);
501}
Alex Loiko5aea38c2017-09-27 13:10:28 +0200502#endif
kthelgasonfa5fdce2017-02-27 00:15:31 -0800503
perkj803d97f2016-11-01 11:45:46 -0700504TEST_F(CallPerfTest, ReceivesCpuOveruseAndUnderuse) {
sprangc5d62e22017-04-02 23:53:04 -0700505 // Minimal normal usage at the start, then 30s overuse to allow filter to
506 // settle, and then 80s underuse to allow plenty of time for rampup again.
507 test::ScopedFieldTrials fake_overuse_settings(
508 "WebRTC-ForceSimulatedOveruseIntervalMs/1-30000-80000/");
509
perkj803d97f2016-11-01 11:45:46 -0700510 class LoadObserver : public test::SendTest,
511 public test::FrameGeneratorCapturer::SinkWantsObserver {
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +0000512 public:
sprangc5d62e22017-04-02 23:53:04 -0700513 LoadObserver() : SendTest(kLongTimeoutMs), test_phase_(TestPhase::kStart) {}
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +0000514
perkj803d97f2016-11-01 11:45:46 -0700515 void OnFrameGeneratorCapturerCreated(
516 test::FrameGeneratorCapturer* frame_generator_capturer) override {
517 frame_generator_capturer->SetSinkWantsObserver(this);
kthelgasonfa5fdce2017-02-27 00:15:31 -0800518 // Set a high initial resolution to be sure that we can scale down.
519 frame_generator_capturer->ChangeResolution(1920, 1080);
perkj803d97f2016-11-01 11:45:46 -0700520 }
521
522 // OnSinkWantsChanged is called when FrameGeneratorCapturer::AddOrUpdateSink
523 // is called.
sprangc5d62e22017-04-02 23:53:04 -0700524 // TODO(sprang): Add integration test for maintain-framerate mode?
perkj803d97f2016-11-01 11:45:46 -0700525 void OnSinkWantsChanged(rtc::VideoSinkInterface<VideoFrame>* sink,
526 const rtc::VideoSinkWants& wants) override {
527 // First expect CPU overuse. Then expect CPU underuse when the encoder
528 // delay has been decreased.
sprangc5d62e22017-04-02 23:53:04 -0700529 switch (test_phase_) {
530 case TestPhase::kStart:
531 if (wants.max_pixel_count < std::numeric_limits<int>::max()) {
mflodmancc3d4422017-08-03 08:27:51 -0700532 // On adapting down, VideoStreamEncoder::VideoSourceProxy will set
533 // only the max pixel count, leaving the target unset.
sprangc5d62e22017-04-02 23:53:04 -0700534 test_phase_ = TestPhase::kAdaptedDown;
535 } else {
536 ADD_FAILURE() << "Got unexpected adaptation request, max res = "
537 << wants.max_pixel_count << ", target res = "
538 << wants.target_pixel_count.value_or(-1)
539 << ", max fps = " << wants.max_framerate_fps;
540 }
541 break;
542 case TestPhase::kAdaptedDown:
543 // On adapting up, the adaptation counter will again be at zero, and
544 // so all constraints will be reset.
545 if (wants.max_pixel_count == std::numeric_limits<int>::max() &&
546 !wants.target_pixel_count) {
547 test_phase_ = TestPhase::kAdaptedUp;
548 observation_complete_.Set();
549 } else {
550 ADD_FAILURE() << "Got unexpected adaptation request, max res = "
551 << wants.max_pixel_count << ", target res = "
552 << wants.target_pixel_count.value_or(-1)
553 << ", max fps = " << wants.max_framerate_fps;
554 }
555 break;
556 case TestPhase::kAdaptedUp:
557 ADD_FAILURE() << "Got unexpected adaptation request, max res = "
558 << wants.max_pixel_count << ", target res = "
559 << wants.target_pixel_count.value_or(-1)
560 << ", max fps = " << wants.max_framerate_fps;
perkj803d97f2016-11-01 11:45:46 -0700561 }
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +0000562 }
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +0000563
stefanff483612015-12-21 03:14:00 -0800564 void ModifyVideoConfigs(
565 VideoSendStream::Config* send_config,
566 std::vector<VideoReceiveStream::Config>* receive_configs,
567 VideoEncoderConfig* encoder_config) override {
asapersson@webrtc.org049e4ec2014-11-20 10:19:46 +0000568 }
569
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000570 void PerformTest() override {
Peter Boström5811a392015-12-10 13:02:50 +0100571 EXPECT_TRUE(Wait()) << "Timed out before receiving an overuse callback.";
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000572 }
asapersson@webrtc.org049e4ec2014-11-20 10:19:46 +0000573
sprangc5d62e22017-04-02 23:53:04 -0700574 enum class TestPhase { kStart, kAdaptedDown, kAdaptedUp } test_phase_;
perkj803d97f2016-11-01 11:45:46 -0700575 } test;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000576
stefane74eef12016-01-08 06:47:13 -0800577 RunBaseTest(&test);
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +0000578}
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000579
580void CallPerfTest::TestMinTransmitBitrate(bool pad_to_min_bitrate) {
581 static const int kMaxEncodeBitrateKbps = 30;
pbos@webrtc.org709e2972014-03-19 10:59:52 +0000582 static const int kMinTransmitBitrateBps = 150000;
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000583 static const int kMinAcceptableTransmitBitrate = 130;
584 static const int kMaxAcceptableTransmitBitrate = 170;
585 static const int kNumBitrateObservationsInRange = 100;
sprang867fb522015-08-03 04:38:41 -0700586 static const int kAcceptableBitrateErrorMargin = 15; // +- 7
stefanf116bd02015-10-27 08:29:42 -0700587 class BitrateObserver : public test::EndToEndTest {
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000588 public:
589 explicit BitrateObserver(bool using_min_transmit_bitrate)
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000590 : EndToEndTest(kLongTimeoutMs),
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24 +0000591 send_stream_(nullptr),
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200592 converged_(false),
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000593 pad_to_min_bitrate_(using_min_transmit_bitrate),
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200594 min_acceptable_bitrate_(using_min_transmit_bitrate
595 ? kMinAcceptableTransmitBitrate
596 : (kMaxEncodeBitrateKbps -
597 kAcceptableBitrateErrorMargin / 2)),
598 max_acceptable_bitrate_(using_min_transmit_bitrate
599 ? kMaxAcceptableTransmitBitrate
600 : (kMaxEncodeBitrateKbps +
601 kAcceptableBitrateErrorMargin / 2)),
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000602 num_bitrate_observations_in_range_(0) {}
603
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000604 private:
stefanf116bd02015-10-27 08:29:42 -0700605 // TODO(holmer): Run this with a timer instead of once per packet.
606 Action OnSendRtp(const uint8_t* packet, size_t length) override {
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000607 VideoSendStream::Stats stats = send_stream_->GetStats();
608 if (stats.substreams.size() > 0) {
kwibergaf476c72016-11-28 15:21:39 -0800609 RTC_DCHECK_EQ(1, stats.substreams.size());
stefan@webrtc.org0bae1fa2014-11-05 14:05:29 +0000610 int bitrate_kbps =
611 stats.substreams.begin()->second.total_bitrate_bps / 1000;
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200612 if (bitrate_kbps > min_acceptable_bitrate_ &&
613 bitrate_kbps < max_acceptable_bitrate_) {
614 converged_ = true;
615 ++num_bitrate_observations_in_range_;
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000616 if (num_bitrate_observations_in_range_ ==
617 kNumBitrateObservationsInRange)
Peter Boström5811a392015-12-10 13:02:50 +0100618 observation_complete_.Set();
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000619 }
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200620 if (converged_)
621 bitrate_kbps_list_.push_back(bitrate_kbps);
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000622 }
stefanf116bd02015-10-27 08:29:42 -0700623 return SEND_PACKET;
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000624 }
625
stefanff483612015-12-21 03:14:00 -0800626 void OnVideoStreamsCreated(
pbos@webrtc.orgbe9d2a42014-06-30 13:19:09 +0000627 VideoSendStream* send_stream,
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000628 const std::vector<VideoReceiveStream*>& receive_streams) override {
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000629 send_stream_ = send_stream;
630 }
631
stefanff483612015-12-21 03:14:00 -0800632 void ModifyVideoConfigs(
633 VideoSendStream::Config* send_config,
634 std::vector<VideoReceiveStream::Config>* receive_configs,
635 VideoEncoderConfig* encoder_config) override {
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000636 if (pad_to_min_bitrate_) {
pbos@webrtc.orgad3b5a52014-10-24 09:23:21 +0000637 encoder_config->min_transmit_bitrate_bps = kMinTransmitBitrateBps;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000638 } else {
henrikg91d6ede2015-09-17 00:24:34 -0700639 RTC_DCHECK_EQ(0, encoder_config->min_transmit_bitrate_bps);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000640 }
641 }
642
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000643 void PerformTest() override {
Peter Boström5811a392015-12-10 13:02:50 +0100644 EXPECT_TRUE(Wait()) << "Timeout while waiting for send-bitrate stats.";
danilchap46b89b92016-06-03 09:27:37 -0700645 test::PrintResultList(
646 "bitrate_stats_",
647 (pad_to_min_bitrate_ ? "min_transmit_bitrate"
648 : "without_min_transmit_bitrate"),
Edward Lemur2f061682017-11-24 13:40:01 +0100649 "bitrate_kbps", bitrate_kbps_list_, "kbps", false);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000650 }
651
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000652 VideoSendStream* send_stream_;
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200653 bool converged_;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000654 const bool pad_to_min_bitrate_;
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200655 const int min_acceptable_bitrate_;
656 const int max_acceptable_bitrate_;
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000657 int num_bitrate_observations_in_range_;
Edward Lemur2f061682017-11-24 13:40:01 +0100658 std::vector<double> bitrate_kbps_list_;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000659 } test(pad_to_min_bitrate);
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000660
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000661 fake_encoder_.SetMaxBitrate(kMaxEncodeBitrateKbps);
stefane74eef12016-01-08 06:47:13 -0800662 RunBaseTest(&test);
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000663}
664
665TEST_F(CallPerfTest, PadsToMinTransmitBitrate) { TestMinTransmitBitrate(true); }
666
667TEST_F(CallPerfTest, NoPadWithoutMinTransmitBitrate) {
668 TestMinTransmitBitrate(false);
669}
670
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000671TEST_F(CallPerfTest, KeepsHighBitrateWhenReconfiguringSender) {
672 static const uint32_t kInitialBitrateKbps = 400;
673 static const uint32_t kReconfigureThresholdKbps = 600;
674 static const uint32_t kPermittedReconfiguredBitrateDiffKbps = 100;
675
perkjfa10b552016-10-02 23:45:26 -0700676 class VideoStreamFactory
677 : public VideoEncoderConfig::VideoStreamFactoryInterface {
678 public:
679 VideoStreamFactory() {}
680
681 private:
682 std::vector<VideoStream> CreateEncoderStreams(
683 int width,
684 int height,
685 const VideoEncoderConfig& encoder_config) override {
686 std::vector<VideoStream> streams =
687 test::CreateVideoStreams(width, height, encoder_config);
688 streams[0].min_bitrate_bps = 50000;
689 streams[0].target_bitrate_bps = streams[0].max_bitrate_bps = 2000000;
690 return streams;
691 }
692 };
693
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000694 class BitrateObserver : public test::EndToEndTest, public test::FakeEncoder {
695 public:
696 BitrateObserver()
697 : EndToEndTest(kDefaultTimeoutMs),
698 FakeEncoder(Clock::GetRealTimeClock()),
Peter Boström5811a392015-12-10 13:02:50 +0100699 time_to_reconfigure_(false, false),
sprang867fb522015-08-03 04:38:41 -0700700 encoder_inits_(0),
Erik Språng08127a92016-11-16 16:41:30 +0100701 last_set_bitrate_kbps_(0),
702 send_stream_(nullptr),
703 frame_generator_(nullptr) {}
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000704
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000705 int32_t InitEncode(const VideoCodec* config,
706 int32_t number_of_cores,
707 size_t max_payload_size) override {
perkjfa10b552016-10-02 23:45:26 -0700708 ++encoder_inits_;
709 if (encoder_inits_ == 1) {
emircan05a55b52016-10-28 14:06:29 -0700710 // First time initialization. Frame size is known.
Per21d45d22016-10-30 21:37:57 +0100711 // |expected_bitrate| is affected by bandwidth estimation before the
712 // first frame arrives to the encoder.
Erik Språng08127a92016-11-16 16:41:30 +0100713 uint32_t expected_bitrate = last_set_bitrate_kbps_ > 0
714 ? last_set_bitrate_kbps_
715 : kInitialBitrateKbps;
Per21d45d22016-10-30 21:37:57 +0100716 EXPECT_EQ(expected_bitrate, config->startBitrate)
717 << "Encoder not initialized at expected bitrate.";
perkjfa10b552016-10-02 23:45:26 -0700718 EXPECT_EQ(kDefaultWidth, config->width);
719 EXPECT_EQ(kDefaultHeight, config->height);
Per21d45d22016-10-30 21:37:57 +0100720 } else if (encoder_inits_ == 2) {
perkjfa10b552016-10-02 23:45:26 -0700721 EXPECT_EQ(2 * kDefaultWidth, config->width);
722 EXPECT_EQ(2 * kDefaultHeight, config->height);
Erik Språng08127a92016-11-16 16:41:30 +0100723 EXPECT_GE(last_set_bitrate_kbps_, kReconfigureThresholdKbps);
Stefan Holmerf9b6e5e2017-02-06 17:17:57 +0100724 EXPECT_GT(
725 config->startBitrate,
726 last_set_bitrate_kbps_ - kPermittedReconfiguredBitrateDiffKbps)
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000727 << "Encoder reconfigured with bitrate too far away from last set.";
Peter Boström5811a392015-12-10 13:02:50 +0100728 observation_complete_.Set();
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000729 }
730 return FakeEncoder::InitEncode(config, number_of_cores, max_payload_size);
731 }
732
Erik Språng08127a92016-11-16 16:41:30 +0100733 int32_t SetRateAllocation(const BitrateAllocation& rate_allocation,
734 uint32_t framerate) override {
735 last_set_bitrate_kbps_ = rate_allocation.get_sum_kbps();
Per21d45d22016-10-30 21:37:57 +0100736 if (encoder_inits_ == 1 &&
Erik Språng08127a92016-11-16 16:41:30 +0100737 rate_allocation.get_sum_kbps() > kReconfigureThresholdKbps) {
Peter Boström5811a392015-12-10 13:02:50 +0100738 time_to_reconfigure_.Set();
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000739 }
Erik Språng08127a92016-11-16 16:41:30 +0100740 return FakeEncoder::SetRateAllocation(rate_allocation, framerate);
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000741 }
742
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000743 Call::Config GetSenderCallConfig() override {
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000744 Call::Config config = EndToEndTest::GetSenderCallConfig();
philipel4fb651d2017-04-10 03:54:05 -0700745 config.event_log = event_log_.get();
Stefan Holmere5904162015-03-26 11:11:06 +0100746 config.bitrate_config.start_bitrate_bps = kInitialBitrateKbps * 1000;
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000747 return config;
748 }
749
stefanff483612015-12-21 03:14:00 -0800750 void ModifyVideoConfigs(
751 VideoSendStream::Config* send_config,
752 std::vector<VideoReceiveStream::Config>* receive_configs,
753 VideoEncoderConfig* encoder_config) override {
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000754 send_config->encoder_settings.encoder = this;
Per21d45d22016-10-30 21:37:57 +0100755 encoder_config->max_bitrate_bps = 2 * kReconfigureThresholdKbps * 1000;
perkjfa10b552016-10-02 23:45:26 -0700756 encoder_config->video_stream_factory =
757 new rtc::RefCountedObject<VideoStreamFactory>();
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000758
perkj26091b12016-09-01 01:17:40 -0700759 encoder_config_ = encoder_config->Copy();
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000760 }
761
stefanff483612015-12-21 03:14:00 -0800762 void OnVideoStreamsCreated(
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000763 VideoSendStream* send_stream,
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000764 const std::vector<VideoReceiveStream*>& receive_streams) override {
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000765 send_stream_ = send_stream;
766 }
767
perkjfa10b552016-10-02 23:45:26 -0700768 void OnFrameGeneratorCapturerCreated(
769 test::FrameGeneratorCapturer* frame_generator_capturer) override {
770 frame_generator_ = frame_generator_capturer;
771 }
772
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000773 void PerformTest() override {
Peter Boström5811a392015-12-10 13:02:50 +0100774 ASSERT_TRUE(time_to_reconfigure_.Wait(kDefaultTimeoutMs))
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000775 << "Timed out before receiving an initial high bitrate.";
perkjfa10b552016-10-02 23:45:26 -0700776 frame_generator_->ChangeResolution(kDefaultWidth * 2, kDefaultHeight * 2);
perkj26091b12016-09-01 01:17:40 -0700777 send_stream_->ReconfigureVideoEncoder(encoder_config_.Copy());
Peter Boström5811a392015-12-10 13:02:50 +0100778 EXPECT_TRUE(Wait())
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000779 << "Timed out while waiting for a couple of high bitrate estimates "
780 "after reconfiguring the send stream.";
781 }
782
783 private:
Peter Boström5811a392015-12-10 13:02:50 +0100784 rtc::Event time_to_reconfigure_;
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000785 int encoder_inits_;
Erik Språng08127a92016-11-16 16:41:30 +0100786 uint32_t last_set_bitrate_kbps_;
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000787 VideoSendStream* send_stream_;
perkjfa10b552016-10-02 23:45:26 -0700788 test::FrameGeneratorCapturer* frame_generator_;
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000789 VideoEncoderConfig encoder_config_;
790 } test;
791
stefane74eef12016-01-08 06:47:13 -0800792 RunBaseTest(&test);
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000793}
794
Alex Narestd0e196b2017-11-22 17:22:35 +0100795// Discovers the minimal supported audio+video bitrate. The test bitrate is
796// considered supported if Rtt does not go above 400ms with the network
797// contrained to the test bitrate.
798//
799// |use_bitrate_allocation_strategy| use AudioPriorityBitrateAllocationStrategy
800// |test_bitrate_from test_bitrate_to| bitrate constraint range
801// |test_bitrate_step| bitrate constraint update step during the test
802// |min_bwe max_bwe| BWE range
803// |start_bwe| initial BWE
804void CallPerfTest::TestMinAudioVideoBitrate(
805 bool use_bitrate_allocation_strategy,
806 int test_bitrate_from,
807 int test_bitrate_to,
808 int test_bitrate_step,
809 int min_bwe,
810 int start_bwe,
811 int max_bwe) {
812 static const std::string kAudioTrackId = "audio_track_0";
813 static constexpr uint32_t kSufficientAudioBitrateBps = 16000;
814 static constexpr int kOpusMinBitrateBps = 6000;
815 static constexpr int kOpusBitrateFbBps = 32000;
816 static constexpr int kBitrateStabilizationMs = 10000;
817 static constexpr int kBitrateMeasurements = 10;
818 static constexpr int kBitrateMeasurementMs = 1000;
819 static constexpr int kMinGoodRttMs = 400;
820
821 class MinVideoAndAudioBitrateTester : public test::EndToEndTest {
822 public:
823 MinVideoAndAudioBitrateTester(bool use_bitrate_allocation_strategy,
824 int test_bitrate_from,
825 int test_bitrate_to,
826 int test_bitrate_step,
827 int min_bwe,
828 int start_bwe,
829 int max_bwe)
830 : EndToEndTest(),
831 allocation_strategy_(new rtc::AudioPriorityBitrateAllocationStrategy(
832 kAudioTrackId,
833 kSufficientAudioBitrateBps)),
834 use_bitrate_allocation_strategy_(use_bitrate_allocation_strategy),
835 test_bitrate_from_(test_bitrate_from),
836 test_bitrate_to_(test_bitrate_to),
837 test_bitrate_step_(test_bitrate_step),
838 min_bwe_(min_bwe),
839 start_bwe_(start_bwe),
840 max_bwe_(max_bwe) {}
841
842 protected:
843 FakeNetworkPipe::Config GetFakeNetworkPipeConfig() {
844 FakeNetworkPipe::Config pipe_config;
845 pipe_config.link_capacity_kbps = test_bitrate_from_;
846 return pipe_config;
847 }
848
849 test::PacketTransport* CreateSendTransport(
850 test::SingleThreadedTaskQueueForTesting* task_queue,
851 Call* sender_call) override {
852 return send_transport_ = new test::PacketTransport(
853 task_queue, sender_call, this, test::PacketTransport::kSender,
854 test::CallTest::payload_type_map_, GetFakeNetworkPipeConfig());
855 }
856
857 test::PacketTransport* CreateReceiveTransport(
858 test::SingleThreadedTaskQueueForTesting* task_queue) override {
859 return receive_transport_ = new test::PacketTransport(
860 task_queue, nullptr, this, test::PacketTransport::kReceiver,
861 test::CallTest::payload_type_map_, GetFakeNetworkPipeConfig());
862 }
863
864 void PerformTest() override {
865 int last_passed_test_bitrate = -1;
866 for (int test_bitrate = test_bitrate_from_;
867 test_bitrate_from_ < test_bitrate_to_
868 ? test_bitrate <= test_bitrate_to_
869 : test_bitrate >= test_bitrate_to_;
870 test_bitrate += test_bitrate_step_) {
871 FakeNetworkPipe::Config pipe_config;
872 pipe_config.link_capacity_kbps = test_bitrate;
873 send_transport_->SetConfig(pipe_config);
874 receive_transport_->SetConfig(pipe_config);
875
876 rtc::ThreadManager::Instance()->CurrentThread()->SleepMs(
877 kBitrateStabilizationMs);
878
879 int64_t avg_rtt = 0;
880 for (int i = 0; i < kBitrateMeasurements; i++) {
881 Call::Stats call_stats = sender_call_->GetStats();
882 avg_rtt += call_stats.rtt_ms;
883 rtc::ThreadManager::Instance()->CurrentThread()->SleepMs(
884 kBitrateMeasurementMs);
885 }
886 avg_rtt = avg_rtt / kBitrateMeasurements;
887 if (avg_rtt > kMinGoodRttMs) {
888 break;
889 } else {
890 last_passed_test_bitrate = test_bitrate;
891 }
892 }
893 EXPECT_GT(last_passed_test_bitrate, -1)
894 << "Minimum supported bitrate out of the test scope";
895 webrtc::test::PrintResult("min_test_bitrate_",
896 use_bitrate_allocation_strategy_
897 ? "with_allocation_strategy"
898 : "no_allocation_strategy",
899 "", last_passed_test_bitrate, "kbps", false);
900 }
901
902 void OnCallsCreated(Call* sender_call, Call* receiver_call) override {
903 sender_call_ = sender_call;
904 Call::Config::BitrateConfig bitrate_config;
905 bitrate_config.min_bitrate_bps = min_bwe_;
906 bitrate_config.start_bitrate_bps = start_bwe_;
907 bitrate_config.max_bitrate_bps = max_bwe_;
908 sender_call->SetBitrateConfig(bitrate_config);
909 if (use_bitrate_allocation_strategy_) {
910 sender_call->SetBitrateAllocationStrategy(
911 std::move(allocation_strategy_));
912 }
913 }
914
915 size_t GetNumVideoStreams() const override { return 1; }
916
917 size_t GetNumAudioStreams() const override { return 1; }
918
919 void ModifyAudioConfigs(
920 AudioSendStream::Config* send_config,
921 std::vector<AudioReceiveStream::Config>* receive_configs) override {
922 if (use_bitrate_allocation_strategy_) {
923 send_config->track_id = kAudioTrackId;
924 send_config->min_bitrate_bps = kOpusMinBitrateBps;
925 send_config->max_bitrate_bps = kOpusBitrateFbBps;
926 } else {
927 send_config->send_codec_spec->target_bitrate_bps =
928 rtc::Optional<int>(kOpusBitrateFbBps);
929 }
930 }
931
932 private:
933 std::unique_ptr<rtc::BitrateAllocationStrategy> allocation_strategy_;
934 const bool use_bitrate_allocation_strategy_;
935 const int test_bitrate_from_;
936 const int test_bitrate_to_;
937 const int test_bitrate_step_;
938 const int min_bwe_;
939 const int start_bwe_;
940 const int max_bwe_;
941 test::PacketTransport* send_transport_;
942 test::PacketTransport* receive_transport_;
943 Call* sender_call_;
944 } test(use_bitrate_allocation_strategy, test_bitrate_from, test_bitrate_to,
945 test_bitrate_step, min_bwe, start_bwe, max_bwe);
946
947 RunBaseTest(&test);
948}
949
950TEST_F(CallPerfTest, MinVideoAndAudioBitrate) {
951 TestMinAudioVideoBitrate(false, 110, 40, -10, 10000, 70000, 200000);
952}
953TEST_F(CallPerfTest, MinVideoAndAudioBitrateWStrategy) {
954 TestMinAudioVideoBitrate(true, 110, 40, -10, 10000, 70000, 200000);
955}
956
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000957} // namespace webrtc