Add ProRes LT export option (#2834).
[dcpomatic.git] / src / lib / ffmpeg_file_encoder.h
1 /*
2     Copyright (C) 2017-2018 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #ifndef DCPOMATIC_FFMPEG_FILE_ENCODER_H
23 #define DCPOMATIC_FFMPEG_FILE_ENCODER_H
24
25
26 #include "audio_buffers.h"
27 #include "audio_mapping.h"
28 #include "dcpomatic_time.h"
29 #include "event_history.h"
30 #include "image_store.h"
31 #include "log.h"
32 #include "player_text.h"
33 #include "player_video.h"
34 #include <dcp/key.h>
35 #include <dcp/warnings.h>
36 LIBDCP_DISABLE_WARNINGS
37 extern "C" {
38 #include <libavcodec/avcodec.h>
39 #include <libavformat/avformat.h>
40 }
41 LIBDCP_ENABLE_WARNINGS
42
43
44 class ExportAudioStream;
45
46
47 enum class ExportFormat
48 {
49         PRORES_4444,
50         PRORES_HQ,
51         PRORES_LT,
52         H264_AAC,
53         SUBTITLES_DCP
54 };
55
56
57 class FFmpegFileEncoder
58 {
59 public:
60         FFmpegFileEncoder (
61                 dcp::Size video_frame_size,
62                 int video_frame_rate,
63                 int audio_frame_rate,
64                 int channels,
65                 ExportFormat,
66                 bool audio_stream_per_channel,
67                 int x264_crf,
68                 boost::filesystem::path output
69                 );
70
71         ~FFmpegFileEncoder ();
72
73         void video (std::shared_ptr<PlayerVideo>, dcpomatic::DCPTime);
74         void audio (std::shared_ptr<AudioBuffers>);
75         void subtitle (PlayerText, dcpomatic::DCPTimePeriod);
76
77         void flush ();
78
79         static AVPixelFormat pixel_format (ExportFormat format);
80
81 private:
82         void setup_video ();
83         void setup_audio ();
84
85         void audio_frame (int size);
86
87         AVCodec const * _video_codec = nullptr;
88         AVCodecContext* _video_codec_context = nullptr;
89         std::vector<std::shared_ptr<ExportAudioStream>> _audio_streams;
90         bool _audio_stream_per_channel;
91         AVFormatContext* _format_context = nullptr;
92         AVStream* _video_stream = nullptr;
93         AVPixelFormat _pixel_format;
94         AVSampleFormat _sample_format;
95         AVDictionary* _video_options = nullptr;
96         std::string _video_codec_name;
97         std::string _audio_codec_name;
98         int _audio_channels;
99
100         boost::filesystem::path _output;
101         dcp::Size _video_frame_size;
102         int _video_frame_rate;
103         int _audio_frame_rate;
104
105         int64_t _audio_frames = 0;
106
107         std::shared_ptr<AudioBuffers> _pending_audio;
108
109         ImageStore _pending_images;
110
111         static int _video_stream_index;
112         static int _audio_stream_index_base;
113 };
114
115 #endif