summaryrefslogtreecommitdiff
path: root/gtk2_ardour/add_video_dialog.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-03-29 12:20:09 +0100
committerRobin Gareus <robin@gareus.org>2013-03-29 12:36:14 +0100
commitdaec8e44d52116d8841cf08954b930142c8dc495 (patch)
treea423c66a1f8667ca69d6fffc01fda27dff800c85 /gtk2_ardour/add_video_dialog.h
parent47ee22d91dbfa35b45c7cef8b825b4a7685c71c8 (diff)
vtl: rework import workflow
- do not allow to simply copy the video file - decision to transcode or just reference is made in "transcode dialog" not during file-selection. Only there the actual codec is known and can be judged to be suitable for direct reference - simplify "transcode dialog" - no more buttons for specific actions, drop-down select actions. - increase minimum bitrate for imported file to 500kbit/s
Diffstat (limited to 'gtk2_ardour/add_video_dialog.h')
-rw-r--r--gtk2_ardour/add_video_dialog.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/gtk2_ardour/add_video_dialog.h b/gtk2_ardour/add_video_dialog.h
index 12409895ee..7d8bdbc1ff 100644
--- a/gtk2_ardour/add_video_dialog.h
+++ b/gtk2_ardour/add_video_dialog.h
@@ -33,8 +33,7 @@
enum VtlImportOption {
VTL_IMPORT_NONE = 0,
- VTL_IMPORT_COPY = 1,
- VTL_IMPORT_TRANSCODE = 2,
+ VTL_IMPORT_TRANSCODE = 1,
};
class AddVideoDialog : public ArdourDialog
@@ -74,7 +73,6 @@ class AddVideoDialog : public ArdourDialog
Gtk::CheckButton xjadeo_checkbox;
Gtk::CheckButton set_session_fps_checkbox;
- Gtk::ComboBoxText import_combo;
Gtk::Notebook notebook;
Gtk::Button *ok_button;