Basic audio support.
[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         void setup_video ();
56         void setup_audio ();
57
58         void audio_frame (int size);
59
60         AVCodec* _video_codec;
61         AVCodecContext* _video_codec_context;
62         AVCodec* _audio_codec;
63         AVCodecContext* _audio_codec_context;
64         AVFormatContext* _format_context;
65         AVStream* _video_stream;
66         AVStream* _audio_stream;
67         AVPixelFormat _pixel_format;
68         AVSampleFormat _sample_format;
69         AVDictionary* _video_options;
70         std::string _video_codec_name;
71         std::string _audio_codec_name;
72
73         mutable boost::mutex _mutex;
74         DCPTime _last_time;
75
76         EventHistory _history;
77
78         boost::filesystem::path _output;
79
80         boost::shared_ptr<AudioBuffers> _pending_audio;
81
82         static int _video_stream_index;
83         static int _audio_stream_index;
84 };
85
86 #endif