blob: d305756fa21d23a590b0656ea3146e949157e2e0 [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
henrike@webrtc.org6e3dbc22014-03-25 17:09:47 +0000827// Verify that SuspendBelowMinBitrate is enabled if it is set in the options.
828TEST_F(WebRtcVideoEngineTestFake, SuspendBelowMinBitrateTest) {
829 EXPECT_TRUE(SetupEngine());
830
831 // Verify this is off by default.
832 EXPECT_TRUE(channel_->AddSendStream(cricket::StreamParams::CreateLegacy(1)));
833 int first_send_channel = vie_.GetLastChannel();
834 EXPECT_FALSE(vie_.GetSuspendBelowMinBitrateStatus(first_send_channel));
835
836 // Enable the experiment and verify.
837 cricket::VideoOptions options;
838 options.suspend_below_min_bitrate.Set(true);
839 EXPECT_TRUE(channel_->SetOptions(options));
840 EXPECT_TRUE(vie_.GetSuspendBelowMinBitrateStatus(first_send_channel));
841
842 // Add a new send stream and verify suspend_below_min_bitrate is enabled.
843 EXPECT_TRUE(channel_->AddSendStream(cricket::StreamParams::CreateLegacy(2)));
844 int second_send_channel = vie_.GetLastChannel();
845 EXPECT_NE(first_send_channel, second_send_channel);
846 EXPECT_TRUE(vie_.GetSuspendBelowMinBitrateStatus(second_send_channel));
847}
848
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000849TEST_F(WebRtcVideoEngineTestFake, BufferedModeLatency) {
850 EXPECT_TRUE(SetupEngine());
851
852 // Verify this is off by default.
853 EXPECT_TRUE(channel_->AddSendStream(cricket::StreamParams::CreateLegacy(1)));
854 int first_send_channel = vie_.GetLastChannel();
855 EXPECT_EQ(0, vie_.GetSenderTargetDelay(first_send_channel));
856 EXPECT_EQ(0, vie_.GetReceiverTargetDelay(first_send_channel));
857
858 // Enable the experiment and verify. The default channel will have both
859 // sender and receiver buffered mode enabled.
860 cricket::VideoOptions options;
861 options.conference_mode.Set(true);
862 options.buffered_mode_latency.Set(100);
863 EXPECT_TRUE(channel_->SetOptions(options));
864 EXPECT_EQ(100, vie_.GetSenderTargetDelay(first_send_channel));
865 EXPECT_EQ(100, vie_.GetReceiverTargetDelay(first_send_channel));
866
867 // Add a receive channel and verify sender buffered mode isn't enabled.
868 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(2)));
869 int recv_channel_num = vie_.GetLastChannel();
870 EXPECT_NE(first_send_channel, recv_channel_num);
871 EXPECT_EQ(0, vie_.GetSenderTargetDelay(recv_channel_num));
872 EXPECT_EQ(100, vie_.GetReceiverTargetDelay(recv_channel_num));
873
874 // Add a new send stream and verify sender buffered mode is enabled.
875 EXPECT_TRUE(channel_->AddSendStream(cricket::StreamParams::CreateLegacy(3)));
876 int second_send_channel = vie_.GetLastChannel();
877 EXPECT_NE(first_send_channel, second_send_channel);
878 EXPECT_EQ(100, vie_.GetSenderTargetDelay(second_send_channel));
879 EXPECT_EQ(0, vie_.GetReceiverTargetDelay(second_send_channel));
880
881 // Disable sender buffered mode and verify.
882 options.buffered_mode_latency.Set(cricket::kBufferedModeDisabled);
883 EXPECT_TRUE(channel_->SetOptions(options));
884 EXPECT_EQ(0, vie_.GetSenderTargetDelay(first_send_channel));
885 EXPECT_EQ(0, vie_.GetReceiverTargetDelay(first_send_channel));
886 EXPECT_EQ(0, vie_.GetSenderTargetDelay(second_send_channel));
887 EXPECT_EQ(0, vie_.GetReceiverTargetDelay(second_send_channel));
888 EXPECT_EQ(0, vie_.GetSenderTargetDelay(recv_channel_num));
889 EXPECT_EQ(0, vie_.GetReceiverTargetDelay(recv_channel_num));
890}
891
892TEST_F(WebRtcVideoEngineTestFake, AdditiveVideoOptions) {
893 EXPECT_TRUE(SetupEngine());
894
895 EXPECT_TRUE(channel_->AddSendStream(cricket::StreamParams::CreateLegacy(1)));
896 int first_send_channel = vie_.GetLastChannel();
897 EXPECT_EQ(0, vie_.GetSenderTargetDelay(first_send_channel));
898 EXPECT_EQ(0, vie_.GetReceiverTargetDelay(first_send_channel));
899
900 cricket::VideoOptions options1;
901 options1.buffered_mode_latency.Set(100);
902 EXPECT_TRUE(channel_->SetOptions(options1));
903 EXPECT_EQ(100, vie_.GetSenderTargetDelay(first_send_channel));
904 EXPECT_EQ(100, vie_.GetReceiverTargetDelay(first_send_channel));
905 EXPECT_FALSE(vie_.GetTransmissionSmoothingStatus(first_send_channel));
906
907 cricket::VideoOptions options2;
908 options2.video_leaky_bucket.Set(true);
909 EXPECT_TRUE(channel_->SetOptions(options2));
910 EXPECT_TRUE(vie_.GetTransmissionSmoothingStatus(first_send_channel));
911 // The buffered_mode_latency still takes effect.
912 EXPECT_EQ(100, vie_.GetSenderTargetDelay(first_send_channel));
913 EXPECT_EQ(100, vie_.GetReceiverTargetDelay(first_send_channel));
914
915 options1.buffered_mode_latency.Set(50);
916 EXPECT_TRUE(channel_->SetOptions(options1));
917 EXPECT_EQ(50, vie_.GetSenderTargetDelay(first_send_channel));
918 EXPECT_EQ(50, vie_.GetReceiverTargetDelay(first_send_channel));
919 // The video_leaky_bucket still takes effect.
920 EXPECT_TRUE(vie_.GetTransmissionSmoothingStatus(first_send_channel));
921}
922
923// Test that AddRecvStream doesn't create new channel for 1:1 call.
924TEST_F(WebRtcVideoEngineTestFake, AddRecvStream1On1) {
925 EXPECT_TRUE(SetupEngine());
926 int channel_num = vie_.GetLastChannel();
927 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
928 EXPECT_EQ(channel_num, vie_.GetLastChannel());
929}
930
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000931// Test that NACK, PLI and REMB are enabled for internal codec.
932TEST_F(WebRtcVideoEngineTestFake, InternalCodecFeedbackParams) {
933 EXPECT_TRUE(SetupEngine());
934
935 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
936 // Vp8 will appear at the beginning.
937 size_t pos = 0;
938 EXPECT_EQ("VP8", codecs[pos].name);
939 VerifyCodecFeedbackParams(codecs[pos]);
940}
941
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000942// Test that AddRecvStream doesn't change remb for 1:1 call.
943TEST_F(WebRtcVideoEngineTestFake, NoRembChangeAfterAddRecvStream) {
944 EXPECT_TRUE(SetupEngine());
945 int channel_num = vie_.GetLastChannel();
946 EXPECT_TRUE(channel_->AddSendStream(
947 cricket::StreamParams::CreateLegacy(1)));
948 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
949 EXPECT_TRUE(vie_.GetRembStatusBwPartition(channel_num));
950 EXPECT_TRUE(vie_.GetRembStatusContribute(channel_num));
951 EXPECT_TRUE(channel_->SetSend(true));
952 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
953 EXPECT_TRUE(vie_.GetRembStatusBwPartition(channel_num));
954 EXPECT_TRUE(vie_.GetRembStatusContribute(channel_num));
955}
956
957// Verify default REMB setting and that it can be turned on and off.
958TEST_F(WebRtcVideoEngineTestFake, RembOnOff) {
959 EXPECT_TRUE(SetupEngine());
960 int channel_num = vie_.GetLastChannel();
961 // Verify REMB sending is always off by default.
962 EXPECT_FALSE(vie_.GetRembStatusBwPartition(channel_num));
963
964 // Verify that REMB is turned on when setting default codecs since the
965 // default codecs have REMB enabled.
966 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
967 EXPECT_TRUE(vie_.GetRembStatusBwPartition(channel_num));
968
969 // Verify that REMB is turned off when codecs without REMB are set.
970 std::vector<cricket::VideoCodec> codecs = engine_.codecs();
971 // Clearing the codecs' FeedbackParams and setting send codecs should disable
972 // REMB.
973 for (std::vector<cricket::VideoCodec>::iterator iter = codecs.begin();
974 iter != codecs.end(); ++iter) {
975 // Intersecting with empty will clear the FeedbackParams.
976 cricket::FeedbackParams empty_params;
977 iter->feedback_params.Intersect(empty_params);
978 EXPECT_TRUE(iter->feedback_params.params().empty());
979 }
980 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
981 EXPECT_FALSE(vie_.GetRembStatusBwPartition(channel_num));
982}
983
984// Test that nack is enabled on the channel if we don't offer red/fec.
985TEST_F(WebRtcVideoEngineTestFake, NackEnabled) {
986 EXPECT_TRUE(SetupEngine());
987 int channel_num = vie_.GetLastChannel();
988 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
989 codecs.resize(1); // toss out red and ulpfec
990 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
991 EXPECT_TRUE(vie_.GetNackStatus(channel_num));
992}
993
994// Test that we enable hybrid NACK FEC mode.
995TEST_F(WebRtcVideoEngineTestFake, HybridNackFec) {
996 EXPECT_TRUE(SetupEngine());
997 int channel_num = vie_.GetLastChannel();
998 EXPECT_TRUE(channel_->SetRecvCodecs(engine_.codecs()));
999 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1000 EXPECT_TRUE(vie_.GetHybridNackFecStatus(channel_num));
1001 EXPECT_FALSE(vie_.GetNackStatus(channel_num));
1002}
1003
1004// Test that we enable hybrid NACK FEC mode when calling SetSendCodecs and
1005// SetReceiveCodecs in reversed order.
1006TEST_F(WebRtcVideoEngineTestFake, HybridNackFecReversedOrder) {
1007 EXPECT_TRUE(SetupEngine());
1008 int channel_num = vie_.GetLastChannel();
1009 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1010 EXPECT_TRUE(channel_->SetRecvCodecs(engine_.codecs()));
1011 EXPECT_TRUE(vie_.GetHybridNackFecStatus(channel_num));
1012 EXPECT_FALSE(vie_.GetNackStatus(channel_num));
1013}
1014
1015// Test NACK vs Hybrid NACK/FEC interop call setup, i.e. only use NACK even if
1016// red/fec is offered as receive codec.
1017TEST_F(WebRtcVideoEngineTestFake, VideoProtectionInterop) {
1018 EXPECT_TRUE(SetupEngine());
1019 int channel_num = vie_.GetLastChannel();
1020 std::vector<cricket::VideoCodec> recv_codecs(engine_.codecs());
1021 std::vector<cricket::VideoCodec> send_codecs(engine_.codecs());
1022 // Only add VP8 as send codec.
1023 send_codecs.resize(1);
1024 EXPECT_TRUE(channel_->SetRecvCodecs(recv_codecs));
1025 EXPECT_TRUE(channel_->SetSendCodecs(send_codecs));
1026 EXPECT_FALSE(vie_.GetHybridNackFecStatus(channel_num));
1027 EXPECT_TRUE(vie_.GetNackStatus(channel_num));
1028}
1029
1030// Test NACK vs Hybrid NACK/FEC interop call setup, i.e. only use NACK even if
1031// red/fec is offered as receive codec. Call order reversed compared to
1032// VideoProtectionInterop.
1033TEST_F(WebRtcVideoEngineTestFake, VideoProtectionInteropReversed) {
1034 EXPECT_TRUE(SetupEngine());
1035 int channel_num = vie_.GetLastChannel();
1036 std::vector<cricket::VideoCodec> recv_codecs(engine_.codecs());
1037 std::vector<cricket::VideoCodec> send_codecs(engine_.codecs());
1038 // Only add VP8 as send codec.
1039 send_codecs.resize(1);
1040 EXPECT_TRUE(channel_->SetSendCodecs(send_codecs));
1041 EXPECT_TRUE(channel_->SetRecvCodecs(recv_codecs));
1042 EXPECT_FALSE(vie_.GetHybridNackFecStatus(channel_num));
1043 EXPECT_TRUE(vie_.GetNackStatus(channel_num));
1044}
1045
1046// Test that NACK, not hybrid mode, is enabled in conference mode.
1047TEST_F(WebRtcVideoEngineTestFake, HybridNackFecConference) {
1048 EXPECT_TRUE(SetupEngine());
1049 // Setup the send channel.
1050 int send_channel_num = vie_.GetLastChannel();
1051 cricket::VideoOptions options;
1052 options.conference_mode.Set(true);
1053 EXPECT_TRUE(channel_->SetOptions(options));
1054 EXPECT_TRUE(channel_->SetRecvCodecs(engine_.codecs()));
1055 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1056 EXPECT_FALSE(vie_.GetHybridNackFecStatus(send_channel_num));
1057 EXPECT_TRUE(vie_.GetNackStatus(send_channel_num));
1058 // Add a receive stream.
1059 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
1060 int receive_channel_num = vie_.GetLastChannel();
1061 EXPECT_FALSE(vie_.GetHybridNackFecStatus(receive_channel_num));
1062 EXPECT_TRUE(vie_.GetNackStatus(receive_channel_num));
1063}
1064
1065// Test that when AddRecvStream in conference mode, a new channel is created
1066// for receiving. And the new channel's "original channel" is the send channel.
1067TEST_F(WebRtcVideoEngineTestFake, AddRemoveRecvStreamConference) {
1068 EXPECT_TRUE(SetupEngine());
1069 // Setup the send channel.
1070 int send_channel_num = vie_.GetLastChannel();
1071 cricket::VideoOptions options;
1072 options.conference_mode.Set(true);
1073 EXPECT_TRUE(channel_->SetOptions(options));
1074 // Add a receive stream.
1075 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
1076 int receive_channel_num = vie_.GetLastChannel();
1077 EXPECT_EQ(send_channel_num, vie_.GetOriginalChannelId(receive_channel_num));
1078 EXPECT_TRUE(channel_->RemoveRecvStream(1));
1079 EXPECT_FALSE(vie_.IsChannel(receive_channel_num));
1080}
1081
henrike@webrtc.org6e3dbc22014-03-25 17:09:47 +00001082// Test that adding/removing stream with 0 ssrc should fail (and not crash).
1083// For crbug/351699 and 350988.
1084TEST_F(WebRtcVideoEngineTestFake, AddRemoveRecvStreamWith0Ssrc) {
1085 EXPECT_TRUE(SetupEngine());
1086 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
1087 EXPECT_FALSE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(0)));
1088 EXPECT_FALSE(channel_->RemoveRecvStream(0));
1089 EXPECT_TRUE(channel_->RemoveRecvStream(1));
1090}
1091
1092TEST_F(WebRtcVideoEngineTestFake, AddRemoveSendStreamWith0Ssrc) {
1093 EXPECT_TRUE(SetupEngine());
1094 EXPECT_TRUE(channel_->AddSendStream(cricket::StreamParams::CreateLegacy(1)));
1095 EXPECT_FALSE(channel_->AddSendStream(cricket::StreamParams::CreateLegacy(0)));
1096 EXPECT_FALSE(channel_->RemoveSendStream(0));
1097 EXPECT_TRUE(channel_->RemoveSendStream(1));
1098}
1099
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001100// Test that we can create a channel and start/stop rendering out on it.
1101TEST_F(WebRtcVideoEngineTestFake, SetRender) {
1102 EXPECT_TRUE(SetupEngine());
1103 int channel_num = vie_.GetLastChannel();
1104
1105 // Verify we can start/stop/start/stop rendering.
1106 EXPECT_TRUE(channel_->SetRender(true));
1107 EXPECT_TRUE(vie_.GetRenderStarted(channel_num));
1108 EXPECT_TRUE(channel_->SetRender(false));
1109 EXPECT_FALSE(vie_.GetRenderStarted(channel_num));
1110 EXPECT_TRUE(channel_->SetRender(true));
1111 EXPECT_TRUE(vie_.GetRenderStarted(channel_num));
1112 EXPECT_TRUE(channel_->SetRender(false));
1113 EXPECT_FALSE(vie_.GetRenderStarted(channel_num));
1114}
1115
1116// Test that we can create a channel and start/stop sending out on it.
1117TEST_F(WebRtcVideoEngineTestFake, SetSend) {
1118 EXPECT_TRUE(SetupEngine());
1119 int channel_num = vie_.GetLastChannel();
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001120 // Verify receiving is also started.
1121 EXPECT_TRUE(vie_.GetReceive(channel_num));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001122
1123 // Set send codecs on the channel.
1124 std::vector<cricket::VideoCodec> codecs;
1125 codecs.push_back(kVP8Codec);
1126 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1127 EXPECT_TRUE(channel_->AddSendStream(
1128 cricket::StreamParams::CreateLegacy(123)));
1129
1130 // Verify we can start/stop/start/stop sending.
1131 EXPECT_TRUE(channel_->SetSend(true));
1132 EXPECT_TRUE(vie_.GetSend(channel_num));
1133 EXPECT_TRUE(channel_->SetSend(false));
1134 EXPECT_FALSE(vie_.GetSend(channel_num));
1135 EXPECT_TRUE(channel_->SetSend(true));
1136 EXPECT_TRUE(vie_.GetSend(channel_num));
1137 EXPECT_TRUE(channel_->SetSend(false));
1138 EXPECT_FALSE(vie_.GetSend(channel_num));
1139}
1140
1141// Test that we set bandwidth properly when using full auto bandwidth mode.
1142TEST_F(WebRtcVideoEngineTestFake, SetBandwidthAuto) {
1143 EXPECT_TRUE(SetupEngine());
1144 int channel_num = vie_.GetLastChannel();
1145 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001146 EXPECT_TRUE(channel_->SetMaxSendBandwidth(cricket::kAutoBandwidth));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001147 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height);
1148}
1149
1150// Test that we set bandwidth properly when using auto with upper bound.
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001151TEST_F(WebRtcVideoEngineTestFake, SetBandwidthCapped) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001152 EXPECT_TRUE(SetupEngine());
1153 int channel_num = vie_.GetLastChannel();
1154 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001155 EXPECT_TRUE(channel_->SetMaxSendBandwidth(768000));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001156 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0, 768U);
1157}
1158
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001159// Test that we reduce the start bandwidth when the requested max is less than
1160// the default start bandwidth.
1161TEST_F(WebRtcVideoEngineTestFake, SetMaxBandwidthBelowDefaultStart) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001162 EXPECT_TRUE(SetupEngine());
1163 int channel_num = vie_.GetLastChannel();
1164 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001165 int max_bandwidth_kbps = (kMinBandwidthKbps + kStartBandwidthKbps) / 2;
1166 EXPECT_TRUE(channel_->SetMaxSendBandwidth(max_bandwidth_kbps * 1000));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001167 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001168 max_bandwidth_kbps, kMinBandwidthKbps, max_bandwidth_kbps);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001169}
1170
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001171// Test that we reduce the min bandwidth when the requested max is less than
1172// the min bandwidth.
1173TEST_F(WebRtcVideoEngineTestFake, SetMaxBandwidthBelowMin) {
1174 EXPECT_TRUE(SetupEngine());
1175 int channel_num = vie_.GetLastChannel();
1176 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1177 int max_bandwidth_kbps = kMinBandwidthKbps / 2;
1178 EXPECT_TRUE(channel_->SetMaxSendBandwidth(max_bandwidth_kbps * 1000));
1179 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1180 max_bandwidth_kbps, max_bandwidth_kbps, max_bandwidth_kbps);
1181}
1182
1183// Test that the start bandwidth can be controlled separately from the max
1184// bandwidth.
1185TEST_F(WebRtcVideoEngineTestFake, SetStartBandwidth) {
1186 EXPECT_TRUE(SetupEngine());
1187 int channel_num = vie_.GetLastChannel();
1188 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1189 int start_bandwidth_kbps = kStartBandwidthKbps + 1;
1190 EXPECT_TRUE(channel_->SetStartSendBandwidth(start_bandwidth_kbps * 1000));
1191 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1192 kMaxBandwidthKbps, kMinBandwidthKbps, start_bandwidth_kbps);
1193
1194 // Check that SetMaxSendBandwidth doesn't overwrite the start bandwidth.
1195 int max_bandwidth_kbps = kMaxBandwidthKbps + 1;
1196 EXPECT_TRUE(channel_->SetMaxSendBandwidth(max_bandwidth_kbps * 1000));
1197 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1198 max_bandwidth_kbps, kMinBandwidthKbps, start_bandwidth_kbps);
1199}
1200
wu@webrtc.org1e6cb2c2014-03-24 17:01:50 +00001201// Test that the start bandwidth can be controlled by experiment.
1202TEST_F(WebRtcVideoEngineTestFake, SetStartBandwidthOption) {
1203 EXPECT_TRUE(SetupEngine());
1204 int channel_num = vie_.GetLastChannel();
1205 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1206 int start_bandwidth_kbps = kStartBandwidthKbps;
1207 EXPECT_TRUE(channel_->SetStartSendBandwidth(start_bandwidth_kbps * 1000));
1208 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1209 kMaxBandwidthKbps, kMinBandwidthKbps, start_bandwidth_kbps);
1210
1211 // Set the start bitrate option.
1212 start_bandwidth_kbps = 1000;
1213 cricket::VideoOptions options;
1214 options.video_start_bitrate.Set(
1215 start_bandwidth_kbps);
1216 EXPECT_TRUE(channel_->SetOptions(options));
1217
1218 // Check that start bitrate has changed to the new value.
1219 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0,
1220 kMaxBandwidthKbps, kMinBandwidthKbps, start_bandwidth_kbps);
1221}
1222
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001223// Test that SetMaxSendBandwidth is ignored in conference mode.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001224TEST_F(WebRtcVideoEngineTestFake, SetBandwidthInConference) {
1225 EXPECT_TRUE(SetupEngine());
1226 int channel_num = vie_.GetLastChannel();
1227 cricket::VideoOptions options;
1228 options.conference_mode.Set(true);
1229 EXPECT_TRUE(channel_->SetOptions(options));
1230 EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
1231 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height);
1232
1233 // Set send bandwidth.
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001234 EXPECT_TRUE(channel_->SetMaxSendBandwidth(768000));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001235
1236 // Verify bitrate not changed.
1237 webrtc::VideoCodec gcodec;
1238 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
1239 EXPECT_EQ(kMinBandwidthKbps, gcodec.minBitrate);
1240 EXPECT_EQ(kStartBandwidthKbps, gcodec.startBitrate);
1241 EXPECT_EQ(kMaxBandwidthKbps, gcodec.maxBitrate);
1242 EXPECT_NE(768U, gcodec.minBitrate);
1243 EXPECT_NE(768U, gcodec.startBitrate);
1244 EXPECT_NE(768U, gcodec.maxBitrate);
1245}
1246
1247// Test that sending screencast frames doesn't change bitrate.
1248TEST_F(WebRtcVideoEngineTestFake, SetBandwidthScreencast) {
1249 EXPECT_TRUE(SetupEngine());
1250 int channel_num = vie_.GetLastChannel();
1251
1252 // Set send codec.
1253 cricket::VideoCodec codec(kVP8Codec);
1254 std::vector<cricket::VideoCodec> codec_list;
1255 codec_list.push_back(codec);
1256 EXPECT_TRUE(channel_->AddSendStream(
1257 cricket::StreamParams::CreateLegacy(123)));
1258 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001259 EXPECT_TRUE(channel_->SetMaxSendBandwidth(111000));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001260 EXPECT_TRUE(channel_->SetSend(true));
1261
1262 SendI420ScreencastFrame(kVP8Codec.width, kVP8Codec.height);
sergeyu@chromium.org4b26e2e2014-01-15 23:15:54 +00001263 VerifyVP8SendCodec(channel_num, kVP8Codec.width, kVP8Codec.height, 0, 111);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001264}
1265
1266
1267// Test SetSendSsrc.
1268TEST_F(WebRtcVideoEngineTestFake, SetSendSsrcAndCname) {
1269 EXPECT_TRUE(SetupEngine());
1270 int channel_num = vie_.GetLastChannel();
1271
1272 cricket::StreamParams stream;
1273 stream.ssrcs.push_back(1234);
1274 stream.cname = "cname";
1275 channel_->AddSendStream(stream);
1276
1277 unsigned int ssrc = 0;
1278 EXPECT_EQ(0, vie_.GetLocalSSRC(channel_num, ssrc));
1279 EXPECT_EQ(1234U, ssrc);
1280 EXPECT_EQ(1, vie_.GetNumSsrcs(channel_num));
1281
1282 char rtcp_cname[256];
1283 EXPECT_EQ(0, vie_.GetRTCPCName(channel_num, rtcp_cname));
1284 EXPECT_STREQ("cname", rtcp_cname);
1285}
1286
1287
1288// Test that the local SSRC is the same on sending and receiving channels if the
1289// receive channel is created before the send channel.
1290TEST_F(WebRtcVideoEngineTestFake, SetSendSsrcAfterCreatingReceiveChannel) {
1291 EXPECT_TRUE(SetupEngine());
1292
1293 EXPECT_TRUE(channel_->AddRecvStream(cricket::StreamParams::CreateLegacy(1)));
1294 int receive_channel_num = vie_.GetLastChannel();
1295 cricket::StreamParams stream = cricket::StreamParams::CreateLegacy(1234);
1296 EXPECT_TRUE(channel_->AddSendStream(stream));
1297 int send_channel_num = vie_.GetLastChannel();
1298 unsigned int ssrc = 0;
1299 EXPECT_EQ(0, vie_.GetLocalSSRC(send_channel_num, ssrc));
1300 EXPECT_EQ(1234U, ssrc);
1301 EXPECT_EQ(1, vie_.GetNumSsrcs(send_channel_num));
1302 ssrc = 0;
1303 EXPECT_EQ(0, vie_.GetLocalSSRC(receive_channel_num, ssrc));
1304 EXPECT_EQ(1234U, ssrc);
1305 EXPECT_EQ(1, vie_.GetNumSsrcs(receive_channel_num));
1306}
1307
1308
1309// Test SetOptions with denoising flag.
1310TEST_F(WebRtcVideoEngineTestFake, SetOptionsWithDenoising) {
1311 EXPECT_TRUE(SetupEngine());
1312 EXPECT_EQ(1, vie_.GetNumCapturers());
1313 int channel_num = vie_.GetLastChannel();
1314 int capture_id = vie_.GetCaptureId(channel_num);
1315 // Set send codecs on the channel.
1316 std::vector<cricket::VideoCodec> codecs;
1317 codecs.push_back(kVP8Codec);
1318 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1319
1320 // Set options with OPT_VIDEO_NOISE_REDUCTION flag.
1321 cricket::VideoOptions options;
1322 options.video_noise_reduction.Set(true);
1323 EXPECT_TRUE(channel_->SetOptions(options));
1324
1325 // Verify capture has denoising turned on.
1326 webrtc::VideoCodec send_codec;
1327 memset(&send_codec, 0, sizeof(send_codec)); // avoid uninitialized warning
1328 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, send_codec));
1329 EXPECT_TRUE(send_codec.codecSpecific.VP8.denoisingOn);
1330 EXPECT_FALSE(vie_.GetCaptureDenoising(capture_id));
1331
1332 // Set options back to zero.
1333 options.video_noise_reduction.Set(false);
1334 EXPECT_TRUE(channel_->SetOptions(options));
1335
1336 // Verify capture has denoising turned off.
1337 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, send_codec));
1338 EXPECT_FALSE(send_codec.codecSpecific.VP8.denoisingOn);
1339 EXPECT_FALSE(vie_.GetCaptureDenoising(capture_id));
1340}
1341
wu@webrtc.orga8910d22014-01-23 22:12:45 +00001342TEST_F(WebRtcVideoEngineTestFake, MultipleSendStreamsWithOneCapturer) {
wu@webrtc.org24301a62013-12-13 19:17:43 +00001343 EXPECT_TRUE(SetupEngine());
1344
1345 // Start the capturer
1346 cricket::FakeVideoCapturer capturer;
1347 cricket::VideoFormat capture_format_vga = cricket::VideoFormat(640, 480,
1348 cricket::VideoFormat::FpsToInterval(30), cricket::FOURCC_I420);
1349 EXPECT_EQ(cricket::CS_RUNNING, capturer.Start(capture_format_vga));
1350
1351 // Add send streams and connect the capturer
1352 for (unsigned int i = 0; i < sizeof(kSsrcs2)/sizeof(kSsrcs2[0]); ++i) {
1353 EXPECT_TRUE(channel_->AddSendStream(
1354 cricket::StreamParams::CreateLegacy(kSsrcs2[i])));
1355 // Register the capturer to the ssrc.
1356 EXPECT_TRUE(channel_->SetCapturer(kSsrcs2[i], &capturer));
1357 }
1358
1359 const int channel0 = vie_.GetChannelFromLocalSsrc(kSsrcs2[0]);
1360 ASSERT_NE(-1, channel0);
1361 const int channel1 = vie_.GetChannelFromLocalSsrc(kSsrcs2[1]);
1362 ASSERT_NE(-1, channel1);
1363 ASSERT_NE(channel0, channel1);
1364
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001365 // Both channels should have started receiving after created.
1366 EXPECT_TRUE(vie_.GetReceive(channel0));
1367 EXPECT_TRUE(vie_.GetReceive(channel1));
1368
wu@webrtc.org24301a62013-12-13 19:17:43 +00001369 // Set send codec.
1370 std::vector<cricket::VideoCodec> codecs;
1371 cricket::VideoCodec send_codec(100, "VP8", 640, 480, 30, 0);
1372 codecs.push_back(send_codec);
1373 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1374
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001375 EXPECT_TRUE(channel_->SetSend(true));
1376 EXPECT_TRUE(vie_.GetSend(channel0));
1377 EXPECT_TRUE(vie_.GetSend(channel1));
1378
wu@webrtc.org24301a62013-12-13 19:17:43 +00001379 EXPECT_TRUE(capturer.CaptureFrame());
1380 EXPECT_EQ(1, vie_.GetIncomingFrameNum(channel0));
1381 EXPECT_EQ(1, vie_.GetIncomingFrameNum(channel1));
1382
1383 EXPECT_TRUE(channel_->RemoveSendStream(kSsrcs2[0]));
1384 EXPECT_TRUE(capturer.CaptureFrame());
1385 // channel0 is the default channel, so it won't be deleted.
1386 // But it should be disconnected from the capturer.
1387 EXPECT_EQ(1, vie_.GetIncomingFrameNum(channel0));
1388 EXPECT_EQ(2, vie_.GetIncomingFrameNum(channel1));
1389
1390 EXPECT_TRUE(channel_->RemoveSendStream(kSsrcs2[1]));
1391 EXPECT_TRUE(capturer.CaptureFrame());
1392 EXPECT_EQ(1, vie_.GetIncomingFrameNum(channel0));
1393 // channel1 has already been deleted.
1394 EXPECT_EQ(-1, vie_.GetIncomingFrameNum(channel1));
1395}
1396
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001397
wu@webrtc.org97077a32013-10-25 21:18:33 +00001398// Disabled since its flaky: b/11288120
1399TEST_F(WebRtcVideoEngineTestFake, DISABLED_SendReceiveBitratesStats) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001400 EXPECT_TRUE(SetupEngine());
1401 cricket::VideoOptions options;
1402 options.conference_mode.Set(true);
1403 EXPECT_TRUE(channel_->SetOptions(options));
1404 EXPECT_TRUE(channel_->AddSendStream(
1405 cricket::StreamParams::CreateLegacy(1)));
1406 int send_channel = vie_.GetLastChannel();
1407 cricket::VideoCodec codec(kVP8Codec720p);
1408 std::vector<cricket::VideoCodec> codec_list;
1409 codec_list.push_back(codec);
1410 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
1411
1412 EXPECT_TRUE(channel_->AddRecvStream(
1413 cricket::StreamParams::CreateLegacy(2)));
1414 int first_receive_channel = vie_.GetLastChannel();
1415 EXPECT_NE(send_channel, first_receive_channel);
1416 EXPECT_TRUE(channel_->AddRecvStream(
1417 cricket::StreamParams::CreateLegacy(3)));
1418 int second_receive_channel = vie_.GetLastChannel();
1419 EXPECT_NE(first_receive_channel, second_receive_channel);
1420
1421 cricket::VideoMediaInfo info;
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001422 EXPECT_TRUE(channel_->GetStats(cricket::StatsOptions(), &info));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001423 ASSERT_EQ(1U, info.bw_estimations.size());
1424 ASSERT_EQ(0, info.bw_estimations[0].actual_enc_bitrate);
1425 ASSERT_EQ(0, info.bw_estimations[0].transmit_bitrate);
1426 ASSERT_EQ(0, info.bw_estimations[0].retransmit_bitrate);
1427 ASSERT_EQ(0, info.bw_estimations[0].available_send_bandwidth);
1428 ASSERT_EQ(0, info.bw_estimations[0].available_recv_bandwidth);
1429 ASSERT_EQ(0, info.bw_estimations[0].target_enc_bitrate);
1430
1431 // Start sending and receiving on one of the channels and verify bitrates.
1432 EXPECT_EQ(0, vie_.StartSend(send_channel));
1433 int send_video_bitrate = 800;
1434 int send_fec_bitrate = 100;
1435 int send_nack_bitrate = 20;
1436 int send_total_bitrate = send_video_bitrate + send_fec_bitrate +
1437 send_nack_bitrate;
1438 int send_bandwidth = 950;
1439 vie_.SetSendBitrates(send_channel, send_video_bitrate, send_fec_bitrate,
1440 send_nack_bitrate);
1441 vie_.SetSendBandwidthEstimate(send_channel, send_bandwidth);
1442
1443 EXPECT_EQ(0, vie_.StartReceive(first_receive_channel));
1444 int first_channel_receive_bandwidth = 600;
1445 vie_.SetReceiveBandwidthEstimate(first_receive_channel,
1446 first_channel_receive_bandwidth);
1447
1448 info.Clear();
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001449 EXPECT_TRUE(channel_->GetStats(cricket::StatsOptions(), &info));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001450 ASSERT_EQ(1U, info.bw_estimations.size());
1451 ASSERT_EQ(send_video_bitrate, info.bw_estimations[0].actual_enc_bitrate);
1452 ASSERT_EQ(send_total_bitrate, info.bw_estimations[0].transmit_bitrate);
1453 ASSERT_EQ(send_nack_bitrate, info.bw_estimations[0].retransmit_bitrate);
1454 ASSERT_EQ(send_bandwidth, info.bw_estimations[0].available_send_bandwidth);
1455 ASSERT_EQ(first_channel_receive_bandwidth,
1456 info.bw_estimations[0].available_recv_bandwidth);
1457 ASSERT_EQ(send_video_bitrate, info.bw_estimations[0].target_enc_bitrate);
1458
1459 // Start receiving on the second channel and verify received rate.
1460 EXPECT_EQ(0, vie_.StartReceive(second_receive_channel));
1461 int second_channel_receive_bandwidth = 100;
1462 vie_.SetReceiveBandwidthEstimate(second_receive_channel,
1463 second_channel_receive_bandwidth);
1464
1465 info.Clear();
wu@webrtc.orgb9a088b2014-02-13 23:18:49 +00001466 EXPECT_TRUE(channel_->GetStats(cricket::StatsOptions(), &info));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001467 ASSERT_EQ(1U, info.bw_estimations.size());
1468 ASSERT_EQ(send_video_bitrate, info.bw_estimations[0].actual_enc_bitrate);
1469 ASSERT_EQ(send_total_bitrate, info.bw_estimations[0].transmit_bitrate);
1470 ASSERT_EQ(send_nack_bitrate, info.bw_estimations[0].retransmit_bitrate);
1471 ASSERT_EQ(send_bandwidth, info.bw_estimations[0].available_send_bandwidth);
1472 ASSERT_EQ(first_channel_receive_bandwidth + second_channel_receive_bandwidth,
1473 info.bw_estimations[0].available_recv_bandwidth);
1474 ASSERT_EQ(send_video_bitrate, info.bw_estimations[0].target_enc_bitrate);
1475}
1476
1477TEST_F(WebRtcVideoEngineTestFake, TestSetAdaptInputToCpuUsage) {
1478 EXPECT_TRUE(SetupEngine());
1479 cricket::VideoOptions options_in, options_out;
1480 bool cpu_adapt = false;
1481 channel_->SetOptions(options_in);
1482 EXPECT_TRUE(channel_->GetOptions(&options_out));
1483 EXPECT_FALSE(options_out.adapt_input_to_cpu_usage.Get(&cpu_adapt));
1484 // Set adapt input CPU usage option.
1485 options_in.adapt_input_to_cpu_usage.Set(true);
1486 EXPECT_TRUE(channel_->SetOptions(options_in));
1487 EXPECT_TRUE(channel_->GetOptions(&options_out));
1488 EXPECT_TRUE(options_out.adapt_input_to_cpu_usage.Get(&cpu_adapt));
1489 EXPECT_TRUE(cpu_adapt);
1490}
1491
1492TEST_F(WebRtcVideoEngineTestFake, TestSetCpuThreshold) {
1493 EXPECT_TRUE(SetupEngine());
1494 float low, high;
1495 cricket::VideoOptions options_in, options_out;
1496 // Verify that initial values are set.
1497 EXPECT_TRUE(channel_->GetOptions(&options_out));
1498 EXPECT_TRUE(options_out.system_low_adaptation_threshhold.Get(&low));
1499 EXPECT_EQ(low, 0.65f);
1500 EXPECT_TRUE(options_out.system_high_adaptation_threshhold.Get(&high));
1501 EXPECT_EQ(high, 0.85f);
1502 // Set new CPU threshold values.
1503 options_in.system_low_adaptation_threshhold.Set(0.45f);
1504 options_in.system_high_adaptation_threshhold.Set(0.95f);
1505 EXPECT_TRUE(channel_->SetOptions(options_in));
1506 EXPECT_TRUE(channel_->GetOptions(&options_out));
1507 EXPECT_TRUE(options_out.system_low_adaptation_threshhold.Get(&low));
1508 EXPECT_EQ(low, 0.45f);
1509 EXPECT_TRUE(options_out.system_high_adaptation_threshhold.Get(&high));
1510 EXPECT_EQ(high, 0.95f);
1511}
1512
1513TEST_F(WebRtcVideoEngineTestFake, TestSetInvalidCpuThreshold) {
1514 EXPECT_TRUE(SetupEngine());
1515 float low, high;
1516 cricket::VideoOptions options_in, options_out;
1517 // Valid range is [0, 1].
1518 options_in.system_low_adaptation_threshhold.Set(-1.5f);
1519 options_in.system_high_adaptation_threshhold.Set(1.5f);
1520 EXPECT_TRUE(channel_->SetOptions(options_in));
1521 EXPECT_TRUE(channel_->GetOptions(&options_out));
1522 EXPECT_TRUE(options_out.system_low_adaptation_threshhold.Get(&low));
1523 EXPECT_EQ(low, 0.0f);
1524 EXPECT_TRUE(options_out.system_high_adaptation_threshhold.Get(&high));
1525 EXPECT_EQ(high, 1.0f);
1526}
1527
1528
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +00001529TEST_F(WebRtcVideoEngineTestFake, ResetCodecOnScreencast) {
1530 EXPECT_TRUE(SetupEngine());
1531 cricket::VideoOptions options;
1532 options.video_noise_reduction.Set(true);
1533 EXPECT_TRUE(channel_->SetOptions(options));
1534
1535 // Set send codec.
1536 cricket::VideoCodec codec(kVP8Codec);
1537 std::vector<cricket::VideoCodec> codec_list;
1538 codec_list.push_back(codec);
1539 EXPECT_TRUE(channel_->AddSendStream(
1540 cricket::StreamParams::CreateLegacy(123)));
1541 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
1542 EXPECT_TRUE(channel_->SetSend(true));
1543 EXPECT_EQ(1, vie_.num_set_send_codecs());
1544
1545 webrtc::VideoCodec gcodec;
1546 memset(&gcodec, 0, sizeof(gcodec));
1547 int channel_num = vie_.GetLastChannel();
1548 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
1549 EXPECT_TRUE(gcodec.codecSpecific.VP8.denoisingOn);
1550
1551 // Send a screencast frame with the same size.
1552 // Verify that denoising is turned off.
1553 SendI420ScreencastFrame(kVP8Codec.width, kVP8Codec.height);
1554 EXPECT_EQ(2, vie_.num_set_send_codecs());
1555 EXPECT_EQ(0, vie_.GetSendCodec(channel_num, gcodec));
1556 EXPECT_FALSE(gcodec.codecSpecific.VP8.denoisingOn);
1557}
1558
1559
1560TEST_F(WebRtcVideoEngineTestFake, DontRegisterDecoderIfFactoryIsNotGiven) {
1561 engine_.SetExternalDecoderFactory(NULL);
1562 EXPECT_TRUE(SetupEngine());
1563 int channel_num = vie_.GetLastChannel();
1564
1565 std::vector<cricket::VideoCodec> codecs;
1566 codecs.push_back(kVP8Codec);
1567 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1568
1569 EXPECT_EQ(0, vie_.GetNumExternalDecoderRegistered(channel_num));
1570}
1571
1572TEST_F(WebRtcVideoEngineTestFake, RegisterDecoderIfFactoryIsGiven) {
1573 decoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8);
1574 engine_.SetExternalDecoderFactory(&decoder_factory_);
1575 EXPECT_TRUE(SetupEngine());
1576 int channel_num = vie_.GetLastChannel();
1577
1578 std::vector<cricket::VideoCodec> codecs;
1579 codecs.push_back(kVP8Codec);
1580 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1581
1582 EXPECT_TRUE(vie_.ExternalDecoderRegistered(channel_num, 100));
1583 EXPECT_EQ(1, vie_.GetNumExternalDecoderRegistered(channel_num));
1584}
1585
1586TEST_F(WebRtcVideoEngineTestFake, DontRegisterDecoderMultipleTimes) {
1587 decoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8);
1588 engine_.SetExternalDecoderFactory(&decoder_factory_);
1589 EXPECT_TRUE(SetupEngine());
1590 int channel_num = vie_.GetLastChannel();
1591
1592 std::vector<cricket::VideoCodec> codecs;
1593 codecs.push_back(kVP8Codec);
1594 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1595
1596 EXPECT_TRUE(vie_.ExternalDecoderRegistered(channel_num, 100));
1597 EXPECT_EQ(1, vie_.GetNumExternalDecoderRegistered(channel_num));
1598 EXPECT_EQ(1, decoder_factory_.GetNumCreatedDecoders());
1599
1600 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1601 EXPECT_EQ(1, vie_.GetNumExternalDecoderRegistered(channel_num));
1602 EXPECT_EQ(1, decoder_factory_.GetNumCreatedDecoders());
1603}
1604
1605TEST_F(WebRtcVideoEngineTestFake, DontRegisterDecoderForNonVP8) {
1606 decoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8);
1607 engine_.SetExternalDecoderFactory(&decoder_factory_);
1608 EXPECT_TRUE(SetupEngine());
1609 int channel_num = vie_.GetLastChannel();
1610
1611 std::vector<cricket::VideoCodec> codecs;
1612 codecs.push_back(kRedCodec);
1613 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1614
1615 EXPECT_EQ(0, vie_.GetNumExternalDecoderRegistered(channel_num));
1616}
1617
1618TEST_F(WebRtcVideoEngineTestFake, DontRegisterEncoderIfFactoryIsNotGiven) {
1619 engine_.SetExternalEncoderFactory(NULL);
1620 EXPECT_TRUE(SetupEngine());
1621 int channel_num = vie_.GetLastChannel();
1622
1623 std::vector<cricket::VideoCodec> codecs;
1624 codecs.push_back(kVP8Codec);
1625 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1626
1627 EXPECT_EQ(0, vie_.GetNumExternalEncoderRegistered(channel_num));
1628}
1629
1630TEST_F(WebRtcVideoEngineTestFake, RegisterEncoderIfFactoryIsGiven) {
1631 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1632 engine_.SetExternalEncoderFactory(&encoder_factory_);
1633 EXPECT_TRUE(SetupEngine());
1634 int channel_num = vie_.GetLastChannel();
1635
1636 std::vector<cricket::VideoCodec> codecs;
1637 codecs.push_back(kVP8Codec);
1638 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1639
1640 EXPECT_TRUE(channel_->AddSendStream(
1641 cricket::StreamParams::CreateLegacy(kSsrc)));
1642
1643 EXPECT_TRUE(vie_.ExternalEncoderRegistered(channel_num, 100));
1644 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1645
1646 // Remove stream previously added to free the external encoder instance.
1647 EXPECT_TRUE(channel_->RemoveSendStream(kSsrc));
1648}
1649
1650TEST_F(WebRtcVideoEngineTestFake, DontRegisterEncoderMultipleTimes) {
1651 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1652 engine_.SetExternalEncoderFactory(&encoder_factory_);
1653 EXPECT_TRUE(SetupEngine());
1654 int channel_num = vie_.GetLastChannel();
1655
1656 std::vector<cricket::VideoCodec> codecs;
1657 codecs.push_back(kVP8Codec);
1658 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1659
1660 EXPECT_TRUE(channel_->AddSendStream(
1661 cricket::StreamParams::CreateLegacy(kSsrc)));
1662
1663 EXPECT_TRUE(vie_.ExternalEncoderRegistered(channel_num, 100));
1664 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1665 EXPECT_EQ(1, encoder_factory_.GetNumCreatedEncoders());
1666
1667 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1668 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1669 EXPECT_EQ(1, encoder_factory_.GetNumCreatedEncoders());
1670
1671 // Remove stream previously added to free the external encoder instance.
1672 EXPECT_TRUE(channel_->RemoveSendStream(kSsrc));
1673}
1674
1675TEST_F(WebRtcVideoEngineTestFake, RegisterEncoderWithMultipleSendStreams) {
1676 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1677 engine_.SetExternalEncoderFactory(&encoder_factory_);
1678 EXPECT_TRUE(SetupEngine());
1679
1680 std::vector<cricket::VideoCodec> codecs;
1681 codecs.push_back(kVP8Codec);
1682 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1683 EXPECT_EQ(1, vie_.GetTotalNumExternalEncoderRegistered());
1684
1685 // When we add the first stream (1234), it reuses the default send channel,
1686 // so it doesn't increase the registration count of external encoders.
1687 EXPECT_TRUE(channel_->AddSendStream(
1688 cricket::StreamParams::CreateLegacy(1234)));
1689 EXPECT_EQ(1, vie_.GetTotalNumExternalEncoderRegistered());
1690
1691 // When we add the second stream (2345), it creates a new channel and
1692 // increments the registration count.
1693 EXPECT_TRUE(channel_->AddSendStream(
1694 cricket::StreamParams::CreateLegacy(2345)));
1695 EXPECT_EQ(2, vie_.GetTotalNumExternalEncoderRegistered());
1696
1697 // At this moment the total registration count is two, but only one encoder
1698 // is registered per channel.
1699 int channel_num = vie_.GetLastChannel();
1700 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1701
1702 // Removing send streams decrements the registration count.
1703 EXPECT_TRUE(channel_->RemoveSendStream(1234));
1704 EXPECT_EQ(1, vie_.GetTotalNumExternalEncoderRegistered());
1705
1706 // When we remove the last send stream, it also destroys the last send
1707 // channel and causes the registration count to drop to zero. It is a little
1708 // weird, but not a bug.
1709 EXPECT_TRUE(channel_->RemoveSendStream(2345));
1710 EXPECT_EQ(0, vie_.GetTotalNumExternalEncoderRegistered());
1711}
1712
1713TEST_F(WebRtcVideoEngineTestFake, DontRegisterEncoderForNonVP8) {
1714 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecGeneric,
1715 "GENERIC");
1716 engine_.SetExternalEncoderFactory(&encoder_factory_);
1717 EXPECT_TRUE(SetupEngine());
1718 int channel_num = vie_.GetLastChannel();
1719
1720 // Note: unlike the SetRecvCodecs, we must set a valid video codec for
1721 // channel_->SetSendCodecs() to succeed.
1722 std::vector<cricket::VideoCodec> codecs;
1723 codecs.push_back(kVP8Codec);
1724 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1725
1726 EXPECT_EQ(0, vie_.GetNumExternalEncoderRegistered(channel_num));
1727}
1728
1729// Test that NACK, PLI and REMB are enabled for external codec.
1730TEST_F(WebRtcVideoEngineTestFake, ExternalCodecFeedbackParams) {
1731 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecGeneric,
1732 "GENERIC");
1733 engine_.SetExternalEncoderFactory(&encoder_factory_);
1734 encoder_factory_.NotifyCodecsAvailable();
1735 EXPECT_TRUE(SetupEngine());
1736
1737 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
1738 // The external codec will appear at last.
1739 size_t pos = codecs.size() - 1;
1740 EXPECT_EQ("GENERIC", codecs[pos].name);
1741 VerifyCodecFeedbackParams(codecs[pos]);
1742}
1743
1744// Test external codec with be added to the end of the supported codec list.
1745TEST_F(WebRtcVideoEngineTestFake, ExternalCodecAddedToTheEnd) {
1746 EXPECT_TRUE(SetupEngine());
1747
1748 std::vector<cricket::VideoCodec> codecs(engine_.codecs());
1749 EXPECT_EQ("VP8", codecs[0].name);
1750
1751 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecGeneric,
1752 "GENERIC");
1753 engine_.SetExternalEncoderFactory(&encoder_factory_);
1754 encoder_factory_.NotifyCodecsAvailable();
1755
1756 codecs = engine_.codecs();
1757 cricket::VideoCodec internal_codec = codecs[0];
1758 cricket::VideoCodec external_codec = codecs[codecs.size() - 1];
1759 // The external codec will appear at last.
1760 EXPECT_EQ("GENERIC", external_codec.name);
1761 // The internal codec is preferred.
1762 EXPECT_GE(internal_codec.preference, external_codec.preference);
1763}
1764
1765// Test that external codec with be ignored if it has the same name as one of
1766// the internal codecs.
1767TEST_F(WebRtcVideoEngineTestFake, ExternalCodecIgnored) {
1768 EXPECT_TRUE(SetupEngine());
1769
1770 std::vector<cricket::VideoCodec> internal_codecs(engine_.codecs());
1771 EXPECT_EQ("VP8", internal_codecs[0].name);
1772
1773 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1774 engine_.SetExternalEncoderFactory(&encoder_factory_);
1775 encoder_factory_.NotifyCodecsAvailable();
1776
1777 std::vector<cricket::VideoCodec> codecs = engine_.codecs();
1778 EXPECT_EQ("VP8", codecs[0].name);
1779 EXPECT_EQ(internal_codecs[0].height, codecs[0].height);
1780 EXPECT_EQ(internal_codecs[0].width, codecs[0].width);
1781 // Verify the last codec is not the external codec.
1782 EXPECT_NE("VP8", codecs[codecs.size() - 1].name);
1783}
1784
1785TEST_F(WebRtcVideoEngineTestFake, UpdateEncoderCodecsAfterSetFactory) {
1786 engine_.SetExternalEncoderFactory(&encoder_factory_);
1787 EXPECT_TRUE(SetupEngine());
1788 int channel_num = vie_.GetLastChannel();
1789
1790 encoder_factory_.AddSupportedVideoCodecType(webrtc::kVideoCodecVP8, "VP8");
1791 encoder_factory_.NotifyCodecsAvailable();
1792 std::vector<cricket::VideoCodec> codecs;
1793 codecs.push_back(kVP8Codec);
1794 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
1795
1796 EXPECT_TRUE(channel_->AddSendStream(
1797 cricket::StreamParams::CreateLegacy(kSsrc)));
1798
1799 EXPECT_TRUE(vie_.ExternalEncoderRegistered(channel_num, 100));
1800 EXPECT_EQ(1, vie_.GetNumExternalEncoderRegistered(channel_num));
1801 EXPECT_EQ(1, encoder_factory_.GetNumCreatedEncoders());
1802
1803 // Remove stream previously added to free the external encoder instance.
1804 EXPECT_TRUE(channel_->RemoveSendStream(kSsrc));
1805}
1806
1807// Tests that OnReadyToSend will be propagated into ViE.
1808TEST_F(WebRtcVideoEngineTestFake, OnReadyToSend) {
1809 EXPECT_TRUE(SetupEngine());
1810 int channel_num = vie_.GetLastChannel();
1811 EXPECT_TRUE(vie_.GetIsTransmitting(channel_num));
1812
1813 channel_->OnReadyToSend(false);
1814 EXPECT_FALSE(vie_.GetIsTransmitting(channel_num));
1815
1816 channel_->OnReadyToSend(true);
1817 EXPECT_TRUE(vie_.GetIsTransmitting(channel_num));
1818}
1819
1820#if 0
1821TEST_F(WebRtcVideoEngineTestFake, CaptureFrameTimestampToNtpTimestamp) {
1822 EXPECT_TRUE(SetupEngine());
1823 int capture_id = vie_.GetCaptureId(vie_.GetLastChannel());
1824
1825 // Set send codec.
1826 cricket::VideoCodec codec(kVP8Codec);
1827 std::vector<cricket::VideoCodec> codec_list;
1828 codec_list.push_back(codec);
1829 EXPECT_TRUE(channel_->AddSendStream(
1830 cricket::StreamParams::CreateLegacy(123)));
1831 EXPECT_TRUE(channel_->SetSendCodecs(codec_list));
1832 EXPECT_TRUE(channel_->SetSend(true));
1833
1834 int64 timestamp = time(NULL) * talk_base::kNumNanosecsPerSec;
1835 SendI420ScreencastFrameWithTimestamp(
1836 kVP8Codec.width, kVP8Codec.height, timestamp);
1837 EXPECT_EQ(talk_base::UnixTimestampNanosecsToNtpMillisecs(timestamp),
1838 vie_.GetCaptureLastTimestamp(capture_id));
1839
1840 SendI420ScreencastFrameWithTimestamp(kVP8Codec.width, kVP8Codec.height, 0);
1841 EXPECT_EQ(0, vie_.GetCaptureLastTimestamp(capture_id));
1842}
1843#endif
1844
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001845/////////////////////////
1846// Tests with real ViE //
1847/////////////////////////
1848
1849// Tests that we can find codecs by name or id.
1850TEST_F(WebRtcVideoEngineTest, FindCodec) {
1851 // We should not need to init engine in order to get codecs.
1852 const std::vector<cricket::VideoCodec>& c = engine_.codecs();
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +00001853 EXPECT_EQ(4U, c.size());
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001854
1855 cricket::VideoCodec vp8(104, "VP8", 320, 200, 30, 0);
1856 EXPECT_TRUE(engine_.FindCodec(vp8));
1857
1858 cricket::VideoCodec vp8_ci(104, "vp8", 320, 200, 30, 0);
1859 EXPECT_TRUE(engine_.FindCodec(vp8));
1860
1861 cricket::VideoCodec vp8_diff_fr_diff_pref(104, "VP8", 320, 200, 50, 50);
1862 EXPECT_TRUE(engine_.FindCodec(vp8_diff_fr_diff_pref));
1863
1864 cricket::VideoCodec vp8_diff_id(95, "VP8", 320, 200, 30, 0);
1865 EXPECT_FALSE(engine_.FindCodec(vp8_diff_id));
1866 vp8_diff_id.id = 97;
1867 EXPECT_TRUE(engine_.FindCodec(vp8_diff_id));
1868
1869 cricket::VideoCodec vp8_diff_res(104, "VP8", 320, 111, 30, 0);
1870 EXPECT_FALSE(engine_.FindCodec(vp8_diff_res));
1871
1872 // PeerConnection doesn't negotiate the resolution at this point.
1873 // Test that FindCodec can handle the case when width/height is 0.
1874 cricket::VideoCodec vp8_zero_res(104, "VP8", 0, 0, 30, 0);
1875 EXPECT_TRUE(engine_.FindCodec(vp8_zero_res));
1876
1877 cricket::VideoCodec red(101, "RED", 0, 0, 30, 0);
1878 EXPECT_TRUE(engine_.FindCodec(red));
1879
1880 cricket::VideoCodec red_ci(101, "red", 0, 0, 30, 0);
1881 EXPECT_TRUE(engine_.FindCodec(red));
1882
1883 cricket::VideoCodec fec(102, "ULPFEC", 0, 0, 30, 0);
1884 EXPECT_TRUE(engine_.FindCodec(fec));
1885
1886 cricket::VideoCodec fec_ci(102, "ulpfec", 0, 0, 30, 0);
1887 EXPECT_TRUE(engine_.FindCodec(fec));
sergeyu@chromium.org5bc25c42013-12-05 00:24:06 +00001888
1889 cricket::VideoCodec rtx(96, "rtx", 0, 0, 30, 0);
1890 EXPECT_TRUE(engine_.FindCodec(rtx));
1891}
1892
1893TEST_F(WebRtcVideoEngineTest, RtxCodecHasAptSet) {
1894 std::vector<cricket::VideoCodec>::const_iterator it;
1895 bool apt_checked = false;
1896 for (it = engine_.codecs().begin(); it != engine_.codecs().end(); ++it) {
1897 if (_stricmp(cricket::kRtxCodecName, it->name.c_str()) && it->id != 96) {
1898 continue;
1899 }
1900 int apt;
1901 EXPECT_TRUE(it->GetParam("apt", &apt));
1902 EXPECT_EQ(100, apt);
1903 apt_checked = true;
1904 }
1905 EXPECT_TRUE(apt_checked);
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001906}
1907
1908TEST_F(WebRtcVideoEngineTest, StartupShutdown) {
1909 EXPECT_TRUE(engine_.Init(talk_base::Thread::Current()));
1910 engine_.Terminate();
1911}
1912
1913TEST_PRE_VIDEOENGINE_INIT(WebRtcVideoEngineTest, ConstrainNewCodec)
1914TEST_POST_VIDEOENGINE_INIT(WebRtcVideoEngineTest, ConstrainNewCodec)
1915
1916TEST_PRE_VIDEOENGINE_INIT(WebRtcVideoEngineTest, ConstrainRunningCodec)
1917TEST_POST_VIDEOENGINE_INIT(WebRtcVideoEngineTest, ConstrainRunningCodec)
1918
1919// TODO(juberti): Figure out why ViE is munging the COM refcount.
1920#ifdef WIN32
1921TEST_F(WebRtcVideoEngineTest, DISABLED_CheckCoInitialize) {
1922 Base::CheckCoInitialize();
1923}
1924#endif
1925
1926TEST_F(WebRtcVideoEngineTest, CreateChannel) {
1927 EXPECT_TRUE(engine_.Init(talk_base::Thread::Current()));
1928 cricket::VideoMediaChannel* channel = engine_.CreateChannel(NULL);
1929 EXPECT_TRUE(channel != NULL);
1930 delete channel;
1931}
1932
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001933TEST_F(WebRtcVideoMediaChannelTest, SetRecvCodecs) {
1934 std::vector<cricket::VideoCodec> codecs;
1935 codecs.push_back(kVP8Codec);
1936 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1937}
1938TEST_F(WebRtcVideoMediaChannelTest, SetRecvCodecsWrongPayloadType) {
1939 std::vector<cricket::VideoCodec> codecs;
1940 codecs.push_back(kVP8Codec);
1941 codecs[0].id = 99;
1942 EXPECT_TRUE(channel_->SetRecvCodecs(codecs));
1943}
1944TEST_F(WebRtcVideoMediaChannelTest, SetRecvCodecsUnsupportedCodec) {
1945 std::vector<cricket::VideoCodec> codecs;
1946 codecs.push_back(kVP8Codec);
1947 codecs.push_back(cricket::VideoCodec(101, "VP1", 640, 400, 30, 0));
1948 EXPECT_FALSE(channel_->SetRecvCodecs(codecs));
1949}
1950
mallinath@webrtc.org92fdfeb2014-02-17 18:49:41 +00001951TEST_F(WebRtcVideoMediaChannelTest, GetRtpSendTimeExtension) {
1952 // Enable RTP timestamp extension.
1953 const int id = 12;
1954 std::vector<cricket::RtpHeaderExtension> extensions;
1955 extensions.push_back(cricket::RtpHeaderExtension(
1956 "http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time", id));
1957
1958 // Verify the send extension id.
1959 EXPECT_TRUE(channel_->SetSendRtpHeaderExtensions(extensions));
1960 EXPECT_EQ(id, channel_->GetRtpSendTimeExtnId());
1961}
1962
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001963TEST_F(WebRtcVideoMediaChannelTest, SetSend) {
1964 Base::SetSend();
1965}
1966TEST_F(WebRtcVideoMediaChannelTest, SetSendWithoutCodecs) {
1967 Base::SetSendWithoutCodecs();
1968}
1969TEST_F(WebRtcVideoMediaChannelTest, SetSendSetsTransportBufferSizes) {
1970 Base::SetSendSetsTransportBufferSizes();
1971}
1972
1973TEST_F(WebRtcVideoMediaChannelTest, SendAndReceiveVp8Vga) {
1974 SendAndReceive(cricket::VideoCodec(100, "VP8", 640, 400, 30, 0));
1975}
1976TEST_F(WebRtcVideoMediaChannelTest, SendAndReceiveVp8Qvga) {
1977 SendAndReceive(cricket::VideoCodec(100, "VP8", 320, 200, 30, 0));
1978}
1979TEST_F(WebRtcVideoMediaChannelTest, SendAndReceiveH264SvcQqvga) {
1980 SendAndReceive(cricket::VideoCodec(100, "VP8", 160, 100, 30, 0));
1981}
1982TEST_F(WebRtcVideoMediaChannelTest, SendManyResizeOnce) {
1983 SendManyResizeOnce();
1984}
1985
1986TEST_F(WebRtcVideoMediaChannelTest, SendVp8HdAndReceiveAdaptedVp8Vga) {
henrike@webrtc.org28654cb2013-07-22 21:07:49 +00001987 EXPECT_TRUE(channel_->SetCapturer(kSsrc, NULL));
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001988 channel_->UpdateAspectRatio(1280, 720);
1989 video_capturer_.reset(new cricket::FakeVideoCapturer);
1990 const std::vector<cricket::VideoFormat>* formats =
1991 video_capturer_->GetSupportedFormats();
1992 cricket::VideoFormat capture_format_hd = (*formats)[0];
1993 EXPECT_EQ(cricket::CS_RUNNING, video_capturer_->Start(capture_format_hd));
1994 EXPECT_TRUE(channel_->SetCapturer(kSsrc, video_capturer_.get()));
1995
1996 // Capture format HD -> adapt (OnOutputFormatRequest VGA) -> VGA.
1997 cricket::VideoCodec codec(100, "VP8", 1280, 720, 30, 0);
1998 EXPECT_TRUE(SetOneCodec(codec));
1999 codec.width /= 2;
2000 codec.height /= 2;
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002001 EXPECT_TRUE(SetSend(true));
2002 EXPECT_TRUE(channel_->SetRender(true));
2003 EXPECT_EQ(0, renderer_.num_rendered_frames());
2004 EXPECT_TRUE(SendFrame());
2005 EXPECT_FRAME_WAIT(1, codec.width, codec.height, kTimeout);
2006}
2007
2008// TODO(juberti): Fix this test to tolerate missing stats.
2009TEST_F(WebRtcVideoMediaChannelTest, DISABLED_GetStats) {
2010 Base::GetStats();
2011}
2012
2013// TODO(juberti): Fix this test to tolerate missing stats.
2014TEST_F(WebRtcVideoMediaChannelTest, DISABLED_GetStatsMultipleRecvStreams) {
2015 Base::GetStatsMultipleRecvStreams();
2016}
2017
2018TEST_F(WebRtcVideoMediaChannelTest, GetStatsMultipleSendStreams) {
2019 Base::GetStatsMultipleSendStreams();
2020}
2021
2022TEST_F(WebRtcVideoMediaChannelTest, SetSendBandwidth) {
2023 Base::SetSendBandwidth();
2024}
2025TEST_F(WebRtcVideoMediaChannelTest, SetSendSsrc) {
2026 Base::SetSendSsrc();
2027}
2028TEST_F(WebRtcVideoMediaChannelTest, SetSendSsrcAfterSetCodecs) {
2029 Base::SetSendSsrcAfterSetCodecs();
2030}
2031
2032TEST_F(WebRtcVideoMediaChannelTest, SetRenderer) {
2033 Base::SetRenderer();
2034}
2035
2036TEST_F(WebRtcVideoMediaChannelTest, AddRemoveRecvStreams) {
2037 Base::AddRemoveRecvStreams();
2038}
2039
2040TEST_F(WebRtcVideoMediaChannelTest, AddRemoveRecvStreamAndRender) {
2041 Base::AddRemoveRecvStreamAndRender();
2042}
2043
2044TEST_F(WebRtcVideoMediaChannelTest, AddRemoveRecvStreamsNoConference) {
2045 Base::AddRemoveRecvStreamsNoConference();
2046}
2047
2048TEST_F(WebRtcVideoMediaChannelTest, AddRemoveSendStreams) {
2049 Base::AddRemoveSendStreams();
2050}
2051
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002052TEST_F(WebRtcVideoMediaChannelTest, SimulateConference) {
2053 Base::SimulateConference();
2054}
2055
2056TEST_F(WebRtcVideoMediaChannelTest, AddRemoveCapturer) {
2057 Base::AddRemoveCapturer();
2058}
2059
2060TEST_F(WebRtcVideoMediaChannelTest, RemoveCapturerWithoutAdd) {
2061 Base::RemoveCapturerWithoutAdd();
2062}
2063
2064TEST_F(WebRtcVideoMediaChannelTest, AddRemoveCapturerMultipleSources) {
2065 Base::AddRemoveCapturerMultipleSources();
2066}
2067
wu@webrtc.orgde305012013-10-31 15:40:38 +00002068// This test verifies DSCP settings are properly applied on video media channel.
2069TEST_F(WebRtcVideoMediaChannelTest, TestSetDscpOptions) {
2070 talk_base::scoped_ptr<cricket::FakeNetworkInterface> network_interface(
2071 new cricket::FakeNetworkInterface);
2072 channel_->SetInterface(network_interface.get());
2073 cricket::VideoOptions options;
2074 options.dscp.Set(true);
2075 EXPECT_TRUE(channel_->SetOptions(options));
2076 EXPECT_EQ(talk_base::DSCP_AF41, network_interface->dscp());
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +00002077 // Verify previous value is not modified if dscp option is not set.
2078 cricket::VideoOptions options1;
2079 EXPECT_TRUE(channel_->SetOptions(options1));
2080 EXPECT_EQ(talk_base::DSCP_AF41, network_interface->dscp());
wu@webrtc.orgde305012013-10-31 15:40:38 +00002081 options.dscp.Set(false);
2082 EXPECT_TRUE(channel_->SetOptions(options));
2083 EXPECT_EQ(talk_base::DSCP_DEFAULT, network_interface->dscp());
2084 channel_->SetInterface(NULL);
2085}
2086
henrike@webrtc.org28e20752013-07-10 00:45:36 +00002087
2088TEST_F(WebRtcVideoMediaChannelTest, SetOptionsSucceedsWhenSending) {
2089 cricket::VideoOptions options;
2090 options.conference_mode.Set(true);
2091 EXPECT_TRUE(channel_->SetOptions(options));
2092
2093 // Verify SetOptions returns true on a different options.
2094 cricket::VideoOptions options2;
2095 options2.adapt_input_to_cpu_usage.Set(true);
2096 EXPECT_TRUE(channel_->SetOptions(options2));
2097
2098 // Set send codecs on the channel and start sending.
2099 std::vector<cricket::VideoCodec> codecs;
2100 codecs.push_back(kVP8Codec);
2101 EXPECT_TRUE(channel_->SetSendCodecs(codecs));
2102 EXPECT_TRUE(channel_->SetSend(true));
2103
2104 // Verify SetOptions returns true if channel is already sending.
2105 cricket::VideoOptions options3;
2106 options3.conference_mode.Set(true);
2107 EXPECT_TRUE(channel_->SetOptions(options3));
2108}
2109
2110// Tests empty StreamParams is rejected.
2111TEST_F(WebRtcVideoMediaChannelTest, RejectEmptyStreamParams) {
2112 Base::RejectEmptyStreamParams();
2113}
2114
2115
2116TEST_F(WebRtcVideoMediaChannelTest, AdaptResolution16x10) {
2117 Base::AdaptResolution16x10();
2118}
2119
2120TEST_F(WebRtcVideoMediaChannelTest, AdaptResolution4x3) {
2121 Base::AdaptResolution4x3();
2122}
2123
2124TEST_F(WebRtcVideoMediaChannelTest, MuteStream) {
2125 Base::MuteStream();
2126}
2127
2128TEST_F(WebRtcVideoMediaChannelTest, MultipleSendStreams) {
2129 Base::MultipleSendStreams();
2130}
2131
2132// TODO(juberti): Restore this test once we support sending 0 fps.
2133TEST_F(WebRtcVideoMediaChannelTest, DISABLED_AdaptDropAllFrames) {
2134 Base::AdaptDropAllFrames();
2135}
2136// TODO(juberti): Understand why we get decode errors on this test.
2137TEST_F(WebRtcVideoMediaChannelTest, DISABLED_AdaptFramerate) {
2138 Base::AdaptFramerate();
2139}
2140
2141TEST_F(WebRtcVideoMediaChannelTest, SetSendStreamFormat0x0) {
2142 Base::SetSendStreamFormat0x0();
2143}
2144
2145// TODO(zhurunz): Fix the flakey test.
2146TEST_F(WebRtcVideoMediaChannelTest, DISABLED_SetSendStreamFormat) {
2147 Base::SetSendStreamFormat();
2148}
2149
2150TEST_F(WebRtcVideoMediaChannelTest, TwoStreamsSendAndReceive) {
2151 Base::TwoStreamsSendAndReceive(cricket::VideoCodec(100, "VP8", 640, 400, 30,
2152 0));
2153}
2154
2155TEST_F(WebRtcVideoMediaChannelTest, TwoStreamsReUseFirstStream) {
2156 Base::TwoStreamsReUseFirstStream(cricket::VideoCodec(100, "VP8", 640, 400, 30,
2157 0));
2158}
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002159
henrike@webrtc.org18e59112014-03-14 17:19:38 +00002160TEST_F(WebRtcVideoMediaChannelTest, TwoStreamsSendAndUnsignalledRecv) {
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002161 Base::TwoStreamsSendAndUnsignalledRecv(cricket::VideoCodec(100, "VP8", 640,
2162 400, 30, 0));
2163}
2164
henrike@webrtc.org806768a2014-02-27 21:03:09 +00002165TEST_F(WebRtcVideoMediaChannelTest,
henrike@webrtc.org18e59112014-03-14 17:19:38 +00002166 TwoStreamsSendAndFailUnsignalledRecv) {
henrike@webrtc.org806768a2014-02-27 21:03:09 +00002167 webrtc::Trace::set_level_filter(webrtc::kTraceAll);
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002168 Base::TwoStreamsSendAndFailUnsignalledRecv(
2169 cricket::VideoCodec(100, "VP8", 640, 400, 30, 0));
2170}
2171
2172TEST_F(WebRtcVideoMediaChannelTest,
henrike@webrtc.org18e59112014-03-14 17:19:38 +00002173 TwoStreamsSendAndFailUnsignalledRecvInOneToOne) {
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002174 Base::TwoStreamsSendAndFailUnsignalledRecvInOneToOne(
2175 cricket::VideoCodec(100, "VP8", 640, 400, 30, 0));
2176}
2177
2178TEST_F(WebRtcVideoMediaChannelTest,
henrike@webrtc.org18e59112014-03-14 17:19:38 +00002179 TwoStreamsAddAndRemoveUnsignalledRecv) {
henrike@webrtc.org704bf9e2014-02-27 17:52:04 +00002180 Base::TwoStreamsAddAndRemoveUnsignalledRecv(cricket::VideoCodec(100, "VP8",
2181 640, 400, 30,
2182 0));
2183}