diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-08 00:43:28 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-08 00:43:28 +0200 |
| commit | eeaca1992aa117fe3a2a4a079d8a20a01d88e933 (patch) | |
| tree | 5dba1c017aad02ee0087d2b4daffe09490e86c74 /src/lib/video_mxf_content.cc | |
| parent | 769d56b7f3b2fe78036b4ba12c0cfe71734b379d (diff) | |
Guess video range better when importing 2.14.x projects (#2227).
Diffstat (limited to 'src/lib/video_mxf_content.cc')
| -rw-r--r-- | src/lib/video_mxf_content.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_mxf_content.cc b/src/lib/video_mxf_content.cc index c7ee69d89..c6165172a 100644 --- a/src/lib/video_mxf_content.cc +++ b/src/lib/video_mxf_content.cc @@ -51,7 +51,7 @@ VideoMXFContent::VideoMXFContent (boost::filesystem::path path) VideoMXFContent::VideoMXFContent (cxml::ConstNodePtr node, int version) : Content (node) { - video = VideoContent::from_xml (this, node, version); + video = VideoContent::from_xml (this, node, version, VideoRange::FULL); } |
