implemented backend for AVFilters

This commit is contained in:
itsmattkc
2018-08-15 21:58:29 +10:00
parent 4a96509fbe
commit efa628e88f
6 changed files with 189 additions and 78 deletions
+2 -2
View File
@@ -3,14 +3,14 @@
extern "C" {
#include <libavformat/avformat.h>
#include <libavfilter/avfilter.h>
}
int main(int argc, char *argv[])
{
// init ffmpeg subsystem
av_register_all();
// QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts, true);
avfilter_register_all();
QApplication a(argc, argv);
MainWindow w;