fixed playback/export flickering and hanging

This commit is contained in:
itsmattkc
2018-10-29 17:01:52 +11:00
parent 2e2846597e
commit a54fee767d
32 changed files with 216 additions and 163 deletions
+2 -3
View File
@@ -2,8 +2,7 @@
#include "project/clip.h"
#include "io/config.h"
#include <QDebug>
#include "debug.h"
QVector<QString> video_transition_names;
QVector<QString> audio_transition_names;
@@ -38,6 +37,6 @@ Transition* create_transition(int transition_id, Clip* c) {
case AUDIO_LINEAR_FADE_TRANSITION: return new LinearFadeTransition();
}
}
qDebug() << "[ERROR] Invalid transition ID";
dout << "[ERROR] Invalid transition ID";
return NULL;
}