blob: 709ec5bb8d3b95b633357a53ed982281f4448ebb [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
2 * libjingle
jlmiller@webrtc.org5f93d0a2015-01-20 21:36:13 +00003 * Copyright 2012 Google Inc.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00004 *
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/media/base/capturemanager.h"
29
henrike@webrtc.org28e20752013-07-10 00:45:36 +000030#include "talk/media/base/fakevideocapturer.h"
31#include "talk/media/base/fakevideorenderer.h"
tfarina5237aaf2015-11-10 23:44:30 -080032#include "webrtc/base/arraysize.h"
buildbot@webrtc.orga09a9992014-08-13 17:26:08 +000033#include "webrtc/base/gunit.h"
34#include "webrtc/base/sigslot.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000035
36const int kMsCallbackWait = 50;
37
38const int kFps = 30;
39const cricket::VideoFormatPod kCameraFormats[] = {
40 {640, 480, cricket::VideoFormat::FpsToInterval(kFps), cricket::FOURCC_I420},
41 {320, 240, cricket::VideoFormat::FpsToInterval(kFps), cricket::FOURCC_I420}
42};
43
44class CaptureManagerTest : public ::testing::Test, public sigslot::has_slots<> {
45 public:
46 CaptureManagerTest()
47 : capture_manager_(),
48 callback_count_(0),
49 format_vga_(kCameraFormats[0]),
50 format_qvga_(kCameraFormats[1]) {
51 }
52 virtual void SetUp() {
53 PopulateSupportedFormats();
54 capture_state_ = cricket::CS_STOPPED;
55 capture_manager_.SignalCapturerStateChange.connect(
56 this,
57 &CaptureManagerTest::OnCapturerStateChange);
58 }
59 void PopulateSupportedFormats() {
60 std::vector<cricket::VideoFormat> formats;
tfarina5237aaf2015-11-10 23:44:30 -080061 for (int i = 0; i < arraysize(kCameraFormats); ++i) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000062 formats.push_back(cricket::VideoFormat(kCameraFormats[i]));
63 }
64 video_capturer_.ResetSupportedFormats(formats);
65 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +000066 int NumFramesRendered() { return video_renderer_.num_rendered_frames(); }
67 bool WasRenderedResolution(cricket::VideoFormat format) {
68 return format.width == video_renderer_.width() &&
69 format.height == video_renderer_.height();
70 }
71 cricket::CaptureState capture_state() { return capture_state_; }
72 int callback_count() { return callback_count_; }
73 void OnCapturerStateChange(cricket::VideoCapturer* capturer,
74 cricket::CaptureState capture_state) {
75 capture_state_ = capture_state;
76 ++callback_count_;
77 }
78
79 protected:
henrike@webrtc.org28e20752013-07-10 00:45:36 +000080 cricket::FakeVideoCapturer video_capturer_;
81 cricket::FakeVideoRenderer video_renderer_;
82
83 cricket::CaptureManager capture_manager_;
84
85 cricket::CaptureState capture_state_;
86 int callback_count_;
87 cricket::VideoFormat format_vga_;
88 cricket::VideoFormat format_qvga_;
89};
90
91// Incorrect use cases.
nisse2098fca2016-01-27 06:12:49 -080092TEST_F(CaptureManagerTest, InvalidCallOrder) {
93 // Capturer must be registered before any of these calls.
94 EXPECT_FALSE(capture_manager_.AddVideoRenderer(&video_capturer_,
95 &video_renderer_));
96}
97
henrike@webrtc.org28e20752013-07-10 00:45:36 +000098TEST_F(CaptureManagerTest, InvalidAddingRemoving) {
99 EXPECT_FALSE(capture_manager_.StopVideoCapture(&video_capturer_,
100 cricket::VideoFormat()));
101 EXPECT_TRUE(capture_manager_.StartVideoCapture(&video_capturer_,
102 format_vga_));
103 EXPECT_EQ_WAIT(cricket::CS_RUNNING, capture_state(), kMsCallbackWait);
104 EXPECT_EQ(1, callback_count());
nisse2098fca2016-01-27 06:12:49 -0800105 EXPECT_FALSE(capture_manager_.AddVideoRenderer(&video_capturer_, NULL));
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000106 EXPECT_TRUE(capture_manager_.StopVideoCapture(&video_capturer_, format_vga_));
107}
108
109// Valid use cases
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000110TEST_F(CaptureManagerTest, KeepFirstResolutionHigh) {
111 EXPECT_TRUE(capture_manager_.StartVideoCapture(&video_capturer_,
112 format_vga_));
113 EXPECT_EQ_WAIT(cricket::CS_RUNNING, capture_state(), kMsCallbackWait);
114 EXPECT_EQ(1, callback_count());
nisse2098fca2016-01-27 06:12:49 -0800115 EXPECT_TRUE(capture_manager_.AddVideoRenderer(&video_capturer_,
116 &video_renderer_));
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000117 EXPECT_TRUE(video_capturer_.CaptureFrame());
118 EXPECT_EQ(1, NumFramesRendered());
119 // Renderer should be fed frames with the resolution of format_vga_.
120 EXPECT_TRUE(WasRenderedResolution(format_vga_));
121
122 // Start again with one more format.
123 EXPECT_TRUE(capture_manager_.StartVideoCapture(&video_capturer_,
124 format_qvga_));
125 // Existing renderers should be fed frames with the resolution of format_vga_.
126 EXPECT_TRUE(video_capturer_.CaptureFrame());
127 EXPECT_TRUE(WasRenderedResolution(format_vga_));
128 EXPECT_TRUE(capture_manager_.StopVideoCapture(&video_capturer_, format_vga_));
129 EXPECT_TRUE(capture_manager_.StopVideoCapture(&video_capturer_,
130 format_qvga_));
131 EXPECT_FALSE(capture_manager_.StopVideoCapture(&video_capturer_,
132 format_vga_));
133 EXPECT_FALSE(capture_manager_.StopVideoCapture(&video_capturer_,
134 format_qvga_));
135}
136
137// Should pick the lowest resolution as the highest resolution is not chosen
138// until after capturing has started. This ensures that no particular resolution
139// is favored over others.
140TEST_F(CaptureManagerTest, KeepFirstResolutionLow) {
141 EXPECT_TRUE(capture_manager_.StartVideoCapture(&video_capturer_,
142 format_qvga_));
143 EXPECT_TRUE(capture_manager_.StartVideoCapture(&video_capturer_,
144 format_vga_));
nisse2098fca2016-01-27 06:12:49 -0800145 EXPECT_TRUE(capture_manager_.AddVideoRenderer(&video_capturer_,
146 &video_renderer_));
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000147 EXPECT_EQ_WAIT(1, callback_count(), kMsCallbackWait);
148 EXPECT_TRUE(video_capturer_.CaptureFrame());
149 EXPECT_EQ(1, NumFramesRendered());
150 EXPECT_TRUE(WasRenderedResolution(format_qvga_));
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000151 EXPECT_TRUE(capture_manager_.StopVideoCapture(&video_capturer_,
152 format_qvga_));
153 EXPECT_TRUE(capture_manager_.StopVideoCapture(&video_capturer_,
154 format_vga_));
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000155}
156
157// Ensure that the reference counting is working when multiple start and
158// multiple stop calls are made.
159TEST_F(CaptureManagerTest, MultipleStartStops) {
160 EXPECT_TRUE(capture_manager_.StartVideoCapture(&video_capturer_,
161 format_vga_));
162 // Add video capturer but with different format.
163 EXPECT_TRUE(capture_manager_.StartVideoCapture(&video_capturer_,
164 format_qvga_));
165 EXPECT_EQ_WAIT(cricket::CS_RUNNING, capture_state(), kMsCallbackWait);
166 EXPECT_EQ(1, callback_count());
nisse2098fca2016-01-27 06:12:49 -0800167 EXPECT_TRUE(capture_manager_.AddVideoRenderer(&video_capturer_,
168 &video_renderer_));
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000169 // Ensure that a frame can be captured when two start calls have been made.
170 EXPECT_TRUE(video_capturer_.CaptureFrame());
171 EXPECT_EQ(1, NumFramesRendered());
172
173 EXPECT_TRUE(capture_manager_.StopVideoCapture(&video_capturer_, format_vga_));
174 // Video should still render since there has been two start calls but only
175 // one stop call.
176 EXPECT_TRUE(video_capturer_.CaptureFrame());
177 EXPECT_EQ(2, NumFramesRendered());
178
179 EXPECT_TRUE(capture_manager_.StopVideoCapture(&video_capturer_,
180 format_qvga_));
181 EXPECT_EQ_WAIT(cricket::CS_STOPPED, capture_state(), kMsCallbackWait);
182 EXPECT_EQ(2, callback_count());
183 // Last stop call should fail as it is one more than the number of start
184 // calls.
185 EXPECT_FALSE(capture_manager_.StopVideoCapture(&video_capturer_,
186 format_vga_));
187}
188
189TEST_F(CaptureManagerTest, TestForceRestart) {
190 EXPECT_TRUE(capture_manager_.StartVideoCapture(&video_capturer_,
191 format_qvga_));
nisse2098fca2016-01-27 06:12:49 -0800192 EXPECT_TRUE(capture_manager_.AddVideoRenderer(&video_capturer_,
193 &video_renderer_));
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000194 EXPECT_EQ_WAIT(1, callback_count(), kMsCallbackWait);
195 EXPECT_TRUE(video_capturer_.CaptureFrame());
196 EXPECT_EQ(1, NumFramesRendered());
197 EXPECT_TRUE(WasRenderedResolution(format_qvga_));
198 // Now restart with vga.
199 EXPECT_TRUE(capture_manager_.RestartVideoCapture(
200 &video_capturer_, format_qvga_, format_vga_,
201 cricket::CaptureManager::kForceRestart));
202 EXPECT_TRUE(video_capturer_.CaptureFrame());
203 EXPECT_EQ(2, NumFramesRendered());
204 EXPECT_TRUE(WasRenderedResolution(format_vga_));
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000205 EXPECT_TRUE(capture_manager_.StopVideoCapture(&video_capturer_,
206 format_vga_));
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000207}
208
209TEST_F(CaptureManagerTest, TestRequestRestart) {
210 EXPECT_TRUE(capture_manager_.StartVideoCapture(&video_capturer_,
211 format_vga_));
nisse2098fca2016-01-27 06:12:49 -0800212 EXPECT_TRUE(capture_manager_.AddVideoRenderer(&video_capturer_,
213 &video_renderer_));
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000214 EXPECT_EQ_WAIT(1, callback_count(), kMsCallbackWait);
215 EXPECT_TRUE(video_capturer_.CaptureFrame());
216 EXPECT_EQ(1, NumFramesRendered());
217 EXPECT_TRUE(WasRenderedResolution(format_vga_));
218 // Now request restart with qvga.
219 EXPECT_TRUE(capture_manager_.RestartVideoCapture(
220 &video_capturer_, format_vga_, format_qvga_,
221 cricket::CaptureManager::kRequestRestart));
222 EXPECT_TRUE(video_capturer_.CaptureFrame());
223 EXPECT_EQ(2, NumFramesRendered());
224 EXPECT_TRUE(WasRenderedResolution(format_vga_));
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000225 EXPECT_TRUE(capture_manager_.StopVideoCapture(&video_capturer_,
226 format_qvga_));
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000227}