mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Move some sync-related options to being session variables.
git-svn-id: svn://localhost/ardour2/branches/3.0@5083 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
29e8fe1698
commit
86dda29be7
11 changed files with 38 additions and 22 deletions
|
|
@ -116,6 +116,25 @@ SessionOptionEditor::SessionOptionEditor (Session* s)
|
|||
mem_fun (*_session_config, &SessionConfiguration::get_timecode_source_is_synced),
|
||||
mem_fun (*_session_config, &SessionConfiguration::set_timecode_source_is_synced)
|
||||
));
|
||||
|
||||
ComboOption<float>* vpu = new ComboOption<float> (
|
||||
"video-pullup",
|
||||
_("Pull-up / pull-down"),
|
||||
mem_fun (*_session_config, &SessionConfiguration::get_video_pullup),
|
||||
mem_fun (*_session_config, &SessionConfiguration::set_video_pullup)
|
||||
);
|
||||
|
||||
vpu->add (4.1667 + 0.1, _("4.1667 + 0.1%"));
|
||||
vpu->add (4.1667, _("4.1667"));
|
||||
vpu->add (4.1667 - 0.1, _("4.1667 - 0.1%"));
|
||||
vpu->add (0.1, _("0.1"));
|
||||
vpu->add (0, _("none"));
|
||||
vpu->add (-0.1, _("-0.1"));
|
||||
vpu->add (-4.1667 + 0.1, _("-4.1667 + 0.1%"));
|
||||
vpu->add (-4.1667, _("-4.1667"));
|
||||
vpu->add (-4.1667 - 0.1, _("-4.1667 - 0.1%"));
|
||||
|
||||
add_option (_("Sync"), vpu);
|
||||
|
||||
/* MISC */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue