X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fexport_dialog.h;h=d785d910d6577c051c8ccc7bbb8337a595c9d615;hb=c6871fe8617b3de03662b7630355059393bf8043;hp=04a516bca6bd49148f1c1b16370847acf4e6b843;hpb=b19987ae5342602977b265ba9167ec09e433367c;p=dcpomatic.git diff --git a/src/wx/export_dialog.h b/src/wx/export_dialog.h index 04a516bca..d785d910d 100644 --- a/src/wx/export_dialog.h +++ b/src/wx/export_dialog.h @@ -19,7 +19,7 @@ */ #include "table_dialog.h" -#include "lib/ffmpeg_transcoder.h" +#include "lib/ffmpeg_encoder.h" #include #include @@ -28,14 +28,16 @@ class FilePickerCtrl; class ExportDialog : public TableDialog { public: - ExportDialog (wxWindow* parent); + explicit ExportDialog (wxWindow* parent); boost::filesystem::path path () const; - FFmpegTranscoder::Format format () const; + FFmpegEncoder::Format format () const; + bool mixdown_to_stereo () const; private: void format_changed (); wxChoice* _format; + wxCheckBox* _mixdown; FilePickerCtrl* _file; };