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