-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathQMDKWindow.cpp
194 lines (177 loc) · 4.64 KB
/
QMDKWindow.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
/*
* Copyright (c) 2016-2025 WangBin <wbsecg1 at gmail.com>
* MDK SDK with QOpenGLWindow example
*/
#include "QMDKWindow.h"
#include "mdk/Player.h"
#include <QCoreApplication>
#include <QDebug>
#include <QDir>
#include <QKeyEvent>
#include <QStringList>
#include <QScreen>
#include <QGuiApplication>
#if __has_include(<QX11Info>)
#include <QX11Info>
#endif
#if defined(Q_OS_ANDROID)
# if __has_include(<QAndroidJniEnvironment>)
# include <QAndroidJniEnvironment>
# endif
# if __has_include(<QtCore/QJniEnvironment>)
# include <QtCore/QJniEnvironment>
# endif
#endif
#include <mutex>
using namespace MDK_NS;
static void InitEnv()
{
#ifdef QX11INFO_X11_H
SetGlobalOption("X11Display", QX11Info::display());
qDebug("X11 display: %p", QX11Info::display());
#elif (QT_FEATURE_xcb + 0 == 1) && (QT_VERSION >= QT_VERSION_CHECK(6, 2, 0))
const auto x = qGuiApp->nativeInterface<QNativeInterface::QX11Application>();
if (x) {
const auto xdisp = x->display();
SetGlobalOption("X11Display", xdisp);
qDebug("X11 display: %p", xdisp);
}
#endif
#ifdef QJNI_ENVIRONMENT_H
SetGlobalOption("JavaVM", QJniEnvironment::javaVM());
#endif
#ifdef QANDROIDJNIENVIRONMENT_H
SetGlobalOption("JavaVM", QAndroidJniEnvironment::javaVM());
#endif
}
QMDKWindow::QMDKWindow(QWindow *parent)
: QOpenGLWindow(NoPartialUpdate, parent)
, player_(std::make_shared<Player>())
{
static std::once_flag initFlag;
std::call_once(initFlag, InitEnv);
player_->setDecoders(MediaType::Video, {
#if (__APPLE__+0)
"VT",
"hap",
#elif (__ANDROID__+0)
"AMediaCodec:java=0:copy=0:surface=1:async=0",
#elif (_WIN32+0)
"MFT:d3d=11",
"CUDA",
"hap",
"D3D11",
"DXVA",
#elif (__linux__+0)
"hap",
"VAAPI",
"VDPAU",
"CUDA",
#endif
"FFmpeg"});
player_->setRenderCallback([this](void*){
QCoreApplication::instance()->postEvent(this, new QEvent(QEvent::UpdateRequest), INT_MAX);
});
}
QMDKWindow::~QMDKWindow()
{
makeCurrent();
player_->setVideoSurfaceSize(-1, -1); // cleanup gl renderer resources
}
void QMDKWindow::setDecoders(const QStringList &dec)
{
std::vector<std::string> v;
foreach (QString d, dec) {
v.push_back(d.toStdString());
}
player_->setDecoders(MediaType::Video, v);
}
void QMDKWindow::setMedia(const QString &url)
{
player_->setMedia(url.toUtf8().constData());
}
void QMDKWindow::play()
{
player_->set(State::Playing);
}
void QMDKWindow::pause()
{
player_->set(State::Paused);
}
void QMDKWindow::stop()
{
player_->set(State::Stopped);
}
bool QMDKWindow::isPaused() const
{
return player_->state() == State::Paused;
}
void QMDKWindow::seek(qint64 ms)
{
player_->seek(ms);
}
qint64 QMDKWindow::position() const
{
return player_->position();
}
void QMDKWindow::snapshot() {
Player::SnapshotRequest sr{};
player_->snapshot(&sr, [](const Player::SnapshotRequest */*_sr*/, double frameTime) {
const QString path = QDir::toNativeSeparators(
QString("%1/%2.png")
.arg(QCoreApplication::applicationDirPath())
.arg(frameTime));
return path.toStdString();
// Here's how to convert SnapshotRequest to QImage and save it to disk.
/*if (_sr) {
const QImage img = QImage(_sr->data, _sr->width, _sr->height,
QImage::Format_RGBA8888);
if (img.save(path)) {
qDebug() << "Snapshot saved:" << path;
} else {
qDebug() << "Failed to save:" << path;
}
} else {
qDebug() << "Snapshot failed.";
}
return "";*/
});
}
void QMDKWindow::resizeGL(int w, int h)
{
auto s = screen();
qDebug("resizeGL>>>>>dpr: %f, logical dpi: (%f,%f), phy dpi: (%f,%f)", s->devicePixelRatio(), s->logicalDotsPerInchX(), s->logicalDotsPerInchY(), s->physicalDotsPerInchX(), s->physicalDotsPerInchY());
player_->setVideoSurfaceSize(w*devicePixelRatio(), h*devicePixelRatio());
}
void QMDKWindow::paintGL()
{
player_->renderVideo();
}
void QMDKWindow::keyPressEvent(QKeyEvent *e)
{
switch (e->key()) {
case Qt::Key_Space: {
if (isPaused())
play();
else
pause();
}
break;
case Qt::Key_Right:
seek(position() + 10000);
break;
case Qt::Key_Left:
seek(position() - 10000);
break;
case Qt::Key_Q:
qApp->quit();
break;
case Qt::Key_C:
if (QKeySequence(e->modifiers() | e->key()) == QKeySequence::Copy) {
snapshot();
}
break;
default:
break;
}
}