X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fffmpeg_encoder.h;h=98c4704e2e5abd80bede1cc894d38788534b6ad7;hb=895f945a6bababdf1964b0522d591db96368db22;hp=c7929c54fb6fd5670eee806fef63c174cffa3257;hpb=d628ed776e3ca94b154980e962b1c4a0a8f7540c;p=dcpomatic.git diff --git a/src/lib/ffmpeg_encoder.h b/src/lib/ffmpeg_encoder.h index c7929c54f..98c4704e2 100644 --- a/src/lib/ffmpeg_encoder.h +++ b/src/lib/ffmpeg_encoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2017 Carl Hetherington + Copyright (C) 2017-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -23,21 +23,15 @@ #include "encoder.h" #include "event_history.h" -extern "C" { -#include -#include -} +#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 film, boost::weak_ptr job, boost::filesystem::path output, Format format); + FFmpegEncoder (boost::shared_ptr film, boost::weak_ptr job, boost::filesystem::path output, ExportFormat format, bool mixdown_to_stereo, int x264_crf); void go (); @@ -48,39 +42,15 @@ public: } private: - void video (boost::shared_ptr, DCPTime); - void audio (boost::shared_ptr, DCPTime); - void subtitle (PlayerSubtitles, DCPTimePeriod); - - void setup_video (); - void setup_audio (); - - void audio_frame (int size); - - AVCodec* _video_codec; - AVCodecContext* _video_codec_context; - AVCodec* _audio_codec; - AVCodecContext* _audio_codec_context; - AVFormatContext* _format_context; - AVStream* _video_stream; - AVStream* _audio_stream; - AVPixelFormat _pixel_format; - AVSampleFormat _sample_format; - AVDictionary* _video_options; - std::string _video_codec_name; - std::string _audio_codec_name; + FFmpegFileEncoder _file_encoder; + int _output_audio_channels; mutable boost::mutex _mutex; DCPTime _last_time; EventHistory _history; - boost::filesystem::path _output; - - boost::shared_ptr _pending_audio; - - static int _video_stream_index; - static int _audio_stream_index; + boost::shared_ptr _butler; }; #endif