Try to enable some WGL stuff.
[dcpomatic.git] / src / wx / export_dialog.h
index c2498d6a149498ded640a002ad633125d52e34e1..509cd60e9221b6f31ea780257c3e4a7ef6bfbf10 100644 (file)
@@ -31,8 +31,10 @@ public:
        explicit ExportDialog (wxWindow* parent);
 
        boost::filesystem::path path () const;
-       FFmpegEncoder::Format format () const;
+       ExportFormat format () const;
        bool mixdown_to_stereo () const;
+       bool split_reels () const;
+       int x264_crf () const;
 
 private:
        void format_changed ();
@@ -40,5 +42,8 @@ private:
 
        wxChoice* _format;
        wxCheckBox* _mixdown;
+       wxCheckBox* _split_reels;
+       wxSlider* _x264_crf;
+       wxStaticText* _x264_crf_label[2];
        FilePickerCtrl* _file;
 };