X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fwriter.h;h=cb1bdc5cc3fbc44a6a08db16dd83b5b2ed32639e;hp=14b21f35975c84b8a791bf7c25730f37bb1b9f1a;hb=89ae13638097f259f3e50b4b61068dd23451107d;hpb=a78b741c43830c84bcb4d18e3147746f13a668e5 diff --git a/src/lib/writer.h b/src/lib/writer.h index 14b21f359..cb1bdc5cc 100644 --- a/src/lib/writer.h +++ b/src/lib/writer.h @@ -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 _film;