diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-08-11 22:56:59 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-08-11 22:56:59 +0100 |
| commit | 910ea473219f2e7c672ad437d458316deca67025 (patch) | |
| tree | 1af0895962ad3e122858c42d9b7df54e2d0a9bdd /src/wx/kdm_output_panel.h | |
| parent | bd83f1b0e1d8e7aae0af51376dbbb88d5e3f69d0 (diff) | |
Allow specification of audio forensic marking (in KDMs) for some channels only. Default to enabling forensic marking for video and audio (up to and including channel 12). Fixes #1498.
Diffstat (limited to 'src/wx/kdm_output_panel.h')
| -rw-r--r-- | src/wx/kdm_output_panel.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wx/kdm_output_panel.h b/src/wx/kdm_output_panel.h index c52fa7a15..7b9315071 100644 --- a/src/wx/kdm_output_panel.h +++ b/src/wx/kdm_output_panel.h @@ -47,6 +47,9 @@ public: bool forensic_mark_audio () const { return _forensic_mark_audio; } + boost::optional<int> forensic_mark_audio_up_to () const { + return _forensic_mark_audio_up_to; + } std::pair<boost::shared_ptr<Job>, int> make ( std::list<boost::shared_ptr<ScreenKDM> > screen_kdms, @@ -74,4 +77,5 @@ private: wxCheckBox* _email; bool _forensic_mark_video; bool _forensic_mark_audio; + boost::optional<int> _forensic_mark_audio_up_to; }; |
