-
-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathCameraImpl.cpp
More file actions
110 lines (92 loc) · 2.51 KB
/
Copy pathCameraImpl.cpp
File metadata and controls
110 lines (92 loc) · 2.51 KB
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
/*
* CameraImpl.cpp
*
* (c) 2019 Dame Diongue -- baydamd(@)gmail(.)com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "CameraImpl.h"
#include <QMessageBox>
#include <QDebug>
namespace mmp {
CameraImpl::CameraImpl()
: _camera(nullptr),
_captureSession(nullptr),
_cameraSurface(nullptr)
{
}
CameraImpl::~CameraImpl()
{
freeResources();
}
void CameraImpl::freeResources()
{
if (_camera)
_camera->stop();
delete _camera;
_camera = nullptr;
delete _captureSession;
_captureSession = nullptr;
delete _cameraSurface;
_cameraSurface = nullptr;
VideoImpl::freeResources();
}
bool CameraImpl::loadMovie(const QString &deviceId)
{
VideoImpl::loadMovie(deviceId);
// Release any previously-opened device before re-acquiring.
freeResources();
// Find the camera device matching the given ID.
QCameraDevice dev;
for (const QCameraDevice& d : QMediaDevices::videoInputs()) {
if (QString::fromUtf8(d.id()) == deviceId) {
dev = d;
break;
}
}
if (dev.isNull()) {
// Fall back to default camera.
dev = QMediaDevices::defaultVideoInput();
if (dev.isNull()) {
qWarning() << "No camera available for device:" << deviceId;
return false;
}
}
_cameraSurface = new CameraSurface();
_camera = new QCamera(dev);
_captureSession = new QMediaCaptureSession();
_captureSession->setCamera(_camera);
_captureSession->setVideoSink(_cameraSurface->videoSink());
_camera->start();
if (!_camera->isActive()) {
qWarning() << "Failed to start camera.";
return false;
}
_videoIsConnected = true;
_setMovieReady(true);
return true;
}
int CameraImpl::getWidth() const
{
return _cameraSurface ? _cameraSurface->frameWidth() : -1;
}
int CameraImpl::getHeight() const
{
return _cameraSurface ? _cameraSurface->frameHeight() : -1;
}
const uchar* CameraImpl::getBits()
{
return _cameraSurface ? _cameraSurface->bits() : nullptr;
}
}