forked from wang-bin/QtAV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenGLVideo.cpp
235 lines (209 loc) · 7.4 KB
/
OpenGLVideo.cpp
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/******************************************************************************
QtAV: Media play library based on Qt and FFmpeg
Copyright (C) 2014-2015 Wang Bin <[email protected]>
* This file is part of QtAV
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
******************************************************************************/
#include "QtAV/OpenGLVideo.h"
#include <QtGui/QColor>
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
#include <QtGui/QOpenGLShaderProgram>
#include <QtGui/QOpenGLFunctions>
#include <QtGui/QSurface>
#else
#include <QtOpenGL/QGLShaderProgram>
#include <QtOpenGL/QGLFunctions>
#define QOpenGLShaderProgram QGLShaderProgram
#define QOpenGLShader QGLShader
#define QOpenGLFunctions QGLFunctions
#endif
#include "QtAV/SurfaceInterop.h"
#include "QtAV/VideoShader.h"
#include "ShaderManager.h"
#include "utils/Logger.h"
namespace QtAV {
// FIXME: why crash if inherits both QObject and DPtrPrivate?
class OpenGLVideoPrivate : public DPtrPrivate<OpenGLVideo>
{
public:
OpenGLVideoPrivate()
: ctx(0)
, manager(0)
, material(new VideoMaterial())
, valiad_tex_width(1.0)
{}
~OpenGLVideoPrivate() {
if (material) {
delete material;
material = 0;
}
}
void resetGL() {
ctx = 0;
if (!manager)
return;
manager->setParent(0);
delete manager;
manager = 0;
if (material) {
delete material;
material = new VideoMaterial();
}
}
public:
QOpenGLContext *ctx;
ShaderManager *manager;
VideoMaterial *material;
qreal valiad_tex_width;
QRectF target;
QRectF roi; //including invalid padding width
TexturedGeometry geometry;
QRectF rect;
QMatrix4x4 matrix;
};
OpenGLVideo::OpenGLVideo() {}
bool OpenGLVideo::isSupported(VideoFormat::PixelFormat pixfmt)
{
return pixfmt != VideoFormat::Format_YUYV && pixfmt != VideoFormat::Format_UYVY
&& pixfmt != VideoFormat::Format_RGB48BE;
}
// TODO: set surface/device size here (viewport?)
void OpenGLVideo::setOpenGLContext(QOpenGLContext *ctx)
{
DPTR_D(OpenGLVideo);
if (!ctx) {
d.resetGL();
return;
}
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
d.manager = ctx->findChild<ShaderManager*>(QStringLiteral("__qtav_shader_manager"));
QSizeF surfaceSize = QOpenGLContext::currentContext()->surface()->size();
#else
d.resetGL();
QSizeF surfaceSize = QSizeF(ctx->device()->width(), ctx->device()->height());
#endif
d.ctx = ctx; // Qt4: set to null in resetGL()
setProjectionMatrixToRect(QRectF(QPointF(), surfaceSize));
if (d.manager)
return;
// TODO: what if ctx is delete?
d.manager = new ShaderManager(ctx);
d.manager->setObjectName(QStringLiteral("__qtav_shader_manager"));
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
QObject::connect(ctx, SIGNAL(aboutToBeDestroyed()), this, SLOT(resetGL()), Qt::DirectConnection); //direct?
#endif
}
QOpenGLContext* OpenGLVideo::openGLContext()
{
return d_func().ctx;
}
void OpenGLVideo::setCurrentFrame(const VideoFrame &frame)
{
d_func().material->setCurrentFrame(frame);
}
void OpenGLVideo::setProjectionMatrixToRect(const QRectF &v)
{
DPTR_D(OpenGLVideo);
d.rect = v;
d.matrix.setToIdentity();
d.matrix.ortho(v);
// Mirrored relative to the usual Qt coordinate system with origin in the top left corner.
//mirrored = mat(0, 0) * mat(1, 1) - mat(0, 1) * mat(1, 0) > 0;
}
void OpenGLVideo::setProjectionMatrix(const QMatrix4x4 &matrix)
{
d_func().matrix = matrix;
}
void OpenGLVideo::setBrightness(qreal value)
{
d_func().material->setBrightness(value);
}
void OpenGLVideo::setContrast(qreal value)
{
d_func().material->setContrast(value);
}
void OpenGLVideo::setHue(qreal value)
{
d_func().material->setHue(value);
}
void OpenGLVideo::setSaturation(qreal value)
{
d_func().material->setSaturation(value);
}
void OpenGLVideo::fill(const QColor &color)
{
#ifndef QT_OPENGL_DYNAMIC
glClearColor(color.red(), color.green(), color.blue(), color.alpha());
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
#else
QOpenGLContext::currentContext()->functions()->glClearColor(color.red(), color.green(), color.blue(), color.alpha());
QOpenGLContext::currentContext()->functions()->glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
#endif
}
void OpenGLVideo::render(const QRectF &target, const QRectF& roi, const QMatrix4x4& transform)
{
DPTR_D(OpenGLVideo);
Q_ASSERT(d.manager);
VideoShader *shader = d.manager->prepareMaterial(d.material);
shader->update(d.material);
shader->program()->setUniformValue(shader->opacityLocation(), (GLfloat)1.0);
shader->program()->setUniformValue(shader->matrixLocation(), transform*d.matrix);
// uniform end. attribute begin
if (d.target.isValid()) {
if (d.target != target || d.roi != roi || d.valiad_tex_width != d.material->validTextureWidth()) {
d.target = target;
d.roi = roi;
d.valiad_tex_width = d.material->validTextureWidth();
d.geometry.setRect(target, d.material->normalizedROI(roi));
}
} else {
d.geometry.setRect(d.rect, d.material->normalizedROI(roi));
}
// normalize?
shader->program()->setAttributeArray(0, GL_FLOAT, d.geometry.data(0), 2, d.geometry.stride());
shader->program()->setAttributeArray(1, GL_FLOAT, d.geometry.data(1), 2, d.geometry.stride());
char const *const *attr = shader->attributeNames();
for (int i = 0; attr[i]; ++i) {
shader->program()->enableAttributeArray(i); //TODO: in setActiveShader
}
const bool blending = d.material->hasAlpha();
// for dynamicgl. qglfunctions before qt5.3 does not have portable gl functions
#ifndef QT_OPENGL_DYNAMIC
if (blending) {
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA , GL_ONE_MINUS_SRC_ALPHA);
}
glDrawArrays(d.geometry.mode(), 0, d.geometry.vertexCount());
if (blending)
glDisable(GL_BLEND);
#else
if (blending) {
QOpenGLContext::currentContext()->functions()->glEnable(GL_BLEND);
QOpenGLContext::currentContext()->functions()->glBlendFunc(GL_SRC_ALPHA , GL_ONE_MINUS_SRC_ALPHA);
}
QOpenGLContext::currentContext()->functions()->glDrawArrays(d.geometry.mode(), 0, d.geometry.vertexCount());
if (blending)
QOpenGLContext::currentContext()->functions()->glDisable(GL_BLEND);
#endif
// d.shader->program()->release(); //glUseProgram(0)
for (int i = 0; attr[i]; ++i) {
shader->program()->disableAttributeArray(i); //TODO: in setActiveShader
}
d.material->unbind();
}
void OpenGLVideo::resetGL()
{
qDebug("~~~~~~~~~resetGL %p. from sender %p", d_func().manager, sender());
d_func().resetGL();
}
} //namespace QtAV