blob: cff2ea51c56e7c5fcc079099ec40b5073d76139b (
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
|
/*
Copyright (C) 2020-2021 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/>.
*/
#include "audio_content.h"
#include "copy_dcp_details_to_film.h"
#include "dcp_content.h"
#include "dcp_content_type.h"
#include "film.h"
#include "ratio.h"
#include "video_content.h"
#include <map>
using std::map;
using std::shared_ptr;
using std::string;
using std::vector;
void
copy_dcp_settings_to_film(shared_ptr<const DCPContent> dcp, shared_ptr<Film> film)
{
auto name = dcp->name();
name = name.substr(0, name.find("_"));
film->set_name(name);
film->set_use_isdcf_name(true);
if (dcp->content_kind()) {
film->set_dcp_content_type(DCPContentType::from_libdcp_kind(dcp->content_kind().get()));
}
film->set_encrypt_picture(dcp->picture_encrypted());
film->set_encrypt_sound(dcp->sound_encrypted());
film->set_encrypt_text(dcp->text_encrypted());
film->set_reel_type(ReelType::BY_VIDEO_CONTENT);
film->set_interop(dcp->standard() == dcp::Standard::INTEROP);
film->set_three_d(dcp->three_d());
if (dcp->video) {
if (auto size = dcp->video->size()) {
film->set_container(Ratio::nearest_from_ratio(size->ratio()));
}
film->set_resolution(dcp->resolution());
DCPOMATIC_ASSERT(dcp->video_frame_rate());
film->set_video_frame_rate(*dcp->video_frame_rate());
}
if (dcp->audio) {
film->set_audio_channels(dcp->audio->stream()->channels());
film->set_audio_language(dcp->audio_language());
}
film->set_ratings(dcp->ratings());
film->set_content_versions(dcp->content_versions());
film->set_chain(dcp->chain());
film->set_distributor(dcp->distributor());
film->set_facility(dcp->facility());
film->set_luminance(dcp->luminance());
}
void
copy_dcp_markers_to_film(shared_ptr<const DCPContent> dcp, shared_ptr<Film> film)
{
film->clear_markers();
for (auto const& i: dcp->markers()) {
film->set_marker(i.first, dcpomatic::DCPTime(i.second.get()));
}
}
|