-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathqtpaintonvideo.cpp
53 lines (49 loc) · 1.39 KB
/
qtpaintonvideo.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
/*
* Copyright (c) 2018 WangBin <wbsecg1 at gmail.com>
*/
#include "QMDKPlayer.h"
#include "QMDKRenderer.h"
#include <QApplication>
#include <QFont>
#include <QOpenGLPaintDevice>
#include <QPainter>
class PaintVideoWidget : public QMDKWidgetRenderer {
protected:
void beforeGL() override {
painter_.begin(this);
painter_.beginNativePainting();
}
void afterGL() override {
painter_.endNativePainting();
painter_.setPen(Qt::green);
QFont ft;
ft.setBold(true);
ft.setPointSize(60);
painter_.setFont(ft);
painter_.drawText(contentsRect(), "Qt Paint on MDK OpenGL Video");
painter_.end();
}
private:
QPainter painter_;
};
int main(int argc, char *argv[])
{
if (argc < 2) {
qDebug("Usage: %s [-c:v dec1,dec2,...] url\n"
"-c:v: set video decoder list, seperated by comma, decoder can be FFmpeg, VideoToolbox, D3D11, DXVA, NVDEC, CUDA, VDPAU, VAAPI, MMAL(raspberry pi), CedarX(sunxi)"
, argv[0]);
return 0;
}
QApplication a(argc, argv);
//a.setAttribute(Qt::AA_UseDesktopOpenGL);
QMDKPlayer player;
PaintVideoWidget w;
w.show();
w.setSource(&player);
int i = a.arguments().indexOf("-c:v");
if (i > 0)
player.setDecoders(a.arguments().at(i+1).split(","));
player.setMedia(a.arguments().last());
player.play();
return a.exec();
}