blob: 386ec0c52497b109bd7af2fd1b76446d8c93c9e9 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
2 * libjingle
3 * Copyright 2004 Google Inc.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include "talk/base/fakecpumonitor.h"
29#include "talk/base/gunit.h"
30#include "talk/base/logging.h"
31#include "talk/base/scoped_ptr.h"
32#include "talk/base/stream.h"
33#include "talk/media/base/constants.h"
34#include "talk/media/base/fakemediaprocessor.h"
35#include "talk/media/base/fakenetworkinterface.h"
36#include "talk/media/base/fakevideorenderer.h"
37#include "talk/media/base/mediachannel.h"
38#include "talk/media/base/testutils.h"
mallinath@webrtc.org67ee6b92014-02-03 16:57:16 +000039#include "talk/media/base/videoadapter.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000040#include "talk/media/base/videoengine_unittest.h"
41#include "talk/media/webrtc/fakewebrtcvideocapturemodule.h"
42#include "talk/media/webrtc/fakewebrtcvideoengine.h"
43#include "talk/media/webrtc/fakewebrtcvoiceengine.h"
44#include "talk/media/webrtc/webrtcvideocapturer.h"
45#include "talk/media/webrtc/webrtcvideoengine.h"
46#include "talk/media/webrtc/webrtcvideoframe.h"
47#include "talk/media/webrtc/webrtcvoiceengine.h"
48#include "talk/session/media/mediasession.h"
49#include "webrtc/system_wrappers/interface/trace.h"
50
51// Tests for the WebRtcVideoEngine/VideoChannel code.
52
53static const cricket::VideoCodec kVP8Codec720p(100, "VP8", 1280, 720, 30, 0);
54static const cricket::VideoCodec kVP8Codec360p(100, "VP8", 640, 360, 30, 0);
55static const cricket::VideoCodec kVP8Codec270p(100, "VP8", 480, 270, 30, 0);
56static const cricket::VideoCodec kVP8Codec180p(100, "VP8", 320, 180, 30, 0);
57
58static const cricket::VideoCodec kVP8Codec(100, "VP8", 640, 400, 30, 0);
59static const cricket::VideoCodec kRedCodec(101, "red", 0, 0, 0, 0);
60static const cricket::VideoCodec kUlpFecCodec(102, "ulpfec", 0, 0, 0, 0);
61static const cricket::VideoCodec* const kVideoCodecs[] = {
62 &kVP8Codec,
63 &kRedCodec,
64 &kUlpFecCodec
65};
66
67static const unsigned int kMinBandwidthKbps = 50;
68static const unsigned int kStartBandwidthKbps = 300;
69static const unsigned int kMaxBandwidthKbps = 2000;
70
71static const unsigned int kNumberOfTemporalLayers = 1;
72
wu@webrtc.org9caf2762013-12-11 18:25:07 +000073static const uint32 kSsrcs1[] = {1};
74static const uint32 kSsrcs2[] = {1, 2};
75static const uint32 kSsrcs3[] = {1, 2, 3};
76static const uint32 kRtxSsrc1[] = {4};
77static const uint32 kRtxSsrcs3[] = {4, 5, 6};
78
henrike@webrtc.org28e20752013-07-10 00:45:36 +000079
80class FakeViEWrapper : public cricket::ViEWrapper {
81 public:
82 explicit FakeViEWrapper(cricket::FakeWebRtcVideoEngine* engine)
83 : cricket::ViEWrapper(engine, // base
84 engine, // codec
85 engine, // capture
86 engine, // network
87 engine, // render
88 engine, // rtp
89 engine, // image
90 engine) { // external decoder
91 }
92};
93
94// Test fixture to test WebRtcVideoEngine with a fake webrtc::VideoEngine.
95// Useful for testing failure paths.
wu@webrtc.orgcadf9042013-08-30 21:24:16 +000096class WebRtcVideoEngineTestFake : public testing::Test,
wu@webrtc.orgd64719d2013-08-01 00:00:07 +000097 public sigslot::has_slots<> {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000098 public:
99 WebRtcVideoEngineTestFake()
100 : vie_(kVideoCodecs, ARRAY_SIZE(kVideoCodecs)),
101 cpu_monitor_(new talk_base::FakeCpuMonitor(
102 talk_base::Thread::Current())),
103 engine_(NULL, // cricket::WebRtcVoiceEngine
104 new FakeViEWrapper(&vie_), cpu_monitor_),
105 channel_(NULL),
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000106 voice_channel_(NULL),
107 last_error_(cricket::VideoMediaChannel::ERROR_NONE) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000108 }
109 bool SetupEngine() {
110 bool result = engine_.Init(talk_base::Thread::Current());
111 if (result) {
112 channel_ = engine_.CreateChannel(voice_channel_);
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000113 channel_->SignalMediaError.connect(this,
114 &WebRtcVideoEngineTestFake::OnMediaError);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000115 result = (channel_ != NULL);
116 }
117 return result;
118 }
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000119 void OnMediaError(uint32 ssrc, cricket::VideoMediaChannel::Error error) {
120 last_error_ = error;
121 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000122 bool SendI420Frame(int width, int height) {
123 if (NULL == channel_) {
124 return false;
125 }
126 cricket::WebRtcVideoFrame frame;
wu@webrtc.org9caf2762013-12-11 18:25:07 +0000127 if (!frame.InitToBlack(width, height, 1, 1, 0, 0)) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000128 return false;
129 }
130 cricket::FakeVideoCapturer capturer;
131 channel_->SendFrame(&capturer, &frame);
132 return true;
133 }
134 bool SendI420ScreencastFrame(int width, int height) {
135 return SendI420ScreencastFrameWithTimestamp(width, height, 0);
136 }
137 bool SendI420ScreencastFrameWithTimestamp(
138 int width, int height, int64 timestamp) {
139 if (NULL == channel_) {
140 return false;
141 }
142 cricket::WebRtcVideoFrame frame;
wu@webrtc.org9caf2762013-12-11 18:25:07 +0000143 if (!frame.InitToBlack(width, height, 1, 1, 0, 0)) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000144 return false;
145 }
146 cricket::FakeVideoCapturer capturer;
147 capturer.SetScreencast(true);
148 channel_->SendFrame(&capturer, &frame);
149 return true;
150 }
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000151 void VerifyCodecFeedbackParams(const cricket::VideoCodec& codec) {
152 EXPECT_TRUE(codec.HasFeedbackParam(
153 cricket::FeedbackParam(cricket::kRtcpFbParamNack,
154 cricket::kParamValueEmpty)));
155 EXPECT_TRUE(codec.HasFeedbackParam(
156 cricket::FeedbackParam(cricket::kRtcpFbParamNack,
157 cricket::kRtcpFbNackParamPli)));
158 EXPECT_TRUE(codec.HasFeedbackParam(
159 cricket::FeedbackParam(cricket::kRtcpFbParamRemb,
160 cricket::kParamValueEmpty)));
161 EXPECT_TRUE(codec.HasFeedbackParam(
162 cricket::FeedbackParam(cricket::kRtcpFbParamCcm,
163 cricket::kRtcpFbCcmParamFir)));
164 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000165 void VerifyVP8SendCodec(int channel_num,
166 unsigned int width,
167 unsigned int height,
168 unsigned int layers = 0,
169 unsigned int max_bitrate = kMaxBandwidthKbps,
170 unsigned int min_bitrate = kMinBandwidthKbps,
171 unsigned int start_bitrate = kStartBandwidthKbps,
172 unsigned int fps = 30,
173 unsigned int max_quantization = 0
174 ) {
175 webrtc::VideoCodec gcodec;
176 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
177
178 // Video codec properties.
179 EXPECT_EQ(webrtc::kVideoCodecVP8, gcodec.codecType);
180 EXPECT_STREQ("VP8", gcodec.plName);
181 EXPECT_EQ(100, gcodec.plType);
182 EXPECT_EQ(width, gcodec.width);
183 EXPECT_EQ(height, gcodec.height);
184 EXPECT_EQ(talk_base::_min(start_bitrate, max_bitrate), gcodec.startBitrate);
185 EXPECT_EQ(max_bitrate, gcodec.maxBitrate);
186 EXPECT_EQ(min_bitrate, gcodec.minBitrate);
187 EXPECT_EQ(fps, gcodec.maxFramerate);
188 // VP8 specific.
189 EXPECT_FALSE(gcodec.codecSpecific.VP8.pictureLossIndicationOn);
190 EXPECT_FALSE(gcodec.codecSpecific.VP8.feedbackModeOn);
191 EXPECT_EQ(webrtc::kComplexityNormal, gcodec.codecSpecific.VP8.complexity);
192 EXPECT_EQ(webrtc::kResilienceOff, gcodec.codecSpecific.VP8.resilience);
193 EXPECT_EQ(max_quantization, gcodec.qpMax);
194 }
195 virtual void TearDown() {
196 delete channel_;
197 engine_.Terminate();
198 }
199
200 protected:
201 cricket::FakeWebRtcVideoEngine vie_;
202 cricket::FakeWebRtcVideoDecoderFactory decoder_factory_;
203 cricket::FakeWebRtcVideoEncoderFactory encoder_factory_;
204 talk_base::FakeCpuMonitor* cpu_monitor_;
205 cricket::WebRtcVideoEngine engine_;
206 cricket::WebRtcVideoMediaChannel* channel_;
207 cricket::WebRtcVoiceMediaChannel* voice_channel_;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000208 cricket::VideoMediaChannel::Error last_error_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000209};
210
211// Test fixtures to test WebRtcVideoEngine with a real webrtc::VideoEngine.
212class WebRtcVideoEngineTest
213 : public VideoEngineTest<cricket::WebRtcVideoEngine> {
214 protected:
215 typedef VideoEngineTest<cricket::WebRtcVideoEngine> Base;
216};
217class WebRtcVideoMediaChannelTest
218 : public VideoMediaChannelTest<
219 cricket::WebRtcVideoEngine, cricket::WebRtcVideoMediaChannel> {
220 protected:
221 typedef VideoMediaChannelTest<cricket::WebRtcVideoEngine,
222 cricket::WebRtcVideoMediaChannel> Base;
223 virtual cricket::VideoCodec DefaultCodec() { return kVP8Codec; }
224 virtual void SetUp() {
225 Base::SetUp();
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000226 }
227 virtual void TearDown() {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000228 Base::TearDown();
229 }
230};
231
232/////////////////////////
233// Tests with fake ViE //
234/////////////////////////
235
236// Tests that our stub library "works".
237TEST_F(WebRtcVideoEngineTestFake, StartupShutdown) {
238 EXPECT_FALSE(vie_.IsInited());
239 EXPECT_TRUE(engine_.Init(talk_base::Thread::Current()));
240 EXPECT_TRUE(vie_.IsInited());
241 engine_.Terminate();
242}
243
244// Tests that webrtc logs are logged when they should be.
245TEST_F(WebRtcVideoEngineTest, WebRtcShouldLog) {
246 const char webrtc_log[] = "WebRtcVideoEngineTest.WebRtcShouldLog";
247 EXPECT_TRUE(engine_.Init(talk_base::Thread::Current()));
248 engine_.SetLogging(talk_base::LS_INFO, "");
249 std::string str;
250 talk_base::StringStream stream(str);
251 talk_base::LogMessage::AddLogToStream(&stream, talk_base::LS_INFO);
252 EXPECT_EQ(talk_base::LS_INFO, talk_base::LogMessage::GetLogToStream(&stream));
253 webrtc::Trace::Add(webrtc::kTraceStateInfo, webrtc::kTraceUndefined, 0,
254 webrtc_log);
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000255 talk_base::Thread::Current()->ProcessMessages(100);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000256 talk_base::LogMessage::RemoveLogToStream(&stream);
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000257 // Access |str| after LogMessage is done with it to avoid data racing.
258 EXPECT_NE(std::string::npos, str.find(webrtc_log));
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000259}
260
261// Tests that webrtc logs are not logged when they should't be.
262TEST_F(WebRtcVideoEngineTest, WebRtcShouldNotLog) {
263 const char webrtc_log[] = "WebRtcVideoEngineTest.WebRtcShouldNotLog";
264 EXPECT_TRUE(engine_.Init(talk_base::Thread::Current()));
265 // WebRTC should never be logged lower than LS_INFO.
266 engine_.SetLogging(talk_base::LS_WARNING, "");
267 std::string str;
268 talk_base::StringStream stream(str);
269 // Make sure that WebRTC is not logged, even at lowest severity
270 talk_base::LogMessage::AddLogToStream(&stream, talk_base::LS_SENSITIVE);
271 EXPECT_EQ(talk_base::LS_SENSITIVE,
272 talk_base::LogMessage::GetLogToStream(&stream));
273 webrtc::Trace::Add(webrtc::kTraceStateInfo, webrtc::kTraceUndefined, 0,
274 webrtc_log);
275 talk_base::Thread::Current()->ProcessMessages(10);
276 EXPECT_EQ(std::string::npos, str.find(webrtc_log));
277 talk_base::LogMessage::RemoveLogToStream(&stream);
278}
279
280// Tests that we can create and destroy a channel.
281TEST_F(WebRtcVideoEngineTestFake, CreateChannel) {
282 EXPECT_TRUE(engine_.Init(talk_base::Thread::Current()));
283 channel_ = engine_.CreateChannel(voice_channel_);
284 EXPECT_TRUE(channel_ != NULL);
285 EXPECT_EQ(1, engine_.GetNumOfChannels());
286 delete channel_;
287 channel_ = NULL;
288 EXPECT_EQ(0, engine_.GetNumOfChannels());
289}
290
291// Tests that we properly handle failures in CreateChannel.
292TEST_F(WebRtcVideoEngineTestFake, CreateChannelFail) {
293 vie_.set_fail_create_channel(true);
294 EXPECT_TRUE(engine_.Init(talk_base::Thread::Current()));
295 channel_ = engine_.CreateChannel(voice_channel_);
296 EXPECT_TRUE(channel_ == NULL);
297}
298
299// Tests that we properly handle failures in AllocateExternalCaptureDevice.
300TEST_F(WebRtcVideoEngineTestFake, AllocateExternalCaptureDeviceFail) {
301 vie_.set_fail_alloc_capturer(true);
302 EXPECT_TRUE(engine_.Init(talk_base::Thread::Current()));
303 channel_ = engine_.CreateChannel(voice_channel_);
304 EXPECT_TRUE(channel_ == NULL);
305}
306
307// Test that we apply our default codecs properly.
308TEST_F(WebRtcVideoEngineTestFake, SetSendCodecs) {
309 EXPECT_TRUE(SetupEngine());
310 int channel_num = vie_.GetLastChannel();
311 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
312 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
313 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height);
314 EXPECT_TRUE(vie_.GetHybridNackFecStatus(channel_num));
315 EXPECT_FALSE(vie_.GetNackStatus(channel_num));
316 // TODO(juberti): Check RTCP, PLI, TMMBR.
317}
318
319TEST_F(WebRtcVideoEngineTestFake, SetSendCodecsWithMinMaxBitrate) {
320 EXPECT_TRUE(SetupEngine());
321 int channel_num = vie_.GetLastChannel();
322 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
323 codecs[0].params[cricket::kCodecParamMinBitrate] = "10";
324 codecs[0].params[cricket::kCodecParamMaxBitrate] = "20";
325 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
326
327 VerifyVP8SendCodec(
328 channel_num, kVP8Codec.width, kVP8Codec.height, 0, 20, 10, 20);
329
330 cricket::VideoCodec codec;
331 EXPECT_TRUE(channel_->GetSendCodec(&codec));
332 EXPECT_EQ("10", codec.params[cricket::kCodecParamMinBitrate]);
333 EXPECT_EQ("20", codec.params[cricket::kCodecParamMaxBitrate]);
334}
335
336TEST_F(WebRtcVideoEngineTestFake, SetSendCodecsWithMinMaxBitrateInvalid) {
337 EXPECT_TRUE(SetupEngine());
338 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
339 codecs[0].params[cricket::kCodecParamMinBitrate] = "30";
340 codecs[0].params[cricket::kCodecParamMaxBitrate] = "20";
341 EXPECT_FALSE(channel_->SetSendCodecs(codecs));
342}
343
344TEST_F(WebRtcVideoEngineTestFake, SetSendCodecsWithLargeMinMaxBitrate) {
345 EXPECT_TRUE(SetupEngine());
346 int channel_num = vie_.GetLastChannel();
347 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
348 codecs[0].params[cricket::kCodecParamMinBitrate] = "1000";
349 codecs[0].params[cricket::kCodecParamMaxBitrate] = "2000";
350 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
351
352 VerifyVP8SendCodec(
353 channel_num, kVP8Codec.width, kVP8Codec.height, 0, 2000, 1000,
354 1000);
355}
356
357TEST_F(WebRtcVideoEngineTestFake, SetSendCodecsWithMaxQuantization) {
358 EXPECT_TRUE(SetupEngine());
359 int channel_num = vie_.GetLastChannel();
360 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
361 codecs[0].params[cricket::kCodecParamMaxQuantization] = "21";
362 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
363
364 VerifyVP8SendCodec(
365 channel_num, kVP8Codec.width, kVP8Codec.height, 0, 2000, 50, 300,
366 30, 21);
367
368 cricket::VideoCodec codec;
369 EXPECT_TRUE(channel_->GetSendCodec(&codec));
370 EXPECT_EQ("21", codec.params[cricket::kCodecParamMaxQuantization]);
371}
372
373TEST_F(WebRtcVideoEngineTestFake, SetOptionsWithMaxBitrate) {
374 EXPECT_TRUE(SetupEngine());
375 int channel_num = vie_.GetLastChannel();
376 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
377 codecs[0].params[cricket::kCodecParamMinBitrate] = "10";
378 codecs[0].params[cricket::kCodecParamMaxBitrate] = "20";
379 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
380
381 VerifyVP8SendCodec(
382 channel_num, kVP8Codec.width, kVP8Codec.height, 0, 20, 10, 20);
383
384 // Verify that max bitrate doesn't change after SetOptions().
385 cricket::VideoOptions options;
386 options.video_noise_reduction.Set(true);
387 EXPECT_TRUE(channel_->SetOptions(options));
388 VerifyVP8SendCodec(
389 channel_num, kVP8Codec.width, kVP8Codec.height, 0, 20, 10, 20);
390
391 options.video_noise_reduction.Set(false);
392 options.conference_mode.Set(false);
393 EXPECT_TRUE(channel_->SetOptions(options));
394 VerifyVP8SendCodec(
395 channel_num, kVP8Codec.width, kVP8Codec.height, 0, 20, 10, 20);
396}
397
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000398TEST_F(WebRtcVideoEngineTestFake, SetOptionsWithLoweredBitrate) {
399 EXPECT_TRUE(SetupEngine());
400 int channel_num = vie_.GetLastChannel();
401 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
402 codecs[0].params[cricket::kCodecParamMinBitrate] = "50";
403 codecs[0].params[cricket::kCodecParamMaxBitrate] = "100";
404 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
405
406 VerifyVP8SendCodec(
407 channel_num, kVP8Codec.width, kVP8Codec.height, 0, 100, 50, 100);
408
409 // Verify that min bitrate changes after SetOptions().
410 cricket::VideoOptions options;
411 options.lower_min_bitrate.Set(true);
412 EXPECT_TRUE(channel_->SetOptions(options));
413 VerifyVP8SendCodec(
414 channel_num, kVP8Codec.width, kVP8Codec.height, 0, 100, 30, 100);
415}
416
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000417TEST_F(WebRtcVideoEngineTestFake, MaxBitrateResetWithConferenceMode) {
418 EXPECT_TRUE(SetupEngine());
419 int channel_num = vie_.GetLastChannel();
420 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
421 codecs[0].params[cricket::kCodecParamMinBitrate] = "10";
422 codecs[0].params[cricket::kCodecParamMaxBitrate] = "20";
423 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
424
425 VerifyVP8SendCodec(
426 channel_num, kVP8Codec.width, kVP8Codec.height, 0, 20, 10, 20);
427
428 cricket::VideoOptions options;
429 options.conference_mode.Set(true);
430 EXPECT_TRUE(channel_->SetOptions(options));
431 options.conference_mode.Set(false);
432 EXPECT_TRUE(channel_->SetOptions(options));
433 VerifyVP8SendCodec(
434 channel_num, kVP8Codec.width, kVP8Codec.height, 0,
435 kMaxBandwidthKbps, 10, 20);
436}
437
438// Verify the current send bitrate is used as start bitrate when reconfiguring
439// the send codec.
440TEST_F(WebRtcVideoEngineTestFake, StartSendBitrate) {
441 EXPECT_TRUE(SetupEngine());
442 EXPECT_TRUE(channel_->AddSendStream(
443 cricket::StreamParams::CreateLegacy(1)));
444 int send_channel = vie_.GetLastChannel();
445 cricket::VideoCodec codec(kVP8Codec);
446 std::vector<cricket::VideoCodec> codec_list;
447 codec_list.push_back(codec);
448 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
449 const unsigned int kVideoMaxSendBitrateKbps = 2000;
450 const unsigned int kVideoMinSendBitrateKbps = 50;
451 const unsigned int kVideoDefaultStartSendBitrateKbps = 300;
452 VerifyVP8SendCodec(send_channel, kVP8Codec.width, kVP8Codec.height, 0,
453 kVideoMaxSendBitrateKbps, kVideoMinSendBitrateKbps,
454 kVideoDefaultStartSendBitrateKbps);
455 EXPECT_EQ(0, vie_.StartSend(send_channel));
456
457 // Increase the send bitrate and verify it is used as start bitrate.
458 const unsigned int kVideoSendBitrateBps = 768000;
459 vie_.SetSendBitrates(send_channel, kVideoSendBitrateBps, 0, 0);
460 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
461 VerifyVP8SendCodec(send_channel, kVP8Codec.width, kVP8Codec.height, 0,
462 kVideoMaxSendBitrateKbps, kVideoMinSendBitrateKbps,
463 kVideoSendBitrateBps / 1000);
464
465 // Never set a start bitrate higher than the max bitrate.
466 vie_.SetSendBitrates(send_channel, kVideoMaxSendBitrateKbps + 500, 0, 0);
467 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
468 VerifyVP8SendCodec(send_channel, kVP8Codec.width, kVP8Codec.height, 0,
469 kVideoMaxSendBitrateKbps, kVideoMinSendBitrateKbps,
470 kVideoDefaultStartSendBitrateKbps);
471
472 // Use the default start bitrate if the send bitrate is lower.
473 vie_.SetSendBitrates(send_channel, kVideoDefaultStartSendBitrateKbps - 50, 0,
474 0);
475 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
476 VerifyVP8SendCodec(send_channel, kVP8Codec.width, kVP8Codec.height, 0,
477 kVideoMaxSendBitrateKbps, kVideoMinSendBitrateKbps,
478 kVideoDefaultStartSendBitrateKbps);
479}
480
481
482// Test that we constrain send codecs properly.
483TEST_F(WebRtcVideoEngineTestFake, ConstrainSendCodecs) {
484 EXPECT_TRUE(SetupEngine());
485 int channel_num = vie_.GetLastChannel();
486
487 // Set max settings of 640x400x30.
488 EXPECT_TRUE(engine_.SetDefaultEncoderConfig(
489 cricket::VideoEncoderConfig(kVP8Codec)));
490
491 // Send codec format bigger than max setting.
492 cricket::VideoCodec codec(kVP8Codec);
493 codec.width = 1280;
494 codec.height = 800;
495 codec.framerate = 60;
496 std::vector<cricket::VideoCodec> codec_list;
497 codec_list.push_back(codec);
498
499 // Set send codec and verify codec has been constrained.
500 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
501 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height);
502}
503
504// Test that SetSendCodecs rejects bad format.
505TEST_F(WebRtcVideoEngineTestFake, SetSendCodecsRejectBadFormat) {
506 EXPECT_TRUE(SetupEngine());
507 int channel_num = vie_.GetLastChannel();
508
509 // Set w = 0.
510 cricket::VideoCodec codec(kVP8Codec);
511 codec.width = 0;
512 std::vector<cricket::VideoCodec> codec_list;
513 codec_list.push_back(codec);
514
515 // Verify SetSendCodecs failed and send codec is not changed on engine.
516 EXPECT_FALSE(channel_->SetSendCodecs(codec_list));
517 webrtc::VideoCodec gcodec;
518 // Set plType to something other than the value to test against ensuring
519 // that failure will happen if it is not changed.
520 gcodec.plType = 1;
521 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
522 EXPECT_EQ(0, gcodec.plType);
523
524 // Set h = 0.
525 codec_list[0].width = 640;
526 codec_list[0].height = 0;
527
528 // Verify SetSendCodecs failed and send codec is not changed on engine.
529 EXPECT_FALSE(channel_->SetSendCodecs(codec_list));
530 // Set plType to something other than the value to test against ensuring
531 // that failure will happen if it is not changed.
532 gcodec.plType = 1;
533 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
534 EXPECT_EQ(0, gcodec.plType);
535}
536
537// Test that SetSendCodecs rejects bad codec.
538TEST_F(WebRtcVideoEngineTestFake, SetSendCodecsRejectBadCodec) {
539 EXPECT_TRUE(SetupEngine());
540 int channel_num = vie_.GetLastChannel();
541
542 // Set bad codec name.
543 cricket::VideoCodec codec(kVP8Codec);
544 codec.name = "bad";
545 std::vector<cricket::VideoCodec> codec_list;
546 codec_list.push_back(codec);
547
548 // Verify SetSendCodecs failed and send codec is not changed on engine.
549 EXPECT_FALSE(channel_->SetSendCodecs(codec_list));
550 webrtc::VideoCodec gcodec;
551 // Set plType to something other than the value to test against ensuring
552 // that failure will happen if it is not changed.
553 gcodec.plType = 1;
554 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
555 EXPECT_EQ(0, gcodec.plType);
556}
557
558// Test that vie send codec is reset on new video frame size.
559TEST_F(WebRtcVideoEngineTestFake, ResetVieSendCodecOnNewFrameSize) {
560 EXPECT_TRUE(SetupEngine());
561 int channel_num = vie_.GetLastChannel();
562
563 // Set send codec.
564 std::vector<cricket::VideoCodec> codec_list;
565 codec_list.push_back(kVP8Codec);
566 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
567 EXPECT_TRUE(channel_->AddSendStream(
568 cricket::StreamParams::CreateLegacy(123)));
569 EXPECT_TRUE(channel_->SetSend(true));
570
571 // Capture a smaller frame and verify vie send codec has been reset to
572 // the new size.
573 SendI420Frame(kVP8Codec.width / 2, kVP8Codec.height / 2);
574 VerifyVP8SendCodec(channel_num, kVP8Codec.width / 2, kVP8Codec.height / 2);
575
576 // Capture a frame bigger than send_codec_ and verify vie send codec has been
577 // reset (and clipped) to send_codec_.
578 SendI420Frame(kVP8Codec.width * 2, kVP8Codec.height * 2);
579 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height);
580}
581
582// Test that we set our inbound codecs properly.
583TEST_F(WebRtcVideoEngineTestFake, SetRecvCodecs) {
584 EXPECT_TRUE(SetupEngine());
585 int channel_num = vie_.GetLastChannel();
586
587 std::vector<cricket::VideoCodec> codecs;
588 codecs.push_back(kVP8Codec);
589 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
590
591 webrtc::VideoCodec wcodec;
592 EXPECT_TRUE(engine_.ConvertFromCricketVideoCodec(kVP8Codec, &wcodec));
593 EXPECT_TRUE(vie_.ReceiveCodecRegistered(channel_num, wcodec));
594}
595
596// Test that channel connects and disconnects external capturer correctly.
597TEST_F(WebRtcVideoEngineTestFake, HasExternalCapturer) {
598 EXPECT_TRUE(SetupEngine());
599 int channel_num = vie_.GetLastChannel();
600
601 EXPECT_EQ(1, vie_.GetNumCapturers());
602 int capture_id = vie_.GetCaptureId(channel_num);
603 EXPECT_EQ(channel_num, vie_.GetCaptureChannelId(capture_id));
604
605 // Delete the channel should disconnect the capturer.
606 delete channel_;
607 channel_ = NULL;
608 EXPECT_EQ(0, vie_.GetNumCapturers());
609}
610
611// Test that channel adds and removes renderer correctly.
612TEST_F(WebRtcVideoEngineTestFake, HasRenderer) {
613 EXPECT_TRUE(SetupEngine());
614 int channel_num = vie_.GetLastChannel();
615
616 EXPECT_TRUE(vie_.GetHasRenderer(channel_num));
617 EXPECT_FALSE(vie_.GetRenderStarted(channel_num));
618}
619
620// Test that rtcp is enabled on the channel.
621TEST_F(WebRtcVideoEngineTestFake, RtcpEnabled) {
622 EXPECT_TRUE(SetupEngine());
623 int channel_num = vie_.GetLastChannel();
624 EXPECT_EQ(webrtc::kRtcpCompound_RFC4585, vie_.GetRtcpStatus(channel_num));
625}
626
627// Test that key frame request method is set on the channel.
628TEST_F(WebRtcVideoEngineTestFake, KeyFrameRequestEnabled) {
629 EXPECT_TRUE(SetupEngine());
630 int channel_num = vie_.GetLastChannel();
631 EXPECT_EQ(webrtc::kViEKeyFrameRequestPliRtcp,
632 vie_.GetKeyFrameRequestMethod(channel_num));
633}
634
635// Test that remb receive and send is enabled for the default channel in a 1:1
636// call.
637TEST_F(WebRtcVideoEngineTestFake, RembEnabled) {
638 EXPECT_TRUE(SetupEngine());
639 int channel_num = vie_.GetLastChannel();
640 EXPECT_TRUE(channel_->AddSendStream(
641 cricket::StreamParams::CreateLegacy(1)));
642 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
643 EXPECT_TRUE(vie_.GetRembStatusBwPartition(channel_num));
644 EXPECT_TRUE(channel_->SetSend(true));
645 EXPECT_TRUE(vie_.GetRembStatusBwPartition(channel_num));
646 EXPECT_TRUE(vie_.GetRembStatusContribute(channel_num));
647}
648
649// When in conference mode, test that remb is enabled on a receive channel but
650// not for the default channel and that it uses the default channel for sending
651// remb packets.
652TEST_F(WebRtcVideoEngineTestFake, RembEnabledOnReceiveChannels) {
653 EXPECT_TRUE(SetupEngine());
654 int default_channel = vie_.GetLastChannel();
655 cricket::VideoOptions options;
656 options.conference_mode.Set(true);
657 EXPECT_TRUE(channel_->SetOptions(options));
658 EXPECT_TRUE(channel_->AddSendStream(
659 cricket::StreamParams::CreateLegacy(1)));
660 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
661 EXPECT_TRUE(vie_.GetRembStatusBwPartition(default_channel));
662 EXPECT_TRUE(vie_.GetRembStatusContribute(default_channel));
663 EXPECT_TRUE(channel_->SetSend(true));
664 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
665 int new_channel_num = vie_.GetLastChannel();
666 EXPECT_NE(default_channel, new_channel_num);
667
668 EXPECT_TRUE(vie_.GetRembStatusBwPartition(default_channel));
669 EXPECT_TRUE(vie_.GetRembStatusContribute(default_channel));
670 EXPECT_FALSE(vie_.GetRembStatusBwPartition(new_channel_num));
671 EXPECT_TRUE(vie_.GetRembStatusContribute(new_channel_num));
672}
673
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +0000674TEST_F(WebRtcVideoEngineTestFake, RecvStreamWithRtx) {
675 EXPECT_TRUE(SetupEngine());
676 int default_channel = vie_.GetLastChannel();
677 cricket::VideoOptions options;
678 options.conference_mode.Set(true);
679 EXPECT_TRUE(channel_->SetOptions(options));
680 EXPECT_TRUE(channel_->AddSendStream(
681 cricket::CreateSimWithRtxStreamParams("cname",
682 MAKE_VECTOR(kSsrcs3),
683 MAKE_VECTOR(kRtxSsrcs3))));
684 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
685 EXPECT_TRUE(channel_->SetSend(true));
686 EXPECT_TRUE(channel_->AddRecvStream(
687 cricket::CreateSimWithRtxStreamParams("cname",
688 MAKE_VECTOR(kSsrcs1),
689 MAKE_VECTOR(kRtxSsrc1))));
690 int new_channel_num = vie_.GetLastChannel();
691 EXPECT_NE(default_channel, new_channel_num);
692 EXPECT_EQ(4, vie_.GetRemoteRtxSsrc(new_channel_num));
693}
694
695TEST_F(WebRtcVideoEngineTestFake, RecvStreamNoRtx) {
696 EXPECT_TRUE(SetupEngine());
697 int default_channel = vie_.GetLastChannel();
698 cricket::VideoOptions options;
699 options.conference_mode.Set(true);
700 EXPECT_TRUE(channel_->SetOptions(options));
701 EXPECT_TRUE(channel_->AddSendStream(
702 cricket::CreateSimWithRtxStreamParams("cname",
703 MAKE_VECTOR(kSsrcs3),
704 MAKE_VECTOR(kRtxSsrcs3))));
705 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
706 EXPECT_TRUE(channel_->SetSend(true));
707 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
708 int new_channel_num = vie_.GetLastChannel();
709 EXPECT_NE(default_channel, new_channel_num);
710 EXPECT_EQ(-1, vie_.GetRemoteRtxSsrc(new_channel_num));
711}
712
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000713// Test support for RTP timestamp offset header extension.
714TEST_F(WebRtcVideoEngineTestFake, RtpTimestampOffsetHeaderExtensions) {
715 EXPECT_TRUE(SetupEngine());
716 int channel_num = vie_.GetLastChannel();
717 cricket::VideoOptions options;
718 options.conference_mode.Set(true);
719 EXPECT_TRUE(channel_->SetOptions(options));
720
721 // Verify extensions are off by default.
722 EXPECT_EQ(0, vie_.GetSendRtpTimestampOffsetExtensionId(channel_num));
723 EXPECT_EQ(0, vie_.GetReceiveRtpTimestampOffsetExtensionId(channel_num));
724
725 // Enable RTP timestamp extension.
726 const int id = 14;
727 std::vector<cricket::RtpHeaderExtension> extensions;
728 extensions.push_back(cricket::RtpHeaderExtension(
729 "urn:ietf:params:rtp-hdrext:toffset", id));
730
731 // Verify the send extension id.
732 EXPECT_TRUE(channel_->SetSendRtpHeaderExtensions(extensions));
733 EXPECT_EQ(id, vie_.GetSendRtpTimestampOffsetExtensionId(channel_num));
734
735 // Remove the extension id.
736 std::vector<cricket::RtpHeaderExtension> empty_extensions;
737 EXPECT_TRUE(channel_->SetSendRtpHeaderExtensions(empty_extensions));
738 EXPECT_EQ(0, vie_.GetSendRtpTimestampOffsetExtensionId(channel_num));
739
740 // Verify receive extension id.
741 EXPECT_TRUE(channel_->SetRecvRtpHeaderExtensions(extensions));
742 EXPECT_EQ(id, vie_.GetReceiveRtpTimestampOffsetExtensionId(channel_num));
743
744 // Add a new receive stream and verify the extension is set.
745 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(2)));
746 int new_channel_num = vie_.GetLastChannel();
747 EXPECT_NE(channel_num, new_channel_num);
748 EXPECT_EQ(id, vie_.GetReceiveRtpTimestampOffsetExtensionId(new_channel_num));
749
750 // Remove the extension id.
751 EXPECT_TRUE(channel_->SetRecvRtpHeaderExtensions(empty_extensions));
752 EXPECT_EQ(0, vie_.GetReceiveRtpTimestampOffsetExtensionId(channel_num));
753 EXPECT_EQ(0, vie_.GetReceiveRtpTimestampOffsetExtensionId(new_channel_num));
754}
755
756// Test support for absolute send time header extension.
757TEST_F(WebRtcVideoEngineTestFake, AbsoluteSendTimeHeaderExtensions) {
758 EXPECT_TRUE(SetupEngine());
759 int channel_num = vie_.GetLastChannel();
760 cricket::VideoOptions options;
761 options.conference_mode.Set(true);
762 EXPECT_TRUE(channel_->SetOptions(options));
763
764 // Verify extensions are off by default.
765 EXPECT_EQ(0, vie_.GetSendAbsoluteSendTimeExtensionId(channel_num));
766 EXPECT_EQ(0, vie_.GetReceiveAbsoluteSendTimeExtensionId(channel_num));
767
768 // Enable RTP timestamp extension.
769 const int id = 12;
770 std::vector<cricket::RtpHeaderExtension> extensions;
771 extensions.push_back(cricket::RtpHeaderExtension(
772 "http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time", id));
773
774 // Verify the send extension id.
775 EXPECT_TRUE(channel_->SetSendRtpHeaderExtensions(extensions));
776 EXPECT_EQ(id, vie_.GetSendAbsoluteSendTimeExtensionId(channel_num));
777
778 // Remove the extension id.
779 std::vector<cricket::RtpHeaderExtension> empty_extensions;
780 EXPECT_TRUE(channel_->SetSendRtpHeaderExtensions(empty_extensions));
781 EXPECT_EQ(0, vie_.GetSendAbsoluteSendTimeExtensionId(channel_num));
782
783 // Verify receive extension id.
784 EXPECT_TRUE(channel_->SetRecvRtpHeaderExtensions(extensions));
785 EXPECT_EQ(id, vie_.GetReceiveAbsoluteSendTimeExtensionId(channel_num));
786
787 // Add a new receive stream and verify the extension is set.
788 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(2)));
789 int new_channel_num = vie_.GetLastChannel();
790 EXPECT_NE(channel_num, new_channel_num);
791 EXPECT_EQ(id, vie_.GetReceiveAbsoluteSendTimeExtensionId(new_channel_num));
792
793 // Remove the extension id.
794 EXPECT_TRUE(channel_->SetRecvRtpHeaderExtensions(empty_extensions));
795 EXPECT_EQ(0, vie_.GetReceiveAbsoluteSendTimeExtensionId(channel_num));
796 EXPECT_EQ(0, vie_.GetReceiveAbsoluteSendTimeExtensionId(new_channel_num));
797}
798
799TEST_F(WebRtcVideoEngineTestFake, LeakyBucketTest) {
800 EXPECT_TRUE(SetupEngine());
801
802 // Verify this is off by default.
803 EXPECT_TRUE(channel_->AddSendStream(cricket::StreamParams::CreateLegacy(1)));
804 int first_send_channel = vie_.GetLastChannel();
805 EXPECT_FALSE(vie_.GetTransmissionSmoothingStatus(first_send_channel));
806
807 // Enable the experiment and verify.
808 cricket::VideoOptions options;
809 options.conference_mode.Set(true);
810 options.video_leaky_bucket.Set(true);
811 EXPECT_TRUE(channel_->SetOptions(options));
812 EXPECT_TRUE(vie_.GetTransmissionSmoothingStatus(first_send_channel));
813
814 // Add a receive channel and verify leaky bucket isn't enabled.
815 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(2)));
816 int recv_channel_num = vie_.GetLastChannel();
817 EXPECT_NE(first_send_channel, recv_channel_num);
818 EXPECT_FALSE(vie_.GetTransmissionSmoothingStatus(recv_channel_num));
819
820 // Add a new send stream and verify leaky bucket is enabled from start.
821 EXPECT_TRUE(channel_->AddSendStream(cricket::StreamParams::CreateLegacy(3)));
822 int second_send_channel = vie_.GetLastChannel();
823 EXPECT_NE(first_send_channel, second_send_channel);
824 EXPECT_TRUE(vie_.GetTransmissionSmoothingStatus(second_send_channel));
825}
826
827TEST_F(WebRtcVideoEngineTestFake, BufferedModeLatency) {
828 EXPECT_TRUE(SetupEngine());
829
830 // Verify this is off by default.
831 EXPECT_TRUE(channel_->AddSendStream(cricket::StreamParams::CreateLegacy(1)));
832 int first_send_channel = vie_.GetLastChannel();
833 EXPECT_EQ(0, vie_.GetSenderTargetDelay(first_send_channel));
834 EXPECT_EQ(0, vie_.GetReceiverTargetDelay(first_send_channel));
835
836 // Enable the experiment and verify. The default channel will have both
837 // sender and receiver buffered mode enabled.
838 cricket::VideoOptions options;
839 options.conference_mode.Set(true);
840 options.buffered_mode_latency.Set(100);
841 EXPECT_TRUE(channel_->SetOptions(options));
842 EXPECT_EQ(100, vie_.GetSenderTargetDelay(first_send_channel));
843 EXPECT_EQ(100, vie_.GetReceiverTargetDelay(first_send_channel));
844
845 // Add a receive channel and verify sender buffered mode isn't enabled.
846 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(2)));
847 int recv_channel_num = vie_.GetLastChannel();
848 EXPECT_NE(first_send_channel, recv_channel_num);
849 EXPECT_EQ(0, vie_.GetSenderTargetDelay(recv_channel_num));
850 EXPECT_EQ(100, vie_.GetReceiverTargetDelay(recv_channel_num));
851
852 // Add a new send stream and verify sender buffered mode is enabled.
853 EXPECT_TRUE(channel_->AddSendStream(cricket::StreamParams::CreateLegacy(3)));
854 int second_send_channel = vie_.GetLastChannel();
855 EXPECT_NE(first_send_channel, second_send_channel);
856 EXPECT_EQ(100, vie_.GetSenderTargetDelay(second_send_channel));
857 EXPECT_EQ(0, vie_.GetReceiverTargetDelay(second_send_channel));
858
859 // Disable sender buffered mode and verify.
860 options.buffered_mode_latency.Set(cricket::kBufferedModeDisabled);
861 EXPECT_TRUE(channel_->SetOptions(options));
862 EXPECT_EQ(0, vie_.GetSenderTargetDelay(first_send_channel));
863 EXPECT_EQ(0, vie_.GetReceiverTargetDelay(first_send_channel));
864 EXPECT_EQ(0, vie_.GetSenderTargetDelay(second_send_channel));
865 EXPECT_EQ(0, vie_.GetReceiverTargetDelay(second_send_channel));
866 EXPECT_EQ(0, vie_.GetSenderTargetDelay(recv_channel_num));
867 EXPECT_EQ(0, vie_.GetReceiverTargetDelay(recv_channel_num));
868}
869
870TEST_F(WebRtcVideoEngineTestFake, AdditiveVideoOptions) {
871 EXPECT_TRUE(SetupEngine());
872
873 EXPECT_TRUE(channel_->AddSendStream(cricket::StreamParams::CreateLegacy(1)));
874 int first_send_channel = vie_.GetLastChannel();
875 EXPECT_EQ(0, vie_.GetSenderTargetDelay(first_send_channel));
876 EXPECT_EQ(0, vie_.GetReceiverTargetDelay(first_send_channel));
877
878 cricket::VideoOptions options1;
879 options1.buffered_mode_latency.Set(100);
880 EXPECT_TRUE(channel_->SetOptions(options1));
881 EXPECT_EQ(100, vie_.GetSenderTargetDelay(first_send_channel));
882 EXPECT_EQ(100, vie_.GetReceiverTargetDelay(first_send_channel));
883 EXPECT_FALSE(vie_.GetTransmissionSmoothingStatus(first_send_channel));
884
885 cricket::VideoOptions options2;
886 options2.video_leaky_bucket.Set(true);
887 EXPECT_TRUE(channel_->SetOptions(options2));
888 EXPECT_TRUE(vie_.GetTransmissionSmoothingStatus(first_send_channel));
889 // The buffered_mode_latency still takes effect.
890 EXPECT_EQ(100, vie_.GetSenderTargetDelay(first_send_channel));
891 EXPECT_EQ(100, vie_.GetReceiverTargetDelay(first_send_channel));
892
893 options1.buffered_mode_latency.Set(50);
894 EXPECT_TRUE(channel_->SetOptions(options1));
895 EXPECT_EQ(50, vie_.GetSenderTargetDelay(first_send_channel));
896 EXPECT_EQ(50, vie_.GetReceiverTargetDelay(first_send_channel));
897 // The video_leaky_bucket still takes effect.
898 EXPECT_TRUE(vie_.GetTransmissionSmoothingStatus(first_send_channel));
899}
900
901// Test that AddRecvStream doesn't create new channel for 1:1 call.
902TEST_F(WebRtcVideoEngineTestFake, AddRecvStream1On1) {
903 EXPECT_TRUE(SetupEngine());
904 int channel_num = vie_.GetLastChannel();
905 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
906 EXPECT_EQ(channel_num, vie_.GetLastChannel());
907}
908
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000909// Test that NACK, PLI and REMB are enabled for internal codec.
910TEST_F(WebRtcVideoEngineTestFake, InternalCodecFeedbackParams) {
911 EXPECT_TRUE(SetupEngine());
912
913 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
914 // Vp8 will appear at the beginning.
915 size_t pos = 0;
916 EXPECT_EQ("VP8", codecs[pos].name);
917 VerifyCodecFeedbackParams(codecs[pos]);
918}
919
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000920// Test that AddRecvStream doesn't change remb for 1:1 call.
921TEST_F(WebRtcVideoEngineTestFake, NoRembChangeAfterAddRecvStream) {
922 EXPECT_TRUE(SetupEngine());
923 int channel_num = vie_.GetLastChannel();
924 EXPECT_TRUE(channel_->AddSendStream(
925 cricket::StreamParams::CreateLegacy(1)));
926 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
927 EXPECT_TRUE(vie_.GetRembStatusBwPartition(channel_num));
928 EXPECT_TRUE(vie_.GetRembStatusContribute(channel_num));
929 EXPECT_TRUE(channel_->SetSend(true));
930 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
931 EXPECT_TRUE(vie_.GetRembStatusBwPartition(channel_num));
932 EXPECT_TRUE(vie_.GetRembStatusContribute(channel_num));
933}
934
935// Verify default REMB setting and that it can be turned on and off.
936TEST_F(WebRtcVideoEngineTestFake, RembOnOff) {
937 EXPECT_TRUE(SetupEngine());
938 int channel_num = vie_.GetLastChannel();
939 // Verify REMB sending is always off by default.
940 EXPECT_FALSE(vie_.GetRembStatusBwPartition(channel_num));
941
942 // Verify that REMB is turned on when setting default codecs since the
943 // default codecs have REMB enabled.
944 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
945 EXPECT_TRUE(vie_.GetRembStatusBwPartition(channel_num));
946
947 // Verify that REMB is turned off when codecs without REMB are set.
948 std::vector<cricket::VideoCodec> codecs = engine_.codecs();
949 // Clearing the codecs' FeedbackParams and setting send codecs should disable
950 // REMB.
951 for (std::vector<cricket::VideoCodec>::iterator iter = codecs.begin();
952 iter != codecs.end(); ++iter) {
953 // Intersecting with empty will clear the FeedbackParams.
954 cricket::FeedbackParams empty_params;
955 iter->feedback_params.Intersect(empty_params);
956 EXPECT_TRUE(iter->feedback_params.params().empty());
957 }
958 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
959 EXPECT_FALSE(vie_.GetRembStatusBwPartition(channel_num));
960}
961
962// Test that nack is enabled on the channel if we don't offer red/fec.
963TEST_F(WebRtcVideoEngineTestFake, NackEnabled) {
964 EXPECT_TRUE(SetupEngine());
965 int channel_num = vie_.GetLastChannel();
966 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
967 codecs.resize(1); // toss out red and ulpfec
968 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
969 EXPECT_TRUE(vie_.GetNackStatus(channel_num));
970}
971
972// Test that we enable hybrid NACK FEC mode.
973TEST_F(WebRtcVideoEngineTestFake, HybridNackFec) {
974 EXPECT_TRUE(SetupEngine());
975 int channel_num = vie_.GetLastChannel();
976 EXPECT_TRUE(channel_->SetRecvCodecs(engine_.codecs()));
977 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
978 EXPECT_TRUE(vie_.GetHybridNackFecStatus(channel_num));
979 EXPECT_FALSE(vie_.GetNackStatus(channel_num));
980}
981
982// Test that we enable hybrid NACK FEC mode when calling SetSendCodecs and
983// SetReceiveCodecs in reversed order.
984TEST_F(WebRtcVideoEngineTestFake, HybridNackFecReversedOrder) {
985 EXPECT_TRUE(SetupEngine());
986 int channel_num = vie_.GetLastChannel();
987 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
988 EXPECT_TRUE(channel_->SetRecvCodecs(engine_.codecs()));
989 EXPECT_TRUE(vie_.GetHybridNackFecStatus(channel_num));
990 EXPECT_FALSE(vie_.GetNackStatus(channel_num));
991}
992
993// Test NACK vs Hybrid NACK/FEC interop call setup, i.e. only use NACK even if
994// red/fec is offered as receive codec.
995TEST_F(WebRtcVideoEngineTestFake, VideoProtectionInterop) {
996 EXPECT_TRUE(SetupEngine());
997 int channel_num = vie_.GetLastChannel();
998 std::vector<cricket::VideoCodec> recv_codecs(engine_.codecs());
999 std::vector<cricket::VideoCodec> send_codecs(engine_.codecs());
1000 // Only add VP8 as send codec.
1001 send_codecs.resize(1);
1002 EXPECT_TRUE(channel_->SetRecvCodecs(recv_codecs));
1003 EXPECT_TRUE(channel_->SetSendCodecs(send_codecs));
1004 EXPECT_FALSE(vie_.GetHybridNackFecStatus(channel_num));
1005 EXPECT_TRUE(vie_.GetNackStatus(channel_num));
1006}
1007
1008// Test NACK vs Hybrid NACK/FEC interop call setup, i.e. only use NACK even if
1009// red/fec is offered as receive codec. Call order reversed compared to
1010// VideoProtectionInterop.
1011TEST_F(WebRtcVideoEngineTestFake, VideoProtectionInteropReversed) {
1012 EXPECT_TRUE(SetupEngine());
1013 int channel_num = vie_.GetLastChannel();
1014 std::vector<cricket::VideoCodec> recv_codecs(engine_.codecs());
1015 std::vector<cricket::VideoCodec> send_codecs(engine_.codecs());
1016 // Only add VP8 as send codec.
1017 send_codecs.resize(1);
1018 EXPECT_TRUE(channel_->SetSendCodecs(send_codecs));
1019 EXPECT_TRUE(channel_->SetRecvCodecs(recv_codecs));
1020 EXPECT_FALSE(vie_.GetHybridNackFecStatus(channel_num));
1021 EXPECT_TRUE(vie_.GetNackStatus(channel_num));
1022}
1023
1024// Test that NACK, not hybrid mode, is enabled in conference mode.
1025TEST_F(WebRtcVideoEngineTestFake, HybridNackFecConference) {
1026 EXPECT_TRUE(SetupEngine());
1027 // Setup the send channel.
1028 int send_channel_num = vie_.GetLastChannel();
1029 cricket::VideoOptions options;
1030 options.conference_mode.Set(true);
1031 EXPECT_TRUE(channel_->SetOptions(options));
1032 EXPECT_TRUE(channel_->SetRecvCodecs(engine_.codecs()));
1033 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1034 EXPECT_FALSE(vie_.GetHybridNackFecStatus(send_channel_num));
1035 EXPECT_TRUE(vie_.GetNackStatus(send_channel_num));
1036 // Add a receive stream.
1037 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
1038 int receive_channel_num = vie_.GetLastChannel();
1039 EXPECT_FALSE(vie_.GetHybridNackFecStatus(receive_channel_num));
1040 EXPECT_TRUE(vie_.GetNackStatus(receive_channel_num));
1041}
1042
1043// Test that when AddRecvStream in conference mode, a new channel is created
1044// for receiving. And the new channel's "original channel" is the send channel.
1045TEST_F(WebRtcVideoEngineTestFake, AddRemoveRecvStreamConference) {
1046 EXPECT_TRUE(SetupEngine());
1047 // Setup the send channel.
1048 int send_channel_num = vie_.GetLastChannel();
1049 cricket::VideoOptions options;
1050 options.conference_mode.Set(true);
1051 EXPECT_TRUE(channel_->SetOptions(options));
1052 // Add a receive stream.
1053 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
1054 int receive_channel_num = vie_.GetLastChannel();
1055 EXPECT_EQ(send_channel_num, vie_.GetOriginalChannelId(receive_channel_num));
1056 EXPECT_TRUE(channel_->RemoveRecvStream(1));
1057 EXPECT_FALSE(vie_.IsChannel(receive_channel_num));
1058}
1059
1060// Test that we can create a channel and start/stop rendering out on it.
1061TEST_F(WebRtcVideoEngineTestFake, SetRender) {
1062 EXPECT_TRUE(SetupEngine());
1063 int channel_num = vie_.GetLastChannel();
1064
1065 // Verify we can start/stop/start/stop rendering.
1066 EXPECT_TRUE(channel_->SetRender(true));
1067 EXPECT_TRUE(vie_.GetRenderStarted(channel_num));
1068 EXPECT_TRUE(channel_->SetRender(false));
1069 EXPECT_FALSE(vie_.GetRenderStarted(channel_num));
1070 EXPECT_TRUE(channel_->SetRender(true));
1071 EXPECT_TRUE(vie_.GetRenderStarted(channel_num));
1072 EXPECT_TRUE(channel_->SetRender(false));
1073 EXPECT_FALSE(vie_.GetRenderStarted(channel_num));
1074}
1075
1076// Test that we can create a channel and start/stop sending out on it.
1077TEST_F(WebRtcVideoEngineTestFake, SetSend) {
1078 EXPECT_TRUE(SetupEngine());
1079 int channel_num = vie_.GetLastChannel();
1080
1081 // Set send codecs on the channel.
1082 std::vector<cricket::VideoCodec> codecs;
1083 codecs.push_back(kVP8Codec);
1084 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1085 EXPECT_TRUE(channel_->AddSendStream(
1086 cricket::StreamParams::CreateLegacy(123)));
1087
1088 // Verify we can start/stop/start/stop sending.
1089 EXPECT_TRUE(channel_->SetSend(true));
1090 EXPECT_TRUE(vie_.GetSend(channel_num));
1091 EXPECT_TRUE(channel_->SetSend(false));
1092 EXPECT_FALSE(vie_.GetSend(channel_num));
1093 EXPECT_TRUE(channel_->SetSend(true));
1094 EXPECT_TRUE(vie_.GetSend(channel_num));
1095 EXPECT_TRUE(channel_->SetSend(false));
1096 EXPECT_FALSE(vie_.GetSend(channel_num));
1097}
1098
1099// Test that we set bandwidth properly when using full auto bandwidth mode.
1100TEST_F(WebRtcVideoEngineTestFake, SetBandwidthAuto) {
1101 EXPECT_TRUE(SetupEngine());
1102 int channel_num = vie_.GetLastChannel();
1103 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001104 EXPECT_TRUE(channel_->SetMaxSendBandwidth(cricket::kAutoBandwidth));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001105 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height);
1106}
1107
1108// Test that we set bandwidth properly when using auto with upper bound.
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001109TEST_F(WebRtcVideoEngineTestFake, SetBandwidthCapped) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001110 EXPECT_TRUE(SetupEngine());
1111 int channel_num = vie_.GetLastChannel();
1112 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001113 EXPECT_TRUE(channel_->SetMaxSendBandwidth(768000));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001114 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0, 768U);
1115}
1116
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001117// Test that we reduce the start bandwidth when the requested max is less than
1118// the default start bandwidth.
1119TEST_F(WebRtcVideoEngineTestFake, SetMaxBandwidthBelowDefaultStart) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001120 EXPECT_TRUE(SetupEngine());
1121 int channel_num = vie_.GetLastChannel();
1122 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001123 int max_bandwidth_kbps = (kMinBandwidthKbps + kStartBandwidthKbps) / 2;
1124 EXPECT_TRUE(channel_->SetMaxSendBandwidth(max_bandwidth_kbps * 1000));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001125 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001126 max_bandwidth_kbps, kMinBandwidthKbps, max_bandwidth_kbps);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001127}
1128
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001129// Test that we reduce the min bandwidth when the requested max is less than
1130// the min bandwidth.
1131TEST_F(WebRtcVideoEngineTestFake, SetMaxBandwidthBelowMin) {
1132 EXPECT_TRUE(SetupEngine());
1133 int channel_num = vie_.GetLastChannel();
1134 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1135 int max_bandwidth_kbps = kMinBandwidthKbps / 2;
1136 EXPECT_TRUE(channel_->SetMaxSendBandwidth(max_bandwidth_kbps * 1000));
1137 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1138 max_bandwidth_kbps, max_bandwidth_kbps, max_bandwidth_kbps);
1139}
1140
1141// Test that the start bandwidth can be controlled separately from the max
1142// bandwidth.
1143TEST_F(WebRtcVideoEngineTestFake, SetStartBandwidth) {
1144 EXPECT_TRUE(SetupEngine());
1145 int channel_num = vie_.GetLastChannel();
1146 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1147 int start_bandwidth_kbps = kStartBandwidthKbps + 1;
1148 EXPECT_TRUE(channel_->SetStartSendBandwidth(start_bandwidth_kbps * 1000));
1149 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1150 kMaxBandwidthKbps, kMinBandwidthKbps, start_bandwidth_kbps);
1151
1152 // Check that SetMaxSendBandwidth doesn't overwrite the start bandwidth.
1153 int max_bandwidth_kbps = kMaxBandwidthKbps + 1;
1154 EXPECT_TRUE(channel_->SetMaxSendBandwidth(max_bandwidth_kbps * 1000));
1155 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1156 max_bandwidth_kbps, kMinBandwidthKbps, start_bandwidth_kbps);
1157}
1158
1159// Test that SetMaxSendBandwidth is ignored in conference mode.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001160TEST_F(WebRtcVideoEngineTestFake, SetBandwidthInConference) {
1161 EXPECT_TRUE(SetupEngine());
1162 int channel_num = vie_.GetLastChannel();
1163 cricket::VideoOptions options;
1164 options.conference_mode.Set(true);
1165 EXPECT_TRUE(channel_->SetOptions(options));
1166 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1167 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height);
1168
1169 // Set send bandwidth.
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001170 EXPECT_TRUE(channel_->SetMaxSendBandwidth(768000));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001171
1172 // Verify bitrate not changed.
1173 webrtc::VideoCodec gcodec;
1174 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
1175 EXPECT_EQ(kMinBandwidthKbps, gcodec.minBitrate);
1176 EXPECT_EQ(kStartBandwidthKbps, gcodec.startBitrate);
1177 EXPECT_EQ(kMaxBandwidthKbps, gcodec.maxBitrate);
1178 EXPECT_NE(768U, gcodec.minBitrate);
1179 EXPECT_NE(768U, gcodec.startBitrate);
1180 EXPECT_NE(768U, gcodec.maxBitrate);
1181}
1182
1183// Test that sending screencast frames doesn't change bitrate.
1184TEST_F(WebRtcVideoEngineTestFake, SetBandwidthScreencast) {
1185 EXPECT_TRUE(SetupEngine());
1186 int channel_num = vie_.GetLastChannel();
1187
1188 // Set send codec.
1189 cricket::VideoCodec codec(kVP8Codec);
1190 std::vector<cricket::VideoCodec> codec_list;
1191 codec_list.push_back(codec);
1192 EXPECT_TRUE(channel_->AddSendStream(
1193 cricket::StreamParams::CreateLegacy(123)));
1194 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001195 EXPECT_TRUE(channel_->SetMaxSendBandwidth(111000));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001196 EXPECT_TRUE(channel_->SetSend(true));
1197
1198 SendI420ScreencastFrame(kVP8Codec.width, kVP8Codec.height);
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001199 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0, 111);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001200}
1201
1202
1203// Test SetSendSsrc.
1204TEST_F(WebRtcVideoEngineTestFake, SetSendSsrcAndCname) {
1205 EXPECT_TRUE(SetupEngine());
1206 int channel_num = vie_.GetLastChannel();
1207
1208 cricket::StreamParams stream;
1209 stream.ssrcs.push_back(1234);
1210 stream.cname = "cname";
1211 channel_->AddSendStream(stream);
1212
1213 unsigned int ssrc = 0;
1214 EXPECT_EQ(0, vie_.GetLocalSSRC(channel_num, ssrc));
1215 EXPECT_EQ(1234U, ssrc);
1216 EXPECT_EQ(1, vie_.GetNumSsrcs(channel_num));
1217
1218 char rtcp_cname[256];
1219 EXPECT_EQ(0, vie_.GetRTCPCName(channel_num, rtcp_cname));
1220 EXPECT_STREQ("cname", rtcp_cname);
1221}
1222
1223
1224// Test that the local SSRC is the same on sending and receiving channels if the
1225// receive channel is created before the send channel.
1226TEST_F(WebRtcVideoEngineTestFake, SetSendSsrcAfterCreatingReceiveChannel) {
1227 EXPECT_TRUE(SetupEngine());
1228
1229 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
1230 int receive_channel_num = vie_.GetLastChannel();
1231 cricket::StreamParams stream = cricket::StreamParams::CreateLegacy(1234);
1232 EXPECT_TRUE(channel_->AddSendStream(stream));
1233 int send_channel_num = vie_.GetLastChannel();
1234 unsigned int ssrc = 0;
1235 EXPECT_EQ(0, vie_.GetLocalSSRC(send_channel_num, ssrc));
1236 EXPECT_EQ(1234U, ssrc);
1237 EXPECT_EQ(1, vie_.GetNumSsrcs(send_channel_num));
1238 ssrc = 0;
1239 EXPECT_EQ(0, vie_.GetLocalSSRC(receive_channel_num, ssrc));
1240 EXPECT_EQ(1234U, ssrc);
1241 EXPECT_EQ(1, vie_.GetNumSsrcs(receive_channel_num));
1242}
1243
1244
1245// Test SetOptions with denoising flag.
1246TEST_F(WebRtcVideoEngineTestFake, SetOptionsWithDenoising) {
1247 EXPECT_TRUE(SetupEngine());
1248 EXPECT_EQ(1, vie_.GetNumCapturers());
1249 int channel_num = vie_.GetLastChannel();
1250 int capture_id = vie_.GetCaptureId(channel_num);
1251 // Set send codecs on the channel.
1252 std::vector<cricket::VideoCodec> codecs;
1253 codecs.push_back(kVP8Codec);
1254 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1255
1256 // Set options with OPT_VIDEO_NOISE_REDUCTION flag.
1257 cricket::VideoOptions options;
1258 options.video_noise_reduction.Set(true);
1259 EXPECT_TRUE(channel_->SetOptions(options));
1260
1261 // Verify capture has denoising turned on.
1262 webrtc::VideoCodec send_codec;
1263 memset(&send_codec, 0, sizeof(send_codec)); // avoid uninitialized warning
1264 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, send_codec));
1265 EXPECT_TRUE(send_codec.codecSpecific.VP8.denoisingOn);
1266 EXPECT_FALSE(vie_.GetCaptureDenoising(capture_id));
1267
1268 // Set options back to zero.
1269 options.video_noise_reduction.Set(false);
1270 EXPECT_TRUE(channel_->SetOptions(options));
1271
1272 // Verify capture has denoising turned off.
1273 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, send_codec));
1274 EXPECT_FALSE(send_codec.codecSpecific.VP8.denoisingOn);
1275 EXPECT_FALSE(vie_.GetCaptureDenoising(capture_id));
1276}
1277
wu@webrtc.orga8910d22014-01-23 22:12:45 +00001278TEST_F(WebRtcVideoEngineTestFake, MultipleSendStreamsWithOneCapturer) {
wu@webrtc.org24301a62013-12-13 19:17:43 +00001279 EXPECT_TRUE(SetupEngine());
1280
1281 // Start the capturer
1282 cricket::FakeVideoCapturer capturer;
1283 cricket::VideoFormat capture_format_vga = cricket::VideoFormat(640, 480,
1284 cricket::VideoFormat::FpsToInterval(30), cricket::FOURCC_I420);
1285 EXPECT_EQ(cricket::CS_RUNNING, capturer.Start(capture_format_vga));
1286
1287 // Add send streams and connect the capturer
1288 for (unsigned int i = 0; i < sizeof(kSsrcs2)/sizeof(kSsrcs2[0]); ++i) {
1289 EXPECT_TRUE(channel_->AddSendStream(
1290 cricket::StreamParams::CreateLegacy(kSsrcs2[i])));
1291 // Register the capturer to the ssrc.
1292 EXPECT_TRUE(channel_->SetCapturer(kSsrcs2[i], &capturer));
1293 }
1294
1295 const int channel0 = vie_.GetChannelFromLocalSsrc(kSsrcs2[0]);
1296 ASSERT_NE(-1, channel0);
1297 const int channel1 = vie_.GetChannelFromLocalSsrc(kSsrcs2[1]);
1298 ASSERT_NE(-1, channel1);
1299 ASSERT_NE(channel0, channel1);
1300
1301 // Set send codec.
1302 std::vector<cricket::VideoCodec> codecs;
1303 cricket::VideoCodec send_codec(100, "VP8", 640, 480, 30, 0);
1304 codecs.push_back(send_codec);
1305 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1306
1307 EXPECT_TRUE(capturer.CaptureFrame());
1308 EXPECT_EQ(1, vie_.GetIncomingFrameNum(channel0));
1309 EXPECT_EQ(1, vie_.GetIncomingFrameNum(channel1));
1310
1311 EXPECT_TRUE(channel_->RemoveSendStream(kSsrcs2[0]));
1312 EXPECT_TRUE(capturer.CaptureFrame());
1313 // channel0 is the default channel, so it won't be deleted.
1314 // But it should be disconnected from the capturer.
1315 EXPECT_EQ(1, vie_.GetIncomingFrameNum(channel0));
1316 EXPECT_EQ(2, vie_.GetIncomingFrameNum(channel1));
1317
1318 EXPECT_TRUE(channel_->RemoveSendStream(kSsrcs2[1]));
1319 EXPECT_TRUE(capturer.CaptureFrame());
1320 EXPECT_EQ(1, vie_.GetIncomingFrameNum(channel0));
1321 // channel1 has already been deleted.
1322 EXPECT_EQ(-1, vie_.GetIncomingFrameNum(channel1));
1323}
1324
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001325
wu@webrtc.org97077a32013-10-25 21:18:33 +00001326// Disabled since its flaky: b/11288120
1327TEST_F(WebRtcVideoEngineTestFake, DISABLED_SendReceiveBitratesStats) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001328 EXPECT_TRUE(SetupEngine());
1329 cricket::VideoOptions options;
1330 options.conference_mode.Set(true);
1331 EXPECT_TRUE(channel_->SetOptions(options));
1332 EXPECT_TRUE(channel_->AddSendStream(
1333 cricket::StreamParams::CreateLegacy(1)));
1334 int send_channel = vie_.GetLastChannel();
1335 cricket::VideoCodec codec(kVP8Codec720p);
1336 std::vector<cricket::VideoCodec> codec_list;
1337 codec_list.push_back(codec);
1338 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
1339
1340 EXPECT_TRUE(channel_->AddRecvStream(
1341 cricket::StreamParams::CreateLegacy(2)));
1342 int first_receive_channel = vie_.GetLastChannel();
1343 EXPECT_NE(send_channel, first_receive_channel);
1344 EXPECT_TRUE(channel_->AddRecvStream(
1345 cricket::StreamParams::CreateLegacy(3)));
1346 int second_receive_channel = vie_.GetLastChannel();
1347 EXPECT_NE(first_receive_channel, second_receive_channel);
1348
1349 cricket::VideoMediaInfo info;
1350 EXPECT_TRUE(channel_->GetStats(&info));
1351 ASSERT_EQ(1U, info.bw_estimations.size());
1352 ASSERT_EQ(0, info.bw_estimations[0].actual_enc_bitrate);
1353 ASSERT_EQ(0, info.bw_estimations[0].transmit_bitrate);
1354 ASSERT_EQ(0, info.bw_estimations[0].retransmit_bitrate);
1355 ASSERT_EQ(0, info.bw_estimations[0].available_send_bandwidth);
1356 ASSERT_EQ(0, info.bw_estimations[0].available_recv_bandwidth);
1357 ASSERT_EQ(0, info.bw_estimations[0].target_enc_bitrate);
1358
1359 // Start sending and receiving on one of the channels and verify bitrates.
1360 EXPECT_EQ(0, vie_.StartSend(send_channel));
1361 int send_video_bitrate = 800;
1362 int send_fec_bitrate = 100;
1363 int send_nack_bitrate = 20;
1364 int send_total_bitrate = send_video_bitrate + send_fec_bitrate +
1365 send_nack_bitrate;
1366 int send_bandwidth = 950;
1367 vie_.SetSendBitrates(send_channel, send_video_bitrate, send_fec_bitrate,
1368 send_nack_bitrate);
1369 vie_.SetSendBandwidthEstimate(send_channel, send_bandwidth);
1370
1371 EXPECT_EQ(0, vie_.StartReceive(first_receive_channel));
1372 int first_channel_receive_bandwidth = 600;
1373 vie_.SetReceiveBandwidthEstimate(first_receive_channel,
1374 first_channel_receive_bandwidth);
1375
1376 info.Clear();
1377 EXPECT_TRUE(channel_->GetStats(&info));
1378 ASSERT_EQ(1U, info.bw_estimations.size());
1379 ASSERT_EQ(send_video_bitrate, info.bw_estimations[0].actual_enc_bitrate);
1380 ASSERT_EQ(send_total_bitrate, info.bw_estimations[0].transmit_bitrate);
1381 ASSERT_EQ(send_nack_bitrate, info.bw_estimations[0].retransmit_bitrate);
1382 ASSERT_EQ(send_bandwidth, info.bw_estimations[0].available_send_bandwidth);
1383 ASSERT_EQ(first_channel_receive_bandwidth,
1384 info.bw_estimations[0].available_recv_bandwidth);
1385 ASSERT_EQ(send_video_bitrate, info.bw_estimations[0].target_enc_bitrate);
1386
1387 // Start receiving on the second channel and verify received rate.
1388 EXPECT_EQ(0, vie_.StartReceive(second_receive_channel));
1389 int second_channel_receive_bandwidth = 100;
1390 vie_.SetReceiveBandwidthEstimate(second_receive_channel,
1391 second_channel_receive_bandwidth);
1392
1393 info.Clear();
1394 EXPECT_TRUE(channel_->GetStats(&info));
1395 ASSERT_EQ(1U, info.bw_estimations.size());
1396 ASSERT_EQ(send_video_bitrate, info.bw_estimations[0].actual_enc_bitrate);
1397 ASSERT_EQ(send_total_bitrate, info.bw_estimations[0].transmit_bitrate);
1398 ASSERT_EQ(send_nack_bitrate, info.bw_estimations[0].retransmit_bitrate);
1399 ASSERT_EQ(send_bandwidth, info.bw_estimations[0].available_send_bandwidth);
1400 ASSERT_EQ(first_channel_receive_bandwidth + second_channel_receive_bandwidth,
1401 info.bw_estimations[0].available_recv_bandwidth);
1402 ASSERT_EQ(send_video_bitrate, info.bw_estimations[0].target_enc_bitrate);
1403}
1404
1405TEST_F(WebRtcVideoEngineTestFake, TestSetAdaptInputToCpuUsage) {
1406 EXPECT_TRUE(SetupEngine());
1407 cricket::VideoOptions options_in, options_out;
1408 bool cpu_adapt = false;
1409 channel_->SetOptions(options_in);
1410 EXPECT_TRUE(channel_->GetOptions(&options_out));
1411 EXPECT_FALSE(options_out.adapt_input_to_cpu_usage.Get(&cpu_adapt));
1412 // Set adapt input CPU usage option.
1413 options_in.adapt_input_to_cpu_usage.Set(true);
1414 EXPECT_TRUE(channel_->SetOptions(options_in));
1415 EXPECT_TRUE(channel_->GetOptions(&options_out));
1416 EXPECT_TRUE(options_out.adapt_input_to_cpu_usage.Get(&cpu_adapt));
1417 EXPECT_TRUE(cpu_adapt);
1418}
1419
1420TEST_F(WebRtcVideoEngineTestFake, TestSetCpuThreshold) {
1421 EXPECT_TRUE(SetupEngine());
1422 float low, high;
1423 cricket::VideoOptions options_in, options_out;
1424 // Verify that initial values are set.
1425 EXPECT_TRUE(channel_->GetOptions(&options_out));
1426 EXPECT_TRUE(options_out.system_low_adaptation_threshhold.Get(&low));
1427 EXPECT_EQ(low, 0.65f);
1428 EXPECT_TRUE(options_out.system_high_adaptation_threshhold.Get(&high));
1429 EXPECT_EQ(high, 0.85f);
1430 // Set new CPU threshold values.
1431 options_in.system_low_adaptation_threshhold.Set(0.45f);
1432 options_in.system_high_adaptation_threshhold.Set(0.95f);
1433 EXPECT_TRUE(channel_->SetOptions(options_in));
1434 EXPECT_TRUE(channel_->GetOptions(&options_out));
1435 EXPECT_TRUE(options_out.system_low_adaptation_threshhold.Get(&low));
1436 EXPECT_EQ(low, 0.45f);
1437 EXPECT_TRUE(options_out.system_high_adaptation_threshhold.Get(&high));
1438 EXPECT_EQ(high, 0.95f);
1439}
1440
1441TEST_F(WebRtcVideoEngineTestFake, TestSetInvalidCpuThreshold) {
1442 EXPECT_TRUE(SetupEngine());
1443 float low, high;
1444 cricket::VideoOptions options_in, options_out;
1445 // Valid range is [0, 1].
1446 options_in.system_low_adaptation_threshhold.Set(-1.5f);
1447 options_in.system_high_adaptation_threshhold.Set(1.5f);
1448 EXPECT_TRUE(channel_->SetOptions(options_in));
1449 EXPECT_TRUE(channel_->GetOptions(&options_out));
1450 EXPECT_TRUE(options_out.system_low_adaptation_threshhold.Get(&low));
1451 EXPECT_EQ(low, 0.0f);
1452 EXPECT_TRUE(options_out.system_high_adaptation_threshhold.Get(&high));
1453 EXPECT_EQ(high, 1.0f);
1454}
1455
1456
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +00001457TEST_F(WebRtcVideoEngineTestFake, ResetCodecOnScreencast) {
1458 EXPECT_TRUE(SetupEngine());
1459 cricket::VideoOptions options;
1460 options.video_noise_reduction.Set(true);
1461 EXPECT_TRUE(channel_->SetOptions(options));
1462
1463 // Set send codec.
1464 cricket::VideoCodec codec(kVP8Codec);
1465 std::vector<cricket::VideoCodec> codec_list;
1466 codec_list.push_back(codec);
1467 EXPECT_TRUE(channel_->AddSendStream(
1468 cricket::StreamParams::CreateLegacy(123)));
1469 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
1470 EXPECT_TRUE(channel_->SetSend(true));
1471 EXPECT_EQ(1, vie_.num_set_send_codecs());
1472
1473 webrtc::VideoCodec gcodec;
1474 memset(&gcodec, 0, sizeof(gcodec));
1475 int channel_num = vie_.GetLastChannel();
1476 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
1477 EXPECT_TRUE(gcodec.codecSpecific.VP8.denoisingOn);
1478
1479 // Send a screencast frame with the same size.
1480 // Verify that denoising is turned off.
1481 SendI420ScreencastFrame(kVP8Codec.width, kVP8Codec.height);
1482 EXPECT_EQ(2, vie_.num_set_send_codecs());
1483 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
1484 EXPECT_FALSE(gcodec.codecSpecific.VP8.denoisingOn);
1485}
1486
1487
1488TEST_F(WebRtcVideoEngineTestFake, DontRegisterDecoderIfFactoryIsNotGiven) {
1489 engine_.SetExternalDecoderFactory(NULL);
1490 EXPECT_TRUE(SetupEngine());
1491 int channel_num = vie_.GetLastChannel();
1492
1493 std::vector<cricket::VideoCodec> codecs;
1494 codecs.push_back(kVP8Codec);
1495 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1496
1497 EXPECT_EQ(0, vie_.GetNumExternalDecoderRegistered(channel_num));
1498}
1499
1500TEST_F(WebRtcVideoEngineTestFake, RegisterDecoderIfFactoryIsGiven) {
1501 decoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8);
1502 engine_.SetExternalDecoderFactory(&decoder_factory_);
1503 EXPECT_TRUE(SetupEngine());
1504 int channel_num = vie_.GetLastChannel();
1505
1506 std::vector<cricket::VideoCodec> codecs;
1507 codecs.push_back(kVP8Codec);
1508 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1509
1510 EXPECT_TRUE(vie_.ExternalDecoderRegistered(channel_num, 100));
1511 EXPECT_EQ(1, vie_.GetNumExternalDecoderRegistered(channel_num));
1512}
1513
1514TEST_F(WebRtcVideoEngineTestFake, DontRegisterDecoderMultipleTimes) {
1515 decoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8);
1516 engine_.SetExternalDecoderFactory(&decoder_factory_);
1517 EXPECT_TRUE(SetupEngine());
1518 int channel_num = vie_.GetLastChannel();
1519
1520 std::vector<cricket::VideoCodec> codecs;
1521 codecs.push_back(kVP8Codec);
1522 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1523
1524 EXPECT_TRUE(vie_.ExternalDecoderRegistered(channel_num, 100));
1525 EXPECT_EQ(1, vie_.GetNumExternalDecoderRegistered(channel_num));
1526 EXPECT_EQ(1, decoder_factory_.GetNumCreatedDecoders());
1527
1528 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1529 EXPECT_EQ(1, vie_.GetNumExternalDecoderRegistered(channel_num));
1530 EXPECT_EQ(1, decoder_factory_.GetNumCreatedDecoders());
1531}
1532
1533TEST_F(WebRtcVideoEngineTestFake, DontRegisterDecoderForNonVP8) {
1534 decoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8);
1535 engine_.SetExternalDecoderFactory(&decoder_factory_);
1536 EXPECT_TRUE(SetupEngine());
1537 int channel_num = vie_.GetLastChannel();
1538
1539 std::vector<cricket::VideoCodec> codecs;
1540 codecs.push_back(kRedCodec);
1541 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1542
1543 EXPECT_EQ(0, vie_.GetNumExternalDecoderRegistered(channel_num));
1544}
1545
1546TEST_F(WebRtcVideoEngineTestFake, DontRegisterEncoderIfFactoryIsNotGiven) {
1547 engine_.SetExternalEncoderFactory(NULL);
1548 EXPECT_TRUE(SetupEngine());
1549 int channel_num = vie_.GetLastChannel();
1550
1551 std::vector<cricket::VideoCodec> codecs;
1552 codecs.push_back(kVP8Codec);
1553 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1554
1555 EXPECT_EQ(0, vie_.GetNumExternalEncoderRegistered(channel_num));
1556}
1557
1558TEST_F(WebRtcVideoEngineTestFake, RegisterEncoderIfFactoryIsGiven) {
1559 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1560 engine_.SetExternalEncoderFactory(&encoder_factory_);
1561 EXPECT_TRUE(SetupEngine());
1562 int channel_num = vie_.GetLastChannel();
1563
1564 std::vector<cricket::VideoCodec> codecs;
1565 codecs.push_back(kVP8Codec);
1566 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1567
1568 EXPECT_TRUE(channel_->AddSendStream(
1569 cricket::StreamParams::CreateLegacy(kSsrc)));
1570
1571 EXPECT_TRUE(vie_.ExternalEncoderRegistered(channel_num, 100));
1572 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1573
1574 // Remove stream previously added to free the external encoder instance.
1575 EXPECT_TRUE(channel_->RemoveSendStream(kSsrc));
1576}
1577
1578TEST_F(WebRtcVideoEngineTestFake, DontRegisterEncoderMultipleTimes) {
1579 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1580 engine_.SetExternalEncoderFactory(&encoder_factory_);
1581 EXPECT_TRUE(SetupEngine());
1582 int channel_num = vie_.GetLastChannel();
1583
1584 std::vector<cricket::VideoCodec> codecs;
1585 codecs.push_back(kVP8Codec);
1586 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1587
1588 EXPECT_TRUE(channel_->AddSendStream(
1589 cricket::StreamParams::CreateLegacy(kSsrc)));
1590
1591 EXPECT_TRUE(vie_.ExternalEncoderRegistered(channel_num, 100));
1592 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1593 EXPECT_EQ(1, encoder_factory_.GetNumCreatedEncoders());
1594
1595 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1596 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1597 EXPECT_EQ(1, encoder_factory_.GetNumCreatedEncoders());
1598
1599 // Remove stream previously added to free the external encoder instance.
1600 EXPECT_TRUE(channel_->RemoveSendStream(kSsrc));
1601}
1602
1603TEST_F(WebRtcVideoEngineTestFake, RegisterEncoderWithMultipleSendStreams) {
1604 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1605 engine_.SetExternalEncoderFactory(&encoder_factory_);
1606 EXPECT_TRUE(SetupEngine());
1607
1608 std::vector<cricket::VideoCodec> codecs;
1609 codecs.push_back(kVP8Codec);
1610 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1611 EXPECT_EQ(1, vie_.GetTotalNumExternalEncoderRegistered());
1612
1613 // When we add the first stream (1234), it reuses the default send channel,
1614 // so it doesn't increase the registration count of external encoders.
1615 EXPECT_TRUE(channel_->AddSendStream(
1616 cricket::StreamParams::CreateLegacy(1234)));
1617 EXPECT_EQ(1, vie_.GetTotalNumExternalEncoderRegistered());
1618
1619 // When we add the second stream (2345), it creates a new channel and
1620 // increments the registration count.
1621 EXPECT_TRUE(channel_->AddSendStream(
1622 cricket::StreamParams::CreateLegacy(2345)));
1623 EXPECT_EQ(2, vie_.GetTotalNumExternalEncoderRegistered());
1624
1625 // At this moment the total registration count is two, but only one encoder
1626 // is registered per channel.
1627 int channel_num = vie_.GetLastChannel();
1628 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1629
1630 // Removing send streams decrements the registration count.
1631 EXPECT_TRUE(channel_->RemoveSendStream(1234));
1632 EXPECT_EQ(1, vie_.GetTotalNumExternalEncoderRegistered());
1633
1634 // When we remove the last send stream, it also destroys the last send
1635 // channel and causes the registration count to drop to zero. It is a little
1636 // weird, but not a bug.
1637 EXPECT_TRUE(channel_->RemoveSendStream(2345));
1638 EXPECT_EQ(0, vie_.GetTotalNumExternalEncoderRegistered());
1639}
1640
1641TEST_F(WebRtcVideoEngineTestFake, DontRegisterEncoderForNonVP8) {
1642 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecGeneric,
1643 "GENERIC");
1644 engine_.SetExternalEncoderFactory(&encoder_factory_);
1645 EXPECT_TRUE(SetupEngine());
1646 int channel_num = vie_.GetLastChannel();
1647
1648 // Note: unlike the SetRecvCodecs, we must set a valid video codec for
1649 // channel_->SetSendCodecs() to succeed.
1650 std::vector<cricket::VideoCodec> codecs;
1651 codecs.push_back(kVP8Codec);
1652 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1653
1654 EXPECT_EQ(0, vie_.GetNumExternalEncoderRegistered(channel_num));
1655}
1656
1657// Test that NACK, PLI and REMB are enabled for external codec.
1658TEST_F(WebRtcVideoEngineTestFake, ExternalCodecFeedbackParams) {
1659 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecGeneric,
1660 "GENERIC");
1661 engine_.SetExternalEncoderFactory(&encoder_factory_);
1662 encoder_factory_.NotifyCodecsAvailable();
1663 EXPECT_TRUE(SetupEngine());
1664
1665 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
1666 // The external codec will appear at last.
1667 size_t pos = codecs.size() - 1;
1668 EXPECT_EQ("GENERIC", codecs[pos].name);
1669 VerifyCodecFeedbackParams(codecs[pos]);
1670}
1671
1672// Test external codec with be added to the end of the supported codec list.
1673TEST_F(WebRtcVideoEngineTestFake, ExternalCodecAddedToTheEnd) {
1674 EXPECT_TRUE(SetupEngine());
1675
1676 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
1677 EXPECT_EQ("VP8", codecs[0].name);
1678
1679 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecGeneric,
1680 "GENERIC");
1681 engine_.SetExternalEncoderFactory(&encoder_factory_);
1682 encoder_factory_.NotifyCodecsAvailable();
1683
1684 codecs = engine_.codecs();
1685 cricket::VideoCodec internal_codec = codecs[0];
1686 cricket::VideoCodec external_codec = codecs[codecs.size() - 1];
1687 // The external codec will appear at last.
1688 EXPECT_EQ("GENERIC", external_codec.name);
1689 // The internal codec is preferred.
1690 EXPECT_GE(internal_codec.preference, external_codec.preference);
1691}
1692
1693// Test that external codec with be ignored if it has the same name as one of
1694// the internal codecs.
1695TEST_F(WebRtcVideoEngineTestFake, ExternalCodecIgnored) {
1696 EXPECT_TRUE(SetupEngine());
1697
1698 std::vector<cricket::VideoCodec> internal_codecs(engine_.codecs());
1699 EXPECT_EQ("VP8", internal_codecs[0].name);
1700
1701 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1702 engine_.SetExternalEncoderFactory(&encoder_factory_);
1703 encoder_factory_.NotifyCodecsAvailable();
1704
1705 std::vector<cricket::VideoCodec> codecs = engine_.codecs();
1706 EXPECT_EQ("VP8", codecs[0].name);
1707 EXPECT_EQ(internal_codecs[0].height, codecs[0].height);
1708 EXPECT_EQ(internal_codecs[0].width, codecs[0].width);
1709 // Verify the last codec is not the external codec.
1710 EXPECT_NE("VP8", codecs[codecs.size() - 1].name);
1711}
1712
1713TEST_F(WebRtcVideoEngineTestFake, UpdateEncoderCodecsAfterSetFactory) {
1714 engine_.SetExternalEncoderFactory(&encoder_factory_);
1715 EXPECT_TRUE(SetupEngine());
1716 int channel_num = vie_.GetLastChannel();
1717
1718 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1719 encoder_factory_.NotifyCodecsAvailable();
1720 std::vector<cricket::VideoCodec> codecs;
1721 codecs.push_back(kVP8Codec);
1722 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1723
1724 EXPECT_TRUE(channel_->AddSendStream(
1725 cricket::StreamParams::CreateLegacy(kSsrc)));
1726
1727 EXPECT_TRUE(vie_.ExternalEncoderRegistered(channel_num, 100));
1728 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1729 EXPECT_EQ(1, encoder_factory_.GetNumCreatedEncoders());
1730
1731 // Remove stream previously added to free the external encoder instance.
1732 EXPECT_TRUE(channel_->RemoveSendStream(kSsrc));
1733}
1734
1735// Tests that OnReadyToSend will be propagated into ViE.
1736TEST_F(WebRtcVideoEngineTestFake, OnReadyToSend) {
1737 EXPECT_TRUE(SetupEngine());
1738 int channel_num = vie_.GetLastChannel();
1739 EXPECT_TRUE(vie_.GetIsTransmitting(channel_num));
1740
1741 channel_->OnReadyToSend(false);
1742 EXPECT_FALSE(vie_.GetIsTransmitting(channel_num));
1743
1744 channel_->OnReadyToSend(true);
1745 EXPECT_TRUE(vie_.GetIsTransmitting(channel_num));
1746}
1747
1748#if 0
1749TEST_F(WebRtcVideoEngineTestFake, CaptureFrameTimestampToNtpTimestamp) {
1750 EXPECT_TRUE(SetupEngine());
1751 int capture_id = vie_.GetCaptureId(vie_.GetLastChannel());
1752
1753 // Set send codec.
1754 cricket::VideoCodec codec(kVP8Codec);
1755 std::vector<cricket::VideoCodec> codec_list;
1756 codec_list.push_back(codec);
1757 EXPECT_TRUE(channel_->AddSendStream(
1758 cricket::StreamParams::CreateLegacy(123)));
1759 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
1760 EXPECT_TRUE(channel_->SetSend(true));
1761
1762 int64 timestamp = time(NULL) * talk_base::kNumNanosecsPerSec;
1763 SendI420ScreencastFrameWithTimestamp(
1764 kVP8Codec.width, kVP8Codec.height, timestamp);
1765 EXPECT_EQ(talk_base::UnixTimestampNanosecsToNtpMillisecs(timestamp),
1766 vie_.GetCaptureLastTimestamp(capture_id));
1767
1768 SendI420ScreencastFrameWithTimestamp(kVP8Codec.width, kVP8Codec.height, 0);
1769 EXPECT_EQ(0, vie_.GetCaptureLastTimestamp(capture_id));
1770}
1771#endif
1772
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001773/////////////////////////
1774// Tests with real ViE //
1775/////////////////////////
1776
1777// Tests that we can find codecs by name or id.
1778TEST_F(WebRtcVideoEngineTest, FindCodec) {
1779 // We should not need to init engine in order to get codecs.
1780 const std::vector<cricket::VideoCodec>& c = engine_.codecs();
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +00001781 EXPECT_EQ(4U, c.size());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001782
1783 cricket::VideoCodec vp8(104, "VP8", 320, 200, 30, 0);
1784 EXPECT_TRUE(engine_.FindCodec(vp8));
1785
1786 cricket::VideoCodec vp8_ci(104, "vp8", 320, 200, 30, 0);
1787 EXPECT_TRUE(engine_.FindCodec(vp8));
1788
1789 cricket::VideoCodec vp8_diff_fr_diff_pref(104, "VP8", 320, 200, 50, 50);
1790 EXPECT_TRUE(engine_.FindCodec(vp8_diff_fr_diff_pref));
1791
1792 cricket::VideoCodec vp8_diff_id(95, "VP8", 320, 200, 30, 0);
1793 EXPECT_FALSE(engine_.FindCodec(vp8_diff_id));
1794 vp8_diff_id.id = 97;
1795 EXPECT_TRUE(engine_.FindCodec(vp8_diff_id));
1796
1797 cricket::VideoCodec vp8_diff_res(104, "VP8", 320, 111, 30, 0);
1798 EXPECT_FALSE(engine_.FindCodec(vp8_diff_res));
1799
1800 // PeerConnection doesn't negotiate the resolution at this point.
1801 // Test that FindCodec can handle the case when width/height is 0.
1802 cricket::VideoCodec vp8_zero_res(104, "VP8", 0, 0, 30, 0);
1803 EXPECT_TRUE(engine_.FindCodec(vp8_zero_res));
1804
1805 cricket::VideoCodec red(101, "RED", 0, 0, 30, 0);
1806 EXPECT_TRUE(engine_.FindCodec(red));
1807
1808 cricket::VideoCodec red_ci(101, "red", 0, 0, 30, 0);
1809 EXPECT_TRUE(engine_.FindCodec(red));
1810
1811 cricket::VideoCodec fec(102, "ULPFEC", 0, 0, 30, 0);
1812 EXPECT_TRUE(engine_.FindCodec(fec));
1813
1814 cricket::VideoCodec fec_ci(102, "ulpfec", 0, 0, 30, 0);
1815 EXPECT_TRUE(engine_.FindCodec(fec));
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +00001816
1817 cricket::VideoCodec rtx(96, "rtx", 0, 0, 30, 0);
1818 EXPECT_TRUE(engine_.FindCodec(rtx));
1819}
1820
1821TEST_F(WebRtcVideoEngineTest, RtxCodecHasAptSet) {
1822 std::vector<cricket::VideoCodec>::const_iterator it;
1823 bool apt_checked = false;
1824 for (it = engine_.codecs().begin(); it != engine_.codecs().end(); ++it) {
1825 if (_stricmp(cricket::kRtxCodecName, it->name.c_str()) && it->id != 96) {
1826 continue;
1827 }
1828 int apt;
1829 EXPECT_TRUE(it->GetParam("apt", &apt));
1830 EXPECT_EQ(100, apt);
1831 apt_checked = true;
1832 }
1833 EXPECT_TRUE(apt_checked);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001834}
1835
1836TEST_F(WebRtcVideoEngineTest, StartupShutdown) {
1837 EXPECT_TRUE(engine_.Init(talk_base::Thread::Current()));
1838 engine_.Terminate();
1839}
1840
1841TEST_PRE_VIDEOENGINE_INIT(WebRtcVideoEngineTest, ConstrainNewCodec)
1842TEST_POST_VIDEOENGINE_INIT(WebRtcVideoEngineTest, ConstrainNewCodec)
1843
1844TEST_PRE_VIDEOENGINE_INIT(WebRtcVideoEngineTest, ConstrainRunningCodec)
1845TEST_POST_VIDEOENGINE_INIT(WebRtcVideoEngineTest, ConstrainRunningCodec)
1846
1847// TODO(juberti): Figure out why ViE is munging the COM refcount.
1848#ifdef WIN32
1849TEST_F(WebRtcVideoEngineTest, DISABLED_CheckCoInitialize) {
1850 Base::CheckCoInitialize();
1851}
1852#endif
1853
1854TEST_F(WebRtcVideoEngineTest, CreateChannel) {
1855 EXPECT_TRUE(engine_.Init(talk_base::Thread::Current()));
1856 cricket::VideoMediaChannel* channel = engine_.CreateChannel(NULL);
1857 EXPECT_TRUE(channel != NULL);
1858 delete channel;
1859}
1860
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001861TEST_F(WebRtcVideoMediaChannelTest, SetRecvCodecs) {
1862 std::vector<cricket::VideoCodec> codecs;
1863 codecs.push_back(kVP8Codec);
1864 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1865}
1866TEST_F(WebRtcVideoMediaChannelTest, SetRecvCodecsWrongPayloadType) {
1867 std::vector<cricket::VideoCodec> codecs;
1868 codecs.push_back(kVP8Codec);
1869 codecs[0].id = 99;
1870 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1871}
1872TEST_F(WebRtcVideoMediaChannelTest, SetRecvCodecsUnsupportedCodec) {
1873 std::vector<cricket::VideoCodec> codecs;
1874 codecs.push_back(kVP8Codec);
1875 codecs.push_back(cricket::VideoCodec(101, "VP1", 640, 400, 30, 0));
1876 EXPECT_FALSE(channel_->SetRecvCodecs(codecs));
1877}
1878
1879TEST_F(WebRtcVideoMediaChannelTest, SetSend) {
1880 Base::SetSend();
1881}
1882TEST_F(WebRtcVideoMediaChannelTest, SetSendWithoutCodecs) {
1883 Base::SetSendWithoutCodecs();
1884}
1885TEST_F(WebRtcVideoMediaChannelTest, SetSendSetsTransportBufferSizes) {
1886 Base::SetSendSetsTransportBufferSizes();
1887}
1888
1889TEST_F(WebRtcVideoMediaChannelTest, SendAndReceiveVp8Vga) {
1890 SendAndReceive(cricket::VideoCodec(100, "VP8", 640, 400, 30, 0));
1891}
1892TEST_F(WebRtcVideoMediaChannelTest, SendAndReceiveVp8Qvga) {
1893 SendAndReceive(cricket::VideoCodec(100, "VP8", 320, 200, 30, 0));
1894}
1895TEST_F(WebRtcVideoMediaChannelTest, SendAndReceiveH264SvcQqvga) {
1896 SendAndReceive(cricket::VideoCodec(100, "VP8", 160, 100, 30, 0));
1897}
1898TEST_F(WebRtcVideoMediaChannelTest, SendManyResizeOnce) {
1899 SendManyResizeOnce();
1900}
1901
1902TEST_F(WebRtcVideoMediaChannelTest, SendVp8HdAndReceiveAdaptedVp8Vga) {
henrike@webrtc.org28654cb2013-07-22 21:07:49 +00001903 EXPECT_TRUE(channel_->SetCapturer(kSsrc, NULL));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001904 channel_->UpdateAspectRatio(1280, 720);
1905 video_capturer_.reset(new cricket::FakeVideoCapturer);
1906 const std::vector<cricket::VideoFormat>* formats =
1907 video_capturer_->GetSupportedFormats();
1908 cricket::VideoFormat capture_format_hd = (*formats)[0];
1909 EXPECT_EQ(cricket::CS_RUNNING, video_capturer_->Start(capture_format_hd));
1910 EXPECT_TRUE(channel_->SetCapturer(kSsrc, video_capturer_.get()));
1911
1912 // Capture format HD -> adapt (OnOutputFormatRequest VGA) -> VGA.
1913 cricket::VideoCodec codec(100, "VP8", 1280, 720, 30, 0);
1914 EXPECT_TRUE(SetOneCodec(codec));
1915 codec.width /= 2;
1916 codec.height /= 2;
1917 EXPECT_TRUE(channel_->SetSendStreamFormat(kSsrc, cricket::VideoFormat(
1918 codec.width, codec.height,
1919 cricket::VideoFormat::FpsToInterval(codec.framerate),
1920 cricket::FOURCC_ANY)));
1921 EXPECT_TRUE(SetSend(true));
1922 EXPECT_TRUE(channel_->SetRender(true));
1923 EXPECT_EQ(0, renderer_.num_rendered_frames());
1924 EXPECT_TRUE(SendFrame());
1925 EXPECT_FRAME_WAIT(1, codec.width, codec.height, kTimeout);
1926}
1927
1928// TODO(juberti): Fix this test to tolerate missing stats.
1929TEST_F(WebRtcVideoMediaChannelTest, DISABLED_GetStats) {
1930 Base::GetStats();
1931}
1932
1933// TODO(juberti): Fix this test to tolerate missing stats.
1934TEST_F(WebRtcVideoMediaChannelTest, DISABLED_GetStatsMultipleRecvStreams) {
1935 Base::GetStatsMultipleRecvStreams();
1936}
1937
1938TEST_F(WebRtcVideoMediaChannelTest, GetStatsMultipleSendStreams) {
1939 Base::GetStatsMultipleSendStreams();
1940}
1941
1942TEST_F(WebRtcVideoMediaChannelTest, SetSendBandwidth) {
1943 Base::SetSendBandwidth();
1944}
1945TEST_F(WebRtcVideoMediaChannelTest, SetSendSsrc) {
1946 Base::SetSendSsrc();
1947}
1948TEST_F(WebRtcVideoMediaChannelTest, SetSendSsrcAfterSetCodecs) {
1949 Base::SetSendSsrcAfterSetCodecs();
1950}
1951
1952TEST_F(WebRtcVideoMediaChannelTest, SetRenderer) {
1953 Base::SetRenderer();
1954}
1955
1956TEST_F(WebRtcVideoMediaChannelTest, AddRemoveRecvStreams) {
1957 Base::AddRemoveRecvStreams();
1958}
1959
1960TEST_F(WebRtcVideoMediaChannelTest, AddRemoveRecvStreamAndRender) {
1961 Base::AddRemoveRecvStreamAndRender();
1962}
1963
1964TEST_F(WebRtcVideoMediaChannelTest, AddRemoveRecvStreamsNoConference) {
1965 Base::AddRemoveRecvStreamsNoConference();
1966}
1967
1968TEST_F(WebRtcVideoMediaChannelTest, AddRemoveSendStreams) {
1969 Base::AddRemoveSendStreams();
1970}
1971
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001972TEST_F(WebRtcVideoMediaChannelTest, SimulateConference) {
1973 Base::SimulateConference();
1974}
1975
1976TEST_F(WebRtcVideoMediaChannelTest, AddRemoveCapturer) {
1977 Base::AddRemoveCapturer();
1978}
1979
1980TEST_F(WebRtcVideoMediaChannelTest, RemoveCapturerWithoutAdd) {
1981 Base::RemoveCapturerWithoutAdd();
1982}
1983
1984TEST_F(WebRtcVideoMediaChannelTest, AddRemoveCapturerMultipleSources) {
1985 Base::AddRemoveCapturerMultipleSources();
1986}
1987
wu@webrtc.orgde305012013-10-31 15:40:38 +00001988// This test verifies DSCP settings are properly applied on video media channel.
1989TEST_F(WebRtcVideoMediaChannelTest, TestSetDscpOptions) {
1990 talk_base::scoped_ptr<cricket::FakeNetworkInterface> network_interface(
1991 new cricket::FakeNetworkInterface);
1992 channel_->SetInterface(network_interface.get());
1993 cricket::VideoOptions options;
1994 options.dscp.Set(true);
1995 EXPECT_TRUE(channel_->SetOptions(options));
1996 EXPECT_EQ(talk_base::DSCP_AF41, network_interface->dscp());
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +00001997 // Verify previous value is not modified if dscp option is not set.
1998 cricket::VideoOptions options1;
1999 EXPECT_TRUE(channel_->SetOptions(options1));
2000 EXPECT_EQ(talk_base::DSCP_AF41, network_interface->dscp());
wu@webrtc.orgde305012013-10-31 15:40:38 +00002001 options.dscp.Set(false);
2002 EXPECT_TRUE(channel_->SetOptions(options));
2003 EXPECT_EQ(talk_base::DSCP_DEFAULT, network_interface->dscp());
2004 channel_->SetInterface(NULL);
2005}
2006
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002007
2008TEST_F(WebRtcVideoMediaChannelTest, SetOptionsSucceedsWhenSending) {
2009 cricket::VideoOptions options;
2010 options.conference_mode.Set(true);
2011 EXPECT_TRUE(channel_->SetOptions(options));
2012
2013 // Verify SetOptions returns true on a different options.
2014 cricket::VideoOptions options2;
2015 options2.adapt_input_to_cpu_usage.Set(true);
2016 EXPECT_TRUE(channel_->SetOptions(options2));
2017
2018 // Set send codecs on the channel and start sending.
2019 std::vector<cricket::VideoCodec> codecs;
2020 codecs.push_back(kVP8Codec);
2021 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
2022 EXPECT_TRUE(channel_->SetSend(true));
2023
2024 // Verify SetOptions returns true if channel is already sending.
2025 cricket::VideoOptions options3;
2026 options3.conference_mode.Set(true);
2027 EXPECT_TRUE(channel_->SetOptions(options3));
2028}
2029
2030// Tests empty StreamParams is rejected.
2031TEST_F(WebRtcVideoMediaChannelTest, RejectEmptyStreamParams) {
2032 Base::RejectEmptyStreamParams();
2033}
2034
2035
2036TEST_F(WebRtcVideoMediaChannelTest, AdaptResolution16x10) {
2037 Base::AdaptResolution16x10();
2038}
2039
2040TEST_F(WebRtcVideoMediaChannelTest, AdaptResolution4x3) {
2041 Base::AdaptResolution4x3();
2042}
2043
2044TEST_F(WebRtcVideoMediaChannelTest, MuteStream) {
2045 Base::MuteStream();
2046}
2047
2048TEST_F(WebRtcVideoMediaChannelTest, MultipleSendStreams) {
2049 Base::MultipleSendStreams();
2050}
2051
2052// TODO(juberti): Restore this test once we support sending 0 fps.
2053TEST_F(WebRtcVideoMediaChannelTest, DISABLED_AdaptDropAllFrames) {
2054 Base::AdaptDropAllFrames();
2055}
2056// TODO(juberti): Understand why we get decode errors on this test.
2057TEST_F(WebRtcVideoMediaChannelTest, DISABLED_AdaptFramerate) {
2058 Base::AdaptFramerate();
2059}
2060
2061TEST_F(WebRtcVideoMediaChannelTest, SetSendStreamFormat0x0) {
2062 Base::SetSendStreamFormat0x0();
2063}
2064
2065// TODO(zhurunz): Fix the flakey test.
2066TEST_F(WebRtcVideoMediaChannelTest, DISABLED_SetSendStreamFormat) {
2067 Base::SetSendStreamFormat();
2068}
2069
2070TEST_F(WebRtcVideoMediaChannelTest, TwoStreamsSendAndReceive) {
2071 Base::TwoStreamsSendAndReceive(cricket::VideoCodec(100, "VP8", 640, 400, 30,
2072 0));
2073}
2074
2075TEST_F(WebRtcVideoMediaChannelTest, TwoStreamsReUseFirstStream) {
2076 Base::TwoStreamsReUseFirstStream(cricket::VideoCodec(100, "VP8", 640, 400, 30,
2077 0));
2078}