blob: 4c4bdedf77319c2ce1509fb0858a20b0522a07c4 [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
henrike@webrtc.org28e20752013-07-10 00:45:36 +000067static const unsigned int kStartBandwidthKbps = 300;
wu@webrtc.org1e6cb2c2014-03-24 17:01:50 +000068static const unsigned int kMinBandwidthKbps = 50;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000069static 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();
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001080 // Verify receiving is also started.
1081 EXPECT_TRUE(vie_.GetReceive(channel_num));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001082
1083 // Set send codecs on the channel.
1084 std::vector<cricket::VideoCodec> codecs;
1085 codecs.push_back(kVP8Codec);
1086 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1087 EXPECT_TRUE(channel_->AddSendStream(
1088 cricket::StreamParams::CreateLegacy(123)));
1089
1090 // Verify we can start/stop/start/stop sending.
1091 EXPECT_TRUE(channel_->SetSend(true));
1092 EXPECT_TRUE(vie_.GetSend(channel_num));
1093 EXPECT_TRUE(channel_->SetSend(false));
1094 EXPECT_FALSE(vie_.GetSend(channel_num));
1095 EXPECT_TRUE(channel_->SetSend(true));
1096 EXPECT_TRUE(vie_.GetSend(channel_num));
1097 EXPECT_TRUE(channel_->SetSend(false));
1098 EXPECT_FALSE(vie_.GetSend(channel_num));
1099}
1100
1101// Test that we set bandwidth properly when using full auto bandwidth mode.
1102TEST_F(WebRtcVideoEngineTestFake, SetBandwidthAuto) {
1103 EXPECT_TRUE(SetupEngine());
1104 int channel_num = vie_.GetLastChannel();
1105 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001106 EXPECT_TRUE(channel_->SetMaxSendBandwidth(cricket::kAutoBandwidth));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001107 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height);
1108}
1109
1110// Test that we set bandwidth properly when using auto with upper bound.
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001111TEST_F(WebRtcVideoEngineTestFake, SetBandwidthCapped) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001112 EXPECT_TRUE(SetupEngine());
1113 int channel_num = vie_.GetLastChannel();
1114 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001115 EXPECT_TRUE(channel_->SetMaxSendBandwidth(768000));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001116 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0, 768U);
1117}
1118
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001119// Test that we reduce the start bandwidth when the requested max is less than
1120// the default start bandwidth.
1121TEST_F(WebRtcVideoEngineTestFake, SetMaxBandwidthBelowDefaultStart) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001122 EXPECT_TRUE(SetupEngine());
1123 int channel_num = vie_.GetLastChannel();
1124 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001125 int max_bandwidth_kbps = (kMinBandwidthKbps + kStartBandwidthKbps) / 2;
1126 EXPECT_TRUE(channel_->SetMaxSendBandwidth(max_bandwidth_kbps * 1000));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001127 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001128 max_bandwidth_kbps, kMinBandwidthKbps, max_bandwidth_kbps);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001129}
1130
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001131// Test that we reduce the min bandwidth when the requested max is less than
1132// the min bandwidth.
1133TEST_F(WebRtcVideoEngineTestFake, SetMaxBandwidthBelowMin) {
1134 EXPECT_TRUE(SetupEngine());
1135 int channel_num = vie_.GetLastChannel();
1136 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1137 int max_bandwidth_kbps = kMinBandwidthKbps / 2;
1138 EXPECT_TRUE(channel_->SetMaxSendBandwidth(max_bandwidth_kbps * 1000));
1139 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1140 max_bandwidth_kbps, max_bandwidth_kbps, max_bandwidth_kbps);
1141}
1142
1143// Test that the start bandwidth can be controlled separately from the max
1144// bandwidth.
1145TEST_F(WebRtcVideoEngineTestFake, SetStartBandwidth) {
1146 EXPECT_TRUE(SetupEngine());
1147 int channel_num = vie_.GetLastChannel();
1148 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1149 int start_bandwidth_kbps = kStartBandwidthKbps + 1;
1150 EXPECT_TRUE(channel_->SetStartSendBandwidth(start_bandwidth_kbps * 1000));
1151 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1152 kMaxBandwidthKbps, kMinBandwidthKbps, start_bandwidth_kbps);
1153
1154 // Check that SetMaxSendBandwidth doesn't overwrite the start bandwidth.
1155 int max_bandwidth_kbps = kMaxBandwidthKbps + 1;
1156 EXPECT_TRUE(channel_->SetMaxSendBandwidth(max_bandwidth_kbps * 1000));
1157 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1158 max_bandwidth_kbps, kMinBandwidthKbps, start_bandwidth_kbps);
1159}
1160
wu@webrtc.org1e6cb2c2014-03-24 17:01:50 +00001161// Test that the start bandwidth can be controlled by experiment.
1162TEST_F(WebRtcVideoEngineTestFake, SetStartBandwidthOption) {
1163 EXPECT_TRUE(SetupEngine());
1164 int channel_num = vie_.GetLastChannel();
1165 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1166 int start_bandwidth_kbps = kStartBandwidthKbps;
1167 EXPECT_TRUE(channel_->SetStartSendBandwidth(start_bandwidth_kbps * 1000));
1168 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1169 kMaxBandwidthKbps, kMinBandwidthKbps, start_bandwidth_kbps);
1170
1171 // Set the start bitrate option.
1172 start_bandwidth_kbps = 1000;
1173 cricket::VideoOptions options;
1174 options.video_start_bitrate.Set(
1175 start_bandwidth_kbps);
1176 EXPECT_TRUE(channel_->SetOptions(options));
1177
1178 // Check that start bitrate has changed to the new value.
1179 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1180 kMaxBandwidthKbps, kMinBandwidthKbps, start_bandwidth_kbps);
1181}
1182
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001183// Test that SetMaxSendBandwidth is ignored in conference mode.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001184TEST_F(WebRtcVideoEngineTestFake, SetBandwidthInConference) {
1185 EXPECT_TRUE(SetupEngine());
1186 int channel_num = vie_.GetLastChannel();
1187 cricket::VideoOptions options;
1188 options.conference_mode.Set(true);
1189 EXPECT_TRUE(channel_->SetOptions(options));
1190 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1191 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height);
1192
1193 // Set send bandwidth.
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001194 EXPECT_TRUE(channel_->SetMaxSendBandwidth(768000));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001195
1196 // Verify bitrate not changed.
1197 webrtc::VideoCodec gcodec;
1198 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
1199 EXPECT_EQ(kMinBandwidthKbps, gcodec.minBitrate);
1200 EXPECT_EQ(kStartBandwidthKbps, gcodec.startBitrate);
1201 EXPECT_EQ(kMaxBandwidthKbps, gcodec.maxBitrate);
1202 EXPECT_NE(768U, gcodec.minBitrate);
1203 EXPECT_NE(768U, gcodec.startBitrate);
1204 EXPECT_NE(768U, gcodec.maxBitrate);
1205}
1206
1207// Test that sending screencast frames doesn't change bitrate.
1208TEST_F(WebRtcVideoEngineTestFake, SetBandwidthScreencast) {
1209 EXPECT_TRUE(SetupEngine());
1210 int channel_num = vie_.GetLastChannel();
1211
1212 // Set send codec.
1213 cricket::VideoCodec codec(kVP8Codec);
1214 std::vector<cricket::VideoCodec> codec_list;
1215 codec_list.push_back(codec);
1216 EXPECT_TRUE(channel_->AddSendStream(
1217 cricket::StreamParams::CreateLegacy(123)));
1218 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001219 EXPECT_TRUE(channel_->SetMaxSendBandwidth(111000));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001220 EXPECT_TRUE(channel_->SetSend(true));
1221
1222 SendI420ScreencastFrame(kVP8Codec.width, kVP8Codec.height);
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001223 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0, 111);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001224}
1225
1226
1227// Test SetSendSsrc.
1228TEST_F(WebRtcVideoEngineTestFake, SetSendSsrcAndCname) {
1229 EXPECT_TRUE(SetupEngine());
1230 int channel_num = vie_.GetLastChannel();
1231
1232 cricket::StreamParams stream;
1233 stream.ssrcs.push_back(1234);
1234 stream.cname = "cname";
1235 channel_->AddSendStream(stream);
1236
1237 unsigned int ssrc = 0;
1238 EXPECT_EQ(0, vie_.GetLocalSSRC(channel_num, ssrc));
1239 EXPECT_EQ(1234U, ssrc);
1240 EXPECT_EQ(1, vie_.GetNumSsrcs(channel_num));
1241
1242 char rtcp_cname[256];
1243 EXPECT_EQ(0, vie_.GetRTCPCName(channel_num, rtcp_cname));
1244 EXPECT_STREQ("cname", rtcp_cname);
1245}
1246
1247
1248// Test that the local SSRC is the same on sending and receiving channels if the
1249// receive channel is created before the send channel.
1250TEST_F(WebRtcVideoEngineTestFake, SetSendSsrcAfterCreatingReceiveChannel) {
1251 EXPECT_TRUE(SetupEngine());
1252
1253 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
1254 int receive_channel_num = vie_.GetLastChannel();
1255 cricket::StreamParams stream = cricket::StreamParams::CreateLegacy(1234);
1256 EXPECT_TRUE(channel_->AddSendStream(stream));
1257 int send_channel_num = vie_.GetLastChannel();
1258 unsigned int ssrc = 0;
1259 EXPECT_EQ(0, vie_.GetLocalSSRC(send_channel_num, ssrc));
1260 EXPECT_EQ(1234U, ssrc);
1261 EXPECT_EQ(1, vie_.GetNumSsrcs(send_channel_num));
1262 ssrc = 0;
1263 EXPECT_EQ(0, vie_.GetLocalSSRC(receive_channel_num, ssrc));
1264 EXPECT_EQ(1234U, ssrc);
1265 EXPECT_EQ(1, vie_.GetNumSsrcs(receive_channel_num));
1266}
1267
1268
1269// Test SetOptions with denoising flag.
1270TEST_F(WebRtcVideoEngineTestFake, SetOptionsWithDenoising) {
1271 EXPECT_TRUE(SetupEngine());
1272 EXPECT_EQ(1, vie_.GetNumCapturers());
1273 int channel_num = vie_.GetLastChannel();
1274 int capture_id = vie_.GetCaptureId(channel_num);
1275 // Set send codecs on the channel.
1276 std::vector<cricket::VideoCodec> codecs;
1277 codecs.push_back(kVP8Codec);
1278 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1279
1280 // Set options with OPT_VIDEO_NOISE_REDUCTION flag.
1281 cricket::VideoOptions options;
1282 options.video_noise_reduction.Set(true);
1283 EXPECT_TRUE(channel_->SetOptions(options));
1284
1285 // Verify capture has denoising turned on.
1286 webrtc::VideoCodec send_codec;
1287 memset(&send_codec, 0, sizeof(send_codec)); // avoid uninitialized warning
1288 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, send_codec));
1289 EXPECT_TRUE(send_codec.codecSpecific.VP8.denoisingOn);
1290 EXPECT_FALSE(vie_.GetCaptureDenoising(capture_id));
1291
1292 // Set options back to zero.
1293 options.video_noise_reduction.Set(false);
1294 EXPECT_TRUE(channel_->SetOptions(options));
1295
1296 // Verify capture has denoising turned off.
1297 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, send_codec));
1298 EXPECT_FALSE(send_codec.codecSpecific.VP8.denoisingOn);
1299 EXPECT_FALSE(vie_.GetCaptureDenoising(capture_id));
1300}
1301
wu@webrtc.orga8910d22014-01-23 22:12:45 +00001302TEST_F(WebRtcVideoEngineTestFake, MultipleSendStreamsWithOneCapturer) {
wu@webrtc.org24301a62013-12-13 19:17:43 +00001303 EXPECT_TRUE(SetupEngine());
1304
1305 // Start the capturer
1306 cricket::FakeVideoCapturer capturer;
1307 cricket::VideoFormat capture_format_vga = cricket::VideoFormat(640, 480,
1308 cricket::VideoFormat::FpsToInterval(30), cricket::FOURCC_I420);
1309 EXPECT_EQ(cricket::CS_RUNNING, capturer.Start(capture_format_vga));
1310
1311 // Add send streams and connect the capturer
1312 for (unsigned int i = 0; i < sizeof(kSsrcs2)/sizeof(kSsrcs2[0]); ++i) {
1313 EXPECT_TRUE(channel_->AddSendStream(
1314 cricket::StreamParams::CreateLegacy(kSsrcs2[i])));
1315 // Register the capturer to the ssrc.
1316 EXPECT_TRUE(channel_->SetCapturer(kSsrcs2[i], &capturer));
1317 }
1318
1319 const int channel0 = vie_.GetChannelFromLocalSsrc(kSsrcs2[0]);
1320 ASSERT_NE(-1, channel0);
1321 const int channel1 = vie_.GetChannelFromLocalSsrc(kSsrcs2[1]);
1322 ASSERT_NE(-1, channel1);
1323 ASSERT_NE(channel0, channel1);
1324
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001325 // Both channels should have started receiving after created.
1326 EXPECT_TRUE(vie_.GetReceive(channel0));
1327 EXPECT_TRUE(vie_.GetReceive(channel1));
1328
wu@webrtc.org24301a62013-12-13 19:17:43 +00001329 // Set send codec.
1330 std::vector<cricket::VideoCodec> codecs;
1331 cricket::VideoCodec send_codec(100, "VP8", 640, 480, 30, 0);
1332 codecs.push_back(send_codec);
1333 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1334
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001335 EXPECT_TRUE(channel_->SetSend(true));
1336 EXPECT_TRUE(vie_.GetSend(channel0));
1337 EXPECT_TRUE(vie_.GetSend(channel1));
1338
wu@webrtc.org24301a62013-12-13 19:17:43 +00001339 EXPECT_TRUE(capturer.CaptureFrame());
1340 EXPECT_EQ(1, vie_.GetIncomingFrameNum(channel0));
1341 EXPECT_EQ(1, vie_.GetIncomingFrameNum(channel1));
1342
1343 EXPECT_TRUE(channel_->RemoveSendStream(kSsrcs2[0]));
1344 EXPECT_TRUE(capturer.CaptureFrame());
1345 // channel0 is the default channel, so it won't be deleted.
1346 // But it should be disconnected from the capturer.
1347 EXPECT_EQ(1, vie_.GetIncomingFrameNum(channel0));
1348 EXPECT_EQ(2, vie_.GetIncomingFrameNum(channel1));
1349
1350 EXPECT_TRUE(channel_->RemoveSendStream(kSsrcs2[1]));
1351 EXPECT_TRUE(capturer.CaptureFrame());
1352 EXPECT_EQ(1, vie_.GetIncomingFrameNum(channel0));
1353 // channel1 has already been deleted.
1354 EXPECT_EQ(-1, vie_.GetIncomingFrameNum(channel1));
1355}
1356
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001357
wu@webrtc.org97077a32013-10-25 21:18:33 +00001358// Disabled since its flaky: b/11288120
1359TEST_F(WebRtcVideoEngineTestFake, DISABLED_SendReceiveBitratesStats) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001360 EXPECT_TRUE(SetupEngine());
1361 cricket::VideoOptions options;
1362 options.conference_mode.Set(true);
1363 EXPECT_TRUE(channel_->SetOptions(options));
1364 EXPECT_TRUE(channel_->AddSendStream(
1365 cricket::StreamParams::CreateLegacy(1)));
1366 int send_channel = vie_.GetLastChannel();
1367 cricket::VideoCodec codec(kVP8Codec720p);
1368 std::vector<cricket::VideoCodec> codec_list;
1369 codec_list.push_back(codec);
1370 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
1371
1372 EXPECT_TRUE(channel_->AddRecvStream(
1373 cricket::StreamParams::CreateLegacy(2)));
1374 int first_receive_channel = vie_.GetLastChannel();
1375 EXPECT_NE(send_channel, first_receive_channel);
1376 EXPECT_TRUE(channel_->AddRecvStream(
1377 cricket::StreamParams::CreateLegacy(3)));
1378 int second_receive_channel = vie_.GetLastChannel();
1379 EXPECT_NE(first_receive_channel, second_receive_channel);
1380
1381 cricket::VideoMediaInfo info;
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001382 EXPECT_TRUE(channel_->GetStats(cricket::StatsOptions(), &info));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001383 ASSERT_EQ(1U, info.bw_estimations.size());
1384 ASSERT_EQ(0, info.bw_estimations[0].actual_enc_bitrate);
1385 ASSERT_EQ(0, info.bw_estimations[0].transmit_bitrate);
1386 ASSERT_EQ(0, info.bw_estimations[0].retransmit_bitrate);
1387 ASSERT_EQ(0, info.bw_estimations[0].available_send_bandwidth);
1388 ASSERT_EQ(0, info.bw_estimations[0].available_recv_bandwidth);
1389 ASSERT_EQ(0, info.bw_estimations[0].target_enc_bitrate);
1390
1391 // Start sending and receiving on one of the channels and verify bitrates.
1392 EXPECT_EQ(0, vie_.StartSend(send_channel));
1393 int send_video_bitrate = 800;
1394 int send_fec_bitrate = 100;
1395 int send_nack_bitrate = 20;
1396 int send_total_bitrate = send_video_bitrate + send_fec_bitrate +
1397 send_nack_bitrate;
1398 int send_bandwidth = 950;
1399 vie_.SetSendBitrates(send_channel, send_video_bitrate, send_fec_bitrate,
1400 send_nack_bitrate);
1401 vie_.SetSendBandwidthEstimate(send_channel, send_bandwidth);
1402
1403 EXPECT_EQ(0, vie_.StartReceive(first_receive_channel));
1404 int first_channel_receive_bandwidth = 600;
1405 vie_.SetReceiveBandwidthEstimate(first_receive_channel,
1406 first_channel_receive_bandwidth);
1407
1408 info.Clear();
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001409 EXPECT_TRUE(channel_->GetStats(cricket::StatsOptions(), &info));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001410 ASSERT_EQ(1U, info.bw_estimations.size());
1411 ASSERT_EQ(send_video_bitrate, info.bw_estimations[0].actual_enc_bitrate);
1412 ASSERT_EQ(send_total_bitrate, info.bw_estimations[0].transmit_bitrate);
1413 ASSERT_EQ(send_nack_bitrate, info.bw_estimations[0].retransmit_bitrate);
1414 ASSERT_EQ(send_bandwidth, info.bw_estimations[0].available_send_bandwidth);
1415 ASSERT_EQ(first_channel_receive_bandwidth,
1416 info.bw_estimations[0].available_recv_bandwidth);
1417 ASSERT_EQ(send_video_bitrate, info.bw_estimations[0].target_enc_bitrate);
1418
1419 // Start receiving on the second channel and verify received rate.
1420 EXPECT_EQ(0, vie_.StartReceive(second_receive_channel));
1421 int second_channel_receive_bandwidth = 100;
1422 vie_.SetReceiveBandwidthEstimate(second_receive_channel,
1423 second_channel_receive_bandwidth);
1424
1425 info.Clear();
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001426 EXPECT_TRUE(channel_->GetStats(cricket::StatsOptions(), &info));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001427 ASSERT_EQ(1U, info.bw_estimations.size());
1428 ASSERT_EQ(send_video_bitrate, info.bw_estimations[0].actual_enc_bitrate);
1429 ASSERT_EQ(send_total_bitrate, info.bw_estimations[0].transmit_bitrate);
1430 ASSERT_EQ(send_nack_bitrate, info.bw_estimations[0].retransmit_bitrate);
1431 ASSERT_EQ(send_bandwidth, info.bw_estimations[0].available_send_bandwidth);
1432 ASSERT_EQ(first_channel_receive_bandwidth + second_channel_receive_bandwidth,
1433 info.bw_estimations[0].available_recv_bandwidth);
1434 ASSERT_EQ(send_video_bitrate, info.bw_estimations[0].target_enc_bitrate);
1435}
1436
1437TEST_F(WebRtcVideoEngineTestFake, TestSetAdaptInputToCpuUsage) {
1438 EXPECT_TRUE(SetupEngine());
1439 cricket::VideoOptions options_in, options_out;
1440 bool cpu_adapt = false;
1441 channel_->SetOptions(options_in);
1442 EXPECT_TRUE(channel_->GetOptions(&options_out));
1443 EXPECT_FALSE(options_out.adapt_input_to_cpu_usage.Get(&cpu_adapt));
1444 // Set adapt input CPU usage option.
1445 options_in.adapt_input_to_cpu_usage.Set(true);
1446 EXPECT_TRUE(channel_->SetOptions(options_in));
1447 EXPECT_TRUE(channel_->GetOptions(&options_out));
1448 EXPECT_TRUE(options_out.adapt_input_to_cpu_usage.Get(&cpu_adapt));
1449 EXPECT_TRUE(cpu_adapt);
1450}
1451
1452TEST_F(WebRtcVideoEngineTestFake, TestSetCpuThreshold) {
1453 EXPECT_TRUE(SetupEngine());
1454 float low, high;
1455 cricket::VideoOptions options_in, options_out;
1456 // Verify that initial values are set.
1457 EXPECT_TRUE(channel_->GetOptions(&options_out));
1458 EXPECT_TRUE(options_out.system_low_adaptation_threshhold.Get(&low));
1459 EXPECT_EQ(low, 0.65f);
1460 EXPECT_TRUE(options_out.system_high_adaptation_threshhold.Get(&high));
1461 EXPECT_EQ(high, 0.85f);
1462 // Set new CPU threshold values.
1463 options_in.system_low_adaptation_threshhold.Set(0.45f);
1464 options_in.system_high_adaptation_threshhold.Set(0.95f);
1465 EXPECT_TRUE(channel_->SetOptions(options_in));
1466 EXPECT_TRUE(channel_->GetOptions(&options_out));
1467 EXPECT_TRUE(options_out.system_low_adaptation_threshhold.Get(&low));
1468 EXPECT_EQ(low, 0.45f);
1469 EXPECT_TRUE(options_out.system_high_adaptation_threshhold.Get(&high));
1470 EXPECT_EQ(high, 0.95f);
1471}
1472
1473TEST_F(WebRtcVideoEngineTestFake, TestSetInvalidCpuThreshold) {
1474 EXPECT_TRUE(SetupEngine());
1475 float low, high;
1476 cricket::VideoOptions options_in, options_out;
1477 // Valid range is [0, 1].
1478 options_in.system_low_adaptation_threshhold.Set(-1.5f);
1479 options_in.system_high_adaptation_threshhold.Set(1.5f);
1480 EXPECT_TRUE(channel_->SetOptions(options_in));
1481 EXPECT_TRUE(channel_->GetOptions(&options_out));
1482 EXPECT_TRUE(options_out.system_low_adaptation_threshhold.Get(&low));
1483 EXPECT_EQ(low, 0.0f);
1484 EXPECT_TRUE(options_out.system_high_adaptation_threshhold.Get(&high));
1485 EXPECT_EQ(high, 1.0f);
1486}
1487
1488
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +00001489TEST_F(WebRtcVideoEngineTestFake, ResetCodecOnScreencast) {
1490 EXPECT_TRUE(SetupEngine());
1491 cricket::VideoOptions options;
1492 options.video_noise_reduction.Set(true);
1493 EXPECT_TRUE(channel_->SetOptions(options));
1494
1495 // Set send codec.
1496 cricket::VideoCodec codec(kVP8Codec);
1497 std::vector<cricket::VideoCodec> codec_list;
1498 codec_list.push_back(codec);
1499 EXPECT_TRUE(channel_->AddSendStream(
1500 cricket::StreamParams::CreateLegacy(123)));
1501 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
1502 EXPECT_TRUE(channel_->SetSend(true));
1503 EXPECT_EQ(1, vie_.num_set_send_codecs());
1504
1505 webrtc::VideoCodec gcodec;
1506 memset(&gcodec, 0, sizeof(gcodec));
1507 int channel_num = vie_.GetLastChannel();
1508 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
1509 EXPECT_TRUE(gcodec.codecSpecific.VP8.denoisingOn);
1510
1511 // Send a screencast frame with the same size.
1512 // Verify that denoising is turned off.
1513 SendI420ScreencastFrame(kVP8Codec.width, kVP8Codec.height);
1514 EXPECT_EQ(2, vie_.num_set_send_codecs());
1515 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
1516 EXPECT_FALSE(gcodec.codecSpecific.VP8.denoisingOn);
1517}
1518
1519
1520TEST_F(WebRtcVideoEngineTestFake, DontRegisterDecoderIfFactoryIsNotGiven) {
1521 engine_.SetExternalDecoderFactory(NULL);
1522 EXPECT_TRUE(SetupEngine());
1523 int channel_num = vie_.GetLastChannel();
1524
1525 std::vector<cricket::VideoCodec> codecs;
1526 codecs.push_back(kVP8Codec);
1527 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1528
1529 EXPECT_EQ(0, vie_.GetNumExternalDecoderRegistered(channel_num));
1530}
1531
1532TEST_F(WebRtcVideoEngineTestFake, RegisterDecoderIfFactoryIsGiven) {
1533 decoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8);
1534 engine_.SetExternalDecoderFactory(&decoder_factory_);
1535 EXPECT_TRUE(SetupEngine());
1536 int channel_num = vie_.GetLastChannel();
1537
1538 std::vector<cricket::VideoCodec> codecs;
1539 codecs.push_back(kVP8Codec);
1540 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1541
1542 EXPECT_TRUE(vie_.ExternalDecoderRegistered(channel_num, 100));
1543 EXPECT_EQ(1, vie_.GetNumExternalDecoderRegistered(channel_num));
1544}
1545
1546TEST_F(WebRtcVideoEngineTestFake, DontRegisterDecoderMultipleTimes) {
1547 decoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8);
1548 engine_.SetExternalDecoderFactory(&decoder_factory_);
1549 EXPECT_TRUE(SetupEngine());
1550 int channel_num = vie_.GetLastChannel();
1551
1552 std::vector<cricket::VideoCodec> codecs;
1553 codecs.push_back(kVP8Codec);
1554 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1555
1556 EXPECT_TRUE(vie_.ExternalDecoderRegistered(channel_num, 100));
1557 EXPECT_EQ(1, vie_.GetNumExternalDecoderRegistered(channel_num));
1558 EXPECT_EQ(1, decoder_factory_.GetNumCreatedDecoders());
1559
1560 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1561 EXPECT_EQ(1, vie_.GetNumExternalDecoderRegistered(channel_num));
1562 EXPECT_EQ(1, decoder_factory_.GetNumCreatedDecoders());
1563}
1564
1565TEST_F(WebRtcVideoEngineTestFake, DontRegisterDecoderForNonVP8) {
1566 decoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8);
1567 engine_.SetExternalDecoderFactory(&decoder_factory_);
1568 EXPECT_TRUE(SetupEngine());
1569 int channel_num = vie_.GetLastChannel();
1570
1571 std::vector<cricket::VideoCodec> codecs;
1572 codecs.push_back(kRedCodec);
1573 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1574
1575 EXPECT_EQ(0, vie_.GetNumExternalDecoderRegistered(channel_num));
1576}
1577
1578TEST_F(WebRtcVideoEngineTestFake, DontRegisterEncoderIfFactoryIsNotGiven) {
1579 engine_.SetExternalEncoderFactory(NULL);
1580 EXPECT_TRUE(SetupEngine());
1581 int channel_num = vie_.GetLastChannel();
1582
1583 std::vector<cricket::VideoCodec> codecs;
1584 codecs.push_back(kVP8Codec);
1585 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1586
1587 EXPECT_EQ(0, vie_.GetNumExternalEncoderRegistered(channel_num));
1588}
1589
1590TEST_F(WebRtcVideoEngineTestFake, RegisterEncoderIfFactoryIsGiven) {
1591 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1592 engine_.SetExternalEncoderFactory(&encoder_factory_);
1593 EXPECT_TRUE(SetupEngine());
1594 int channel_num = vie_.GetLastChannel();
1595
1596 std::vector<cricket::VideoCodec> codecs;
1597 codecs.push_back(kVP8Codec);
1598 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1599
1600 EXPECT_TRUE(channel_->AddSendStream(
1601 cricket::StreamParams::CreateLegacy(kSsrc)));
1602
1603 EXPECT_TRUE(vie_.ExternalEncoderRegistered(channel_num, 100));
1604 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1605
1606 // Remove stream previously added to free the external encoder instance.
1607 EXPECT_TRUE(channel_->RemoveSendStream(kSsrc));
1608}
1609
1610TEST_F(WebRtcVideoEngineTestFake, DontRegisterEncoderMultipleTimes) {
1611 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1612 engine_.SetExternalEncoderFactory(&encoder_factory_);
1613 EXPECT_TRUE(SetupEngine());
1614 int channel_num = vie_.GetLastChannel();
1615
1616 std::vector<cricket::VideoCodec> codecs;
1617 codecs.push_back(kVP8Codec);
1618 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1619
1620 EXPECT_TRUE(channel_->AddSendStream(
1621 cricket::StreamParams::CreateLegacy(kSsrc)));
1622
1623 EXPECT_TRUE(vie_.ExternalEncoderRegistered(channel_num, 100));
1624 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1625 EXPECT_EQ(1, encoder_factory_.GetNumCreatedEncoders());
1626
1627 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1628 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1629 EXPECT_EQ(1, encoder_factory_.GetNumCreatedEncoders());
1630
1631 // Remove stream previously added to free the external encoder instance.
1632 EXPECT_TRUE(channel_->RemoveSendStream(kSsrc));
1633}
1634
1635TEST_F(WebRtcVideoEngineTestFake, RegisterEncoderWithMultipleSendStreams) {
1636 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1637 engine_.SetExternalEncoderFactory(&encoder_factory_);
1638 EXPECT_TRUE(SetupEngine());
1639
1640 std::vector<cricket::VideoCodec> codecs;
1641 codecs.push_back(kVP8Codec);
1642 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1643 EXPECT_EQ(1, vie_.GetTotalNumExternalEncoderRegistered());
1644
1645 // When we add the first stream (1234), it reuses the default send channel,
1646 // so it doesn't increase the registration count of external encoders.
1647 EXPECT_TRUE(channel_->AddSendStream(
1648 cricket::StreamParams::CreateLegacy(1234)));
1649 EXPECT_EQ(1, vie_.GetTotalNumExternalEncoderRegistered());
1650
1651 // When we add the second stream (2345), it creates a new channel and
1652 // increments the registration count.
1653 EXPECT_TRUE(channel_->AddSendStream(
1654 cricket::StreamParams::CreateLegacy(2345)));
1655 EXPECT_EQ(2, vie_.GetTotalNumExternalEncoderRegistered());
1656
1657 // At this moment the total registration count is two, but only one encoder
1658 // is registered per channel.
1659 int channel_num = vie_.GetLastChannel();
1660 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1661
1662 // Removing send streams decrements the registration count.
1663 EXPECT_TRUE(channel_->RemoveSendStream(1234));
1664 EXPECT_EQ(1, vie_.GetTotalNumExternalEncoderRegistered());
1665
1666 // When we remove the last send stream, it also destroys the last send
1667 // channel and causes the registration count to drop to zero. It is a little
1668 // weird, but not a bug.
1669 EXPECT_TRUE(channel_->RemoveSendStream(2345));
1670 EXPECT_EQ(0, vie_.GetTotalNumExternalEncoderRegistered());
1671}
1672
1673TEST_F(WebRtcVideoEngineTestFake, DontRegisterEncoderForNonVP8) {
1674 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecGeneric,
1675 "GENERIC");
1676 engine_.SetExternalEncoderFactory(&encoder_factory_);
1677 EXPECT_TRUE(SetupEngine());
1678 int channel_num = vie_.GetLastChannel();
1679
1680 // Note: unlike the SetRecvCodecs, we must set a valid video codec for
1681 // channel_->SetSendCodecs() to succeed.
1682 std::vector<cricket::VideoCodec> codecs;
1683 codecs.push_back(kVP8Codec);
1684 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1685
1686 EXPECT_EQ(0, vie_.GetNumExternalEncoderRegistered(channel_num));
1687}
1688
1689// Test that NACK, PLI and REMB are enabled for external codec.
1690TEST_F(WebRtcVideoEngineTestFake, ExternalCodecFeedbackParams) {
1691 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecGeneric,
1692 "GENERIC");
1693 engine_.SetExternalEncoderFactory(&encoder_factory_);
1694 encoder_factory_.NotifyCodecsAvailable();
1695 EXPECT_TRUE(SetupEngine());
1696
1697 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
1698 // The external codec will appear at last.
1699 size_t pos = codecs.size() - 1;
1700 EXPECT_EQ("GENERIC", codecs[pos].name);
1701 VerifyCodecFeedbackParams(codecs[pos]);
1702}
1703
1704// Test external codec with be added to the end of the supported codec list.
1705TEST_F(WebRtcVideoEngineTestFake, ExternalCodecAddedToTheEnd) {
1706 EXPECT_TRUE(SetupEngine());
1707
1708 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
1709 EXPECT_EQ("VP8", codecs[0].name);
1710
1711 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecGeneric,
1712 "GENERIC");
1713 engine_.SetExternalEncoderFactory(&encoder_factory_);
1714 encoder_factory_.NotifyCodecsAvailable();
1715
1716 codecs = engine_.codecs();
1717 cricket::VideoCodec internal_codec = codecs[0];
1718 cricket::VideoCodec external_codec = codecs[codecs.size() - 1];
1719 // The external codec will appear at last.
1720 EXPECT_EQ("GENERIC", external_codec.name);
1721 // The internal codec is preferred.
1722 EXPECT_GE(internal_codec.preference, external_codec.preference);
1723}
1724
1725// Test that external codec with be ignored if it has the same name as one of
1726// the internal codecs.
1727TEST_F(WebRtcVideoEngineTestFake, ExternalCodecIgnored) {
1728 EXPECT_TRUE(SetupEngine());
1729
1730 std::vector<cricket::VideoCodec> internal_codecs(engine_.codecs());
1731 EXPECT_EQ("VP8", internal_codecs[0].name);
1732
1733 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1734 engine_.SetExternalEncoderFactory(&encoder_factory_);
1735 encoder_factory_.NotifyCodecsAvailable();
1736
1737 std::vector<cricket::VideoCodec> codecs = engine_.codecs();
1738 EXPECT_EQ("VP8", codecs[0].name);
1739 EXPECT_EQ(internal_codecs[0].height, codecs[0].height);
1740 EXPECT_EQ(internal_codecs[0].width, codecs[0].width);
1741 // Verify the last codec is not the external codec.
1742 EXPECT_NE("VP8", codecs[codecs.size() - 1].name);
1743}
1744
1745TEST_F(WebRtcVideoEngineTestFake, UpdateEncoderCodecsAfterSetFactory) {
1746 engine_.SetExternalEncoderFactory(&encoder_factory_);
1747 EXPECT_TRUE(SetupEngine());
1748 int channel_num = vie_.GetLastChannel();
1749
1750 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1751 encoder_factory_.NotifyCodecsAvailable();
1752 std::vector<cricket::VideoCodec> codecs;
1753 codecs.push_back(kVP8Codec);
1754 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1755
1756 EXPECT_TRUE(channel_->AddSendStream(
1757 cricket::StreamParams::CreateLegacy(kSsrc)));
1758
1759 EXPECT_TRUE(vie_.ExternalEncoderRegistered(channel_num, 100));
1760 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1761 EXPECT_EQ(1, encoder_factory_.GetNumCreatedEncoders());
1762
1763 // Remove stream previously added to free the external encoder instance.
1764 EXPECT_TRUE(channel_->RemoveSendStream(kSsrc));
1765}
1766
1767// Tests that OnReadyToSend will be propagated into ViE.
1768TEST_F(WebRtcVideoEngineTestFake, OnReadyToSend) {
1769 EXPECT_TRUE(SetupEngine());
1770 int channel_num = vie_.GetLastChannel();
1771 EXPECT_TRUE(vie_.GetIsTransmitting(channel_num));
1772
1773 channel_->OnReadyToSend(false);
1774 EXPECT_FALSE(vie_.GetIsTransmitting(channel_num));
1775
1776 channel_->OnReadyToSend(true);
1777 EXPECT_TRUE(vie_.GetIsTransmitting(channel_num));
1778}
1779
1780#if 0
1781TEST_F(WebRtcVideoEngineTestFake, CaptureFrameTimestampToNtpTimestamp) {
1782 EXPECT_TRUE(SetupEngine());
1783 int capture_id = vie_.GetCaptureId(vie_.GetLastChannel());
1784
1785 // Set send codec.
1786 cricket::VideoCodec codec(kVP8Codec);
1787 std::vector<cricket::VideoCodec> codec_list;
1788 codec_list.push_back(codec);
1789 EXPECT_TRUE(channel_->AddSendStream(
1790 cricket::StreamParams::CreateLegacy(123)));
1791 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
1792 EXPECT_TRUE(channel_->SetSend(true));
1793
1794 int64 timestamp = time(NULL) * talk_base::kNumNanosecsPerSec;
1795 SendI420ScreencastFrameWithTimestamp(
1796 kVP8Codec.width, kVP8Codec.height, timestamp);
1797 EXPECT_EQ(talk_base::UnixTimestampNanosecsToNtpMillisecs(timestamp),
1798 vie_.GetCaptureLastTimestamp(capture_id));
1799
1800 SendI420ScreencastFrameWithTimestamp(kVP8Codec.width, kVP8Codec.height, 0);
1801 EXPECT_EQ(0, vie_.GetCaptureLastTimestamp(capture_id));
1802}
1803#endif
1804
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001805/////////////////////////
1806// Tests with real ViE //
1807/////////////////////////
1808
1809// Tests that we can find codecs by name or id.
1810TEST_F(WebRtcVideoEngineTest, FindCodec) {
1811 // We should not need to init engine in order to get codecs.
1812 const std::vector<cricket::VideoCodec>& c = engine_.codecs();
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +00001813 EXPECT_EQ(4U, c.size());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001814
1815 cricket::VideoCodec vp8(104, "VP8", 320, 200, 30, 0);
1816 EXPECT_TRUE(engine_.FindCodec(vp8));
1817
1818 cricket::VideoCodec vp8_ci(104, "vp8", 320, 200, 30, 0);
1819 EXPECT_TRUE(engine_.FindCodec(vp8));
1820
1821 cricket::VideoCodec vp8_diff_fr_diff_pref(104, "VP8", 320, 200, 50, 50);
1822 EXPECT_TRUE(engine_.FindCodec(vp8_diff_fr_diff_pref));
1823
1824 cricket::VideoCodec vp8_diff_id(95, "VP8", 320, 200, 30, 0);
1825 EXPECT_FALSE(engine_.FindCodec(vp8_diff_id));
1826 vp8_diff_id.id = 97;
1827 EXPECT_TRUE(engine_.FindCodec(vp8_diff_id));
1828
1829 cricket::VideoCodec vp8_diff_res(104, "VP8", 320, 111, 30, 0);
1830 EXPECT_FALSE(engine_.FindCodec(vp8_diff_res));
1831
1832 // PeerConnection doesn't negotiate the resolution at this point.
1833 // Test that FindCodec can handle the case when width/height is 0.
1834 cricket::VideoCodec vp8_zero_res(104, "VP8", 0, 0, 30, 0);
1835 EXPECT_TRUE(engine_.FindCodec(vp8_zero_res));
1836
1837 cricket::VideoCodec red(101, "RED", 0, 0, 30, 0);
1838 EXPECT_TRUE(engine_.FindCodec(red));
1839
1840 cricket::VideoCodec red_ci(101, "red", 0, 0, 30, 0);
1841 EXPECT_TRUE(engine_.FindCodec(red));
1842
1843 cricket::VideoCodec fec(102, "ULPFEC", 0, 0, 30, 0);
1844 EXPECT_TRUE(engine_.FindCodec(fec));
1845
1846 cricket::VideoCodec fec_ci(102, "ulpfec", 0, 0, 30, 0);
1847 EXPECT_TRUE(engine_.FindCodec(fec));
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +00001848
1849 cricket::VideoCodec rtx(96, "rtx", 0, 0, 30, 0);
1850 EXPECT_TRUE(engine_.FindCodec(rtx));
1851}
1852
1853TEST_F(WebRtcVideoEngineTest, RtxCodecHasAptSet) {
1854 std::vector<cricket::VideoCodec>::const_iterator it;
1855 bool apt_checked = false;
1856 for (it = engine_.codecs().begin(); it != engine_.codecs().end(); ++it) {
1857 if (_stricmp(cricket::kRtxCodecName, it->name.c_str()) && it->id != 96) {
1858 continue;
1859 }
1860 int apt;
1861 EXPECT_TRUE(it->GetParam("apt", &apt));
1862 EXPECT_EQ(100, apt);
1863 apt_checked = true;
1864 }
1865 EXPECT_TRUE(apt_checked);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001866}
1867
1868TEST_F(WebRtcVideoEngineTest, StartupShutdown) {
1869 EXPECT_TRUE(engine_.Init(talk_base::Thread::Current()));
1870 engine_.Terminate();
1871}
1872
1873TEST_PRE_VIDEOENGINE_INIT(WebRtcVideoEngineTest, ConstrainNewCodec)
1874TEST_POST_VIDEOENGINE_INIT(WebRtcVideoEngineTest, ConstrainNewCodec)
1875
1876TEST_PRE_VIDEOENGINE_INIT(WebRtcVideoEngineTest, ConstrainRunningCodec)
1877TEST_POST_VIDEOENGINE_INIT(WebRtcVideoEngineTest, ConstrainRunningCodec)
1878
1879// TODO(juberti): Figure out why ViE is munging the COM refcount.
1880#ifdef WIN32
1881TEST_F(WebRtcVideoEngineTest, DISABLED_CheckCoInitialize) {
1882 Base::CheckCoInitialize();
1883}
1884#endif
1885
1886TEST_F(WebRtcVideoEngineTest, CreateChannel) {
1887 EXPECT_TRUE(engine_.Init(talk_base::Thread::Current()));
1888 cricket::VideoMediaChannel* channel = engine_.CreateChannel(NULL);
1889 EXPECT_TRUE(channel != NULL);
1890 delete channel;
1891}
1892
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001893TEST_F(WebRtcVideoMediaChannelTest, SetRecvCodecs) {
1894 std::vector<cricket::VideoCodec> codecs;
1895 codecs.push_back(kVP8Codec);
1896 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1897}
1898TEST_F(WebRtcVideoMediaChannelTest, SetRecvCodecsWrongPayloadType) {
1899 std::vector<cricket::VideoCodec> codecs;
1900 codecs.push_back(kVP8Codec);
1901 codecs[0].id = 99;
1902 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1903}
1904TEST_F(WebRtcVideoMediaChannelTest, SetRecvCodecsUnsupportedCodec) {
1905 std::vector<cricket::VideoCodec> codecs;
1906 codecs.push_back(kVP8Codec);
1907 codecs.push_back(cricket::VideoCodec(101, "VP1", 640, 400, 30, 0));
1908 EXPECT_FALSE(channel_->SetRecvCodecs(codecs));
1909}
1910
mallinath@webrtc.org92fdfeb2014-02-17 18:49:41 +00001911TEST_F(WebRtcVideoMediaChannelTest, GetRtpSendTimeExtension) {
1912 // Enable RTP timestamp extension.
1913 const int id = 12;
1914 std::vector<cricket::RtpHeaderExtension> extensions;
1915 extensions.push_back(cricket::RtpHeaderExtension(
1916 "http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time", id));
1917
1918 // Verify the send extension id.
1919 EXPECT_TRUE(channel_->SetSendRtpHeaderExtensions(extensions));
1920 EXPECT_EQ(id, channel_->GetRtpSendTimeExtnId());
1921}
1922
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001923TEST_F(WebRtcVideoMediaChannelTest, SetSend) {
1924 Base::SetSend();
1925}
1926TEST_F(WebRtcVideoMediaChannelTest, SetSendWithoutCodecs) {
1927 Base::SetSendWithoutCodecs();
1928}
1929TEST_F(WebRtcVideoMediaChannelTest, SetSendSetsTransportBufferSizes) {
1930 Base::SetSendSetsTransportBufferSizes();
1931}
1932
1933TEST_F(WebRtcVideoMediaChannelTest, SendAndReceiveVp8Vga) {
1934 SendAndReceive(cricket::VideoCodec(100, "VP8", 640, 400, 30, 0));
1935}
1936TEST_F(WebRtcVideoMediaChannelTest, SendAndReceiveVp8Qvga) {
1937 SendAndReceive(cricket::VideoCodec(100, "VP8", 320, 200, 30, 0));
1938}
1939TEST_F(WebRtcVideoMediaChannelTest, SendAndReceiveH264SvcQqvga) {
1940 SendAndReceive(cricket::VideoCodec(100, "VP8", 160, 100, 30, 0));
1941}
1942TEST_F(WebRtcVideoMediaChannelTest, SendManyResizeOnce) {
1943 SendManyResizeOnce();
1944}
1945
1946TEST_F(WebRtcVideoMediaChannelTest, SendVp8HdAndReceiveAdaptedVp8Vga) {
henrike@webrtc.org28654cb2013-07-22 21:07:49 +00001947 EXPECT_TRUE(channel_->SetCapturer(kSsrc, NULL));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001948 channel_->UpdateAspectRatio(1280, 720);
1949 video_capturer_.reset(new cricket::FakeVideoCapturer);
1950 const std::vector<cricket::VideoFormat>* formats =
1951 video_capturer_->GetSupportedFormats();
1952 cricket::VideoFormat capture_format_hd = (*formats)[0];
1953 EXPECT_EQ(cricket::CS_RUNNING, video_capturer_->Start(capture_format_hd));
1954 EXPECT_TRUE(channel_->SetCapturer(kSsrc, video_capturer_.get()));
1955
1956 // Capture format HD -> adapt (OnOutputFormatRequest VGA) -> VGA.
1957 cricket::VideoCodec codec(100, "VP8", 1280, 720, 30, 0);
1958 EXPECT_TRUE(SetOneCodec(codec));
1959 codec.width /= 2;
1960 codec.height /= 2;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001961 EXPECT_TRUE(SetSend(true));
1962 EXPECT_TRUE(channel_->SetRender(true));
1963 EXPECT_EQ(0, renderer_.num_rendered_frames());
1964 EXPECT_TRUE(SendFrame());
1965 EXPECT_FRAME_WAIT(1, codec.width, codec.height, kTimeout);
1966}
1967
1968// TODO(juberti): Fix this test to tolerate missing stats.
1969TEST_F(WebRtcVideoMediaChannelTest, DISABLED_GetStats) {
1970 Base::GetStats();
1971}
1972
1973// TODO(juberti): Fix this test to tolerate missing stats.
1974TEST_F(WebRtcVideoMediaChannelTest, DISABLED_GetStatsMultipleRecvStreams) {
1975 Base::GetStatsMultipleRecvStreams();
1976}
1977
1978TEST_F(WebRtcVideoMediaChannelTest, GetStatsMultipleSendStreams) {
1979 Base::GetStatsMultipleSendStreams();
1980}
1981
1982TEST_F(WebRtcVideoMediaChannelTest, SetSendBandwidth) {
1983 Base::SetSendBandwidth();
1984}
1985TEST_F(WebRtcVideoMediaChannelTest, SetSendSsrc) {
1986 Base::SetSendSsrc();
1987}
1988TEST_F(WebRtcVideoMediaChannelTest, SetSendSsrcAfterSetCodecs) {
1989 Base::SetSendSsrcAfterSetCodecs();
1990}
1991
1992TEST_F(WebRtcVideoMediaChannelTest, SetRenderer) {
1993 Base::SetRenderer();
1994}
1995
1996TEST_F(WebRtcVideoMediaChannelTest, AddRemoveRecvStreams) {
1997 Base::AddRemoveRecvStreams();
1998}
1999
2000TEST_F(WebRtcVideoMediaChannelTest, AddRemoveRecvStreamAndRender) {
2001 Base::AddRemoveRecvStreamAndRender();
2002}
2003
2004TEST_F(WebRtcVideoMediaChannelTest, AddRemoveRecvStreamsNoConference) {
2005 Base::AddRemoveRecvStreamsNoConference();
2006}
2007
2008TEST_F(WebRtcVideoMediaChannelTest, AddRemoveSendStreams) {
2009 Base::AddRemoveSendStreams();
2010}
2011
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002012TEST_F(WebRtcVideoMediaChannelTest, SimulateConference) {
2013 Base::SimulateConference();
2014}
2015
2016TEST_F(WebRtcVideoMediaChannelTest, AddRemoveCapturer) {
2017 Base::AddRemoveCapturer();
2018}
2019
2020TEST_F(WebRtcVideoMediaChannelTest, RemoveCapturerWithoutAdd) {
2021 Base::RemoveCapturerWithoutAdd();
2022}
2023
2024TEST_F(WebRtcVideoMediaChannelTest, AddRemoveCapturerMultipleSources) {
2025 Base::AddRemoveCapturerMultipleSources();
2026}
2027
wu@webrtc.orgde305012013-10-31 15:40:38 +00002028// This test verifies DSCP settings are properly applied on video media channel.
2029TEST_F(WebRtcVideoMediaChannelTest, TestSetDscpOptions) {
2030 talk_base::scoped_ptr<cricket::FakeNetworkInterface> network_interface(
2031 new cricket::FakeNetworkInterface);
2032 channel_->SetInterface(network_interface.get());
2033 cricket::VideoOptions options;
2034 options.dscp.Set(true);
2035 EXPECT_TRUE(channel_->SetOptions(options));
2036 EXPECT_EQ(talk_base::DSCP_AF41, network_interface->dscp());
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +00002037 // Verify previous value is not modified if dscp option is not set.
2038 cricket::VideoOptions options1;
2039 EXPECT_TRUE(channel_->SetOptions(options1));
2040 EXPECT_EQ(talk_base::DSCP_AF41, network_interface->dscp());
wu@webrtc.orgde305012013-10-31 15:40:38 +00002041 options.dscp.Set(false);
2042 EXPECT_TRUE(channel_->SetOptions(options));
2043 EXPECT_EQ(talk_base::DSCP_DEFAULT, network_interface->dscp());
2044 channel_->SetInterface(NULL);
2045}
2046
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002047
2048TEST_F(WebRtcVideoMediaChannelTest, SetOptionsSucceedsWhenSending) {
2049 cricket::VideoOptions options;
2050 options.conference_mode.Set(true);
2051 EXPECT_TRUE(channel_->SetOptions(options));
2052
2053 // Verify SetOptions returns true on a different options.
2054 cricket::VideoOptions options2;
2055 options2.adapt_input_to_cpu_usage.Set(true);
2056 EXPECT_TRUE(channel_->SetOptions(options2));
2057
2058 // Set send codecs on the channel and start sending.
2059 std::vector<cricket::VideoCodec> codecs;
2060 codecs.push_back(kVP8Codec);
2061 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
2062 EXPECT_TRUE(channel_->SetSend(true));
2063
2064 // Verify SetOptions returns true if channel is already sending.
2065 cricket::VideoOptions options3;
2066 options3.conference_mode.Set(true);
2067 EXPECT_TRUE(channel_->SetOptions(options3));
2068}
2069
2070// Tests empty StreamParams is rejected.
2071TEST_F(WebRtcVideoMediaChannelTest, RejectEmptyStreamParams) {
2072 Base::RejectEmptyStreamParams();
2073}
2074
2075
2076TEST_F(WebRtcVideoMediaChannelTest, AdaptResolution16x10) {
2077 Base::AdaptResolution16x10();
2078}
2079
2080TEST_F(WebRtcVideoMediaChannelTest, AdaptResolution4x3) {
2081 Base::AdaptResolution4x3();
2082}
2083
2084TEST_F(WebRtcVideoMediaChannelTest, MuteStream) {
2085 Base::MuteStream();
2086}
2087
2088TEST_F(WebRtcVideoMediaChannelTest, MultipleSendStreams) {
2089 Base::MultipleSendStreams();
2090}
2091
2092// TODO(juberti): Restore this test once we support sending 0 fps.
2093TEST_F(WebRtcVideoMediaChannelTest, DISABLED_AdaptDropAllFrames) {
2094 Base::AdaptDropAllFrames();
2095}
2096// TODO(juberti): Understand why we get decode errors on this test.
2097TEST_F(WebRtcVideoMediaChannelTest, DISABLED_AdaptFramerate) {
2098 Base::AdaptFramerate();
2099}
2100
2101TEST_F(WebRtcVideoMediaChannelTest, SetSendStreamFormat0x0) {
2102 Base::SetSendStreamFormat0x0();
2103}
2104
2105// TODO(zhurunz): Fix the flakey test.
2106TEST_F(WebRtcVideoMediaChannelTest, DISABLED_SetSendStreamFormat) {
2107 Base::SetSendStreamFormat();
2108}
2109
2110TEST_F(WebRtcVideoMediaChannelTest, TwoStreamsSendAndReceive) {
2111 Base::TwoStreamsSendAndReceive(cricket::VideoCodec(100, "VP8", 640, 400, 30,
2112 0));
2113}
2114
2115TEST_F(WebRtcVideoMediaChannelTest, TwoStreamsReUseFirstStream) {
2116 Base::TwoStreamsReUseFirstStream(cricket::VideoCodec(100, "VP8", 640, 400, 30,
2117 0));
2118}
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002119
henrike@webrtc.org18e59112014-03-14 17:19:38 +00002120TEST_F(WebRtcVideoMediaChannelTest, TwoStreamsSendAndUnsignalledRecv) {
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002121 Base::TwoStreamsSendAndUnsignalledRecv(cricket::VideoCodec(100, "VP8", 640,
2122 400, 30, 0));
2123}
2124
henrike@webrtc.org806768a2014-02-27 21:03:09 +00002125TEST_F(WebRtcVideoMediaChannelTest,
henrike@webrtc.org18e59112014-03-14 17:19:38 +00002126 TwoStreamsSendAndFailUnsignalledRecv) {
henrike@webrtc.org806768a2014-02-27 21:03:09 +00002127 webrtc::Trace::set_level_filter(webrtc::kTraceAll);
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002128 Base::TwoStreamsSendAndFailUnsignalledRecv(
2129 cricket::VideoCodec(100, "VP8", 640, 400, 30, 0));
2130}
2131
2132TEST_F(WebRtcVideoMediaChannelTest,
henrike@webrtc.org18e59112014-03-14 17:19:38 +00002133 TwoStreamsSendAndFailUnsignalledRecvInOneToOne) {
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002134 Base::TwoStreamsSendAndFailUnsignalledRecvInOneToOne(
2135 cricket::VideoCodec(100, "VP8", 640, 400, 30, 0));
2136}
2137
2138TEST_F(WebRtcVideoMediaChannelTest,
henrike@webrtc.org18e59112014-03-14 17:19:38 +00002139 TwoStreamsAddAndRemoveUnsignalledRecv) {
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002140 Base::TwoStreamsAddAndRemoveUnsignalledRecv(cricket::VideoCodec(100, "VP8",
2141 640, 400, 30,
2142 0));
2143}