diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-05-10 10:29:18 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-05-10 10:29:18 +0100 |
| commit | 7f40b703e8a83f07a1c8bffb45cd40ebcc238418 (patch) | |
| tree | 59fb9d571b54be024f9ac9f3b1c7da429d1eb0f4 /src/wx/export_dialog.cc | |
| parent | 3e3371327c0f9c7ceebd1b44fd0c6ae85f0ae621 (diff) | |
Add H.264 export.
Diffstat (limited to 'src/wx/export_dialog.cc')
| -rw-r--r-- | src/wx/export_dialog.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wx/export_dialog.cc b/src/wx/export_dialog.cc index fb50e1134..10c289d82 100644 --- a/src/wx/export_dialog.cc +++ b/src/wx/export_dialog.cc @@ -25,18 +25,21 @@ using boost::bind; -#define FORMATS 1 +#define FORMATS 2 wxString format_names[] = { _("ProRes"), + _("H.264") }; wxString format_filters[] = { _("MOV files (*.mov)|*.mov"), + _("MP4 files (*.mp4)|*.mp4"), }; FFmpegTranscoder::Format formats[] = { FFmpegTranscoder::FORMAT_PRORES, + FFmpegTranscoder::FORMAT_H264, }; ExportDialog::ExportDialog (wxWindow* parent) |
