Untested merge of master.
[dcpomatic.git] / src / lib / ffmpeg_decoder.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/ffmpeg_decoder.h
21  *  @brief A decoder using FFmpeg to decode content.
22  */
23
24 #include <vector>
25 #include <string>
26 #include <stdint.h>
27 #include <boost/shared_ptr.hpp>
28 #include <boost/optional.hpp>
29 #include <boost/thread/mutex.hpp>
30 extern "C" {
31 #include <libavcodec/avcodec.h>
32 #include <libpostproc/postprocess.h>
33 }
34 #include "util.h"
35 #include "decoder.h"
36 #include "video_decoder.h"
37 #include "audio_decoder.h"
38 #include "film.h"
39 #include "ffmpeg_content.h"
40
41 struct AVFilterGraph;
42 struct AVCodecContext;
43 struct AVFilterContext;
44 struct AVFormatContext;
45 struct AVFrame;
46 struct AVBufferContext;
47 struct AVCodec;
48 struct AVStream;
49 class Job;
50 class Options;
51 class Image;
52 class Log;
53
54 /** @class FFmpegDecoder
55  *  @brief A decoder using FFmpeg to decode content.
56  */
57 class FFmpegDecoder : public VideoDecoder, public AudioDecoder
58 {
59 public:
60         FFmpegDecoder (boost::shared_ptr<const Film>, boost::shared_ptr<const FFmpegContent>, bool video, bool audio, bool subtitles);
61         ~FFmpegDecoder ();
62
63         float video_frame_rate () const;
64         libdcp::Size native_size () const;
65         ContentVideoFrame video_length () const;
66         int time_base_numerator () const;
67         int time_base_denominator () const;
68         int sample_aspect_ratio_numerator () const;
69         int sample_aspect_ratio_denominator () const;
70
71         std::vector<FFmpegSubtitleStream> subtitle_streams () const {
72                 return _subtitle_streams;
73         }
74         
75         std::vector<FFmpegAudioStream> audio_streams () const {
76                 return _audio_streams;
77         }
78
79         bool seek (double);
80         void seek_forward ();
81         void seek_back ();
82         bool pass ();
83
84 private:
85
86         /* No copy construction */
87         FFmpegDecoder (FFmpegDecoder const &);
88         FFmpegDecoder& operator= (FFmpegDecoder const &);
89
90         PixelFormat pixel_format () const;
91         AVSampleFormat audio_sample_format () const;
92         int bytes_per_audio_sample () const;
93         bool do_seek (double, bool, bool);
94
95         void filter_and_emit_video ();
96
97         void setup_general ();
98         void setup_video ();
99         void setup_audio ();
100         void setup_subtitle ();
101
102         void decode_audio_packet ();
103
104         void maybe_add_subtitle ();
105         boost::shared_ptr<AudioBuffers> deinterleave_audio (uint8_t** data, int size);
106
107         void film_changed (Film::Property);
108
109         std::string stream_name (AVStream* s) const;
110
111         boost::shared_ptr<const FFmpegContent> _ffmpeg_content;
112
113         AVFormatContext* _format_context;
114         int _video_stream;
115         
116         AVFrame* _frame;
117
118         AVCodecContext* _video_codec_context;
119         AVCodec* _video_codec;
120         AVCodecContext* _audio_codec_context;    ///< may be 0 if there is no audio
121         AVCodec* _audio_codec;                   ///< may be 0 if there is no audio
122         AVCodecContext* _subtitle_codec_context; ///< may be 0 if there is no subtitle
123         AVCodec* _subtitle_codec;                ///< may be 0 if there is no subtitle
124
125         AVPacket _packet;
126
127         std::list<boost::shared_ptr<FilterGraph> > _filter_graphs;
128         boost::mutex _filter_graphs_mutex;
129
130         std::vector<FFmpegSubtitleStream> _subtitle_streams;
131         std::vector<FFmpegAudioStream> _audio_streams;
132
133         bool _decode_video;
134         bool _decode_audio;
135         bool _decode_subtitles;
136
137         /* It would appear (though not completely verified) that one must have
138            a mutex around calls to avcodec_open* and avcodec_close... and here
139            it is.
140         */
141         static boost::mutex _mutex;
142 };