Tidy and fix logging.
[dcpomatic.git] / src / lib / ffmpeg_encoder.h
index 98c4704e2e5abd80bede1cc894d38788534b6ad7..79539acce44a24f8f7be9da8f8d1f9030645bc27 100644 (file)
@@ -31,7 +31,15 @@ class Butler;
 class FFmpegEncoder : public Encoder
 {
 public:
-       FFmpegEncoder (boost::shared_ptr<const Film> film, boost::weak_ptr<Job> job, boost::filesystem::path output, ExportFormat format, bool mixdown_to_stereo, int x264_crf);
+       FFmpegEncoder (
+               boost::shared_ptr<const Film> film,
+               boost::weak_ptr<Job> job,
+               boost::filesystem::path output,
+               ExportFormat format,
+               bool mixdown_to_stereo,
+               bool split_reels,
+               int x264_crf
+               );
 
        void go ();
 
@@ -42,7 +50,31 @@ public:
        }
 
 private:
-       FFmpegFileEncoder _file_encoder;
+
+       class FileEncoderSet
+       {
+       public:
+               FileEncoderSet (
+                       dcp::Size video_frame_size,
+                       int video_frame_rate,
+                       int audio_frame_rate,
+                       int channels,
+                       ExportFormat,
+                       int x264_crf,
+                       bool three_d,
+                       boost::filesystem::path output,
+                       std::string extension
+                       );
+
+               boost::shared_ptr<FFmpegFileEncoder> get (Eyes eyes) const;
+               void flush ();
+               void audio (boost::shared_ptr<AudioBuffers>);
+
+       private:
+               std::map<Eyes, boost::shared_ptr<FFmpegFileEncoder> > _encoders;
+       };
+
+       std::list<FileEncoderSet> _file_encoders;
        int _output_audio_channels;
 
        mutable boost::mutex _mutex;