timenode: implemented timenode to allow values to be connected to time

This commit is contained in:
itsmattkc
2020-04-03 23:27:38 +11:00
parent 378c354277
commit 3dd91a1429
7 changed files with 97 additions and 0 deletions
+3
View File
@@ -8,6 +8,7 @@
#include "distort/transform/transform.h"
#include "input/media/video/video.h"
#include "input/media/audio/audio.h"
#include "input/time/timeinput.h"
#include "math/math.h"
#include "output/track/track.h"
#include "output/viewer/viewer.h"
@@ -138,6 +139,8 @@ Node *NodeFactory::CreateInternal(const NodeFactory::InternalID &id)
return new PanNode();
case kMath:
return new MathNode();
case kTime:
return new TimeInput();
case kInternalNodeCount:
break;