Supporters update.
[dcpomatic.git] / src / lib / dcp_decoder.h
1 /*
2     Copyright (C) 2014-2021 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
22 /** @file  src/dcp_decoder.h
23  *  @brief A decoder of existing DCPs.
24  */
25
26
27 #include "atmos_metadata.h"
28 #include "decoder.h"
29 #include <dcp/mono_picture_asset_reader.h>
30 #include <dcp/stereo_picture_asset_reader.h>
31 #include <dcp/sound_asset_reader.h>
32 #include <dcp/subtitle_asset.h>
33
34
35 namespace dcp {
36         class Reel;
37 }
38
39 class DCPContent;
40 class Log;
41 struct dcp_subtitle_within_dcp_test;
42
43
44 class DCPDecoder : public Decoder
45 {
46 public:
47         DCPDecoder (
48                 std::shared_ptr<const Film> film,
49                 std::shared_ptr<const DCPContent> content,
50                 bool fast,
51                 bool tolerant,
52                 std::shared_ptr<DCPDecoder> old
53                 );
54
55         std::vector<std::shared_ptr<dcp::Reel>> reels () const {
56                 return _reels;
57         }
58
59         void set_decode_referenced (bool r);
60         void set_forced_reduction (boost::optional<int> reduction);
61
62         bool pass () override;
63         void seek (dcpomatic::ContentTime t, bool accurate) override;
64
65         std::string lazy_digest () const {
66                 return _lazy_digest;
67         }
68
69         dcpomatic::ContentTime position () const override;
70
71 private:
72         friend struct dcp_subtitle_within_dcp_test;
73
74         void next_reel ();
75         void get_readers ();
76         void pass_texts (dcpomatic::ContentTime next, dcp::Size size);
77         void pass_texts (
78                 dcpomatic::ContentTime next,
79                 std::shared_ptr<dcp::SubtitleAsset> asset,
80                 bool reference,
81                 int64_t entry_point,
82                 std::shared_ptr<TextDecoder> decoder,
83                 dcp::Size size
84                 );
85         std::string calculate_lazy_digest (std::shared_ptr<const DCPContent>) const;
86
87         std::shared_ptr<const DCPContent> _dcp_content;
88
89         /** Time of next thing to return from pass relative to the start of _reel */
90         dcpomatic::ContentTime _next;
91         std::vector<std::shared_ptr<dcp::Reel>> _reels;
92
93         std::vector<std::shared_ptr<dcp::Reel>>::iterator _reel;
94         /** Offset of _reel from the start of the content in frames */
95         int64_t _offset = 0;
96         /** Reader for current mono picture asset, if applicable */
97         std::shared_ptr<dcp::MonoPictureAssetReader> _mono_reader;
98         /** Reader for current stereo picture asset, if applicable */
99         std::shared_ptr<dcp::StereoPictureAssetReader> _stereo_reader;
100         /** Reader for current sound asset, if applicable */
101         std::shared_ptr<dcp::SoundAssetReader> _sound_reader;
102         std::shared_ptr<dcp::AtmosAssetReader> _atmos_reader;
103         boost::optional<AtmosMetadata> _atmos_metadata;
104
105         bool _decode_referenced = false;
106         boost::optional<int> _forced_reduction;
107
108         std::string _lazy_digest;
109 };