tweak A/V import logic
[ardour.git] / gtk2_ardour / transcode_video_dialog.h
1 /*
2     Copyright (C) 2010 Paul Davis
3     Author: Robin Gareus <robin@gareus.org>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20 #ifndef __gtk_ardour_transcode_video_dialog_h__
21 #define __gtk_ardour_transcode_video_dialog_h__
22
23 #include <string>
24
25 #include <gtkmm.h>
26
27 #include "ardour/types.h"
28 #include "ardour/template_utils.h"
29 #include "ardour_dialog.h"
30
31 #include "transcode_ffmpeg.h"
32
33 enum VtlTranscodeOption {
34  VTL_IMPORT_REFERENCE = 0,
35  VTL_IMPORT_TRANSCODED = 1,
36  VTL_IMPORT_NO_VIDEO = 2
37 };
38
39 /** @class TranscodeVideoDialog
40  *  @brief dialog-box and controller for importing video-files
41  */
42 class TranscodeVideoDialog : public ArdourDialog , public PBD::ScopedConnectionList
43 {
44   public:
45         TranscodeVideoDialog (ARDOUR::Session*, std::string);
46         ~TranscodeVideoDialog ();
47
48         std::string get_filename () { return path_entry.get_text(); }
49         std::string get_audiofile () { return audiofile; }
50         VtlTranscodeOption import_option ();
51
52   private:
53         void on_show ();
54         void open_browse_dialog ();
55         void abort_clicked ();
56         void scale_combo_changed ();
57         void audio_combo_changed ();
58         void video_combo_changed ();
59         void aspect_checkbox_toggled ();
60         void bitrate_checkbox_toggled ();
61         void update_bitrate ();
62         void launch_audioonly ();
63         void launch_transcode ();
64   void launch_extract ();
65         void dialog_progress_mode ();
66         bool aborted;
67         bool pending_audio_extract;
68         std::string audiofile;
69         std::string infn;
70         double m_aspect;
71
72         PBD::Signal0<void> StartNextStage;
73         void finished ();
74         void update_progress (ARDOUR::framecnt_t, ARDOUR::framecnt_t);
75
76         TranscodeFfmpeg *transcoder;
77
78         Gtk::Label        path_label;
79         Gtk::Entry        path_entry;
80         Gtk::Button       browse_button;
81         Gtk::Button       transcode_button;
82
83         Gtk::VBox* vbox;
84         Gtk::Button *cancel_button;
85         Gtk::Button abort_button;
86
87         Gtk::VBox*  progress_box;
88         Gtk::Label  progress_label;
89         Gtk::ProgressBar pbar;
90
91         Gtk::ComboBoxText video_combo;
92         Gtk::ComboBoxText scale_combo;
93         Gtk::CheckButton  aspect_checkbox;
94         Gtk::Adjustment   height_adjustment;
95         Gtk::SpinButton   height_spinner;
96         Gtk::ComboBoxText audio_combo;
97         Gtk::CheckButton  bitrate_checkbox;
98         Gtk::Adjustment   bitrate_adjustment;
99         Gtk::SpinButton   bitrate_spinner;
100 #if 1 /* tentative debug mode */
101         Gtk::CheckButton  debug_checkbox;
102 #endif
103
104 };
105
106 #endif /* __gtk_ardour_transcode_video_dialog_h__ */