Accessor for ClosedCaptionsDialog.
[dcpomatic.git] / src / lib / ffmpeg_decoder.h
1 /*
2     Copyright (C) 2012-2016 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 /** @file  src/ffmpeg_decoder.h
22  *  @brief A decoder using FFmpeg to decode content.
23  */
24
25 #include "util.h"
26 #include "decoder.h"
27 #include "ffmpeg.h"
28 extern "C" {
29 #include <libavcodec/avcodec.h>
30 }
31 #include <boost/shared_ptr.hpp>
32 #include <boost/thread/mutex.hpp>
33 #include <stdint.h>
34
35 class Log;
36 class VideoFilterGraph;
37 class FFmpegAudioStream;
38 class AudioBuffers;
39 class Image;
40 struct ffmpeg_pts_offset_test;
41
42 /** @class FFmpegDecoder
43  *  @brief A decoder using FFmpeg to decode content.
44  */
45 class FFmpegDecoder : public FFmpeg, public Decoder
46 {
47 public:
48         FFmpegDecoder (boost::shared_ptr<const Film> film, boost::shared_ptr<const FFmpegContent>, bool fast);
49
50         bool pass ();
51         void seek (dcpomatic::ContentTime time, bool);
52
53 private:
54         friend struct ::ffmpeg_pts_offset_test;
55
56         void flush ();
57
58         AVSampleFormat audio_sample_format (boost::shared_ptr<FFmpegAudioStream> stream) const;
59         int bytes_per_audio_sample (boost::shared_ptr<FFmpegAudioStream> stream) const;
60
61         bool decode_video_packet ();
62         void decode_audio_packet ();
63         void decode_subtitle_packet ();
64
65         void decode_bitmap_subtitle (AVSubtitleRect const * rect, dcpomatic::ContentTime from);
66         void decode_ass_subtitle (std::string ass, dcpomatic::ContentTime from);
67
68         void maybe_add_subtitle ();
69         boost::shared_ptr<AudioBuffers> deinterleave_audio (boost::shared_ptr<FFmpegAudioStream> stream) const;
70
71         std::list<boost::shared_ptr<VideoFilterGraph> > _filter_graphs;
72         boost::mutex _filter_graphs_mutex;
73
74         dcpomatic::ContentTime _pts_offset;
75         boost::optional<dcpomatic::ContentTime> _current_subtitle_to;
76         /** true if we have a subtitle which has not had emit_stop called for it yet */
77         bool _have_current_subtitle;
78
79         boost::shared_ptr<Image> _black_image;
80
81         std::vector<boost::optional<dcpomatic::ContentTime> > _next_time;
82 };