Rename some classes.
[dcpomatic.git] / src / lib / ffmpeg_encoder.h
1 /*
2     Copyright (C) 2017 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 #ifndef DCPOMATIC_FFMPEG_ENCODER_H
22 #define DCPOMATIC_FFMPEG_ENCODER_H
23
24 #include "encoder.h"
25 #include "event_history.h"
26 extern "C" {
27 #include <libavcodec/avcodec.h>
28 #include <libavformat/avformat.h>
29 }
30
31 class FFmpegEncoder : public Encoder
32 {
33 public:
34         enum Format
35         {
36                 FORMAT_PRORES,
37                 FORMAT_H264
38         };
39
40         FFmpegEncoder (boost::shared_ptr<const Film> film, boost::weak_ptr<Job> job, boost::filesystem::path output, Format format);
41
42         void go ();
43
44         float current_rate () const;
45         Frame frames_done () const;
46         bool finishing () const {
47                 return false;
48         }
49
50 private:
51         void video (boost::shared_ptr<PlayerVideo>, DCPTime);
52         void audio (boost::shared_ptr<AudioBuffers>, DCPTime);
53         void subtitle (PlayerSubtitles, DCPTimePeriod);
54
55         AVCodecContext* _codec_context;
56         AVFormatContext* _format_context;
57         AVStream* _video_stream;
58         AVPixelFormat _pixel_format;
59         std::string _codec_name;
60
61         mutable boost::mutex _mutex;
62         DCPTime _last_time;
63
64         EventHistory _history;
65
66         boost::filesystem::path _output;
67 };
68
69 #endif