diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-05-06 01:06:29 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-05-08 01:29:35 +0200 |
| commit | 3ee71498b4f029ea2120eca608de0d2d5f35aa38 (patch) | |
| tree | 2450b852251c6df8142874bc12bed95a6c7522f9 /src/lib/dcp_content.cc | |
| parent | 0cfbf86e1804ea01e385359f3778f02974b2cc5a (diff) | |
Use the more in-keeping name string_to_video_encoding().
Diffstat (limited to 'src/lib/dcp_content.cc')
| -rw-r--r-- | src/lib/dcp_content.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index 885cbad93..255660b54 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -141,7 +141,7 @@ DCPContent::DCPContent(cxml::ConstNodePtr node, boost::optional<boost::filesyste } if (auto encoding = node->optional_string_child("VideoEncoding")) { - _video_encoding = video_encoding_from_string(*encoding); + _video_encoding = string_to_video_encoding(*encoding); } _three_d = node->optional_bool_child("ThreeD").get_value_or (false); @@ -658,6 +658,7 @@ DCPContent::reel_split_points (shared_ptr<const Film> film) const return s; } + bool DCPContent::can_reference_anything(shared_ptr<const Film> film, string& why_not) const { |
