summaryrefslogtreecommitdiff
path: root/src/lib/dcp_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-08 00:43:28 +0200
committerCarl Hetherington <cth@carlh.net>2022-04-08 00:43:28 +0200
commiteeaca1992aa117fe3a2a4a079d8a20a01d88e933 (patch)
tree5dba1c017aad02ee0087d2b4daffe09490e86c74 /src/lib/dcp_content.cc
parent769d56b7f3b2fe78036b4ba12c0cfe71734b379d (diff)
Guess video range better when importing 2.14.x projects (#2227).
Diffstat (limited to 'src/lib/dcp_content.cc')
-rw-r--r--src/lib/dcp_content.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc
index 6df0588e9..f8639cef9 100644
--- a/src/lib/dcp_content.cc
+++ b/src/lib/dcp_content.cc
@@ -95,7 +95,7 @@ DCPContent::DCPContent (boost::filesystem::path p)
DCPContent::DCPContent (cxml::ConstNodePtr node, int version)
: Content (node)
{
- video = VideoContent::from_xml (this, node, version);
+ video = VideoContent::from_xml (this, node, version, VideoRange::FULL);
audio = AudioContent::from_xml (this, node, version);
list<string> notes;
text = TextContent::from_xml (this, node, version, notes);