diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-05-13 12:35:56 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-05-13 12:35:56 +0100 |
| commit | 4079beaa74c67e81ae8e40bd715dcc68cdbdf676 (patch) | |
| tree | 70db90b38c262fc539fc3b14cc78e3879a9ecce6 /src/lib/video_mxf_content.cc | |
| parent | 8bdc1edabc107c3ba0ec6c5f0b8f93ac00e4c631 (diff) | |
Fix setup of initial colour conversion for Video MXF content.
Diffstat (limited to 'src/lib/video_mxf_content.cc')
| -rw-r--r-- | src/lib/video_mxf_content.cc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/lib/video_mxf_content.cc b/src/lib/video_mxf_content.cc index 1f4163122..325ea8e72 100644 --- a/src/lib/video_mxf_content.cc +++ b/src/lib/video_mxf_content.cc @@ -81,6 +81,7 @@ VideoMXFContent::examine (shared_ptr<Job> job) video.reset (new VideoContent (this)); shared_ptr<VideoMXFExaminer> examiner (new VideoMXFExaminer (shared_from_this ())); video->take_from_examiner (examiner); + video->unset_colour_conversion (); } string @@ -121,9 +122,3 @@ VideoMXFContent::add_properties (list<UserProperty>& p) const { video->add_properties (p); } - -void -VideoMXFContent::set_default_colour_conversion () -{ - video->unset_colour_conversion (); -} |
