summaryrefslogtreecommitdiff
path: root/src/lib/content_factory.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-26 00:20:21 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-26 00:20:21 +0100
commit264a268f7c1244b47d9fa54ad342d80b0f98e16d (patch)
treeb184c193908fc96280ccffef4e51a67ab35eb69d /src/lib/content_factory.cc
parent78e5a331074a456097a162d47501daf1df1ab1a3 (diff)
Basic if sketchy support for image sequences.
Diffstat (limited to 'src/lib/content_factory.cc')
-rw-r--r--src/lib/content_factory.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/content_factory.cc b/src/lib/content_factory.cc
index bf447641d..6ed01f174 100644
--- a/src/lib/content_factory.cc
+++ b/src/lib/content_factory.cc
@@ -20,6 +20,7 @@
#include <libcxml/cxml.h>
#include "ffmpeg_content.h"
#include "still_image_content.h"
+#include "moving_image_content.h"
#include "sndfile_content.h"
using std::string;
@@ -36,6 +37,8 @@ content_factory (shared_ptr<const Film> film, shared_ptr<cxml::Node> node)
content.reset (new FFmpegContent (film, node));
} else if (type == "StillImage") {
content.reset (new StillImageContent (film, node));
+ } else if (type == "MovingImage") {
+ content.reset (new MovingImageContent (film, node));
} else if (type == "Sndfile") {
content.reset (new SndfileContent (film, node));
}