1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/video/capture/fake_video_capture_device.h"
#include <string>
#include "base/bind.h"
#include "base/memory/scoped_ptr.h"
#include "base/stringprintf.h"
namespace media {
static const int kFakeCaptureTimeoutMs = 100;
enum { kNumberOfFakeDevices = 2 };
void FakeVideoCaptureDevice::GetDeviceNames(Names* const device_names) {
// Empty the name list.
device_names->erase(device_names->begin(), device_names->end());
for (int n = 0; n < kNumberOfFakeDevices; n++) {
Name name;
name.unique_id = StringPrintf("/dev/video%d", n);
name.device_name = StringPrintf("fake_device_%d", n);
device_names->push_back(name);
}
}
VideoCaptureDevice* FakeVideoCaptureDevice::Create(const Name& device_name) {
for (int n = 0; n < kNumberOfFakeDevices; ++n) {
std::string possible_id = StringPrintf("/dev/video%d", n);
if (device_name.unique_id.compare(possible_id) == 0) {
return new FakeVideoCaptureDevice(device_name);
}
}
return NULL;
}
FakeVideoCaptureDevice::FakeVideoCaptureDevice(const Name& device_name)
: device_name_(device_name),
observer_(NULL),
state_(kIdle),
capture_thread_("CaptureThread") {
}
FakeVideoCaptureDevice::~FakeVideoCaptureDevice() {
// Check if the thread is running.
// This means that the device have not been DeAllocated properly.
DCHECK(!capture_thread_.IsRunning());
}
void FakeVideoCaptureDevice::Allocate(int width,
int height,
int frame_rate,
EventHandler* observer) {
if (state_ != kIdle) {
return; // Wrong state.
}
observer_ = observer;
Capability current_settings;
current_settings.color = kI420;
if (width > 320) { // VGA
current_settings.width = 640;
current_settings.height = 480;
current_settings.frame_rate = 30;
} else { // QVGA
current_settings.width = 320;
current_settings.height = 240;
current_settings.frame_rate = 30;
}
size_t fake_frame_size =
current_settings.width * current_settings.height * 3 / 2;
fake_frame_.reset(new uint8[fake_frame_size]);
memset(fake_frame_.get(), 0, fake_frame_size);
state_ = kAllocated;
observer_->OnFrameInfo(current_settings);
}
void FakeVideoCaptureDevice::Start() {
if (state_ != kAllocated) {
return; // Wrong state.
}
state_ = kCapturing;
capture_thread_.Start();
capture_thread_.message_loop()->PostTask(
FROM_HERE,
base::Bind(&FakeVideoCaptureDevice::OnCaptureTask,
base::Unretained(this)));
}
void FakeVideoCaptureDevice::Stop() {
if (state_ != kCapturing) {
return; // Wrong state.
}
capture_thread_.Stop();
state_ = kAllocated;
}
void FakeVideoCaptureDevice::DeAllocate() {
if (state_ != kAllocated && state_ != kCapturing) {
return; // Wrong state.
}
capture_thread_.Stop();
state_ = kIdle;
}
const VideoCaptureDevice::Name& FakeVideoCaptureDevice::device_name() {
return device_name_;
}
void FakeVideoCaptureDevice::OnCaptureTask() {
if (state_ != kCapturing) {
return;
}
// Give the captured frame to the observer.
observer_->OnIncomingCapturedFrame(fake_frame_.get(),
sizeof(fake_frame_.get()),
base::Time::Now());
// Reschedule next CaptureTask.
capture_thread_.message_loop()->PostDelayedTask(
FROM_HERE,
base::Bind(&FakeVideoCaptureDevice::OnCaptureTask,
base::Unretained(this)),
kFakeCaptureTimeoutMs);
}
} // namespace media
|