Add a load of explicit keywords.
[dcpomatic.git] / src / wx / export_dialog.h
index 04a516bca6bd49148f1c1b16370847acf4e6b843..d785d910d6577c051c8ccc7bbb8337a595c9d615 100644 (file)
@@ -19,7 +19,7 @@
 */
 
 #include "table_dialog.h"
-#include "lib/ffmpeg_transcoder.h"
+#include "lib/ffmpeg_encoder.h"
 #include <wx/wx.h>
 #include <boost/filesystem.hpp>
 
@@ -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;
 };