-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.cpp
49 lines (44 loc) · 1.16 KB
/
main.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
#include "widget.h"
#include <QApplication>
int main(int argc, char *argv[])
{
if (argc < 2) {
qWarning() << "Please pass video";
return 1;
}
const QString videoAngle360 = "--360";
const QString videoAngle180 = "--180";
char *path = nullptr;
float videoAngle = 180;
if (argc > 2) {
for (int i=1; i<argc; i++) {
if (argv[i] == videoAngle180) {
videoAngle = 180;
continue;
}
if (argv[i] == videoAngle360) {
videoAngle = 360;
continue;
}
if (path != nullptr) {
qWarning() << "Usage:" << argv[0] << "[--360|--180] videofile";
return 1;
}
path = argv[i];
}
} else {
path = argv[1];
}
QSurfaceFormat format;
format.setMajorVersion(3);
format.setMinorVersion(3);
format.setProfile(QSurfaceFormat::CoreProfile);
format.setSamples(4);
QSurfaceFormat::setDefaultFormat(format);
QApplication a(argc, argv);
MpvWidget w;
w.videoAngle = videoAngle;
w.show();
w.play(path);
return a.exec();
}