summaryrefslogtreecommitdiff
path: root/src/lib/writer.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-16 00:52:50 +0100
committerCarl Hetherington <cth@carlh.net>2015-09-16 00:52:50 +0100
commitdd59755d86cdb1892bb0ba4d69af520cee4aa964 (patch)
treed0773389ed1a5512c4ebdd14baac6aceee0e77c7 /src/lib/writer.h
parentc4bf7a7fca387c7fbbea612d7abbb0d5732b8c5c (diff)
Back-end for very basic and hacky VF support for a DCP imported as content.
Diffstat (limited to 'src/lib/writer.h')
-rw-r--r--src/lib/writer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/writer.h b/src/lib/writer.h
index 120e1f338..09e4f4798 100644
--- a/src/lib/writer.h
+++ b/src/lib/writer.h
@@ -48,6 +48,7 @@ namespace dcp {
class SoundAsset;
class SoundAssetWriter;
class SubtitleAsset;
+ class ReelAsset;
}
struct QueueItem
@@ -107,6 +108,7 @@ public:
void write (boost::shared_ptr<const AudioBuffers>);
void write (PlayerSubtitles subs);
void write (std::list<boost::shared_ptr<Font> > fonts);
+ void write (boost::shared_ptr<dcp::ReelAsset> reel_asset);
void finish ();
void set_encoder_threads (int threads);
@@ -166,6 +168,7 @@ private:
boost::shared_ptr<dcp::SoundAsset> _sound_asset;
boost::shared_ptr<dcp::SoundAssetWriter> _sound_asset_writer;
boost::shared_ptr<dcp::SubtitleAsset> _subtitle_asset;
+ std::list<boost::shared_ptr<dcp::ReelAsset> > _reel_assets;
std::list<boost::shared_ptr<Font> > _fonts;