Merge.
authorCarl Hetherington <cth@carlh.net>
Thu, 6 Oct 2016 23:19:53 +0000 (00:19 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 6 Oct 2016 23:19:53 +0000 (00:19 +0100)
ChangeLog
src/lib/dcp.h
src/lib/dcp_content.cc
src/lib/dcp_content.h
src/wx/content_menu.cc
src/wx/content_menu.h

index 2ea2697cd412172d67d77908d8184a7d2588b4e4..34fe178a42763cb8a66206e09b1d0bb947ebb8c3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,10 @@
 
        * Fix XML subtitle output in some cases.
 
+2016-10-06  c.hetherington  <cth@carlh.net>
+
+       * Allow selection of CPL in multi-CPL DCPs (#733).
+
 2016-10-05  Carl Hetherington  <cth@carlh.net>
 
        * Updated fr_FR translation from Thierry Journet.
index d83f95f3735730c17da86e92c010e9bda7068996..e2e83e96e20cb5ff92f22d01d2a49d535bb19886 100644 (file)
@@ -29,12 +29,14 @@ class DCPContent;
 
 class DCP
 {
+public:
+       std::list<boost::shared_ptr<dcp::CPL> > cpls () const;
+
 protected:
        DCP (boost::shared_ptr<const DCPContent> content)
                : _dcp_content (content)
        {}
 
-       std::list<boost::shared_ptr<dcp::CPL> > cpls () const;
        boost::shared_ptr<const DCPContent> _dcp_content;
 };
 
index 1f844541c607820feee43d5a8b16da94be6dc239..0d36118e716adbd720bedfb46655a34476d70dcb 100644 (file)
@@ -490,3 +490,10 @@ DCPContent::use_template (shared_ptr<const Content> c)
        _reference_audio = dc->_reference_audio;
        _reference_subtitle = dc->_reference_subtitle;
 }
+
+void
+DCPContent::set_cpl (string id)
+{
+       boost::mutex::scoped_lock lm (_mutex);
+       _cpl = id;
+}
index 93a207ed782057f7ce5af9b3fa8ef77a3bef9728..21b654c96040d756ad37888f427ca49ccc1f91bd 100644 (file)
@@ -115,6 +115,8 @@ public:
 
        bool can_reference_subtitle (std::list<std::string> &) const;
 
+       void set_cpl (std::string id);
+
        boost::optional<std::string> cpl () const {
                boost::mutex::scoped_lock lm (_mutex);
                return _cpl;
index 3b1fd31897dc32054408c837bcd280f71bdfe699..a96461c301643bda66464dff5b756b8b858c7e2b 100644 (file)
 #include "lib/job_manager.h"
 #include "lib/exceptions.h"
 #include "lib/dcp_content.h"
+#include "lib/dcp_examiner.h"
 #include "lib/ffmpeg_content.h"
 #include "lib/audio_content.h"
+#include <dcp/cpl.h>
 #include <wx/wx.h>
 #include <wx/dirdlg.h>
 #include <boost/foreach.hpp>
 using std::cout;
 using std::vector;
 using std::exception;
+using std::list;
 using boost::shared_ptr;
 using boost::weak_ptr;
 using boost::dynamic_pointer_cast;
 
 enum {
-       ID_repeat = 1,
+       /* Start at 256 so we can have IDs on _cpl_menu from 0 to 255 */
+       ID_repeat = 256,
        ID_join,
        ID_find_missing,
        ID_properties,
        ID_re_examine,
        ID_kdm,
        ID_ov,
+       ID_choose_cpl,
        ID_remove
 };
 
@@ -69,6 +74,8 @@ ContentMenu::ContentMenu (wxWindow* p)
        _menu->AppendSeparator ();
        _kdm = _menu->Append (ID_kdm, _("Add KDM..."));
        _ov = _menu->Append (ID_ov, _("Add OV..."));
+       _cpl_menu = new wxMenu ();
+       _choose_cpl = _menu->Append (ID_choose_cpl, _("Choose CPL..."), _cpl_menu);
        _menu->AppendSeparator ();
        _remove = _menu->Append (ID_remove, _("Remove"));
 
@@ -80,6 +87,8 @@ ContentMenu::ContentMenu (wxWindow* p)
        _parent->Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&ContentMenu::kdm, this), ID_kdm);
        _parent->Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&ContentMenu::ov, this), ID_ov);
        _parent->Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&ContentMenu::remove, this), ID_remove);
+
+       _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::cpl_selected, this, _1), 0, ID_repeat);
 }
 
 ContentMenu::~ContentMenu ()
@@ -93,6 +102,12 @@ ContentMenu::popup (weak_ptr<Film> film, ContentList c, TimelineContentViewList
        _film = film;
        _content = c;
        _views = v;
+
+       int const N = _cpl_menu->GetMenuItemCount();
+       for (int i = 0; i < N; ++i) {
+               _cpl_menu->Delete (i);
+       }
+
        _repeat->Enable (!_content.empty ());
 
        int n = 0;
@@ -110,12 +125,35 @@ ContentMenu::popup (weak_ptr<Film> film, ContentList c, TimelineContentViewList
 
        if (_content.size() == 1) {
                shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (_content.front ());
-               _kdm->Enable (dcp && dcp->encrypted ());
+               if (dcp) {
+                       _kdm->Enable (dcp->encrypted ());
+                       _ov->Enable (dcp->needs_assets ());
+                       DCPExaminer ex (dcp);
+                       list<shared_ptr<dcp::CPL> > cpls = ex.cpls ();
+                       _choose_cpl->Enable (cpls.size() > 1);
+                       int id = 0;
+                       BOOST_FOREACH (shared_ptr<dcp::CPL> i, cpls) {
+                               wxMenuItem* item = _cpl_menu->AppendCheckItem (
+                                       id++,
+                                       wxString::Format (
+                                               "%s (%s)",
+                                               std_to_wx(i->annotation_text()).data(),
+                                               std_to_wx(i->id()).data()
+                                               )
+                                       );
+                               item->Check (dcp->cpl() && dcp->cpl() == i->id());
+                       }
+               } else {
+                       _kdm->Enable (false);
+                       _ov->Enable (false);
+                       _choose_cpl->Enable (false);
+               }
        } else {
                _kdm->Enable (false);
        }
 
        _remove->Enable (!_content.empty ());
+
        _parent->PopupMenu (_menu, p);
 }
 
@@ -367,3 +405,25 @@ ContentMenu::properties ()
        d->ShowModal ();
        d->Destroy ();
 }
+
+void
+ContentMenu::cpl_selected (wxCommandEvent& ev)
+{
+       DCPOMATIC_ASSERT (!_content.empty ());
+       shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (_content.front ());
+       DCPOMATIC_ASSERT (dcp);
+
+       DCPExaminer ex (dcp);
+       list<shared_ptr<dcp::CPL> > cpls = ex.cpls ();
+       DCPOMATIC_ASSERT (ev.GetId() < int (cpls.size()));
+
+       list<shared_ptr<dcp::CPL> >::const_iterator i = cpls.begin ();
+       for (int j = 0; j < ev.GetId(); ++j) {
+               ++i;
+       }
+
+       dcp->set_cpl ((*i)->id ());
+       shared_ptr<Film> film = _film.lock ();
+       DCPOMATIC_ASSERT (film);
+       film->examine_content (dcp);
+}
index 9aaf9d59fc075beb7eb476ac2aa50cd19f393618..43480888a5007ed306bc49f0468dd71fe1d01379 100644 (file)
@@ -48,8 +48,10 @@ private:
        void ov ();
        void remove ();
        void maybe_found_missing (boost::weak_ptr<Job>, boost::weak_ptr<Content>, boost::weak_ptr<Content>);
+       void cpl_selected (wxCommandEvent& ev);
 
        wxMenu* _menu;
+       wxMenu* _cpl_menu;
        /** Film that we are working with; set up by popup() */
        boost::weak_ptr<Film> _film;
        wxWindow* _parent;
@@ -62,6 +64,7 @@ private:
        wxMenuItem* _re_examine;
        wxMenuItem* _kdm;
        wxMenuItem* _ov;
+       wxMenuItem* _choose_cpl;
        wxMenuItem* _remove;
 
        boost::signals2::scoped_connection _job_connection;