summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-09-16 16:27:08 +0200
committerCarl Hetherington <cth@carlh.net>2024-09-16 16:27:08 +0200
commit9874ec134d667996b2952f13a70d1333b08fd693 (patch)
tree7558e1362875d7579632bce345688bef449b9fb5
parentb9d6fc2817c2dadec09d568792d294c21e2f8046 (diff)
Bump maximum reel length.
Someone is making a very long (10h) DCP and wants big reels, and I can't think of a reason not to allow it.
-rw-r--r--src/wx/dcp_panel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc
index f4ba74cde..030b29a9d 100644
--- a/src/wx/dcp_panel.cc
+++ b/src/wx/dcp_panel.cc
@@ -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'"));