First commit of brand new rewrite

This commit is contained in:
itsmattkc
2018-05-30 03:24:12 +10:00
commit 244c092591
86 changed files with 8016 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#include "mainwindow.h"
#include <QApplication>
extern "C" {
#include <libavformat/avformat.h>
}
int main(int argc, char *argv[])
{
// init ffmpeg subsystem
av_register_all();
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}