Tidy up resource management of FFmpegFileEncoders so that they
[dcpomatic.git] / src / lib / ffmpeg_encoder.h
index 9af284e6eedf078d6ef5d05d86b5fb8793af11aa..542711cc92cd8a58e8feac8a1df43f970af80c17 100644 (file)
@@ -50,13 +50,40 @@ public:
        }
 
 private:
-       std::list<boost::shared_ptr<FFmpegFileEncoder> > _file_encoders;
+
+       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;
+       };
+
        int _output_audio_channels;
 
        mutable boost::mutex _mutex;
        DCPTime _last_time;
 
        EventHistory _history;
+       boost::filesystem::path _output;
+       ExportFormat _format;
+       bool _split_reels;
+       int _x264_crf;
 
        boost::shared_ptr<Butler> _butler;
 };