multimedia/client/qt_gl_/yuvgl/main.cpp

33 lines
575 B
C++
Raw Normal View History

2020-06-04 15:28:45 +00:00
#include "mainwindow.h"
#include <QApplication>
#include "cplaywidget.h"
#include <QTimer>
#include "CameraCapture.h"
#include "mainwindow.h"
2020-12-06 16:01:38 +00:00
#include <qlibrary.h>
#include <qsysinfo.h>
#include <qt_windows.h>
2021-10-02 05:58:29 +00:00
#ifdef __MINGW32__
2020-12-06 16:01:38 +00:00
#include <Tlhelp32.h>
2021-10-02 05:58:29 +00:00
#include "winuser.h"
#endif
2020-06-04 15:28:45 +00:00
2020-06-06 07:39:55 +00:00
int RegiesterOwnType(){
return 0;
}
2020-06-04 15:28:45 +00:00
int main(int argc, char *argv[])
{
2021-10-02 05:58:29 +00:00
2020-12-06 16:01:38 +00:00
QssEventFilter filter;
QApplication app(argc, argv);
2020-06-04 15:28:45 +00:00
MainWindow main;
2020-06-06 07:39:55 +00:00
main.setWindowTitle("视频采集rtmp推流工具");
2021-10-02 05:58:29 +00:00
main.setFixedSize(1920,1080);
2020-06-04 15:28:45 +00:00
main.show();
2020-12-06 16:01:38 +00:00
return app.exec();
2020-06-04 15:28:45 +00:00
}