Move subtitle export to its own dialogue.
[dcpomatic.git] / src / wx / export_dialog.cc
index ca723ddeb9ef39575d17c77c3dc66377402aacbb..3553f3c7e9835de647a6ca95970efa384dab73bb 100644 (file)
@@ -31,30 +31,26 @@ DCPOMATIC_ENABLE_WARNINGS
 using std::string;
 using boost::bind;
 
-#define FORMATS 3
+#define FORMATS 2
 
 wxString format_names[] = {
        _("ProRes"),
        _("MP4 / H.264"),
-       _("DCP subtitles")
 };
 
 wxString format_filters[] = {
        _("MOV files (*.mov)|*.mov"),
        _("MP4 files (*.mp4)|*.mp4"),
-       _("Subtitle files (*.xml)|*.xml"),
 };
 
 wxString format_extensions[] = {
        "mov",
        "mp4",
-       "xml",
 };
 
 ExportFormat formats[] = {
        EXPORT_FORMAT_PRORES,
        EXPORT_FORMAT_H264_AAC,
-       EXPORT_FORMAT_SUBTITLES_DCP
 };
 
 ExportDialog::ExportDialog (wxWindow* parent, string name)