Simple cover sheet support (#1039).
[dcpomatic.git] / src / lib / writer.h
index 14b21f35975c84b8a791bf7c25730f37bb1b9f1a..cb1bdc5cc3fbc44a6a08db16dd83b5b2ed32639e 100644 (file)
@@ -47,6 +47,9 @@ struct QueueItem
 public:
        QueueItem ()
                : size (0)
+               , reel (0)
+               , frame (0)
+               , eyes (EYES_BOTH)
        {}
 
        enum Type {
@@ -82,7 +85,7 @@ bool operator== (QueueItem const & a, QueueItem const & b);
  *  or AudioBuffers objects (containing image or sound data respectively)
  *  and writes them to the assets.
  *
- *  ::write() for Data (picture) can be called out of order, and the Writer
+ *  write() for Data (picture) can be called out of order, and the Writer
  *  will sort it out.  write() for AudioBuffers must be called in order.
  */
 
@@ -114,6 +117,7 @@ private:
        bool have_sequenced_image_at_queue_head ();
        size_t video_reel (int frame) const;
        void set_digest_progress (Job* job, float progress);
+       void write_cover_sheet ();
 
        /** our Film */
        boost::shared_ptr<const Film> _film;