Add load button for SPL.
[dcpomatic.git] / src / lib / video_content.cc
index 81f4138fbef98248cf52aa16a7a8375c7d9a5adc..8cb30546371a7c43a19a3afd1529c7941ffbb0c4 100644 (file)
@@ -234,9 +234,9 @@ VideoContent::take_from_examiner (shared_ptr<VideoExaminer> d)
        optional<double> const ar = d->sample_aspect_ratio ();
        bool const yuv = d->yuv ();
 
-       ContentChange cc1 (_parent, VideoContentProperty::SIZE);
-       ContentChange cc2 (_parent, VideoContentProperty::SCALE);
-       ContentChange cc3 (_parent, ContentProperty::LENGTH);
+       ChangeSignaller<Content> cc1 (_parent, VideoContentProperty::SIZE);
+       ChangeSignaller<Content> cc2 (_parent, VideoContentProperty::SCALE);
+       ChangeSignaller<Content> cc3 (_parent, ContentProperty::LENGTH);
 
        {
                boost::mutex::scoped_lock lm (_mutex);