X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fexport_dialog.h;h=f1e893b5329b887238cc89b028c30ca76f660195;hb=805487369e57e5eb57911805ba6de78b653d79ad;hp=04a516bca6bd49148f1c1b16370847acf4e6b843;hpb=b19987ae5342602977b265ba9167ec09e433367c;p=dcpomatic.git diff --git a/src/wx/export_dialog.h b/src/wx/export_dialog.h index 04a516bca..f1e893b53 100644 --- a/src/wx/export_dialog.h +++ b/src/wx/export_dialog.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2017 Carl Hetherington + Copyright (C) 2017-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -19,7 +19,7 @@ */ #include "table_dialog.h" -#include "lib/ffmpeg_transcoder.h" +#include "lib/ffmpeg_encoder.h" #include #include @@ -28,14 +28,23 @@ class FilePickerCtrl; class ExportDialog : public TableDialog { public: - ExportDialog (wxWindow* parent); + explicit ExportDialog (wxWindow* parent, std::string name); boost::filesystem::path path () const; - FFmpegTranscoder::Format format () const; + ExportFormat format () const; + bool mixdown_to_stereo () const; + bool split_reels () const; + int x264_crf () const; private: void format_changed (); + void file_changed (); + std::string _initial_name; wxChoice* _format; + wxCheckBox* _mixdown; + wxCheckBox* _split_reels; + wxSlider* _x264_crf; + wxStaticText* _x264_crf_label[2]; FilePickerCtrl* _file; };