-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGetFrame.cpp
More file actions
executable file
·93 lines (81 loc) · 2.6 KB
/
GetFrame.cpp
File metadata and controls
executable file
·93 lines (81 loc) · 2.6 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
#include "GetFrame.h"
#include <QtWidgets>
#include <qvideosurfaceformat.h>
myQAbstractVideoSurface::myQAbstractVideoSurface(QObject *parent)
: QAbstractVideoSurface(parent)
, imageFormat(QImage::Format_Invalid)
{
}
QList<QVideoFrame::PixelFormat> myQAbstractVideoSurface::supportedPixelFormats(QAbstractVideoBuffer::HandleType handleType) const
{
if (handleType == QAbstractVideoBuffer::NoHandle) {
return QList<QVideoFrame::PixelFormat>()
<< QVideoFrame::Format_RGB32
<< QVideoFrame::Format_ARGB32
<< QVideoFrame::Format_ARGB32_Premultiplied
<< QVideoFrame::Format_RGB565
<< QVideoFrame::Format_RGB555;
}
else
{
return QList<QVideoFrame::PixelFormat>();
}
}
bool myQAbstractVideoSurface::isFormatSupported(const QVideoSurfaceFormat &format) const
{
QImage::Format imageFormat = QVideoFrame::imageFormatFromPixelFormat(format.pixelFormat());
QSize size = format.frameSize();
return imageFormat != QImage::Format_Invalid && !size.isEmpty() && format.handleType() == QAbstractVideoBuffer::NoHandle;
}
bool myQAbstractVideoSurface::start(const QVideoSurfaceFormat &format)
{
QImage::Format imageFormat = QVideoFrame::imageFormatFromPixelFormat(format.pixelFormat());
QSize size = format.frameSize();
if (imageFormat != QImage::Format_Invalid && !size.isEmpty())
{
this->imageFormat = imageFormat;
QAbstractVideoSurface::start(format);
return true;
}
else return false;
}
void myQAbstractVideoSurface::stop()
{
QAbstractVideoSurface::stop();
}
void myQAbstractVideoSurface::fnClearPixmap()
{
imageCaptured = QPixmap();
}
bool myQAbstractVideoSurface::present(const QVideoFrame &frame)
{
if (surfaceFormat().pixelFormat() != frame.pixelFormat() || surfaceFormat().frameSize() != frame.size())
{
setError(IncorrectFormatError);
stop();
return false;
}
else
{
if (!imageCaptured.isNull())
{
fnSurfaceStopped(imageCaptured);
}
currentFrame = frame;
if (currentFrame.map(QAbstractVideoBuffer::ReadOnly))
{
QImage image(
currentFrame.bits(),
currentFrame.width(),
currentFrame.height(),
currentFrame.bytesPerLine(),
imageFormat);
if (imageCaptured.isNull())
{
imageCaptured = QPixmap::fromImage(image.copy(image.rect()));
}
currentFrame.unmap();
}
return true;
}
}