Bump maximum reel length.
authorCarl Hetherington <cth@carlh.net>
Mon, 16 Sep 2024 14:27:08 +0000 (16:27 +0200)
committerCarl Hetherington <cth@carlh.net>
Mon, 16 Sep 2024 14:27:08 +0000 (16:27 +0200)
Someone is making a very long (10h) DCP and wants big reels, and I can't
think of a reason not to allow it.

src/wx/dcp_panel.cc

index f4ba74cdefbbcefd433379a26698af0bac33f9c5..030b29a9da564373b7b4749d73b10f7971639ab4 100644 (file)
@@ -152,7 +152,7 @@ DCPPanel::DCPPanel(wxNotebook* n, shared_ptr<Film> film, FilmViewer& viewer)
        _reel_type->add(S_("Reel|Custom"));
        _reel_type->SetToolTip(_("How the DCP should be split into parts internally.  If in doubt, choose 'Single reel'"));
 
-       _reel_length->SetRange (1, 64);
+       _reel_length->SetRange(1, 256);
 
        add_standards();
        _standard->SetToolTip(_("Which standard the DCP should use.  Interop is older and SMPTE is the modern standard.  If in doubt, choose 'SMPTE'"));