Fix encrypted DCP playback.
authorCarl Hetherington <cth@carlh.net>
Fri, 21 Dec 2018 20:40:50 +0000 (20:40 +0000)
committerCarl Hetherington <cth@carlh.net>
Fri, 21 Dec 2018 20:40:50 +0000 (20:40 +0000)
src/lib/dcp_content.cc

index 8a2e2050d295547320ca9f4def69aee4eb3fb268..469021d96ee4a641b7ede8f4f4eed066ea821f44 100644 (file)
@@ -191,7 +191,6 @@ DCPContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
        ChangeSignaller<Content> cc_assets (this, DCPContentProperty::NEEDS_ASSETS);
        ChangeSignaller<Content> cc_kdm (this, DCPContentProperty::NEEDS_KDM);
        ChangeSignaller<Content> cc_name (this, DCPContentProperty::NAME);
-       ChangeSignaller<Content> cc_streams (this, AudioContentProperty::STREAMS);
 
        if (job) {
                job->set_progress_unknown ();
@@ -210,7 +209,6 @@ DCPContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
        }
 
        if (examiner->has_audio()) {
-               ChangeSignaller<Content> cc (this, AudioContentProperty::STREAMS);
                {
                        boost::mutex::scoped_lock lm (_mutex);
                        audio.reset (new AudioContent (this));