Allow export with one audio stream per channel.
[dcpomatic.git] / src / wx / export_dialog.h
index 509cd60e9221b6f31ea780257c3e4a7ef6bfbf10..fc22d036a070404a2f1270011bb1ba8d1346e089 100644 (file)
@@ -28,21 +28,24 @@ class FilePickerCtrl;
 class ExportDialog : public TableDialog
 {
 public:
-       explicit ExportDialog (wxWindow* parent);
+       explicit ExportDialog (wxWindow* parent, std::string name);
 
        boost::filesystem::path path () const;
        ExportFormat format () const;
        bool mixdown_to_stereo () const;
        bool split_reels () const;
+       bool split_streams () const;
        int x264_crf () const;
 
 private:
        void format_changed ();
        void file_changed ();
 
+       std::string _initial_name;
        wxChoice* _format;
        wxCheckBox* _mixdown;
        wxCheckBox* _split_reels;
+       wxCheckBox* _split_streams;
        wxSlider* _x264_crf;
        wxStaticText* _x264_crf_label[2];
        FilePickerCtrl* _file;