X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fexport_dialog.h;h=509cd60e9221b6f31ea780257c3e4a7ef6bfbf10;hb=7851658223286410d5afb1e32bc44b4012ec5f55;hp=c2498d6a149498ded640a002ad633125d52e34e1;hpb=1d5ea1b139942bad5500ae40f0646da3fd29dc7f;p=dcpomatic.git diff --git a/src/wx/export_dialog.h b/src/wx/export_dialog.h index c2498d6a1..509cd60e9 100644 --- a/src/wx/export_dialog.h +++ b/src/wx/export_dialog.h @@ -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; };