swaroop: take ownership of config file if we're run as root.
[dcpomatic.git] / src / lib / ffmpeg_encoder.h
index bd5be454572b62b4ef6e77305d129398250cf31d..9af284e6eedf078d6ef5d05d86b5fb8793af11aa 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2017 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2017-2018 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 #include "encoder.h"
 #include "event_history.h"
-extern "C" {
-#include <libavcodec/avcodec.h>
-#include <libavformat/avformat.h>
-}
+#include "audio_mapping.h"
+#include "ffmpeg_file_encoder.h"
+
+class Butler;
 
 class FFmpegEncoder : public Encoder
 {
 public:
-       enum Format
-       {
-               FORMAT_PRORES,
-               FORMAT_H264
-       };
-
-       FFmpegEncoder (boost::shared_ptr<const Film> film, boost::weak_ptr<Job> job, boost::filesystem::path output, Format format);
+       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 ();
 
@@ -48,22 +50,15 @@ public:
        }
 
 private:
-       void video (boost::shared_ptr<PlayerVideo>, DCPTime);
-       void audio (boost::shared_ptr<AudioBuffers>, DCPTime);
-       void subtitle (PlayerSubtitles, DCPTimePeriod);
-
-       AVCodecContext* _codec_context;
-       AVFormatContext* _format_context;
-       AVStream* _video_stream;
-       AVPixelFormat _pixel_format;
-       std::string _codec_name;
+       std::list<boost::shared_ptr<FFmpegFileEncoder> > _file_encoders;
+       int _output_audio_channels;
 
        mutable boost::mutex _mutex;
        DCPTime _last_time;
 
        EventHistory _history;
 
-       boost::filesystem::path _output;
+       boost::shared_ptr<Butler> _butler;
 };
 
 #endif