blob: cb68aa523c5235cd726361e40b47c793c763ff1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
/*
Copyright (C) 2014-2020 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
DCP-o-matic is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
DCP-o-matic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file src/lib/dcp_examiner.h
* @brief DCPExaminer class.
*/
#include "video_examiner.h"
#include "audio_examiner.h"
#include "dcp.h"
#include "dcp_text_track.h"
#include "dcpomatic_assert.h"
#include <dcp/dcp_time.h>
class DCPContent;
class DCPExaminer : public DCP, public VideoExaminer, public AudioExaminer
{
public:
explicit DCPExaminer (boost::shared_ptr<const DCPContent>, bool tolerant);
bool has_video () const {
return _has_video;
}
boost::optional<double> video_frame_rate () const {
return _video_frame_rate;
}
dcp::Size video_size () const {
DCPOMATIC_ASSERT (_has_video);
DCPOMATIC_ASSERT (_video_size);
return *_video_size;
}
Frame video_length () const {
return _video_length;
}
bool yuv () const {
return false;
}
VideoRange range () const {
return VIDEO_RANGE_FULL;
}
std::string name () const {
return _name;
}
bool encrypted () const {
return _encrypted;
}
bool needs_assets () const {
return _needs_assets;
}
bool has_audio () const {
return _has_audio;
}
int audio_channels () const {
return _audio_channels.get_value_or (0);
}
Frame audio_length () const {
return _audio_length;
}
int audio_frame_rate () const {
return _audio_frame_rate.get_value_or (48000);
}
/** @param type TEXT_OPEN_SUBTITLE or TEXT_CLOSED_CAPTION.
* @return Number of assets of this type in this DCP.
*/
int text_count (TextType type) const {
return _text_count[type];
}
DCPTextTrack dcp_text_track (int i) const {
DCPOMATIC_ASSERT (i >= 0 && i < static_cast<int>(_dcp_text_tracks.size()));
return _dcp_text_tracks[i];
}
bool kdm_valid () const {
return _kdm_valid;
}
boost::optional<dcp::Standard> standard () const {
return _standard;
}
bool three_d () const {
return _three_d;
}
dcp::ContentKind content_kind () const {
return _content_kind;
}
std::string cpl () const {
return _cpl;
}
std::list<int64_t> reel_lengths () const {
return _reel_lengths;
}
std::map<dcp::Marker, dcp::Time> markers () const {
return _markers;
}
std::vector<dcp::Rating> ratings () const {
return _ratings;
}
std::string content_version () const {
return _content_version;
}
bool has_atmos () const {
return _has_atmos;
}
Frame atmos_length () const {
return _atmos_length;
}
dcp::Fraction atmos_edit_rate () const {
return _atmos_edit_rate;
}
private:
boost::optional<double> _video_frame_rate;
boost::optional<dcp::Size> _video_size;
Frame _video_length;
boost::optional<int> _audio_channels;
boost::optional<int> _audio_frame_rate;
Frame _audio_length;
std::string _name;
/** true if this DCP has video content (but false if it has unresolved references to video content) */
bool _has_video;
/** true if this DCP has audio content (but false if it has unresolved references to audio content) */
bool _has_audio;
/** number of different assets of each type (OCAP/CCAP) */
int _text_count[TEXT_COUNT];
/** the DCPTextTracks for each of our CCAPs */
std::vector<DCPTextTrack> _dcp_text_tracks;
bool _encrypted;
bool _needs_assets;
bool _kdm_valid;
boost::optional<dcp::Standard> _standard;
bool _three_d;
dcp::ContentKind _content_kind;
std::string _cpl;
std::list<int64_t> _reel_lengths;
std::map<dcp::Marker, dcp::Time> _markers;
std::vector<dcp::Rating> _ratings;
std::string _content_version;
bool _has_atmos;
Frame _atmos_length;
dcp::Fraction _atmos_edit_rate;
};
|