diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-03 00:14:04 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-03 00:14:04 +0100 |
| commit | 64b7c2e30a6adc62c373b9dcc7f39310f10ed994 (patch) | |
| tree | 5f1c7fb5c8ea904d0c1830b700928dca286c34ee /src/wx/export_dialog.h | |
| parent | c6dee8f49138c0246c3f94d16792541cd250672f (diff) | |
Add basic quality option for x264 export.
Diffstat (limited to 'src/wx/export_dialog.h')
| -rw-r--r-- | src/wx/export_dialog.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wx/export_dialog.h b/src/wx/export_dialog.h index c2498d6a1..c6ccc875e 100644 --- a/src/wx/export_dialog.h +++ b/src/wx/export_dialog.h @@ -33,6 +33,7 @@ public: boost::filesystem::path path () const; FFmpegEncoder::Format format () const; bool mixdown_to_stereo () const; + int x264_crf () const; private: void format_changed (); @@ -40,5 +41,7 @@ private: wxChoice* _format; wxCheckBox* _mixdown; + wxSlider* _x264_crf; + wxStaticText* _x264_crf_label[2]; FilePickerCtrl* _file; }; |
