blob: 8e734e963ab89b84e3262ce4faf743920dfb8e92 [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,
Edward Lemur947f3fe2017-12-28 15:50:33 +010062 float audio_rtp_speed,
63 const std::string& test_label);
stefan@webrtc.org01581da2014-09-04 06:48:14 +000064
pbos@webrtc.org3349ae02014-03-13 12:52:27 +000065 void TestMinTransmitBitrate(bool pad_to_min_bitrate);
66
wu@webrtc.orgcd701192014-04-24 22:10:24 +000067 void TestCaptureNtpTime(const FakeNetworkPipe::Config& net_config,
68 int threshold_ms,
69 int start_time_ms,
70 int run_time_ms);
Alex Narestd0e196b2017-11-22 17:22:35 +010071 void TestMinAudioVideoBitrate(bool use_bitrate_allocation_strategy,
72 int test_bitrate_from,
73 int test_bitrate_to,
74 int test_bitrate_step,
75 int min_bwe,
76 int start_bwe,
77 int max_bwe);
pbos@webrtc.org1d096902013-12-13 12:48:05 +000078};
79
asaperssonf8cdd182016-03-15 01:00:47 -070080class VideoRtcpAndSyncObserver : public test::RtpRtcpObserver,
nisse7ade7b32016-03-23 04:48:10 -070081 public rtc::VideoSinkInterface<VideoFrame> {
pbos@webrtc.org1d096902013-12-13 12:48:05 +000082 static const int kInSyncThresholdMs = 50;
83 static const int kStartupTimeMs = 2000;
84 static const int kMinRunTimeMs = 30000;
85
86 public:
Edward Lemur947f3fe2017-12-28 15:50:33 +010087 explicit VideoRtcpAndSyncObserver(Clock* clock, const std::string& test_label)
asaperssonf8cdd182016-03-15 01:00:47 -070088 : test::RtpRtcpObserver(CallPerfTest::kLongTimeoutMs),
89 clock_(clock),
Edward Lemur947f3fe2017-12-28 15:50:33 +010090 test_label_(test_label),
pbos@webrtc.org1d096902013-12-13 12:48:05 +000091 creation_time_ms_(clock_->TimeInMilliseconds()),
asaperssonf8cdd182016-03-15 01:00:47 -070092 first_time_in_sync_(-1),
93 receive_stream_(nullptr) {}
pbos@webrtc.org1d096902013-12-13 12:48:05 +000094
nisseeb83a1a2016-03-21 01:27:56 -070095 void OnFrame(const VideoFrame& video_frame) override {
asaperssonf8cdd182016-03-15 01:00:47 -070096 VideoReceiveStream::Stats stats;
97 {
98 rtc::CritScope lock(&crit_);
99 if (receive_stream_)
100 stats = receive_stream_->GetStats();
101 }
102 if (stats.sync_offset_ms == std::numeric_limits<int>::max())
103 return;
104
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000105 int64_t now_ms = clock_->TimeInMilliseconds();
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000106 int64_t time_since_creation = now_ms - creation_time_ms_;
107 // During the first couple of seconds audio and video can falsely be
108 // estimated as being synchronized. We don't want to trigger on those.
109 if (time_since_creation < kStartupTimeMs)
110 return;
asaperssonf8cdd182016-03-15 01:00:47 -0700111 if (std::abs(stats.sync_offset_ms) < kInSyncThresholdMs) {
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000112 if (first_time_in_sync_ == -1) {
113 first_time_in_sync_ = now_ms;
Edward Lemur947f3fe2017-12-28 15:50:33 +0100114 webrtc::test::PrintResult("sync_convergence_time", test_label_,
115 "synchronization", time_since_creation, "ms",
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000116 false);
117 }
118 if (time_since_creation > kMinRunTimeMs)
Peter Boström5811a392015-12-10 13:02:50 +0100119 observation_complete_.Set();
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000120 }
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200121 if (first_time_in_sync_ != -1)
122 sync_offset_ms_list_.push_back(stats.sync_offset_ms);
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000123 }
124
asaperssonf8cdd182016-03-15 01:00:47 -0700125 void set_receive_stream(VideoReceiveStream* receive_stream) {
126 rtc::CritScope lock(&crit_);
127 receive_stream_ = receive_stream;
128 }
129
danilchap46b89b92016-06-03 09:27:37 -0700130 void PrintResults() {
Edward Lemur947f3fe2017-12-28 15:50:33 +0100131 test::PrintResultList("stream_offset", test_label_, "synchronization",
Edward Lemur2f061682017-11-24 13:40:01 +0100132 sync_offset_ms_list_, "ms", false);
danilchap46b89b92016-06-03 09:27:37 -0700133 }
134
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000135 private:
pbos@webrtc.orgde1429e2014-04-28 13:00:21 +0000136 Clock* const clock_;
Edward Lemur947f3fe2017-12-28 15:50:33 +0100137 std::string test_label_;
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,
Edward Lemur947f3fe2017-12-28 15:50:33 +0100149 float audio_rtp_speed,
150 const std::string& test_label) {
pbos8fc7fa72015-07-15 08:02:58 -0700151 const char* kSyncGroup = "av_sync";
Stefan Holmerb86d4e42015-12-07 10:26:18 +0100152 const uint32_t kAudioSendSsrc = 1234;
153 const uint32_t kAudioRecvSsrc = 5678;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000154
eladalon413ee9a2017-08-22 04:02:52 -0700155 int send_channel_id;
156 int recv_channel_id;
asaperssonf8cdd182016-03-15 01:00:47 -0700157
mflodman3d7db262016-04-29 00:57:13 -0700158 FakeNetworkPipe::Config audio_net_config;
159 audio_net_config.queue_delay_ms = 500;
160 audio_net_config.loss_percent = 5;
minyue20c84cc2017-04-10 16:57:57 -0700161
eladalon413ee9a2017-08-22 04:02:52 -0700162 VoiceEngine* voice_engine;
163 VoEBase* voe_base;
Edward Lemur947f3fe2017-12-28 15:50:33 +0100164 VideoRtcpAndSyncObserver observer(Clock::GetRealTimeClock(), test_label);
eladalon413ee9a2017-08-22 04:02:52 -0700165
minyue20c84cc2017-04-10 16:57:57 -0700166 std::map<uint8_t, MediaType> audio_pt_map;
167 std::map<uint8_t, MediaType> video_pt_map;
minyue20c84cc2017-04-10 16:57:57 -0700168
eladalon413ee9a2017-08-22 04:02:52 -0700169 std::unique_ptr<test::PacketTransport> audio_send_transport;
170 std::unique_ptr<test::PacketTransport> video_send_transport;
171 std::unique_ptr<test::PacketTransport> receive_transport;
mflodman3d7db262016-04-29 00:57:13 -0700172
eladalon413ee9a2017-08-22 04:02:52 -0700173 AudioSendStream* audio_send_stream;
Stefan Holmerb86d4e42015-12-07 10:26:18 +0100174 AudioReceiveStream* audio_receive_stream;
eladalon413ee9a2017-08-22 04:02:52 -0700175 std::unique_ptr<DriftingClock> drifting_clock;
pbos8fc7fa72015-07-15 08:02:58 -0700176
eladalon413ee9a2017-08-22 04:02:52 -0700177 task_queue_.SendTask([&]() {
178 metrics::Reset();
eladalon413ee9a2017-08-22 04:02:52 -0700179 voice_engine = VoiceEngine::Create();
180 voe_base = VoEBase::GetInterface(voice_engine);
Fredrik Solenberg2a877972017-12-15 16:42:15 +0100181 rtc::scoped_refptr<FakeAudioDevice> fake_audio_device =
182 new rtc::RefCountedObject<FakeAudioDevice>(
183 FakeAudioDevice::CreatePulsedNoiseCapturer(256, 48000),
184 FakeAudioDevice::CreateDiscardRenderer(48000), audio_rtp_speed);
Fredrik Solenbergd3195342017-11-21 20:33:05 +0100185 EXPECT_EQ(0, fake_audio_device->Init());
Fredrik Solenberg2a877972017-12-15 16:42:15 +0100186 EXPECT_EQ(0, voe_base->Init(fake_audio_device.get(), nullptr,
Rasmus Brandt31027342017-09-29 13:48:12 +0000187 decoder_factory_));
eladalon413ee9a2017-08-22 04:02:52 -0700188 VoEBase::ChannelConfig config;
189 config.enable_voice_pacing = true;
190 send_channel_id = voe_base->CreateChannel(config);
191 recv_channel_id = voe_base->CreateChannel();
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000192
eladalon413ee9a2017-08-22 04:02:52 -0700193 AudioState::Config send_audio_state_config;
194 send_audio_state_config.voice_engine = voice_engine;
195 send_audio_state_config.audio_mixer = AudioMixerImpl::Create();
Ivo Creusen62337e52018-01-09 14:17:33 +0100196 send_audio_state_config.audio_processing =
197 AudioProcessingBuilder().Create();
Fredrik Solenberg2a877972017-12-15 16:42:15 +0100198 send_audio_state_config.audio_device_module = fake_audio_device;
eladalon413ee9a2017-08-22 04:02:52 -0700199 Call::Config sender_config(event_log_.get());
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000200
Fredrik Solenbergd3195342017-11-21 20:33:05 +0100201 auto audio_state = AudioState::Create(send_audio_state_config);
202 fake_audio_device->RegisterAudioCallback(audio_state->audio_transport());
203 sender_config.audio_state = audio_state;
eladalon413ee9a2017-08-22 04:02:52 -0700204 Call::Config receiver_config(event_log_.get());
Fredrik Solenbergd3195342017-11-21 20:33:05 +0100205 receiver_config.audio_state = audio_state;
eladalon413ee9a2017-08-22 04:02:52 -0700206 CreateCalls(sender_config, receiver_config);
207
208 std::copy_if(std::begin(payload_type_map_), std::end(payload_type_map_),
209 std::inserter(audio_pt_map, audio_pt_map.end()),
210 [](const std::pair<const uint8_t, MediaType>& pair) {
211 return pair.second == MediaType::AUDIO;
212 });
213 std::copy_if(std::begin(payload_type_map_), std::end(payload_type_map_),
214 std::inserter(video_pt_map, video_pt_map.end()),
215 [](const std::pair<const uint8_t, MediaType>& pair) {
216 return pair.second == MediaType::VIDEO;
217 });
218
219 audio_send_transport = rtc::MakeUnique<test::PacketTransport>(
220 &task_queue_, sender_call_.get(), &observer,
221 test::PacketTransport::kSender, audio_pt_map, audio_net_config);
222 audio_send_transport->SetReceiver(receiver_call_->Receiver());
223
224 video_send_transport = rtc::MakeUnique<test::PacketTransport>(
225 &task_queue_, sender_call_.get(), &observer,
226 test::PacketTransport::kSender, video_pt_map,
227 FakeNetworkPipe::Config());
228 video_send_transport->SetReceiver(receiver_call_->Receiver());
229
230 receive_transport = rtc::MakeUnique<test::PacketTransport>(
231 &task_queue_, receiver_call_.get(), &observer,
232 test::PacketTransport::kReceiver, payload_type_map_,
233 FakeNetworkPipe::Config());
234 receive_transport->SetReceiver(sender_call_->Receiver());
235
236 CreateSendConfig(1, 0, 0, video_send_transport.get());
237 CreateMatchingReceiveConfigs(receive_transport.get());
238
239 AudioSendStream::Config audio_send_config(audio_send_transport.get());
240 audio_send_config.voe_channel_id = send_channel_id;
241 audio_send_config.rtp.ssrc = kAudioSendSsrc;
242 audio_send_config.send_codec_spec =
243 rtc::Optional<AudioSendStream::Config::SendCodecSpec>(
244 {kAudioSendPayloadType, {"ISAC", 16000, 1}});
245 audio_send_config.encoder_factory = CreateBuiltinAudioEncoderFactory();
246 audio_send_stream = sender_call_->CreateAudioSendStream(audio_send_config);
247
248 video_send_config_.rtp.nack.rtp_history_ms = kNackRtpHistoryMs;
249 if (fec == FecMode::kOn) {
250 video_send_config_.rtp.ulpfec.red_payload_type = kRedPayloadType;
251 video_send_config_.rtp.ulpfec.ulpfec_payload_type = kUlpfecPayloadType;
nisse3b3622f2017-09-26 02:49:21 -0700252 video_receive_configs_[0].rtp.red_payload_type = kRedPayloadType;
253 video_receive_configs_[0].rtp.ulpfec_payload_type = kUlpfecPayloadType;
eladalon413ee9a2017-08-22 04:02:52 -0700254 }
255 video_receive_configs_[0].rtp.nack.rtp_history_ms = 1000;
256 video_receive_configs_[0].renderer = &observer;
257 video_receive_configs_[0].sync_group = kSyncGroup;
258
259 AudioReceiveStream::Config audio_recv_config;
260 audio_recv_config.rtp.remote_ssrc = kAudioSendSsrc;
261 audio_recv_config.rtp.local_ssrc = kAudioRecvSsrc;
262 audio_recv_config.voe_channel_id = recv_channel_id;
263 audio_recv_config.sync_group = kSyncGroup;
Rasmus Brandt31027342017-09-29 13:48:12 +0000264 audio_recv_config.decoder_factory = decoder_factory_;
eladalon413ee9a2017-08-22 04:02:52 -0700265 audio_recv_config.decoder_map = {
266 {kAudioSendPayloadType, {"ISAC", 16000, 1}}};
267
268 if (create_first == CreateOrder::kAudioFirst) {
269 audio_receive_stream =
270 receiver_call_->CreateAudioReceiveStream(audio_recv_config);
271 CreateVideoStreams();
272 } else {
273 CreateVideoStreams();
274 audio_receive_stream =
275 receiver_call_->CreateAudioReceiveStream(audio_recv_config);
276 }
277 EXPECT_EQ(1u, video_receive_streams_.size());
278 observer.set_receive_stream(video_receive_streams_[0]);
279 drifting_clock = rtc::MakeUnique<DriftingClock>(clock_, video_ntp_speed);
280 CreateFrameGeneratorCapturerWithDrift(drifting_clock.get(), video_rtp_speed,
281 kDefaultFramerate, kDefaultWidth,
282 kDefaultHeight);
283
284 Start();
285
286 audio_send_stream->Start();
287 audio_receive_stream->Start();
288 });
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000289
Peter Boström5811a392015-12-10 13:02:50 +0100290 EXPECT_TRUE(observer.Wait())
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000291 << "Timed out while waiting for audio and video to be synchronized.";
292
eladalon413ee9a2017-08-22 04:02:52 -0700293 task_queue_.SendTask([&]() {
294 audio_send_stream->Stop();
295 audio_receive_stream->Stop();
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000296
eladalon413ee9a2017-08-22 04:02:52 -0700297 Stop();
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000298
eladalon413ee9a2017-08-22 04:02:52 -0700299 DestroyStreams();
Stefan Holmerb86d4e42015-12-07 10:26:18 +0100300
eladalon413ee9a2017-08-22 04:02:52 -0700301 video_send_transport.reset();
302 audio_send_transport.reset();
303 receive_transport.reset();
Stefan Holmerb86d4e42015-12-07 10:26:18 +0100304
eladalon413ee9a2017-08-22 04:02:52 -0700305 sender_call_->DestroyAudioSendStream(audio_send_stream);
306 receiver_call_->DestroyAudioReceiveStream(audio_receive_stream);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000307
eladalon413ee9a2017-08-22 04:02:52 -0700308 voe_base->DeleteChannel(send_channel_id);
309 voe_base->DeleteChannel(recv_channel_id);
310 voe_base->Release();
Fredrik Solenberg4f4ec0a2015-10-22 10:49:27 +0200311
eladalon413ee9a2017-08-22 04:02:52 -0700312 DestroyCalls();
313
314 VoiceEngine::Delete(voice_engine);
eladalon413ee9a2017-08-22 04:02:52 -0700315 });
asaperssonf8cdd182016-03-15 01:00:47 -0700316
danilchap46b89b92016-06-03 09:27:37 -0700317 observer.PrintResults();
ilnik5328b9e2017-02-21 05:20:28 -0800318
319 // In quick test synchronization may not be achieved in time.
sprange5d3a3e2017-03-01 06:20:56 -0800320 if (!field_trial::IsEnabled("WebRTC-QuickPerfTest")) {
ilnik5328b9e2017-02-21 05:20:28 -0800321 EXPECT_EQ(1, metrics::NumSamples("WebRTC.Video.AVSyncOffsetInMs"));
322 }
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000323}
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +0000324
danilchapac287ee2016-02-29 12:17:04 -0800325TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithVideoNtpDrift) {
Danil Chapovalovcde5d6b2016-02-15 11:14:58 +0100326 TestAudioVideoSync(FecMode::kOff, CreateOrder::kAudioFirst,
327 DriftingClock::PercentsFaster(10.0f),
Edward Lemur947f3fe2017-12-28 15:50:33 +0100328 DriftingClock::kNoDrift, DriftingClock::kNoDrift,
329 "_video_ntp_drift");
danilchap9c6a0c72016-02-10 10:54:47 -0800330}
331
danilchap9c6a0c72016-02-10 10:54:47 -0800332TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithAudioFasterThanVideoDrift) {
Danil Chapovalovcde5d6b2016-02-15 11:14:58 +0100333 TestAudioVideoSync(FecMode::kOff, CreateOrder::kAudioFirst,
334 DriftingClock::kNoDrift,
danilchap9c6a0c72016-02-10 10:54:47 -0800335 DriftingClock::PercentsSlower(30.0f),
Edward Lemur947f3fe2017-12-28 15:50:33 +0100336 DriftingClock::PercentsFaster(30.0f), "_audio_faster");
danilchap9c6a0c72016-02-10 10:54:47 -0800337}
338
339TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithVideoFasterThanAudioDrift) {
Danil Chapovalovcde5d6b2016-02-15 11:14:58 +0100340 TestAudioVideoSync(FecMode::kOn, CreateOrder::kVideoFirst,
341 DriftingClock::kNoDrift,
danilchap9c6a0c72016-02-10 10:54:47 -0800342 DriftingClock::PercentsFaster(30.0f),
Edward Lemur947f3fe2017-12-28 15:50:33 +0100343 DriftingClock::PercentsSlower(30.0f), "_video_faster");
stefan@webrtc.org01581da2014-09-04 06:48:14 +0000344}
345
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000346void CallPerfTest::TestCaptureNtpTime(const FakeNetworkPipe::Config& net_config,
347 int threshold_ms,
348 int start_time_ms,
349 int run_time_ms) {
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000350 class CaptureNtpTimeObserver : public test::EndToEndTest,
nisse7ade7b32016-03-23 04:48:10 -0700351 public rtc::VideoSinkInterface<VideoFrame> {
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000352 public:
stefane74eef12016-01-08 06:47:13 -0800353 CaptureNtpTimeObserver(const FakeNetworkPipe::Config& net_config,
354 int threshold_ms,
355 int start_time_ms,
356 int run_time_ms)
stefanf116bd02015-10-27 08:29:42 -0700357 : EndToEndTest(kLongTimeoutMs),
stefane74eef12016-01-08 06:47:13 -0800358 net_config_(net_config),
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000359 clock_(Clock::GetRealTimeClock()),
360 threshold_ms_(threshold_ms),
361 start_time_ms_(start_time_ms),
362 run_time_ms_(run_time_ms),
363 creation_time_ms_(clock_->TimeInMilliseconds()),
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24 +0000364 capturer_(nullptr),
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000365 rtp_start_timestamp_set_(false),
366 rtp_start_timestamp_(0) {}
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000367
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000368 private:
eladalon413ee9a2017-08-22 04:02:52 -0700369 test::PacketTransport* CreateSendTransport(
370 test::SingleThreadedTaskQueueForTesting* task_queue,
371 Call* sender_call) override {
372 return new test::PacketTransport(task_queue, sender_call, this,
minyue20c84cc2017-04-10 16:57:57 -0700373 test::PacketTransport::kSender,
374 payload_type_map_, net_config_);
stefane74eef12016-01-08 06:47:13 -0800375 }
376
eladalon413ee9a2017-08-22 04:02:52 -0700377 test::PacketTransport* CreateReceiveTransport(
378 test::SingleThreadedTaskQueueForTesting* task_queue) override {
379 return new test::PacketTransport(task_queue, nullptr, this,
minyue20c84cc2017-04-10 16:57:57 -0700380 test::PacketTransport::kReceiver,
381 payload_type_map_, net_config_);
Stefan Holmerea8c0f62016-01-13 08:58:38 +0100382 }
383
nisseeb83a1a2016-03-21 01:27:56 -0700384 void OnFrame(const VideoFrame& video_frame) override {
stefanf116bd02015-10-27 08:29:42 -0700385 rtc::CritScope lock(&crit_);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000386 if (video_frame.ntp_time_ms() <= 0) {
387 // Haven't got enough RTCP SR in order to calculate the capture ntp
388 // time.
389 return;
390 }
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000391
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000392 int64_t now_ms = clock_->TimeInMilliseconds();
393 int64_t time_since_creation = now_ms - creation_time_ms_;
394 if (time_since_creation < start_time_ms_) {
395 // Wait for |start_time_ms_| before start measuring.
396 return;
397 }
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000398
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000399 if (time_since_creation > run_time_ms_) {
Peter Boström5811a392015-12-10 13:02:50 +0100400 observation_complete_.Set();
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000401 }
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000402
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000403 FrameCaptureTimeList::iterator iter =
404 capture_time_list_.find(video_frame.timestamp());
405 EXPECT_TRUE(iter != capture_time_list_.end());
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000406
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000407 // The real capture time has been wrapped to uint32_t before converted
408 // to rtp timestamp in the sender side. So here we convert the estimated
409 // capture time to a uint32_t 90k timestamp also for comparing.
410 uint32_t estimated_capture_timestamp =
411 90 * static_cast<uint32_t>(video_frame.ntp_time_ms());
412 uint32_t real_capture_timestamp = iter->second;
413 int time_offset_ms = real_capture_timestamp - estimated_capture_timestamp;
414 time_offset_ms = time_offset_ms / 90;
danilchap46b89b92016-06-03 09:27:37 -0700415 time_offset_ms_list_.push_back(time_offset_ms);
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000416
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000417 EXPECT_TRUE(std::abs(time_offset_ms) < threshold_ms_);
418 }
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000419
nisseef8b61e2016-04-29 06:09:15 -0700420 Action OnSendRtp(const uint8_t* packet, size_t length) override {
stefanf116bd02015-10-27 08:29:42 -0700421 rtc::CritScope lock(&crit_);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000422 RTPHeader header;
pbos@webrtc.org62bafae2014-07-08 12:10:51 +0000423 EXPECT_TRUE(parser_->Parse(packet, length, &header));
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000424
425 if (!rtp_start_timestamp_set_) {
426 // Calculate the rtp timestamp offset in order to calculate the real
427 // capture time.
428 uint32_t first_capture_timestamp =
429 90 * static_cast<uint32_t>(capturer_->first_frame_capture_time());
430 rtp_start_timestamp_ = header.timestamp - first_capture_timestamp;
431 rtp_start_timestamp_set_ = true;
432 }
433
434 uint32_t capture_timestamp = header.timestamp - rtp_start_timestamp_;
435 capture_time_list_.insert(
436 capture_time_list_.end(),
437 std::make_pair(header.timestamp, capture_timestamp));
438 return SEND_PACKET;
439 }
440
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000441 void OnFrameGeneratorCapturerCreated(
442 test::FrameGeneratorCapturer* frame_generator_capturer) override {
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000443 capturer_ = frame_generator_capturer;
444 }
445
stefanff483612015-12-21 03:14:00 -0800446 void ModifyVideoConfigs(
447 VideoSendStream::Config* send_config,
448 std::vector<VideoReceiveStream::Config>* receive_configs,
449 VideoEncoderConfig* encoder_config) override {
pbos@webrtc.orgbe9d2a42014-06-30 13:19:09 +0000450 (*receive_configs)[0].renderer = this;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000451 // Enable the receiver side rtt calculation.
pbos@webrtc.orgbe9d2a42014-06-30 13:19:09 +0000452 (*receive_configs)[0].rtp.rtcp_xr.receiver_reference_time_report = true;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000453 }
454
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000455 void PerformTest() override {
Peter Boström5811a392015-12-10 13:02:50 +0100456 EXPECT_TRUE(Wait()) << "Timed out while waiting for "
457 "estimated capture NTP time to be "
458 "within bounds.";
danilchap46b89b92016-06-03 09:27:37 -0700459 test::PrintResultList("capture_ntp_time", "", "real - estimated",
Edward Lemur2f061682017-11-24 13:40:01 +0100460 time_offset_ms_list_, "ms", true);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000461 }
462
stefanf116bd02015-10-27 08:29:42 -0700463 rtc::CriticalSection crit_;
stefane74eef12016-01-08 06:47:13 -0800464 const FakeNetworkPipe::Config net_config_;
stefanf116bd02015-10-27 08:29:42 -0700465 Clock* const clock_;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000466 int threshold_ms_;
467 int start_time_ms_;
468 int run_time_ms_;
469 int64_t creation_time_ms_;
470 test::FrameGeneratorCapturer* capturer_;
471 bool rtp_start_timestamp_set_;
472 uint32_t rtp_start_timestamp_;
473 typedef std::map<uint32_t, uint32_t> FrameCaptureTimeList;
danilchapa37de392017-09-09 04:17:22 -0700474 FrameCaptureTimeList capture_time_list_ RTC_GUARDED_BY(&crit_);
Edward Lemur2f061682017-11-24 13:40:01 +0100475 std::vector<double> time_offset_ms_list_;
stefane74eef12016-01-08 06:47:13 -0800476 } test(net_config, threshold_ms, start_time_ms, run_time_ms);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000477
stefane74eef12016-01-08 06:47:13 -0800478 RunBaseTest(&test);
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000479}
480
Alex Loiko5aea38c2017-09-27 13:10:28 +0200481// Flaky tests, disabled on Mac due to webrtc:8291.
482#if !(defined(WEBRTC_MAC))
wu@webrtc.org9aa7d8d2014-05-29 05:03:52 +0000483TEST_F(CallPerfTest, CaptureNtpTimeWithNetworkDelay) {
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000484 FakeNetworkPipe::Config net_config;
485 net_config.queue_delay_ms = 100;
486 // TODO(wu): lower the threshold as the calculation/estimatation becomes more
487 // accurate.
wu@webrtc.org9aa7d8d2014-05-29 05:03:52 +0000488 const int kThresholdMs = 100;
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000489 const int kStartTimeMs = 10000;
490 const int kRunTimeMs = 20000;
491 TestCaptureNtpTime(net_config, kThresholdMs, kStartTimeMs, kRunTimeMs);
492}
493
wu@webrtc.org0224c202014-05-05 17:42:43 +0000494TEST_F(CallPerfTest, CaptureNtpTimeWithNetworkJitter) {
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000495 FakeNetworkPipe::Config net_config;
wu@webrtc.org0224c202014-05-05 17:42:43 +0000496 net_config.queue_delay_ms = 100;
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000497 net_config.delay_standard_deviation_ms = 10;
498 // TODO(wu): lower the threshold as the calculation/estimatation becomes more
499 // accurate.
wu@webrtc.org0224c202014-05-05 17:42:43 +0000500 const int kThresholdMs = 100;
wu@webrtc.orgcd701192014-04-24 22:10:24 +0000501 const int kStartTimeMs = 10000;
502 const int kRunTimeMs = 20000;
503 TestCaptureNtpTime(net_config, kThresholdMs, kStartTimeMs, kRunTimeMs);
504}
Alex Loiko5aea38c2017-09-27 13:10:28 +0200505#endif
kthelgasonfa5fdce2017-02-27 00:15:31 -0800506
perkj803d97f2016-11-01 11:45:46 -0700507TEST_F(CallPerfTest, ReceivesCpuOveruseAndUnderuse) {
sprangc5d62e22017-04-02 23:53:04 -0700508 // Minimal normal usage at the start, then 30s overuse to allow filter to
509 // settle, and then 80s underuse to allow plenty of time for rampup again.
510 test::ScopedFieldTrials fake_overuse_settings(
511 "WebRTC-ForceSimulatedOveruseIntervalMs/1-30000-80000/");
512
perkj803d97f2016-11-01 11:45:46 -0700513 class LoadObserver : public test::SendTest,
514 public test::FrameGeneratorCapturer::SinkWantsObserver {
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +0000515 public:
sprangc5d62e22017-04-02 23:53:04 -0700516 LoadObserver() : SendTest(kLongTimeoutMs), test_phase_(TestPhase::kStart) {}
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +0000517
perkj803d97f2016-11-01 11:45:46 -0700518 void OnFrameGeneratorCapturerCreated(
519 test::FrameGeneratorCapturer* frame_generator_capturer) override {
520 frame_generator_capturer->SetSinkWantsObserver(this);
kthelgasonfa5fdce2017-02-27 00:15:31 -0800521 // Set a high initial resolution to be sure that we can scale down.
522 frame_generator_capturer->ChangeResolution(1920, 1080);
perkj803d97f2016-11-01 11:45:46 -0700523 }
524
525 // OnSinkWantsChanged is called when FrameGeneratorCapturer::AddOrUpdateSink
526 // is called.
sprangc5d62e22017-04-02 23:53:04 -0700527 // TODO(sprang): Add integration test for maintain-framerate mode?
perkj803d97f2016-11-01 11:45:46 -0700528 void OnSinkWantsChanged(rtc::VideoSinkInterface<VideoFrame>* sink,
529 const rtc::VideoSinkWants& wants) override {
530 // First expect CPU overuse. Then expect CPU underuse when the encoder
531 // delay has been decreased.
sprangc5d62e22017-04-02 23:53:04 -0700532 switch (test_phase_) {
533 case TestPhase::kStart:
534 if (wants.max_pixel_count < std::numeric_limits<int>::max()) {
mflodmancc3d4422017-08-03 08:27:51 -0700535 // On adapting down, VideoStreamEncoder::VideoSourceProxy will set
536 // only the max pixel count, leaving the target unset.
sprangc5d62e22017-04-02 23:53:04 -0700537 test_phase_ = TestPhase::kAdaptedDown;
538 } else {
539 ADD_FAILURE() << "Got unexpected adaptation request, max res = "
540 << wants.max_pixel_count << ", target res = "
541 << wants.target_pixel_count.value_or(-1)
542 << ", max fps = " << wants.max_framerate_fps;
543 }
544 break;
545 case TestPhase::kAdaptedDown:
546 // On adapting up, the adaptation counter will again be at zero, and
547 // so all constraints will be reset.
548 if (wants.max_pixel_count == std::numeric_limits<int>::max() &&
549 !wants.target_pixel_count) {
550 test_phase_ = TestPhase::kAdaptedUp;
551 observation_complete_.Set();
552 } else {
553 ADD_FAILURE() << "Got unexpected adaptation request, max res = "
554 << wants.max_pixel_count << ", target res = "
555 << wants.target_pixel_count.value_or(-1)
556 << ", max fps = " << wants.max_framerate_fps;
557 }
558 break;
559 case TestPhase::kAdaptedUp:
560 ADD_FAILURE() << "Got unexpected adaptation request, max res = "
561 << wants.max_pixel_count << ", target res = "
562 << wants.target_pixel_count.value_or(-1)
563 << ", max fps = " << wants.max_framerate_fps;
perkj803d97f2016-11-01 11:45:46 -0700564 }
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +0000565 }
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +0000566
stefanff483612015-12-21 03:14:00 -0800567 void ModifyVideoConfigs(
568 VideoSendStream::Config* send_config,
569 std::vector<VideoReceiveStream::Config>* receive_configs,
570 VideoEncoderConfig* encoder_config) override {
asapersson@webrtc.org049e4ec2014-11-20 10:19:46 +0000571 }
572
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000573 void PerformTest() override {
Peter Boström5811a392015-12-10 13:02:50 +0100574 EXPECT_TRUE(Wait()) << "Timed out before receiving an overuse callback.";
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000575 }
asapersson@webrtc.org049e4ec2014-11-20 10:19:46 +0000576
sprangc5d62e22017-04-02 23:53:04 -0700577 enum class TestPhase { kStart, kAdaptedDown, kAdaptedUp } test_phase_;
perkj803d97f2016-11-01 11:45:46 -0700578 } test;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000579
stefane74eef12016-01-08 06:47:13 -0800580 RunBaseTest(&test);
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07 +0000581}
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000582
583void CallPerfTest::TestMinTransmitBitrate(bool pad_to_min_bitrate) {
584 static const int kMaxEncodeBitrateKbps = 30;
pbos@webrtc.org709e2972014-03-19 10:59:52 +0000585 static const int kMinTransmitBitrateBps = 150000;
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000586 static const int kMinAcceptableTransmitBitrate = 130;
587 static const int kMaxAcceptableTransmitBitrate = 170;
588 static const int kNumBitrateObservationsInRange = 100;
sprang867fb522015-08-03 04:38:41 -0700589 static const int kAcceptableBitrateErrorMargin = 15; // +- 7
stefanf116bd02015-10-27 08:29:42 -0700590 class BitrateObserver : public test::EndToEndTest {
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000591 public:
592 explicit BitrateObserver(bool using_min_transmit_bitrate)
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000593 : EndToEndTest(kLongTimeoutMs),
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24 +0000594 send_stream_(nullptr),
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200595 converged_(false),
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000596 pad_to_min_bitrate_(using_min_transmit_bitrate),
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200597 min_acceptable_bitrate_(using_min_transmit_bitrate
598 ? kMinAcceptableTransmitBitrate
599 : (kMaxEncodeBitrateKbps -
600 kAcceptableBitrateErrorMargin / 2)),
601 max_acceptable_bitrate_(using_min_transmit_bitrate
602 ? kMaxAcceptableTransmitBitrate
603 : (kMaxEncodeBitrateKbps +
604 kAcceptableBitrateErrorMargin / 2)),
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000605 num_bitrate_observations_in_range_(0) {}
606
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000607 private:
stefanf116bd02015-10-27 08:29:42 -0700608 // TODO(holmer): Run this with a timer instead of once per packet.
609 Action OnSendRtp(const uint8_t* packet, size_t length) override {
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000610 VideoSendStream::Stats stats = send_stream_->GetStats();
611 if (stats.substreams.size() > 0) {
kwibergaf476c72016-11-28 15:21:39 -0800612 RTC_DCHECK_EQ(1, stats.substreams.size());
stefan@webrtc.org0bae1fa2014-11-05 14:05:29 +0000613 int bitrate_kbps =
614 stats.substreams.begin()->second.total_bitrate_bps / 1000;
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200615 if (bitrate_kbps > min_acceptable_bitrate_ &&
616 bitrate_kbps < max_acceptable_bitrate_) {
617 converged_ = true;
618 ++num_bitrate_observations_in_range_;
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000619 if (num_bitrate_observations_in_range_ ==
620 kNumBitrateObservationsInRange)
Peter Boström5811a392015-12-10 13:02:50 +0100621 observation_complete_.Set();
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000622 }
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200623 if (converged_)
624 bitrate_kbps_list_.push_back(bitrate_kbps);
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000625 }
stefanf116bd02015-10-27 08:29:42 -0700626 return SEND_PACKET;
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000627 }
628
stefanff483612015-12-21 03:14:00 -0800629 void OnVideoStreamsCreated(
pbos@webrtc.orgbe9d2a42014-06-30 13:19:09 +0000630 VideoSendStream* send_stream,
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000631 const std::vector<VideoReceiveStream*>& receive_streams) override {
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000632 send_stream_ = send_stream;
633 }
634
stefanff483612015-12-21 03:14:00 -0800635 void ModifyVideoConfigs(
636 VideoSendStream::Config* send_config,
637 std::vector<VideoReceiveStream::Config>* receive_configs,
638 VideoEncoderConfig* encoder_config) override {
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000639 if (pad_to_min_bitrate_) {
pbos@webrtc.orgad3b5a52014-10-24 09:23:21 +0000640 encoder_config->min_transmit_bitrate_bps = kMinTransmitBitrateBps;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000641 } else {
henrikg91d6ede2015-09-17 00:24:34 -0700642 RTC_DCHECK_EQ(0, encoder_config->min_transmit_bitrate_bps);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000643 }
644 }
645
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000646 void PerformTest() override {
Peter Boström5811a392015-12-10 13:02:50 +0100647 EXPECT_TRUE(Wait()) << "Timeout while waiting for send-bitrate stats.";
danilchap46b89b92016-06-03 09:27:37 -0700648 test::PrintResultList(
649 "bitrate_stats_",
650 (pad_to_min_bitrate_ ? "min_transmit_bitrate"
651 : "without_min_transmit_bitrate"),
Edward Lemur2f061682017-11-24 13:40:01 +0100652 "bitrate_kbps", bitrate_kbps_list_, "kbps", false);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000653 }
654
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000655 VideoSendStream* send_stream_;
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200656 bool converged_;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000657 const bool pad_to_min_bitrate_;
Danil Chapovalov371b43b2016-06-16 09:58:44 +0200658 const int min_acceptable_bitrate_;
659 const int max_acceptable_bitrate_;
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000660 int num_bitrate_observations_in_range_;
Edward Lemur2f061682017-11-24 13:40:01 +0100661 std::vector<double> bitrate_kbps_list_;
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000662 } test(pad_to_min_bitrate);
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000663
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000664 fake_encoder_.SetMaxBitrate(kMaxEncodeBitrateKbps);
stefane74eef12016-01-08 06:47:13 -0800665 RunBaseTest(&test);
pbos@webrtc.org3349ae02014-03-13 12:52:27 +0000666}
667
668TEST_F(CallPerfTest, PadsToMinTransmitBitrate) { TestMinTransmitBitrate(true); }
669
670TEST_F(CallPerfTest, NoPadWithoutMinTransmitBitrate) {
671 TestMinTransmitBitrate(false);
672}
673
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000674TEST_F(CallPerfTest, KeepsHighBitrateWhenReconfiguringSender) {
675 static const uint32_t kInitialBitrateKbps = 400;
676 static const uint32_t kReconfigureThresholdKbps = 600;
677 static const uint32_t kPermittedReconfiguredBitrateDiffKbps = 100;
678
perkjfa10b552016-10-02 23:45:26 -0700679 class VideoStreamFactory
680 : public VideoEncoderConfig::VideoStreamFactoryInterface {
681 public:
682 VideoStreamFactory() {}
683
684 private:
685 std::vector<VideoStream> CreateEncoderStreams(
686 int width,
687 int height,
688 const VideoEncoderConfig& encoder_config) override {
689 std::vector<VideoStream> streams =
690 test::CreateVideoStreams(width, height, encoder_config);
691 streams[0].min_bitrate_bps = 50000;
692 streams[0].target_bitrate_bps = streams[0].max_bitrate_bps = 2000000;
693 return streams;
694 }
695 };
696
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000697 class BitrateObserver : public test::EndToEndTest, public test::FakeEncoder {
698 public:
699 BitrateObserver()
700 : EndToEndTest(kDefaultTimeoutMs),
701 FakeEncoder(Clock::GetRealTimeClock()),
Peter Boström5811a392015-12-10 13:02:50 +0100702 time_to_reconfigure_(false, false),
sprang867fb522015-08-03 04:38:41 -0700703 encoder_inits_(0),
Erik Språng08127a92016-11-16 16:41:30 +0100704 last_set_bitrate_kbps_(0),
705 send_stream_(nullptr),
706 frame_generator_(nullptr) {}
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000707
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000708 int32_t InitEncode(const VideoCodec* config,
709 int32_t number_of_cores,
710 size_t max_payload_size) override {
perkjfa10b552016-10-02 23:45:26 -0700711 ++encoder_inits_;
712 if (encoder_inits_ == 1) {
emircan05a55b52016-10-28 14:06:29 -0700713 // First time initialization. Frame size is known.
Per21d45d22016-10-30 21:37:57 +0100714 // |expected_bitrate| is affected by bandwidth estimation before the
715 // first frame arrives to the encoder.
Erik Språng08127a92016-11-16 16:41:30 +0100716 uint32_t expected_bitrate = last_set_bitrate_kbps_ > 0
717 ? last_set_bitrate_kbps_
718 : kInitialBitrateKbps;
Per21d45d22016-10-30 21:37:57 +0100719 EXPECT_EQ(expected_bitrate, config->startBitrate)
720 << "Encoder not initialized at expected bitrate.";
perkjfa10b552016-10-02 23:45:26 -0700721 EXPECT_EQ(kDefaultWidth, config->width);
722 EXPECT_EQ(kDefaultHeight, config->height);
Per21d45d22016-10-30 21:37:57 +0100723 } else if (encoder_inits_ == 2) {
perkjfa10b552016-10-02 23:45:26 -0700724 EXPECT_EQ(2 * kDefaultWidth, config->width);
725 EXPECT_EQ(2 * kDefaultHeight, config->height);
Erik Språng08127a92016-11-16 16:41:30 +0100726 EXPECT_GE(last_set_bitrate_kbps_, kReconfigureThresholdKbps);
Stefan Holmerf9b6e5e2017-02-06 17:17:57 +0100727 EXPECT_GT(
728 config->startBitrate,
729 last_set_bitrate_kbps_ - kPermittedReconfiguredBitrateDiffKbps)
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000730 << "Encoder reconfigured with bitrate too far away from last set.";
Peter Boström5811a392015-12-10 13:02:50 +0100731 observation_complete_.Set();
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000732 }
733 return FakeEncoder::InitEncode(config, number_of_cores, max_payload_size);
734 }
735
Erik Språng08127a92016-11-16 16:41:30 +0100736 int32_t SetRateAllocation(const BitrateAllocation& rate_allocation,
737 uint32_t framerate) override {
738 last_set_bitrate_kbps_ = rate_allocation.get_sum_kbps();
Per21d45d22016-10-30 21:37:57 +0100739 if (encoder_inits_ == 1 &&
Erik Språng08127a92016-11-16 16:41:30 +0100740 rate_allocation.get_sum_kbps() > kReconfigureThresholdKbps) {
Peter Boström5811a392015-12-10 13:02:50 +0100741 time_to_reconfigure_.Set();
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000742 }
Erik Språng08127a92016-11-16 16:41:30 +0100743 return FakeEncoder::SetRateAllocation(rate_allocation, framerate);
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000744 }
745
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000746 Call::Config GetSenderCallConfig() override {
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000747 Call::Config config = EndToEndTest::GetSenderCallConfig();
philipel4fb651d2017-04-10 03:54:05 -0700748 config.event_log = event_log_.get();
Stefan Holmere5904162015-03-26 11:11:06 +0100749 config.bitrate_config.start_bitrate_bps = kInitialBitrateKbps * 1000;
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000750 return config;
751 }
752
stefanff483612015-12-21 03:14:00 -0800753 void ModifyVideoConfigs(
754 VideoSendStream::Config* send_config,
755 std::vector<VideoReceiveStream::Config>* receive_configs,
756 VideoEncoderConfig* encoder_config) override {
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000757 send_config->encoder_settings.encoder = this;
Per21d45d22016-10-30 21:37:57 +0100758 encoder_config->max_bitrate_bps = 2 * kReconfigureThresholdKbps * 1000;
perkjfa10b552016-10-02 23:45:26 -0700759 encoder_config->video_stream_factory =
760 new rtc::RefCountedObject<VideoStreamFactory>();
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000761
perkj26091b12016-09-01 01:17:40 -0700762 encoder_config_ = encoder_config->Copy();
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000763 }
764
stefanff483612015-12-21 03:14:00 -0800765 void OnVideoStreamsCreated(
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000766 VideoSendStream* send_stream,
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000767 const std::vector<VideoReceiveStream*>& receive_streams) override {
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000768 send_stream_ = send_stream;
769 }
770
perkjfa10b552016-10-02 23:45:26 -0700771 void OnFrameGeneratorCapturerCreated(
772 test::FrameGeneratorCapturer* frame_generator_capturer) override {
773 frame_generator_ = frame_generator_capturer;
774 }
775
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +0000776 void PerformTest() override {
Peter Boström5811a392015-12-10 13:02:50 +0100777 ASSERT_TRUE(time_to_reconfigure_.Wait(kDefaultTimeoutMs))
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000778 << "Timed out before receiving an initial high bitrate.";
perkjfa10b552016-10-02 23:45:26 -0700779 frame_generator_->ChangeResolution(kDefaultWidth * 2, kDefaultHeight * 2);
perkj26091b12016-09-01 01:17:40 -0700780 send_stream_->ReconfigureVideoEncoder(encoder_config_.Copy());
Peter Boström5811a392015-12-10 13:02:50 +0100781 EXPECT_TRUE(Wait())
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000782 << "Timed out while waiting for a couple of high bitrate estimates "
783 "after reconfiguring the send stream.";
784 }
785
786 private:
Peter Boström5811a392015-12-10 13:02:50 +0100787 rtc::Event time_to_reconfigure_;
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000788 int encoder_inits_;
Erik Språng08127a92016-11-16 16:41:30 +0100789 uint32_t last_set_bitrate_kbps_;
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000790 VideoSendStream* send_stream_;
perkjfa10b552016-10-02 23:45:26 -0700791 test::FrameGeneratorCapturer* frame_generator_;
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000792 VideoEncoderConfig encoder_config_;
793 } test;
794
stefane74eef12016-01-08 06:47:13 -0800795 RunBaseTest(&test);
pbos@webrtc.org32452b22014-10-22 12:15:24 +0000796}
797
Alex Narestd0e196b2017-11-22 17:22:35 +0100798// Discovers the minimal supported audio+video bitrate. The test bitrate is
799// considered supported if Rtt does not go above 400ms with the network
800// contrained to the test bitrate.
801//
802// |use_bitrate_allocation_strategy| use AudioPriorityBitrateAllocationStrategy
803// |test_bitrate_from test_bitrate_to| bitrate constraint range
804// |test_bitrate_step| bitrate constraint update step during the test
805// |min_bwe max_bwe| BWE range
806// |start_bwe| initial BWE
807void CallPerfTest::TestMinAudioVideoBitrate(
808 bool use_bitrate_allocation_strategy,
809 int test_bitrate_from,
810 int test_bitrate_to,
811 int test_bitrate_step,
812 int min_bwe,
813 int start_bwe,
814 int max_bwe) {
815 static const std::string kAudioTrackId = "audio_track_0";
816 static constexpr uint32_t kSufficientAudioBitrateBps = 16000;
817 static constexpr int kOpusMinBitrateBps = 6000;
818 static constexpr int kOpusBitrateFbBps = 32000;
819 static constexpr int kBitrateStabilizationMs = 10000;
820 static constexpr int kBitrateMeasurements = 10;
821 static constexpr int kBitrateMeasurementMs = 1000;
822 static constexpr int kMinGoodRttMs = 400;
823
824 class MinVideoAndAudioBitrateTester : public test::EndToEndTest {
825 public:
826 MinVideoAndAudioBitrateTester(bool use_bitrate_allocation_strategy,
827 int test_bitrate_from,
828 int test_bitrate_to,
829 int test_bitrate_step,
830 int min_bwe,
831 int start_bwe,
832 int max_bwe)
833 : EndToEndTest(),
834 allocation_strategy_(new rtc::AudioPriorityBitrateAllocationStrategy(
835 kAudioTrackId,
836 kSufficientAudioBitrateBps)),
837 use_bitrate_allocation_strategy_(use_bitrate_allocation_strategy),
838 test_bitrate_from_(test_bitrate_from),
839 test_bitrate_to_(test_bitrate_to),
840 test_bitrate_step_(test_bitrate_step),
841 min_bwe_(min_bwe),
842 start_bwe_(start_bwe),
843 max_bwe_(max_bwe) {}
844
845 protected:
846 FakeNetworkPipe::Config GetFakeNetworkPipeConfig() {
847 FakeNetworkPipe::Config pipe_config;
848 pipe_config.link_capacity_kbps = test_bitrate_from_;
849 return pipe_config;
850 }
851
852 test::PacketTransport* CreateSendTransport(
853 test::SingleThreadedTaskQueueForTesting* task_queue,
854 Call* sender_call) override {
855 return send_transport_ = new test::PacketTransport(
856 task_queue, sender_call, this, test::PacketTransport::kSender,
857 test::CallTest::payload_type_map_, GetFakeNetworkPipeConfig());
858 }
859
860 test::PacketTransport* CreateReceiveTransport(
861 test::SingleThreadedTaskQueueForTesting* task_queue) override {
862 return receive_transport_ = new test::PacketTransport(
863 task_queue, nullptr, this, test::PacketTransport::kReceiver,
864 test::CallTest::payload_type_map_, GetFakeNetworkPipeConfig());
865 }
866
867 void PerformTest() override {
868 int last_passed_test_bitrate = -1;
869 for (int test_bitrate = test_bitrate_from_;
870 test_bitrate_from_ < test_bitrate_to_
871 ? test_bitrate <= test_bitrate_to_
872 : test_bitrate >= test_bitrate_to_;
873 test_bitrate += test_bitrate_step_) {
874 FakeNetworkPipe::Config pipe_config;
875 pipe_config.link_capacity_kbps = test_bitrate;
876 send_transport_->SetConfig(pipe_config);
877 receive_transport_->SetConfig(pipe_config);
878
879 rtc::ThreadManager::Instance()->CurrentThread()->SleepMs(
880 kBitrateStabilizationMs);
881
882 int64_t avg_rtt = 0;
883 for (int i = 0; i < kBitrateMeasurements; i++) {
884 Call::Stats call_stats = sender_call_->GetStats();
885 avg_rtt += call_stats.rtt_ms;
886 rtc::ThreadManager::Instance()->CurrentThread()->SleepMs(
887 kBitrateMeasurementMs);
888 }
889 avg_rtt = avg_rtt / kBitrateMeasurements;
890 if (avg_rtt > kMinGoodRttMs) {
891 break;
892 } else {
893 last_passed_test_bitrate = test_bitrate;
894 }
895 }
896 EXPECT_GT(last_passed_test_bitrate, -1)
897 << "Minimum supported bitrate out of the test scope";
Edward Lemur7f331fa2018-01-08 17:35:51 +0100898 webrtc::test::PrintResult(
899 "min_test_bitrate_",
900 use_bitrate_allocation_strategy_ ? "with_allocation_strategy"
901 : "no_allocation_strategy",
902 "min_bitrate", last_passed_test_bitrate, "kbps", false);
Alex Narestd0e196b2017-11-22 17:22:35 +0100903 }
904
905 void OnCallsCreated(Call* sender_call, Call* receiver_call) override {
906 sender_call_ = sender_call;
907 Call::Config::BitrateConfig bitrate_config;
908 bitrate_config.min_bitrate_bps = min_bwe_;
909 bitrate_config.start_bitrate_bps = start_bwe_;
910 bitrate_config.max_bitrate_bps = max_bwe_;
911 sender_call->SetBitrateConfig(bitrate_config);
912 if (use_bitrate_allocation_strategy_) {
913 sender_call->SetBitrateAllocationStrategy(
914 std::move(allocation_strategy_));
915 }
916 }
917
918 size_t GetNumVideoStreams() const override { return 1; }
919
920 size_t GetNumAudioStreams() const override { return 1; }
921
922 void ModifyAudioConfigs(
923 AudioSendStream::Config* send_config,
924 std::vector<AudioReceiveStream::Config>* receive_configs) override {
925 if (use_bitrate_allocation_strategy_) {
926 send_config->track_id = kAudioTrackId;
927 send_config->min_bitrate_bps = kOpusMinBitrateBps;
928 send_config->max_bitrate_bps = kOpusBitrateFbBps;
929 } else {
930 send_config->send_codec_spec->target_bitrate_bps =
931 rtc::Optional<int>(kOpusBitrateFbBps);
932 }
933 }
934
935 private:
936 std::unique_ptr<rtc::BitrateAllocationStrategy> allocation_strategy_;
937 const bool use_bitrate_allocation_strategy_;
938 const int test_bitrate_from_;
939 const int test_bitrate_to_;
940 const int test_bitrate_step_;
941 const int min_bwe_;
942 const int start_bwe_;
943 const int max_bwe_;
944 test::PacketTransport* send_transport_;
945 test::PacketTransport* receive_transport_;
946 Call* sender_call_;
947 } test(use_bitrate_allocation_strategy, test_bitrate_from, test_bitrate_to,
948 test_bitrate_step, min_bwe, start_bwe, max_bwe);
949
950 RunBaseTest(&test);
951}
952
953TEST_F(CallPerfTest, MinVideoAndAudioBitrate) {
954 TestMinAudioVideoBitrate(false, 110, 40, -10, 10000, 70000, 200000);
955}
956TEST_F(CallPerfTest, MinVideoAndAudioBitrateWStrategy) {
957 TestMinAudioVideoBitrate(true, 110, 40, -10, 10000, 70000, 200000);
958}
959
pbos@webrtc.org1d096902013-12-13 12:48:05 +0000960} // namespace webrtc